@charset "utf-8";

/* CSS Document */

/* 全局样式
-------------------------------------------------------------- */
html, body, ul, img {
    margin: 0;
    padding: 0;
    border: none;
    color: #666;
    list-style: none;
    font-family: "Arial-Regular", "Arial";
    line-height: 25px;
}

p {
    line-height: 25px;
}

img {
    border: none;
    vertical-align: middle;
}

td {
    font-size: 14px;
}

body {
    overflow-x: hidden;
}

/* 链接样式 */
a {
    outline: none;
    text-decoration: none;
}

a:visited {
    outline: none;
    text-decoration: none;
}

a:hover {
    outline: none;
    text-decoration: none;
}

:root {
    --light--blue: #00A0E9;
    --blue: #0F349E;
    --grey: #4D555C;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
}

/* 常用元素 */
.clear {
    clear: both;
    height: 0px;
    font-size: 1px;
    line-height: 0px;
}

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5 {
    margin: 0;
    line-height: 1;
}

/* 层浮动 */
.left {
    float: left;
}

.right {
    float: right;
}

.center {
    margin: 0 auto;
}

/* 文字对齐 */
.tleft {
    text-align: left;
}

.tright {
    text-align: right;
}

.tcenter {
    text-align: center;
}

.visible-xs {
    display: none !important;
}

.page {
    overflow-x: hidden;
}

.fl {
    float: left
}

.fr {
    float: right
}

.clear {
    clear: both;
    height: 0px;
    font-size: 1px;
    line-height: 0px
}

.clearfix:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    *zoom: 1;
}

.w100 {
    width: 100%
}

.mobile-show {
    display: none !important;
}

*::-webkit-scrollbar, *::-webkit-scrollbar {
    width: 4px;
    border-radius: 1.5px;
}

*::-webkit-scrollbar-button, *::-webkit-scrollbar-button {
    display: none;
}

*::-webkit-scrollbar-track, *::-webkit-scrollbar-track {
    background-color: #eee;
}

*::-webkit-scrollbar-thumb, *::-webkit-scrollbar-thumb {
    background-color: #00A0E9;
}

@font-face {
    font-weight: normal;
    font-style: normal;
}

* {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/*font*/
.font56 {
    font-size: 56px;
}

@media(min-width:768px) {
    .trans {
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -ms-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
    }

}

@media(max-width:767px) {
    .mobile-show {
        display: block !important;
    }

    .mobile-hide {
        display: none !important;
    }

    body {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }

    .content {
        overflow-x: hidden;
    }

}

.m_container {
    margin-right: auto;
    margin-left: auto;
    max-width: 1840px;
    width: 100%;
    padding-right: 120px;
    padding-left: 120px;
}

@media (max-width:1280px) {
    .m_container {
        padding-right: 100px;
        padding-left: 100px;
    }

}

@media (max-width:991px) {
    .m_container {
        padding-right: 40px;
        padding-left: 40px;
    }

}

@media (max-width:768px) {
    .m_container {
        padding-right: 32px;
        padding-left: 32px;
    }

}

@media (max-width:1680px) {
    .font56 {
        font-size: 50px;
    }

}

@media (max-width:1440px) {
    .font56 {
        font-size: 48px;
    }

}

@media (max-width:1366px) {
    .font56 {
        font-size: 44px;
    }

}

@media (max-width:991px) {
    .font56 {
        font-size: 40px;
    }

}

@media (max-width:767px) {
    .m_container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .font56 {
        font-size: 30px;
    }

}

@media (max-width:360px) {
    .font56 {
        font-size: 28px;
    }

}

.m_opacity {
    opacity: 0;
}

/*header*/
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 60px;
    height: 125px;
    z-index: 9;
}

.header .logo {
    float: left;
    padding-top: 36px;
    max-width: 410px;
}

.header .logo img {
    max-height: 90px;
}

.header.white-bg {
    background: #FFFFFF;
    border-bottom: 1px solid #DDDDDD;
}

.header .logo img:nth-child(2), .header.white-bg .logo img:nth-child(1) {
    display: none;
}

.header.white-bg .logo img:nth-child(2) {
    display: block;
}

.header nav {
    float: right;
    height: inherit;
}

.header nav ul {
    height: inherit;
    padding-right: 30px;
}

.header nav li {
    float: left;
    height: inherit;
    padding: 0 5px;
}

.header nav li>a {
    height: inherit;
    font-size: 18px;
    color: #FFFFFF;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header.white-bg nav li>a {
    color: #333333;
}

.header nav li>a span {
    display: inline-block;
    height: 49px;
    line-height: 49px;
    padding: 0 28px;
    position: relative;
}

.header.white-bg nav li>a:hover span, .header.white-bg nav li>a.on span {
    color: #fff;
}

.header nav li>a:hover {
    color: var(--main-color);
}

.header nav li>a span:before {
    content: "";
    left: 50%;
    width: 0;
    height: 100%;
    position: absolute;
    background: linear-gradient(124deg, #00A0E9 0%, #0153F5 100%);
    border-radius: 25px;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.header.white-bg nav li>a:hover span:before, .header.white-bg nav li>a.on span:before {
    opacity: 1;
    width: 100%;
    left: 0;
}

/*导航下拉*/
.header nav li {
}

.header nav li .nav-drop {
    position: absolute;
    background-color: #ffffff;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    padding: 60px 0 80px 0;
    z-index: 2;
    display: none;   /* opacity: 0;*/
}

.header nav li .nav-drop .my-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.header nav li .nav-drop .item {
    min-height: 392px;
    float: left;
    width: 100%;
    padding: 20px;
    position: relative;
}

.header nav li .nav-drop .erji-box .erji-box {
    width: 100%;
}

.header nav li .two_nav_drop {
    padding: 30px 0;
}

.header nav li .nav-drop .two_nav {
    text-align: center;
}

.header nav li .nav-drop .two_nav a {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    display: inline-block;
    margin: 0 15px;
}

.header nav li .nav-drop .two_nav a:hover {
    color: var(--light--blue);
}

.header nav li .nav-drop .erji-box .erji {
    width: 350px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header nav li .nav-drop .erji-box .erji span {
    position: relative;
    font-size: 24px;
    color: #333;
    font-weight: bold;
    padding: 15px 0;
    display: inline-block;
}

.header nav li .nav-drop .erji-box.active .erji span {
    color: var(--light--blue);
}

.header nav li .nav-drop .erji-box .erji span:before {
    content: '';
    position: absolute;
    height: 2px;
    width: 0;
    left: 0;
    bottom: 0;
    background-color: #00A0E9;
    z-index: 2;
    transition: width .2s linear;
}

.header nav li .nav-drop .erji-box.active .erji span:before {
    width: 100%;
}

.header nav li .nav-drop .erji-box .erji img {
    transform: scale(0) translateX(-5px);
    transition: .3s;
}

.header nav li .nav-drop .erji-box.active .erji img {
    transform: scale(.8) translateX(0);
}

/*导航三级样式*/
.header .nav-drop .item:nth-child(2) {
    position: relative;
}

.header .erji-box .nav-drop-thr {
    position: absolute;
    height: 100%;
    width: calc(100% - 420px);
    left: 420px;
    top: 0;
    padding: 20px;
    display: none;
    background: #F5FBFE;   /* border-top: 2px solid #0153F5;*/
}

.header .erji-box .nav-drop-thr .m_scoll {
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
}

.header .erji-box.active .nav-drop-thr {
    display: block;
}

.header .erji-box.active .nav-drop-thr .thr_list {
    width: 33.33%;
    float: left;
    padding: 30px 30px 0 30px;
}

.thr_list .m_first {
    font-size: 20px;
    font-weight: 400;
    color: #333333;
    line-height: 25px;
    margin-bottom: 15px;
    display: block;
}

.thr_list p {
    padding-bottom: 10px;
}

.thr_list p a {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    line-height: 25px;
}

.thr_list p a:hover {
    color: #333;
}

.header .shortcuts {
    height: 100%;
}

.langue {
    float: right;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.langue a.lanjt {
    height: 100%;
    display: flex;
    position: relative;
    align-items: center;
    padding-right: 35px;
    line-height: 25px;
    background-image: url("../images/langue_ico.svg");
    background-size: 18px 18px;
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 30px;
    font-size: 18px;
    color: #fff;
}

.langue a.lanjt:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 100%;
    background-image: url("../images/language_ico02.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px 30px;
}

.eng {
    display: none;
    background: #fff;
    box-shadow: 0 1px 11px rgb(0 0 0 / 30%);
    width: 135px;
    padding: 4px 10px;
    position: absolute;
    top: 100%;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
    z-index: 96;
}

.eng: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%);
}

.eng a {
    line-height: 36px;
    font-size: 18px;
    display: block;
    width: 100%;
    color: #666;
}

.eng a:hover {
    color: var(--blue);
}

.login {
    float: right;
    height: 100%;
    margin-left: 25px;
    display: flex;
    align-items: center;
}

.login a {
    display: flex;
    height: 24px;
    width: 24px;
    line-height: 24px;
}

.login span {
    font-size: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-image: url(../images/login_ico.svg);
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: center;
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.m_navigation {
    float: right;
    height: 100%;
    margin-left: 25px;
    display: flex;
    align-items: center;
}

.nav-icon {
    float: right;
    width: 24px;
    height: 16px;
    cursor: pointer;
    position: relative;
    z-index: 20;
}

.nav-icon span {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 2px;
    background-color: #fff;
}

.nav-icon:after, .nav-icon:before {
    position: absolute;
    height: 2px;
    background-color: #fff;
    content: "";
    -webkit-transition: all .6s linear;
    -o-transition: all .6s linear;
    transition: all .6s linear;
}

.nav-icon:before {
    right: 0;
    top: 0;
    width: 100%;
}

.nav-icon:after {
    left: 0;
    bottom: 0;
    width: 50%;
}

.white-bg .langue a.lanjt {
    color: #333333;
    background-image: url(../images/langue_ico_black.svg);
}

.white-bg .langue a.lanjt:before {
    background-image: url("../images/language_ico02_black.svg");
}

.white-bg .login span {
    background-image: url(../images/login_ico_black.svg);
}

.white-bg .nav-icon span, .white-bg .nav-icon:after, .white-bg .nav-icon:before {
    background-color: #333333;
}

/*navigate*/
.logo.m_show {
    position: relative;
    z-index: 99;
}

.header.white-bg .logo.m_show img:first-child {
    display: block;
}

.header.white-bg .logo.m_show img:nth-child(2) {
    display: none;
}

.navigate-mark {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
}

.navigate {
    width: 0;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 20;
    visibility: hidden;
    transition: 0.7s;
}

.navigate.show {
    width: 100%;
    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;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #ffffff;
    z-index: -2;
    visibility: hidden;
    transform-origin: left top;
    animation: gradient 2s ease infinite;
    animation-direction: alternate;
    -webkit-transition: all .9s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .9s cubic-bezier(.77, 0, .175, 1);
    transition: all .9s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
    pointer-events: none !important;
}

.navigate:after {
    content: "";
    width: 0;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 0;
    background: linear-gradient(135deg, #00A0E9 0%, #0153F5 100%);
    border-radius: 0px 30px 30px 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transform-origin: left top;
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
    pointer-events: none !important;
    animation: gradient 3s ease infinite;
    animation-direction: alternate;
    -webkit-transition: all 1.5s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all 1.5s cubic-bezier(.77, 0, .175, 1);
    transition: all 1.5s cubic-bezier(.77, 0, .175, 1);
}

.navigate.reverse:before {
    -webkit-transition-delay: .4s !important;
    -o-transition-delay: .4s !important;
    transition-delay: .4s !important;
}

.nav-icon.active {
    z-index: 999;
}

.nav-icon.active:after, .nav-icon.active:before {
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: #333;
    content: "";
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}

.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);
}

.nav-icon.active span {
    display: none;
}

@keyframes gradient {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 0 100%
    }

}

body.menu-active {
    height: 100%;
    overflow-y: hidden;
}

.navigate.show:before {
    opacity: 1;
    width: 100%;
    visibility: visible;
}

.navigate.show:after {
    opacity: 1;
    width: 58%;
    visibility: visible;
}

.navigate .navigate-list {
    height: 100%;
    width: 100%;
    padding: 130px 0 30px 0;
    position: fixed;
}

.navigate .navigate-list .m_container {
    height: 100%;
    overflow-y: auto;
    display: none;
}

.navigate.show .navigate-list .m_container {
    display: block;
}

.navigate .navigate-list .navi_l {
    width: 58%;
    float: left;
    height: 100%;
    padding-top: 5px;
}

.navigate .navigate-list .navi_r {
    width: 35%;
    float: right;
    height: 100%;
}

.navigate.show .navigate-list .navi_l {
    -webkit-animation: mfadeIn .6s cubic-bezier(.785, .135, .15, .86) .4s 1 both;
    animation: mfadeIn .6s cubic-bezier(.785, .135, .15, .86) .4s 1 both;
}

.navigate.show .navigate-list .navi_r {
    -webkit-animation: mfadeIn 1s cubic-bezier(.785, .135, .15, .86) .8s 1 both;
    animation: mfadeIn 1s cubic-bezier(.785, .135, .15, .86) .8s 1 both;
}

@keyframes mfadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }

}

.navigate-list .navi_r .subject {
    color: #333333;
}

.navigate-list .navi_r .subject strong {
    font-size: 36px;
    display: block;
    line-height: 1.1;
}

.navigate-list .navi_r .subject span {
    font-size: 24px;
    font-weight: 400;
    display: block;
    padding-top: 10px;
    line-height: 28px;
}

.navigate-list .navi_r .sub_small {
    font-size: 24px;
    font-weight: 400;
    color: #999999;
    line-height: 1;
    padding-bottom: 12px;
}

.navigate-list .navi_r .nav_tel {
    margin-top: 65px;
}

.navigate-list .navi_r .nav_tel a {
    font-size: 32px;
    font-weight: 400;
    color: #333333;
    line-height: 1;
}

.navigate-list .navi_r .nav_email {
    margin-top: 80px;
}

.navigate-list .navi_r .nav_email div:nth-child(2) {
    font-size: 32px;
    font-weight: 400;
    color: var(--light--blue);
    line-height: 1;
}

.navigate-list .navi_r .nav_address {
    margin-top: 80px;
}

.navigate-list .navi_r .nav_address div:nth-child(2) {
    font-size: 24px;
    color: #666666;
    font-weight: 400;
    color: #666;
    line-height: 1.2;
}

.navigate-list .navi_l>ul>li {
    padding-bottom: 38px;
    display: flex;
    position: relative;
}

.navigate-list .navi_l ul>li>a {
    font-size: 36px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1;
    padding-bottom: 8px;
    display: inline-block;
    position: relative;
}

