@charset "utf-8";

:root {
    --main-color: #EC9819;
    --dark: #333;
    --white-color: #FFFFFF;
    --blue-color: #3164A7;
}

img {
    max-width: 100%;
}

/* header */
header {}

header .header {
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding-left: 60px;
    padding-right: 25px;
    z-index: 30;
}

header .header::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);

}

.logo {
    max-width: 165px;
}

.logo img:nth-child(2) {
    display: none;
}

.menu>ul>li {
    float: left;
    padding-left: 36px;
    padding-right: 36px;
}

.menu>ul>li>a {
    position: relative;
    padding: 27px 0;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
}

.menu>ul>li>a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    transition: all 0.3s ease-in-out;
}

.menu>ul>li:hover>a,
.menu>ul>li.active>a {
    color: var(--main-color) !important;
}

.menu>ul>li:hover>a:before,
.menu>ul>li.active>a::before {
    width: 100%;
}


.head_right {
    display: flex;
    align-items: center;
}

.language_box {
    position: relative;
    margin-right: 12px;
}

.header_language:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 54px;
    background: #E9E9E9;
    opacity: 0;
    border-radius: 27px;
    z-index: 1;
    pointer-events: none;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

.language_current {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(8px);
    transition: all .6s ease;
    position: relative;
    z-index: 2;
}

.header_language {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    padding-top: 40px;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    pointer-events: none;
}

.language_content {
    position: relative;
    z-index: 2;
    padding: 10px 0 10px 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.language_content .language_item_box {
    padding-bottom: 2px;
}

.language_content a {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    font-family: Arial;
    text-transform: uppercase;
    display: block;
    text-align: center;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

.language_content a:hover {
    color: var(--main-color);
}

.language_box:hover .language_current {
    background: var(--main-color);
}

.language_box:hover .header_language {
    pointer-events: auto;
}

.language_box:hover .language_content {
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.language_box:hover .header_language:after {
    height: 100%;
    opacity: 1;
}

.head_email {
    position: relative;
    margin-right: 12px;
}

.email_eject {
    display: none;
    background: #fff;
    box-shadow: 0 1px 11px rgba(0, 0, 0, 0.3);
    width: auto;
    color: var(--dark);
    font-size: 16px;
    padding: 10px 15px;
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
    z-index: 96;
}

.email_eject:before {
    border: solid transparent;
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border-width: 10px;
    border-bottom-color: #fff;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}



.head_button {
    display: flex;
    align-items: center;
    height: 80px;
    padding-top: 20px;
    padding-bottom: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.20);
}

.search_box {
    position: relative;
    margin-right: 12px;
    z-index: 9;
}
.menu-active .search-box {
    opacity: 0;
}

.header .search-box {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    min-width: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.am6 {
    transition: .4s all;
}

.s_search {
    display: none;
    width: 24px;
    height: 24px;
    background-image: url(/template/default/index/4344/images/search_icon.svg);
    background-repeat: no-repeat;
    background-color: transparent;
    cursor: pointer;
}

.head-search {
    display: none;
}

.header .search-box .head-search .icon-close {
    margin-left: 10px;
    color: #fff;
    cursor: pointer;
}

.header .search-box .head-search>div {
    width: 200px;
    height: 100%;
}

.header .search-box #headKey {
    width: calc(100% - 20px) !important;
}

.header .head-search input {
    color: var(--white-color);
    font-size: 16px;
    line-height: 30px;
    background: transparent;
}

.header .head-search input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

.header .head-search input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

.header .head-search input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}




.header .search-box .search-wrap {
    width: 40px;
    height: 40px;

}

.header .search-box .head-search .icon-close:hover {
    transform: rotate(360deg);
}

.opacity_head .search-box.open {
    border: 1px solid #fff;
}

.header .search-box.open {
    padding-right: 10px;
    padding-left: 10px;
}

.header .search-box .head-search .icon-close {
    width: 24px;
    height: 24px;
    background-image: url(/template/default/index/4344/images/white_close.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.header .header-nav .header-nav-item.active a:before {
    background-color: #333;
}

.header-nav .header-nav-item.text-white {
    opacity: 1;
}

.header .search-box.open {
    border-radius: 30px;
}

.header .search-box.open .sstop {
    display: none;
}

.header .search-box.open .s_search {
    display: inline-block;
}

.header .search-box.open .search-wrap {
    width: 40px;
}


.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon {
    margin-left: 25px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
    z-index: 20;
}

.nav-icon:before {
    right: 0;
    top: 0;
}

.nav-icon:after,
.nav-icon:before {
    content: "";
    position: absolute;
    width: 50%;
    opacity: 0;
    height: 2px;
    background-color: var(--white-color);
    -webkit-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
}

.nav-icon.active:after,
.nav-icon.active:before {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translate(-50%, 50%);
    width: 60%;
    height: 2px;
    background-color: var(--white-color);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    opacity: 1;
}

.nav-icon img:nth-child(2) {
    display: none;
}

.nav-icon.active {
    background: var(--main-color);
    border-radius: 50%;
}

.nav-icon.active span {
    display: none;
}

.nav-icon.active::before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.nav-icon.active:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-active .head_button {
    opacity: 0;
}
/* 触摸导航 */
.menu>ul>li .sub-menu {
    left: 0;
    position: absolute;
    top: 100%;
    display: flex;
    transition: all 0.4s ease-out;
    width: 100%;
    background: rgba(0, 0, 0, 0.50);
    z-index: 9;
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
}
.menu>ul>li .sub-menu>.location {
    width: 100%;
    padding: 0;
    background-color: transparent;
}
.menu>ul>li .sub-menu .location .loca_menu {
    display: flex;
    justify-content: center;
}
.menu>ul>li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}
@media (max-width:1579px) {

    .menu ul li {
        padding-left: 26px;
        padding-right: 26px;
    }


}

@media (max-width:1440px) {

    .menu ul li {
        padding-left: 20px;
        padding-right: 20px;
    }


}

@media (max-width:1279px) {
    .menu {
        display: none !important;
    }

}

/* menu eject */
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

@-webkit-keyframes mfadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }

}

@-o-keyframes mfadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }

}

