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

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%;
    outline: none;
    overflow-x: hidden;
}

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

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

body,
div,
p,
span,
ul,
li,
a,
input,
textarea,
form {
    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: 6px;
}

.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;
    width: 100%;
}

@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: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
body{
    padding-bottom: 60px;
}
section{
    margin-top: 60px;
}
body.bg {
    background-color: #f6f6f6;
}
/* header */
header{
    background-color: #fff;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    height: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
header .logo{
    line-height: 60px;
}
header .logo img{
    height: 40px;
    vertical-align: middle;
}
header .hdBtn {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 32px;
    overflow: hidden;
    white-space: nowrap;
    color: transparent;
    z-index: 3;
    margin-top: 14px;
    z-index: 999;
}

header .hdBtn span {
    position: absolute;
    display: inline-block;
    height: 3px;
    width: 30px;
    background: #043E7F;
    top: 50%;
    right: 8px;
    margin-top: -2px;
    border-radius: 2px;
}

header .hdBtn span::before {
    content: " ";
    position: absolute;
    display: inline-block;
    height: 3px;
    width: 30px;
    background: #043E7F;
    top: 8px;
    border-radius: 2px;
}

header .hdBtn span::after {
    content: " ";
    position: absolute;
    display: inline-block;
    height: 3px;
    width: 30px;
    background: #043E7F;
    top: -8px;
    border-radius: 2px;
}

header .hdBtn.close span {
    height: 0;
}

header .hdBtn.close span::before {
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    top: 0;
    background: #043E7F;
}

header .hdBtn.close span::after {
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    top: 0;
    background: #043E7F;
}
header .nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, .15);
    transform: translateX(105%);
    -webkit-transform: translateX(105%);
    -moz-transform: translateX(105%);
    transition: .5s;
    -webkit-transition: .5s;
}

header .nav.show {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
}

header .nav>li {
    position: relative;
}

header .nav>li>a {
    font-size: 16px;
    line-height: 44px;
    padding: 0 15px;
    display: block;
}

