﻿@charset "utf-8";

:root {
    /* --main-color: #223C71; */
    --main-color: #0249D9;
    --dark-color: #333;
    --white-color: #FFFFFF;
    --red-color: #F1151B;
    --grey-color: #999999;
}

img {
    max-width: 100%;
}

@keyframes an_5 {
    from {
        opacity: 0;
        transform: translate3d(0px, 80px, 0px);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes an_7 {
    from {
        opacity: 0;
        /* transform: perspective(1000px) translate3d(0px, 300px, 0px) rotate3d(-100, 0, 50, 45deg); */
        transform: perspective(1000px) translate3d(0px, 300px, 0px) rotate3d(-100, 0, 0, 45deg);
    }

    to {
        opacity: 1;
        transform: perspective(500px) translate3d(0, 0, 0);
    }
}

/*fooer */
.back_top {
    position: fixed;
    right: 5px;
    bottom: 8%;
    display: none;
    z-index: 8;
}

.back_top>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background-color: rgba(85, 85, 85, 0.40);
    backdrop-filter: blur(8px);
    border-radius: 50%;
}

.sidebar-item {
    /*border-radius: 50%;*/
    /*background: #261e48;*/
    position: fixed;
    right: 5px;
    bottom: 40%;
    z-index: 8;
    width: 100px;
    height: 100px;
}

.sidebar-item>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background-color: var(--main-color);
    backdrop-filter: blur(8px);
    border-radius: 50%;
}
.sidebar-item>a:hover {
    background-color: #0c84ff;
}

.footer {
    padding: 0 120px;
    background-color: var(--white-color);
    overflow: hidden;
}

.foot_top_left {
    flex: 1;
    margin-right: 120px;
    padding-top: 70px;
    padding-bottom: 90px;
    border-right: 1px solid rgba(0, 0, 0, 0.10);
}

.foot_logo {
    padding-right: 127px;
}

.foot_logo img {
    width: 132px;
}

.foot_top_right {
    padding-top: 70px;
    padding-bottom: 30px;
    width: 25%;
}

.foot_top_right .t {
    color: #000;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.foot_top_right .eng {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.foot_menu {
    flex: 1;
    display: flex;
    padding-right: 30px;
}

.foot_menu ul:first-child {
    margin-right: 12vw;
}

.foot_menu ul li {
    padding-bottom: 24px;
}

.foot_menu ul li:last-child {
    padding-bottom: 0;
}

.foot_menu ul li a {
    position: relative;
    display: inline-block;
    color: var(--dark-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    word-break: break-all;
}

.foot_menu ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--main-color);
    transform-origin: bottom right;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.foot_menu ul li a:hover {
    color: var(--main-color);
}

.foot_menu ul li a:hover::before {
    transform-origin: bottom left;
    transform: scaleX(1);
}


.mess_link {
    padding-top: 24px;
}

.mess_link a {
    display: inline-flex;
    padding: 16px 20px 16px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background:var(--main-color);
    border: 1px solid transparent;
    transition: background .3s;
}

.mess_link a {
    color: var(--white-color);
    text-align: center;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.mess_link a i {
    position: relative;
    margin-left: 10px;
    width: 24px;
    height: 24px;
    display: inline-block;
    overflow: hidden;
}

.mess_link a i img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s;
}

.mess_link a i img:nth-child(2) {
    top: 100%;
}

.mess_link a:hover {
    border: 1px solid var(--main-color);
    background: #FFF;
    color: var(--main-color);

}

.mess_link a:hover i img:first-child {
    top: -100%;
}

.mess_link a:hover i img:nth-child(2) {
    top: 0;
}

.foot_mid {
    padding: 16px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.foot_mid .left {
    flex: 1;
    color: #333;
    font-size: 16px;
    font-weight: 400;
}

.foot_mid .left div {
    margin-right: 77px;
    display: flex;
    align-items: center;
}

.foot_mid .left div:last-child {
    margin-right: 0;
}

.foot_mid .left div i {
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    overflow: hidden;
}

.foot_mid .left div i img {
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 1;
    transition: opacity 0.3s;
}

.foot_mid .left div i img:nth-child(2) {
    opacity: 0;
}

.foot_mid .left div:hover i img:nth-child(2) {
    opacity: 1;
}

.foot_mid .left div:hover i img:nth-child(1) {
    opacity: 0;
}

.foot_email {
    position: relative;
}

.foot_email #copyNotification {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    display: none;

}