@keyframes mfadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }

}
body.menu-active {
    overflow: hidden;
}
.navigate-mark {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
}

.navigate {
    width: 100%;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    transition: all 0.4s;
    z-index: 20;
}

.navigate.show {
    visibility: visible;
}

.navigate.show .navigate-item {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
    transition: 0.6s 0.4s;
}

.navigate.show .navigate-item:nth-child(2) {
    transition-delay: 0.6s;
}

.navigate.show .navigate-item:nth-child(3) {
    transition-delay: 0.8s;
}

.navigate:before {
    content: "";
    width: 0;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--main-color);
    z-index: -2;
    visibility: hidden;
    transform-origin: right top;
    animation: gradient 2s ease infinite;
    animation-direction: alternate;
    -webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .4s cubic-bezier(.77, 0, .175, 1);
    transition: all .4s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s;
    pointer-events: none !important;
}

.navigate:after {
    content: "";
    width: 0;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
    position: absolute;
    right: 0px;
    top: -40px;
    background-color: var(--white-color);
    background-image: url(/template/default/index/4344/images/menu_bg.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 100% 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transform-origin: right top;
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
    pointer-events: none !important;
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    transition: all .6s cubic-bezier(.77, 0, .175, 1);
}

.navigate.reverse:before {
    -webkit-transition-delay: .2s !important;
    -o-transition-delay: .2s !important;
    transition-delay: .2s !important;
}

@keyframes gradient {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 0 100%
    }

}

.menu-active .header .menu {
    display: none;
}

.menu-active .header .logo img:nth-child(1) {
    display: none;
}

.menu-active .header .logo img:nth-child(2) {
    display: block;
}

.navigate.show:before {
    opacity: 1;
    width: 100%;
    height: 100%;
    visibility: visible;
}

.navigate.show:after {
    opacity: 1;
    height: 100%;
    width: 100%;
    visibility: visible;
}

.navigate-list {
    position: absolute;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    right: 0;
    padding-top: 100px;
    padding-bottom: 50px;
    overflow: hidden;
}

