@charset "utf-8";

/* Footer Reset & Base */
.footer-white-wrapper {
    background-color: #ffffff;
    color: #666666;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 12px;
    width: 100%;
    min-width: 1200px;
    padding-top: 60px;
    padding-bottom: 30px;
    border-top: 1px solid #eee;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Top Section */
.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

/* Left: Contact Info */
.footer-contact-info {
    width: 350px;
    text-align: justify;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 45px;
}

.contact-list {
    font-family: "Noto Sans SC", sans-serif;
    font-weight: 400;        /* Regular */
    font-size: 14px;
    line-height: 1;          /* 100% */
    letter-spacing: 0;
    color: var(--all-2-bw-600, #666666);

}

.contact-item {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #999;
}

.contact-label {
    color: #666;
    margin-right: 5px;
}

.footer-qrcode {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-qrcode img {
    width: 80px;
    height: 80px;
}

/* Right: Links Columns */
.footer-links-section {
    flex: 1;
    display: flex;
    justify-content: space-around;
    padding-left: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col-title {
    font-family: "Noto Sans SC", sans-serif;
    font-weight: 500;        /* Medium */
    font-size: 16px;
    line-height: 1;          /* 100% */
    letter-spacing: 0;
    color: var(--all-2-bw-core, #0A0500);

}

.footer-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-list a {
    font-family: "Noto Sans SC", sans-serif;
    font-weight: 400; /* Regular */
    font-size: 14px;
    line-height: 1; /* 100% */
    letter-spacing: 0;
    color: var(--all-2-bw-600, #666666);

}

.footer-col-list a:hover {
    color: #ff8c00;
}

/* Middle Section: Text */
.footer-middle {
    font-family: "Noto Sans SC", sans-serif;
    font-weight: 400;        /* Regular */
    font-size: 14px;
    line-height: 1.5;        /* 150% */
    letter-spacing: 0;
    color: var(--all-2-bw-600, #666666);

}

.footer-text-block {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #999;
    text-align: justify;
}

/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    color: #999;
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #ff8c00;
}

.footer-copyright a {
    color: #999;
    text-decoration: none;
}