@import url('bootstrap.min.css');
@import url('swiper.min.css');
@import url('animation.css');
@import url('base.css');
@import url('common.css');
@import url('fontawesome.min.css');

/*banner*/
.banner .swiper-slide{
	position: relative;
}

.banner .swiper-slide .div-text{
	position: absolute;
    left: 45px;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 99;
    color: #fff;
    display: flex;
    align-items: center;
    transform: translateY(-45px);
}

.banner .swiper-slide .div-text h2.title{
	font-size: 70px;
	font-weight: bold;
	font-family: 'chuangke';
	text-transform: uppercase;
	letter-spacing: 3px;
	word-spacing: 5px;
	margin-top: 15px;
}

.banner .swiper-pagination .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	border-radius: 0;
	background-color: #fff;
	position: relative;
	margin: 0 10px;
	width: 14px;
    height: 14px;
    background: unset;
    border: 1px solid #fff;
}

.banner .swiper-pagination .swiper-pagination-bullet:after{
	position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background-color: #fff;
    top: 3px;
    left: 3px;
    border-radius: 50%;
}

.sbtn{
    opacity: 0;
    transition: all .3s ease;
}

.banner:hover .sbtn{
    opacity: 1;
}

.sbtn:after{
    font-size: 20px;
    padding: 15px;
    background-color: rgba(0,0,0,.6);
    color: #fff;
    transition: all .3s ease;
}

.sbtn:hover:after{
    background-color: var(--primary);
}

.commonTit{
    margin-bottom: 45px;
}

.commonTit p.p1{
    font-size: 36px;
    font-family: 'AlibabaPuHuiTi-3-85-Bold';
}

.commonTit p.p2{
    font-size: 20px;
    line-height: 1;
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase;
} 