.foot_email #copyNotification span {
    position: relative;
    display: flex;
    padding: 10px 12px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: var(--dark-color);
    line-height: 26px;
    border-radius: 4px;
    background: #F5F7FA;
}

.foot_email #copyNotification span::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -6px;
    width: 12px;
    height: 6px;
    background-image: url(../images/email_jt.svg);
}

.foot_mid .left div:hover,
.foot_mid .left div:hover a {
    color: var(--main-color);
}

.share a {
    position: relative;
    display: flex;
    margin-left: 16px;
    width: 58px;
    height: 58px;
    background-color: #F5F7FA;
    backdrop-filter: blur(4px);
    border-radius: 50%;
}

.share a img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
}

.share a img:nth-child(2) {
    opacity: 0;
}

.share a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    display: block;
    width: 0;
    height: 0;
    background-color: var(--main-color);
    transition: all 0.5s ease-out;
    z-index: -1;
}

.share a:hover::before {
    width: 100%;
    height: 100%;
}

.share a:hover img:nth-child(2) {
    opacity: 1;
}

.share a:hover img:nth-child(1) {
    opacity: 0;
}

.foot_bottom {
    padding: 32px 0 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    color: var(--grey-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.foot_bottom .right a {
    position: relative;
    display: inline-block;
    padding-left: 32px;
    margin-left: 32px;
    color: var(--grey-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.foot_bottom .right a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background-color: rgba(0, 0, 0, 0.20);
}

.foot_bottom .right a:first-child::before {
    display: none;
}

.foot_bottom .right a:hover {
    color: var(--main-color);
}

@media (min-width:768px) {}

@media (max-width:1580px) {
    .foot_menu ul:first-child {
        margin-right: 8vw;
    }

    .foot_top_left {
        margin-right: 100px;
    }

    .foot_mid .left div {
        margin-right: 57px;
    }
}

@media (max-width:1440px) {
    .foot_logo {
        padding-right: 100px;
    }

    .foot_menu ul:first-child {
        margin-right: 8vw;
    }

    .foot_top_left {
        margin-right: 100px;
    }

    .foot_mid .left div {
        margin-right: 37px;
    }
}

@media (max-width:1366px) {
    .foot_logo {
        padding-right: 80px;
    }

    .foot_menu ul:first-child {
        margin-right: 8vw;
    }

    .foot_top_left {
        margin-right: 80px;
    }

    .foot_mid .left div {
        margin-right: 37px;
    }
}

@media (max-width:1279px) {

    .foot_menu ul:first-child {
        margin-right: 6vw;
    }

    .foot_mid .left div {
        margin-right: 25px;
    }

}

@media (max-width:1240px) {

    .foot_logo {
        padding-right: 30px;
    }

    .foot_menu ul:first-child {
        margin-right: 25px;
    }

    .foot_top_left {
        margin-right: 30px;
        padding-bottom: 90px;
    }

    .mess_link a {
        padding: 16px 12px 16px 14px;
    }

    .foot_mid .left {
        flex-wrap: wrap;
    }

    .foot_mid .left div {
        padding-bottom: 15px;
    }

    .foot_mid .left div:last-child {
        padding-bottom: 0;
    }


}

@media (max-width:991px) {
    .footer {
        padding: 0 40px;
    }

    .foot_top {
        flex-wrap: wrap;
    }

    .foot_top_left {
        width: 100%;
        flex: inherit;
        margin-right: 0;
        border-right: none;
        padding-bottom: 30px;
        justify-content: space-between;

    }

    .foot_top_right {
        width: 100%;
        padding-top: 0;
    }

    .foot_logo {
        padding-right: 80px;
    }

    .foot_menu {
        flex: 1;
        display: flex;
        padding-right: 0;
        max-width: 65%;
    }

    .foot_menu ul:first-child {
        margin-right: 45px;
    }


}

@media (max-width:767px) {
    .footer {
        padding: 0 20px;
    }

    .foot_top_left {
        flex-wrap: wrap;
        padding-top: 35px;
    }

    .foot_logo {
        padding-right: 0;
        width: 100%;
    }

    .foot_menu {
        padding-top: 25px;
        display: block;
        flex: inherit;
        width: 100%;
        padding-right: 0;
        max-width: inherit;
    }

    .foot_menu ul:first-child {
        margin-right: 0;
        padding-bottom: 16px;
    }

    .foot_menu ul li {
        padding-bottom: 16px;
    }

    .foot_mid {
        flex-wrap: wrap;
    }

    .foot_mid .left {
        width: 100%;
        display: block;
    }

    .foot_mid .right {
        padding-top: 25px;
        width: 100%;
    }

    .mess_link a {
        padding: 10px 8px 10px 12px;
    }

    .mess_link a i {
        margin-left: 6px;
        width: 20px;
        height: 20px;
    }

    .foot_top_right .t {
        font-size: 22px;
    }

    .share a {
        margin-left: 0;
        margin-right: 16px;
        width: 48px;
        height: 48px;
    }

    .foot_bottom {
        flex-wrap: wrap;
    }

    .foot_bottom {
        padding: 16px 0 20px 0;
    }

    .foot_bottom .left {
        width: 100%;
    }

    .foot_bottom .right {
        padding-top: 10;
    }

    .foot_bottom .right a {
        position: relative;
        display: inline-block;
        padding-left: 6px;
        margin-left: 6px;
    }

    .foot_bottom .right a:first-child {
        padding-left: 0;
        margin-left: 0;
    }

}

/* cookie */
.cookie-message {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    background: #FFF;
    width: 100%;
    padding: 16px 40px;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    display: none;
    z-index: 9;
}

.cookie-message>div:first-child {
    width: 100%;
}

.cookie-message .left {
    padding-right: 20px;
}

.cookie-message .left a {
    color: var(--main-color);
}

#accept-cookie {
    display: flex;
    padding: 16px 24px;

    justify-content: center;
    align-items: center;
    border-radius: 50px;
    min-width: 186px;
    background: #333;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    cursor: pointer;
}

#accept-cookie:hover {
    background-color: var(--main-color);
}

@media (max-width:991px) {
    .cookie-message {
        padding: 16px 30px;
    }

    #accept-cookie {
        padding: 10px 16px;
        min-width: 130px;

    }
}
@media (max-width:767px) {
    .cookie-message {
        padding: 16px 20px;
        font-size: 14px;
        line-height: 20px;
    }

    #accept-cookie {
        padding: 8px 16px;
        min-width: 110px;

    }
}