.navigate-list .navi_l ul>li>a:before {
    content: "";
    position: absolute;
    top: 3px;
    opacity: 0;
    right: -40px;
    width: 30px;
    height: 30px;
    background-image: url(../images/ban_r.svg);
    background-size: 100%;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.navigate-list .navi_l ul>li>a:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    left: 0;
    background-color: #fff;
    height: 2px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.navigate-list .navi_l ul>li:hover>a:after {
    width: 100%;
}

.navigate-list .navi_l ul>li.two:hover>a:before {
    opacity: 1;
}

.navigate-list .navi_l .nav-drop {
    position: absolute;
    left: 190px;
    top: -7px;
    z-index: 9;
}

.navigate-list .navi_l .nav-drop .two_nav {
    padding-left: 30px;
    display: grid;
    opacity: 0;
}

.navigate-list .navi_l .nav-drop .two_nav a {
    display: inline-block;
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 25px;
    margin: 10px 0;
    opacity: 0;
}

.navigate-list .navi_l .nav-drop.m_hover .two_nav a {
    opacity: 1;
    transition: 0.6s 0.4s;
}

.navigate-list .navi_l .nav-drop.m_hover .two_nav {
    transform: translateX(20px);
    opacity: 1;
}

@media(min-width:768px) {
    .navigate-list .navi_l .nav-drop .two_nav {
        -webkit-transition: all 0.8s;
        -moz-transition: all 0.8s;
        -ms-transition: all 0.8s;
        -o-transition: all 0.8s;
        transition: all 0.8s;
    }

    .navigate-list .navi_l .nav-drop .two_nav a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .navigate-list .navi_l .nav-drop .two_nav a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .navigate-list .navi_l .nav-drop .two_nav a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .navigate-list .navi_l .nav-drop .two_nav a:nth-child(4) {
        transition-delay: 0.4s;
    }

    .navigate-list .navi_l .nav-drop .two_nav a:nth-child(5) {
        transition-delay: 0.5s;
    }

    .navigate-list .navi_l .nav-drop .two_nav a:nth-child(6) {
        transition-delay: 0.6s;
    }

    .navigate-list .navi_l .nav-drop .two_nav a:nth-child(7) {
        transition-delay: 0.7s;
    }

    .navigate-list .navi_l .nav-drop .two_nav a:nth-child(n+8) {
        transition-delay: 0.7s;
    }

}

@media(min-width:1366px) {
    .navigate .navigate-list .navi_l {
        display: flex;
        align-items: center;
    }

    .navigate .navigate-list .navi_l>ul {
        width: 100%;
    }

    .navigate-list .navi_l>ul>li {
        padding-bottom: 50px
    }

}
@media(max-width:1580px) {
.header .logo {
    max-width: 400px;
}
.header nav li>a span {
    padding: 0 20px;
}

}
@media(max-width:1440px) {
    .header .logo {
    max-width: 360px;
}
    .navigate-list .navi_r .nav_tel {
        margin-top: 55px;
    }

    .navigate-list .navi_r .nav_email {
        margin-top: 70px;
    }

    .navigate-list .navi_r .nav_address {
        margin-top: 70px;
    }

    .navigate-list .navi_l ul > li > a, .navigate-list .navi_r .subject strong {
        font-size: 34px;
    }

    .navigate-list .navi_r .nav_tel a, .navigate-list .navi_r .nav_email div:nth-child(2) {
        font-size: 30px;
    }

    .navigate-list .navi_l .nav-drop .two_nav a, .navigate-list .navi_r .nav_address div:nth-child(2), .navigate-list .navi_r .subject span, .navigate-list .navi_r .sub_small {
        font-size: 22px;
    }

}

@media(max-width:1366px) {
    .header nav li>a span {
    padding: 0 15px;
}
    .navigate-list .navi_r .nav_tel {
        margin-top: 30px;
    }

    .navigate-list .navi_r .nav_email {
        margin-top: 40px;
    }

    .navigate-list .navi_r .nav_address {
        margin-top: 40px;
    }

    .navigate-list .navi_l ul > li > a, .navigate-list .navi_r .subject strong {
        font-size: 26px;
    }

    .navigate-list .navi_r .nav_tel a, .navigate-list .navi_r .nav_email div:nth-child(2) {
        font-size: 24px;
    }

    .header nav li .nav-drop .two_nav a, .header nav li .nav-drop .erji-box .erji span, .navigate-list .navi_l .nav-drop .two_nav a, .navigate-list .navi_r .nav_address div:nth-child(2), .navigate-list .navi_r .subject span, .navigate-list .navi_r .sub_small {
        font-size: 20px;
    }

    .thr_list .m_first {
        font-size: 18px;
    }

    .thr_list p a {
        font-size: 16px;
    }

}

@media(max-width:1280px) {
    .navigate-list .navi_l .nav-drop .two_nav {
        padding-left: 20px;
    }

}

@media(max-width:1340px) {
    .header nav {
        display: none !important;
    }

}

@media(max-width:767px) {
    .navigate .navigate-list {
        padding: 100px 0 20px 0;
    }

    .navigate.show::after {
        width: 100%;
        border-radius: 0;
    }

    .nav-icon.active::after, .nav-icon.active::before {
        background-color: #fff;
    }

    .navigate .navigate-list .navi_l {
        width: 100%;
        height: auto;
        padding-top: 0px;
    }

    .navigate .navigate-list .navi_r {
        width: 100%;
        float: left;
        height: auto;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.5);
    }

    .navigate-list .navi_r .subject, .navigate-list .navi_r .nav_email div:nth-child(2), .navigate-list .navi_r .nav_tel a, .navigate-list .navi_r .nav_address div:nth-child(2) {
        color: #ffffff;
    }

    .navigate-list .navi_r .sub_small {
        color: rgba(255, 255, 255, 0.6);
    }

    .navigate-list .navi_l ul li {
        padding-bottom: 20px;
        display: block;
    }

    .navigate-list .navi_l .nav-drop {
        display: block !important;
        position: inherit;
        left: inherit;
    }

    .navigate-list .navi_l ul > li > a, .navigate-list .navi_r .subject strong {
        font-size: 22px;
    }

    .navigate-list .navi_r .nav_tel a, .navigate-list .navi_r .nav_email div:nth-child(2) {
        font-size: 20px;
    }

    .header nav li .nav-drop .two_nav a, .header nav li .nav-drop .erji-box .erji span, .navigate-list .navi_l .nav-drop .two_nav a, .navigate-list .navi_r .nav_address div:nth-child(2), .navigate-list .navi_r .subject span, .navigate-list .navi_r .sub_small {
        font-size: 16px;
    }

    .navigate-list .navi_l .nav-drop .two_nav {
        padding-top: 5px;
        opacity: 0;
    }

    .navigate.show .navigate-list .navi_l .nav-drop .two_nav {
        opacity: 1;
    }

    .navigate-list .navi_l .nav-drop .two_nav a {
        margin: 5px 0;
        opacity: 1;
    }

    .navigate-list .navi_l ul > li > a::before {
        display: none;
    }

    .navigate-list .navi_l .nav-drop .two_nav {
        padding-left: 30px;
        padding-top: 15px;
    }

    .navigate-list .navi_l .nav-drop .two_nav a {
        opacity: 1;
    }

}

/*search*/
.search {
    position: fixed;
    top: 125px;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 302;
    display: none;
    background: linear-gradient(135deg, #00A0E9 0%, #0153F5 100%);
}

#cdk::-webkit-input-placeholder {
    color: #fff;
}

#cdk::-moz-placeholder {
    color: #fff;
}

#cdk::-moz-placeholder {
    color: #fff;
}

#cdk::-ms-input-placeholder {
    color: #fff;
}

.search .pcbb {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 70px;
}