header .nav>li.on>a {
    color: #043E7F;
}
/* home */
.home_1 .swiper-slide img{
    width: 100%;
    height: 452px;
    object-fit: cover;
    display: block;
}
.home_2{
    padding-top: 12px;
}
.home_2 .fra{
    width: 25%;
    text-align: center;
    margin-bottom: 20px;
}
.home_2 .fra .icon{
    width: 60px;
    height: 60px;
    line-height: 58px;
    border-radius: 50%;
    background-color: #043E7F;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home_2 .fra .icon img{
    vertical-align: middle;
    transform: scale(.55);
    -webkit-transform: scale(.55);
}
.home_2 .fra .tit{
    font-size: 12px;
    line-height: 14px;
    margin-top: 7px;
}
.homeBanner{
    display: block;
}
.homeBanner img{
    width: 100%;
    display: block;
}
.homeForm{
    background-color: #024F9F;
    padding: 9px 15px;
}
.homeForm>div{
    position: relative;
    background-color: #fff;
    height: 43px;
    border-radius: 4px;
    padding: 0 42px 0 30px;
}
.homeForm input{
    width: 100%;
    height: 100%;
    font-size: 18px;
    background-color: #fff;
    border: 0;
}
.homeForm button{
    position: absolute;
    width: 19px;
    height: 19px;
    right: 16px;
    top: 12.5px;
    background-color: transparent;
    border: 0;
    padding: 0;
}
.homeForm button img{
    width: 19px;
    display: block;
}
.home_3{
    margin: 25px 0 30px 0;
}
.homeTitle{
    text-align: center;
}
.homeTitle .tit{
    font-size: 22px;
    line-height: 37px;
    height: 37px;
    color: #043E7F;
    font-weight: bold;
    background: url(../images/icon_16.png) no-repeat center;
    background-size: auto 100%;
}
.homeTitle .tit b{
    font-size: 12px;
}
.homeTitle .titEn{
    margin-top: 7px;
    font-weight: bold;
    line-height: 14px;
    color: #999999;
}
.home_3 .homeTitle{
    margin-bottom: 15px;
}
.home_31 span{
    float: left;
    width: calc(50% - 3px);
    text-align: center;
    line-height: 38px;
    font-size: 18px;
    background-color: #E5EBF2;
    margin-bottom: 6px;
    margin-right: 6px;
    border-radius: 4px;
    white-space:nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .5s;
    -webkit-transition: .5s;
}
.home_31 span:nth-of-type(2n){
    margin-right: 0;
}
.home_31 span.on{
    background-color: #043E7F;
    color: #fff;
}
.home_32>div{
    display: none;
}
.home_32>div.show{
    display: block;
}
.home_32{
    margin-top: 8px;
}
.proList .fra{
    width: calc(50% - 3px);
    margin-right: 6px;
    margin-bottom: 20px;
}
.proList .fra:nth-of-type(2n){
    margin-right: 0;
}
.proList .fra .mImg {
    border: 1px solid #E9E9E9;
    border-radius: 6px;
    position: relative;
    margin-bottom: 7px;
}
.proList .mImg img {
    width: 100%;
    display: block;
}
.proList .mImg .btn {
    position: absolute;
    bottom: 14px;
    line-height: 24px;
    width: 86px;
    left: 50%;
    margin-left: -43px;
    text-align: center;
    color: #fff;
    background-color: #B0261C;
    font-size: 12px;
    border-radius: 2px;
}
.proList .fra .tit {
    line-height: 16px;
    text-align: center;
    white-space:nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
}
.moreBtn{
    width: 100px;
    line-height: 32px;
    background: #B0261C;
    border-radius: 4px;
    text-align: center;
    display: block;
    margin: 0 auto;
    color: #fff;
    font-size: 15px;
}
.home_4{
    padding: 30px 0;
    background: url(../images/img_04.jpg) no-repeat center;
    background-size: 100% 100%;
}
.home_4 .homeTitle{
    margin-bottom: 20px;
}
.home_4 .homeTitle .tit {
    color: #fff;
    background-image: url(../images/icon_16_1.png);
}
.home_4 .fra{
    width: calc(50% - 8px);
    margin-right: 16px;
    margin-bottom: 15px;
    height: 101px;
    background-color: #024F9F;
    text-align: center;
    padding-top: 18px;
}
.home_4 .fra:nth-of-type(2n){
    margin-right: 0;
}
.home_4 .fra img{
    width: 44px;
    display: block;
    margin: 0 auto;
}
.home_4 .fra .tit{
    line-height: 14px;
    font-size: 12px;
    margin-top: 10px;
    color: #fff;
}
.home_4 .fra:nth-of-type(4n-2),
.home_4 .fra:nth-of-type(4n-1){
    background-color: rgba(255, 255, 255, 0.2);
}
.home_5{
    margin: 30px 0;
}
.home_5 .homeTitle{
    margin-bottom: 15px;
}
.home_5 .mImg{
    width: 100%;
    display: block;
    margin-bottom: 14px;
}
.home_5 .txt{
    line-height: 24px;
    text-align: center;
    font-size:15px;
}
.home_5 .btn{
    margin-top: 12px;
    display: flex;
    justify-content: center;
}
.home_5 .btn a{
    margin: 0 6px;
    width: 100px;
    line-height: 36px;
    text-align: center;
    color: #fff;
    background: #024F9F;
    display: block;
}
.home_5 .btn a:last-child{
    background-color: #B0261C;
}
.home_6{
    margin-bottom: 30px;
}
.home_6 .homeTitle{
    margin-bottom: 20px;
}
.home_6 .fra{
    width: 25%;
}
.home_6 .fra img{
    width: 100%;
    display: block;
}
.home_7{
    padding: 30px 15px;
    background-color: #F5F5F5;
}
.home_7 .homeTitle{
    margin-bottom: 15px;
}
.home_71 .swiper-slide .mImg img{
    width: 100%;
    object-fit: cover;
    display: block;
  	height:138px;
}
.home_71 .swiper-slide .tit{
    font-size: 18px;
    line-height: 18px;
    margin-top: 7px;
    white-space:nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}