.commonTit p.p2:after{
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    background-color: var(--primary);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.aboutCon .leftImg{
    padding: 35px 0 85px 35px;
    background-image: url(../images/img2.jpg);
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.aboutCon .leftImg .div-img{
    border: 1px solid #ccc;
}

.aboutCon .leftImg .div-img:hover img{
    transform: scale(1.1);
}

.aboutCon .rightText{
    padding-left: 35px;
}

.aboutCon .rightText p.title{
    font-size: 36px;
    font-family: 'AlibabaPuHuiTi-3-85-Bold';
    margin: 35px 0;
    color: #000;
}

.aboutCon .rightText .des{
    text-indent: 30px;
    font-size: 16px;
    color: #3d3c3c;
    line-height: 36px;
    font-family: 'AlibabaPuHuiTi-3-45-Light';
}

.serviceList{
    max-width: 1000px;
    margin: auto;
}

.serviceList .item{
    max-width: 380px;
    width: 20%;
}

.serviceList .item a{
    display: block;
    width: 100%;
    text-align: center;
}

.serviceList .item .div-img img{
    width: 100%;
    transition: all 2s ease;
}

.serviceList .item .div-text{
    margin-top: 45px;
    margin-bottom: 35px;
    padding: 0 15px;
    line-height: 1.2;
    color: #333;
    height: 50px;
}

.serviceList .item .div-text p.title{
    font-size: 18px;
    padding-top: 15px;
    font-family: 'AlibabaPuHuiTi-3-85-Bold';
    position: relative;
}

.serviceList .item .div-text p.title:after{
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    background-color: var(--primary);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.serviceList .item:hover .div-img img{
    transform: scale(1.3);
}

.pcateList .item{
    margin-bottom: 30px;
}

.pcateList .item a{
    display: block;
    position: relative;
}

.pcateList .item .div-text{
    position: absolute;
    top: 50%;
    right: 45px;
    transform: translateY(-50%);
}

.pcateList .item p{
    font-size: 32px;
    width: 320px;
    text-align: center;
    font-family: 'AlibabaPuHuiTi-3-85-Bold';
    display: inline-block;
    padding: 8px 25px;
    background-color: rgba(255,255,255,.8);
    color: var(--main);
    border-radius: 8px;
}

.pcateList .item.itemr .div-text{
    right: unset;
    left: 45px;
}

.pcateList .item .div-img img{
    transition: all 2s ease;
}

.pcateList .item:hover .div-img img{
    transform: scale(1.1);
}

.sySc .pcateList .item p{
    width: 400px;
}

.newsList .item a{
    display: block;
    box-shadow: 0 0 15px rgba(0,0,0,.1);
    border-radius: 6px;
    padding: 35px 15px;
    background-color: #fff;
    transition: all .3s ease;
}

.newsList .item .title{
    font-size: 20px;
    color: #333;
    font-family: 'AlibabaPuHuiTi-3-85-Bold';
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box!important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 35px;  
}

.newsList .item .readMore{
    color: #666;
    font-size: 14px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.newsList .item a:hover{
    background-color: var(--primary);
    color: #fff;
}

.newsList .item a:hover .title,.newsList .item a:hover .readMore{
    color: #fff;
}

.more a{
    display: inline-block;
    padding: 10px 45px;
    border: 1px solid #333;
    color: #333;
    font-size: 20px;
    transition: all .4s ease;
}

.more a:hover{
    color: #fff;
    background-color: var(--primary);
    border: 1px solid var(--primary);
}

.newsSec .more{
    margin-top: 45px;
}

.syMail{
    background-image: url(../images/img27.jpg);
    background-repeat: repeat-x;
    padding-bottom: 45px;
    font-size: 14px;
    background-position: bottom;
}

.syMail .tit{
    font-size: 20px;
    padding-right: 25px;
    margin-right: 25px;
    border-right: 1px solid #eee;
}

.syMail input{
    border: 1px solid #333;
    padding: 2px 15px;
}

.syMail .name_1{
    margin-right: 25px;
}

.syMail .img_4{
    border: unset;
    padding: 0;
    margin-left: 10px;
}

.syMail .name_1{
    margin-left: 5px;
}

.mainFooter{
    background-color: #22498e;
    padding: 65px 0 45px 0;
    color: #fff;
}

.mainFooter .dtb{
    display: inline-block;
    margin:  auto;
    padding-bottom: 25px;
}

.mainFooter .dtb .item{
    margin: 0 15px;
}

.mainFooter .dtb .item.item1 .div-img img{
    max-width: 113px;
    margin: auto;
}

.copyright{
    font-size: 12px;
    font-family: 'AlibabaPuHuiTi-3-45-Light';
}

.copyright a{
    color: #fff;
   
}

.copyright .menus{
    margin-bottom: 10px;
    line-height: 1;
}

.copyright .menus .items a:not(:last-child){
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #fffeee;
    margin-bottom: 5px;
}

.copyright .cr a{
    display: inline-block;
    margin: 0 3px;
}

/*ny*/
table{ width:100%;border:1px solid #ccc; border-bottom:0; border-left:0; margin-top:10px;}
table tr td{ padding:11px; font-size:13px; color:#333; line-height:50px;border:1px solid #ccc; border-top:0; border-right:0;}

.pageTit{
    height: 360px;
    background-size: cover;
/*    background-attachment: fixed;*/ 
}

.nyAbout{
    padding-top: 65px;
}

.jj_nr{
    font-family: 'AlibabaPuHuiTi-3-45-Light';
    line-height: 1.8;
    color:#3d3c3c;
}

.jj_nr a{
    color:#3d3c3c;
}

.nyFl{
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #eee;
}

.nyFl a{
    display: inline-block;
    margin: 5px 10px;
    padding: 10px 25px;
    font-size: 14px;
    background-color: var(--main);
    color: #fff;
    font-family: 'AlibabaPuHuiTi-3-45-Light';
}

.nyFl a.on{
    background-color: var(--primary);
}

.jj_nr1{
    padding-bottom: 125px;
}

.yffw_box p{
        font-size: 14px;
    color: #333;
    line-height: 34px;
}

.yffw_box h1{
        font-size: 17px;
    color: #fff;
    background-color: #0f3365;
    padding-left: 20px;
    line-height: 42px;
    margin-bottom: 10px;
    margin-top: 40px;
}

.nyFl2 a{
    min-width: 225px;
    text-align: center;
}

.nyNews{
    padding-bottom: 125px;
}

.nynewsList .item a{
    display: block;
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 1px dashed #ccc;
}

.nynewsList .item svg{
    width: 24px;
    height: 24px;
    display: inline-block;
    margin-right: 5px;
}

.nynewsList .item span{
    display: inline-block;
    min-width: 120px;
    font-size: 14px;
    color: #ccc;
    text-align: right;

}

.nynewsList .item a:hover,.nynewsList .item a:hover span{
    color: var(--primary);
}

.nynewsList .item a:hover svg{
    fill: var(--primary);
}

.conDetail h2.title{
    font-size: 20px;
    font-family: 'AlibabaPuHuiTi-3-85-Bold';
}

.conDetail .meta{
    margin: 35px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    text-align: center;
}

.conDetail .content{
    min-height: 250px;
    margin-bottom: 35px;
}

.prev-next{
    padding-top: 25px;
    border-top: 1px solid #ccc;
}

.prev-next a:hover{
    color: var(--primary);
}

.fhBack{
    margin-top: 25px;   
}

.fhBack a{
    display: block;
    background-color: #eee;
    padding: 10px 0;
    text-align: center;
    font-family: 'AlibabaPuHuiTi-3-45-Light';
    transition: all .3s ease;
}

.fhBack a:hover{
    background-color: var(--primary);
    color: #fff;
}

 
.counter{
  font-size: 14px;
  text-align: center;
  margin-top: 15px;
}
 
 .counter font{
    display: inline-block;
    vertical-align: middle;
 }

.counter span {
  display: inline-block; /* 使数字可以实现渐变动画 */
  padding: 2px 10px;
  font-size: 18px; /* 设置数字的字号 */
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
  background: linear-gradient(to right, #006bff,#fff,#f18e00); /* 设置渐变背景 */
  background: -moz-linear-gradient(to right, #006bff,#fff,#f18e00);
  background: -webkit-linear-gradient(to right, #006bff,#fff,#f18e00);
  background: -o-linear-gradient(to right, #006bff,#fff,#f18e00);
  background: -ms-linear-gradient(to right, #006bff,#fff,#f18e00);
  background-size: 400%; /* 渐变背景的大小 */
  background-clip: text; /* 渐变背景只应用在文本上 */
  color: transparent; /* 设置文本颜色为透明，以显示渐变效果 */
  animation: animateGradient 2s ease infinite; /* 应用渐变动画 */
  animation-delay: 1s; /* 动画延迟1秒开始 */
  position: relative;
  z-index: 1;
}

.counter div{
    background-color: #000;
    margin: 0 5px;
}

 
@keyframes animateGradient {
  0% {
    background-position: 0%; /* 渐变从左向右 */
  }
  50% {
    background-position: 100%; /* 渐变中点 */
  }
  100% {
    background-position: 0%; /* 渐变回到起点 */
  }
}

.leftSlider{
    display: block;
    max-width: 260px;
    background-color: #f0efef;
    border-bottom: 0px solid #a8a7a7;
}

.leftSlider .title{
    font-size: 23px;
    font-family: 'AlibabaPuHuiTi-3-85-Bold';
    color: #666;
    line-height: 72px;
    text-align: center;
    border-bottom: 7px solid #a8a7a7;
    background-image: url(../images/img72.jpg);
}

.leftSlider ul{
    display: block;
    padding: 25px 20px;
    border-bottom: 6px solid #a8a7a7;
}

.leftSlider ul li{
    display: block;
    margin-bottom: 10px;
}

.leftSlider ul li a{
    display: block;
    background-color: #fff;
    padding: 10px 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,.08);
    color: #333;
    position: relative;
    transition: all .3s ease;
    z-index: 1;
}

.leftSlider ul li a:after{
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--primary);
    z-index: -1;
    transition: all .4s ease;
}

.leftSlider ul li a:hover{
    color: #fff;
}

.leftSlider ul li a:hover:after{
    width: 100%;
}

.pall{
    font-family: 'AlibabaPuHuiTi-3-55-Regular';
}

.pall table{
    min-width: 450px;
    font-size: 16px;

}

.pall table .thtit{
    background-color: #eee;
    font-family: 'AlibabaPuHuiTi-3-85-Bold';
    font-size: 18px;
    line-height: 1;
}

.pall table .thtit:hover{
    background-color: #eee;
}

.plistItem{
    margin-bottom: 25px;
}

.plistItem .title{
    text-align: center;
    padding: 15px 25px;
    font-family: 'AlibabaPuHuiTi-3-85-Bold';
    font-size: 18px;
    background-color: var(--main);
    color: #fff;
}

 .plistItem .table th{
    padding: 15px 15px;
 }

.plistItem .table td{
    padding: 0 15px;
    vertical-align: middle;
}

.plistItem table tr td{
    font-size: 16px;
}

.plistItem table tr td a{
    line-height: 1.5;
    color: #333;

}

.plistItem table tr td a:hover{
    color: var(--primary);
}

.plistItem table tr:hover{
    background-color: #f5f5f5;
}

.proDetail table{
    width: 100%;
}

.proDetail table tr td{
    min-width: 100px;
}

.proDetail table tr td:nth-child(1){
    background-color: #eee;
}

.proDetail .title{
    background-color: var(--main);
    color: #fff;
    margin-bottom: 15px;
    font-family: 'AlibabaPuHuiTi-3-85-Bold';
    padding: 10px 0;
}

.contactInfo .conLeft .item{
    padding: 45px 25px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,.08);
    margin-bottom: 25px;
    color: #333;
}

.contactInfo .conLeft .item p.title,.contactInfo .conLeft .item p.title a{
    font-size: 26px;
    color: #333;
    margin-bottom: 15px;
    font-family: 'AlibabaPuHuiTi-3-85-Bold';
}

.contactInfo .conLeft .item .des p{
    margin-bottom: 10px;
}

.contactInfo .conLeft .item .des p a{
    color: #333;
}

.contactInfo .conLeft .item .des p a:hover{
    color: var(--main);
}

.contactInfo .conLeft .item .des p span:nth-child(1){
    margin-right: 5px;
}

.pagination{
    justify-content: center;
    margin-bottom: 45px;
    margin-top: 45px;
}

.pagination a{
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 32px;
    text-align: center;
    border-radius: 3px;
    border:1px solid #eee;
    margin: 0 3px;
}

.pagination a.page-num-current,.pagination a:hover{
    color: #fff;
    background-color: var(--primary);
}

.pagination a:nth-child(1) svg{
    transform: rotate(180deg);
}

.nyFw{
    padding-bottom: 85px;
}


