.search .pcsearch {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100%;
    max-width: 100%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.search .pcsearch .sebox {
    width: 850px;
    max-width: 100%;
    position: relative;
}

.search .pcsearch .sebox .m_ser_l {
    float: left;
    width: calc(100% - 96px);
    height: 70px;
    padding-left: 30px;
    color: #fff;
    background: none;
    border: none;
    font-size: 18px;
    outline: 0;
}

.sousuoa {
    position: relative;
    width: 24px;
    height: 100%;
    float: right;
}

.sousuoa i {
    font-size: 0;
    width: 24px;
    height: 24px;
    display: inline-block;
    position: absolute;
    top: 50%;
    background-size: 24px 24px;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    cursor: pointer;
}

.sousuoa i.sousuoend {
    background-image: url(../images/serch.svg);
}

.sousuoa i.cuohao {
    display: none;
    background-image: url(../images/close.svg);
    background-size: 18px 18px;
}

.cuohao.act {
    color: #333;
}

.search .m_submit {
    display: inline-block;
    width: 70px;
    height: 70px;
    text-align: center;
    cursor: pointer;
    background: none;
    border: none;
    outline: 0;
    background-image: url(../images/se.svg);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.white-bg .sousuoa i.sousuoend {
    background-image: url(../images/serch_black.svg);
}

@media (max-width:1440px) {
    .header .logo img {
        max-height: 60px;
    }

}

@media (max-width:1366px) {
    .header {
        height: 105px;
    }



    .header .logo img {
        max-height: 56px;
    }

    .search {
        top: 105px;
    }

}

@media (max-width:991px) {
    .header {
        height: 80px;
        padding: 0 30px;
    }

    .header .logo img {
        max-height: 50px;
    }

    .search {
        top: 80px;
    }

}

@media (max-width:767px) {
    .header {
        padding: 0 20px;
        display: flex;
        justify-content:space-between;
    }
     .header .logo {
        padding-top: 20px;
        flex: 1;
        padding-right: 10px
    }
    .header .logo img {
        max-height: 45px;
    }
    .sousuoa {
        width: 20px;
    }
    .sousuoa i {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
}

    .langue {
        margin-right: 8px;
    }

    .login, .m_navigation {
        margin-left: 10px;
    }

    .langue a.lanjt {
        background-image: none !important;
        padding-left: 0;
    }

    .search .pcsearch .sebox .m_ser_l {
        font-size: 16px;
    }
    .langue a.lanjt {
    background-size: 13px 12px;
    padding-left: 0;
    padding-right: 25px;
    font-size: 14px;
}

}

/*footer*/
footer {
    background-image: url(../images/footbg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 90px;
}

.back-top {
    position: fixed;
    right: 5px;
    bottom: 10%;
    z-index: 99;
    display: none;
}

.back-top a {
    width: 50px;
    height: 50px;
    display: inline-block;
    background-color: #666;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: #fff;
}


.back-top a:hover {
    background: linear-gradient(141deg, #1E60B9 0%, #2E8EDF 49%, #3DBBFF 100%);
}
.back-top-email {
    position: fixed;
    right: 5px;
    bottom: 28%;
    z-index: 99;
    display: none;
}
.back-top-email a img{
    width: 50%;
}

.back-top-email a {
    width: 50px;
    height: 50px;
    display: inline-block;
    background-color: #666;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: #fff;
}

.back-top-email a:hover {
    background: linear-gradient(141deg, #1E60B9 0%, #2E8EDF 49%, #3DBBFF 100%);
}
.back-top-ewm .hide_ewm{
    position: absolute;
    right: calc(100% + 10px);
    top: 0%;
    transform: translateY(-50%);
    width: 180px;
    height: 160px;
    padding: 24px 32px;
    background: linear-gradient(141deg, #1E60B9 0%, #2E8EDF 49%, #3DBBFF 100%);
    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%);
}
.back-top-ewm .hide_ewm a{
    background: none;
    width: 100%;

}
.back-top-email .hide_tel{
    position: absolute;
    right: calc(100% + 10px);
    top: 40%;
    transform: translateY(-50%);
    width: 180px;
    padding: 24px 32px;
    background: linear-gradient(141deg, #1E60B9 0%, #2E8EDF 49%, #3DBBFF 100%);
    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%);
}

.back-top-tell .hide_tel{
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    padding: 24px 32px;
    background: linear-gradient(141deg, #1E60B9 0%, #2E8EDF 49%, #3DBBFF 100%);
    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%);
}
.back-top-tell .hide_tel a{
    width: 100%;
    background: none;
}
.back-top-tell {
    position: fixed;
    right: 5px;
    bottom: 22%;
    z-index: 99;
    display: none;
}
.back-top-tell a img{
    width: 50%;
}

.back-top-tell a {
    width: 50px;
    height: 50px;
    display: inline-block;
    background-color: #666;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: #fff;
}

.back-top-tell a:hover {
    background: linear-gradient(141deg, #1E60B9 0%, #2E8EDF 49%, #3DBBFF 100%);
}

.back-top-ewm {
    position: fixed;
    right: 5px;
    bottom: 16%;
    z-index: 99;
    display: none;
}
.back-top-ewm a img{
    width: 50%;
}

.back-top-ewm .hide_ewm a img{
    width: 96%;
}
.back-top-ewm a {
    width: 50px;
    height: 50px;
    display: inline-block;
    background-color: #666;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: #fff;
}

.back-top-ewm a:hover {
    background: linear-gradient(141deg, #1E60B9 0%, #2E8EDF 49%, #3DBBFF 100%);
}



.foot_up {
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.foot_up .fl {
    width: 40%;
}

.foot_up .fr {
    max-width: 60%;
    padding-left: 50px;
}

.foot_up_n {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #FFFFFF;
}

.foot_up_t {
    padding-top: 20px;
    font-size: 48px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1;
}

.foot_up_t a {
    color: inherit;
	letter-spacing:2px;
}

.foot_up_add {
    padding-top: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
}

.foot_up_share {
    padding-top: 35px;
}

.foot_up_share ul {
    margin-left: -10px;
    margin-right: -10px;
}

.foot_up_share ul li {
    float: left;
    padding: 0 10px;
}

.foot_up_share a {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foot_up_share a img {
    width: 30px;
}

.foot_up .fr ul {
    display: flex;
    justify-content: flex-end;
}

.foot_up .fr ul li {
    padding-left: 110px;
    width: min-content;
    text-align: left;
}

.foot_up .fr ul li:first-child {
    padding-left: 0;
}

.foot_up .fr ul li h3 {
    color: rgba(255, 255, 255, 0.5);
    line-height: 44px;
    padding-bottom: 25px;
}

.foot_up .fr ul li h3 a {
    color: inherit;
    margin: 0;
}

.foot_up .fr ul li a {
    display: inline-block;
    width: 100%;
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 20px;
}

.foot_bottom {
    margin-top: 85px;
    padding: 35px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.foot_bottom a {
    color: inherit;
    font-size: inherit;
}

.foot_bottom a:hover {
    color: #fff;
}

@media (min-width:1280px) {
    .foot_up .fr ul li a {
        white-space: nowrap;
    }

}

@media (min-width:768px) {
    .foot_up_share a:hover {
        transform: translateY(-5px);
    }

}

@media (max-width:1580px) {
    .foot_up .fr ul li {
        padding-left: 80px;
    }

}

@media (max-width:1440px) {
    .foot_up .fr ul li {
        padding-left: 60px;
    }

}

@media(max-width:1280px) {
    .foot_up {
        display: block;
    }

    .foot_up .fr {
        width: 60%;
        padding-left: 30px;
    }

    .foot_up .fr ul li {
        width: auto;
    }

    .foot_up .fr ul li {
        padding-left: 40px;
    }

    .foot_bottom .fr {
        float: left;
        width: 100%;
    }

}

@media(max-width:991px) {
    footer {
        padding-top: 50px;
    }

    .foot_up .fl {
        width: 100%;
    }

    .foot_up .fr {
        width: 100%;
        max-width: inherit;
        padding-top: 50px;
        padding-left: 0;
    }

    .foot_up_t {
        font-size: 34px;
    }

    .foot_up_share a {
        width: 56px;
        height: 56px;
    }

    .foot_up_share a img {
        width: 25px;
    }

    .foot_up .fr ul {
        display: block;
        overflow: hidden;
    }

    .foot_up .fr ul li {
        float: left;
    }

    .foot_up .fr ul li:first-child {
        width: 33%;
    }

    .foot_up .fr ul li:nth-child(2) {
        width: 42%;
    }

    .foot_up .fr ul li:nth-child(3) {
        width: 25%;
    }

    .foot_up .fr ul li {
        float: left;
        width: 33.33%;
    }

    .foot_bottom {
        margin-top: 50px;
    }

}

@media(max-width:767px) {
    footer {
        padding-top: 40px;
    }

    .back-top {
        bottom: 3%;
        z-index: 8;
    }

    .foot_up_t {
        font-size: 30px;
        padding-top: 15px;
    }

    .foot_up_add {
        font-size: 14px;
        padding-top: 15px;
    }

    .foot_up_share {
        padding-top: 25px;
    }

    .foot_up_share a {
        width: 40px;
        height: 40px;
    }

    .foot_up_share a img {
        width: 16px;
    }

    .foot_up .fr {
        padding-top: 30px;
    }

    .foot_up .fr ul li {
        width: 100% !important;
        padding-left: 0;
        padding-bottom: 15px;
    }

    .foot_up .fr ul li h3 {
        line-height: 25px;
        padding-bottom: 10px;
    }

    .foot_up .fr ul li h3 a {
        font-size: 16px;
    }

    .foot_up .fr ul li a {
        line-height: 1.2;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .foot_bottom {
        margin-top: 10px;
        padding: 20px 0;
        font-size: 14px;
    }

    .foot_bottom a {
        white-space: break-spaces;
    }

}

/*sitemap*/
.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);
}

.dtzuo {
    width: 25%;
    float: left;
    line-height: 41px;
    background: var(--blue);
    color: #FFF;
    font-size: 16px;
    text-align: center;
}

.dtzuo a {
    color: #FFF;
    font-size: 16px;
    display: block;
}

.sitemapz {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 20px;
}

.sitemapy {
    width: 300px;
    float: left;
    background: var(--light--blue);
    border: 1px solid var(--light--blue);
    text-align: center;
}

.sitemapy h3 {
    color: #fff;
    font-size: 20px;
    margin: 0;
}

.sitemapy h3 a {
    color: #fff;
    font-size: inherit;
    display: block;
    line-height: 45px;
    font-weight: 500;
}

@media (max-width:767px) {
    .sitemapz {
        margin-top: 0;
    }

    .sitemapy h3 a {
        font-size: 18px;
    }

    .dtzuo {
        width: 100%;
    }

    .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;
    }

}

/*bannner*/
.ind_banner_box {
    position: relative;
    width: 100%;
    height: 100vh;
}

.ind_banner_box .swiper-container {
    width: 100%;
    height: 100%;
}

.ind_banner_box .swiper-container .swiper-slide {
    overflow: hidden;
}

.ind_banner_box .swiper-container .swiper-slide.active {
    pointer-events: all;
}

.ind_banner_box .banner_img_box {
    display: block;
    overflow: hidden;
    height: 100%;
    transition: all .5s ease-in-out;
    position: relative;
}

.ind_banner_box .ban_mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(157deg, #0153F5 0%, rgba(1, 83, 245, 0) 100%);
    opacity: 0.3;
    z-index: 1;
}

.ind_banner_box .banner_img_box .ind_src1_img_box {
    height: 100%;
    transition: all 4s ease;
    transform: scale(1.2);
    background-size: cover;
    background-position: center;
}

.ind_banner_box .active .ind_src1_img_box {
    transform: none;
}

.banner_text_img_box {
    width: 100%;
    position: absolute;
    left: 0;
    top: 45%;
    transform: translate(0, -50%);
    color: #fff;
    display: none;
    z-index: 2;
}

.banner_text_img_box span {
    line-height: inherit;
    font-size: inherit;
}

.ind_banner_box .banner_text_img_box .ind_src1_title {
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 28px;
}

.ind_banner_box .ind_src1_info_en_box {
    margin-top: 30px;
    font-size: 60px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.15;
}

.ind_banner_box .active .banner_text_img_box {
    display: block;
}

.ind_banner_box .ban_more a {
    width: 80px;
    height: 80px;
    background: #00A0E9;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    margin-top: 30px;
}

.ind_banner_box .ban_more a i {
    font-size: 0;
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    background-size: 30px 30px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ind_banner_box .ban_more a i:before, .ind_banner_box .ban_more a i:after {
    content: "";
    position: absolute;
    transform: translateX(0);
    background-size: 30px 30px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/ban_r.svg);
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.ind_banner_box .ban_more a i:after {
    transform: translateX(-100%);
}

.ind_banner_box .ban_more a:hover i:before {
    transform: translateX(100%);
}

.ind_banner_box .ban_more a:hover i:after {
    transform: translateX(0);
}

.ind_fy_box {
    background: linear-gradient(164deg, #00A0E9 0%, #0153F5 100%);
    position: absolute;
    bottom: 0;
    width: 50vw;
    left: 0;
    height: 90px;
    z-index: 1;
}

.ind_banner_box .ban_more a:hover {
    background: linear-gradient(164deg, #00A0E9 0%, #0153F5 100%);
}

.ind_fy_box .swiper-pagination-bullet {
    background-color: transparent;
    opacity: .5;
    border: 3px solid #fff;
    vertical-align: middle;
    margin: 0 10px;
    width: 6px;
    height: 6px;
    display: inline-block;
}

.ind_fy_box .swiper-pagination-bullet-active {
    opacity: 1;
    width: 20px;
    height: 20px;
}

.ind_fy_box .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px;
}

.swiper-pagination {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.lb_pagination_box {
    color: rgba(255, 255, 255, .3);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    position: absolute;
    right: 3vw;
    top: 50%;
    transform: translateY(-50%);
}

.ind_fy_box .lb_pagination_box span {
    margin: 0 6px;
}

.lb_pagination_box span {
    
    font-size: 16px;
    color: #82BDD8;
}

.lb_pagination_box .on {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
}

.bantext-show {
    display: none !important;
}

@media (max-width:1680px) {
    .ind_banner_box .ind_src1_info_en_box {
        font-size: 52px;
    }

}

@media (max-width:1440px) {
    .ind_banner_box .ind_src1_info_en_box {
        font-size: 50px;
    }

    .ind_banner_box .ban_more a {
        width: 65px;
        height: 65px;
    }

    .ind_banner_box .ban_more a i::before, .ind_banner_box .ban_more a i::after {
        background-size: 25px 25px;
    }

    .ind_fy_box {
        height: 80px;
    }

    .ind_fy_box .swiper-pagination-bullet-active {
        width: 15px;
        height: 15px;
        margin: 0 8px;
    }

    .lb_pagination_box .on {
        font-size: 22px;
    }

}

@media (max-width:1366px) {
    .ind_banner_box .ind_src1_info_en_box {
        font-size: 44px;
    }

    .ind_fy_box {
        height: 70px;
    }

    .lb_pagination_box .on {
        font-size: 20px;
    }

}

@media (max-width:1280px) {
    .ind_banner_box .ind_src1_info_en_box {
        font-size: 42px;
    }

}

@media (max-width:991px) {
    .banner_text_img_box {
        top: 50%;
    }

    .ind_banner_box .banner_text_img_box .ind_src1_title {
        font-size: 22px;
        line-height: 1.2;
    }

    .ind_banner_box .ind_src1_info_en_box {
        font-size: 38px;
    }

    .ind_fy_box {
        height: 60px;
    }

    .ind_banner_box .ban_more a {
        width: 60px;
        height: 60px;
    }

    .ind_banner_box .ban_more a i::before, .ind_banner_box .ban_more a i::after {
        background-size: 25px 25px;
    }

}

@media (max-width:768px) {
    .ind_fy_box {
        width: 100%;
        height: 50px;
    }

    .ind_fy_box .swiper-pagination-bullet {
        border: 3px solid #fff;
    }

    .ind_fy_box .swiper-pagination-bullet-active {
        width: 14px;
        height: 14px;
        border: 2px solid #fff;
    }

}

@media (max-width:767px) {
    .ind_banner_box .banner_text_img_box .ind_src1_title {
        font-size: 18px;
    }

    .ind_banner_box .ind_src1_info_en_box {
        font-size: 32px;
        margin-top: 20px;
        line-height: 1.1;
    }

    .ind_banner_box .ban_more a {
        width: 45px;
        height: 45px;
        margin-top: 30px;
    }

    .ind_banner_box .ban_more a i::before, .ind_banner_box .ban_more a i::after {
        background-size: 16px 16px;
    }

    .ind_fy_box .lb_pagination_box span {
        margin: 0 4px;
    }

    .lb_pagination_box .on {
        font-size: 18px;
    }

}

@media (max-width:540px) {
    .bantext-show {
        display: block !important;
    }

}

@media (max-width:375px) {
    .ind_banner_box .ind_src1_info_en_box {
        font-size: 30px;
    }

}

@media (max-width:360px) {
    .ind_banner_box .ind_src1_info_en_box {
        font-size: 28px;
    }

}

@media (max-width:350px) {
    .ind_banner_box .ind_src1_info_en_box {
        font-size: 24px;
    }

}

/*index about*/
.index_about {
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.index_about .about_pic {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 550px;
    width: 30%;
    z-index: -1;
}

.index_title {
    font-weight: bold;
    line-height: 1.1;
}

.about_up {
    width: 67.3%;
    position: relative;
}

.about_up .about_ico {
    width: 25%;
    max-width: 260px;
    position: absolute;
    right: 0;
    top: -35px;
}

.about_cont .index_title {
    color: #222222;
}

.about_cont .about_text {
    max-width: 880px;
    margin-top: 50px;
    height: 130px;
}

.about_cont .about_text p {
    font-size: 17px;
    font-family: Arial-Regular, Arial;
    font-weight: 400;
    color: #333333;
    line-height: 32px;
}

.about_loop {
    padding-top: 70px;
}

.about_loop ul {
    margin-left: -15px;
    margin-right: -15px;
}

.about_loop ul li {
    width: 33.33%;
    float: left;
    max-width: 490px;
    padding: 0 15px;
}

.about_loop .about_border {
    height: 270px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    position: relative;
    margin-bottom: 25px;
    position: relative;
    padding: 30px 40px;
    text-align: center;
}

.about_border .about_cicle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background-image: url(../images/about_ico_cicle.svg);
}

.about_border .about_eng {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 26px;
    margin-top: 30px;
    max-height: 78px;
    overflow: hidden;
}

.about_border .about_eng p {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.about_more {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.about_more span {
    width: 150px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    border-radius: 30px;
    text-align: center;
}

.about_more span i {
    text-transform: uppercase;
    color: #FFFFFF;
    font-size: 16px;
    font-style: normal;
}

.about_more span i {
    position: relative;
    padding-right: 30px;
}

.about_more span i:before {
    content: "";
    width: 24px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-image: url(../images/about_jt_w.svg);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: right center;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.about_loop ul li a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.about_loop a:hover .about_more span i:before {
    transform: rotate(45deg);
}

.about_loop ul li:first-child .about_more span {
    background: #1ED6AA;
}

.about_loop ul li:nth-child(2) .about_more span {
    background: #1EAAD6;
}

.about_loop ul li:nth-child(3) .about_more span {
    background: #1E68D6;
}

.about_loop ul li a:hover {
    transform: translateY(-10px);
}

.pt100 {
    padding-top: 95px;
}

@media (max-width:1440px) {
    .pt100 {
        padding-top: 80px;
    }

}

@media (max-width:1366px) {
    .pt100 {
        padding-top: 70px;
    }

    .about_loop {
        padding-top: 50px;
    }

}

@media (max-width:1280px) {
    .pt100 {
        padding-top: 60px;
    }

}

@media (max-width:991px) {
    .pt100 {
        padding-top: 50px;
    }

    .index_about .about_pic {
        width: 20%;
    }

}

@media (max-width:767px) {
    .index_about {
        height: auto;
        padding-bottom: 30px;
    }

    .about_up {
        width: 100%;
    }

    .about_cont .about_text {
        width: 100%;
        margin-top: 30px;
        height: auto;
    }

    .about_loop {
        padding-top: 40px;
    }

    .about_loop ul li {
        width: 100%;
        padding-bottom: 30px;
    }

    .about_loop .about_border {
        padding: 30px 20px;
    }

}

/*index pro*/
.index_pro {
    width: 100%;
    overflow: hidden;
    background-image: url(../images/pro_bg.jpg);
    padding: 70px 0;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

.index_pro .index_title {
    color: #fff;
}

.pro_list {
    position: relative;
    margin-left: -160px;
}

.pro_list .i_pro_d {
    margin-left: 110px;
    width: 110%;
}

.pro_list .pro_loop {
    padding: 60px 0;
    padding-left: 50px;
}

.pro_loop .swiper-slide {
    width: 412px;
    overflow: hidden;
    transition: all 0.6s ease-out;
    -webkit-transition: all 0.6s ease-out;
}

.pro_loop .pro_bg {
    width: 100%;
    height: 572px;
    background: #F5F5F5;
    padding: 48px 34px 34px 34px;
    position: relative;
    z-index: 1;
}

.pro_loop .pro_bg:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 38%;
    width: 100%;
    z-index: -1;
    background-image: url(../images/pro_bg02.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.pro_button {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.pro_button:after {
    content: "";
    position: absolute;
    width: -webkit-calc(100% - 144px);
    width: -moz-calc(100% - 144px);
    width: calc(100% - 144px);
    bottom: 0;
    right: 0;
    background-color: #fff;
    opacity: 0.5;
    height: 1px;
}

.pro_button .m_left {
    border: 1px solid rgba(255, 255, 255, 0.5);
    float: left;
}

.pro_button .pro-button-prev, .pro_button .pro-button-next {
    width: 62px;
    height: 62px;
    float: left;
    outline: 0;
    cursor: pointer;
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: center;
}

.pro_button .pro-button-prev {
    background-image: url(../images/pro_left.svg);
}

.pro_button .pro-button-next {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    background-image: url(../images/pro_right.svg);
}

.pro_line {
    width: 100px;
    left: 0;
    position: absolute;
    top: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8;
}

.pro_line .pro-pagination {
    width: 10px;
}

.pro_line .pro-pagination span {
    width: 10px;
    height: 10px;
    background: #82BDD8;
    opacity: 1;
}

.pro_line .pro-pagination span.swiper-pagination-bullet-active {
    background: #fff;
}

.pro_button .pro_pagination_box {
    float: right;
    color: #fff;
    font-size: 20px;
    padding-top: 25px;
}

.pro_button .pro_pagination_box span {
    
    font-size: 20px;
    color: #ffffff;
}

.pro_loop .pro_img {
    padding-left: 46px;
    padding-right: 46px;
    padding-top: 32px;
    overflow: hidden;
    position: relative;
}

.dw {
    position: relative;
}

.pro_loop .pro_img img:first-child {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.pro_loop .pro_img img:nth-child(2) {
}

.pro_loop .title_02 {
    height: 88px;
    font-size: 36px;
    font-weight: bold;
    color: #333333;
    line-height: 44px;
    opacity: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pro_loop .title_01 {
    height: 88px;
    font-size: 30px;
    font-weight: 400;
    color: #333333;
    line-height: 44px;
    margin-top: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pro_loop .swiper-slide .pro_more {
    opacity: 0;
    margin-top: 30px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.pro_loop .pro_more span, .new_loop .pro_more span {
    width: 60px;
    height: 60px;
    background: #00A0E9;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.pro_loop .pro_more span i, .new_loop .pro_more span i {
    font-size: 0;
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    background-size: 30px 30px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pro_loop .pro_more span i:before, .pro_loop .pro_more span i:after, .new_loop .pro_more span i:before, .new_loop .pro_more span i:after {
    content: "";
    position: absolute;
    transform: translateX(0);
    background-size: 30px 30px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/ban_r.svg);
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.pro_loop .pro_more span i:after, .new_loop .pro_more span i:after {
    transform: translateX(-100%);
}

.pro_loop .pro_more span:hover i:before, .new_loop a:hover .pro_more span i:before {
    transform: translateX(100%);
}

.pro_loop .pro_more span:hover i:after, .new_loop a:hover .pro_more span i:after {
    transform: translateX(0);
}

.pro_loop a:hover .pro_more span {
    background: linear-gradient(164deg, #00A0E9 0%, #0153F5 100%);
}

.pro_loop .swiper-slide:hover .pro_img {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 32px;
}

.pro_loop .swiper-slide:hover .title_02 {
    opacity: 1;
}

.pro_loop .swiper-slide:hover .pro_more {
    opacity: 1;
}

.pro_loop .swiper-slide:hover .title_01 {
    opacity: 0;
    height: 0;
    margin-top: 0;
}

.pro_loop .swiper-slide {
    -webkit-animation: flyIn3d 0.75s ease-out;
    animation: flyIn3d 0.75s ease-out;
    opacity: 1;
    visibility: visible;
}

@media (min-width:768px) {
    .pro_loop .swiper-slide:hover {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

}

@keyframes 'flyIn3d' {
    0% {
        transform: rotateY(-60deg) translateZ(800px) translateX(200px);
        opacity: 0;
    }

    100% {
        transform: rotateY(0deg) translateZ(0) translateX(0);
        opacity: 1;
    }

}

@media (max-width:1440px) {
    .pro_loop .swiper-slide {
        width: 310px;
    }

    .pro_loop .swiper-slide .pro_bg {
        height: 440px;
    }

    .pro_loop .pro_img {
        padding-left: 26px;
        padding-right: 26px;
        padding-top: 0;
    }

    .pro_loop .title_01 {
        height: 70px;
        font-size: 28px;
        line-height: 35px;
        margin-top: 30px;
    }

    .pro_loop .swiper-slide .title_02 {
        font-size: 32px;
        height: 70px;
        line-height: 35px;
    }

    .pro_loop .pro_more span, .new_loop .pro_more span {
        width: 50px;
        height: 50px;
    }

    .pro_loop .swiper-slide .pro_more {
        margin-top: 20px;
    }

}

@media (max-width:1366px) {
    .pro_loop .swiper-slide {
        width: 300px;
    }

    .pro_loop .swiper-slide .pro_bg {
        height: 420px;
        padding: 30px;
    }

    .pro_loop .pro_img {
        padding-left: 15px;
        padding-right: 15px;
    }

    .pro_loop .title_01 {
        height: 60px;
        font-size: 26px;
        line-height: 30px;
        margin-top: 30px;
    }

    .pro_loop .swiper-slide .title_02 {
        height: 60px;
        line-height: 30px;
        font-size: 30px;
    }

    .pro_button .pro-button-prev, .pro_button .pro-button-next {
        width: 52px;
        height: 52px;
    }

    .pro_button .pro_pagination_box {
        font-size: 20px;
        padding-top: 20px;
    }

    .pro_loop .pro_more span, .new_loop .pro_more span {
        width: 45px;
        height: 45px;
    }

    .pro_loop .pro_more span i::before, .pro_loop .pro_more span i::after, .new_loop .pro_more span i::before, .new_loop .pro_more span i::after {
        background-size: 25px 25px;
    }

}

@media (max-width:1280px) {
    .pro_line {
        width: 70px;
    }

    .pro_loop .swiper-slide .title_02 {
        font-size: 28px;
    }

    .pro_loop .title_01 {
        font-size: 24px;
    }

}

@media (max-width:991px) {
    .pro_line {
        display: none;
    }

    .pro_loop .swiper-slide .title_02 {
        font-size: 26px;
    }

    .pro_loop .title_01 {
        font-size: 22px;
    }

}

@media (max-width:767px) {
    .index_pro {
        padding: 50px 0;
    }

    .pro_list .pro_loop {
        padding: 30px 0;
    }

    .pro_loop .swiper-slide .title_02 {
        font-size: 22px;
        height: 60px;
    }

    .pro_loop .title_01 {
        font-size: 20px;
    }

    .pro_button .pro-button-prev, .pro_button .pro-button-next {
        width: 45px;
        height: 45px;
        background-size: 25px 25px;
    }

    .pro_button .pro_pagination_box {
        font-size: 18px;
        padding-top: 15px;
    }

    .pro_loop .swiper-slide {
        width: 287px;
    }

    .pro_loop .swiper-slide .pro_bg {
        height: 380px;
        padding: 30px;
    }

    .pro_loop .pro_more span, .new_loop .pro_more span {
        width: 40px;
        height: 40px;
    }

    .pro_loop .pro_more span i::before, .pro_loop .pro_more span i::after, .new_loop .pro_more span i::before, .new_loop .pro_more span i::after {
        background-size: 20px 20px;
    }

    .pro_list {
        margin-left: -60px;
    }

    .pro_list .i_pro_d {
        margin-left: 10px;
        width: 110%;
    }

    .pro_list .pro_loop {
        padding: 60px 0;
        padding-left: 50px;
    }

}

/*index new*/
.index_new {
    overflow: hidden;
}

.index_new .index_title {
    color: #222222;
}

.index_new .new_loop {
    margin-top: 45px;
    border-top: 1px solid #DDDDDD;
    padding-top: 75px;
    padding-bottom: 75px;
}

.new_loop {
    position: relative;
    padding-left: 10%;
    padding-right: 25%;
}

.new_loop .new_button {
    position: absolute;
    top: -115px;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 50%;
    opacity: 1;
    outline: 0;
    cursor: pointer;
    border: 1px solid #DDDDDD;
    background-size: 50px 50px;
    background-position: center;
    background-repeat: no-repeat;
}

.new_loop .new-button-prev {
    right: 90px;
    background-image: url(../images/new_l.svg);
}

.new_loop .new-button-next {
    right: 0;
    background-image: url(../images/new_r.svg);
}

.new_loop .new_button:hover {
    background-color: var(--light--blue);
    border-color: var(--light--blue);
}

.new_loop .new-button-prev:hover {
    background-image: url(../images/new_l_w.svg);
}

.new_loop .new-button-next:hover {
    background-image: url(../images/new_r_w.svg);
}

.new_loop .new_swiper {
    overflow: visible;
}

.new_loop .swiper-slide a {
    padding-bottom: 45px;
    height: 100%;
    width: 100%;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.new_loop .swiper-slide a:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    left: 0;
    height: 4px;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    background-color: var(--light--blue);
}

.new_loop .swiper-slide a:hover:after {
    width: 100%;
}

.new_loop .i_new_l {
    float: left;
    padding-right: 30px;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
}

.new_loop .i_new_r {
    float: right;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1.3;
    flex-grow: 1.3;
    overflow: hidden;
    position: relative;
}

.new_loop .i_new_l .i_time {
    font-size: 16px;
    
    font-weight: 400;
    color: #999999;
}

.new_loop .i_new_l .i_title {
    height: 56px;
    font-size: 24px;
    margin-top: 25px;
    font-weight: bold;
    color: #333333;
    line-height: 28px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.new_loop .i_new_l .i_des {
    height: 48px;
    font-size: 16px;
    margin-top: 45px;
    font-weight: 400;
    color: #666666;
    line-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.new_loop .i_new_r .i_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.new_loop .pro_more {
    position: absolute;
    left: 0;
    bottom: 0;
}

.new_loop .pro_more span {
    background: #EBEBEB;
}

.new_loop .swiper-slide a:hover .i_title {
    color: var(--light--blue);
}

.new_loop .pro_more span i:before {
    background-image: url(../images/new_more_r.svg);
}

.new_loop a:hover .i_bg {
    transform: scale(1.05);
}

.new_loop a:hover .pro_more span {
    background-color: var(--light--blue);
}

@media (max-width:1440px) {
    .new_loop {
        padding-left: 8%;
        padding-right: 20%;
    }

    .new_loop .new_button {
        width: 50px;
        height: 50px;
        top: -105px;
    }

    .new_loop .new-button-prev {
        right: 75px;
    }

}

@media (max-width:1366px) {
    .new_loop .i_new_l .i_title {
        font-size: 22px;
    }

    .index_new .new_loop {
        margin-top: 35px;
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .new_loop .new_button {
        width: 45px;
        height: 45px;
        background-size: 45px 45px;
        top: -82px;
    }

    .new_loop .new-button-prev {
        right: 65px;
    }

}

@media (max-width:1280px) {
    .new_loop .i_new_l .i_title {
        font-size: 22px;
        margin-top: 15px;
    }

    .new_loop {
        padding-left: 6%;
        padding-right: 16%;
    }

    .new_loop .i_new_l .i_des {
        margin-top: 25px;
    }

}

@media (max-width:991px) {
    .new_loop {
        padding-left: 2%;
        padding-right: 12%;
    }

    .new_loop .i_new_l .i_title {
        font-size: 20px;
        margin-top: 10px;
        line-height: 26px;
        height: 52px;
    }

    .new_loop .i_new_l .i_des {
        margin-top: 20px;
    }

}

@media (max-width:767px) {
    .new_loop .new_swiper {
        overflow: hidden;
    }

    .new_loop {
        padding-left: 0;
        padding-right: 0;
    }

    .new_loop .new_button {
        width: 40px;
        height: 40px;
        background-size: 40px 40px;
        top: -72px;
    }

    .new_loop .new-button-prev {
        right: 55px;
    }

}

@media (max-width:540px) {
    .index_new .new_loop {
        padding-top: 35px;
        margin-top: 15px;
        padding-bottom: 25px;
    }

    .new_loop .new_button {
        top: -54px;
    }

    .new_loop .swiper-slide a {
        display: block;
        overflow: hidden;
        padding-bottom: 35px;
    }

    .new_loop .swiper-slide a::after {
        height: 2px;
    }

    .new_loop .i_new_l {
        padding-right: 0;
        padding-bottom: 60px;
        margin-bottom: 20px;
    }

}

/*about*/
.height {
    height: 125px;
}

.header.page_header {
}

.page_ban {
    height: 500px;
    position: relative;
}

.page_ban .bg {
    filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.15));
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.page_top {
    position: absolute;
    width: 100%;
    height: 100%;
}

.page_ban .m_container {
    height: 100%;
}

.page_ban .page_ban_text {
    height: 100%;
    position: relative;
    padding-top: 8%;
    padding-right: 100px;
}

.page_ban .page_ban_text .cicle {
    width: 80px;
    height: 80px;
    background: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    top: 35%;
    right: 0;
}

.page_ban .page_ban_text .cicle a {
    display: inline-block;
    width: 100%;
    height: 30px;
    position: absolute;
    left: 0;
    background-image: url(../images/page_jt.svg);
    background-size: 30px 30px;
    background-position: center;
    background-repeat: no-repeat;
    animation: caseheight3 1.8s linear infinite;
}

@keyframes caseheight3 {
    0% {
        top: 20%;
    }

    100% {
        top: 50%;
    }

}

.page_ban_text .sub {
    font-size: 24px;
    color: #FFFFFF;
    line-height: 1.2;
}

.page_ban_text .sub_2 {
    font-size: 48px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.4;
    margin-top: 20px;
}

.page_ban .page_ban_amenu {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100px;
    width: 100%;
    z-index: 1;
}

.page_ban .page_ban_amenu:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    height: 100%;
    z-index: -1;
    background: #FFFFFF;
}

.page_ban .location {
    height: 100%;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
}

.page_ban .location a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
}

.page_ban .location a:first-child {
    margin-left: 0;
}

.page_ban .location a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.page_ban .two_menu {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    padding-left: 120px;
}

.page_ban .two_menu ul {
    margin-left: -45px;
    margin-right: -45px;
}

.page_ban .two_menu li {
    float: left;
    padding: 0 45px;
}

.page_ban .two_menu li a {
    display: inline-block;
    line-height: 100px;
    font-size: 18px;
    color: #333333;
    position: relative;
}

.page_ban .two_menu li a:after {
    content: "";
    width: 0;
    height: 4px;
    background: #00A0E9;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.page_ban .two_menu li a:hover:after, .page_ban .two_menu li.active a:after {
    width: 100%;
}

.page_ban .two_menu li.active a {
    font-weight: bold;
}

.page_ban .two_menu li a:hover, .page_ban .two_menu li.active a {
    color: var(--light--blue);
}

.about_first {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.about_first .about_bg01 {
    position: absolute;
    right: 0;
    top: 30%;
    width: 440px;
    height: 880px;
    background-image: url(../images/about_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.about_first .about_bg02 {
    position: absolute;
    right: -50%;
    top: 40%;
}

.about_first .first_one {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.about_first .first_one .about_img {
    width: 60%;
    text-align: right;
}

.about_first .first_one .about_text {
    width: 40%;
    padding-left: 100px;
}

.about_text h2 {
    font-size: 64px;
    color: #030E29;
    line-height: 1.1;
    font-weight: 500;
}

.about_first .first_one .about_text p {
    font-size: 20px;
    color: var(--grey);
    line-height: 1.5;
    max-width: 700px;
    margin-top: 50px;
}

.first_two .about_text p {
    font-size: 20px;
    color: var(--grey);
    line-height: 1.4;
    margin-top: 10px;
}

.about_twolist {
    padding-top: 60px;
}

.about_twolist ul {
    margin-left: -45px;
    margin-right: -45px;
}

.about_twolist ul li {
    width: 50%;
    padding: 0 45px;
    float: left;
}

.about_twolist li span {
    width: 60px;
    height: 60px;
    background-image: url(../images/about_t_ico03.svg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_twolist li .sub {
    font-size: 24px;
    margin-top: 40px;
    color: var(--light--blue);
}

.about_twolist li .text {
    font-size: 20px;
    color: var(--grey);
    line-height: 1.5;
    margin-top: 25px;
}

.about_three {
    overflow: hidden;
    padding-bottom: 105px;
}

.three_cont {
    width: 100%;
    position: relative;
    height: 650px;
}

.three_cont:before {
    content: "";
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 52.5%;
    background: linear-gradient(135deg, #00A0E9 0%, #0153F5 100%);
}

.three_cont .about_width {
    width: 52.5%;
    height: 100%;
}

.three_cont .about_width:nth-child(2) {
    position: absolute;
    top: 105px;
    right: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.three_cont .three_text {
    width: 50%;
    position: relative;
    z-index: 8;
    padding-top: 150px;
}

.three_cont .sub {
    font-size: 48px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.2;
}

.three_cont .three_eng {
    margin-top: 40px;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 1.5;
    max-width: 574px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

.about_gloab {
    padding-bottom: 65px;
    background-image: url(../images/about_bg02.png);
    background-position: center 80px;
    background-size: auto;
    background-repeat: no-repeat;
}

.about_gloab .gloab_text {
    position: relative;
}

.about_gloab .about_text {
    max-width: 864px;
    margin: 0 auto;
    text-align: center;
}

.about_gloab .about_text h2 {
    font-weight: 500;
    margin-bottom: 10px;
}

.about_gloab .about_text p {
    font-size: 20px;
    line-height: 1.5;
    color: var(--grey);
}

.about_last {
    min-height: 700px;
    position: relative;
    overflow: hidden;
    padding-top: 155px;
    padding-bottom: 170px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about_last:after {
    content: "";
    background: linear-gradient(90deg, rgba(40, 116, 205, 0) 0%, #096FCD 100%);
    opacity: 0.5;
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100%;
}

.about_last .about_text {
    float: right;
    width: 800px;
    max-width: 60%;
    position: relative;
    z-index: 8;
}

.about_last .about_text h2 {
    color: #fff;
    font-weight: 500;
    margin-bottom: 40px;
}

.about_last .about_text p {
    font-size: 20px;
    color: #FFFFFF;
    line-height: 1.5;
    padding-bottom: 15px;
}

.gloab_down {
    padding-top: 35px;
    display: flex;
    align-items: center;
}

.gloab_l {
    min-width: 497px;
}

.gloab_r {
    flex: 1;
    padding-left: 60px;
}

.gloab_l ul li {
    display: flex;
    align-items: center;
    line-height: 35px;
    position: relative;
    padding: 55px 0 38px 0;
}

.gloab_l ul li:after {
    content: "";
    height: 1px;
    background-color: #CCCCCC;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.gloab_l ul li:before {
    content: "";
    height: 2px;
    background-color: var(--light--blue);
    width: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.gloab_l ul li span:first-child, .gloab_l ul li em {
    font-size: 48px;
    
    font-weight: 500;
    color: #333333;
    font-style: normal;
}

.gloab_l ul li span:nth-child(3) {
    font-size: 24px;
    color: var(--grey);
    padding-left: 20px;
}

.gloab_l ul li:hover:after {
    opacity: 0;
}

.gloab_l ul li:hover:before {
    opacity: 1;
    width: 100%;
}

.gloab_l ul li:hover span:first-child, .gloab_l ul li:hover em {
    color: var(--light--blue);
}

.gloab_pun {
    position: relative;
    max-width: 995px;
}

.gloab_pun img {
    width: 100%;
}

.gloab_pun .gloab_b {
    position: absolute;
    transform: translate(-50%, -50%);
}

.gloab_pun .gloab_b span {
    width: 100%;
    height: 100%;
    display: inline-block;
    border-radius: 50%;
    background: var(--light--blue);
    opacity: 0.5;
}

.gloab_01 {
    width: 131px;
    height: 131px;
    left: 73.5%;
    top: 29%;
}

.gloab_02 {
    width: 91px;
    height: 91px;
    left: 18.5%;
    top: 51%;
}

.gloab_03 {
    width: 89px;
    height: 89px;
    left: 31.5%;
    top: 76.5%;
}

.gloab_04 {
    width: 84px;
    height: 84px;
    right: 11%;
    top: 71%;
}

.gloab_05 {
    width: 39px;
    height: 39px;
    right: 36.4%;
    top: 59%;
}

.gloab_06 {
    width: 35px;
    height: 35px;
    left: 23.2%;
    top: 63.5%;
}

.gloab_07 {
    width: 32px;
    height: 32px;
    right: 27.8%;
    top: 60%;
}

.gloab_08 {
    width: 29px;
    height: 29px;
    right: 51.6%;
    top: 65.8%;
}

.gloab_09 {
    width: 27px;
    height: 27px;
    right: 46.3%;
    top: 58.8%;
}

.gloab_flash {
    animation: pulse 1.5s alternate ease-in-out infinite;
}

@keyframes pulse {
    from {
        transform: scale(0.5);
    }

    to {
        transform: scale(1);
    }

}

@media (max-width:1680px) {
    .gloab_01 {
        width: 121px;
        height: 121px;
    }

    .gloab_02 {
        width: 81px;
        height: 81px;
    }

    .gloab_03 {
        width: 79px;
        height: 79px;
    }

    .gloab_04 {
        width: 74px;
        height: 74px;
    }

    .gloab_05 {
        width: 29px;
        height: 29px;
    }

    .gloab_06 {
        width: 25px;
        height: 25px;
    }

    .gloab_07 {
        width: 22px;
        height: 22px;
    }

    .gloab_08 {
        width: 19px;
        height: 19px;
    }

    .gloab_09 {
        width: 17px;
        height: 17px;
    }

}

@media (max-width:1440px) {
    .gloab_01 {
        width: 100px;
        height: 100px;
    }

    .gloab_02 {
        width: 70px;
        height: 70px;
    }

    .gloab_03 {
        width: 60px;
        height: 60px;
    }

    .gloab_04 {
        width: 55px;
        height: 55px;
    }

    .gloab_05 {
        width: 29px;
        height: 29px;
    }

    .gloab_06 {
        width: 25px;
        height: 25px;
    }

    .gloab_07 {
        width: 22px;
        height: 22px;
    }

    .gloab_08 {
        width: 19px;
        height: 19px;
    }

    .gloab_09 {
        width: 17px;
        height: 17px;
    }

}

@media (max-width:1366px) {
    .gloab_01 {
        width: 80px;
        height: 80px;
    }

    .gloab_02 {
        width: 60px;
        height: 60px;
    }

    .gloab_03 {
        width: 50px;
        height: 50px;
    }

    .gloab_04 {
        width: 45px;
        height: 45px;
    }

    .gloab_05 {
        width: 25px;
        height: 25px;
    }

    .gloab_06 {
        width: 20px;
        height: 20px;
    }

    .gloab_07 {
        width: 16px;
        height: 16px;
    }

    .gloab_08 {
        width: 14px;
        height: 14px;
    }

    .gloab_09 {
        width: 10px;
        height: 10px;
    }

}

@media (max-width:767px) {
    .gloab_01 {
        width: 60px;
        height: 60px;
    }

    .gloab_02 {
        width: 40px;
        height: 40px;
    }

    .gloab_03 {
        width: 34px;
        height: 34px;
    }

    .gloab_04 {
        width: 28px;
        height: 28px;
    }

    .gloab_05 {
        width: 22px;
        height: 22px;
    }

    .gloab_06 {
        width: 18px;
        height: 18px;
    }

    .gloab_07 {
        width: 14px;
        height: 14px;
    }

    .gloab_08 {
        width: 10px;
        height: 10px;
    }

    .gloab_09 {
        width: 6px;
        height: 6px;
    }

}

@media (max-width:1440px) {
    .page_ban .two_menu {
        padding-left: 60px;
    }

    .page_ban_text .sub_2 {
        font-size: 44px;
    }

    .page_ban .page_ban_text .cicle {
        width: 70px;
        height: 70px;
    }

    .page_ban .page_ban_text .cicle a {
        background-size: 25px 25px;
    }

    .about_text h2 {
        font-size: 60px;
    }

    .about_first .first_one .about_text {
        padding-left: 80px;
    }

}

@media (max-width:1366px) {
    .height {
        height: 105px;
    }

    .page_ban_text .sub_2 {
        font-size: 40px;
    }

    .page_ban .page_ban_text .cicle {
        width: 60px;
        height: 60px;
    }

    .page_ban .page_ban_text .cicle a {
        background-size: 20px 20px;
    }

    .page_ban .two_menu ul {
        margin-left: -35px;
        margin-right: -35px;
    }

    .page_ban .two_menu li {
        padding: 0 35px;
    }

    .about_text h2 {
        font-size: 54px;
    }

    .about_first .first_one .about_text p {
        margin-top: 40px;
    }

    .about_gloab {
        background-size: 60%;
    }

}

@media (max-width:1280px) {
    .page_ban {
        height: 450px;
    }

    .page_ban_text .sub_2 {
        font-size: 36px;
    }

    .page_ban .location a {
        font-size: 14px;
        margin: 0 3px;
    }
    .page_ban .two_menu {
        padding-left: 40px;
    }

    .page_ban .two_menu ul {
        margin-left: -16px;
        margin-right: -16px;
    }

    .page_ban .two_menu li {
        padding: 0 16px;
    }

    .about_text h2 {
        font-size: 44px;
    }

    .about_first .first_one .about_text {
        padding-left: 60px;
    }

    .about_first .about_bg01 {
        width: 300px;
        height: 600px;
    }

    .about_first .about_bg02 {
        width: 300px;
    }

    .three_cont {
        height: 560px;
    }

    .gloab_l {
        min-width: 340px;
    }

    .gloab_l ul li span:first-child, .gloab_l ul li em {
        font-size: 44px;
    }

    .gloab_l ul li {
        padding: 35px 0 25px 0;
    }

    .gloab_l ul li span:nth-child(3) {
        font-size: 20px;
    }

    .three_cont .sub {
        font-size: 44px;
    }

    .about_last {
        min-height: inherit;
        padding: 100px 0 120px 0;
    }

}
@media (max-width:1100px) {

.page_ban .location a {
        font-size: 12px;
    }

}
@media (max-width:991px) {
    .height {
        height: 80px;
    }

    .page_ban {
        overflow: hidden;
    }

    .page_ban .page_ban_text {
        padding-top: 10%;
    }

    .page_ban_text .sub_2 {
        font-size: 32px;
    }

    .page_ban {
        height: auto;
    }

    .page_ban .bg {
        filter: inherit;
    }

    .page_top {
        position: relative;
        height: 360px;
    }

    .page_ban .page_ban_text .cicle {
        width: 50px;
        height: 50px;
    }

    .page_ban .page_ban_text .cicle a {
        background-size: 16px 16px;
    }

    .page_ban .page_ban_amenu {
        position: inherit;
        filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.15));
        height: inherit;
        overflow: hidden;
        padding-top: 15px;
    }

    .page_ban .location {
        width: 100%;
        height: 50px;
        color: #aaaaaa;
        display: block;
        height: auto;
    }

    .page_ban .location a {
        color: #aaaaaa;
    }

    .page_ban .location a:hover {
        color: var(--light--blue);
    }

    .page_ban .two_menu {
        position: inherit;
        width: 100%;
        padding-left: 0;
        float: left;
        padding-top: 10px;
    }

    .page_ban .page_ban_amenu::before {
        display: none;
    }

    .page_ban .two_menu li a {
        line-height: 45px;
    }

    .page_ban .two_menu li a::after {
        height: 2px;
    }

    .about_first .first_one {
        padding: 0 30px;
    }

    .about_text h2 {
        font-size: 34px;
    }

    .about_first .first_one .about_text p {
        font-size: 18px;
        margin-top: 30px;
    }

    .about_first .first_one .about_text {
        padding-left: 50px;
    }

    .about_first .about_bg01 {
        width: 250px;
        height: 500px;
    }

    .about_first .about_bg02 {
        width: 250px;
    }

    .three_cont .three_text {
        padding-top: 100px;
    }

    .three_cont .sub {
        font-size: 40px;
    }

    .about_twolist ul {
        margin-left: -15px;
        margin-right: -15px;
    }

    .about_twolist ul li {
        padding: 0 15px;
    }

    .first_two .about_text p, .about_last .about_text p, .about_twolist li .text, .three_cont .three_eng, .about_gloab .about_text p {
        font-size: 18px;
    }

    .gloab_down {
        display: block;
    }

    .gloab_down .gloab_l {
        max-width: 400px;
    }

    .gloab_r {
        padding-left: 0;
        padding-top: 30px;
    }

    .gloab_l ul li span:first-child, .gloab_l ul li em {
        font-size: 40px;
    }

}

@media (max-width:767px) {
    .page_top {
        height: 300px;
    }

    .page_ban .page_ban_text {
        padding-right: 0;
        padding-top: 18%;
    }

    .page_ban .page_ban_text .cicle {
        display: none !important;
    }

    .page_ban_text .sub {
        font-size: 28px;
    }

    .page_ban_text .sub_2 {
        font-size: 20px;
        line-height: 1.2;
    }

    .page_ban .two_menu li {
        padding-bottom: 5px;
    }

    .page_ban .location a {
        font-size: 12px;
    }

    .about_first .about_bg01 {
        width: 200px;
        height: 450px;
    }

    .about_first .first_one {
        display: block;
        padding: 0 15px;
    }

    .about_first .first_one .about_img {
        width: 100%;
        text-align: center;
    }

    .about_first .first_one .about_text {
        padding-left: 0;
        width: 100%;
        padding-top: 30px;
    }

    .about_text h2 {
        font-size: 28px;
    }

    .about_first .first_one .about_text p {
        font-size: 16px;
        margin-top: 30px;
    }

    .first_two .about_text p, .about_last .about_text p {
        font-size: 16px;
    }

    .about_twolist {
        padding-top: 30px;
    }

    .about_twolist ul li {
        width: 100%;
        padding-bottom: 30px;
    }

    .about_twolist ul li:last-child {
        padding-bottom: 0;
    }

    .about_twolist li span {
        width: 50px;
        height: 50px;
        padding: 15px;
        background-size: cover;
    }

    .about_twolist li .sub {
        font-size: 20px;
        margin-top: 10px;
    }

    .about_twolist li .text {
        font-size: 16px;
        margin-top: 10px;
    }

    .about_three {
        padding-bottom: 0;
    }

    .three_cont {
        height: auto;
    }

    .three_cont .sub {
        font-size: 28px;
    }

    .three_cont .three_text {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .three_cont .about_width {
        width: 100%;
        height: auto;
        background: none !important;
    }

    .three_cont::before {
        width: 100%;
        height: 60%;
        z-index: -1;
    }

    .three_cont .about_width:nth-child(2) {
        position: inherit;
        top: inherit;
        right: 0;
    }

    .about_last {
        padding: 50px 0 60px 0;
    }

    .about_last .about_text {
        max-width: 100%;
    }

    .about_last::after {
        width: 100%;
    }

}

/*history*/
.his_sub {
    text-align: center;
}

.his_sub h2 {
    font-size: 24px;
    color: #030E29;
    font-weight: 500;
}

.his_sub strong {
    font-size: 96px;
    
    font-weight: 500;
    color: #030E29;
    line-height: 1.1;
    display: inline-block;
    margin-top: 10px;
}

.his_list {
    padding: 50px 0;
}

.his_loop {
    position: relative;
}

.his_loop  .img_lst, .his_loop .caption {
    float: left;
    position: relative;
    width: 50%;
    min-height: 412px;
}

.his_loop.type1  .img_lst {
    float: left;
}

.his_loop.type2 .caption .caption_wrap {
    padding: 0 120px 0 0;
}

.his_loop  .img_lst {
    float: right;
}

.tweenImg {
    position: relative;
    overflow: hidden;
}

.his_loop.type1 .img_lst .tweenImg, .his_loop.type2 .img_lst .tweenImg {
    min-height: 412px;
}

.his_loop.type1 .img_lst .tweenImg img, .his_loop.type2 .img_lst .tweenImg img {
    position: absolute;
    top: 0;
    left: 50%;
    max-width: none;
    height: 100%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.his_loop  .caption {
    height: 100%;
}

.his_loop .caption .caption_wrap {
    padding-left: 120px;
}

.his_loop .caption .caption_wrap {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.his_loop .caption .caption_wrap h3 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 500;
}

.his_loop .caption .caption_wrap strong {
    font-size: 36px;
    line-height: 1.1;
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
}

.his_loop .caption .caption_wrap span.desc p {
    font-size: 18px;
    line-height: 24px;
}

.his_loop .caption .caption_wrap h3 {
    color: var(--light--blue);
}

.his_loop .caption .caption_wrap strong {
    color: #333333;
}

.his_loop .caption .caption_wrap span.desc {
    display: block;
    overflow: hidden;
}

.his_loop .caption .caption_wrap span.desc p {
    color: #666666;
}

.his_loop.type3 .caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
}

.his_loop.type3 .caption .caption_wrap {
    padding-left: 0;
}

.his_loop.type3 .caption .caption_wrap {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.his_loop.type3 {
    height: 457px;
}

.his_loop.type3 .img_lst {
    position: relative;
    width: 100%;
    height: 100%;
}

.his_loop.type3 .img_lst img {
    position: absolute;
    top: 0;
    left: 50%;
    max-width: none;
    height: 100%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.his_more {
    margin: 0 auto;
    margin-bottom: 80px;
    width: 350px;
    height: 70px;
    background: #FFFFFF;
    border-radius: 50px 50px 50px 50px;
    border: 1px solid #CCCCCC;
}

.his_more a {
    display: flex;
    width: 100%;
    height: 100%;
    line-height: 70px;
    font-size: 24px;
    color: #333333;
    justify-content: center;
}

.balls {
    width: 40px;
    margin-left: 40px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}

.balls div {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #333333;
    transform: translateY(-100%);
    animation: wave 0.8s ease-in-out alternate infinite;
}

.balls div:nth-of-type(1) {
    animation-delay: -0.4s;
}

.balls div:nth-of-type(2) {
    animation-delay: -0.2s;
}

.his_more:hover {
    background: var(--light--blue);
    border-color: var(--light--blue);
}

.his_more:hover a {
    color: #fff;
}

.his_more:hover .balls div {
    background-color: #ffffff;
}

@keyframes wave {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(100%);
    }

}

@media (min-width:768px) {
    .his_loop.type3 .caption .caption_wrap h3 {
        color: #ffffff;
    }

    .his_loop.type3 .caption .caption_wrap strong {
        color: #ffffff;
    }

    .his_loop.type3 .caption .caption_wrap span.desc {
        max-width: 780px;
    }

    .his_loop.type3 .caption .caption_wrap span.desc p {
        color: #ffffff;
    }

}

@media (max-width:1440px) {
    .his_sub strong {
        font-size: 90px;
    }

    .his_loop .caption .caption_wrap h3 {
        font-size: 60px;
    }

    .his_loop .caption .caption_wrap strong {
        font-size: 32px;
    }

    .his_loop .caption .caption_wrap {
        padding-left: 60px;
    }

    .his_loop.type2 .caption .caption_wrap {
        padding: 0 60px 0 0;
    }

}

@media (max-width:1366px) {
    .his_sub strong {
        font-size: 80px;
    }

    .his_loop .caption .caption_wrap h3 {
        font-size: 50px;
    }

    .his_loop .caption .caption_wrap strong {
        font-size: 28px;
    }

}

@media (max-width:1280px) {
    .his_sub {
        margin-bottom: 20px;
    }

    .his_list {
        padding: 30px 0;
    }

    .his_sub strong {
        font-size: 70px;
    }

    .his_loop .caption .caption_wrap h3 {
        font-size: 44px;
    }

    .his_loop .caption .caption_wrap strong {
        font-size: 26px;
    }

    .his_loop .img_lst, .his_loop .caption, .his_loop.type1 .img_lst .tweenImg, .his_loop.type2 .img_lst .tweenImg {
        min-height: 360px;
    }

    .his_loop.type3 {
        height: 400px;
    }

}

@media (max-width:991px) {
    .his_sub h2 {
        font-size: 22px;
    }

    .his_sub strong {
        font-size: 60px;
    }

    .his_loop .caption .caption_wrap h3 {
        font-size: 40px;
    }

    .his_loop .caption .caption_wrap strong {
        font-size: 24px;
    }

    .his_loop .img_lst, .his_loop .caption, .his_loop.type1 .img_lst .tweenImg, .his_loop.type2 .img_lst .tweenImg {
        min-height: 320px;
    }

    .his_loop.type3 {
        height: 380px;
    }

}

@media (max-width:767px) {
    .his_sub h2 {
        font-size: 20px;
    }

    .his_sub strong {
        font-size: 50px;
    }

    .his_loop .caption .caption_wrap h3 {
        font-size: 36px;
    }

    .his_loop .caption .caption_wrap strong {
        font-size: 20px;
    }

    .his_loop .caption .caption_wrap span.desc p {
        font-size: 16px;
    }

    .his_list {
        overflow: hidden;
    }

    .his_loop .img_lst, .his_loop .caption {
        width: 100%;
        min-height: inherit;
    }

    .his_loop .caption .caption_wrap {
        padding-left: 0;
    }

    .his_loop.type3 .caption .caption_wrap .m_container {
        padding-left: 0;
        padding-right: 0;
    }

    .his_loop .img_lst, .his_loop .caption, .his_loop.type1 .img_lst .tweenImg, .his_loop.type2 .img_lst .tweenImg {
        min-height: inherit;
    }

    .his_loop.type1 .img_lst .tweenImg img, .his_loop.type2 .img_lst .tweenImg img, .his_loop.type3 .img_lst img, .his_loop .caption .caption_wrap, .his_loop.type3 .caption, .his_loop.type3 .caption .caption_wrap {
        position: relative;
        left: inherit;
        top: inherit;
        transform: inherit;
    }

    .his_loop.type1 .img_lst .tweenImg img, .his_loop.type2 .img_lst .tweenImg img {
        max-width: 100%;
		height: auto;
    }

    .his_loop .caption .caption_wrap {
        text-align: left;
        padding-top: 20px;
    }

    .his_loop.type2 .caption .caption_wrap {
        padding: 30px 0 0 0;
    }

    .his_loop.type3 .caption, .his_loop.type3 {
        height: inherit;
    }

    .his_loop .img_lst {
        float: left;
    }

    .his_loop.type3 {
        padding: 0 15px;
    }

    .his_loop.type3 .img_lst img {
        max-width: 100%;
        height: auto;
    }

    .his_more {
        width: 250px;
        height: 60px;
        margin-top: 20px;
    }

    .his_more a {
        line-height: 60px;
        font-size: 18px;
    }

    .balls div {
        width: 6px;
        height: 6px;
    }

    .balls {
        width: 30px;
        margin-left: 20px;
    }

}

/*certification*/
.cer_list {
}

.cer_list ul {
    margin-left: -25px;
    margin-right: -25px;
}

.cer_list ul li {
    float: left;
    width: 25%;
    padding: 0 25px 45px 25px;
}

.cer_list .big {
    width: 100%;
    padding: 14px 20px;
    display: inline-block;
    border: 1px solid #DDDDDD;
}

.cer_list .img_ {
    overflow: hidden;
    text-align: center;
	height:422px;
}

.cer_list .img_ img {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.cer_list .cer_title {
    padding-top: 25px;
    margin-top: 10px;
    border-top: 1px solid #DDDDDD;
}

.cer_list .small_title {
    width: 80%;
    float: left;
    height: 42px;
    font-size: 18px;
    color: #333333;
    line-height: 21px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cer_list .cicle {
    float: right;
}

.cer_list ul li a:hover .img_ img {
    transform: scale(1.03);
}

.cer_list ul li a:hover .small_title {
    color: var(--light--blue);
}

@media (max-width:1280px) {
    .cer_list ul {
        margin-left: -20px;
        margin-right: -20px;
    }

    .cer_list ul li {
        padding: 0 20px 40px 20px;
    }

}

@media (max-width:991px) {
    .cer_list ul {
        margin-left: -15px;
        margin-right: -15px;
    }

    .cer_list ul li {
        padding: 0 15px 30px 15px;
    }

}

@media (max-width:767px) {
    .cer_list ul li {
        width: 50%;
    }

}

@media (max-width:540px) {
    .cer_list ul li {
        width: 100%;
    }

}

/*strategy*/
.stra_big_t {
    text-align: right;
    margin-top: -50px;
}

.stra_big_t h3 {
    font-size: 200px;
    font-family: Arial-Black, Arial;
    font-weight: 900;
    color: #F7F7F7;
    line-height: 1.1;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
}

.stra_big_t h3:before {
    content: "";
    height: 2px;
    width: 35px;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -17px;
    background-color: var(--light--blue);
}

.stra_first_cont {
    margin-top: -90px;
    position: relative;
    z-index: 8;
}

.stra_first_cont .fl {
    width: 50%;
}

.stra_first_cont .fr {
    width: 50%;
    padding-left: 50px;
    padding-top: 40px;
}

.stra_first_cont .fr strong {
    display: block;
    text-align: right;
}

.stra_l_title {
    font-size: 64px;
    font-weight: 400;
    color: #030E29;
    line-height: 1;
    overflow: hidden;
}
.stra_l_title .fr {
    width: 50%;
    max-width: 714px;
    padding-left: 50px;
    float: right;
    text-align: left;
}

.stra_first_cont .fr .text {
    max-width: 670px;
    padding-top: 150px;
    float: right;
    font-size: 18px;
    color: #666;
}

.stra_two_title {
    text-align: right;
}

.stra_two .bg {
    background-image: url(../images/stra_dou.svg);
    background-repeat: no-repeat;
    background-size: 93px 81px;
    background-position: left top;
}

.stra_two .two_text {
    padding-top: 40px;
}

.stra_two .two_text .fl {
    width: 50%;
    max-width: 714px;
    padding-right: 50px;
    padding-top: 45px;
}

.stra_two .two_text .fr {
    width: 50%;
    max-width: 714px;
    padding-left: 50px;
}

.stra_two .two_text p {
    font-size: 18px;
    color: #666666;
    line-height: 26px;
}

.stra_four .ul {
    margin-left: -44px;
    margin-right: -44px;
}

.stra_four .bg {
    width: 100%;
    height: 100%;
    background: #F9F9F9;
    padding: 65px 45px;
}

.stra_four .ul li {
    padding-left: 44px;
    padding-right: 44px;
}

.stra_four .ico {
    text-align: right;
}

.stra_four .sm_title {
    font-size: 36px;
    color: #030E29;
    height: 72px;
    line-height: 36px;
    margin-bottom: 40px;
    margin-top: 30px;
}

.stra_four .ul p {
    font-size: 18px;
    color: #666666;
    line-height: 26px;
}

.stra_five {
    margin-top: 75px;
    overflow: hidden;
    position: relative;
    padding-bottom: 45px;
}

.stra_five .fl {
    width: 53.3%;
    height: 600px;
    margin-top: 45px;
    position: relative;
    z-index: 8;
    overflow: hidden;
}

.stra_five .fl img {
    position: absolute;
    top: 0;
    left: 50%;
    max-width: none;
    height: 100%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    z-index: 7;
}

.stra_five .fr {
    position: absolute;
    right: 0;
    top: 0;
    width: 53.3%;
    height: 689px;
    background: #F5F5F5;
}

.stra_five .five_text {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 8;
}

.stra_five .five_text .m_container {
    height: 100%;
}

.stra_five .five_text .m_r {
    float: right;
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
}

.stra_five .five_text .five_des {
    font-size: 18px;
    color: #333333;
    line-height: 26px;
    margin-top: 80px;
    max-height: 260px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
}

.stra_part {
    padding-top: 80px;
}

.part_title {
    font-size: 36px;
    color: var(--light--blue);
}

.part_list {
    padding-top: 33px;
    padding-bottom: 60px;
}

.part_list ul {
    margin-left: -17px;
    margin-right: -17px;
}

.part_list ul li {
    width: 20%;
    padding: 17px;
    float: left;
    overflow: hidden;
}

.part_list span {
    height: 130px;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #DDDDDD;
    padding: 20px;
}

.part_list span img {
    max-height: 100%;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.part_list ul li:hover span img {
    transform: scale(1.03);
}

@media (min-width:992px) {
    .stra_four .ul {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .stra_four .ul li {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

}

@media (max-width:1440px) {
    .stra_big_t h3 {
        font-size: 180px;
    }

    .stra_l_title {
        font-size: 60px;
    }

    .stra_first_cont .fr .text {
        padding-top: 120px;
    }

    .stra_part {
        padding-top: 60px;
    }

}

@media (max-width:1366px) {
    .stra_big_t h3 {
        font-size: 160px;
    }

    .stra_first_cont {
        margin-top: -60px
    }

    .stra_l_title {
        font-size: 50px;
    }

    .stra_first_cont .fr .text {
        padding-top: 80px;
    }

    .stra_four .ul {
        margin-left: -30px;
        margin-right: -30px;
    }

    .stra_four .ul li {
        padding-left: 30px;
        padding-right: 30px;
    }

    .stra_four .sm_title {
        font-size: 32px;
    }

    .stra_five .fl {
        height: 510px;
    }

    .stra_five .fr {
        height: 600px;
    }

}

@media (max-width:1280px) {
    .stra_big_t h3 {
        font-size: 140px;
    }

    .stra_l_title {
        font-size: 42px;
    }

    .stra_first_cont .fr .text {
        padding-top: 60px;
    }

    .stra_two .two_text .fl {
        padding-right: 30px;
    }

    .stra_two .two_text .fr,.stra_l_title .fr {
        padding-left: 30px;
    }

    .stra_four .ul {
        margin-left: -20px;
        margin-right: -20px;
    }

    .stra_four .ul li {
        padding-left: 20px;
        padding-right: 20px;
    }

    .stra_four .sm_title {
        font-size: 30px;
    }

    .stra_four .bg {
        padding: 50px 30px;
    }

    .stra_two .bg {
        background-size: 6%;
    }

    .stra_five .five_text .five_des {
        margin-top: 60px;
    }

    .stra_part {
        padding-top: 50px;
    }

}

@media (max-width:991px) {
    .stra_big_t h3 {
        font-size: 100px;
    }

    .stra_first_cont .fr .text {
        padding-top: 40px;
    }

    .stra_first_cont .fr .text, .stra_two .two_text .fl {
        width: 100%;
        padding-right: 0;
    }

    .stra_two .two_text .fr {
        width: 100%;
        float: left;
        padding-left: 0;

    }
    .stra_l_title .fr {
        padding-left: 38px;
        text-align: left;
        width: 100%;
    }

    .stra_four .sm_title {
        font-size: 26px;
    }

    .stra_five .five_text .five_des, .stra_four .ul p, .stra_first_cont .fr .text, .stra_two .two_text p {
        font-size: 16px;
    }

    .stra_four .ul li {
        padding-bottom: 30px;
    }

    .stra_four .sm_title {
        height: inherit;
        line-height: 36px;
        margin-bottom: 20px;
        margin-top: 10px;
    }

    .stra_l_title {
        font-size: 30px;
    }

    .part_list ul {
        margin-left: -14px;
        margin-right: -14px;
    }

    .part_list ul li {
        padding: 14px;
    }

}

@media (max-width:767px) {
    .stra_big_t {
        margin-top: 0;
    }

    .stra_big_t h3 {
        font-size: 50px;
    }

    .stra_first_cont .fl {
        width: 100%;
        padding-top: 30px;
    }

    .stra_first_cont .fr {
        width: 100%;
        padding-left: 0;
    }

    .stra_two .two_text .fl {
        padding-top: 0;
    }

    .stra_two .bg {
        background-size: 8%;
    }

    .stra_five {
        margin-top: 0;
        padding-bottom: 45px;
    }

    .stra_five .fl, .stra_five .fr {
        width: 100%;
        height: auto;
    }

    .stra_five .fl img {
        position: inherit;
        left: inherit;
        transform: inherit;
        height: auto;
        max-width: 100%;
    }

    .stra_five .five_text {
        position: inherit;
    }

    .stra_five .fr {
        display: none;
    }

    .stra_five .five_text .m_r {
        float: left;
        width: 100%;
        display: block;
        padding-top: 30px;
    }

    .stra_five .five_text .five_des {
        margin-top: 30px;
    }

    .stra_l_title {
        font-size: 28px;
    }
    .stra_l_title .fr {
    width: 100%;
    float: left;
}

    .stra_four .sm_title {
        font-size: 26px;
    }

    .stra_part {
        padding-top: 30px;
    }

    .part_list ul li {
        width: 50%;
    }

    .part_list span {
        height: 100px;
        padding: 15px;
    }

}

@media (max-width:360px) {
    .stra_big_t h3 {
        font-size: 44px;
    }

}

/*pro*/
.pro_ban .page_ban_text {
    padding-top: 7%;
}

.page_ban_pmenu {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

.pro_menu {
    height: 100px;
}

.page_ban_pmenu .location {
    padding-bottom: 35px;
}

.p_menu_fist .swiper-slide {
    display: inline-block;
    width: 13.66%;
    float: left;
    background: #FFFFFF;
}

.p_menu_fist .swiper-slide {
    border: 1px solid #DDDDDD;
    border-right: none;
    transition: transform 0.25s ease-in-out;
}

.p_menu_fist .swiper-slide:last-child {
    border-right: 1px solid #DDDDDD;
}

.p_menu_fist .swiper-slide a {
    height: 100px;
    line-height: 25px;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    padding: 5px 5px;
    justify-content: center;
    display: flex;
    text-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.p_menu_fist .swiper-slide.active {
    border-color: var(--light--blue);
}

.p_menu_fist .swiper-slide.active a {
    background-color: var(--light--blue);
    color: #fff;
}

.p_menu_fist .swiper-slide a:hover {
    color: #fff;
}

.p_menu_fist .swiper-slide a::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--light--blue);
    transform-origin: center right;
    transform: scaleX(0);
    transition: transform 0.25s ease-in-out;
}

.p_menu_fist .swiper-slide:hover {
    border-color: var(--light--blue);
}

.p_menu_fist .swiper-slide a:hover {
    cursor: pointer;
}

.p_menu_fist .swiper-slide:hover a::before {
    transform-origin: center left;
    transform: scaleX(1);
}

.pro_t_menu {
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.pro_t_menu ul {
    margin-left: -29px;
    margin-right: -29px;
}

.pro_t_menu ul li {
    float: left;
    padding: 5px 29px;
}

.pro_t_menu ul li a {
    font-size: 16px;
    color: #666666;
    display: inline-block;
    line-height: 30px;
    position: relative;
    z-index: 7;
}

.pro_t_menu ul li.active a {
    color: var(--light--blue);
}

.pro_n_list {
    padding-top: 57px;
}

.pro_n_list ul {
    margin-left: -4px;
    margin-right: -4px;
}

.pro_n_list ul li {
    padding:10px 4px;
    float: left;
    width: 25%;
}

.pro_n_list a {
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/pro_n_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 36px 30px;
    position: relative;
}
.pro_n_list .img {
    text-align: center;
}

.pro_n_list a:before {
    content: "";
    position: absolute;
    height: 5px;
    width: 0;
    bottom: 0;
    left: 0px;
    background-color: var(--light--blue);
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

.pro_n_list .line {
    width: 1px;
    height: 30px;
    opacity: 0.5;
    background-color: #999999;
    margin: 0 auto;
}

.pro_n_list h3 {
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 500;
    color: #333333;
    line-height: 24px;
    white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;

}

.pro_n_list a:hover:before {
    width: 100%;
}

.mo_p_menu {
    height: 50px;
    left: 0;
    bottom: 0;
    background-color: #fff;
    position: relative;
}

.d-firstDrop {
    display: none;
}

.mo_p_menu .d-firstNav {
    height: 50px;
    line-height: 50px;
    position: relative;
    padding: 0 15px;
    background-color: var(--light--blue);
}

.mo_p_menu .d-firstDrop {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    height: auto;
    padding: 20px 0;
    background-color: #fff;
    z-index: 8;
}

.mo_p_menu .d-firstDrop li {
    padding: 5px 30px;
}

.mo_p_menu .d-firstDrop li a {
    font-size: 16px;
    color: #666;
}

.d-firstNav span {
    float: left;
    font-size: 18px;
    color: #fff;
}

.d-firstNav span a {
    color: inherit;
}

.d-firstNav i.fr {
    float: right;
    width: 35px;
    height: 35px;
    margin-top: 8px;
    background-size: 35px 35px;
    display: inline-block;
    background-image: url(../images/language_ico02.svg);
}

.iconRotate {
    transform: rotate(180deg);
    transition: transform 0.5s;
}

@media (min-width:768px) {
    .pro_n_list a:hover {
        transform: translateY(-15px);
    }
    .m_pdr {
        padding-left: 50px;
        padding-right: 50px;
    }
}


@media (max-width:991px) {
    .page_ban_pmenu .location, .page_ban_pmenu .location a {
        color: rgba(255, 255, 255, 0.5);
    }

    .p_menu_fist .swiper-slide a {
        font-size: 16px;
    }

    .pro_t_menu {
        padding-top: 20px;
    }

    .pro_n_list ul li {
        width: 33.33%;
    }

}

@media (max-width:767px) {
    .pro_ban {
        overflow: visible;
    }

    .pro_ban .page_ban_pmenu .location {
        line-height: 20px;
        padding-bottom: 10px;
    }

    .pro_ban .page_ban_pmenu .location a {
        line-height: inherit;
    }

    .pro_ban .page_ban_text {
        padding-right: 0;
        padding-top: 13%;
    }

    .pro_t_menu ul li a {
        font-size: 16px;
    }

    .pro_t_menu ul {
        margin-left: -15px;
        margin-right: -15px;
    }

    .pro_t_menu ul li {
        padding: 0 15px;
    }

    .pro_n_list ul li {
        width: 50%;
    }

    .page_ban_pmenu .location {
        padding-bottom: 20px;
    }

    .pro_n_list {
        padding-top: 0;
    }

}

@media (max-width:540px) {
    .pro_n_list ul li {
        width: 100%;
    }

}

/*page*/
.public_page {
    text-align: center;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 50px;
}

.public_page .pagination {
    display: inline-block;
    position: relative;
}

.public_page .pagination li {
    float: left;
}

.public_page span, .public_page a {
    display: block;
    width: 50px;
    height: 50px;
    float: left;
    border-radius: 6px;
    text-align: center;
    font-size: 18px;
    
    font-weight: bold;
    line-height: 50px;
    color: #666666;
}

.public_page .active span, .public_page .active a {
    background-color: var(--light--blue);
    color: #fff;
}

.public_page li:last-child span, .public_page li:last-child span, .public_page li:first-child a, .public_page li:first-child a {
    font-size: 18px;
    
    font-weight: bold;
    line-height: 50px;
    color: #666666;
}

@media(max-width:768px) {
    .public_page span, .public_page a {
        width: 30px;
        height: 30px;
        line-height: 30px !important;
        margin: 0 2px;
        font-size: 14px;
    }

}

/*pro detail*/
.prod_up_bg {
    width: 100%;
    background-image: url(../images/pro_d_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 45px;
    padding-bottom: 90px;
}

.prod_up_bg .location {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    padding-left: 25px;
    background-image: url(../images/house.svg);
    background-size: 18px 19px;
    background-repeat: no-repeat;
    background-position: left 2px;
}

.prod_up_bg .location a {
    color: #FFFFFF;
    opacity: 0.5;
}

.pro_t_cont {
    padding-top: 20px;
    display: flex;
    background-image: url(../images/pro_d_logo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.pro_t_cont .m_l {
    width: 50%;
    float: left;
}

.pro_t_cont .m_r {
    width: 50%;
    float: right;
    padding-left: 120px;
    padding-top: 70px;
}

.pro_t_cont .m_r h3 {
    font-size: 80px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.1;
}

.pro_t_cont .m_r .p_des {
    margin-top: 40px;
}

.pro_t_cont .m_r .p_des p {
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 36px;
    height: 108px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.p_button {
    padding-top: 70px;
    display: flex;
}

.p_button a {
    display: inline-block;
    width: 260px;
    height: 80px;
    max-width: 50%;
    border-radius: 40px;
    text-align: center;
    line-height: 80px;
    overflow: hidden;
}

.p_button a:first-child {
    margin-right: 12px;
}

.p_button a span {
    font-size: 24px;
}

.p_button a.p_click {
    background: linear-gradient(121deg, #00A0E9 0%, #0153F5 100%);
}

.p_button a.p_back {
    background: #FFFFFF;
    position: relative;
    z-index: 1;
}

.p_button a.p_click span {
    color: #fff;
    display: inline-block;
    background-image: url(../images/mess.svg);
    background-size: 37px 37px;
    padding-left: 50px;
    background-position: left;
    background-repeat: no-repeat;
}

.p_button a.p_back span {
    color: #666666;
    background-image: url(../images/back.svg);
    background-size: 24px 24px;
    padding-left: 45px;
    background-position: left;
    background-repeat: no-repeat;
}

.p_button a.p_back::after {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(121deg, #00A0E9 0%, #0153F5 100%);
    transform-origin: center right;
    transform: scaleX(0);
    transition: transform 0.25s ease-in-out;
}

.p_button a.p_back:hover span {
    color: #fff;
    background-image: url(../images/back_w.svg);
}

.p_button a.p_back:hover::after {
    transform-origin: center left;
    transform: scaleX(1);
}

.d_sub {
    font-size: 40px;
    color: #333333;
    line-height: 1.1;
}

.d_down_des .des {
    padding-top: 40px;
    max-width: 1100px;
}

.d_down_des .des p {
    font-size: 22px;
    color: #666666;
    line-height: 1.6;
}

.d_down_table .d_table {
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    margin-top: 40px;
    margin-bottom: 70px;
    padding: 40px 60px;
}

.d_down_table .d_table table {
    width: 100%;
}

.d_down_table .d_table table tr {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #DDDDDD;
    padding: 35px 0;
}

.d_down_table .d_table table tr td {
    font-size: 18px;
    color: #666666;
}

.d_down_table .d_table table strong {
    color: #333333;
    font-weight: 600;
    font-family: none;
}

.d_down_table .d_table table tr td:first-child, .d_down_table .d_table table tr th {
    font-size: 20px;
}

.d_down_table .d_table table tr td:nth-child(2) {
    width: 70%;
}

@media (max-width:1440px) {
    .pro_t_cont .m_r {
        padding-left: 80px;
    }

    .pro_t_cont .m_r h3 {
        font-size: 60px;
    }

}

@media (max-width:1366px) {
    .pro_t_cont .m_r h3 {
        font-size: 54px;
    }

    .pro_t_cont .m_r .p_des p {
        font-size: 22px;
    }

    .p_button a {
        height: 70px;
        line-height: 70px;
    }

    .d_sub {
        font-size: 36px;
    }

    .d_down_des .des p {
        font-size: 20px;
    }

}

@media (max-width:1280px) {
    .pro_t_cont .m_r h3 {
        font-size: 50px;
    }

    .pro_t_cont .m_r .p_des p {
        font-size: 20px;
    }

    .d_sub {
        font-size: 34px;
    }

    .d_down_des .des p {
        font-size: 18px;
    }

    .pro_t_cont .m_r {
        padding-left: 50px;
    }

    .p_button {
        padding-top: 50px;
    }

    .p_button a span {
        font-size: 22px;
    }

    .p_button a {
        height: 65px;
        line-height: 65px;
    }

    .p_button a.p_click span {
        background-size: 30px 30px;
        padding-left: 45px;
    }

    .p_button a.p_back span {
        background-size: 20px 20px;
        padding-left: 40px;
    }

}

@media (max-width:991px) {
    .pro_t_cont .m_l {
        display: flex;
        align-items: center;
    }

    .pro_t_cont .m_r .p_des {
        margin-top: 20px;
    }

    .pro_t_cont .m_r h3 {
        font-size: 40px;
    }

    .pro_t_cont .m_r .p_des p {
        font-size: 18px;
    }

    .d_sub {
        font-size: 32px;
    }

    .d_down_des .des p {
        font-size: 16px;
    }

    .pro_t_cont .m_r {
        padding-left: 30px;
        padding-top: 50px;
    }

    .p_button {
        padding-top: 30px;/*display:block;*/
        justify-content: space-between;
    }

    .p_button a {

        /*width:100%;*/max-width: 49%;
        margin-bottom: 10px;
        margin-right: 0 !important;
    }

    .p_button a span {
        font-size: 22px;
    }

    .d_down_table .d_table {
        margin-top: 40px;
        margin-bottom: 70px;
        padding: 30px 30px;
    }

    .d_down_table .d_table table tr td:first-child, .d_down_table .d_table table tr th {
        font-size: 18px;
        word-break: break-all;
    }

    .d_down_table .d_table table strong {
        font-weight: 500;
    }

    .d_down_table .d_table table tr td {
        font-size: 16px;
    }

}

@media (max-width:767px) {
    .prod_up_bg {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .prod_up_bg .location {
        font-size: 12px;
        background-size: 14px 15px;
        padding-left: 20px;
        background-position: left 4px;
    }

    .p_button a {
        height: 50px;
        line-height: 50px;
    }

    .p_button a span {
        font-size: 20px;
    }

    .p_button a.p_click span {
        background-size: 25px 25px;
        padding-left: 35px;
    }

    .pro_t_cont {
        display: block;
        background-size: 60%;
    }

    .pro_t_cont .m_l {
        width: 100%;
    }

    .pro_t_cont .m_r {
        width: 100%;
        padding-left: 0;
        padding-top: 30px;
    }

    .pro_t_cont .m_r h3 {
        font-size: 36px;
    }

    .pro_t_cont .m_r .p_des p {
        font-size: 16px;
        line-height: 32px;
        max-height: 96px;
    }

    .d_sub {
        font-size: 26px;
    }

    .d_down_table .d_table {
        margin-top: 30px;
        margin-bottom: 50px;
        padding: 20px 20px;
    }

    .d_down_table .d_table table tr td:nth-child(2) {
        padding-left: 10px;
    }

    .d_down_table .d_table table tr {
        display: block;
    }

    .d_down_table .d_table table tr td {
        display: block;
        width: 100%;
        color: #999;
    }

    .d_down_table .d_table table tr td:nth-child(2) {
        width: 100%;
        padding-left: 0;
        padding-top: 10px;
    }

}

/*new*/
.page_ban.new_ban .page_ban_text {
    padding-top: 90px;
}

.new_ban .local {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    margin-top: 30px;
}

.new_ban .local a {
    color: rgba(255, 255, 255, 0.5);
}

.new_ban .local a:hover {
    color: #fff;
}

.new_p_upk {
    position: relative;
    height: 518px;
    width: 100%;
    z-index: 8;
}

.new_pic_loop {
    width: 100%;
    height: 100%;
    left: 0;
    background: #00A0E9;
    top: -100px;
    position: absolute;
}

.new_pic_loop .swiper-slide {
    height: 518px;
}

.new_pic_loop .img_ {
    width: 43.5%;
    height: 100%;
    float: left;
    overflow: hidden;
}

.new_pic_loop .cont_ {
    width: 56.5%;
    height: 100%;
    float: left;
    padding: 68px 75px 30px 90px;
}

.new_pic_loop .img_ a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.new_pic_loop .img_ a img {
    position: absolute;
    top: 0;
    left: 50%;
    max-width: none;
    height: 100%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.new_pic_loop .cont_ .date {
    font-size: 16px;
    
    font-weight: 400;
    color: #FFFFFF;
    opacity: 0.5;
}

.new_pic_loop .cont_ .n_title {
    height: 64px;
    font-size: 24px;
    margin-top: 25px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 32px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.new_pic_loop .cont_ .n_title a, .new_pic_loop .cont_ .n_des a {
    color: inherit;
    line-height: inherit;
}

.new_pic_loop .cont_ .n_des {
    height: 72px;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
    margin-top: 45px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.n_button {
    position: absolute;
    width: 56.5%;
    right: 0;
    padding-left: 90px;
    bottom: 65px;
    display: flex;
    z-index: 8;
}

.n_button .button_ {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 25px;
    border: 1px solid #FFFFFF;
    background-size: 30px 30px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    outline: 0;
}

.n_button .new-button-prev {
    background-image: url(../images/n_left_w.svg);
}

.n_button .new-button-next {
    background-image: url(../images/n_right_w.svg);
}

.n_button .button_:hover {
    background-color: #ffffff;
}

.n_button .new-button-prev:hover {
    background-image: url(../images/n_left_b.svg);
}

.n_button .new-button-next:hover {
    background-image: url(../images/n_right_b.svg);
}

.new_p_list {
    margin-top: -20px;
}

.new_p_list ul li {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.new_p_list ul li:before {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background: #F3F3F3;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    z-index: -1;
}

.new_p_list a {
    width: 100%;
    display: flex;
    padding: 60px 0;
}

.new_p_list a {
    border-bottom: 1px solid #DDDDDD;
    overflow: hidden;
}

.new_p_list .img_ {
    width: 300px;
    float: left;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.new_p_list .img_ img {
    width: 100%;
}

.new_p_list .new_l_r {
    float: left;
    width: -webkit-calc(100% - 300px);
    width: -moz-calc(100% - 300px);
    width: calc(100% - 300px);
    padding-left: 58px;
    position: relative;
    padding-top: 30px;
    padding-right: 15%;
}

.new_p_list .new_l_r .date {
    font-size: 16px;
    
    font-weight: 400;
    color: #999999;
}

.new_p_list .new_l_r .n_title {
    font-size: 24px;
    color: #333333;
    line-height: 32px;
    margin-top: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.new_p_list .new_l_r .n_des {
    height: 48px;
    font-size: 16px;
    margin-top: 15px;
    color: #666666;
    line-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.new_p_list .new_l_r .jia {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;
    background: #FFFFFF;
    border-radius: 50%;
    border: 1px solid #DDDDDD;
}

.new_p_list .new_l_r .jia i {
    display: inline-block;
    width: 100%;
    height: 100%;
    background-image: url(../images/n_ico_jiag.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px 40px;
}

.new_p_list ul li:hover:before {
    opacity: 1;
    width: 100%;
}

.new_p_list ul li:hover .jia {
    background-image: url(../images/n_ico_lan.svg);
    background-size: cover;
}

.new_p_list ul li:hover .new_l_r .jia i {
    background-image: url(../images/n_ico_jiaw.svg);
}

.new_p_list a:hover .new_l_r .n_title {
    color: var(--light--blue);
}

.new_p_list a:hover {
    border-color: #F3F3F3;
}

.new_p_list a:hover .new_l_r .jia i {
    animation: spin 0.8s linear;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(180deg);
    }

}

@media (max-width:1366px) {
    .new_p_upk, .new_pic_loop .swiper-slide {
        height: 460px;
    }

    .new_pic_loop .cont_ {
        padding: 50px 50px 30px 80px;
    }

    .n_button {
        padding-left: 80px;
        bottom: 65px;
    }

}

@media (max-width:1280px) {
    .new_p_upk, .new_pic_loop .swiper-slide {
        height: 440px;
    }

    .new_pic_loop .cont_ {
        padding: 50px 50px 30px 60px;
    }

    .n_button {
        padding-left: 60px;
        bottom: 50px;
    }

    .new_p_list .new_l_r .jia {
        width: 60px;
        height: 60px;
    }

    .new_p_list .new_l_r .jia i {
        background-size: 30px 30px;
    }

}

@media (max-width:991px) {
    .new_p_upk, .new_pic_loop .swiper-slide {
        height: 380px;
    }

    .new_pic_loop {
        top: -60px;
    }

    .new_pic_loop .cont_ {
        padding: 30px 30px 30px 30px;
    }

    .n_button {
        padding-left: 30px;
        bottom: 30px;
    }

    .new_p_list .new_l_r .jia {
        width: 60px;
        height: 60px;
    }

    .new_p_list .new_l_r .jia i {
        background-size: 30px 30px;
    }

    .new_p_list .img_ {
        width: 260px;
    }

    .new_p_list .new_l_r {
        width: -webkit-calc(100% - 260px);
        width: -moz-calc(100% - 260px);
        width: calc(100% - 260px);
        padding-left: 40px;
        padding-top: 30px;
        padding-right: 15%;
    }

}

@media (max-width:767px) {
    .new_p_upk, .new_pic_loop .swiper-slide {
        height: auto;
        overflow: hidden;
    }

    .new_p_upk {
        margin-top: 50px;
    }

    .new_pic_loop {
        top: 0;
        position: relative;
    }

    .new_pic_loop .swiper-slide {
        display: block;
    }

    .new_pic_loop .img_ {
        width: 100%;
    }

    .new_pic_loop .cont_ {
        width: 100%;
        height: auto;
        padding: 20px;
        padding-bottom: 100px;
    }

    .new_pic_loop .img_ {
        height: auto;
    }

    .new_pic_loop .img_ a {
        height: auto;
    }

    .new_pic_loop .img_ a img {
        position: inherit;
        transform: inherit;
        left: inherit;
        max-width: 100%;
        height: auto;
    }

    .new_pic_loop .cont_ .n_title, .new_p_list .new_l_r .n_title {
        font-size: 20px;
    }

    .new_pic_loop .cont_ .n_title {
        margin-top: 15px;
    }

    .new_pic_loop .cont_ .n_des {
        height: 72px;
        font-size: 16px;
        line-height: 24px;
        margin-top: 30px;
    }

    .n_button {
        justify-content: flex-end;
        padding-right: 30px;
    }

    .n_button .button_ {
        width: 45px;
        height: 45px;
        margin-right: 15px;
        background-size: 20px 20px;
    }

    .n_button .button_:nth-child(2) {
        margin-right: 0;
    }

    .new_p_list {
        margin-top: 30px;
    }

}

@media (max-width:540px) {
    .new_p_list a {
        display: block;
        padding: 30px 0;
    }

    .new_p_list .img_ {
        width: 100%;
        text-align: center;
    }

    .new_p_list .new_l_r {
        width: 100%;
        padding-left: 0;
        padding-top: 30px;
        padding-right: 0;
    }

    .new_p_list .new_l_r .jia {
        display: none;
    }

}

/*new detail*/
.nd_up_k {
    position: relative;
    border-bottom: 1px solid #DDDDDD;
    padding-top: 80px;
    display: flex;
    z-index: 1;
}

.nd_up_k:before {
    content: "";
    width: 1px;
    position: absolute;
    height: 100%;
    left: 500px;
    top: 0;
    background-color: #DDDDDD;
    z-index: -1;
}

.nd_up_k .nd_up_l {
    width: 500px;
    position: relative;
    min-height: 700px;
    float: left;
}

.nd_up_k .nd_up_r {
    width: -webkit-calc(100% - 500px);
    width: -moz-calc(100% - 500px);
    width: calc(100% - 500px);
    padding-left: 90px;
    float: left;
    padding-bottom: 30px;
}

.nd_up_k .nd_up_l .nd_up_ {
    padding-bottom: 30px;
    border-bottom: 1px solid #DDDDDD;
    position: relative;
}

.nd_up_k .nd_up_l .date {
    font-size: 16px;
    
    font-weight: 400;
    color: #999999;
}

.nd_up_k .nd_up_l .nd_up_title {
    font-size: 24px;
    color: #333333;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-right: 15px;
}

.nd_up_k .nd_up_l .nd_up_l_bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.nd_up_k .nd_up_l .nd_up_page {
    width: 100%;
    padding-right: 20px;
    padding-bottom: 65px;
    border-bottom: 1px solid #DDDDDD;
}

.nd_up_page .up_ .btn_ .n {
    font-size: 16px;
    color: #999999;
    line-height: 36px;
}

.nd_up_page .up_ .btn_ .t {
    font-size: 18px;
    color: #666666;
    line-height: 26px;
}

.nd_up_page .next {
    padding-top: 25px;
    display: block;
}

.nd_up_page .up_ .prev,.prev_no,.next_no {
    color: inherit;
}

.nd_up_page .up_ .prev:hover {
    color: var(--light--blue);
}

.nd_up_back {
    padding: 65px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nd_up_back .fl a span:first-child {
    width: 70px;
    height: 70px;
    display: inline-block;
    background: #FFFFFF;
    border-radius: 50%;
    float: left;
    border: 1px solid #999999;
}

.nd_up_back .fl a span:first-child i {
    display: inline-block;
    background-size: 24px 24px;
    width: 100%;
    height: 100%;
    background-image: url(../images/n_b_ico.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.nd_up_back .fl a span:nth-child(2) {
    font-size: 24px;
    font-weight: 400;
    color: #999999;
    float: left;
    line-height: 70px;
    padding-left: 25px;
}

.nd_up_back .fl a:hover span:nth-child(2) {
    color: var(--light--blue);
}

.nd_up_back .fr {
    text-align: right;
    display: flex;
}

.nd_up_back .fr a {
    width: 40px;
    height: 40px;
    display: flex;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 50%;
    margin-right: 16px;
    align-items: center;
    justify-content: center;
}

.article_print {
    float: left;
    padding-right: 8px;
}

.article_print a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    background: #F5F5F6;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    background-image: url(../images/printer.svg);
}

.nd_up_ span.switchsize a {
    padding: 0 3px;
    margin: 0 4px;
    cursor: pointer;
}

.nd_up_ span.switchsize a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    background: #F5F5F6;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
}

.nd_up_ span.switchsize a.bigger {
    background-image: url(../images/bigger.svg);
}

.nd_up_ span.switchsize a.smaller {
    background-image: url(../images/smaller.svg);
}

.nd_up_ span.switchsize a:hover {
    text-decoration: underline;
}

.nd_up_k .nd_up_r p {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 2;
    padding-bottom: 30px;
}

.nd_up_k .nd_up_r img {
    max-width: 100% !important;
    margin: 10px 0 !important;
    height: auto !important;
}

.nd_recom {
    padding-top: 45px;
}

.nd_title {
    font-size: 32px;
    font-weight: bold;
    color: #333333;
    line-height: 54px;
}

.nd_more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 186px;
    height: 54px;
    background: #FFFFFF;
    border-radius: 50px 50px 50px 50px;
    border: 1px solid #999999;
    line-height: 54px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.nd_more span {
    display: inline-block;
    font-size: 18px;
    color: #999999;
    font-weight: 400;
    line-height: 25px;
    background-size: 20px 20px;
    background-image: url(../images/n_r_ico.svg);
    background-repeat: no-repeat;
    background-position: right;
    padding-right: 35px;
}

.nd_more::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--light--blue);
    transform-origin: center right;
    transform: scaleX(0);
    transition: transform 0.25s ease-in-out;
}

.nd_more:hover {
    border-color: var(--light--blue);
}

.nd_more:hover span {
    color: #fff;
    background-image: url(../images/n_r_icow.svg);
}

.nd_more:hover::before {
    transform-origin: center left;
    transform: scaleX(1);
}

.nd_recom .list_ ul {
    margin-left: -10px;
    margin-right: -10px;
}

.nd_recom .list_ ul li {
    width: 33.33%;
    float: left;
    padding: 10px;
}

.nd_recom .list_ {
    padding: 50px 0;
}

.nd_recom .list_ .date {
    font-size: 16px;
    
    font-weight: 400;
    color: #999999;
    padding-top: 30px;
    padding-bottom: 10px;
}

.nd_recom .list_ .nd_r_title {
    height: 54px;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 27px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.nd_recom .list_ .img_ {
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.nd_recom .list_ .img_ img {
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.nd_recom .list_ a:hover .nd_r_title {
    color: var(--light--blue);
}

.nd_recom .list_ a:hover .img_ img {
    transform: scale(1.05);
}

@media (max-width:1440px) {
}

@media (max-width:1366px) {
    .nd_up_k {
        padding-top: 60px;
    }

    .nd_up_k .nd_up_r {
        padding-left: 60px;
    }

}

@media (max-width:1280px) {
    .nd_up_k .nd_up_l {
        width: 40%;
    }

    .nd_up_k .nd_up_r {
        width: 60%;
    }

    .nd_up_k::before {
        left: 40%;
    }

    .nd_up_back .fl a span:first-child {
        width: 60px;
        height: 60px;
    }

    .nd_up_back .fl a span:first-child i {
        background-size: 20px 20px;
    }

    .nd_up_back .fl a span:nth-child(2) {
        font-size: 20px;
        line-height: 60px;
        padding-left: 15px;
    }

}

@media (max-width:991px) {
    .nd_up_back .fl a span:first-child {
        width: 50px;
        height: 50px;
    }

    .nd_up_back .fl a span:first-child i {
        background-size: 18px 18px;
    }

    .nd_up_back .fl a span:nth-child(2) {
        font-size: 18px;
        line-height: 50px;
        padding-left: 10px;
    }

    .nd_up_back .fr a {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

}

@media (max-width:767px) {
    .nd_up_k {
        display: block;
        padding-top: 30px;
    }

    .nd_up_k .nd_up_l {
        width: 100%;
        min-height: inherit;
    }

    .nd_up_k .nd_up_l .nd_up_ {
        padding-bottom: 15px;
    }

    .nd_up_k::before {
        display: none;
    }

    .nd_up_k .nd_up_r {
        width: 100%;
        padding-top: 30px;
        padding-left: 0;
        padding-bottom: 10px;
    }

    .nd_up_k .nd_up_l .nd_up_title {
        font-size: 22px;
        margin-top: 10px;
        margin-bottom: 10px;
        padding-right: 0;
    }

    .nd_up_back {
        padding: 25px 0;
    }

    .nd_title {
        font-size: 26px;
        line-height: 40px;
    }

    .nd_more {
        width: 120px;
        height: 40px;
        line-height: 40px;
    }

    .nd_more span {
        font-size: 16px;
        background-size: 16px 16px;
        padding-right: 25px;
    }

    .nd_recom .list_ ul li {
        width: 100%;
        padding: 10px;
        padding-bottom: 15px;
    }

    .nd_recom .list_ .date {
        font-size: 14px;
        line-height: 1.1;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .nd_recom .list_ .nd_r_title {
        height: auto;
        max-height: 54px;
    }

    .nd_up_page .up_ .btn_ .t {
        font-size: 16px;
    }

    .article_print {
        display: none;
    }

}

/*down*/
.down_list {
    padding-top: 65px;
}

.down_list ul {
    margin-left: -13px;
    margin-right: -13px;
}

.down_list ul li {
    width: 25%;
    float: left;
    padding: 13px;
}

.down_list .border {
    height: 200px;
    background: #F9FAFC;
    padding: 40px 35px;
    position: relative;
    z-index: 1;
}

.down_list .title_ {
    font-size: 18px;
    color: #333333;
    line-height: 26px;
    height: 78px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.down_list .bottom {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-top: 13px;
}

.down_list .bottom span {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    position: relative;
    padding-right: 10px;
    margin-right: 10px;
}

.down_list .bottom span:first-child:before {
    content: "";
    width: 1px;
    height: 14px;
    right: 0;
    top: 50%;
    margin-top: -7px;
    position: absolute;
    background-color: #999999;
}

.down_list .bottom i {
    width: 32px;
    height: 32px;
    background-image: url(../images/down_l.svg);
}

.down_list .border:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00A0E9 0%, #0153F5 100%);
    opacity: 0;
    -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;
}

.down_list .border:hover:before {
    opacity: 1;
}

.down_list .border:hover .title_ {
    color: #ffffff;
}

.down_list .border:hover .bottom span {
    color: rgba(255, 255, 255, 0.8);
}

.down_list .border:hover .bottom span:first-child:before {
    background-color: rgba(255, 255, 255, 0.8);
}

.down_list .border:hover .bottom i {
    background-image: url(../images/down_w.svg);
}

.login_mask {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 120ms 380ms ease-in-out;
    transition: all 120ms 380ms ease-in-out;
}

.view .login_mask {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: all 120ms ease-in-out;
    -moz-transition: all 120ms ease-in-out;
    -ms-transition: all 120ms ease-in-out;
    -o-transition: all 120ms ease-in-out;
    transition: all 120ms ease-in-out;
    z-index: 9;
}

.login_cont {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    max-width: 80%;
    display: none;
    max-height: 100%;
}

.login_l {
    width: 456px;
    height: 503px;
    background: linear-gradient(135deg, #00A0E9 0%, #0153F5 100%);
    border-radius: 20px 0px 0px 20px;
    max-height: 60%;
}

.login_r {
    width: 540px;
    height: 750px;
    max-height: 100%;
    background: #FFFFFF;
    border-radius: 20px;
}

.search-box {
    display: flex;
    align-items: center;
}

.login_l {
    padding: 90px 55px;
}

.login_r {
    position: relative;
    padding: 90px 85px;
}

.login_l .title_ {
    font-size: 40px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.1;
}

.login_l .login_text01 {
    font-size: 18px;
    font-weight: 400;
    padding-top: 45px;
    color: rgba(255, 255, 255, 0.5);
}

.login_l .login_tel {
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 5px;
}

.login_l .login_tel a {
    color: inherit;
}

.login_l .r_ {
    margin-top: 118px;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 50%;
}

.login_l .r_ i {
    width: 100%;
    height: 100%;
    display: inline-block;
    background-size: 22px 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/login_r.svg);
}

.login_r .closes {
    position: absolute;
    right: 30px;
    top: 30px;
}

.login_r .title_ {
    font-size: 32px;
    font-weight: bold;
    color: #333333;
    line-height: 1.1;
    text-align: center;
}

.login_r #commentForm {
    padding-top: 100px;
}

.login_r #commentForm .text-area {
    position: relative;
    margin-bottom: 35px;
}

.login_r #commentForm .n {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
}

.login_r #commentForm .text-area input {
    background: none;
    border: none;
    outline: 0;
    width: 100%;
    height: 35px;
    line-height: 31px;
    padding: 2px 0
    font-size:16px;
    color: #333;
    margin-top: 10px;
    border-bottom: 1px solid #DDDDDD;
}

.login_r #commentForm .text-area input::-webkit-input-placeholder {
    font-size: 20px;
    color: #DDDDDD;
}

.login_r #commentForm .text-area input:-ms-input-placeholder {
    font-size: 20px;
    color: #DDDDDD;
}

.login_r #commentForm .text-area input::-ms-input-placeholder {
    font-size: 20px;
    color: #DDDDDD;
}

.login_r #commentForm .text-area label {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    font-weight: 400;
    color: #999999;
    line-height: 60px;
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    transition: 0.2s ease;
}

.login_r #commentForm .text-area label.error {
    position: absolute;
    bottom: -26px !important;
    top: inherit;
    line-height: 25px;
    color: red;
    transform: none !important;
}

.login_r .mbutton {
    width: 100%;
    margin-top: 15px;
    height: 54px;
    background: #00A0E9;
    border-radius: 28px;
    border: none;
    outline: 0;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    cursor: pointer;
}

@media (max-width:1440px) {
    .login_r .closes {
        right: 25px;
        top: 25px;
    }

    .login_r {
        width: 540px;
        height: 650px;
        padding: 80px 65px;
    }

}

@media (max-width:1366px) {
    .login_l {
        width: 400px;
    }

    .login_r {
        width: 500px;
        padding: 80px 65px;
    }

}

@media (max-width:1280px) {
    .login_l {
        width: 350px;
    }

    .login_r {
        width: 400px;
        padding: 80px 65px;
    }

    .login_l .title_ {
        font-size: 36px;
    }

    .login_r .title_ {
        font-size: 30px;
    }

    .down_list ul li {
        width: 33.33%;
    }

}

@media (max-width:1440px) and (max-height:750px) {
    .login_r {
        height: 500px;
    }

    .login_l {
        height: 400px;
    }

    .login_l .r_ {
        margin-top: 50px;
    }

    .login_l {
        padding: 60px 35px;
    }

    .login_r {
        padding: 60px 45px;
    }

    .login_r #commentForm {
        padding-top: 60px;
    }

    .login_r .closes {
        right: 25px;
        top: 25px;
    }

}

@media (max-width:991px) {
    .down_list .border {
        padding: 40px 25px;
    }

}

@media (max-width:767px) {
    .down_list {
        padding-top: 40px;
    }

    .login_cont {
        max-width: 95%;
    }

    .login_l {
        display: none;
    }

    .login_r {
        padding: 50px 30px 30px 30px;
        height: auto;
    }

    .login_r .title_ {
        font-size: 26px;
    }

    .login_r .closes {
        right: 10px;
        top: 10px;
        width: 25px;
    }

    .login_r .mbutton {
        font-size: 16px;
    }

    .login_r #commentForm {
        padding-top: 40px;
    }

    .down_list ul li {
        width: 50%;
    }

}

@media (max-width:540px) {
    .down_list ul li {
        width: 100%;
    }

}

/*contact*/
.font36 {
    font-size: 36px;
}

.font24 {
    font-size: 24px;
}

.font20 {
    font-size: 20px;
}

.font16 {
    font-size: 18px;
}

.cont_bg {
    position: relative;
    overflow: hidden;
}

.cont_bg .bg_r_move {
    position: absolute;
    right: 0;
    width: 25%;
    bottom: 30%;
    z-index: -1;
}

.cont_first {
    position: relative;
    width: 100%;
    z-index: 1;
}

.cont_first  .m_container {
    display: flex;
}

.cont_first:before, .cont_first:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: calc(100% - 100px);
    z-index: -1;
}

.cont_first:before {
    width: 0;
    -webkit-transition: all 1.4s;
    -moz-transition: all 1.4s;
    -ms-transition: all 1.4s;
    -o-transition: all 1.4s;
    transition: all 1.4s;
}

.cont_first:after {
    width: 100%;
}

.cont_bg.aos-animate .cont_first:before {
    width: 100%;
}

.cont_first:before {
    background: linear-gradient(134deg, #00A0E9 0%, #0153F5 100%);
}

.cont_first:after {
    background-image: url(../images/cont_bg01.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.cont_first .c_f_l {
    width: 58%;
    float: left;
    padding-right: 50px;
    margin-bottom: 100px;
    padding-top: 20px;
}

.cont_first .c_f_l .title_ {
    color: #fff;
    line-height: 1.1;
    font-weight: bold;
}

.cont_first .c_f_l .m_name {
    font-weight: bold;
    color: #FFFFFF;
    padding-top: 25px;
    line-height: 1.1;
}

.cont_first .c_f_l .m_address {
    font-weight: 400;
    color: #FFFFFF;
    padding-top: 35px;
    line-height: 1.2;
}

.cont_first .c_f_l .c_infor {
    padding-top: 35px;
    padding-bottom: 100px;
}

.cont_first .c_f_l .c_infor ul li {
    float: left;
    width: 50%;
    padding-top: 65px;
}

.cont_first .c_f_l .c_infor span {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.cont_first .c_f_l .c_infor p {
    font-weight: 400;
    color: #FFFFFF;
}

.cont_first .c_f_l .c_infor p a {
    color: inherit;
}

.cont_bg.aos-animate .cont_first .c_f_r {
    opacity: 1;
    transform: translateY(0);
}

.cont_first .c_f_r {
    width: 42%;
    float: left;
    background: #FFFFFF;
    padding: 60px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1500);
    transform: translateY(100px);
    -webkit-transition: all 1.4s;
    -moz-transition: all 1.4s;
    -ms-transition: all 1.4s;
    -o-transition: all 1.4s;
    transition: all 1.4s;
}

.cont_first .c_f_r .m_line {
    width: 100%;
    margin: 50px 0;
    height: 1px;
}

.cont_first .c_f_r .m_name {
    font-weight: bold;
    color: #030E29;
    line-height: 1.1;
	padding-bottom: 30px;
}

.cont_first .c_f_r .m_name02 {
    font-weight: 400;
    color: #666;
    line-height: 1.5;
    padding-top: 20px;
	
}
.cont_first .c_f_r .m_name02 a {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}
.cont_first .c_f_r .m_address {
    font-weight: 400;
    color: #666F78;
    line-height: 1.4;
    font-size: 18px;
    padding-top: 25px;
}

.cont_first .c_f_r .m_phone, .cont_first .c_f_r .m_fax {
    font-weight: 400;
    color: #666;
    line-height: 30px;
    margin-top: 15px;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: 0 3px;
	font-size: 20px;
}

.cont_first .c_f_r .m_phone a {
    color: inherit;
	font-size: 20px;
}

/*.cont_first .c_f_r .m_phone {
    background-image: url(../images/cont_phone.svg);
}*/

.cont_first .c_f_r .m_fax {
    background-image: url(../images/cont_fax.svg);
}

.cont_two .c_two_title {
    width: 58%;
    max-width: 768px;
    padding-right: 30px;
    font-weight: 400;
    color: #030E29;
    line-height: 1.2;
    transform: translateY(-20px);
}

.cont_two .c_two_table {
    overflow: hidden;
    padding-top: 45px;
}

.cont_two .c_two_table table tr {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #DDDDDD;
}

.cont_two .c_two_table table tr th, .cont_two .c_two_table table tr td {
    width: 25%;
    text-align: left;
    padding-right: 20px;
}

.cont_two .c_two_table table tr th {
    padding-bottom: 20px;
    line-height: 48px;
    font-size: 16px;
    font-weight: 400;
    color: #666F78;
}

.cont_two .c_two_table table tr td {
    font-size: 24px;
    font-weight: 400;
    color: #353E46;
    line-height: 28px;
}

.cont_two .c_two_table table tbody tr {
    padding: 50px 0;
}

.contact_first {
    padding: 115px 75px;
    background: #F5F5F5;
    margin-bottom: 75px;
    margin-top: 80px;
}

.contact_left {
    width: 36.5%;
    float: left;
}

.contact_right {
    float: left;
    width: 63.5%;
    padding-left: 60px;
}

.contact_title {
    line-height: 1.1;
    font-size: 36px;
    font-weight: 400;
    color: #030E29;
}

.cont_mess .contact_left .des {
    font-size: 16px;
    padding-top: 45px;
    font-weight: 400;
    color: #666666;
    line-height: 30px;
}

.messform {
    margin-left: -34px;
    margin-right: -34px;
    overflow: hidden;
    margin-top: -10px;
}

.messform .col {
    width: 50%;
    padding: 24px 34px;
    float: left;
}

.messform .colw100 {
    width: 100%;
    padding: 24px 34px;
    float: left;
}

.messform .pt40 {
    padding-top: 40px;
    padding-bottom: 0;
}

.cont_mess .t_button {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.messform .submit {
    width: 45%;
    float: left;
    height: 50px;
    border: 1px solid var(--light--blue);
    background: var(--light--blue);
    border-radius: 25px;
    font-size: 18px;
    font-weight: 400;
    line-height: 40px;
    color: #FFFFFF;
    outline: 0;
    cursor: pointer;
}

.messform .reset {
    float: left;
    width: 45%;
    height: 50px;
    color: #333333;
    font-size: 18px;
    font-weight: 400;
    line-height: 40px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 25px;
    outline: 0;
    cursor: pointer;
}

.cont_mess .text-area label {
    position: absolute;
    bottom: -30px;
    left: 0;
    color: red;
}

.cont_mess .text-area em {
    color: #999;
    font-style: normal;
}

.messform .input-container {
    position: relative;
}

.messform .input-container input {
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    height: 42px;
    border: 0;
    color: #333;
    padding-top: 7px;
    line-height: 35px;
    font-size: 16px;
    font-weight: 400;
}

.messform .input-container textarea {
    outline: none;
    font-family: Arial-Regular, Arial;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    height: 142px;
    padding-top: 7px;
    line-height: 35px;
    border: 0;
    color: #333;
    font-size: 16px;
    font-weight: 400;
}

.messform .input-container input:focus ~ span, .messform .input-container textarea:focus ~ span {
    color: #DDDDDD;
    transform: translate(-12%, -50%) scale(0.75);
}

.messform .input-container input:focus ~ .bar:before, .messform .input-container input:focus ~ .bar:after
.messform .input-container textarea:focus ~ .bar:before, .messform .input-container textarea:focus ~ .bar:after {
    width: 50%;
}

.messform .input-container input:valid ~ span, .messform .input-container textarea:valid ~ span {
    color: #DDDDDD;
    transform: translate(-12%, -50%) scale(0.75);
}

.messform .input-container input:focus ~ span em, .messform .input-container textarea:focus ~ span em, .messform .input-container input:valid ~ span em, .messform .input-container textarea:valid ~ span em {
    color: #DDDDDD;
}

.messform .input-container span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #999;
    font-size: 18px;
    font-weight: 400;
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    transition: 0.2s ease;
}

.messform .input-container .bar {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #CCCCCC;
    width: 100%;
    height: 1px;
}

.messform .input-container .bar:before, .messform .input-container .bar:after {
    content: "";
    position: absolute;
    background: #1E746D;
    width: 0;
    height: 2px;
    transition: 0.2s ease;
}

.messform .input-container .bar:before {
    left: 50%;
}

.messform .input-container .bar:after {
    right: 50%;
}

@media (max-width:1440px) {
    .font36 {
        font-size: 34px;
    }

    .font24, .cont_two .c_two_table table tr td {
        font-size: 22px;
    }

}

@media (max-width:1366px) {
    .font36 {
        font-size: 30px;
    }

    .font24, .cont_two .c_two_table table tr td {
        font-size: 20px;
    }

    .font20 {
        font-size: 18px;
    }

    .cont_first .c_f_r .m_address {
        font-size: 16px;
    }

    .cont_first .c_f_r {
        padding: 50px 40px;
    }

    .cont_first .c_f_r .m_line {
        margin: 40px 0;
    }

    .contact_first {
        padding: 80px 40px;
    }

    @media (max-width:1280px) {
        .cont_first .c_f_r .m_address {
            padding-bottom: 5px;
        }

        .cont_first .c_f_r .m_phone, .cont_first .c_f_r .m_fax {
            line-height: 26px;
            background-size: 20px 20px;
            padding-left: 30px;
        }

    }

    @media (max-width:991px) {
        .cont_first .c_f_l {
            width: 50%;
            margin-bottom: 30px;
        }

        .cont_first .c_f_r {
            width: 50%;
        }

        .cont_first .c_f_r {
            padding: 40px 30px;
        }

        .cont_first .c_f_l .c_infor ul li {
            padding-top: 40px;
        }

        .cont_first .c_f_r .m_line {
            margin: 30px 0;
        }

        .font24, .cont_two .c_two_table table tr td {
            font-size: 18px;
        }

        .cont_two .c_two_title {
            width: 100%;
            transform: inherit;
            padding-top: 30px
        }

        .contact_left {
            width: 100%;
        }

        .contact_right {
            width: 100%;
            padding-left: 0px;
            padding-top: 30px;
        }

    }

    @media (max-width:767px) {
        .font36 {
            font-size: 26px;
        }

        .font24, .cont_two .c_two_table table tr td {
            font-size: 18px;
        }

        .font20 {
            font-size: 16px;
        }

        .cont_first:before {
            opacity: 1;
            width: 100%;
        }

        .cont_first .c_f_r {
            transform: translateY(0);
        }

        .cont_first .c_f_r .m_address {
            font-size: 16px;
        }

        .cont_first .m_container {
            display: block;
        }

        .cont_first .c_f_l {
            padding-right: 0;
        }

        .cont_first .c_f_r {
            padding: 40px 20px;
        }

        .cont_first .c_f_l, .cont_first .c_f_r {
            width: 100%;
        }

        .cont_first .c_f_l .c_infor {
            padding-top: 0px;
            padding-bottom: 30px;
        }

        .cont_first .c_f_l .c_infor ul li {
            padding-top: 30px;
            width: 100%;
        }

        .cont_two .c_two_title {
            padding-right: 0;
        }

        .contact_first {
            padding: 50px 20px;
            margin-top: 50px
        }

        .messform .col {
            width: 100%;
            padding: 24px 34px;
        }

        .cont_two .c_two_table table tr {
            display: block;
            overflow: hidden;
        }

        .cont_two .c_two_table table tr th {
            line-height: 30px;
            display: none;
        }

        .cont_two .c_two_table table tr th, .cont_two .c_two_table table tr td {
            width: 100%;
            float: left;
        }

        .cont_two .c_two_table table tbody tr {
            padding: 20px 0;
        }

        .cont_mess .contact_left .des {
            font-size: 16px;
            padding-top: 30px;
            line-height: 26px;
        }

        .messform .submit, .messform .reset {
            width: 49%;
            height: 45px;
            font-size: 16px;
            line-height: 40px;
        }

        .messform .input-container span {
            font-size: 16px;
        }

        .messform .pt40 {
            padding-top: 20px;
        }

        input {
            -webkit-appearance: none;
        }

    }

    /*sitemap*/
    .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);
    }

    .dtzuo {
        width: 25%;
        float: left;
        line-height: 41px;
        background: var(--blue);
        color: #FFF;
        font-size: 16px;
        text-align: center;
    }

    .dtzuo a {
        color: #FFF;
        font-size: 16px;
        display: block;
    }

    .sitemapz {
        overflow: hidden;
        width: 100%;
        margin: 0 auto;
        margin-bottom: 30px;
        margin-top: 20px;
    }

    .sitemapy {
        width: 300px;
        float: left;
        background: var(--blue);
        border: 1px solid var(--blue);
        text-align: center;
    }

    .sitemapy h3 {
        color: #fff;
        font-size: 20px;
        margin: 0;
    }

    .sitemapy h3 a {
        color: #fff;
        font-size: inherit;
        display: block;
        line-height: 45px;
    }

    @media (max-width:767px) {
        .sitemapz {
            margin-top: 0;
        }

        .sitemapy h3 a {
            font-size: 18px;
        }

        .dtzuo {
            width: 100%;
        }

        .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;
        }

    }

    @media print {
        body {
            -webkit-print-color-adjust: exact;
            text-decoration: none;
        }

        a {
            text-decoration: none;
        }

        a:link {
            text-decoration: none !important;
        }

        .header {
            position: relative;
        }

        .height {
            height: 0;
        }

    }