.home_8{
    border: 5px solid #CDD8E5;
    box-shadow: 0px 0px 8px 0px rgba(4, 62, 127, 0.17);
    border-radius: 10px;
    box-sizing: border-box;
    margin: 20px auto;
    width: calc(100% - 30px);
    padding: 20px 15px;
}
.home_8 .tit{
    color: #000000;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 20px;
    margin-bottom: 6px;
}
.home_8 .tit span{
    color: #043E7F;
}
.home_8 .tits{
    width: 210px;
    line-height: 18px;
    background-color: #024F9F;
    color: #fff;
    text-align: center;
    font-size: 12px;
    margin: 0 auto 16px auto;
}
.home_8 .lable{
    display: flex;
    justify-content: center;
}
.home_8 .lable>div{
    margin: 0 9px;
    line-height: 16px;
    color: #043E7F;
}
.home_8 .lable>div img{
    width: 17px;
    vertical-align: middle;
    margin-top: -2px;
}
.home_8 input{
    width: 100%;
    margin-top: 10px;
    background-color: #F5F5F5;
    border-radius: 4px;
    height: 42px;
    border: 0;
    padding: 0 14px;
    font-size: 15px;
}
.home_8 button{
    width: 100%;
    border: 0;
    font-size: 15px;
    height: 42px;
    background: #043E7F;
    border-radius: 4px;
    color: #fff;
    margin-top: 12px;
}
.home_8 .notice{
    margin-top: 10px;
    width: 100%;
    height: 27px;
    background-color: #E8E8E8;
    border-radius: 4px;
    position: relative;
    padding: 0 20px 0 42px;
}
.home_8 .notice .icon{
    position: absolute;
    left: 20px;
    width: 15px;
    top: 7px;
}
.home_81{
    height: 27px;
}
.home_81 .swiper-slide{
    display: flex;
    justify-content: space-between;
    line-height: 27px;
}
.home_81 .swiper-slide>div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home_9{
    padding: 30px 15px;
    background: url(../images/img_07.jpg) no-repeat center;
    background-size: 100% 100%;
}
.home_9 .content{
    padding: 24px;
    box-shadow: 0px 0px 8px 0px rgba(4, 62, 127, 0.17);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.5);
}
.home_9 .rows{
    line-height: 24px;
    position: relative;
    min-height: 24px;
    padding-left: 82px;
    font-size: 18px;
    color: #043E7F;
}
.home_9 .rows .lable{
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: #043E7F;
}
.home_9 .rows .icon{
    line-height: 21px;
    height: 21px;
    width: 21px;
    text-align: center;
    border-radius: 50%;
    background-color: #B0261C;
    float: left;
    margin-right: 7px;
    margin-top: 1.5px;
}
.home_9 .rows .icon img{
    vertical-align: middle;
    height: 11px;
}
.home_9 .rows:first-child{
    margin-bottom: 16px;
}
/* footer */
footer{
    color: #666666;
    font-size: 12px;
    text-align: center;
    line-height: 16px;
    padding: 10px 0;
}
footer a {
    color: #666666;
}
.goTop{
    position: fixed;
    z-index: 99;
    width: 42px;
    height: 42px;
    background: #FFFFFF;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.17);
    border-radius: 21px;
    right: 15px;
    bottom: 80px;
    text-align: center;
    line-height: 40px;
}
.goTop img{
    width: 28px;
    vertical-align: middle;
    position: absolute;
    top: 8px;
    left: 8px;
}
.floatWindow {
    position: fixed;
    z-index: 99;
    background-color: #FFFFFF;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 60px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.17);
}
.floatWindow .tel{
    margin-top: 7px;
    margin-left: 5px;
    text-align: center;
}
.floatWindow .tel .icon{
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: #F0F0F0;
    border-radius: 50%;
    margin-bottom: 5px;
}
.floatWindow .tel .icon img{
    width: 16px;
    vertical-align: middle;
}
.floatWindow .tel p{
    font-size: 12px;
    color: #B0261C;
    line-height: 12px;
}
.floatWindow .btn{
    width: calc(100%);
    display: flex;
    justify-content: space-between;
    margin-top: 9px;
}
.floatWindow .btn a{
  	width: calc(50% - 5px);
    display: block;
    height: 42px;
    background: #FFFFFF;
    border: 2px solid #B0261C;
    border-radius: 21px;
    line-height: 38px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #B0261C;
    position:relative;
}
.floatWindow .btn a img{
    vertical-align: middle;
    width: 20px;
    margin-right: 5px;
}
.floatWindow .btn a:last-child{
    background-color: #B0261C;
    color: #fff;
}
.floatWindow .btn a .code{
    position:absolute;
    bottom:calc(100% + 15px);
    width:110px;
    left:50%;
    margin-left:-55px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.17);
    display:none;
}

