

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Thin-10.otf');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraLight-5.otf');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light-6.otf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium-7.otf');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'beba';
    src: url('../fonts/BebasNeue-1.otf');
    font-weight: 600;
    font-style: normal;
}


/* 动画效果 */
.wgt-fade-animate {
    -webkit-transform: scale(0.6) translateY(50px);
    -moz-transform: scale(0.6) translateY(50px);
    -ms-transform: scale(0.6) translateY(50px);
    transform: scale(0.6) translateY(50px);
    opacity: 0;
}

.appear {
    -wewgtit-animation: opacity_show 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    -moz-animation: opacity_show 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    -webkit-animation: opacity_show 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    animation: opacity_show 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    opacity: 1 !important;
}

@-webkit-keyframes opacity_show {
    0% {
        -webkit-transform: scale(0.6) translateY(50px);
        -moz-transform: scale(0.6) translateY(50px);
        -ms-transform: scale(0.6) translateY(50px);
        transform: scale(0.6) translateY(50px);
        opacity: .1;
    }

    100% {
        -webkit-transform: scale(1) translateY(0);
        -moz-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@-moz-keyframes opacity_show {
    0% {
        -moz-transform: scale(0.6) translateY(50px);
        transform: scale(0.6) translateY(50px);
        opacity: .1;
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
        -moz-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes opacity_show {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: .1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes opacity_show {
    0% {
        -webkit-transform: scale(0.6);
        -moz-transform: scale(0.6);
        transform: scale(0.6);
        -webkit-transform: translateY(50px);
        -moz-transform: translateY(50px);
        transform: translateY(50px);
        opacity: .1;
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}


*,
body,
html {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

ul,
ol,
dl,
li {
    list-style: none;
}

img {
    vertical-align: middle;
    border: 0;
}

a {
    color: #333333;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}


.fl {
    float: left;
}

.fr {
    float: right;
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: "";
    line-height: 0px;
}

.clearfix:after {
    clear: both;
}


/* inner */
.inner {
    width: 90%;
    margin: 0 auto;
}

/* 标题  */
.iboxT .en {
    font-size: 82px;
    line-height: 1;
    color: #f18923;
    font-weight: 100;
    text-transform: uppercase;
    font-weight: normal;
    font-weight: 100;
}

.iboxT .zh {
    font-size: 35px;
    line-height: 1.5;
    color: #f18923;
    font-weight: normal;
}

.iboxT.center {
    text-align: center;
}

.iboxT.white .en,
.iboxT.white .zh {
    color: #fff
}

/* 内页banner */
.tqInner {
    z-index: 3;
    position: relative;
    width: 100%;
    height: 100vh;
}

.tqInner .iboxT .en {
    font-weight: 100;
    letter-spacing: 1px;
    font-size: 128px;
}

.tqInner .iboxT .zh {
    font-size: 48px;
    letter-spacing: 0.5px;
}

.tqInner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1e5c8f;
    opacity: 0.38;
}

.tqInner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tqInner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.tqInner .iboxT {
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}

/* 内页二级栏目 */
.tqSlide {
    position: absolute;
    bottom: 0;
    left: 60px;
    width: calc(100% - 120px);
    overflow: hidden;
    background: rgba(143, 204, 227, 0.82);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 21;
}

.tqSlide ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tqSlide li {
    z-index: 3;
    text-align: center;
    height: 89px;
    line-height: 89px;
    border-right: 1px solid rgba(255, 255, 255, 0.21);
    position: relative;
    flex-grow: 1;
}

.tqSlide li::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: all 0.48s;
    background: #8FCCE3;
}

.tqSlide li a {
    display: block;
    color: #ffffff;
}

.tqSlide li.on::before {
    height: 100%;
    background: #81c2da;
}

.tqSlide li:hover::before {
    height: 100%;
}

/* 页码 */
.page {
    margin: 3% 0;
}

.page_box {
    width: 100%;
    max-width: 75em;
    padding-left: 16px;
    padding-right: 16px;
    margin: auto;
    position: relative;
    text-align: center;
}

.page_box a,
.page_box span {
    padding: 7px 12px;
    margin: 0 2px;
    border-radius: 5px;
    color: #636973;
    font-size: 16px;
    display: inline-block;
}

.page_item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

.page_link {

    text-decoration: none;
    border: 1px solid #8FCCE3;
}

.page_link.active {
    color: #fff;
    background: #8FCCE3;

}

.page_link:hover {
    border: 1px solid #8FCCE3;
}

/*====================================
    header
=========================================================================*/
.tqHead {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 60px 0;
    z-index: 999;
    box-sizing: border-box;
    transition: all 1s;
    background: rgba(0, 0, 0, .3);
}

.tqHead>div>div {
    vertical-align: middle;
    padding-bottom: 10px;
}

.tqHead>div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.tqHead_l>div {
    vertical-align: top;
}

.tqHead_logo {
    display: inline-block;
    height: 80px;
    position: relative;
    top: -5px;
}

.tqHead_logo a {
    display: block;
    height: 100%;
}

.tqHead_logo img {
    height: 100%;
    display: block;
}

.tqHead_logo .tqHead_logo_img2 {
    display: none;
}

.tqHead_lange {
    display: inline-block;
    margin-left: 86px;
}

.tqHead_lange a.active {
    opacity: 1;
}

.tqHead_lange a.active::after {
    opacity: 1;
}

.tqHead_lange a {
    position: relative;
    opacity: 0.5;
    color: #fff;
    font-size: 16px;
    line-height: 60px;
    text-transform: uppercase;
    margin: 0 10px;
    display: inline-block;
}

.tqHead_lange a::after {
    opacity: 0;
    content: "";
    position: absolute;
    bottom: -16px;
    left: 0;
    height: 2px;
    width: 100%;
    background: #fff;
}

.tqHead_nav ul {
    display: inline-block;
}

.tqHead_nav li {
    display: inline-block;
    padding-left: 50px;
    transition: all 0.3s ease 0s;
    position: relative;
}

.tqHead_nav li a {
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #fff;
    display: inline-block;
    transition: all 0.3s ease 0s;
    line-height: 40px;
}

.tqHead_nav .line {
    vertical-align: middle;
    display: inline-block;
    width: 1px;
    height: 11px;
    background-color: #ccc;
    margin-left: 42px;
}

.head_link {
    position: relative;
    vertical-align: middle;
    display: inline-block;
    margin-left: 20px;
    font-weight: 500;
    font-size: 13px;
}

.head_link a>img {
    width: 17px;
    vertical-align: middle;
    margin-left: 24px;
    margin-top: -1px;
}

.head_link .head_link_ico2 {
    display: none;
}

.head_link div {
    position: absolute;
    top: 34px;
    right: 0;
    width: 108px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.48s;
}

.head_link div img {
    width: 100%;
}

@media(min-width:1025px) {
    .head_link a:hover div {
        opacity: 1;
        visibility: initial;
    }
}


.tqHead.on {
    background: #fff;
}

.tqHead.on .tqHead_lange a {
    color: #333
}

.tqHead.on .tqHead_nav li a {
    color: #333;
}

.tqHead.on .tqHead_lange a::after {
    background: #8FCCE3;
}

.tqHead.on .head_link .head_link_ico1 {
    display: none;
}

.tqHead.on .head_link .head_link_ico2 {
    display: inline-block;
}

.tqHead.on .tqHead_logo .tqHead_logo_img1 {
    display: none;
}

.tqHead.on .tqHead_logo .tqHead_logo_img2 {
    display: block;
}

.tqHead.active-1 {
    top: -100%;
}

.tqHead.active {
    top: 0;
}

/* headMenu */

.headMenu {
    display: none;
    cursor: pointer;
    margin-left: 18px;
    vertical-align: middle;
}

.headMenu.show {
    display: block;
}

.headMenu span {
    display: block;
    width: 28px;
    height: 1px;
    background: #000;
    margin-top: 6px;
    border-radius: 6px;
    transition: all 0.48s;
}

.headMenu span:first-of-type {
    margin-top: 0;
}

.headMenu.on span {
    background: #000;
}

.headMenu.on .headMenu_span1 {
    transform: rotate(45deg) translate(3px, 5px);
}

.headMenu.on .headMenu_span2 {
    opacity: 0;
}

.headMenu.on .headMenu_span3 {
    transform: rotate(-45deg) translate(5px, -7px);
}


/*  */

.headBox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 899;
    background: #fff;
    padding: 68px 0 0;
    overflow: hidden;
}

.headBox_div {
    height: 100%;
    background: #f6f5f3;
    overflow: auto;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.haedTwo_div {
    display: none;
    background: #f8f8f8;
}

.haedTwo_div ul {
    position: relative;
    padding: 12px;
}

.haedTwo_div a {
    opacity: 0.8;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.headBox_ul {
    position: relative;
    background: #fff;
    padding: 20px 20PX 0;
}

.headBox_ul::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20px;
    width: calc(100% - 40px);
}

.headBox li {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;

}

.headBox li.none svg {
    display: none;
}

.headBox.open {
    left: 0;
}



.headBox ul a {
    color: #787878;
    display: block;
    line-height: 2;
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid #eae8e4;
}

.headBox .headBox_ul>li>a {
    padding: 18px 0;
}

.headBox ul li:last-child a {
    border-bottom: 0;
}

.headBox ul a img {
    display: none;
    width: 15px;
    margin-right: 8px;
    vertical-align: text-bottom;
}

.headBox .headBox_other a {
    padding: 8px 0;
    font-size: 20px
}

.headBox ul a svg {
    width: 12px;
    height: 12px;
    float: right;
    margin-top: 14px;
    margin-right: 6px;
    transition: all 0.48s;
}

.headBox_ul li.click>a svg {
    transform: rotate(90deg);
    margin-top: 8px;

}

.headBox ul a path {
    fill: #666;
}

/*====================================
    footer
=========================================================================*/
.footer {
    background: #fff;
    padding: 60px 0;
    box-sizing: border-box;
}

.footer.bg {
    background: #f7f7f7;
}

.footer * {
    box-sizing: border-box;
}

.flex-table {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: space-between;
    -webkit-box-align: stretch;
    align-items: stretch;
    flex-wrap: wrap;
}

.nav-main {
    max-width: 1800px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
    box-sizing: border-box;
}

.sear-tit .right {
    padding-left: 65px;
    position: relative;
    font-size: 15px;
    color: #999999;
    line-height: 1.2;
    box-sizing: border-box;
}

.sear-tit .right .tit {
    font-weight: bold;
    font-size: 30px;
    font-family: "beba";
    color: #333333;
    margin-bottom: 10px;
}

.sear-tit .right span {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: url(../picture/m18.png) no-repeat center;
    background-size: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
}

.footer-top {
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
}

.footer-top p {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-top p span {
    display: block;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 1.5;
}

.footer-newsletter {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-newsletter input {
    width: 400px;
    height: 65px;
    padding: 10px 25px;
    font-size: 16px;
    letter-spacing: 1px;
    background: none;
    border: none;
}

.footer-newsletter button {
    border: none;
    width: 125px;
    height: 65px;
    margin-left: -4px;
    background: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.footer-newsletter button:hover {
    opacity: 0.7;
}

.footer-bottom {
    margin: 45px 0 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
}

.footer-nav {
    width: 70%;
}



.footer-nav li h3,
.footer-follow h3 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 22px;
}

.footer-nav li a {
    color: #666;
    display: block;
    margin: 13px 0;
}

.footer-nav li a:hover {
    color: #6fb62c;
}

.footer-follow {
    width: 30%;
}

.footer-follow>img {
    width: 158px;
    margin-bottom: 40px;
}

.footer-ewm {
    display: inline-block;
    margin-left: 65px;
    width: 128px;
    height: 128px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 5px;
    margin-top: 24px;
}

.footer-ewm img {
    width: 100%;
}

.footer-copy {
    color: #666;
    text-align: center;
}

.footer-copy a {
    display: block;
    margin-top: 10px;
    color: #666;
}

/*====================================
    index
=========================================================================*/
/*  */
.indPro {
    background: #fff;
    padding: 108px 10% 89px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}


.wel-search .search-bottom .searbox .left {
    font-size: 0;
    color: #999999;
    padding-top: 0.625rem;
}

.wel-search .search-bottom .searbox .left .li {
    display: inline-block;
    color: #999999;
    font-size: 16px;
}

.wel-search .search-bottom .searbox .left .li:nth-child(n+2) {
    margin-left: 1.5rem;
}

.wel-search .search-bottom .searbox .left a {
    transition: .5s ease-in-out;
}

.wel-search .search-bottom .searbox .left a:hover {
    color: #aacd06;
    transition: .5s ease-in-out;
}

.wel-search .search-bottom .searbox .left div.li {
    color: #333333;
}

.wel-search .search-bottom .searbox .right {
    padding-left: 65px;
    position: relative;
    font-size: 15px;
    color: #999999;
    line-height: 1.2;
}

.wel-search .search-bottom .searbox .right .tit {
    font-weight: bold;
    font-size: .75rem;
    font-family: "beba";
    color: #333333;
    margin-bottom: 10px;
}

.wel-search .search-bottom .searbox .right span {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: url(../picture/m18.png) no-repeat center;
    background-size: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
}

.wel-search .search-bottom .sear-tit {
    margin-bottom: 1rem;
}

.wel-search .search-bottom .sear-search .inputbox {
    border: 1px solid #e8e8e8;
    border-right: none;
    width: 408px;
    position: relative;
    box-sizing: border-box;
}

.wel-search .search-bottom .sear-search .inputbox input[type=text] {
    width: 100%;
    padding-left: 18px;
    padding-right: 48px;
    box-sizing: border-box;
}

.wel-search .search-bottom .sear-search .inputbox input[type=submit] {
    width: 20px;
    height: 20px;
    position: absolute;
    padding: 0;
    right: 30px;
    top: 0;
    box-sizing: border-box;
    bottom: 0;
    margin: auto;
    text-indent: -999px;
    overflow: hidden;
    color: #999999;
    background: url(../picture/ser.png) no-repeat center;
    background-size: 100%;
}

.wel-search .search-bottom .sear-search .button {
    width: 180px;
}

.wel-search .search-bottom .sear-search .button input {
    width: 100%;
    background: #aacd06;
    font-size: 14px;
    color: #ffffff;
    height: 62px;
}

.wel-search .search-bottom .sear-search input {
    border: none;
    outline: none;
    background: none;
    height: 60px;
}


.wel-tit {
    color: #f1f1f1;
    line-height: 1;
}

.wel-tit .en {
    font-size: 2rem;
}

.wel-tit .cn {
    font-size: 0.65rem;
    margin-top: .75rem;
    box-sizing: border-box;
}

.wel-tit.active {
    color: #333333;
}

.wel-products {
    position: relative;
    box-sizing: border-box;
}

.wel-products .swiper-slide {
    opacity: 0 !important
}

.wel-products .swiper-slide.swiper-slide-active {
    opacity: 1 !important
}

.wel-products .swiper-slide.swiper-slide-active {
    opacity: 1 !important
}

.wel-products .wel-tit {
    padding: 0 2.5rem;
    top: 2.375rem;
    position: absolute;
    z-index: 3;
    box-sizing: border-box;
}

.wel-products .products-more {
    position: absolute;
    right: 2.5rem;
    top: 2.5rem;
    z-index: 3;
}

.wel-products .items-left,
.wel-products .items-right {
    height: 800px;
    width: 50%;
    padding: 100px;
    padding-top: 140;
    box-sizing: border-box;
}

.wel-products .items-left {
    padding-right: 130px;
    padding-left: 10%;
}

.items-left_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #1e5c8f;
    opacity: 0.38;
}

.wel-products .items-right {
    padding-left: 130px;
    padding-right: 10%;
    text-align: center;
}

.wel-products .items-right .bbox {
    display: inline-block;
    text-align: left;
}

.wel-products .images {
    position: absolute;
    left: 0;
    right: 0;
    width: 400px;
    height: 400px;
    top: 300px;
    z-index: 99;
    margin: auto;
}

.wel-products .images_sm {
    width: 320px;
    top: 220px;
}

.wel-products .images img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wel-products .swiper-button-prev,
.wel-products .swiper-button-next {
    cursor: pointer;
    width: 33px;
    height: 33px;
    top: 84px;
    transition: .5s ease-in-out;
    opacity: 1 !important;
    z-index: 21;
}

.wel-products .swiper-button-prev:hover,
.wel-products .swiper-button-next:hover {
    transition: .5s ease-in-out;
}

.wel-products .swiper-button-prev {
    left: 37px;
    background: url(../picture/j0.png) no-repeat center;
    background-size: 20px 20px;
}

.wel-products .swiper-button-prev:hover {
    background: url(../picture/j3.png) no-repeat center;
    background-size: 33px 33px;
}

.wel-products .swiper-button-next {
    right: 37px;
    background: url(../picture/j1.png) no-repeat center;
    background-size: 20px 20px;
}

.wel-products .swiper-button-next:hover {
    background: url(../picture/j2.png) no-repeat center;
    background-size: 33px 33px;
}

.wel-products .buttons {
    width: 365px;
    height: 125px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: url(../picture/m21.png) no-repeat center;
    background-size: 100%;
    z-index: 21;
}

.wel-products .buttons .but-img {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    background: #ffffff;
    border-radius: 50%;
}

.wel-products .buttons .but-img .i {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    z-index: 3;
    opacity: 0;
}

.wel-products .buttons .but-img .i:after,
.wel-products .buttons .but-img .i:before {
    content: "";
    height: 0;
    width: 100%;
    background: url(../picture/m22.png) no-repeat left top;
    background-size: 100%;
    transition: 3s ease-in-out;
    position: absolute;
    opacity: 0;
}

.wel-products .buttons .but-img .i:after {
    left: 0;
    top: 0;
}

.wel-products .buttons .but-img .i:before {
    transform: rotate(180deg);
    right: 0;
    bottom: 0;
}

.wel-products .buttons .but-img .i.active {
    opacity: 1;
}

.wel-products .buttons .but-img .i.active:after,
.wel-products .buttons .but-img .i.active:before {
    height: 100%;
    transition: 3s ease-in-out;
    opacity: 1;
}

.wel-products .buttons .but-img .i.active:before {
    transition-delay: 1.45s;
}


.wel-products .items-right {
    line-height: 1.2;
    color: #333333;
}

.wel-products .items-right .bbox div {
    transform: translateX(30%);
    opacity: 0;
}

.wel-products .swiper-slide-active .items-right .bbox div:nth-of-type(1) {
    transition-delay: .1s;
}

.wel-products .swiper-slide-active .items-right .bbox div:nth-of-type(2) {
    transition-delay: .1s;
}

.wel-products .swiper-slide-active .items-right .bbox div:nth-of-type(3) {
    transition-delay: .3s;
}

.wel-products .swiper-slide-active .items-right .bbox div:nth-of-type(4) {
    transition-delay: .3s;
}

.wel-products .swiper-slide-active .items-right .bbox div:nth-of-type(5) {
    transition-delay: .5s;
}

.wel-products .swiper-slide-active .items-right .bbox div:nth-of-type(6) {
    transition-delay: .5s;
}

.wel-products .swiper-slide-active .items-right .bbox div:nth-of-type(7) {
    transition-delay: .7s;
}

.wel-products .swiper-slide-active .items-right .bbox div:nth-of-type(8) {
    transition-delay: .7s;
}

.wel-products .swiper-slide-active .items-right .bbox div:nth-of-type(9) {
    transition-delay: .9s;
}

.wel-products .swiper-slide-active .items-right .bbox div:nth-of-type(10) {
    transition-delay: .9s;
}

.wel-products .swiper-slide-active .items-right .bbox div {
    transition: 1s ease-in-out;
    transform: translateX(0);
    opacity: 1;
}

.wel-products .items-right .t0 {
    font-size: 17px;
}

.wel-products .items-right .t1 {
    font-size: 60px;
    font-weight: bold;
    margin-top: 15px;
}

.wel-products .items-right .t4,
.wel-products .items-right .t2 {
    font-size: 60px;
    font-family: "beba";
}

.wel-products .items-right .t2 span {
    display: inline-block;
    vertical-align: bottom;
    min-width: 94px;
    letter-spacing: -1px;
    font-family: "beba";
}


.wel-products .items-right .t2 sub {
    display: inline-block;
    vertical-align: bottom;
    font-size: 47%;
    padding-left: 10px;
    padding-bottom: 10px;
}

.wel-products .items-right .t2 {
    margin-top: 50px;
}

.wel-products .items-right .t3 {
    font-size: 16px;
    margin-top: 15px;
}

.wel-products .items-left {
    font-size: 15px;
    color: #ffffff;
}

.wel-products .items-left .txt {
    line-height: 30px;
}

.wel-products .items-left .tit-top,
.wel-products .items-left .tit-center,
.wel-products .items-left .tit-right {
    width: 455px;
    position: relative;
}

.wel-products .items-left .tit-top {
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.wel-products .items-left .tit-top .tit {
    font-size: 48px;
    line-height: 1.2;
}

.wel-products .items-left .tit-top .txt {
    font-size: 45px;
    line-height: 1.2;
    margin-top: 15px;
}

.wel-products .items-left .tit-bot {
    margin-top: 115px;
    position: relative;
}

.wel-products .items-left .tit-center {
    padding-top: 45px;
}

.wel-products .items-left .tit-center .tit {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 12px;
}

.wel-more {
    display: block;
    font-size: 16px;
    color: #999999;
    height: 60px;
    line-height: 60px;
    width: 230px;
    border-top: 1px solid #999999;
    border-bottom: 1px solid #999999;
    padding-left: 10px;
    padding-right: 60px;
    box-sizing: border-box;
    transition: .5s ease-in-out;
    position: relative;
}

.wel-products .products-more {
    position: absolute;
    right: 2.5rem;
    top: 2.5rem;
    z-index: 3;
}

.wel-more:after,
.wel-more:before {
    position: absolute;
    content: "";
    transition: .5s ease-in-out;
}

.wel-more:before {
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background: #999999;
    transform: scale3d(0, 1, 1);
}

.wel-more:after {
    right: 10px;
    top: 0;
    bottom: 0;
    width: 50px;
    height: 15px;
    background: url(../picture/m4.png) no-repeat center;
    background-size: 100%;
    margin: auto;
}

.wel-more span {
    position: relative;
    z-index: 3;
    text-transform: capitalize;
}

.wel-more.active {
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
}

.wel-more.active.hover,
.wel-more.active:hover {
    border-top: 1px solid #aacd06;
    border-bottom: 1px solid #aacd06;
}

.wel-more.hover,
.wel-more:hover {
    transition: .5s ease-in-out;
    color: #fff;
}

.wel-more.hover span,
.wel-more:hover span {
    color: #fff;
}

.wel-more.hover:before,
.wel-more:hover:before {
    width: 100%;
    transition: .5s ease-in-out;
    transform: scale3d(1, 1, 1);
    background: #aacd06;
}

.wel-more.hover:after,
.wel-more:hover:after {
    background: url(../picture/m5.png) no-repeat center;
    background-size: 100%;
}

.wel-more.active:before {
    background: #aacd06;
}

.wel-more.sm {
    margin: 0 auto;
    width: 168px;
    height: 45px;
    line-height: 45px;
    font-size: 13px;
    padding-left: 0;
    padding-right: 40px;
}

.wel-more.sm:after {
    right: 8px;
    top: 3px;
    width: 31px;
    height: 10px;
}

/* 5 */
.indNew {
    padding: 108px 0;

    position: relative;
    z-index: 2;
    background-color: #fff;
}

.indNew .wel-more {
    margin: 58px auto 0;
}

.indNew_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;

    background-image: url(../images/p1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.indNew .inner {
    width: 80%;
    margin: 0 auto;
}

.indNew .iboxT {
    margin-bottom: 58px;
}

.indNew_box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.indNew_a {
    width: 30%;
}

.indNew_img {
    overflow: hidden;
}

.indNew_img img {
    width: 100%;
    height: 289px;
    object-fit: cover;
    display: block;
    transition: all 0.48s;
}

.indNew_a:hover .indNew_img img {
    transform: scale(1.1);
}

.indNew_txt {
    position: relative;
    padding: 28px;
    color: #333;
}

.indNew_txt span {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1.5px;
}

.indNew_txt p {
    font-size: 18px;
    line-height: 1.5;
}

/*====================================
    about
=========================================================================*/
/* 1 */
.about .iboxT .en {
    font-size: 50px;
}

.abAbout {
    position: relative;
    padding: 108px 10%;
    background: #ffffff;
}

.abAbout_txt {
    width: 60%;
}

.abAbout_p {
    margin-top: 28px;
    overflow: auto;
    /*height: 208px;*/
    padding-right: 24px;
}

.abAbout_p::-webkit-scrollbar {
    width: 3px;
}

.abAbout_p::-webkit-scrollbar-track {
    background: rgba(143, 204, 227, 0.6);
}

.abAbout_p::-webkit-scrollbar-thumb {
    background: #8FCCE3;
}

.abAbout_p p {
    color: #333;
    font-size: 15px;
    letter-spacing: 0.5px;
    margin-top: 14px;
    line-height: 2;
}

.abAbout_txt .num-top {
    padding: 48px 0 0;
    border-top: 1px solid #e0e0e0;
    margin-top: 38px;
}

.abAbout_txt .num-top li {
    color: #333333;
    text-align: left;
}

.abAbout_txt .num-top li p {
    color: #333333;

    display: inline-block;
}

.abAbout_txt .num-top .cn-tt {
    display: block;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.abAbout_txt .num-top .cn-tt span {
    display: none;
}

.abAbout_txt .num-top li img {
    display: block;
    width: 32px;
}

.abAbout_img {
    width: 30%;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.abAbout_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 2 */
.abCul {
    position: relative;
    width: 100%;
    height: 62vh;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    padding: 0 10%;
    text-align: center;
    display: flex;
    align-items: center;
}

.abCul>div {
    width: 100%;
    text-align: center;
}

.abCul img {
    width: 48px;
    margin: 0 auto;
}

.abCul_ico {
    display: inline-block;
    position: relative;
    margin-bottom: 42px;
}

.abCul_ico_shui {
    position: absolute;
    top: 0;
    left: 0;
    animation: shuiHandler 1s infinite forwards alternate;
}

@keyframes shuiHandler {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(68deg);
    }
}

.abCul_txt {
    color: #ffffff;
    font-size: 46px;
    font-weight: 100;
    line-height: 1.4;
    letter-spacing: 2px;
}

/* 3 */
.abDeve {
    position: relative;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center 68%;
    background-size: cover;
    padding-top: 108px;
    padding: 108px 10% 208px;
}

.abDeve_box {
    position: relative;
}

.abDeve_line {
    position: absolute;
    z-index: 3;
    left: 0;
    top: 124px;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #eee;
}

.deveItem {
    position: relative;
    text-align: center;
    z-index: 10;
    margin: 0 14px;
}

.deveTime {
    font-size: 40px;
    font-weight: bold;
    height: 96px;
    padding-top: 30px;
    line-height: 66px;
    transition-duration: .3s;
}

.deveDian {
    position: relative;
    display: block;
    width: 14px;
    height: 40px;
    margin: -5px auto;
}

.deveDian::before,
.deveDian::after {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
}

.deveDian::before {

    left: 50%;
    top: 0;
    width: 10px;
    height: 10px;
    border: 2px solid #98b91a;
    background: #fff;
    border-radius: 50%;
    margin-left: -5px;
    transition-duration: .3s;
}

.deveDian::after {
    left: 50%;
    bottom: 0;
    width: 1px;
    height: 20px;
    background: #eee;
}

.deveTime span {
    display: block;
    font-size: 20px;
    line-height: 1;
}

.deveTxt {
    padding: 18px 20px;
}

.deveTxt p {
    font-size: 14px;
    line-height: 26px;
    color: #888;
    transition-duration: .3s;
    min-height: 48px;
}

@media(min-width:1025px) {
    .deveItem:hover {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .deveItem:hover .deveTime {
        padding-top: 15px;
    }

    .deveItem:hover .deveDian::before {
        background: #fff;
        border-color: #98b91a;
    }
}


.deveDemo {
    padding: 0 48px;
    z-index: 11;
}

.deveDemo .slick-arrow {

    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    margin-top: -60px;
    display: block;
    background-color: #fff;
    box-shadow: 0px 0px 18px 2px rgba(154, 154, 154, 0.25);
    cursor: pointer;
}

.deveDemo .slick-arrow i {

    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    margin: 0px auto;
    display: block;
    transition: 300ms;
    -webkit-transition: 300ms;
}

.deveDemo .slick-prev {
    left: 0;
}

.deveDemo .slick-next {
    right: 0;
}

.deveDemo .slick-prev i {
    background-image: url(../images/btn_3.png);
}

.deveDemo .slick-next i {
    background-image: url(../images/btn_4.png);
}

.deveDemo .slick-arrow:hover {
    background-color: #98b91a;
}

.deveDemo .slick-prev:hover i {
    background-image: url(../images/btn_3a.png);
}

.deveDemo .slick-next:hover i {
    background-image: url(../images/btn_4a.png);
}

.deveDemo.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.deveDemo .slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 28px 0 68px;
}

.deveDemo .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
}

.deveDemo .slick-prev,
.deveDemo .slick-next {
    position: absolute;
    z-index: 99;
    cursor: pointer;
}

.deveDemo .slick-dots {
    position: relative;
    text-align: center;
    margin-top: 20px;
}

.deveDemo .slick-dots li {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    background: #eeeeee;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.deveDemo .slick-dots li.slick-active {
    background: #e60012;
}

/* 4 */
.abHor {
    padding: 108px 10%;
}

.abHor_txt {
    position: absolute;
    top: 50%;
    width: 42%;
    transform: translateY(-50%);
    font-size: 24px;
    line-height: 48px;
    color: #444;
    text-align: left;
}

.abHor_txt strong {
    color: #98b91a;
    font-weight: 500;
}

.abHor_txt b {
    color: #98b91a;
    font-size: 36px;
    margin-right: 3px;
}

.abHor_img {
    text-align: center;
    width: 50%;
    display: inline-block;
}

.abHor_img img {
    max-width: 100%;
}

.horDemo {
    margin-top: 58px;
}

.abHor_item {
    outline: none;
    margin: 0 20px;
    transition: all 0.48s;

}

.abHor_item p {
    opacity: 0;
    text-align: center;
    color: #666;
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.4;
    padding: 0 24px;
}

.abHor_item.slick-current p {
    opacity: 1;
}

.abHor_item.slick-current {
    transform: scale(1.2);
}

.abHor_item img {
    width: 100%;
    border: 1px solid #eee;
}

.horDemo .slick-arrow {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    display: block;
    background-color: #fff;
    box-shadow: 0px 0px 18px 2px rgba(154, 154, 154, 0.25);
    cursor: pointer;
}

.horDemo .slick-arrow i {
    background: url(../images/btn_3.png) no-repeat scroll center center;
    width: 100%;
    height: 100%;
    margin: 0px auto;
    display: block;
}

.horDemo .slick-prev {
    left: -10px;
}

.horDemo .slick-next {
    right: -10px;
}

.horDemo .slick-prev i {
    background-image: url(../images/btn_3.png);
}

.horDemo .slick-next i {
    background-image: url(../images/btn_4.png);
}

.horDemo .slick-arrow:hover {
    background: #98b91a;
}

.horDemo .slick-prev:hover i {
    background-image: url(../images/btn_3a.png);
}

.horDemo .slick-next:hover i {
    background-image: url(../images/btn_4a.png);
}

.horDemo.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.horDemo .slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
    padding-top: 42px !important;
    padding-bottom: 42px !important;
}

.horDemo .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
}

.horDemo .slick-prev,
.horDemo .slick-next {
    position: absolute;
    z-index: 99;
    cursor: pointer;
}

.horDemo .slick-dots {
    position: relative;
    text-align: center;
    margin-top: 20px;
}

.horDemo .slick-dots li {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    background: #eeeeee;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.horDemo .slick-dots li.slick-active {
    background: #e60012;
}


/* 5 */
.abZz {
    position: relative;
    padding-top: 68px;
    background: #fff;
}

.abZz_box {
    padding: 58px 0;
    background-color: #fff;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 42px;
}

.abZz_img {
    width: 90%;
    max-width: 1024px;
    margin: 0 auto;
}

.abZz img {
    width: 100%;
}

/*====================================
    product
=========================================================================*/
.product {
    overflow: hidden;
    height: 100vh;
}

.proUl a:link,
.proUl a:visited {
    color: #fff;
}

.proUl a:active,
.proUl a:hover {
    color: #fff;
}

.proUl li {
    width: 33.33%;
    float: left;
    overflow: hidden;
    position: relative;
    transition: width 455ms;
}

.proUl li::before {
    content: "";
    content: none\0;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0.05;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: skew(-24deg) scaleY(1) translate(0, 0);
    -ms-transform: skew(-24deg) scaleY(1) translate(0, 0);
    transform: skew(-24deg) scaleY(1) translate(0, 0);
    -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.proUl li:hover::before {
    -webkit-transform: skew(-30deg) scale(3) translate(0, 0);
    -ms-transform: skew(-30deg) scale(3) translate(0, 0);
    transform: skew(-30deg) scale(3) translate(0, 0);
    opacity: 0.1;
}

.proUl li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #8FCCE3;
    opacity: 0.38;
    z-index: 1;
    background: #1e5c8f;
    opacity: 0.28;
}

.proUl li figure {
    display: block;
    overflow: hidden;
    position: relative;
    text-align: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.proUl li figure img {
    display: none;
    height: 790px;
}

.proUl li .black-40 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.proTxt {
    width: 358px;
    padding: 20px;
    height: 378px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -176px 0px 0px -179px;
    text-align: center;
    z-index: 21;
}

.proTxt:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    transform-origin: left bottom;
    -webkit-transform-origin: left bottom;
    -webkit-transition: -webkit-transform .52s cubic-bezier(.4, 0, .2, 1);
    transition: -webkit-transform .52s cubic-bezier(.4, 0, .2, 1);
    transition: transform .52s cubic-bezier(.4, 0, .2, 1);
    transition: transform .52s cubic-bezier(.4, 0, .2, 1), -webkit-transform .52s cubic-bezier(.4, 0, .2, 1);
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    visibility: hidden\9;
    z-index: -1;
}

.proTxt p {
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

.proTxt .ico {
    width: 42px;
    height: 42px;
    display: block;
    margin: 78px auto 28px;
    position: relative;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

.proTxt .ico i {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.proTxt .ico .i1 {
    display: block;
}

.proTxt .ico .i2 {
    display: none;
}

.proTxt .t {
    font-size: 22px;
    line-height: 1.2;
    margin-top: 10px;
    letter-spacing: 1px;
}

.proTxt .en {
    text-transform: uppercase;
    line-height: 1;
    font-size: 34px;
    letter-spacing: 1px;
    margin: 0 auto;
    min-height: 81px;
}

.proTxt .by {
    color: #666666;
    opacity: 0;
    visibility: hidden;
    font-size: 14px;
    width: 90%;
    line-height: 1.5;
    height: 45px;
    overflow: hidden;
    letter-spacing: 1px;
    margin: 0 auto;
    text-align: center;
    color: #787878;
}

.proTxt .addico {
    background: url(../picture/add_ico.png) no-repeat scroll center center;
    background-size: cover;
    width: 10px;
    height: 10px;
    display: block;
    margin: 42px auto;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

.proTxt .moreBtn {
    opacity: 0;
    visibility: hidden;
}

#proFoot footer {
    display: none;
}

@media screen and (min-width:1200px) {

    .proUl li:hover,
    .proUl li.now {
        width: 40.33%;
    }

    .proUl li.sible {
        width: 29.83%;
        height: 50%;
    }



    .proUl li:hover .proTxt:before {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        transform-origin: left top;
        -webkit-transform-origin: left top;
        visibility: visible\9;
    }

    .proUl li:hover .proTxt .ico {
        margin-top: 54px;
    }

    .proUl li:hover .proTxt .ico .i1 {
        display: none;
    }

    .proUl li:hover .proTxt .ico .i2 {
        display: block;
    }

    .proUl li:hover .proTxt .ico i {
        -webkit-transition-timing-function: cubic-bezier(0.6, 4, 0.3, 0.8);
        transition-timing-function: cubic-bezier(0.6, 4, 0.3, 0.8);
        -webkit-animation: gelatine 0.5s 1;
        animation: gelatine 0.5s 1;
    }

    .proUl li:hover .proTxt .t {
        font-size: 18px;
        margin-top: -40px;
        color: #333;
        margin-bottom: 32px;
    }

    .proUl li:hover .proTxt .en {
        opacity: 0;
        visibility: hidden;
    }

    .proUl li:hover .proTxt .by,
    .proUl li:hover .proTxt .moreBtn {
        opacity: 1;
        visibility: visible;
        transition-delay: 200ms;
        -webkit-transition-delay: 200ms;
    }
}

@media screen and (max-width:1200px) {

    .product,
    .proUl li figure,
    .proUl li figure img {
        height: auto;
    }

    .proUl li {
        width: 50%;
    }

    .proUl li figure img {
        width: 100%;
        display: block;
    }

    .proTxt .ico,
    .proUl li:hover .proTxt .ico {
        margin-top: 0;
    }

    .proTxt {
        width: 90%;
        left: 5%;
        height: auto;
        margin: 0;
        padding: 0;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }

    .proTxt .by,
    .proTxt .moreBtn {
        display: none;
    }

    .proTxt .en {
        margin-bottom: 10px;
        min-height: 54px;
    }

    .proTxt .addico {
        margin-bottom: 0;
    }

    .proTxt .ico {
        width: 45px;
        height: 45px
    }

    .proTxt .ico,
    .proUl li:hover .proTxt .ico {
        margin-top: 0;
    }
}

@media(max-width:1024px) {
    .product {
        margin-top: 100px;
    }

    .proUl li {
        float: none;
        width: 90%;
        margin: 0 auto 28px;
    }

    #proFoot footer {
        display: block;
    }
}

@media(max-width:768px) {
    .proTxt .ico {
        width: 32px;
        height: 32px;
        margin-bottom: 24px;
    }

    .proTxt .en {
        font-size: 32px;
        min-height: auto;
    }

    .proTxt .t {
        font-size: 16px;
    }
}

/*====================================
    proList
=========================================================================*/
.proList {
    background: #fff;
    padding-top: 1px;
}

.proList .iboxT {
    margin: 89px auto 68px;
}


.index_tit .en {
    font-size: 28px;
    text-transform: uppercase;
    line-height: 1.4;
    font-weight: 500;
}

.index_tit .cn {
    font-weight: 500;
    font-size: 24px;
}

.index_tit .line {
    display: inline-block;
    width: 12px;
    height: 4px;
    background: #aacd06;
    margin: 20px 0;
    z-index: 2;
}

.index_text {
    color: #666;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}

.index_part2 {
    width: 50%;
    float: left;
    height: 550px;
    display: flex;
    align-items: center;
    background: url(../picture/index_part2bg.jpg) no-repeat center;
    background-size: 100% 100%;
    justify-content: center;
}

.index_part2 .info {
    width: 32%;
    text-align: left;
    margin-left: 8%;
}

.index_part2 .img {
    max-width: 38%;
}

.index_part2 .img img {
    height: 368px;
    width: 100%;
    object-fit: contain;
}

.index_part2 .wel-more.sm {
    margin: 48px 0 0;
}

/*====================================
    proDet
=========================================================================*/
.proDet {
    position: relative;
    height: 100vh;
    background-color: #f4f7f6;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proDet::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    z-index: 3;
    box-shadow: 0 0 189px 0 rgba(0, 0, 0, .8);
}

.proDet_box {
    max-width: 1280px;
    height: auto;
    clear: both;
    margin: 58px auto 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.proDet_img {
    width: 42%;
    position: relative;
}

.proDet_img .swiper-pagination {
    position: relative;
    margin-top: 18px;
}

.proDet_img .swiper-pagination-bullet {
    width: 21px;
    height: 2px;
    border-radius: 0;
    margin: 0 6px;
}

.proDet_img .swiper-pagination-bullet-active {
    background: #aacd06;
}

.proDet_img img {
    width: 100%;
    height: 528px;
    object-fit: contain;
}

.proDet_info {
    width: 50%;
}

.index_tit {
    color: #333;
    line-height: 1.6;
}

.index_tit .en {
    font-size: 28px;
    text-transform: uppercase;
    line-height: 1.4;
    /* font-weight: 600; */
}

.index_tit .cn {
    font-weight: 500;
    font-size: 28px;
}

.line {
    display: inline-block;
    width: 12px;
    height: 4px;
    background: #aacd06;
    margin: 20px 0;
    z-index: 2;
}

.index_text {
    color: #333;
    line-height: 24px;
    font-size: 15px;
    opacity: 0.8;
    letter-spacing: 0.5px;
}


.proDet_ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid #aacd06;
    /* border-bottom: 1px solid #cbcbcb; */
    padding: 28px 0 0;
    margin-top: 38px;
}

.proDet_ul li {
    width: 46%;
    border-bottom: 1px solid #e2e2e2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 8px 0;
    margin-bottom: 14px;
}

.proDet_ul li span {
    font-weight: 600;
    color: #333;
}

.proDet_ul li p {
    font-weight: 400;
}

/*====================================
    solution
=========================================================================*/
.solution {
    padding: 89px 0;
}

.solItem {
    display: block;
    width: 100%;
    height: 78vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 38px 0;
    box-sizing: border-box;
}

.solImg {

    width: 57%;
    height: 100%;
    overflow: hidden;
}

.solItem:nth-child(2n-1) .solTxt {
    order: -1;
}

.solImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1, 1.1);
    transition: all .8s;
}

.solItem:hover .solImg img {
    transform: scale(1);
}

.solTxt {
    width: 43%;
    text-align: center;
    padding: 0 10% 0 8%;
}

.solTxt>div {
    display: inline-block;
    text-align: left;
}

.solTxt .ind-campus-text {
    position: relative;
    opacity: 1;
    width: auto;
    height: auto;
    background: transparent;
    left: 0;
    margin: 0;
    top: 0;
    padding: 0;
}

.solTxt .tit-bot {
    margin-top: 78px;
}

/*====================================
    solDet
=========================================================================*/
/*====================================
    join
=========================================================================*/
.join {
    padding: 108px 0;
    background: #fff;
}

.joinDiv {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.joinBox {
    background: #f4f7f6 url(../images/5_05.jpg) center top no-repeat;
    padding: 128px 89px 89px;
    margin-top: 68px;
}


.joinBox ul {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.joinBox ul li {
    width: 33.33%;
    height: 32vh;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    z-index: 11;
    border: 6px solid #f4f7f6;
}



.joinPos {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.joinPos::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    transition: all 0.8s;
    background: #39B54A;
}

.joinPos svg {
    width: 68px;
    height: 58px;
}

.joinPos:hover::after {
    width: 100%;
}

.joinPos:hover svg {
    -webkit-transition-timing-function: cubic-bezier(0.6, 4, 0.3, 0.8);
    transition-timing-function: cubic-bezier(0.6, 4, 0.3, 0.8);
    -webkit-animation: gelatine 0.5s 1;
    animation: gelatine 0.5s 1;
}

@keyframes gelatine {

    from,
    to {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    25% {
        -webkit-transform: scale(0.9, 1.1);
        transform: scale(0.9, 1.1);
    }

    50% {
        -webkit-transform: scale(1.1, 0.9);
        transform: scale(1.1, 0.9);
    }

    75% {
        -webkit-transform: scale(0.95, 1.05);
        transform: scale(0.95, 1.05);
    }
}

@-webkit-keyframes gelatine {

    from,
    to {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    25% {
        -webkit-transform: scale(0.9, 1.1);
        transform: scale(0.9, 1.1);
    }

    50% {
        -webkit-transform: scale(1.1, 0.9);
        transform: scale(1.1, 0.9);
    }

    75% {
        -webkit-transform: scale(0.95, 1.05);
        transform: scale(0.95, 1.05);
    }
}

.joinPos svg path {
    fill: #39B54A;
}

.joinPos img {
    width: 50px;
    display: flex;
    margin: 0 auto;
}

.joinPos span {
    font-size: 24px;
    line-height: 2;
    margin: 18px 0 12px;
    display: block;
    color: #333;
}

.joinPos p {
    font-size: 14px;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/*====================================
    joinDet
=========================================================================*/
.joinDet .tit-bot {
    text-align: center;
}

.joinDet .wel-more {
    margin: 0 auto;
}

/*====================================
    news
=========================================================================*/
.news {
    background: #f7f7f7;
    position: relative;
    padding: 80px 5%;
}

.newsBox {
    position: relative;
    margin-left: -28px;
    margin-right: -28px;
}



.newsItem {
    float: left;
    width: 33.33%;
    display: block;
    padding: 0 28px 58px;
}

.newsItem>div {
    width: 100%;
    height: 100%;
    border: 1px solid #eeeeee;
    padding: 20px;
    background: #fff;
}


.newsImg {
    width: 100%;
    padding-top: 65%;
    /* height: 308px; */
    overflow: hidden;
    position: relative;
}

.newsImg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.48s;
}

.newsTxt {
    padding: 14px 14px 28px;
}

.newsTit {
    font-size: 22px;
    line-height: 2;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    text-overflow: ellipsis;
    display: block;
    width: 96%;
}

.newsType {
    display: none;
    font-size: 14px;
    opacity: 0.8;
}

.newsTime {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1.5px;
    display: block;

}

.newsP {
    line-height: 1.6;
    margin-top: 18px;
    font-size: 15px;
    letter-spacing: 0.25px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.68;
    min-height: 48px;
}

.newsItem:hover .newsImg img {
    transform: scale(1.1);
}

.newsItem:hover .newsTit {
    color: #81c2da;
}

/*====================================
    newsDet
=========================================================================*/

.newsDet {
    padding: 108px 0;
    max-width: 1280px;
    margin: 0 auto;
}

.newsDet_box {
    max-width: 1200px;
    margin: 0 auto;
}

.newsDet_top {
    padding-bottom: 30px;
    border-bottom: 1px dashed #dbdbdb;
}

.newsDet_top em {
    text-transform: capitalize;
    color: #f15a29;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 15px;
    line-height: 2;
}

.newsDet_top h4 {
    font-size: 34px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.newsDet_top p {
    font-size: 12px;
}

.newsDet_top p span {
    margin-right: 24px;
    vertical-align: middle;
}

.newsDet_top p img {
    margin-right: 5px;
    vertical-align: text-top;
    width: 13px;
}

.newsDet_body {
    line-height: 2;
    color: #666;
    margin: 86px 0 20px;
    padding-bottom: 28px;
}

.newsDet_body img {
    max-width: 100%;
    margin: 20px auto 28px;
}

.newsDet_body p {
    margin: 18px 0;
    font-size: 16px;
}

.newsDet_body b {
    color: #333;
    font-weight: bold;
    font-size: 22px;
    position: relative;
    top: 8px;
}

.newsDet_More {
    margin-top: 138px;
}

.newsDet_More .back {
    display: inline-block;
    font-size: 14px;
    color: #999999;
    padding-right: 38px;
    box-sizing: border-box;
    position: relative;
    transition: .5s ease-in-out;

}

.newsDet_More .back:after {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(../picture/c11.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.newsDet_More .back:hover {
    color: #aacd06;
}

.newsDet_More .back:hover:after {
    background-image: url(../picture/c12.png);
}

/*====================================
    contact
=========================================================================*/
/* 1 */
.conMess {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 128px 0 80px;
    background: transparent;
}

.conMess::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: -1px;
    right: 0;
    bottom: 5rem;
    left: 0;
    background: #F5F5F6;
}

.conMess::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 5rem;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    background-image: url(../images/con1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: 100% auto;
    top: 0;
    left: 30%;
}

.conMess_img {
    position: relative;
    z-index: 3;
    display: block;
    width: 100%;
    min-height: 60vw;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    /* -webkit-box-flex: 1;
    -ms-flex: 1;*/
    flex: 1;
    min-height: 35vw;
}


.conMess_txt {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 2.5rem 0 3.75rem;

    width: 55%;
    padding: 5rem;
}

.conMess_txt .inner {
    width: 100%;
    max-width: 500px
}

.conAdd {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    font-size: 28px;
    color: #171B24;
}

.conAdd::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 58px;
    height: 1px;
    background: #aacd06;
}

.conAdd_p {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 1px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 28px;
}

.conAdd_p .conAdd_bold {
    display: block;
    margin-bottom: 12px;
}

.conAdd_bold {

    font-size: 18px;
    margin-right: 6px;
    font-family: "beba";
    color: #333;
}

.conAdd_con {
    position: relative;
}

.conAdd_con a {
    position: relative;
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
}

.conAdd_con a:last-of-type {
    text-decoration: underline;
}

.conEwm {
    position: absolute;
    top: 0;
    right: 0;
    width: 108px;
    text-align: center;
}

.conEwm>img {
    width: 100%;
}

.conEwm p {
    font-size: 14px;
    margin-top: 7px;
    letter-spacing: 1px;
}

.conEwm p span {
    display: none
}

.conEwm p img {
    display: none;
    margin-bottom: 10px;
}

/* 2 */
.conMap {
    position: relative;
    margin-top: -80px;
}

#allmap {
    height: 768px;
    width: 100%;
    margin: 0 auto;
}

/* 3 */
.conJoin {
    padding: 0 10% 108px;
    position: relative;
}

.recJob {
    background: #f5f5f5;
    color: #666;
    margin-top: -70px;
}

/* job-tit */
.recJob_tit {
    line-height: 20px;
    background: #8FCCE3;
    padding: 20px 2%;
    overflow: hidden;
}

.recJob_tit span {
    float: left;
    width: 22%;
    color: #fff;
    line-height: 20px;
    font-size: 14px;
    padding: 5px 10px;
}

.recJob_tit span:nth-child(5) {
    width: 10%;
    text-align: center;
}

/* job-list  */
.recJob_list {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 75px;
    padding: 0 2%;
    background: #fff;
}

.recruit li {
    border-bottom: 1px solid #e5e5e5;
}

.recruit li:last-of-type {
    border-bottom: 0;
}

.recJob_name {
    display: block;
    font-size: 0;
    padding: 25px 0;
    position: relative;
    overflow: hidden;
}

.recJob_name::after {
    content: "";
    position: absolute;
    right: 94px;
    top: 50%;
    width: 12px;
    height: 8px;
    margin-top: -4px;
    background-image: url(../images/recruit-down.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.recJob_name span {
    position: relative;
    float: left;
    width: 22%;
    line-height: 20px;
    font-size: 14px;
    padding: 5px 10px;
}

.recJob_name span:last-of-type {
    width: 10%;
}

.recJob_info {
    display: none;
    position: relative;
    border-top: 1px solid #efefef;
    padding: 0 30px;
    background: #f5f5f5;
}

.recJob_top {
    padding: 20px 0;
    padding-bottom: 25px;
    border-bottom: 1px solid #dcdcdc;
}

.recJob_top span {
    display: inline-block;
    width: 24%;
    font-size: 14px;
    line-height: 36px;
    color: #666;
}

.recJob_btm {
    overflow: hidden;
    padding: 40px 10px;
    border-bottom: 1px solid #dcdcdc;
}

.recJob_btm h4 {
    font-weight: 500;
    font-size: 18px;
    color: #333333;
    margin-bottom: 12px;
}

.recJob_btm p {
    line-height: 26px;
    color: #666;
}

.recJob_btm .recJob_l {
    float: left;
    width: 50%;
    box-sizing: border-box;
    padding-right: 80px;
    margin-bottom: 15px;
}

.recJob_btm .recJob_r {
    width: 50%;
    float: right;
    box-sizing: border-box;
    padding-left: 60px;
}

.recJob_info .tips {
    padding: 20px 0;
    color: #aacd06;
    line-height: 20px;
    font-size: 14px;
}

.recJob_info .tips a {
    display: inline-block;
    color: #aacd06;
}

.recJob_list li.cur {
    border-color: transparent;
    background: #fff;
}

.recJob_list li.cur .recJob_name::after {
    background-image: url(../images/recruit-up.png);
}

@media (max-width: 1024px) {


    .recJob_name {
        padding: 20px 0;
    }
}

@media (max-width: 900px) {
    .recJob {
        padding: 48px 0 0;
    }

    .recJob_sel {
        width: 32%;
        margin: 0 0 2% 2%;
    }

    .recJob_sel:first-of-type {
        margin: 0 0 2% 0;
    }

    .recSec_job {
        width: 78%;
    }

    .recJob_sech .recJob_btn {
        width: 20%;
    }

    .recJob_name {
        padding: 20px 0;
    }

    .recJob_info {
        padding: 0 28px 10px;
    }

    .recJob_top {
        padding: 16px 0;
    }

    .recJob_top span {
        width: auto;
        margin-right: 24px;
        font-size: 13px;
        line-height: 2.4;
    }

    .recJob_tit {
        padding: 10px 28px;
    }

    .recJob_list {
        padding: 0 28px 30px;
    }

    .recJob_btm {
        padding: 28px 10px;
    }

    .recJob_btm .recJob_l {
        padding-right: 60px;
    }

    .recJob_btm .recJob_r {
        padding-left: 32px;
    }

    .recJob_btm h4 {
        font-size: 17px;
        margin-bottom: 8px;
    }


}

@media (max-width: 680px) {
    .recJob_info .tips {
        padding: 0 14px;
    }

    .recJob_list {
        padding: 0 14px 20px;
    }

    .recJob_btm {
        padding: 20px 10px;
    }

    .recJob_btm .recJob_l {
        padding: 0;
        float: none;
        width: 100%;
    }

    .recJob_btm .recJob_r {
        float: none;
        padding: 0;
        width: 100%;
    }

    .recJob_btm h4 {
        font-size: 16px;
    }

    .recJob_btm p {
        font-size: 13px;
    }

    .recJob_info {
        padding: 0 22px 6px;
    }

    .recJob_info .tips {
        padding: 14px 0;
    }

    .recJob_sel {
        width: 100%;
        margin: 0 0 10px !important;
    }

    .recJob_tit {
        padding: 10px 14px;
    }

    .recJob_tit span,
    .recJob_name span {
        width: 33.33%;
        font-size: 13px;
        padding: 6px 0;
    }

    .recJob_name span:nth-child(4),
    .recJob_tit span:nth-child(4),
    .recJob_name span:nth-child(5),
    .recJob_tit span:nth-child(5) {
        display: none;
    }

    .recJob_name {
        padding: 10px 0;
    }

    .recJob_name::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .recJob {
        padding: 32px 0;
    }

    .recJob_tit {
        padding: 10px;
    }

    .recSec_job input {
        line-height: 36px;
        height: 36px;
        padding: 0 10px;
    }

    .recJob_sech .recJob_btn {
        font-size: 13px;
        line-height: 36px;
        height: 36px;
    }

    .recJob_list {
        padding: 0 10px 12px;
    }

    .recJob_info {
        padding: 0 14px 6px;
    }

    .recJob_top {
        padding: 12px 0;
    }

    .recJob_top span {
        margin-right: 18px;
        line-height: 2;
    }

    .recJob_btm {
        padding: 12px 6px;
    }

    .recJob_btm h4 {
        font-size: 15px;
        margin-bottom: 0;
    }

    .recJob_btm p {
        line-height: 24px;
    }

    .recJob_info .tips {
        font-size: 13px;
    }
}