/* 基础样式 */
.footer-common {
    width: 100%;
    background: #006633;
    padding-top: 28px;
    box-sizing: border-box;
    margin-top: 10px;
}

.cont-link-sel {
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.cont-link-sel span {
    display: inline-block;
    line-height: 42px;
    font-size: 16px;
    font-family: PingFang SC, PingFang SC-Medium;
    font-weight: 500;
    text-align: left;
    color: #ffffff;
    margin-right: 56px;
}

.cont-link-sel select {
    width: 530px;
    height: 42px;
    margin-bottom: 9px;
    outline: none;
    border: 0 none;
    background: #1961a5;
    text-align: center;
    color: #fff;
    font-size: 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.cont-link-sel .footer-select-one {
    margin-right: 20px;
}

.cont-link-sel svg {
    width: 7px;
    height: 11px;
    position: absolute;
    top: 15px;
    transform: rotate(90deg);
}

.cont-link-sel .link-sel-one {
    left: 425px;
}

.cont-link-sel .link-sel-two {
    right: 220px;
}

.cont-link-sel svg .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #fff;
}

.footerTab {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.footerTab::after {
    content: '';
    width: 100%;
    height: 1px;
    opacity: 0.2;
    background: #ffffff;
    position: absolute;
    left: 0;
    bottom: 0;
}

.footerTab a {
    color: #fff;
    font-size: 16px;
    font-family: PingFang SC, PingFang SC-Medium;
    line-height: 68px;
}

.footerTab a + a {
    margin-left: 60px;
}

.footBox .footerTab span {
    font-size: 16px;
    font-weight: bold;
    color: #222;
}

.footAddress {
    margin-top: 25px;
    height: 172px;
    display: flex;
    justify-content: space-evenly;
    box-sizing: border-box;
    padding-bottom: 30px;
}

.footAddress .address-left {
    height: 142px;
    width: 142px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.footAddress .address-left img:first-child {
    width: 142px;
    height: 142px;
}

.footAddress .address-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-right: 50px;
}

.footAddress .address-content p {
    text-align: left;
    position: relative;
    margin-bottom: 29px;
}

.footAddress .address-content p span {
    font-size: 16px;
    font-family: PingFang SC, PingFang SC-Medium;
    font-weight: 500;
    line-height: 30px;
    color: #ffffff;
}

.footAddress .address-content p::after {
    content: '';
    width: 30px;
    height: 2px;
    background: #ffffff;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.footAddress .address-content span {
    font-size: 18px;
    font-family: PingFang SC, PingFang SC-Regular;
    font-weight: 100;
    text-align: left;
    color: #ffffff;
    line-height: 30px;
}

.qrcode-list {
    display: flex;
}

.qrcode-list img + img {
    margin-left: 20px;
}

.footer-copyright {
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: #006633;
    text-align: center;
    font-size: 12px;
    font-family: PingFang SC, PingFang SC-Regular;
    font-weight: 400;
    color: #ffffff;
}

/* 手机端样式 */
@media (max-width: 768px) {
    .cont-link-sel {
        flex-direction: column; /* 垂直排列 */
        align-items: center; /* 居中 */
        gap: 10px; /* 元素间距 */
    }

    .cont-link-sel span {
        margin-right: 0; /* 取消右边距 */
    }

    .cont-link-sel select {
        width: 90%; /* 宽度调整为 90% */
    }

    .cont-link-sel svg {
        display: none; /* 隐藏 SVG 图标 */
    }

    .footerTab {
        flex-direction: column; /* 垂直排列 */
        gap: 10px; /* 元素间距 */
        padding: 20px 0; /* 调整内边距 */
    }

    .footerTab::after {
        display: none; /* 隐藏分割线 */
    }

    .footerTab a + a {
        margin-left: 0; /* 取消左边距 */
    }

    .footAddress {
        height: auto; /* 高度自适应 */
        flex-direction: column; /* 垂直排列 */
        align-items: center; /* 居中 */
        gap: 20px; /* 元素间距 */
        padding-bottom: 20px; /* 调整内边距 */
    }

    .footAddress .address-left img:first-child {
        width: 100px; /* 调整 logo 宽度 */
        height: auto; /* 高度自适应 */
    }

    .footAddress .address-content {
        align-items: center; /* 居中 */
        text-align: center; /* 文字居中 */
        margin-right: 0; /* 取消右边距 */
    }

    .footAddress .address-content p::after {
        display: none; /* 隐藏下划线 */
    }

    .footAddress .address-content span {
        font-size: 14px; /* 调整字体大小 */
    }

    .qrcode-list {
        justify-content: center; /* 居中 */
    }

    .qrcode-list img {
        width: 80px; /* 调整二维码宽度 */
        height: auto; /* 高度自适应 */
    }

    .footer-copyright {
        height: auto; /* 高度自适应 */
        line-height: 1.5; /* 调整行高 */
        padding: 10px 0; /* 调整内边距 */
    }
}