/* bannerHd */
.bannerHd{
    position: relative;
}
.bannerHd img{
    width: 100%;
    display: block;
  	height:auto;
}
/* crumbs */
.crumbs{
    height: 42px;
    border-bottom: 1px solid #E8E8E8;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
}
.crumbs .link{
    line-height: 42px;
    font-size: 12px;
    color: #043E7F;
    width: calc(100% - 80px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.crumbs .link a {
    color: #043E7F;
}
.crumbs select{
    width: 76px;
    height: 28px;
    margin-top: 7px;
    border-radius: 2px;
    background-color: #043E7F;
    color: #fff;
    border-color: #043E7F;
    font-size: 12px;
    padding: 0 2px;
    -webkit-appearance: auto;
}
.crumbs select option{
    color: #fff;
}
.productDetail .crumbs select{
	display:none;
}
.bannerHd .crumbs{
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
}
.bannerHd .crumbs .link,
.bannerHd .crumbs .link a {
    color: #F0F2F5;
}
.bannerHd .crumbs .link{
    width: 100%;
}
/* product */
.productList{
	position:relative;
}
.product_1>div{
	display:none;
}
.product_1>div.show{
	display:block;
}
.product_1 .rows{
    padding: 15px 20px 15px 10px;
    display: block;
    border-bottom: 1px solid #E8E8E8;
}
.product_1 .rows .mImg{
    width: 145px;
    border: 1px solid #E9E9E9;
    border-radius: 6px;
}
.product_1 .rows .mImg img{
    width: 100%;
    display: block;
}
.product_1 .rows .info{
    width: calc(100% - 165px);
    padding-top: 9px;
}
.product_1 .rows .info .tit{
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}
.product_1 .rows .info .txt{
    font-size: 12px;
    color: #666666;
    line-height: 18px;
    height: 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 17px;
}
.product_1 .rows .info .btn a{
    display: block;
    width: 76px;
    text-align: center;
    line-height: 28px;
    font-size: 12px;
    color: #fff;
    background-color: #B0261C;
    border-radius: 2px;
    float: left;
}
.product_1 .rows .info .btn a:last-child{
    background-color: #043E7F;
    margin-left: 6px;
}
/* pages */
.pages{
    line-height: 52px;
    border-bottom: 1px solid #E8E8E8;
    color: #666666;
    font-size: 15px;
}
.pages a{
    padding: 0 10px;
    color: #666666;
}
.pages a img{
    vertical-align: middle;
    height: 16px;
    margin: 0 5px;
    margin-top: -2px;
}
.pages .page{
    width: calc(100% - 192px);
    text-align: center;
}
/* productDetail */
.productDetail_1{
    margin: 12px 0 35px;
}
.productDetail_1 .mImg{
    border: 1px solid #E9E9E9;
    border-radius: 4px;
    padding: 20px;
}
.productDetail_1 .mImg img{
    width: 100%;
    display: block;
}
.productDetail_1 .tit{
    font-size: 24px;
    line-height: 24px;
    font-weight: bold;
    margin: 24px 0 12px 0;
}
.productDetail_1 .info{
    line-height: 30px;
    font-size: 15px;
}
.productDetail_1 .open{
    line-height: 30px;
    font-size: 15px;
    color: #E63C2F;
}
.productDetail_1 .open img{
    vertical-align: middle;
    width: 13px;
    margin-left: 3px;
    transition: .5s;
    -webkit-transition: .5s;
}
.productDetail_1 .open span:nth-child(2){
    display: none;
}
.productDetail_1 .open.on span:nth-child(1){
    display: none;
}
.productDetail_1 .open.on span:nth-child(2){
    display: inline;
}
.productDetail_1 .open.on img{
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}
.productDetail_1 .fra{
    border: 1px solid #E8E8E8;
    padding: 10px 12px;
    line-height: 24px;
    font-size: 15px;
    color: #666666;
    display: none;
}
.productDetail_1 .fra img,
.productDetail_1 .fra table{
	max-width:100%;
  	width:100% !important;
}
.productDetail_1 .fra>div{
    margin-bottom: 20px;
}
.productDetail_1 .fra>div:last-child{
    margin-bottom: 0;
}
.productDetail_1 .fra.show{
    display: block;
}
.productDetail_1 .btn{
    margin-top: 16px;
}
.productDetail_1 .btn a{
    width: 125px;
    height: 42px;
    border: 1px solid #043E7F;
    border-radius: 2px;
    text-align: center;
    line-height: 42px;
    font-size: 15px;
    color: #043E7F;
    float: left;
}
.productDetail_1 .btn a:last-child{
    background-color: #043E7F;
    color: #fff;
    margin-left: 10px;
}
.productBanner{
    display: block;
}
.productBanner img {
    width: 100%;
    display: block;
}
.productDetail_2{
    margin-top: 30px;
}
.productDetail_2 .hd{
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: #043E7F;
    line-height: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E8E8E8;
    margin-bottom: 15px;
}
.productDetail_2 .hd span{
    margin-left: 5px;
    color: #CCCCCC;
    font-size: 12px;
}
.productDetail_2 .hd::before{
    content: "";
    position: absolute;
    width: 70px;
    height: 2px;
    background-color: #043E7F;
    left: 0;
    bottom: 0;
}
.productDetail_21{
    padding-bottom: 16px;
    margin-bottom: 10px;
}
.productDetail_21 .fra{
    display: block;
}
.productDetail_21 .fra img{
    width: 100%;
    display: block;
}
.productDetail_21 .fra p{
    margin-top:7px;
    line-height: 18px;
    font-size: 15px;
    width: 100%;
    text-align: center;
    padding: 0 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}
.productDetail_21 .swiper-pagination{
    bottom: 0;
}
.productDetail_21 .swiper-pagination-bullet{
    width: 4px;
    height: 4px;
    background: #999999;
    border-radius: 2px;
    transition: .5s;
    -webkit-transition: .5s;
    opacity: 1;
}
.productDetail_21 .swiper-pagination-bullet-active{
    width: 20px;
    background-color: #043E7F;
}
/* tNav */
.tNav{
    padding: 13px 10px 5px 10px;
    border-bottom: 1px solid #E8E8E8;
}
.tNav a {
    width: calc(33.333% - 6px);
    margin-right: 9px;
    float: left;
    border: 1px solid #CDCDCD;
    border-radius: 2px;
    text-align: center;
    line-height: 35px;
    height: 35px;
    margin-bottom: 8px;
}
.tNav a:nth-of-type(3n){
    margin-right: 0;
}
.tNav a.on{
    border-color: #043E7F;
    background-color: #043E7F;
    color: #fff;
}
/* news */
.news_1 {
    padding: 0 10px;
}
.news_1 .rows{
    display: block;
    background-color: #fff;
    margin-top: 12px;
    padding: 20px 10px;
}
.news_1 .rows .info{
    width: calc(100% - 120px);
}
.news_1 .rows .time{
    font-size: 12px;
    color: #999999;
    line-height: 12px;
    margin-bottom: 8px;
}
.news_1 .rows .tit{
    font-size: 15px;
    line-height: 15px;
    font-weight: bold;
    margin-bottom: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news_1 .rows .txt{
    font-size: 12px;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news_1 .rows .mImg{
    width: 100px;
    height: 79px;
    object-fit: cover;
}
/* about
.about .container{
   padding:0 15px;
    margin-top:20px;
} */
.about_1{
    margin-top: 20px;
}
.about_1 .fra{
    width: calc(50% - 7.5px);
    margin-right: 15px;
    margin-bottom: 14px;
    text-align: center;
}
.about_1 .fra:nth-of-type(2n){
    margin-right: 0;
}
.about_1 .fra a{
    display: block;
    vertical-align: middle;
    line-height:120px;
}
.about_1 .fra img{
    max-width: 100%;
    max-height: 120px;
    object-fit: cover;
}
.about_1 .fra p{
    margin-top: 8px;
    line-height: 15px;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* contact */
.contact_1{
    margin-top: 40px;
}
.contact_1 .tit{
    font-size: 20px;
    line-height: 20px;
    color: #043E7F;
    margin-bottom: 20px;
    font-weight: bold;
    padding-bottom: 12px;
    position: relative;
}
.contact_1 .tit::before{
    content: "";
    width: 40px;
    height: 2px;
    background-color: #043E7F;
    position: absolute;
    left: 0;
    bottom: 0;
}
.contact_1 .rows{
    background-color: #fff;
    margin-bottom: 5px;
    padding: 12px 0 12px 132px;
    position: relative;
}
.contact_1 .rows .name{
    font-size: 15px;
    line-height: 15px;
    position: absolute;
    top: 19px;
    left: 16px;
    font-weight: bold;
    width: 110px;
}
.contact_1 .rows .name span{
    font-size: 12px;
    font-weight: 400;
}
.contact_1 .rows .tel{
    display: block;
    margin-bottom: 8px;
}
.contact_1 .rows .tel .nums{
    width: 120px;
    height: 27px;
    background: #B4B4B4;
    border-radius: 13px;
    text-align: center;
    line-height: 27px;
    color: #fff;
}
.contact_1 .rows .tel .icon{
    width: 27px;
    height: 27px;
    background: #B0261C;
    border-radius: 13px;
    line-height: 25px;
    text-align: center;
    margin-left: 10px;
}
.contact_1 .rows .tel .icon img{
    vertical-align: middle;
    width: 13px;
}
.contact_1 .rows .tel:last-child{
    margin-bottom: 0;
    justify-content: space-between
}
.contact_2{
    background-color: #fff;
    padding: 16px 30px 20px 12px;
    margin-bottom: 15px;
}
.contact_2 .info>div{
    position: relative;
    padding-left: 42px;
    line-height: 18px;
    margin-bottom: 10px;
}
.contact_2 .info>div span{
    position: absolute;
    left: 0;
    top: 0;
    color: #666666;
}
.contact_2 .qrCode{
    margin-top: 20px;
}
.contact_2 .qrCode>div{
    margin-right: 40px;
    float: left;
}
.contact_2 .qrCode>div p{
    color: #666666;
    line-height: 14px;
    margin-bottom: 7px;
}
.contact_2 .qrCode>div img{
    width: 110px;
}
.contact_2 .qrCode>div:last-child{
    margin-right: 0;
}
.contact_3{
    width: 100%;
    display: block;
    height: 230px;
}
.down-item{
    padding:15px;
}
.down-item-title {
    width: calc(100% - 108px);
    min-width: auto;
}
.down-item-down{
    margin-right: 0;
    margin-top: 0;
}
.down-item-down a {
    padding: 0;
    width: 96px;
    line-height: 34px;
    text-align: center;
    background-color: #043E7F;
    font-size: 14px;
    border-radius: 17px;
}
.page a {
    padding: 5px 14px;
}
.product-form input,
.product-form textarea{
    margin: 0 0 10px 0;
    width: 100%;
}
.cont>div:nth-of-type(2) {
    padding: 0px 15px;
}
.product-form img{
    height: 36px;
    margin-top: -3px;
    margin-left: 3px;
}
.button-sub button {
    padding: 0;
    font-size: 16px;
    width: 100%;
    height: 44px;
    border-radius: 4px;
}
.product-form {
    padding-bottom: 30px;
    margin-top:20px;
}
.news .cont-box-titlt{
    margin: 22px 28px;
    border-bottom:0;
}
.news .cont-box-titlt,
.news .cont-box-titlt h3{
    height: auto;
    line-height: inherit;
}
.news .cont img{
    max-width:100%;
    display:block;
    margin:0 auto;
}
.tc{
  	display: none;
	height: 266px;
    width: 310px;
    background: white;
    z-index: 10;
    margin-top: -454px;
    margin-left: 18px;
    position: absolute;
    border-radius: 15px;
}
.close{
	    position: absolute;
    right: 10px;
    top: 3px;
    z-index: 100px;
    z-index: 100;
    cursor: pointer;
}
.wx{
  text-align: center;
    margin-top: 25px;
} 
.fz{
	text-align: center;
    margin-top: 8px;
    font-size: 20px;
    font-weight: 200px;
    font-weight: bold;
}
.wxh{
	color: #8A8A8A;
    font-size: 15px;
    text-align: center;
}
.tj{
	    color: #8A8A8A;
    font-size: 15px;
    text-align: center;
}
.zd{
	width: 126px;
    height: 41px;
    line-height: 40px;
    text-align: center;
    background: #043E7F;
    font-size: 17px;
    color: white;
    margin-left: 90px;
    border-radius: 9px;
    margin-top: 8px;
}