/* 底部样式 */
:root {
    --header-footer-base-size: 1px;
}
a:hover {
    color: #fff;
}
select{
    appearance: auto;
}
.customs_footer {
    border-top: calc(var(--header-footer-base-size) * 0.03) solid #015293;
}

.foot_pubcon {
    width: calc(var(--header-footer-base-size) * 17.6);;
    margin: 0 auto;
}

.footer_link {
    background: #f5f5f5;
}

.footer_link .foot_pubcon {
    display: flex;
    height: calc(var(--header-footer-base-size) * 1);;
    align-items: center;
}

.footer_link span {
    font-size: calc(var(--header-footer-base-size) * 0.23);;
    color: #333;
    flex-shrink: 0;
}

.foot_link_select {
    padding: 0 calc(var(--header-footer-base-size) * 0.3);;
    position: relative;
    display: inline-flex;
}

.foot_link_select::after {
    content: '|';
    color: #015293;
    font-size: calc(var(--header-footer-base-size) * 0.2);;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.foot_link_select select {
    background: none;
    border: none;
    font-size: calc(var(--header-footer-base-size) * 0.23);
    color: #333;
    line-height: 1em;
    max-width: calc(var(--header-footer-base-size) * 2);
}

.foot_link_select:last-child::after {
    display: none;
}

.customs_footer * {
    font-family: 微软雅黑, Arial;
}
.footer_copyright {
    background: #004378;
    padding: calc(var(--header-footer-base-size) * 0.38) 0;
}

.footer_copyright .foot_pubcon {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_copyright * {
    color: #fff;
    line-height: 1.8em;
    font-size: calc(var(--header-footer-base-size) * 0.2);
}

.footer_copyright .link {
    margin-bottom: calc(var(--header-footer-base-size) * 0.1);
}

.footer_copyright .link * {
    font-size: calc(var(--header-footer-base-size) * 0.23);
    cursor: pointer;
}

.footer_copyright .link i {
    font-style: normal;
    margin: 0 calc(var(--header-footer-base-size) * 0.15);
}

.footer_copyright p * {
    margin-right: 1em;
}

.footer_copyright .img {
    display: inline-flex;
}

.footer_copyright .img a {
    margin-left: calc(var(--header-footer-base-size) * 0.17);
}

.footer_copyright .img img {
    height: calc(var(--header-footer-base-size) * 0.6);
}


/* 适配代码 */
@media screen and (max-width: 1200px) {
    .foot_pubcon {
        width: 92vw;
    }

    .footer_link span {
        font-size: calc(var(--header-footer-base-size) * 0.34);
    }

    .foot_link_select select {
        font-size: calc(var(--header-footer-base-size) * 0.3);
    }

    .footer_copyright {
        padding: calc(var(--header-footer-base-size) * 0.5) 0;
    }

    .footer_copyright * {
        font-size: calc(var(--header-footer-base-size) * 0.3);
    }

    .footer_copyright .link * {
        font-size: calc(var(--header-footer-base-size) * 0.34);
    }

    .footer_copyright .img img {
        height: calc(var(--header-footer-base-size) * 1);
    }

    .footer_copyright p a, .footer_copyright p span {
        white-space: nowrap;
    }
}

@media screen and (max-width: 768px) {
    .footer_link {
        display: none;
    }

    .footer_copyright .foot_pubcon {
        display: block;
    }

    .footer_copyright * {
        font-size: 14px;
    }

    .footer_copyright .img a {
        margin-left: 0;
        margin-right: 15px;
    }

    .footer_copyright .img img {
        height: 40px;
    }

    .footer_copyright .link * {
        font-size: 16px;
    }

    .footer_copyright .foot_pubcon .txt {
        margin-bottom: 20px;
    }

    .footer_copyright .foot_pubcon .img {
        display: flex;
        justify-content: center;
    }
}