html {
    font-size: 100%;
    width: 100%;
    outline: none;
    min-height: 100%;
    position: relative;
}

body {
    background: #FFF;
    font-family: arial, "Microsoft Yahei", "寰蒋闆呴粦", "Helvetica Neue", Helvetica, Tahoma, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #373737;
    text-align: left;
    margin: auto;
    width: 100%; 
    min-width: 1300px;
    outline: none;
    position: relative;
}

body,
div,
p,
input,
a,
span,
img,
ul,
li,
textarea,
select,
button {
    outline: none;
}

a,
a:hover {
    color: #373737;
    text-decoration: none;
}

html {
    font-size: 100%;
    width: 100%;
    outline: none;
}

body,
div,
p,
span,
ul,
li,
a,
input,
textarea {
    box-sizing: border-box;
}

.clearfix::after {
    display: block;
    content: '';
    clear: both;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.left {
    float: left;
}

.right {
    float: right;
}

img {
    border: none;
}

p {
    margin: 0;
}

.boxShadow {
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.26);
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.26);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.26);
}


/* gShow */

.gShow {
    opacity: 0;
}

@keyframes mymove {
    from {
        transform: translate3d(0, 50%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes mymove
/* Safari and Chrome */

{
    from {
        transform: translate3d(0, 50%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.fontFadeIn {
    animation: 3s ease 0s 1 normal none running fontMove;
    -webkit-animation: 3s ease 0s 1 normal none running fontMove;
}

@keyframes fontMove {
    from {
        transform: translate3d(-10%, 50%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes fontMove
/* Safari and Chrome */

{
    from {
        transform: translate3d(-10%, 50%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}


/* scaleImg */

.scaleImg {
    overflow: hidden;
    display: block;
}

.scaleImg img {
    transition-duration: .6s;
    -webkit-transition-duration:.6s; 
    display: block;
    width: 100%;
}

.scaleImg:hover img {
    transform: scale(1.1);
    /* filter: grayscale(0); */
}


/* banner */

.banner {
    position: relative;
    overflow: hidden;
}

.banner img {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    animation: 10s infinite alternate bannerMove;
    -webkit-animation: 10s infinite alternate bannerMove;
    display: block;
}

@keyframes bannerMove {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.1, 1.1);
    }
}

@-webkit-keyframes bannerMove
/*Safari and Chrome*/

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


/* content */

.content {
    width: 1200px;
    margin: 0 auto;
}
.lTop{
    margin-top: 100px;
    background-color: #f7f7f7;
}
/* header */
header .top{
    padding: 20px 0;
}
header .top .logo{
    margin-right: 20px;
    margin-top: 8px;
}
header .top .logo img{
    display: block;
}
header .top .txt{
    color: #666666;
    font-size: 18px;
    padding-left: 15px;
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    line-height: 24px;
    margin-right: 140px;
    margin-top: 17px;
}
header .top .tel{
    margin-top: 8px;
}
header .top .tel p{
    line-height: 16px;
    font-size: 16px;
    color: #666666;
    margin-bottom: 2px;
}
header .top .tel a{
    color: #E60000;
    font-size: 24px;
    line-height: 24px;
    font-weight: bold;
}
header .top form{
    position: relative;
    display: block;
    width: 400px;
}
header .top form input{
    display: block;
    width: 100%;
    height: 36px;
    border: 1px solid #D8D6D6;
    padding: 0 15px;
}
header .top form button{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 65px;
    background-color: #0360B0;
    border: 0;
    line-height: 36px;
    cursor: pointer;
}
header .top form button img{
    vertical-align: middle;
}
header .top .form .link{
    font-size: 12px;
    line-height: 12px;
    margin-top: 10px;
    color: #999999;
}
header .top .form .link a{
    color: #333333;
}
header .top .form .link a:last-child span{
    display: none;
}
header .bottom{
    background-color: #0360B0;
}
header .tabs{
    text-align: center;
}
header .tabs>li{
    position: relative;
    display: inline-block;
    line-height: 55px;
    width: 80px;
    margin-right: 60px;
}
header .tabs>li::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .3s;
    -webkit-transition: .3s;
    width: 0;
    background-color: #fff;
    height: 2px;
}
header .tabs>li:last-child{
    margin-right: 0;
}
header .tabs>li>a{
    color: #fff;
    display: block;
    font-size: 16px;
}
header .tabs>li.active::before,
header .tabs>li:hover::before{
    width: 100%;
}
/* home */
.home_1 img{
    display: block;
    width: 100%;
}
.home_2{
    padding: 80px 0;
    background-color: #F4F4F4;
}
.home_21{
    width: 812px;
    margin-right: 38px;
}
.home .title{
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.home .title .tit{
    color:rgba(18,114,191,.1);
    font-size: 40px;
    font-family: fantasy;
    font-style: italic;
    background-color: #F4F4F4;
    padding-right: 12px;
}
.home .title .name{
    position: absolute;
    bottom: -3px;
    left: 3px;
    font-size: 20px;
    font-weight: bold;
}
.home .title::before{
    content: "";
    display: block;
    position: absolute;
    right: 0;
    height: 1px;
    left: 0;
    top: 23.5px;
    border-top: 1px dashed rgba(18,114,191,.1);
    z-index: -1;
}
.home_1{
    transition: .5s;
    -webkit-transition: .5s;
    position: relative;
    overflow: hidden;
    height: 610px;
    width: 100%;
}
.home_1.hide{
    height: 0;
}
.home_1 img{
    width: 1920px;
    position: absolute;
    left: 50%;
    margin-left: -960px;
}
.home_21 .swiper-slide a{
    width: 267px;
    margin-bottom: 5px;
    display: block;
    position: relative;
}
.home_21 .swiper-slide a img{
  	object-fit: cover;
  	height:207.5px;
}
.home_21 .swiper-slide a:first-child{
    width: 540px;
    margin-bottom: 0;
    margin-right: 5px;
}
.home_21 .swiper-slide a:first-child img{
	height:420px;
}
.home_21 .swiper-slide a:last-child{
    margin-bottom: 0;
}
.home_21 .swiper-slide a p{
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    color: #fff;
    text-align: center;
    line-height: 54px;
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
}
.home_21 .swiper-button-btn{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-size: 22px 22px;
    background-color: rgba(0, 0, 0, 0.5);
    transition: .5s;
    -webkit-transition: .5s;
}
.home_21 .swiper-button-prev{
    left: 0;
    background-image: url(../images/index_02.png);
}
.home_21 .swiper-button-next{
    right: 0;
    background-image: url(../images/index_03.png);
}
.home_21 .swiper-button-btn:hover{
    background-color: #047DE5;
}
.home_22{
    width: 350px;
}
.home_22 .list{
    background-color: #fff;
    padding: 0 12px;
    padding-top: 20px;
}
.home_22 .list .hd a{
    color: #666666;
    margin-top: 5px;
}
.home_22 .list .hd span{
    padding: 0 5px;
    cursor: pointer;
    padding-bottom: 12px;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    position: relative;
}
.home_22 .list .hd span::before{
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    background-color: #0360B0;
    height: 1px;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_22 .list .hd span.active{
    color: #0360B0;
}
.home_22 .list .hd span.active::before{
    width: 100%;
}
.home_22 .list li{
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.home_22 .list li a{
    display: block;
    padding: 22px 15px;
    position: relative;
    font-size: 16px;
    color: #333333;
    line-height: 16px;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_22 .list li a:hover{
    color: #0360B0;
}
.home_22 .list li a span:first-child{
    width: 72%;
    float: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.home_22 .list li a span:last-child{
    font-size: 14px;
    color: #999999;
}
.home_22 .list li a::before{
    content: "";
    position: absolute;
    left: 5px;
    top: 28px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000000;
}
.home_22 .list ul{
    display: none;
}
.home_22 .list ul.show{
    display: block;
}
.home_31{
    width: 200px;
    height: 150px;
    background-color: #0360B0;
}
.home_31 .title{
    text-align: center;
    margin-top: 51px;
}
.home_31 .title .tit{
    background-color: transparent;
    color: rgba(255, 255, 255, 0.12);
}
.home_31 .title .name{
    color: #fff;
    left: 22px;
}
.home_32{
    width: 260px;
    text-align: center;
    position: relative;
    height: 150px;
    color: #666666;
    font-size: 16px;
    padding-top: 25px;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_32 img{
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    margin-bottom: 20px;
}
.home_32 p{
    line-height: 16px;
}
.home_32::after{
    position: absolute;
    content: "";
    top: 0;
    left: 10px;
    height: 1px;
    background-color: #0360B0;
    width: 0;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_32::before{
    position: absolute;
    content: "";
    right: 0;
    width: 1px;
    top: 40px;
    bottom: 40px;
    background-color: rgba(0, 0, 0, 0.1);
}
.home_32:last-child::before{
    display: none;
}
.home_32:hover{
    color: #0360B0;
}
.home_32:hover img{
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}
.home_32:hover::after{
    width: 240px;
}
/* footer */
footer{
    background-color: #323232;
    padding-top: 60px;
}
footer .top{
    padding-bottom: 50px;
}
footer .top ul{
    margin-right: 200px;
}
footer .top li a{
    display: block;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 36px;
    transition: .5s;
    -webkit-transition: .5s;
}
footer .top li a:hover{
    color: #0360B0;
}
footer .info{
    color: #fff;
}
footer .info .tit{
    font-size: 18px;
    line-height: 36px;
    margin-bottom: 20px;
}
footer .info .name{
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}
footer .info .txt{
    line-height: 36px;
}
footer .info .txt span{
    color: rgba(255, 255, 255, 0.4);
}
footer .qrCode .tit{
    font-size: 18px;
    line-height: 36px;
    color: #fff;
    margin-bottom: 12px;
}
footer .qrCode .left{
    margin-left: 30px;
}
footer .qrCode .left:first-child{
    margin-left: 0;
}
footer .qrCode .left p{
    color:rgba(255,255,255,.4);
    line-height: 14px;
    margin-top: 12px;
}
footer .bottom{
    line-height: 40px;
    color: rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .bottom a{
    color: rgba(255, 255, 255, 0.3);
}
/* tContent */
.tContent{
    padding: 60px 0;
}
.tContent_1{
    width: 260px;
}
.tContent_1 .mode{
    margin-bottom: 20px;
}
.tContent_1 .mode:last-child{
    margin-bottom: 0;
}
.tContent_1 .mode .hd{
    background-color: #047DE5;
    line-height: 44px;
    color: #fff;
    padding: 0 20px;
}
.tContent_1 .mode .hd span{
    font-size: 18px;
}
.tContent_1 .mode li a{
    display: block;
    line-height: 40px;
    border: 1px solid #F0F0F0;
    border-top: 0;
    padding-left: 40px;
    padding-right: 20px;
    position: relative;
    transition: .5s;
    -webkit-transition: .5s;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.tContent_1 .mode li a::before{
    content: "";
    position: absolute;
    width:5px;
    height:5px;
    background:rgba(218,217,217,1);
    border-radius:50%;
    left: 20px;
    top: 17.5px;
    transition: .5s;
    -webkit-transition: .5s;
}
.tContent_1 .mode li a.active,
.tContent_1 .mode li a:hover{
    color: #E60000;
}
.tContent_1 .mode li a.active::before,
.tContent_1 .mode li a:hover::before{
    background-color: #E60000;
}
.tContent_1 .mode .tit{
    background-image: url(../images/about_01.jpg);
    height: 82px;
    background-size: 100% 100%;
    padding-top: 22px;   
}
.tContent_1 .mode .tit p:first-child{
    font-size: 16px;
    padding-left: 20px;
    color: #047DE5;
    line-height: 16px;
}
.tContent_1 .mode .tit p:last-child{
    color: #999999;
    line-height: 14px;
    padding-left: 20px;
    margin-top: 8px;   
}
.tContent_1 .mode .info{
    padding: 20px;
    background-color: #FAFAFA;
}
.tContent_1 .mode .info p{
    line-height: 30px;
    color: #666666;
}
.tContent_2{
    width: 940px;
    padding-left: 50px;
}
.tContent_2 .crumbs{
    margin-bottom: 30px;
    border-bottom: 1px solid #DFDFDF;
    padding-bottom: 10px;
    line-height: 14px;
    color: #999999;
}
.tContent_2 .crumbs a{
    color: #999999;
}
/* about */
.about_1{
    width: 480px;
    line-height: 36px;
    color: #666666;
    text-indent: 28px;
}
.about_2{
    width: 410px;
    padding-left: 56px;
}
.about_2 .scaleImg{
    margin-bottom: 15px;
}
.about_2 p{
    color: #666666;
    line-height: 36px;
}
/* product */
.product .tContent_1 .mode li{
    position: relative;
}
.product .tContent_1 .mode li span{
    display: block;
    line-height: 40px;
    border: 1px solid #F0F0F0;
    border-top: 0;
    padding-left: 40px;
    padding-right: 20px;
    position: relative;
    transition: .5s;
    -webkit-transition: .5s;
    cursor: pointer;
}
.product .tContent_1 .mode li span::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(218,217,217,1);
    border-radius: 50%;
    left: 20px;
    top: 17.5px;
    transition: .5s;
    -webkit-transition: .5s;
}
.product .tContent_1 .mode ul ul{
    transition: .5s;
    -webkit-transition: .5s;
    overflow: hidden;
    height: 0;
}
/* product */
.product_1 .mode{
    width: 430px;
    margin-right: 30px;
    margin-bottom: 30px;
    border: 1px solid #F0F0F0;
    transition: .5s;
    -webkit-transition: .5s;
}
.product_1 .mode:nth-of-type(2n){
    margin-right: 0
}
.product_1 .mode .scaleImg{
    width: 199px;
    border-right: 1px solid #F0F0F0;
}
.product_1 .mode .info{
    width: 229px;
    padding: 30px 12px 0 20px;
}
.product_1 .mode .info .tit{
    font-size: 16px;
    font-weight: bold;
    line-height: 16px;
    margin-bottom: 30px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    transition: .5s;
    -webkit-transition: .5s;
}
.product_1 .mode .info .txt{
    color: #666666;
    line-height: 14px;
    margin-bottom: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.product_1 .mode .info .txt span{
    font-weight: bold;
    display: block;
    color: #333333;
    margin-bottom: 7px;
}
.product_1 .mode:hover{
    border-color: #0271B6;
}
.product_1 .mode:hover .tit{
    color: #0360B0;
}
.pages{
    text-align: right;
}
.pages a{
    display: inline-block;
    margin-left: 5px;
    line-height: 30px;
    border: 1px solid #A7A7A7;
    border-radius: 6px;
    transition: .5s;
    -webkit-transition: .5s;
}
.pages a{
    color: #999999;
    padding: 0 11px;
    transition: .5s;
    -webkit-transition: .5s;
}
.pages a:hover,
.pages a.page-num-current{
    background-color: #0271B6;
    border-color: #0271B6;
    color: #fff;
}
/* productDetail */
.productDetail_1{
    margin-bottom: 40px;
}
.productDetail_11{
    width: 426px;
}
.productDetail_11 .swiper1{
    width: 340px;
    border: 1px solid #F0F0F0;
    margin-right: 4px;
}
.productDetail_11 .swiper1 .swiper-slide img{
	width:340px;
  	height:340px;
    object-fit: contain;
}
.productDetail_11 .swiper2{
    width: 82px;
    height: 345px;
}
.productDetail_11 .swiper2 .swiper-slide{
    border: 1px solid #F0F0F0;
}
.productDetail_11 .swiper2 .swiper-slide img{
	width:100%;
  	height:82px;
    object-fit: contain;
}
.productDetail_11 .swiper2 .swiper-slide-thumb-active{
    border-color: #0271B6;
}
.productDetail_12{
    width: 464px;
    padding-left: 30px;
    padding-top: 15px;
    position: relative;
}
.productDetail_12 .goDetail{
    border-radius: 6px;
    border: 1px solid #A7A7A7;
    width: 34px;
    line-height: 32px;
    height: 34px;
    text-align: center;
    display: block;
    transition: .5s;
    -webkit-transition: .5s;
    position: absolute;
    right: 0;
    top: 15px;
    z-index: 99;
}
.productDetail_12 .goDetail.goPrev{
    right: 44px;
}
.productDetail_12 .goDetail img{
    vertical-align: middle;
}
.productDetail_12 .goDetail img:last-child{
    display: none;
}
.productDetail_12 .goDetail:hover{
    background-color: #0360B0;
    border-color: #0360B0;
}
.productDetail_12 .goDetail:hover img:first-child{
    display: none;
}
.productDetail_12 .goDetail:hover img:last-child{
    display: inline-block;
}
.productDetail_12 .name{
    line-height: 34px;
    position: relative;
    padding-left: 22px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 24px;
}
.productDetail_12 .name::before{
    content: "";
    position: absolute;
    width:10px;
    height:10px;
    background:rgba(3,96,176,1);
    left: 0;
    top: 12px;
}
.productDetail_12 .txt{
    color: #666666;
    line-height: 36px;
}
.productDetail_12 .cho{
    margin-top: 24px;
}
.productDetail_12 .cho .btn{
    width:120px;
    height:38px;
    border:1px solid #0360B0;
    border-radius:6px;
    line-height: 38px;
    display: block;
    text-align: center;
    color: #0360B0;
    transition: .5s;
    -webkit-transition: .5s;
    margin-right: 30px;
}
.productDetail_12 .cho .btn:hover{
    background-color: #0360B0;
    color: #fff;
}
.productDetail_12 .cho .tel{
    line-height: 38px;
    color: #008FEF;
    font-size: 20px;
}
.productDetail_12 .cho .tel img{
    margin-right: 3px;
    vertical-align: middle;
    margin-top: -3px;
}
.productDetail .title{
    line-height: 16px;
    position: relative;
    padding-left: 22px;
    font-size: 16px;
    font-weight: bold;
}
.productDetail .title::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(3,96,176,1);
    left: 0;
    top: 3px;
}
.productDetail_2{
    padding-bottom: 30px;
    border-bottom: 2px dashed #F0F0F0;
    margin-bottom: 40px;
}
.productDetail_2 .title{
    margin-bottom: 12px;
}
.productDetail_2 p{
    color: #666666;
    line-height: 30px;
}
.productDetail_2 p.tit{
    font-weight: bold;
}
.productDetail_3 .title{
    margin-bottom: 20px;
}
/* news */
.news_1{
    margin-bottom: 20px;
}
.news_1 .mode{
        list-style-type: none;
        font-size: 14px;
        width: 100%;
        border: 1px dashed #EFEFEF;
        padding: 10px 20px;
        background: #FAFAFA;
        margin-bottom: 10px;
        /* overflow: hidden; */
        /* height: 100px; */
  transition: all ease .6s
}
.news_1 .mode:nth-of-type(3n){
    margin-right: 0;
}
.news_1 .mode>.tits{
    color: #666666;
    line-height: 14px;
    margin-bottom: 20px;
}
.news_1 .mode>.tit{
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news_1 .mode>.txt{
    color: #666666;
    line-height: 14px;
}
.news_1 .mode>.times{
    color: #666666;
    line-height: 14px;
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}
.news_1 .mode>a{
    /* position: absolute; */
    /* width: 100%; */
    /* left: 0; */
    /* top: 0; */
    /* bottom: 0; */
    /* z-index: 1; */
    /* transition: .3s; */
    /* -webkit-transition: .3s; */
}
.news_1 .mode>a .bgImg{
    display: block;
    width: 100%;
    height: 286px;
    object-fit: cover;
}
.news_1 .mode>a .btn{
    width:28px;
    height:28px;
    border:1px solid rgba(240, 240, 240, 1);
    display: block;
    text-align: center;
    line-height: 24px;
    right: 37px;
    top: 37px;
    position: absolute;
}
.news_1 .mode>a .btn img{
    vertical-align: middle;
}
.news_1 .mode>a .info{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
   /* height: 170px;*/
    height: 77px;
    /*background-color: rgba(0, 0, 0, 0.5);
    color: #fff;*/
    background-color: rgba(255, 255, 255, 0.5);
    color: #333;
    padding: 10px 30px 0 30px;
}
.news_1 .mode>a .info .tit{
    font-size: 18px;
    line-height: 28px;
   /* margin-bottom: 10px;
    margin-top: 15px ;*/
    margin-bottom: 2px;
    margin-top: 4px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news_1 .mode>a .info .txt{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.news_1 .mode:hover a{
    transform: translate3d(0px, 0, 0px);
    -webkit-transform: translate3d(0px, 0, 0px);
    opacity: 1;
}

.news_1 .mode>a .tit{color: #FE6905;font-size: 16px;}
.news_1 .mode>a .times{
  font-size: 12px;
 /* margin-top: 5px;*/
  width: 595px;
  text-align: left;
  color: #C9CCCD;
  padding-top: 5px;
}
.news_1 .mode>a .txt{line-height: 24px;overflow: hidden;width: 100%;font-size: 12px;/* width: 595px; */margin-top: 8px;text-indent: 26px;}
.news_1 .mode>a .more{
    display: block;
    text-decoration: none;
    color: white;    
    float: right;
    margin-right: 5px;
    background: #05C3F2;
    color: white;
    height: 25px;
    line-height: 25px;
    width: 90px;
    text-align: center;
    margin-top: 5px;
    font-size: 12px;
}

/* newsDetail */
.newsDetail_1{
    border-bottom: 2px dashed #F0F0F0;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.newsDetail_1 .tit{
    font-size: 18px;
    font-weight: bold;
    line-height: 18px;
    margin-bottom: 10px;
    text-align: center;
}
.newsDetail_1 .times{
    text-align: center;
    color: #999999;
    line-height: 14px;
    margin-bottom: 30px;
}
.newsDetail_1 .times span{
    margin-right: 30px;
}
.newsDetail_1 .times span:last-child{
    margin-right: 0;
}
.newsDetail_1 .txt{
    text-indent: 28px;
    line-height: 30px;
    color: #666666;
}
.newsDetail_2 .left a{
    line-height: 14px;
    color: #999999;
    margin-bottom: 10px;
    display: block;
}
.newsDetail_2 .left a span{
    transition: .5s;
    -webkit-transtion:.5s;
}
.newsDetail_2 .left a:hover span{
    color: #0360B0;
}
.newsDetail_2 .goBack{
    transition: .5s;
    -webkit-transtion:.5s;
    width:120px;
    height:38px;
    border:1px solid #0360B0;
    border-radius:6px;
    text-align: center;
    line-height: 38px;
    text-align: center;
    color: #0360B0;
}
.newsDetail_2 .goBack:hover{
    background-color: #0360B0;
    color: #fff;
}
/*case*/
.case1{
    margin-bottom: 20px;
}
.case1 .mode{
    width: 288px;
    height: 368px;
    margin-right: 13px;
    margin-bottom: 15px;
    border: 1px solid #F0F0F0;
    position: relative;
    padding: 40px 30px 0 30px;
  /*  overflow: hidden;*/
}
.case1 .mode:nth-of-type(3n){
    margin-right: 0;
}
.case1 .mode>.tits{
    color: #666666;
    line-height: 14px;
    margin-bottom: 20px;
}
.case1 .mode>.tit{
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.case1 .mode>.txt{
    color: #666666;
    line-height: 14px;
}
.case1 .mode>.times{
    color: #666666;
    line-height: 14px;
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

/*.case1 .mode>a{
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    transition: .3s;
    -webkit-transition: .3s;
    transform: translate3d(0px, -30%, 0px);
    -webkit-transform: translate3d(0px, -30%, 0px);
    opacity: 0;
}*/
.case1 .mode>a .bgImg{
    display: block;
    width: 100%;
    height: 286px;
    object-fit: cover;
}
.case1 .mode>a .btn{
    width:28px;
    height:28px;
    border:1px solid rgba(240, 240, 240, 1);
    display: block;
    text-align: center;
    line-height: 24px;
    right: 37px;
    top: 37px;
    position: absolute;
}
.case1 .mode>a .btn img{
    vertical-align: middle;
}
.case1 .mode>a .info{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 1);
    color: #333;
    padding: 14px 30px 0 30px;
}
.case1 .mode>a .info .tit{
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
    margin-top: 0 ;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.case1 .mode>a .info .txt{
  margin-top: 0 ;
    white-space: nowrap;
    text-overflow: ellipsis;
   text-indent:0;
   /* overflow: hidden;*/
    word-break: break-all;
  font-size:13px;
}
/*.case1 .mode:hover a{
    transform: translate3d(0px, 0, 0px);
    -webkit-transform: translate3d(0px, 0, 0px);
    opacity: 1;
}*/
/* contact */
.contact>.content{
    padding: 60px 0;
}
.contact_1{
    width: 740px;
}
.contact .title{
    margin-bottom: 30px;
}
.contact .title .tit{
    font-size: 30px;
    font-weight: bold;
    line-height: 30px;
    margin-bottom: 7px;
}
.contact .title .titEn{
    color: #D9D9D9;
    font-size: 18px;
    line-height: 18px;
}
.contact_1 iframe{
    display: block;
    width: 100%;
    height: 575px;
}
.contact_2{
    width: 460px;
    padding-left: 60px;
}
.contact_2 .title{
    margin-bottom: 20px;
}
.contact_2 .info{
    margin-bottom: 30px;
}
.contact_2 .info p{
    position: relative;
    line-height: 30px;
    padding-left: 46px;
}
.contact_2 .info p span{
    position: absolute;
    left: 0;
    top: 0;
    color: #666666;
}
.contact_2 form .radio{
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    margin-bottom: 8px;
}
.contact_2 form .radio>div{
    margin-right: 30px;
    color: #666666;
    cursor: pointer;
    position: relative;
    padding-left: 22px;
}
.contact_2 form .radio>div span{
    position: absolute;
    border: 1px solid #9C9C9C;
    width:16px;
    height:16px;
    border-radius:50%;
    display: block;
    left: 0;
    top: 7px;
    transition: .5s;
    -webkit-transtion:.5s;  
}
.contact_2 form .radio>div span::before{
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #047DE5;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    opacity: 0;
    transition: .5s;
    -webkit-transtion:.5s;
}
.contact_2 form .radio input{
    opacity: 0;
    display: block;
}
.contact_2 form .radio>div.active span{
    border-color: #047DE5;
}
.contact_2 form .radio>div.active span::before{
    opacity: 1;
}
.contact_2 form>input,
.contact_2 form>textarea{
    display: block;
    width: 100%;
    margin-bottom: 16px;
    height: 40px;
    border: 1px solid #D8D8D8;
    padding: 0 12px;
}
.contact_2 form>textarea{
    height: auto;
    resize: none;
    padding: 12px;
    font-family: "";
    margin-bottom: 30px;
}
.contact_2 form button{
    width:160px;
    height:45px;
    background:rgba(3,96,176,1);
    border-radius:6px;
    border: 0;
    text-align: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}
.news_1 .mode:hover{transform: translateY(-4px);
    transition: all ease .6s;}

.case1 .mode>a{
      position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    transition: .3s;
    -webkit-transition: .3s;
}