/* footer form */
body.ovh {
    overflow: hidden;
}

.form_mask {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: -1;
}

.foot_form {
    position: fixed;
    right: 0;
    bottom: -110%;
    display: inline-flex;
    padding: 40px;
    width: 704px;
    max-width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 8px 8px 0px 0px;
    background: #FFF;
    overflow: hidden;
    overflow-y: auto;
    transition: bottom 0.67s ease-in-out;
    z-index: 99;
}

.foot_form .form_title {
    color: var(--dark-color);
    font-weight: 500;
    line-height: 1.5;
}

.foot_form form {
    padding-top: 40px;
    width: 100%;
}

.foot_form .des {
    margin-top: 16px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.foot_form.show {
    bottom: 0;
}

.form_close {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 32px;
    cursor: pointer;
}

.foot_form .w100 {
    width: 100%;
}

.foot_form .w2 {
    margin-left: -12px;
    margin-right: -12px;
}

.foot_form .w2 .container-input {
    width: 50%;
    margin-left: 12px;
    margin-right: 12px;
}

.input_select_box {
    position: relative;
    margin-bottom: 40px;
}

.input_select_box>.span {
    position: relative;
    margin-bottom: 0;
}

.input_select_box>.span input {
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    height: 45px;
    border: 0;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Basic';
}

.input_select_box .icon {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);

    height: 24px;
    width: 24px;
    background-image: url(../images/icon/select_icon.svg);
}

.input_select_box .drop_down_ {
    position: absolute;
    left: -1px;
    top: 45px;
    width: calc(100% + 2px);
    background: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-top: none;
    padding-bottom: 10px;
    z-index: 9;
}

.input_select_box .drop_down_ p {
    padding: 8px 20px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
}


