@charset "utf-8";

/*--------------------------------------------------------------------------通用样式--------------------------------------------------------------------------*/
.hoverable { position: relative; overflow:hidden; z-index: 0; transition: all 0.3s ease; }
.hoverable:hover { transform:translateY(-5px);  }
.anim { transform: translateY(-50%) translateX(-50%); position: absolute; top: 50%; left: 50%; z-index: -1; }
.anim:before {  position: relative; content: ""; display: block; margin-top: 100%; }
.anim:after { content: ""; position: absolute; top: 0; bottom: 0; left: 0; right: 0; border-radius: 50%; }
.hoverable .anim { animation: anim-out .75s; }
.hoverable .anim:after { animation: anim-out-pseudo .75s; }
.hoverable .anim, .hoverable .anim:after { animation-iteration-count: infinite; animation-duration: 1.3s; }
@keyframes anim-in { 0%{width:0}100%{width:100%}}
@keyframes anim-in-pseudo { 0%{background:rgba(0,0,0,0.25)}100%{background:transparent} }
@keyframes anim-out { 0%{width:0}100%{width:100%} }
@keyframes anim-out-pseudo { 0%{background:rgba(0,0,0,0.25)}100%{background:transparent} }

.green-more { display: inline-block; box-sizing: border-box; padding: 0 30px; height:60px;  line-height:60px; border-radius: 60px;  background: #2b8ab5;  color:#fff; font-size: 16px; }
.green-more i { display: inline-block; font-size: 16px; margin-left:60px; }

.hdiv { width:100%; height: 100px; }
.mhdiv { width:100%; height:60px; display: none; }
.mask { width:100%; height:100%; overflow:hidden; cursor:pointer; background:rgba(0,0,0,0.8); position:fixed; left:0; top:0; z-index:999;}
.pc-cc { display: block; } 
.m-cc { display: none; }

.sp-pn { position: absolute; top: 50%; margin-top:-30px; z-index: 9;  cursor: pointer; width:60px; height: 60px; line-height: 60px; border-radius: 60px; background: #2b8ab5; text-align: center;  color:#fff; transition: all .3s ease; }
/* .sp-pn:hover { background: #2b8ab5; } */
.sp-prev  {left: 0; }
.sp-next {right: 0; }
.sp-pn i {display:inline-block; line-height:60px; font-size: 18px; vertical-align: top;  }

.sp-bot.swiper-pagination { width:100%; bottom:0; }
.sp-bot .swiper-pagination-bullet { width:10px; height: 10px; background:rgba(255,255,255,0.5); opacity: 1; margin:0 10px!important; border-radius:10px;   }
.sp-bot .swiper-pagination-bullet-active { width:40px;  background:rgba(255,255,255,1); }

.sp-bot-green .swiper-pagination-bullet { background:#ccc; }
.sp-bot-green .swiper-pagination-bullet-active { background:#2b8ab5; }

.layui-input-block { margin-left:0; }
.layui-form .layui-input-wrap { line-height: 50px; }
.layui-form .layui-input { height: 50px; padding:0 20px;  }
.layui-form .layui-textarea {  padding:10px 20px;  line-height: 180%;  min-height: 16vh;  }
.layui-form em { line-height: 50px; margin: 0 20px;}

.rotating { transform: rotate(360deg); transform-style: preserve-3d; animation: rotate 5s linear infinite; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@media all and (max-width:981px) {
	
	.pc-cc { display: none; }
	.m-cc { display: block; }
	
	.green-more { padding:0 0.48rem;  height: 1.1rem; line-height: 1.1rem; font-size: 0.38rem;  }
	.green-more i { font-size:0.42rem; margin-left:0.72rem; }
	
	.sp-pn { margin-top:-0.55rem; width:1.1rem; height: 1.1rem; line-height: 1.1rem;   }
	.sp-pn i {  line-height:1.1rem; font-size: 0.42rem;   }
	
	.sp-bot .swiper-pagination-bullet { width:8px; height: 8px; margin: 0 5px!important; }
	.sp-bot .swiper-pagination-bullet-active { width:20px; }
	
	.layui-form .layui-input {  height:1.1rem; font-size: 0.38rem; padding:0 0.36rem; }
	.layui-form em { float:none; margin:0 0.36rem; line-height:1.1rem; }
	.layui-form .layui-input-wrap { line-height: 1.1rem;}
	.layui-form .layui-textarea {  font-size: 0.38rem; padding:0.24rem 0.36rem; }
	.layui-form-select dl dd { font-size: 0.38rem;}
	
}

/*--------------------------------------------------------------------------导航--------------------------------------------------------------------------*/
.header { width: 100%; position: fixed; top:0; z-index: 99;  }
.header .hbox { align-items: center; }
.header .hlogo .hlbox { display: table; height: 100px; }
.header .hlogo .hlbox .img img { max-height: 60px; }
.header .hlogo .hlbox .img img.white { display: block; }
.header .hlogo .hlbox .img img.green { display: none; }

.commenu, .commenu ul, .commenu ul li, .commenu ul li a, .commenu .menu-button { position:relative; box-sizing:border-box; }
.commenu .menu-button { display:none; }
.commenu>ul>li { float:left; margin-left:60px; }
.commenu>ul>li> a { display: inline-block; line-height: 100px; color:#fff; font-size: 18px; font-weight: 500; border-radius: 50px; }
.commenu>ul>li> a span { position: relative; display:inline-block; }
.commenu>ul>li> a span::after { content: " ";  position: absolute; bottom: 0;  left: 0; width:0;  height: 2px; background: #2b8ab5;  z-index: 2; transition: all 0.3s ease;}
.commenu>ul>li> a:hover span::after { width:100%; }
.commenu ul li ul { width: 180px; border-radius: 10px; background:#fff; overflow: hidden; box-shadow: 0 0 20px rgba(0,0,0,0.05); position:absolute; left:-74%; top:130px; z-index: 99;  visibility: hidden; opacity: 0; transition: all 0.3s ease; }
.commenu ul li:hover>ul { visibility: visible; opacity: 1; top:100px; }
.commenu ul li ul li { float:left; width: 100%; line-height: 180%; border-bottom:1px solid #eee; }
.commenu ul li ul li:last-child { border: none; }
.commenu ul li ul li a span { margin:0;  font-size: 16px;  }
.commenu ul li ul li:hover ul { top:0;  }
.commenu ul li ul li a { width:100%; text-align: center; padding:10px; display: inline-block; }
.commenu ul li ul li a:hover { background: #2b8ab5; color:#fff; transition: none; }

.header.active .hlogo .hlbox .img img.white { display: none; }
.header.active .hlogo .hlbox .img img.green { display: block; }
.header.active .commenu>ul>li> a  { color:#333; }

@media only screen and (max-width:981px){
	.header { position: fixed;}
	.header .hbox { width: 100%; height: 60px; }
	.header .hlogo, .header .hmenu { float:none;}
	.header .hlogo { position: absolute; left:0.36rem; top:0; z-index: 1;  }
	.header .hlogo .hlbox { height: 60px; }
	.header .hlogo .hlbox img { max-height:30px;}

	.header .hmenu { width: 60px; height: 60px; float: right; position:fixed; top:0; right:0; z-index: 9; }
	.commenu {width:100%; }
	.commenu ul.menubox {  width:calc(100% - 60px)!important; height: 100vh; overflow-y:scroll; position: fixed; left:-100%; z-index: 999;  /*display:none;*/ visibility: hidden; opacity: 0; transition: all 0.3s ease; }
	.commenu ul.menubox.open { left:0; opacity: 1;  visibility: visible; }
	.commenu ul { width:100%!important;  background: #333;  }
	.commenu ul li:hover ul { position: relative; border-top: 1px solid rgba(255,255,255,0.1); top:0; }
	.commenu ul li {  width:100%!important; line-height:normal; border-bottom: 1px solid rgba(255,255,255,0.1); margin:0; padding:0 0.64rem; }
	.commenu>ul>li, .commenu>ul>li:last-child { margin: 0; }
	.commenu>ul>li> a { padding:0; line-height: 1.4rem; font-size: 0.38rem; color:#fff; }
	.commenu>ul>li> a:hover { background: none; }
	.commenu>ul>li> a span::after { display: none; }

	.commenu ul li.has-sub { padding:0; }
	.commenu ul li.has-sub>a { padding:0 0.64rem; }
	.commenu ul li ul { position: relative; left:0!important;; opacity: 1; visibility: inherit; top:0; background: none; border-radius: 0; box-shadow:none; border-top:1px solid rgba(255,255,255,0.1); }
	.commenu ul li ul li { border-bottom: 1px solid rgba(255,255,255,0.1);}
	.commenu ul li ul li a { color:#fff; }
	.commenu ul li ul li a span { font-size:0.38rem; }
	.commenu ul li ul li a:hover { background: none; }

	.commenu .menu-button { display:block; width:60px; height: 60px; float:right; }
	.hamburger-menu { width:60px;height:60px; display: flex; align-items:center; justify-content: center; }
	.hamburger-menu div {width:24px; height:2px; border-radius:2px; background:#fff; position:relative;z-index:1001; transition: all 0.3s ease;}
	.hamburger-menu div:before,.hamburger-menu div:after{content:''; position:absolute; width:inherit; height:inherit; background:#fff; border-radius:2px; transition: all 0.3s ease;}
	.hamburger-menu div:before{transform:translateY(-8px); }
	.hamburger-menu div:after{transform:translateY(8px); }
	.menu-opened .hamburger-menu div{ background: transparent;}
	.menu-opened .hamburger-menu div:before{ transform: translateY(0) rotate(-45deg);}
	.menu-opened .hamburger-menu div:after{ transform: translateY(0) rotate(45deg);}
	.commenu .submenu-button{ position:absolute; z-index:10; right:0; top:0;display:block; border-left: 1px solid rgba(255,255,255,0.1); width:1.4rem; height:1.4rem; line-height: 1.4rem;  }
	.commenu .submenu-button::before{content:'';position:absolute; left:0.5rem; top:0.7rem; display:block; width:0.4rem; height:1px; background:#fff; z-index:99}
	.commenu .submenu-button::after{content:'';position:absolute;  left:0.7rem; top:0.5rem; display:block; width:1px; height:0.4rem; background:#fff; z-index:99}
	.commenu .submenu-button.submenu-opened::after { transform: translateY(0) rotate(90deg); opacity: 0; }
	
	.header.active .hamburger-menu div  { background: #2b8ab5; }
	.header.active  .menu-opened .hamburger-menu div { background: transparent;}
	.header.active .hamburger-menu div:before, .header.active .hamburger-menu div:after { background: #2b8ab5;}
	.header.active .commenu>ul>li> a { color:#fff; }
	.header.active .commenu ul li.has-sub>a { color:#fff; }
	
}

/*--------------------------------------------------------------------------首页--------------------------------------------------------------------------*/

.fp-watermark { display: none; }
.fp-slidesNav.fp-bottom { text-align: center; bottom:40px; }
.fp-slidesNav ul li { width:auto; height: auto; margin:0 10px; }
.fp-slidesNav ul li a span {display: inline-block; width:10px; height: 10px; border-radius: 10px; background: rgba(255,255,255,0.5); margin:0; position: relative; left:auto; top:auto; }
.fp-slidesNav ul li a span.fp-sr-only { display: none; }
.fp-slidesNav ul li:hover a span { margin:0;  }
.fp-slidesNav ul li a.active span, .fp-slidesNav ul li:hover a.active span { width:30px; height: 10px; border-radius: 10px; margin:0; background: rgba(255,255,255,1); }

.home-nav {  position: absolute;  top: 50%; left: 40px; transform: translateY(-50%);  z-index: 98; }
.home-nav ul li { margin:20px 0; }
.home-nav ul li a { color:#fff; position: relative; padding:0 0 0 24px; transition: all 0.3s ease; }
.home-nav ul li a span { opacity: 0; transition: all 0.3s ease; }
.home-nav ul li a::before { content: " "; box-sizing: border-box; position: absolute; top: calc(50% - 4px);  left: 0; width:10px;  height: 10px; border-radius: 10px; border:1px solid #fff;  z-index: 2; }
.home-nav ul li:hover a::before , .home-nav ul li.active a::before { background: #fff; }
.home-nav ul li:hover a span, .home-nav ul li.active a span { opacity: 1; }
.home-nav.active ul li a { color:#333; }
.home-nav.active ul li a::before { border:1px solid #2b8ab5; }
.home-nav.active ul li:hover a::before , .home-nav.active ul li.active a::before { background: #2b8ab5; }

.i-banner { padding:0; }
.ibanwarp .picbox {  width: 100%; height: 100vh; overflow: hidden; } 
.ibanwarp .bg { width: 100%; height: 100vh; position: relative; display: table;  background-position: center; background-repeat: no-repeat; background-size: 120%;  transition: all 3s ease-in-out;  }
/* .ibanwarp .bg::after { width:100%; height: 100%; content: ""; left: 0; top: 0; opacity: 0.3; position: absolute; background: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0)); z-index: -1; } */
.ibanwarp .bg .txt h2 {font-size: 48px; margin:20px 0 0; }
.ibanwarp .bg .txt h3 { font-size: 30px; }
.ibanwarp .bg .list { margin:80px 0 0; }
.ibanwarp .bg .list ul { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; }
.ibanwarp .bg .list ul li { width:200px; height: 200px; display: table; position: relative; margin:0 30px; }
.ibanwarp .bg .list ul li .item { display: table-cell; vertical-align: middle; }
.ibanwarp .bg .list ul li .item i { font-size: 50px; }
.ibanwarp .bg .list ul li .item h5 { font-size: 24px; margin:20px 0 0; }
.ibanwarp .bg .list ul li .item img { width: 100%; height: 100%; object-fit: cover; object-position:  center center; position: absolute; left:0; top:0; z-index: 1;  }
.ibanwarp .sp-bot { bottom:40px!important; }
.ibanwarp .slick-active .bg { background-size: 100%; }

.slick-dots { bottom:40px; }
.slick-dots li { width:10px; height: 10px; border-radius: 10px; margin: 0 10px; background: rgba(255,255,255,0.5);}
.slick-dots li.slick-active {width:40px;  background: rgba(255,255,255,1);}

.i-animate { animation: fadeOutDown2 1s 0 ease both; }
.section.active .i-animate { animation: fadeInUp2 1s 0s ease both; }

.i-animate2 { animation: fadeOutDown2 1s 0 ease both; }
.section.active .i-animate2 { animation: fadeInUp2 1s 0.2s ease both;  }

.i-animate3 { animation: fadeOutDown2 1s 0 ease both; }
.section.active .i-animate3 { animation: fadeInUp2 1s 0.4s ease both;  }

.i-bg { width:100%; height: 100%; position:absolute; left:0; top:0; z-index: -1; }
.i-bg img { width: 100%; height: 100%; object-fit: cover; object-position:  center center;  }

.i-tit { margin:80px 0; }
.i-tit em { font-size: 36px; margin-bottom: 10px; }
.i-tit h2 { font-size: 32px; }


.iabo-box .iabo-left, .iabo-box .iabo-right { width:calc(50% - 40px); }
.iabo-box .iabo-left .i-tit { margin:80px 0 40px; }
.iabo-box .iabo-left .abo-info p { margin:10px 0; }
.iabo-box .iabo-right .img { width:calc(100% - 40px); border-radius: 80px 20px 20px 20px; overflow: hidden; }
.iabo-box .iabo-right .img img { width: 100%; height: 100%; object-fit: cover; object-position:  center center; }
.iabo-box .iabo-right .wlogo { width:240px; height: 240px; line-height: 240px;  background: rgba(43, 138, 181, 0.8); border-radius: 20px 80px 20px 20px; text-align: center;position: absolute; right:0; bottom:-40px; }
.iabo-box .iabo-right .wlogo img { max-width: 100px; }

.i-pro .tabbox .hd ul li { display:inline-block; box-sizing: border-box;  padding:0 30px; line-height: 60px; border-radius: 60px; background: #fff; margin:0 15px; cursor: pointer;  }
.i-pro .tabbox .hd ul li span { color:#333; font-size: 18px; }
.i-pro .tabbox .hd ul li i { margin-left:20px; font-size: 16px; color:#2b8ab5; }
.i-pro .tabbox .hd ul li:hover, .i-pro .tabbox .hd ul li.on { background: #2b8ab5;  }
.i-pro .tabbox .hd ul li:hover span , .i-pro .tabbox .hd ul li.on span, .i-pro .tabbox .hd ul li:hover i , .i-pro .tabbox .hd ul li.on i { color:#fff; }
.i-pro .tabbox .bd { margin:60px 0 0; }
.i-pro .tabbox .bd .swp-ipro ul li .imgbox { background: #fff; width:100%; height: 100%; animation: yuan 3s linear infinite;  overflow: hidden; }
.i-pro .tabbox .bd .swp-ipro ul li .infobox { margin:20px 0 0; }
.i-pro .tabbox .bd .swp-ipro ul li .infobox span { font-size: 18px; position: relative; }
.i-pro .tabbox .bd .swp-ipro ul li .infobox span em { position: absolute; top:-4px; right:-18px; }
.i-pro .tabbox .bd .swp-ipro ul li .infobox h3 { font-size: 20px; margin:10px 0 0; }
.i-pro .tabbox .bd .listbox .sp-prev { left:-100px; }
.i-pro .tabbox .bd .listbox .sp-next { right:-100px; }

 @keyframes yuan{0%{border-radius:55% 40% 50% 40%}
	25%{border-radius:45% 30% 40% 30%}
	50%{border-radius:35% 40% 60% 40%}
	75%{border-radius:45% 40% 40% 60%}
	100%{border-radius:55% 40% 50% 40%}
}

.i-pro .list ul { display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 80px;  }
.i-pro .list ul .item {  color:#fff; text-align: center;  }
.i-pro .list ul .item h2 { font-size:24px; color:#fff;   margin:40px 0;  }
.i-pro .list ul .item p { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 20px;  }
.i-pro .list ul .item p span { display: inline-block;  width:120px; padding:10px 0;  border:1px solid rgba(255,255,255,0.3);  transition: all 0.3s ease;   }
.i-pro .list ul .item p span:hover { border:1px solid rgba(255,255,255,1);  }

.i-partner { background-image: url(../images/inewsbg.jpg);  background-repeat: no-repeat;  background-position:center;  background-size: cover;   }
.i-partner img { border-radius: 30px;  mix-blend-mode: multiply;   }

.i-atech .list .info { margin:0 0 80px; }
.i-atech .list ul { display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 80px;  }
.i-atech .list ul .item {  color:#fff; text-align: center;  }
.i-atech .list ul .item h2 { font-size:24px; color:#fff;   margin:0 0 20px;  }

.i-news .list .itembox .imgs { background: #000; border-radius: 20px;}
.i-news .list .itembox .imgs img { opacity: 0.8;}
.i-news .list .itembox .imgs .date { bottom: 90px; left:30px; }
.i-news .list .itembox .imgs .date em {  display: inline-block; width: 100%;}
.i-news .list .itembox .imgs .date em:first-child { font-size: 48px; }
.i-news .list .itembox:hover .imgs img { transform:scale(1.08); }
.i-news .list .itembox .txt { box-sizing: border-box; padding:30px; background: #fff; border-radius: 20px; margin-top:-60px; z-index: 9; }
.i-news .list .itembox .txt h3 { font-size: 18px; margin-bottom: 10px; }
.i-news .list .itembox .more { height: 20px; line-height: 20px; margin:20px 0 0; }
.i-news .list .itembox .more span em { font-size: 24px;  position: absolute; bottom:0; }
.i-news .list .itembox .more span em:first-child { left:0;  animation: movecircle linear 2s infinite both; }
.i-news .list .itembox .more span em:last-child { left:20px; animation: movecircle2 linear 2s infinite both; }
.i-news .list .itembox .more i { font-size: 18px; color:#2b8ab5; }
.i-news .list .itembox:hover .more i { transform: rotate(-45deg); }
.i-news .list .inews-prev { left:-100px; }
.i-news .list .inews-next { right:-100px; }
.i-news .list  .swp-inews { padding:0 0 60px; }

@keyframes movecircle{0%{left:0}
50%{left:30px}
100%{left:0}
}@keyframes movecircle2{0%{left:30px}
50%{left:0}
100%{left:30px}
}


.footer  {  background: #333; border-top:3px solid #2b8ab5; }
.footer p, .footer a { font-size: 16px; color:rgba(255,255,255,1); }
.footer .cc { padding:40px 0; }
.footer .fleft .flogo { margin-bottom: 40px; }
.footer .fleft .flogo img { max-height:68px; }
.footer .ftel i { display: inline-block; width:40px; height:40px; line-height: 40px; font-size: 18px; text-align: center; background: #2b8ab5; border-radius: 40px; color:#fff; margin-right:10px; }
.footer .ftel span { font-size: 18px; color:#fff; }
.footer .ftel h2 {margin:10px 0; font-weight: 500; }
.footer .ftel h2 a {  font-size: 24px; color:#fff; font-weight: 500; }
.footer .fright ul li img { max-width:120px; margin-bottom: 10px; border-radius:10px; }
.footer .cpr { padding:20px 0; text-align: center; border-top:1px solid rgba(255,255,255,0.1);  }
.footer .cpr a:hover { color:#fff; }

/*--------------------------------------------------------------------------内页--------------------------------------------------------------------------*/
.c-page { position: relative; z-index: 9; }

.bread { width: 100%;  height:60px;  line-height: 60px; font-size: 15px;   text-align: right;  background: rgba(0,0,0,.3);   position: absolute; top:0; color:#fff; } 
.bread a { margin:0 5px;  font-size: 15px;  color:#fff;  }
.bread a:hover { text-decoration: underline; }
.bread .pos { display:inline-block; }

.cbanwarp { position: relative; height: 500px;  z-index: 1;  }
.cbanwarp .scroll-banner-c { width:100%; height:100vh; }
.cbanwarp .cbg { width: 100%; height:100%; position: relative; display: table;  background-position: center; background-repeat: no-repeat; background-size: cover; }
.cbanwarp .cbg::after { width:100%; height: 100%; content: ""; left: 0; top: 0; opacity: 0.3; position: absolute; background: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0)); z-index: -1; }
.cbanwarp .cbg .infobox { height: 100%;  }
.cbanwarp .cbg .txt h2 { 	font-size: 36px;  }
.cbanwarp .cbg .txt p { font-size: 18px; }

.ccontent { padding:80px 0;  }
.ctit h2 {  line-height: 100%; font-size:40px;  position: relative; z-index: 9; margin-bottom: 60px;  }

.cmenu { border-bottom:1px solid #eee; }
.cmenu a { float: left; display: inline-block; height: 80px; line-height: 80px;  font-size: 18px;  color:#333;  padding:0 30px;  position: relative; }
.cmenu a:hover,  .cmenu a.active  { color:#eb2f30; font-weight: bold; }
.cmenu a::after { content: " ";  position: absolute;  left: 0; bottom: 0;   width:0;  height: 2px; background: #eb2f30;  z-index: 2; transition: all 0.3s ease; }
.cmenu a:hover::after , .cmenu a.active::after   { width:100%;   }

.cinfo p { margin:10px 0; }
.cinfo strong { color:#333; }

.cabo {  padding-bottom: 80px;  }

.caboinfo { background-image: url(../images/istorebg.jpg) ;  background-repeat: no-repeat; background-position:top center;  background-attachment: fixed; }
.caboinfo .txt p { margin:10px 0; }

.caboalbum { margin:80px 0 0; }
.caboalbum .sc-album { padding:0 0 60px 0;  }
.caboalbum .sc-album .txt { padding: 20px 0; background: #f9f9f9;  }
.caboalbum .sc-album .txt h3 { font-size:16px;  color:#333; text-align: center; font-weight: normal; }
.caboalbum .swiper-pagination { width:100%; bottom:0!important; }
.caboalbum .swiper-pagination-bullet { width:10px; height: 10px; background:#eee; opacity: 1!important; margin:0 10px!important; border-radius:10px!important;   }
.caboalbum .swiper-pagination-bullet-active { width:40px; background:#eb2f30; }

.calbum-list ul li { float:left; width:calc(25% - 30px); margin-right:40px; margin-bottom: 40px;  }
.calbum-list ul li:nth-child(4n) { margin-right:0; }
.calbum-list ul li .img { position: relative;  overflow: hidden; text-align: center; background: #fff;  }
.calbum-list ul li .img img { width: 100%;  height: 100%;   object-fit: contain; }
.calbum-list ul li:hover .img img  {  transform:scale(1.1);  }
.calbum-list ul li .txt { padding:20px 0; background:#f9f9f9;   }
.calbum-list ul li .txt h3 { font-size:16px;  color:#333; text-align: center; font-weight: normal; }

.pagination { text-align: center;  margin:20px 0 0;  }
.page-num:not(:disabled) {cursor: pointer;}
.page-num , .page-link {position: relative; display: inline-block;   padding:0 13px; line-height: 36px;	  color: #666; background: #fff; border: 1px solid #ddd; margin:0 6px; font-size:16px;  }
.page-num { margin:0 6px; }
.page-num:hover, .page-link:hover {	background-color: #eb2f30; color: #fff; border-color: #eb2f30; }
.page-num-current {z-index: 1;background-color: #eb2f30; color: #fff;  border-color: #eb2f30;}
.page-num-current:hover {color: #fff;}
.mpnav ,  .text-secondarym { display:none; }

.cnewslist ul li {float:left; width:calc(33.3% - 27px); margin-right: 40px; margin-bottom: 40px; }
.cnewslist ul li:nth-child(3n) { margin-right: 0; }
.cnewslist ul li .info { position: relative;}
.cnewslist ul li .info em { position: absolute; top:0; left:0; z-index: 9; display:inline-block; padding:10px 30px; background: rgba(0,0,0,0.5); color:#fff;  }
.cnewslist ul li .info::after { content: " ";  position: absolute; left: 0; bottom: 0; width:0; height: 2px; background: #eb2f30;  z-index: 2; transition: all .3s ease; }
.cnewslist ul li .info .pic {  overflow: hidden; height: 300px; }
.cnewslist ul li .info .pic img { width: 100%; height:100%; object-fit: cover;  }
.cnewslist ul li .info .txt { padding:30px; background: #fff; }
.cnewslist ul li .info .txt h2 {  color:#333; margin:10px 0; line-height: 180%; height: 60px; font-size: 18px; font-weight: normal;  }
.cnewslist ul li .info .txt p { color: #888;  height: 60px; }
.cnewslist ul li .info:hover::after { width:100%; }
.cnewslist ul li .info:hover .pic img { transform:scale(1.08);  }

.csuplist ul li .info em, .csuplist ul li .info .pic { display:none; }

.cnews { padding:80px 0;  background:#f9f9f9;}
.cnews .cnewsde .cn-list { width:320px; background: #fff;}
.cnews .cnewsde .cn-list h1 {  font-size:24px; color: #333; border-bottom:2px solid #f9f9f9; text-transform: uppercase; padding:30px 30px 0; font-family:"Noto Serif SC"; font-weight: 600; }
.cnews .cnewsde .cn-list h1 span { position: relative; display: inline-block; padding-bottom:20px; }
.cnews .cnewsde .cn-list h1 span::after { content: " ";  position: absolute; left: 0; bottom: -2px; width:100%; height: 2px; background: #eb2f30;  z-index: 2;}
.cnews .cnewsde .cn-list ul { padding:0 30px; }
.cnews .cnewsde .cn-list ul li { margin:20px 0 0; padding:0 0 20px; border-bottom: 1px solid #ddd; }
.cnews .cnewsde .cn-list ul li:last-child { border:none; }
.cnews .cnewsde .cn-list ul li span { display: inline-block; color:#999; margin-bottom: 10px;    }
.cnews .cnewsde .cn-list ul li p { line-height: 170%;}
.cnews .cnewsde .cn-list ul li a:hover { color:#eb2f30; }
.cnews .cnewsde .cn-detail { width:calc(100% - 360px); background: #fff; padding:40px;   }
.cnews .cnewsde .cn-detail .tit h1 { font-size:24px; color: #333; font-weight: 600; }
.cnews .cnewsde .cn-detail .tit .mark { margin:30px 0 0; padding:0 0 20px; border-bottom:1px dashed #ddd; }
.cnews .cnewsde .cn-detail .tit .mark ul { justify-content: flex-start; }
.cnews .cnewsde .cn-detail .tit .mark ul li i { display: inline-block; color:#ccc;  }
.cnews .cnewsde .cn-detail .tit .mark ul li em { display: inline-block; margin:0 30px 0 10px; }
.cnews .cnewsde .cn-detail .detail { padding:40px 0; }
.cnews .cnewsde .cn-detail .detail p { margin:10px 0; }
.cnews .cnewsde .cn-detail .detail strong { color:#333; }
.cnews .cnewsde .cn-detail .sec { padding:25px 0 0;  border-top: 1px solid #ddd; }
.cnews .cnewsde .cn-detail .sec p { margin:15px 0 0; }
.cnews .cnewsde .cn-detail .sec span { display: inline-block; background: #f9f9f9; color:#333; width:100px; line-height: 36px; text-align: center; margin-right: 20px;  }
.cnews .cnewsde .cn-detail .sec p a:hover { color:#eb2f30; }

.ccgray { background: #f9f9f9; padding:80px 0; }

.ccaselist ul li {float:left; width:calc(33.3% - 27px); margin-right: 40px; margin-bottom: 40px; }
.ccaselist ul li:nth-child(3n) { margin-right: 0; }
.ccaselist ul li p { padding:20px; background: #fff;  }
.ccaselist ul li p span { width:90%;  color:#333; }
.ccaselist ul li p i { display:inline-block; font-size: 18px; color:#eb2f30;  }

.ccont .boxfl { width:50%; padding:80px 0 0; }
.ccont .boxfl h2 { font-size: 30px; }
.ccont .boxfl h3 { font-size: 16px; margin-bottom: 30px; }
.ccont .boxfl p { line-height: 240%;}
.ccont .boxfl p i {display: inline-block; color:#eb2f30; font-size: 20px; margin-right: 15px; }
.ccont .bdmap { margin:40px 0 0; }
.ccont .boxfr {  width:calc(50% - 80px); box-sizing:border-box; padding:80px 60px 120px; background: #f9f9f9; }
.ccont .boxfr h2 { font-size: 30px; color: #333; text-transform: uppercase; margin:0 0 40px; }
.ccont .boxfr p.tips { margin-bottom:15px;  }
.ccont .iform ul li { position: relative; width:100%; margin-bottom: 20px;  }
.ccont .iform ul li p { margin-bottom:10px; }
.ccont .iform ul li input { width:calc(100% - 30px); background:#fff; line-height: 46px;  border:none; padding:0 15px; color:#666;  }
.ccont .iform ul li textarea { width:calc(100% - 30px); background:#fff; height: 72px; line-height: 160%; border:none; padding:10px 15px; color:#666; }
.ccont .iform ul li input::placeholder, .icont .msg .iform ul li textarea::placeholder { color:#888; }
.ccont .iform ul li img { position: absolute; right:0; bottom:0; z-index: 9;} 
.ccont .iform button {  width:100%; line-height: 50px; background:#eb2f30;  color:#fff; font-size: 18px; text-transform: uppercase; border:none;  margin:20px 0 0; transition: all .3s ease; }
.ccont .iform button:hover { transform:translateY(-5px); transition: all .3s ease;} 

.ccont .list ul { display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 40px; }
.ccont .list ul li { box-sizing: border-box; padding:30px;    background: #f9f9f9; border-left:3px solid #eb2f30;  }
.ccont .list ul li h3 { font-size:24px; margin:0 0 20px;  }
.ccont .list ul li .info p  { display: flex; justify-content: flex-start; margin:5px 0;  }
.ccont .list ul li .info p i { color:#eb2f30;  margin:0 10px 0 0; }

/*--------------------------------------------------------------------------多级分类--------------------------------------------------------------------------*/
.cpro {  background: #f9f9f9;  padding: 80px 0; }
.cpro .cpro-cate { width:320px; }
.cpro .cpro-cate h1 {  font-size:24px; color: #222; border-bottom:2px solid #f9f9f9;  padding:30px 30px 0; background: #fff;}
.cpro .cpro-cate h1 span { position: relative; display: inline-block; padding-bottom:20px; }
.cpro .cpro-cate h1 span::after { content: " ";  position: absolute; left: 0; bottom: -2px; width:100%; height: 2px; background: #eb2f30;  z-index: 2;}
.cpro .list { margin-bottom: 2px;  background: #fff; }
.s-list { position: relative; padding:0 30px; line-height: 60px; }
.s-list span.more { width: 14px; height: 14px; position: absolute; right:20px; top: 24px; cursor: pointer; }
.s-list span.more span { background: #666; position: absolute; }
.s-list span.more span.h { width: 14px; height: 2px; transform: translate3d(0, 5px, 0); transition: all .3s ease;}
.s-list span.more span.v { transform: rotate3d(0, 0, 1, 90deg) translate3d(5px, 0, 0); transition: all .3s ease; }
.s-list.active span.more span.v { transform: rotate3d(0, 0, 0, 0) translate3d(0, 5px, 0); transition: all .3s ease; }
.s-list  a.on span { color:#eb2f30; font-weight: 700; }
.s-content { padding: 15px 30px; border-top:2px solid #f9f9f9; /*display: none;*/  }
.s-content ul li { padding:6px 0; position: relative; }
.s-content ul li a  { line-height: 180%; transition: all .3s ease;}
.cpro .cpro-cate a:hover { color:#eb2f30; font-weight: 700;  transition: all .3s ease; }
.s-content a.on span { color:#eb2f30; font-weight: 700; }
.s-content a i { font-size: 14px; transform: rotate(-90deg);  position: absolute; top:5px; right:-10px; display: none; }
.s-content a.on i, .s-content ul li>a:hover i { display:inline-block; }
.mcpro-cate, .mcate { display:none; }

.cpro .cpro-list ul li { float:left; width:calc(33.3% - 27px); margin-right:40px; margin-bottom: 40px;   }
.cpro .cpro-list ul li:nth-child(3n) { margin-right:0; }
.cpro .cpro-list ul li .img { position:relative; height: 40vh;  }
.cpro .cpro-list ul li .bg { position: absolute;  top: 0px;  left: 0px; z-index: 9;   width: 100%;    height: 100%; opacity: 0;   background: rgba(0, 0, 0, 0.3); text-align: center; color:#fff; font-size:16px;  transition: all 0.3s ease;}
.cpro .cpro-list ul li .bg span { display:inline-block;  padding:20px; position: relative; line-height: 180%;  }
.cpro .cpro-list ul li:hover .bg { opacity:1; }
.cpro .cpro-list ul li .bg span::before { content: ''; position: absolute; top: 0px; left: 50%; transform: translateX(-50%);  width: 100%; height: 1px; background: #fff; transition: all 0.3s ease; }
.cpro .cpro-list ul li .bg span::after { content: ''; position: absolute;  bottom: 0px;  left: 50%;  transform: translateX(-50%); width: 100%; height: 1px;  background: #fff; transition: all 0.3s ease; }
.cpro .cpro-list ul li:hover .bg span::before, .cpro .cprolist ul li:hover .bg span::after  { width:50%; }
.cpro .cpro-list ul li .txt { background:#fff; padding:20px; border-top:2px solid #f9f9f9; }
.cpro .cpro-list ul li .txt h3 { font-size:20px;  color:#333;  margin-bottom: 5px;  }
.cpro .cpro-list ul li .txt p span  { display: inline-block; width:calc(100% - 20px);  }
.cpro .cpro-list ul li .txt p i {  color:#333; transition: all 0.3s ease-in-out;}
.cpro .cpro-list ul li:hover i {  transform: rotate(180deg);}

.cprode .cpro-detail  .top {  padding:40px;  background: #fff; }
.cprode .cpro-detail  .pic { width:calc(50% - 20px); }
.view {width: 100%; overflow:hidden; position:relative; }
.view em { display: inline-block;  position:absolute; right:0; bottom:0;  z-index: 9;  width:40px; height: 40px; line-height: 40px; background: rgba(0,0,0,0.5);  text-align: center;}
.view em i {  font-size:24px; color:#fff; }
.view .swiper-slide{ box-sizing: border-box; overflow: hidden; text-align: center; }
.view .swiper-slide img { width:100%; object-fit: cover; object-position:  center center;  }
.preview{position: relative;width:100%; margin:0 auto; margin:20px 0 0; }
.preview .small { width: calc(100% - 90px); margin:0 auto; }
.preview .swiper-slide {width: 20%;   box-sizing: border-box;  cursor: pointer;  }
.preview .swiper-slide .imgbox { box-sizing: border-box;  border:2px solid #ddd; text-align: center; }
.preview .swiper-slide .imgbox img {  object-fit: cover; object-position:  center center; }
.preview .swiper-slide.swiper-slide-thumb-active .imgbox{  border:2px solid #eb2f30; }
.preview .arrow { background: #999;  width:30px; height: 100%;   position: absolute; top: 0; z-index: 10; color:#fff; text-align: center; }
.preview .arrow i { display: inline-block;  font-size:14px;  position: absolute; top:calc(50% - 7px); left:calc(50% - 7px);   }
.preview .arrow-left{left: 0;}
.preview .arrow-right{right: 0;}
.preview .arrow:hover { background:#eb2f30; }

.cprode .cpro-detail .pinfo {  width:calc(50% - 20px); }
.cprode .cpro-detail .pinfo h2 { font-size:30px; color:#2c2c2c; margin:20px 0; padding:0 0 30px; border-bottom: 1px solid #eee; }
.cprode .cpro-detail .pinfo .pct { margin:40px 0 0; }
.cprode .cpro-detail .pinfo .pct i { width: 50px; height: 50px; line-height: 50px; border-radius: 50px; background:#eb2f30; color:#fff; text-align: center; font-size: 20px; margin-right: 20px; }
.cprode .cpro-detail .pinfo .pct p { font-size: 24px; line-height: 160%; }
.cprode .cpro-detail .desc { background:#fff; margin:40px 0 0; }
.cprode .cpro-detail .desc h5 { color:#222;  font-size: 24px; border-bottom:2px solid #f9f9f9; padding:20px 40px 0;  }
.cprode .cpro-detail .desc h5 span { position: relative; display: inline-block; padding-bottom:20px; }
.cprode .cpro-detail .desc h5 span::after { content: " ";  position: absolute; left: 0; bottom: -2px; width:100%; height: 3px; background: #eb2f30;  z-index: 2;}
.cprode .cpro-detail .desc .cc { padding:30px 40px; }
.cprode .cpro-detail .desc .cc p { margin:10px 0; }
.cprode .cpro-detail .desc .cc strong { color:#333; }
.cprode .cpro-detail .sec { margin:40px 0 0;}
.cprode .cpro-detail .sec p { width:calc(50% - 10px); background:#fff; box-sizing: border-box;  padding:10px 20px;  font-size: 14px;  color:#222; }
.cprode .cpro-detail .sec p a { color:#222; }
.cprode .cpro-detail h3 { display:none;  }


/*--------------------------------------------------------------------------移动端--------------------------------------------------------------------------*/
@media only screen and (max-width:981px){
	
	.header .hlogo .hlbox { height: 60px; }
	.header .hlogo .hlbox .img img { max-height: 46px;}
	
	.home-nav { left:0.36rem; }
	.home-nav ul li { margin:0.24rem 0; }
	.home-nav ul li a span  { display: none; }
	
	.ibanwarp .bg { background-size: cover!important; }
	.ibanwarp .bg .txt h3 { font-size: 0.42rem; }
	.ibanwarp .bg .txt h2 { font-size: 0.56rem; margin:0.24rem 0 0; }
	.ibanwarp .bg .list { margin:0.36rem 0 0;}
	.ibanwarp .bg .list ul li { width:140px; height: 140px; margin:0.36rem; }
	.ibanwarp .bg .list ul li .item i { font-size: 0.72rem;}
	.ibanwarp .bg .list ul li .item h5 { font-size: 0.42rem; margin:0.24rem 0 0; }
	
	.slick-dots { bottom:0.36rem; }
	.slick-dots li { width:8px; height: 8px; margin: 0 5px!important; }
	.slick-dots li.slick-active {width:20px; }
	
	.i-tit { margin:60px 0 0.48rem; }
	.i-tit em { font-size: 0.56rem; margin-bottom: 0; }
	.i-tit h2 { font-size: 0.56rem; }
	
    .i-pro .tabbox .hd ul { margin-bottom:1vh; }
	.i-pro .tabbox .hd ul li { line-height:1.1rem; padding: 0 4vw; margin: 0 2vw 2vh 2vw; }
	.i-pro .tabbox .hd ul li span { font-size:0.38rem; }
	.i-pro .tabbox .hd ul li i { margin-left:0.36rem; }
	.i-pro .tabbox .bd { margin:0.36rem 0 0; }
	.i-pro .tabbox .bd .swp-ipro { padding:0 0 0.96rem; }
	.i-pro .tabbox .bd .swp-ipro ul li, .i-pro .tabbox .bd .swp-ipro ul li.swiper-slide-active { transform: scale(1);  }
	.i-pro .tabbox .bd .swp-ipro ul li .infobox span { font-size: 0.38rem;  }
	.i-pro .tabbox .bd .swp-ipro ul li .infobox span em { top:-10px; }
	.i-pro .tabbox .bd .swp-ipro ul li .infobox h3 { font-size:0.42rem; margin:0.12rem 0 0; }
	.i-pro .sp-pn { display: none;}
	
	.i-news .list .itembox .imgs { border-radius: ;}
	.i-news .list .itembox .imgs .date { left:0.36rem; }
	.i-news .list .itembox .imgs .date em:first-child { font-size:0.72rem; }
	.i-news .list .itembox .txt { padding:2vh 0.36rem; }
	.i-news .list .itembox .txt h3 { font-size:0.42rem; }
	.i-news .list .swp-inews { padding:0 0 0.96rem; }
	.i-news .sp-pn { display: none;}
	
	.iabo-box .iabo-left, .iabo-box .iabo-right { width:100%; }
	.iabo-box .iabo-right { display: none; }
	.i-num { margin:0.48rem 0; }
	.i-num ul li span { font-size: 0.96rem; }
	.i-num ul li i { margin-left:0.12rem; }
	.i-num ul li p { margin:0.12rem 0 0; }
	
	.ihr-box .ihr-left, .ihr-box .ihr-right { width:100%; }
	.ihr-box .ihr-left .link { margin:0.48rem 0 0; }
	.ihr-box .ihr-left .link span { display: inline-block; width:100%; margin:0 0 0.36rem; }
	.ihr-box .ihr-right  { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; margin:0.48rem 0 0; }
	.ihr-box .ihr-right a { margin:0; }
	
	.footer .cc { padding:0.48rem 0 0.36rem; font-size:0.38rem;  }
	.footer p, .footer a { font-size:0.38rem; }
	.footer .fleft , .footer .fmid, .footer .fright { float:none; width:100%; } 
	.footer .fleft .flogo { margin-bottom:0.64rem; display:none;  }
	.footer .fleft .flogo img { max-height: 40px;  }
	.footer .fleft .ftel i {  width: 32px;  height: 32px; line-height: 32px; }
	.footer .fleft .ftel span { font-size:0.42rem; } 
	.footer .fleft .ftel h2 { margin:0; }
	.footer .fleft .ftel h2 a { font-size:0.72rem;  }
	.footer .fmid  { margin:0.36rem 0; }
	.footer .fmid ul li { float:none;  width:100%; margin-bottom: 0.36rem; }
	.footer .fmid ul li h3 { font-size:0.38rem; margin-bottom: 0.12rem; }
	.footer .fmid ul li .subnav a {  float:left; width:auto; margin-right: 0.36rem;  line-height: 200%; }
	.footer .fmid ul li .subnav p { line-height: 200%; }
	.footer .fmid ul li:last-child { width:100%; margin-bottom:0; }
	.footer .fright ul li { float: none; display: inline-block; width:100%; }
	.footer .fright ul li img { max-width: 100px; margin-bottom: 0.24rem; }
	.footer .cpr { padding:0.24rem 0; }
	.footer .cpr p { font-size:0.36rem; }
	
	.bread { display:none; }
	
	.bread { display:none; }
		
	.cbanwarp { position: relative; height: 24vh;  z-index: 1; margin:0;  }
	.cbanwarp .cbg .txt h2 { 	font-size:0.56rem; }
	.cbanwarp .cbg .txt p { font-size:0.38rem; }
	
	.cmenu a { height:50px; line-height: 50px; padding:0 0.36rem; font-size: 0.4rem;  }
	
	.ccontent { padding:0.72rem 0; }
	
	.cabo { margin-bottom:0.72rem; }
	
	.caboitem { margin:0.72rem 0; }
	.caboitem .ww { display:block; }
	.caboitem .item { width:100%;  margin-bottom: 0.36rem;  }
	.caboitem .item .info { height:auto; padding:0.36rem; }
	.caboitem .item .info em { font-size:0.38rem; margin-bottom:0;  }
	.caboitem .item .info h5 { font-size:0.48rem;  margin-bottom:0.36rem; padding-bottom: 0.36rem;  }
	.caboitem .item .info h5::after { width:40px; }
	
	.ctit h2 { font-size:0.56rem; margin-bottom:0.48rem;  }
	
	.caboalbum { margin:0.72rem 0 0; }
	.caboalbum .sc-album { padding-bottom:0.96rem; }
	.caboalbum .sc-album .txt { padding:0.24rem 0; }
	.caboalbum .sc-album .txt  h3 { font-size:0.38rem; }
	.caboalbum .swiper-pagination { display:block; bottom:0!important; }
	.caboalbum .swiper-pagination-bullet { width:10px; height: 10px; border-radius: 10px; margin: 0 5px!important;}
	.caboalbum .swiper-pagination-bullet-active { opacity: 1; }
	
	.calbum-list ul li { width:calc(50% - 0.18rem); margin-right:0.36rem; margin-bottom: 0.36rem;  }
	.calbum-list ul li:nth-child(2n) { margin-right:0; }
	.calbum-list ul li:nth-child(3), .calbum-list ul li:nth-child(9) { margin-right:0.36rem; }
	.calbum-list ul li .txt { padding:0.24rem; }
	.calbum-list ul li .txt h3 { font-size:0.38rem; }
	
	.pnav { display:none; }
	.mpnav { display:block; }
	.pagination { margin:0.36rem 0 0; }
	.page-num, .page-link { padding: 0 12px; margin: 0 5px;}
	
	.ccgray { padding:0.72rem 0; }
	
	.cnewslist ul li { width:100%; margin-bottom: 0.38rem;  }
	.cnewslist ul li .info em { padding: 10px 20px;}
	.cnewslist ul li .info .txt { padding:0.38rem; }
	.cnewslist ul li .info .txt h2 { font-size:0.42rem;  height: auto; margin:5px 0;  }
	.cnewslist ul li .info .txt p { line-height:180%;  min-height: auto;  }
	
	.cnews { padding:0.72rem 0; }
	.cnews .cnewsde .cn-list { display:none; }
	.cnews .cnewsde .cn-detail { width:100%; padding:0.36rem;  }
	.cnews .cnewsde .cn-detail .tit h1 { font-size:0.48rem; margin:0.24rem 0 0.36rem; }
	.cnews .cnewsde .cn-detail .tit .mark { margin:0.24rem 0 0;  padding: 0 0 0.24rem; }
	.cnews .cnewsde .cn-detail .tit .mark ul li em { margin: 0 0.36rem 0 0.24rem;; }
	.cnews .cnewsde .cn-detail .detail { padding:0.36rem 0; }
	.cnews .cnewsde .cn-detail .sec { padding:0; }
	.cnews .cnewsde .cn-detail .sec span { width:72px; margin-right: 0.36rem;  }
	.cnews .cnewsde .cn-detail .sec p { margin:0.36rem 0 0;  }
	
	.ccaselist ul li { width: calc(50% - 0.18rem);  margin-right: 0.36rem;   margin-bottom: 0.36rem;  }
	.ccaselist ul li:nth-child(3n) { margin-right: 0.36rem; }
	.ccaselist ul li:nth-child(2n) {  margin-right: 0; }
	.ccaselist ul li p { padding:0.24rem; }
	.ccaselist ul li p span { width:88%;  }
	.ccaselist ul li p i { font-size:16px;  }

	.ccontact { padding:0.72rem 0 ; }
	.ccont .boxfr{ width:100%; padding:0 0 0.72rem;  }
	.ccont .boxfl { box-sizing: border-box; width:100%;  padding:0 0 0.72rem; }
	.ccont .boxfl p { line-height: 180%; margin-bottom: 0.24rem;  }
	.ccont .boxfl p i { display: block; float: left;  font-size: 0.4rem; width:0.4rem;   }
	.ccont .boxfl p span { float:left; width:calc(100% - 0.4rem - 15px);   }
	.ccont .boxfl h2 {  font-size:0.56rem; }
	.ccont .boxfl h3 { font-size: 0.38rem;  margin:0 0 0.36rem;}
	.ccont .boxfl .contico { margin:15px 0 0; }
	.ccont .boxfl .contico a { line-height: 46px; margin-bottom: 15px;  }
	.ccont .boxfl .contico a.weixin img { width:140px; }
	.ccont .boxfl .contico a.weixin:hover img { bottom:66px;  }
	.ccont .bdmap { margin:25px 0 0; }
	.ccont .boxfr h2 { font-size:0.56rem;  padding:0 0.36rem ; margin:0.48rem 0;  }
	.ccont .boxfr .iform { padding:0 0.36rem; }
	.ccont .iform ul li { margin-bottom:0.36rem;  }
	.ccont .iform button {  margin:0.36rem 0 0; line-height: 46px; font-size: 0.38rem;  }
	.ccont .bdmap { height:400px; }
	
	.ccont .list ul { grid-template-columns: repeat(1, 1fr); grid-gap: 0.36rem; }
	.ccont .list ul li { padding:0.36rem; }
	.ccont .list ul li h3 { font-size:0.42rem; margin: 0 0 0.24rem; }
	
	/*--------------------------------------------------------------------------多级分类--------------------------------------------------------------------------*/
	
	.mask{ width:100%; height:100%; overflow:hidden; cursor:pointer; background:rgba(0,0,0,0.7); position:fixed; left:0; top:0; z-index:1003;}
	
	.cpro { padding:20px 0 40px; }
	.cpro .cpro-list { width:100%; }
	.cpro .cpro-list ul li { width:calc(50% - 0.18rem); margin-right:0.36rem; margin-bottom: 0.36rem;  }
	.cpro .cpro-list ul li:nth-child(2n) { margin-right:0; }
	.cpro .cpro-list ul li:nth-child(3) , .cpro .cpro-list ul li:nth-child(9){ margin-right:0.36rem; }
	.cpro .cpro-list ul li .img { height:16vh; }
	.cpro .cpro-list ul li .bg span { padding: 0.36rem; }
	.cpro .cpro-list ul li .txt { padding:0.36rem; }
	.cpro .cpro-list ul li .txt h3 { font-size:0.42rem; margin-bottom:5px;  }
	.cpro .cpro-list ul li .txt p { line-height: 160%;  }
	.cpro .cpro-list ul li .txt p i {font-size:14px; }
	
	.mcpro-cate { display:block;  margin-bottom: 20px;  }
	.mcpro-cate .mbread { width:calc(100% - 40px); line-height: 180%;  }
	.mcpro-cate .mcatebtn i { display: block;  font-size:0.56rem; color:#eb2f30; margin:2px 0 0;  cursor: pointer; }
	.mcate { display: block;  width:300px; height:100%; background:#fff; position:fixed; top:0; right:-300px; z-index:2000; overflow-x:hidden;  -webkit-overflow-scrolling : touch;  transition:all .3s; -webkit-transition:all .3s;}
	.mcate.open { right:0; box-shadow: 0 0 20px rgba(0,0,0,.15);}
	.mcate .close { float:right; width:48px; height:48px; line-height:48px; display:block; overflow:hidden; text-align:center; color:#999; cursor:pointer;}
	.mcate .close i {  font-size:0.4rem; }
	.mcatebox h1 { color:#333; font-size: 0.48rem; line-height: 60px; padding:0 30px; }
	.s-list { line-height:48px; }
	.s-list span.more { top:16px; }
	.s-content { background:#f9f9f9; }
	
	.cprode .cpro-detail { width:100%; }
	.cprode .cpro-detail .top { box-sizing: border-box; width: 100%;  padding: 0.36rem; }
	.cprode .cpro-detail .pic , .cprode .cpro-detail .pinfo  { width:100%;  }
	.cprode .cpro-detail .pinfo {  margin:20px 0 10px;}
	.cprode .cpro-detail .pinfo em, .cprode .cpro-detail .pinfo h2 { display:none; }
	.cprode .cpro-detail .pinfo .pct { margin:0.36rem 0 0; }
	.cprode .cpro-detail .pinfo .pct i { width: 1.2rem; height: 1.2rem; line-height: 1.2rem; font-size: 0.48rem; margin:4px 0.36rem 0 0; }
	.cprode .cpro-detail .pinfo .pct p { font-size: 0.46rem; }
	.cprode .cpro-detail h3 { display:block;  color:#333; font-size: 0.48rem;   text-align: center; margin: 5px 0 15px; }
	.cprode .cpro-detail .desc { margin:20px 0 0; }
	.cprode .cpro-detail .desc h5 { font-size:0.48rem; padding:0.36rem 0.36rem 0; }
	.cprode .cpro-detail .desc h5 span { padding-bottom: 0.36rem;}
	.cprode .cpro-detail .desc .cc { padding: 20px 15px; }
	.view em i { font-size: 0.48rem; }
	.preview { width:100%; margin:0.36rem 0 0; }
	.preview .swiper-slide { width:25%; }
	.preview .arrow-left { left:0; }
	.preview .arrow-right { right:0;  }
	
}




