button:active {
    transition: scale .3s linear;
    transform: scale(0.96);
}
.dropdown_box {
    display: none;
}

.header_container {
    width: 100%;
    height: 68px;
    background: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    position: sticky;
    top: 0;
    z-index: 10;
}
.header_left {
    display: flex;
    align-items: center;
}
.header_left span {
    margin: 0 20px;
    width: 1px;
    height: 21px;
    background: #FFFFFF;
}
.top_logo_one {
    cursor: pointer;
    height: 30px;
}
.header_right {
    display: flex;
    align-items: center;
}
.header_link_list {
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    grid-gap: 72px;
}
.login_btn {
    margin-left: 60px;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    width: 130px;
    height: 38px;
    border-radius: 8px;
    background: #000000;
    border: 2px solid #0080FF;
}
.download_btn {
    border: none;
    margin-left: 50px;
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
    width: 120px;
    height: 38px;
    background: #0080FF;
    border-radius: 8px;
}

.section_container {
    width: 100%;
}

.footer_container {
    width: 100%;
    background: black;
}
.footer_top {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0 32px 0;
}
.footer_qr_box {
    width: 158px;
}

.ic_footer_logo {
    width: 100%;
}
.footer_qr_content {
    margin-top: 22px;
    width: 100%;
    padding: 2px;
    height: 158px;
    background: #ffffff;
}
.footer_qr {
    width: 100%;
    height: 100%;
}
.footer_info_box {
    margin-left: 22px;
    display: flex;
}
.footer_info_box_list {
    margin-left: 98px;
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 20px;
    color: #FFFFFF;
}
.footer_info_box_item {
    margin-top: 24px;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}
.footer_bottom {
    padding: 32px 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    font-weight: 400;
    font-size: 16px;
    color: #939AA3;
}

.wechat_box {
    width: 160px;
    background: rgba(255,255,255,0.3);
    border-radius: 16px;
    position: fixed;
    right: 27px;
    bottom: 126px;
    z-index: 3;
    padding: 1px;
}
.kefu_ic {
    width: 90px;
    height: 90px;
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
}
.wechat_content {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: #191919;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 16px;
}
.free_call_title {
    margin-top: 14px;
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
}
.free_call_wx {
    margin-top: 11px;
    width: 124px;
    height: 124px;
    border-radius: 8px;
    overflow: hidden;
}
.free_call_desc {
    margin-top: 12px;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
}
.loading_wx {
    padding: 50px;
    animation: linear rotateLoading 1.5s infinite;
}
@keyframes rotateLoading {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1439px){
    .header_link_list {
        font-size: 16px;
    }
    .download_btn {

        font-size: 16px;
    }
}
@media (max-width: 1279px) {
    .header_container {
        padding: 0 40px;
    }
    .header_link_list {
        grid-gap: 0 40px;
        font-size: 16px;
    }
    .top_logo_one {
        height: 24px;
    }
    .download_btn {
        font-size: 16px;
    }
    .footer_bottom {
        font-size: 14px;
    }
}
@media (max-width: 750px) {
    .header_link_list {
        display: none;
    }
    .dropdown_link_list a {
        font-size: 14px;
    }
    .dropdown_box {
        color: #FFFFFF;
        display: inherit;
    }
    .dropdown_box_btn {
        color: #FFFFFF;
        font-size: 14px;
        background: transparent !important;
        border: none !important;
    }
    .dropdown_box_btn:active,.dropdown_box_btn:focus,.dropdown_box_btn:hover,.dropdown_box_btn:checked {
        border: none !important;
        background: transparent !important;
    }
    .header_container {
        padding: 0 20px;
    }
    .top_logo_one {
        height: 18px;
    }
    .header_link_list {
        font-size: 14px;
        grid-gap: 0 20px;
    }
    .download_btn {
        width: 90px;
        height: 28px;
        margin-left: 20px;
        font-size: 14px;
    }
    .footer_top {
        display: none;
    }
    .footer_bottom {
        flex-direction: column;
    }
    .footer_line {
        display: none;
    }
}