.navigate-item {
    width: 33.3333%;
    float: left;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    transform: translateX(120px);
}

.navigate-item dt {
    display: block;
    margin-bottom: 18px;
}

.navigate-item dt a {
    display: inline-block;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    font-weight: lighter;
}

.navigate-item dd {
    display: block;
}

.navigate-item dd p a {
    display: inline-block;
    color: #a6c8f7;
    font-size: 24px;
    font-weight: lighter;
    line-height: 1.5;
}

.navigate-item dd p a:hover {
    color: #fff;
}

.m_container {
    padding-right: 25px;
    padding-left: 60px;
    width: 100%;
}

.navigate-list .m_container {
    height: 100%;
}

.navigate-list .nav_cont {
    padding: 30px;
    padding-bottom: 0;
    height: 652px;
    margin: 0 auto;
    max-width: 1440px;
    max-height: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.navigate-list .nav_cont .nav_l {
    float: left;
    width: 55%;
    height: 100%;
    display: flex;
    padding-right: 160px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    opacity: 0;
}

.navigate-list .nav_cont .nav_r {
    width: 45%;
    padding-left: 160px;
    align-self: flex-end !important;
    opacity: 0;
}

.nav_cont .nav_l ul.row {
    max-width: 340px;
}

.nav_cont .nav_l ul li.one_menu {
    padding: 15px 0;
    position: relative;
}

.nav_cont .nav_l ul li.one_menu span {
    font-size: 13px;
    font-family: 'D-DIN-PRO';
    color: #999;
    float: left;
    padding-right: 9px;
    opacity: 0.9;
}

.nav_cont .nav_l ul li.one_menu>a {
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    width: 170px;
    display: inline-block;
    color: #999;
}

.nav_cont .nav_l ul li.one_menu a:hover span,
.nav_cont .nav_l ul li:hover a span,
.nav_cont .nav_l ul li.one_menu a:hover,
.nav_cont .nav_l ul li:hover a {
    opacity: 1;
}

@media (min-width:768px) {

    .nav_cont .nav_l ul li.one_menu .two_menu {
        position: absolute;
        top: 28%;
        left: 175px;
        padding-left: 50px;
        height: auto;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 300ms linear;
        -o-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -webkit-transition: all 300ms linear;
        z-index: 1000;
    }

    .nav_cont .nav_l ul li.one_menu .two_menu:before {
        content: "";
        width: 40px;
        height: 1px;
        position: absolute;
        left: 0;
        top: 10px;
        background: var(--dark);
    }

    .nav_cont .nav_l ul li.one_menu .two_menu li {
        padding-bottom: 20px;
        opacity: 0;
    }

    .nav_cont .nav_l ul li.one_menu .two_menu li a {
        font-size: 18px;
        opacity: 1;
        font-weight: 500;
        width: auto;
        color: var(--dark);
    }

    .nav_cont .nav_l ul li.one_menu .two_menu li a:hover {
        color: var(--main-color);
    }

    .nav_cont .nav_l ul li.one_menu:hover .two_menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .nav_cont .nav_l ul li.one_menu:hover .two_menu li {
        opacity: 1;
        transition: 0.6s 0.4s;
    }

    .nav_cont .nav_l ul li.one_menu:hover .two_menu li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav_cont .nav_l ul li.one_menu:hover .two_menu li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav_cont .nav_l ul li.one_menu:hover .two_menu li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav_cont .nav_l ul li.one_menu:hover .two_menu li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav_cont .nav_l ul li.one_menu:hover .two_menu li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav_cont .nav_l ul li.one_menu:hover .two_menu li:nth-child(6) {
        transition-delay: 0.6s;
    }

    .nav_cont .nav_l ul li.one_menu:hover .two_menu li:nth-child(7) {
        transition-delay: 0.7s;
    }

    .nav_cont .nav_l ul li.one_menu:hover .two_menu li:nth-child(n+8) {
        transition-delay: 0.7s;
    }
}

.nav_r .nav_add p:nth-child(1) {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark);
    padding-bottom: 15px;
}