.foot_form .form-control {
    font-size: 16px;
    padding: 0;
    color: #666;
    border: none;
    height: 45px;
    width: 100%;
    border-radius: 0;
    background: none;
    box-shadow: inherit;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.container-input label em {
    font-style: normal;
    color: #666;
    font-size: 16px;
    margin-left: 4px;
}
.container-input {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    transition: all .3s ease-in-out;
    transition-delay: 0s;
}

.container-input input {
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    height: 45px;
    border: 0;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
}

.container-input textarea {
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    height: 120px;
    padding-top: 10px;
    border: 0;
    color: #666;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: 'Basic';
    resize: none;
}

.container-input.error label,
.ok_require input:valid~label {
    color: #D6D6D6;
    transform: translate(-12%, -60%) scale(0.75);
}

.container-input input:focus~.bar:before,
.container-input input:focus~.bar:after {
    width: 50%;
}

.container-input textarea:focus~.bar:before,
.container-input textarea:focus~.bar:after {
    width: 50%;
}

.container-input input:focus~label {
    color: #D6D6D6;
    transform: translate(-12%, -50%) scale(0.75);
}

.container-input textarea:focus~label {
    color: #D6D6D6;
    transform: translate(-12%, -50%) scale(0.75);
}

.container-input label.error {
    position: absolute;
    bottom: -20px !important;
    top: inherit;
    line-height: 25px;
    font-size: 14px;
    color: var(--red-color);
    transform: none !important;
}

.error {
    color: var(--red-color);
}

.not_required .m_label,
.container-input label {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    font-weight: 400;

    line-height: 45px;
    color: #666;
    font-size: 16px;
    font-family: 'Basic';
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    transition: 0.2s ease;
}
.container-input .bar {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #F0F0F0;
    width: 100%;
    height: 1px;
}

.container-input .bar:before,
.container-input .bar:after {
    content: "";
    position: absolute;
    background: #242424;
    width: 0;
    height: 1px;
    transition: 0.2s ease;
}

.container-input .bar:before {
    left: 50%;
}

.container-input .bar:after {
    right: 50%;
}

.form_last {
    display: flex;
    justify-content: flex-end;
}

.btn_submit {
    display: inline-flex;
    padding: 16px 20px 16px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: var(--main-color);
    border: 1px solid transparent;
    transition: background .3s;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.btn_submit i {
    position: relative;
    margin-left: 10px;
    width: 24px;
    height: 24px;
    display: inline-block;
    overflow: hidden;
}

.btn_submit i img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s;
}

.btn_submit i img:nth-child(2) {
    top: 100%;
}

.btn_submit:hover {
    border: 1px solid var(--main-color);
    background: #FFF;
    color: var(--main-color);

}

.btn_submit:hover i img:first-child {
    top: -100%;
}

.btn_submit:hover i img:nth-child(2) {
    top: 0;
}

@media (max-width:767px) {

    .foot_form {
        display: block;
        padding: 30px 20px;
    }

    .foot_form .w2 {
        flex-wrap: wrap;
    }

    .foot_form .w2 .container-input {
        width: 100%;
    }

   
    .btn_submit i {
        margin-left: 6px;
        width: 20px;
        height: 20px;
    }
}
/* 标题动效 */

.tt {
    overflow: hidden;
    opacity: 0;
}

.aos-animate .tt {
    animation: an_7 1s 1 both;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-delay: 0.5s;
}
.tt2 {
    overflow: hidden;
    opacity: 0;
}

.aos-animate .tt2 {
    animation: an_7 1s 1 both;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-delay: 0.3s;
}
@media (max-width:767px) {
    .tt,.tt2 {
        opacity: 1;
    }
}

/* button */

.page_button .right div {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}
.page_button .right div::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0);
    background-color: var(--main-color);
    border-radius: 50%;
    transition: transform 0.5s;
    z-index: -1;
}
.page_button .right div.swiper-button-disabled {
    cursor: default;
    pointer-events: none;
    opacity: 0.5;
}

.page_button div:nth-child(2) {
    margin-left: 16px;
}

.page_button .right div:hover:before {
transform: translate(-50%, -50%) scale(1);
}

.page_button .right div:hover svg path {
    stroke: var(--white-color);
}
@media (max-width:767px) {
    .page_button .right div {
        width: 50px;
        height: 50px;
    }


}


/*page*/
.paged {
    padding: 30px 0 60px 0;
    text-align: center;
    overflow: hidden;
}

.paged .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.paged .pagination li {
    display: inline-block;
}

.paged:after {
    clear: both;
    content: '';
    width: 0px;
    display: block;
    height: 0px;
    visibility: hidden;
}

.paged span,
.paged a {
    display: flex;
    padding: 16px 34px;
    justify-content: center;
    align-items: center;
    margin: 0 8px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 50px;
background: var(--white-color);
}

.paged a:hover,
.paged .active span {
    color: #fff;
    background-color: var(--main-color);
}



@media (max-width:767px) {
    .paged {
        padding: 30px 0 30px 0;
    }

    .paged span,
    .paged a {
        font-size: 14px;
        padding: 4px 12px;
        margin: 0 2px;
   
    }

   

}