a,a:hover,a:active,a:visited {
    text-decoration: none;
    background: none;
    outline: none;
}

/* Footer 基础样式 */
.footer {
    background-color: #ffffff;
    color: #333333;
    padding: 50px 23px 10px;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

/* 默认样式 - 桌面端 (>1040px) */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo-img {
    width: 118px;
    flex-shrink: 0;
}

.footer-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.logo-name {
    font-size: 32px;
    font-weight: bold;
    color: #333333;
}

.logo-url {
    font-size: 16px;
    color: #666666;
    font-family: monospace;
}

.footer-nav {
    display: flex;
    align-items: center;
    width: 277px;
    justify-content: space-between;
}

.footer-nav a {
    color: #333333;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.2;
}

.footer-nav a:hover {
    color: #A0897B;
}

.footer-nav a:hover .nav-chinese {
    color: #A0897B;
}

.footer-nav a:hover .nav-english {
    color: #A0897B;
}

.footer-nav a .nav-chinese {
    color: #000000;
    font-weight: bold;
    font-size: 20px;
}

.footer-nav a .nav-english {
    color: #585657;
    font-weight: normal;
    font-size: 20px;
}

.footer-contact {
    margin-bottom: 40px;
}

.contact-title {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
}

.contact-desc {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 1033px;
}

.contact-section {
    margin-bottom: 20px;
    max-width: 1033px;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
}

.address-row {
    display: flex;
    gap: 40px;
}

.address-item {
    flex: 1;
    min-width: 0;
}

.address-name {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
}

.address-detail {
    font-size: 18px;
    color: #000000;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 2px;
}
/* 社交媒体区域样式 */
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-text {
    font-size: 16px;
    color: #333333;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
    position: relative;
    cursor: pointer;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 下载区域样式 */
.down-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.down-img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.down-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    justify-content: center;
    background-color: #888888;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* .app-btn:hover {
    background-color: #555;
} */

.app-btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.app-btn-text {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

/* 二维码弹出样式 */
.qr-popup {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    margin-bottom: 10px;
}

.qr-bg {
    width: 140px;
    height: 147px;
    background-image: url('/statics/home/common/imgs/footer/code-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.qr-bg img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

/* 超大屏幕样式 (>1400px) */
@media (min-width: 1400px) {
    .footer-social {
        position: absolute;
        right: 20px;
        bottom: 100px;
        width: 277px;
    }
    .down-wrap {
        width: 100%;
    }
    .down-img {
        width: 110px;
        height: 110px;
    }

    .app-btn{
        padding: 8px 0;
    }
    .app-btn-text {
        font-size: 16px;
    }
    .social-icons {
        width: 100%;
        justify-content: space-between;
    }
    .social-icon{
        width: 30px;
        height: 30px;
    }
    .social-text{
        font-size: 18px;
        font-weight: bold;
        width: 100%;
        text-align: left;
    }
}



/* 平板端样式 (max-width: 1040px) */
@media (max-width: 1040px) {
    .footer {
        padding: 40px 20px 8px;
    }

    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
    }

    .footer-logo {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 15px;
    }

    .footer-logo-img {
        width: 90px;
    }

    .logo-name {
        font-size: 28px;
    }

    .logo-url {
        font-size: 14px;
    }

    .footer-nav {
        gap: 25px;
        width: auto;
    }

    .footer-nav a {
        font-size: 18px;
    }

    .footer-nav a .nav-chinese,
    .footer-nav a .nav-english {
        font-size: 18px;
    }

    .footer-nav a:hover .nav-chinese,
    .footer-nav a:hover .nav-english {
        color: #A0897B;
    }

    .contact-title {
        font-size: 18px;
        text-align: left;
        margin-bottom: 8px;
    }

    .contact-desc {
        font-size: 16px;
        text-align: left;
        margin-bottom: 16px;
    }

    .contact-section {
        margin-bottom: 16px;
    }

    .section-title {
        font-size: 18px;
        text-align: center;
        margin-bottom: 8px;
    }

    .address-row {
        display: flex;
        gap: 20px;
    }

    .address-item {
        text-align: center;
    }

    .address-name {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .address-detail {
        font-size: 13px;
        margin-bottom: 3px;
    }

    .footer-social {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .social-text {
        font-size: 15px;
    }



    .down-img {
        width: 80px;
        height: 80px;
    }

    .app-btn-text {
        font-size: 14px;
    }

    .app-btn {
        padding: 6px 12px;
    }

    .app-btn-icon {
        width: 18px;
        height: 18px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .qr-bg {
        width: 120px;
        height: 126px;
    }
}

/* 移动端样式 (max-width: 640px) */
@media (max-width: 640px) {
    .footer {
        padding: 35px 15px 6px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-bottom: 14px;
    }

    .footer-logo {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 15px;
    }

    .footer-logo-img {
        width: 75px;
    }

    .logo-name {
        font-size: 24px;
    }

    .logo-url {
        font-size: 12px;
    }

    .footer-nav {
        gap: 20px;
        width: auto;
    }

    .footer-nav a {
        font-size: 16px;
    }

    .footer-nav a .nav-chinese,
    .footer-nav a .nav-english {
        font-size: 16px;
    }

    .footer-nav a:hover .nav-chinese,
    .footer-nav a:hover .nav-english {
        color: #A0897B;
    }

    .contact-title {
        font-size: 16px;
        margin-bottom: 6px;
        text-align: center;
    }

    .contact-desc {
        font-size: 14px;
        text-align: left;
        margin-bottom: 14px;
        text-align: center;
    }

    .contact-section {
        margin-bottom: 14px;
    }

    .section-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

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

    .address-item {
        text-align: center;
    }

    .address-name {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .address-detail {
        font-size: 12px;
        margin-bottom: 2px;
    }

    .footer-social {
        gap: 12px;
    }

    .social-text {
        font-size: 14px;
    }



    .down-img {
        width: 60px;
        height: 60px;
    }

    .app-btn-text {
        font-size: 12px;
    }
    .app-btns{
        gap: 10px;
    }
    .app-btn {
        padding: 5px 10px;
    }

    .app-btn-icon {
        width: 16px;
        height: 16px;
    }

    .social-icon {
        width: 24px;
        height: 24px;
    }

    .qr-bg {
        width: 100px;
        height: 105px;
    }
}