.nav_r .nav_add p:nth-child(1) img {
    width: 40px;
    margin-right: 10px;
}

.nav_r .nav_add p:nth-child(2) {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark);
    padding-bottom: 50px;
}

.nav_r .nav_add p a {
    color: inherit;
    font-size: inherit;
}

.show .navigate-list .nav_cont .nav_l {
    opacity: 1;
    height: auto;
    
    -webkit-animation: mfadeIn .6s cubic-bezier(.785, .135, .15, .86) .6s 1 both;
    animation: mfadeIn .6s cubic-bezier(.785, .135, .15, .86) .6s 1 both;
}


.show .navigate-list .nav_cont .nav_r {
    opacity: 1;
    -webkit-animation: mfadeIn .4s cubic-bezier(.785, .135, .15, .86) .8s 1 both;
    animation: mfadeIn .4s cubic-bezier(.785, .135, .15, .86) .8s 1 both;
}

.visible-xs {
    display: none !important;
}

@media (max-height:650px) {

    .navigate-list {
        padding-top: 60px;
        padding-bottom: 50px;
    }

}

@media (max-width:1440px) {
    .nav_cont .nav_l ul li.one_menu>a {
        font-size: 30px;
        width: 165px;
    }

    .navigate-list .nav_cont .nav_r {
        padding-left: 140px;
    }
}

@media (max-width:1366px) {
    .nav_cont .nav_l ul li.one_menu>a {
        font-size: 26px;
        width: 165px;
    }

    .navigate-list .nav_cont .nav_r {
        padding-left: 100px;
    }


}

@media (max-width:1280px) {

    .navigate-list .nav_cont .nav_r {
        padding-left: 80px;
    }


}

@media (max-width:991px) {
    .m_container {
        padding-right: 25px;
        padding-left: 25px;
    }

    .navigate-list .nav_cont .nav_l {
        padding-right: 60px;
    }

    .navigate-list .nav_cont .nav_r {
        padding-left: 60px;
    }

}

@media (max-width:767px) {
    header .header {
        padding-left: 10px;
        padding-right: 16px;
    }

    .nav-icon {
        margin-left: 0;
    }

    .head_email {
        display: none;
    }

    .navigate-list {
        padding-top: 100px;
        padding-bottom: 10px;
    }

    .navigate-list .nav_cont {
        padding: 0 5px;
        padding-right: 0;
        display: block;
        height: 0;
        overflow-y: auto;
    }
    .show .navigate-list  .nav_cont {
        height: 100%;
    }
    .navigate-list .nav_cont .nav_l {
        width: 100%;
        padding-right: 0;
        border-right: none;
        display: inherit;
        height: 0;
    }

    .navigate-list .nav_cont .nav_r {
        width: 100%;
        float: left;
        padding-top: 20px;
        padding-left: 0;
    }

    .nav_cont .nav_l ul li.one_menu {

        padding: 12px 0;

    }

    .two_menu {
        width: 100%;
    }

    .nav_cont .nav_l ul li.one_menu>a {
        font-size: 18px;
        font-weight: 500;
        width: 165px;
    }

    .m_container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .nav_r .nav_add p:nth-child(1) img {
        width: 26px;
        margin-right: 6px;
    }

    .nav_r .nav_add p:nth-child(2) {
        font-size: 16px;
        padding-bottom: 20px;
    }

    .nav_cont .nav_l ul.row {
        max-width: inherit;
        width: 100%;
    }

    .nav_l .two_menu {
        padding-left: 30px;
        padding-top: 15px;
        overflow: hidden;
    }

    .nav_l .two_menu li {
        float: left;
        padding: 0 10px 10px 0px;
    }
    .nav_l .two_menu li a {
        font-size: 16px;
    }

}

/* header hover */
.grey_head {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}

.grey_head .logo img:nth-child(1) {
    display: none;
}

.grey_head .logo img:nth-child(2) {
    display: block;
}

.grey_head .nav-icon img:nth-child(1) {
    display: none;
}

.grey_head .nav-icon img:nth-child(2) {
    display: block;
}

.grey_head .language_current {
    background-color: rgba(0, 0, 0, 0.20);
}

.grey_head .search-box {
    background-color: rgba(0, 0, 0, 0.20);
}

.grey_head .menu>ul>li>a {
    color: var(--dark);
}

.grey_head .menu>ul>li.active>a {
    color: var(--main-color);
}

.grey_head .head_button {
    border-right: 1px solid #F2F2F2;
}

@media (max-width:767px) {
    .header {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        background: #FFF;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    }

    .header .logo img:nth-child(1) {
        display: none;
    }

    .header .logo img:nth-child(2) {
        display: block;
    }

    .header .nav-icon img:nth-child(1) {
        display: none;
    }

    .header .nav-icon img:nth-child(2) {
        display: block;
    }

    .header .language_current {
        background-color: rgba(0, 0, 0, 0.20);
    }

    .header .search-box {
        background-color: rgba(0, 0, 0, 0.20);
    }

    .header .menu ul li a {
        color: var(--dark);
    }

    .header .menu ul li.active a {
        color: var(--main-color);
    }

    .header .head_button {
        border-right: 0;
    }

    .header .search-box .head-search>div {
        width: 162px;
    }

    .header .search-box.open {
        background-color: #999;
        padding-left: 6px;
    }

    .header .search-box.open .search-wrap {
        width: 24px;
    }

    .header .head-search input::-webkit-input-placeholder {
        color: rgba(255, 255, 255, 1);
        font-size: 14px;
    }

    .header .head-search input::-moz-placeholder {
        color: rgba(255, 255, 255, 1);
        font-size: 14px;
    }

    .header .head-search input::-ms-input-placeholder {
        color: rgba(255, 255, 255, 1);
        font-size: 14px;
    }
}


/* right */
.right_rove {
    position: fixed;
    right: 10px;
    bottom: 40px;
    z-index: 9;
}

.right_rove ul li {
    position: relative;
    margin-bottom: 2px;
    overflow: hidden;
}

.right_rove ul li:last-child {
    margin-bottom: 0;
}

.right_rove>ul>li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 4px;
    background: #666;
}

.back_top {
    display: none;
}

.right_rove>ul>li:hover>a {
    background-color: var(--main-color);
}

.right_rove ul li .hide_tel {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    width: max-content;
    padding: 20px 15px;
    text-align: center;
    background-color: var(--main-color);
    opacity: 0;
    justify-content: center;
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: -1;
    box-shadow: 0 4px 10px 0 rgb(0 0 0 / 10%);
}

.right_rove ul li .hide_tel:before {
    border: solid transparent;
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border-width: 10px;
    border-left-color: var(--main-color);
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.right_rove ul li .hide_tel>a {
    color: #ffffff;
    font-size: 16px;
    background-color: transparent;
    border: none;
    padding: 0;
}

.right_rove ul li:hover {
    overflow: visible;
}

.right_rove ul li:hover .hide_tel {
    opacity: 1;
    z-index: 8;
}

/* footer */
footer {
    background-color: #555;
    overflow: hidden;
}

.foot_top {
    padding-top: 50px;
    padding-bottom: 44px;
    background-image: url(/template/default/index/4344/images/foot_bg.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.foot_menu {
    flex: 1;
    padding-right: 100px;
}

.foot_menu ul {
    display: flex;
    justify-content: space-between;
}

.foot_menu a {
    display: block;
    font-weight: 400;
}

.foot_menu ul li a:first-child {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 14px;
}

.foot_menu ul li a {
    color: rgba(255, 255, 255, 0.60);
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 2px;
}

.foot_menu ul li a:last-child {
    margin-bottom: 0;
}

.foot_menu ul li a:nth-child(n+2):hover {
    color: rgba(255, 255, 255, 0.8);
}

.foot_top_right {
    width: 260px;
}

.foot_top_right .code_img {
    max-width: 100px;
}

.foot_top_right .code_img img {
    max-width: 100px;
}

.code_img p {
    padding-top: 12px;
    color: rgba(255, 255, 255, 0.80);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}


.foot_bottom {
    background: #484848;
    padding: 25px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    overflow: hidden;
}

.foot_bottom div {
    color: rgba(255, 255, 255, 0.5);
}

.foot_bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.foot_bottom a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* link */
.index-link {
    margin-top: 25px;
    width: 260px;
    position: relative;
    display: inline-block;
    height: auto;
    text-align: left;

}

.index-link .select_bg {
    height: 46px;
    line-height: 46px;
    padding: 0 18px;
    border-radius: 4px;
    background: #959595;
    position: relative;
    cursor: pointer;
    z-index: 8;
}

.select_bg>a {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
}

.select_bg>i {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-top: 10px;
    padding-right: 10px;
    float: right;
    padding-left: 10px;
    cursor: pointer;
    background-image: url(/template/default/index/4344/images/link_icon.svg);
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center;
}

.bg .select_bg>i {
    transform: rotate(180deg);
}

.index-select-drop {
    position: absolute;
    width: 100%;
    left: 0;
    display: none;
    bottom: 57px;
    z-index: 8;
}

.bg .index-link:before {
    border: solid transparent;
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border-width: 10px;
    border-top-color: #959595;
    top: -11px;
    left: 50%;
    margin-left: -10px;
}

.index-select-drop ul {
    padding: 10px 16px;
    background: #959595;
    border-radius: 4px;
}

.index-select-drop ul li {
    display: block;
    width: 100%;
    padding: 10px 0;
}

.index-select-drop a {
    display: inline-block;
    position: relative;
    width: 100%;
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
}

.index-select-drop::-webkit-scrollbar {
    width: 5px;
    height: 2px
}

.index-select-drop::-webkit-scrollbar-button:vertical {
    display: none
}

.index-select-drop::-webkit-scrollbar-corner,
.index-select-drop::-webkit-scrollbar-track {
    background-color: #fff;
}

.index-select-drop::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #33C4F2;
}

.index-select-drop::-webkit-scrollbar-thumb:vertical:hover {
    background-color: #33C4F2;
}

.index-select-drop::-webkit-scrollbar-thumb:vertical:active {
    background-color: #33C4F2;
}

@media (max-width:1280px) {
    .foot_menu {
        padding-right: 60px;
    }
}

@media (max-width:1200px) {
    .foot_menu {
        padding-right: 40px;
    }
}

@media (max-width:991px) {
    .foot_top>.my-container>div:first-child {
        flex-wrap: wrap;
    }

    .foot_menu {
        flex: inherit;
        padding-right: 0;
        width: 100%;
    }

    .foot_bottom .right {
        float: left;
    }

}

@media (max-width:767px) {
    .foot_top {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .foot_top_right {
        width: 100%;
        text-align: center;
    }

    .foot_top_right .code_img {
        margin: 0 auto;
    }

    .foot_menu {
        display: none;
    }

    .right_rove {
        right: 4px;
        bottom: 20px;
    }

    .right_rove>ul>li>a {
        width: 40px;
        height: 40px;
        padding: 10px;
    }

}






/* 视频弹出 */
/* 弹窗 */

.z_tanchuang {
    position: fixed;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    z-index: 100;
}

.z_tanchuang .tbox {
    display: table-cell;
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    vertical-align: middle;
}

/* 弹窗内容 */

.z_tanchuang .tbox .modal {
    display: block;
    border-radius: 5px;
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90%;
    margin: 0 auto;
}

.z_tanchuang .tbox .modal .out {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff url(../images/grey_close.svg) center no-repeat;
    background-size: 20px;
    color: #000;
    font-size: 30px;
    text-align: center;
    border-radius: 50%;
    top: 0;
    right: -50px;
    cursor: pointer;
}

.z_tanchuang .tbox .modal .img {
    width: 100%;
    max-height: 600px;
    margin: 0 auto;
    height: 60vh;
    display: flex;
    justify-content: center;
}

.z_tanchuang .tbox .modal .img video {
    display: block;
    width: 100%;
    max-height: 100%;
    max-width: max-content;
    /* object-fit: cover; */
    border-radius: 8px;
}

.z_tanchuang .tbox .modal .img img {
    margin: 0 auto;
}

.z_tanchuang .tbox .modal .out:hover {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.z_tanchuang .tbox .modal2 {
    padding: 20px;
}

.z_tanchuang .tbox .modal .img {
    max-width: 1200px;
}



/* 弹窗选中 */

.z_tanchuang.one {
    transform: scaleY(0.01) scaleX(0);
    animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scaleY(0.01) scaleX(0);
    -webkit-animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one .tbox .modal {
    transform: scale(0);
    animation: zoomIns 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scale(0);
    -webkit-animation: zoomIns 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out {
    transform: scale(1);
    animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scale(1);
    -webkit-animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out .tbox .modal {
    animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* 弹窗动画 */

@keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

@keyframes zoomIns {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@-webkit-keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@-webkit-keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@-webkit-keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

.img_tanchuang .tbox .modal,
.img_tanchuang .tbox .modal .img {
    max-width: 1600px;
}


@keyframes big {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
        opacity: 0.3;
    }
}

@-webkit-keyframes big {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
        opacity: 0.3;
    }
}

@media (max-width:767px) {


.z_tanchuang .tbox .modal .img {
    height: auto;
}
.z_tanchuang .tbox .modal .out {
    top: -45px;
    right: 0;
}
}


/* page */
.height80 {
    height: 80px;
}

/* .location {
    position: fixed !important;
    left: 0;
    width: 100%;
    top:80px !important;
    background: rgba(0, 0, 0, 0.50);
    z-index: 99;
} */

.location .my-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location .loca_menu {
    flex: 1;
}

.location .loca_menu ul {
    margin-left: -21px;
    margin-right: -21px;
}

.location .loca_menu ul li {
    float: left;
    padding: 0 21px;
}

.location .loca_menu a {
    padding: 18px 0;
    position: relative;
    display: block;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 400;
}

.location .loca_menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--main-color);
    transform-origin: bottom right;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.location .loca_menu .active a::before,
.location .loca_menu a:hover::before {
    transform-origin: bottom left;
    transform: scaleX(1);
}

.location .loca_menu .active a {
    font-weight: 700;
}


.location .locaiton_r {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;

}

.location .locaiton_r a {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    padding-right: 26px;
    margin-right: 2px;
    background-image: url(/template/default/index/4344/images/location_icon.svg);
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: right;
    opacity: 0.7;
}

.location .locaiton_r a:last-child {
    background-image: none;
    margin-right: 0;
    padding-right: 0;
}

.location .locaiton_r a:hover {
    opacity: 1;
}

.page_title {
    position: relative;
    padding-top: 12px;
    background-image: url(/template/default/index/4344/images/about_line.svg);
    background-size: 30px 3px;
    background-repeat: no-repeat;
    background-position: top left;
}

.page_title h2 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.1;
}

.page_title p {
    padding-top: 4px;
    color: #999;
    font-weight: 400;
    line-height: 32px;
}

.page_banner {
    position: relative;
    height: 480px;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.page_banner .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.page_banner .location {
    position: absolute;
    left: 0;
    width: 100%;
    top: 16px;
}
.page_banner .location .my-container {
    justify-content: flex-end;
}
.page_banner .page_mask {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.25) 0.13%, rgba(0, 0, 0, 0.06) 99.9%);
}

.page_banner .page_b_title {
    width: 100%;
    overflow: hidden;
}

.page_banner .page_b_title h2 {
    color: var(--white-color);
    font-weight: 700;
    line-height: 1.2;
}

.page_banner .page_b_title p {
    padding-top: 10px;
    color: rgba(255, 255, 255, 0.80);
    font-size: 20px;
    font-weight: 400;
}

.content {
    min-height: 30vh;
    overflow: hidden;
}

@media (min-width:768px) {
    .location .loca_menu a:hover {
        font-weight: 700;
    }
}

@media (max-width:991px) {
    .location .loca_menu ul {
        margin-left: -10px;
        margin-right: -10px;
    }

    .location .loca_menu ul li {
        padding: 0 10px;
    }

    .page_banner {
        height: 450px;
    }

}

@media (max-width:767px) {
    .location {
        position: absolute !important;
        top:0 !important;
   
    }
    .page_banner .location {
        position: absolute !important;
        top: 0 !important;
    }
    .height80 {
        height: 80px;
    }

    .locaiton_r {
        display: none;
    }

    .location .loca_menu a {
        padding: 12px 0;
        font-size: 16px;
    }

    .location .loca_menu ul li {
        padding: 0 5px;
    }

    .page_banner {
        height: 260px;
    }

    /* .page_banner .page_b_title {
        padding-top: 80px;
    } */

    .location .loca_menu .active a {
        font-weight: 500;
    }

    .page_banner .page_b_title p {
        padding-top: 10px;
        font-size: 16px;
    }
}

@media (max-width:414px) {
    .location .loca_menu ul li {
        width: 25%;
    }

    .location .loca_menu ul li a {
        display: inline-block;
    }
}

@media (max-width:320px) {
    /* .location .loca_menu ul li {
        width: 33.33%;
    } */

}

/*page*/
.paged {
    padding: 50px 0 50px 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 a,
.paged span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    margin: 0 10px;
    font-size: 16px;
    font-weight: 400;
}

.paged a:hover,
.paged .active span {
    color: var(--main-color);
}

.paged ul li:first-child span,
.paged ul li:last-child a,
.paged ul li:first-child a,
.paged ul li:last-child span {
    background: none;
    padding: 0;
    width: 56px;
    height: 56px;
    border: 1px solid;
    border-radius: 50%;
    border: 1px solid #D9D9D9;
}

.paged ul li:first-child:hover span,
.paged ul li:hover:last-child a,
.paged ul li:hover:first-child a,
.paged ul li:hover:last-child span {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.paged ul li:first-child:hover span svg path,
.paged ul li:hover:last-child a svg path,
.paged ul li:hover:first-child a svg path,
.paged ul li:hover:last-child span svg path {
    stroke: var(--white-color);
}

.paged ul li.disabled {
    pointer-events: none;
}

@media (max-width:767px) {
    .paged {
        padding: 30px 0 30px 0;
    }

    .paged span,
    .paged a {
        font-size: 14px;
        margin: 0 7px;
    }

    .paged ul li:first-child span,
    .paged ul li:last-child a,
    .paged ul li:first-child a,
    .paged ul li:last-child span {

        width: 46px;
        height: 46px;

    }


}

/* share */
.x_sharecopy {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 42px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 6px 6px 6px 6px;
    font-size: 14px;
    padding: 6px 20px;
    color: #FFFFFF;
    z-index: 9999;
}

.x_copyIcon {
    background: url(/template/default/index/4344/images/new_link_w.svg) center center / contain no-repeat;
    width: 20px;
    height: 30px;
    float: left;
}

.x_copyDesc {
    font-size: 14px;
    padding-left: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 30px;
    float: left;
}
/* site map */
.map_cont {
    padding-bottom: 50px;
}
.sitemapz {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 20px;
}

.sitemapy {
    width: 300px;
    float: left;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
}

.sitemapy h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

.sitemapy h3 a {
    color: #fff;
    font-size: inherit;
    display: block;
    line-height: 45px;
}

.wzdt_xt {
    float: left;
    width: -webkit-calc(100% - 300px);
    width: -moz-calc(100% - 300px);
    width: calc(100% - 300px);
}

.wzdt_xt ul li {
    float: left;
    padding-left: 20px;
    line-height: 45px;
}

.wzdt_xt ul li a {
    font-size: 16px;
    color: #666;
}

.wzdt_xt ul li a:hover {
    color: var(--blue);
}
.mt50 {
    margin-top: 50px;
}

@media (max-width:767px) {
    .sitemapy h3 a {
        font-size: 18px;
    }

    .sitemapy {
        width: 100%;
    }

    .wzdt_xt {
        padding: 10px 0;
        width: 100%;
    }

    .wzdt_xt ul li {
        line-height: 30px;
        padding-left: 15px;
    }

    .wzdt_xt ul li a {
        font-size: 16px;
    }

}<!--耗时1758367490.7511秒-->