@font-face {

   font-family:"PuHuiTi";

   font-style:normal;font-weight:normal;

   src:url("/static/fonts/Alibaba-PuHuiTi-Light.otf")

}


@font-face {

   font-family:"optima";

   font-style:normal;font-weight:normal;

   src:url("/static/fonts/LTe53505.ttf")

}

body{
   font-family:"PuHuiTi";
}


.yinwen{
  font-family:"optima";
}

.yinwen2{
  font-family:"optima";
  font-style:italic;
}

body22 { 
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	background: #403833;
	font-family: 'Open Sans';
	font-weight: 100;
	color:#f2f2f2;
	font-size:100%;
	margin:0em;
	padding:0em;
}

/* Start the loader code, first, let's align it the center of screen */
.loader {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-mos-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align:center;
/* disable selection and cursor changes */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor:default;
}

/* Text align it the center of screen and connect the looped animation for 2.5 seconds */
.loader .text{
	position: absolute;
	top: 1.8em;
	left: 0.4em;
	z-index:5;
	font-size: 2em;
	text-transform: uppercase;
-webkit-animation: text 2.5s cubic-bezier(0.750, 0.000, 0.500, 1.000) infinite normal;
-moz-animation: text 2.5s cubic-bezier(0.750, 0.000, 0.500, 1.000) infinite normal;
-ms-animation: text 2.5s cubic-bezier(0.750, 0.000, 0.500, 1.000) infinite normal;
-o-animation: text 2.5s cubic-bezier(0.750, 0.000, 0.500, 1.000) infinite normal;
animation: text 2.5s cubic-bezier(0.750, 0.000, 0.500, 1.000) infinite normal;
}

/* Create a container for animation*/
.spinner {
	position: relative;
	width: 5em;
	height: 5em;
	color:#fff;
} 

.spinner:before,
.spinner:after {
	content: "";
	position: relative;
	display: block;
}

/* Create cube and set animation*/
.spinner:before {
	-webkit-animation: spinner 2.5s cubic-bezier(0.750, 0.000, 0.500, 1.000) infinite normal;
	-moz-animation: spinner 2.5s cubic-bezier(0.750, 0.000, 0.500, 1.000) infinite normal;
	-ms-animation: spinner 2.5s cubic-bezier(0.750, 0.000, 0.500, 1.000) infinite normal;
	-o-animation: spinner 2.5s cubic-bezier(0.750, 0.000, 0.500, 1.000) infinite normal;
	animation: spinner 2.5s cubic-bezier(0.750, 0.000, 0.500, 1.000) infinite normal;
	width: 10em;
	height: 10em;
	background-color: #DB2F00;
}

/* Create shadow and set animation*/
.spinner:after {
	-webkit-animation: shadow 2.5s cubic-bezier(0.750, 0.000, 0.500, 1.000) infinite normal;
	-moz-animation: shadow 2.5s cubic-bezier(0.750, 0.000, 0.500, 1.000) infinite normal;
	-ms-animation: shadow 2.5s cubic-bezier(0.750, 0.000, 0.500, 1.000) infinite normal;
	-o-animation: shadow 2.5s cubic-bezier(0.750, 0.000, 0.500, 1.000) infinite normal;
	animation: shadow 2.5s cubic-bezier(0.750, 0.000, 0.500, 1.000) infinite normal;
	position: relative;
	bottom: -1.75em;
	height: .25em;
	border-radius: 50%;
	background-color: #322b27;
}

/* Animation keys */
/* from cube to circle */
@-webkit-keyframes spinner {
	50%		{ 
			-webkit-border-radius: 50%;
			-webkit-transform: scale(.5) rotate(360deg);
			background-color: #13A3A5; }
	100% {
			-webkit-transform: scale(1) rotate(720deg);
			background-color: #DB2F00; }
}

@-moz-keyframes spinner {
	50%		{ 
			-moz-border-radius: 50%;
			-moz-transform: scale(.5) rotate(360deg);
			background-color: #13A3A5;}
	100%	{
			-moz-transform: scale(1) rotate(720deg);
			background-color: #DB2F00; }
}

@-mos-keyframes spinner {
	50%		{ 
			-mos-border-radius: 50%;
			-mos-transform: scale(.5) rotate(360deg);
			background-color: #13A3A5; }
	100% 	{
			-mos-transform: scale(1) rotate(720deg);
			background-color: #DB2F00; }
}

@-o-keyframes spinner {
	50%		{ 
			-o-border-radius: 50%;
			-o-transform: scale(.5) rotate(360deg);
			background-color: #13A3A5; }
	100%	{
			-o-transform: scale(1) rotate(720deg);
			background-color: #DB2F00; }
}

@keyframes spinner {
	50%		{ 
			border-radius: 50%;
			transform: scale(.5) rotate(360deg);
			background-color: #13A3A5; }
	100%	{
			transform: scale(1) rotate(720deg);
			background-color: #DB2F00; }
}


/* animation shadow */
@-webkit-keyframes shadow {
	50%		{ 
			-webkit-transform: scale(.5);
			background-color: #322b27; }
}

@-moz-keyframes shadow {
	50%		{ 
			-moz-transform: scale(.5);
			background-color: #322b27; }
}

@-mos-keyframes shadow {
	50%		{ 
			-mos-transform: scale(.5);
			background-color: #322b27; }
}

@-o-keyframes shadow {
	50%		{ 
			-o-transform: scale(.5);
			background-color: #322b27; }
}

@keyframes shadow {
	50%		{ 
			transform: scale(.5);
			background-color: #322b27; }
}

/* animation text */
@-webkit-keyframes text {
	0%		{ -webkit-transform: scale(1,1); }
	50%		{ -webkit-transform: scale(.5,.5); }
	100%	{ -webkit-transform: scale(1,1); }
}

@-moz-keyframes text {
	0%		{ -moz-transform: scale(1,1); }
	50% 	{ -moz-transform: scale(.5,.5); }
	100%	{ -moz-transform: scale(1,1); }
}

@-mos-keyframes text {
	0%		{ -mos-transform: scale(1,1); }
	50%		{ -mos-transform: scale(.5,.5); }
	100%	{ -mos-transform: scale(1,1); }
}

@-o-keyframes text {
	0%		{ -o-transform: scale(1,1); }
	50%		{ -o-transform: scale(.5,.5); }
	100%	{ -o-transform: scale(1,1); }
}

@keyframes text {
	0%		{ transform: scale(1,1); }
	50%		{ transform: scale(.5,.5);}
	100%	{ transform: scale(1,1); }
}




















.page-block-container, .pbc { margin-left: auto; margin-right: auto; margin-bottom: 70px; }

@media (max-width: 1199.98px) { .page-block-container, .pbc { margin-bottom: 40px; } }

@media (min-width: 1200px) { .page-block-container, .pbc { width: 1200px; } }

@media (max-width: 1199.98px) { .page-block-container, .pbc { padding-left: 0px; padding-right: 0px; max-width: 680px; } }

html { font-size: 14px; }

a { color: #010101; }

a:hover { text-decoration: none; color: #515151; }

p { margin-bottom: 1em; }

@media (max-width: 991.98px) { p { margin-bottom: .725em; } }

@media (max-width: 1199.98px) { .show-if-xl { display: none !important; } }

@media (min-width: 1200px) { .hide-if-xl { display: none !important; } }


@media (min-width: 1200px) {
.home0f{
background-image: url(s_09.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center; 
}
}


@media (max-width: 1199.98px) {
.home0f{
background-image: url(yd9.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center; 
}
}



@media (min-width: 1200px) { 

  footer .c1{
    text-align:center;
	padding-top:200px;
	padding-bottom:165px;
  }

  footer .c2{
    height:343px;
	background:#000000;
	color:#FFFFFF;
  }

  footer .c2 > div{
    max-width:1712px;
	margin-left:auto;
	margin-right:auto;
	display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
  }
  
  footer .cc{
    padding-top:152px;
  }




.header22 .search {display: -webkit-box; display: -ms-flexbox; display: flex; width:594px; margin-left:auto; margin-right:auto; background: url(footso.jpg) no-repeat top center; padding:1px; height:79px; }

.header22 .search > * { border: 0 none; height: 67px; }

.header22 .search input[type="text"] { width: 408px; }

.header22 .search input[type="submit"] { border:none; background:none; width:211px; cursor:pointer;}

}


@media (max-width: 1199.98px) {


.header22 .search {display: -webkit-box; display: -ms-flexbox; display: flex; width:294px; margin-left:auto; margin-right:auto; background: url(footso22.jpg) no-repeat top center; padding:1px; height:60px; border:1px solid #000000; }

.header22 .search > * { border: 0 none; height: 57px; }

.header22 .search input[type="text"] { width: 244px; border-right:1px solid #000000; }

.header22 .search input[type="submit"] { border:none; background:none; width:48px; cursor:pointer; background: url(footso2.jpg) no-repeat top center;}


footer .c2{
  background:#000000;
  text-align:left;
  color:#FFFFFF;
  margin-top:38px;
  padding-top:28px;
  font-size:10px;
  padding-left:8.9%;
}

footer .cc > div{
  padding:3px;
}

footer img{
  width:30%;
}

footer .go-top2 img{
  width:45.31%;
}

footer .go-top2{
 margin-top:20px;
}

footer .lianxi{
  font-size:14px;
}


}


.go-top { position: fixed; z-index: 19; left: 50%; bottom: 50px; margin-left: 630px; width: 50px; height: 50px; border: 1px solid #d4d4d4; border-radius: 50%; cursor: pointer; -webkit-transition: .3s .03s; transition: .3s .03s; opacity: 0; visibility: hidden; background: #515151 url(s58.png) no-repeat 50% 50%/26px 26px; }

.go-top.show { opacity: 1; visibility: visible; }

.go-top2{
  cursor:pointer;
}

/*.page-banner { height: 495px; background-repeat: no-repeat; background-position: 50% 50%; margin-bottom:60px; }*/

.page-banner { height: 932px; background-repeat: no-repeat; background-position: 50% 50%; margin-bottom:0px; }

@media (min-width: 1200px) {
 .page-banner {
   margin-top:0px;
 }
}

@media (max-width: 1199.98px) { 
  
  .page-banner { height: 0; padding-bottom: 94.05797%; -webkit-box-sizing: border-box; box-sizing: border-box; background-repeat: no-repeat; background-size: cover; background-position: center center; } 
  
  .newsb{
    padding-bottom:154%;
	margin-bottom:30%;
  }

}

.page-xtt { text-align: center; font-size: 17px; text-transform: uppercase; margin: 40px auto 30px auto; }

@media (min-width: 1200px) { .page-xtt { width: 1200px; } }

@media (max-width: 1199.98px) { .page-xtt { padding-left: 12px; padding-right: 12px; max-width: 680px; } }

@media (max-width: 1199.98px) { .page-xtt { margin-top: 20px; margin-bottom: 15px; } }

.page-xtt > div:nth-child(1) { font-weight: bold; color: #515151; bottom: 5px; }

.page-xtt > div:nth-child(2) { font-size: 19px; color: #000; }

@media (min-width: 1200px) { .page-xtt > div:nth-child(2)::before, .page-xtt > div:nth-child(2)::after { content: ""; display: inline-block; margin: 0 20px; width: 100px; border-bottom: 1px solid #888; vertical-align: middle; } }

@media (max-width: 1199.98px) { .page-xtt > div:nth-child(2) { position: relative; }
  .page-xtt > div:nth-child(2) span { display: inline-block; background: #fff; position: relative; z-index: 2; padding: 0 1.5em; }
  .page-xtt > div:nth-child(2)::before { content: ""; position: absolute; left: 0; top: 50%; width: 100%; height: 1px; background: #ccc; } }

.page-nav { margin: 0 auto; padding-top:44px; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; margin-bottom: -5px; z-index:10000000000000; }

@media (min-width: 1200px) { .page-nav { width: 1200px; } .page-nav a{font-size:60px; } }

@media (max-width: 1199.98px) { .page-nav { padding-left: 12px; padding-right: 12px; max-width: 680px; } }

.page-nav > a { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; padding: 0 2px; margin: 0 40px; margin-bottom: 5px; height: 30px; line-height: 30px; background-color: #fff; color: #5E5E5E;  font-size:16px; color:#3D3938; font-weight:bold;}


.page-nav > a:hover, .page-nav > a.active { color:#3D3938; border-bottom:1px solid #3D3938;}




.page-nav > a.active {  }

.page-nav > a:hover{ border-bottom:1px solid #3D3938; }

@media (max-width: 1199.98px) { .page-nav > a { font-size: 13px; padding: 0 10px; height: 26px; line-height: 26px; } }

.page-cnt { min-height: 280px; padding-bottom: 0px; margin-top:30px;}

@media (max-width: 1199.98px) { .page-cnt { margin-top: 40px; padding-bottom: 20px; } }

.list-pager { text-align: center; padding: 20px 0; }

.list-pager > a { display: inline-block; border: 1px solid #ccc; background: #fff; padding: 0 6px; height: 32px; line-height: 30px; min-width: 32px; margin: 0 10px; -webkit-transition: .3s .03s; transition: .3s .03s; font-size: 14px; }

@media (max-width: 1199.98px) { .list-pager > a { margin: 0 2px; } }

.list-pager > a.active { border-color: #515151; background: #515151; color: #fff; }

.list-pager > a:hover { border-color: #515151; }

@media (min-width: 1200px) { .story-index .ls { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin: 0 auto; } 

   .story-index .ls .more:hover{background:#000B55; color:#FFFFFF;}


}



@media (max-width: 1199.98px) { .story-index .ls > div { margin-bottom: 30px; } }

.story-index .ls > div:nth-child(3n) { margin-right: 0; }

.story-index .ls > div > a { position: relative; display: block; }

.story-index .ls .txt > * { margin-top: 5px; }

.story-index .ls .img { height: 250px; height: 0; padding-bottom: 67.56757%; -webkit-box-sizing: border-box; box-sizing: border-box; background-repeat: no-repeat; background-size: cover; background-position: center center; }

.story-index .ls .title { font-size: 19px; line-height: 1.3; }

@media (max-width: 1199.98px) { .story-index .ls .title { font-size: 17px; } }

.story-index .ls .author { color: #6c6c6c; }

.story-index .ls .author > span:nth-child(1) { margin-right: 10px; }

.story-index .ls .brief { color: #707070; font-size: 13px; line-height: 1.6; max-height: 104px; overflow: hidden; text-align: justify; }



.story-index .ls .time { position: absolute; right: 10px; top: 10px; color: #333; border-radius: 50%; background-color: rgba(255, 255, 255, 0.9); width: 66px; height: 66px; padding-top: 8px; }

.story-index .ls .time > span { display: block; text-align: center; line-height: 1; }

.story-index .ls .time > span:nth-child(1) { font-size: 13px; }

.story-index .ls .time > span:nth-child(1)::after { content: ""; display: block; margin: 6px auto 2px auto; width: 18px; height: 3px; background-color: #515151; }

.story-index .ls .time > span:nth-child(2) { font-size: 23px; }





@media (min-width: 1200px) { 
  
  .story-index .ls > div { margin-bottom: 70px; width: 1200px; margin-right: 0px; height:275px; padding-bottom:84px; border-bottom:1px solid #959595; } 

  
  .story-index .ls > div a{display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;}
  
  .story-index .ls > div a .author{
    width:13.62%;
	border-right:1px solid #959595;
  }
  
  .story-index .ls > div a .img{
    width:24.09%;
  }
  
  .story-index .ls > div a .txt{
    width:55.96%;
  } 
  
  .story-index .ls .img { height: 175px;  padding-bottom: 0px; -webkit-box-sizing: border-box; box-sizing: border-box; background-repeat: no-repeat; background-size: cover; background-position: center center; } 
  
  .story-index .ls .tt{
    font-size:28px;
	color:#000B55;
	font-weight:bold;
  }
  
  .story-index .ls .brief{
    padding-top:27px;
	padding-bottom:27px;
  }
  
  .story-index .ls .more { width:90px; height:42px; line-height:42px; text-align:center;border-radius:4px; color:#000B55; background:none; border:1px solid #000B55;}

  
}








.story-item h2 { font-size: 20px; text-align: center; }

.story-item .info { margin: 20px 0; text-align: center; border-top: 1px dashed #ccc; border-bottom: 1px dashed #ccc; padding: 3px 0; color: #666; }

.story-item .info > span { margin: 0 10px; }

.story-item .content { font-size: 16px; line-height: 1.625; text-align: justify; }

.story-item .content img { max-width: 100%; height: auto !important; }

.story-item .content iframe { max-width: 100%; height:300px; }

.story-item .links { margin-top: 80px; }

@media (max-width: 1199.98px) { .story-item .links { margin-top: 40px; } .story-item{padding-top:40px; margin-left:8.9%; margin-right:8.9%;} }

.story-item .links > div:nth-child(2) { margin-top: 10px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 10px 0; border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; }

.story-item .links > div:nth-child(2) > a { max-width: 40%; }

.story-item .links > div:nth-child(2) > a > div:nth-child(1) { color: #999; }

.story-item .rels { margin-top: 80px; }

@media (max-width: 1199.98px) { .story-item .rels { margin-top: 40px; } }

.story-item .rels .t { text-align: center; font-size: 18px; margin-bottom: 20px; }

.story-item .rels .t::after { content: ""; display: block; margin: 5px auto; background-color: #c93835; width: 80px; height: 3px; }

.story-item .rels .ls { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }

.story-item .rels .ls > a { width: 42%; display: -webkit-box; display: -ms-flexbox; display: flex; margin-bottom: 20px; }

@media (max-width: 1199.98px) { .story-item .rels .ls > a { width: 100%; margin-bottom: 10px; } }

.story-item .rels .ls .img { width: 150px; height: 110px; margin-right: 10px; background-repeat: no-repeat; background-size: cover; background-position: center center; }

.story-item .rels .ls .txt { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; }

.story-item .rels .ls .title { font-size: 16px; height: 48px; line-height: 24px; overflow: hidden; margin-bottom: 30px; }

.story-item .rels .ls .time { color: #666; }





.gallery-index .ls { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin: 0 auto; }

@media (min-width: 1200px) { .gallery-index .ls > div { width: 380px; margin-right: 30px; margin-bottom: 30px; } }

@media (max-width: 1199.98px) { .gallery-index .ls > div { width: 50%; margin-bottom: 20px; }
  .gallery-index .ls > div:nth-child(odd) { padding-right: 5px; }
  .gallery-index .ls > div:nth-child(even) { padding-left: 5px; } }

.gallery-index .ls > div:nth-child(3n) { margin-right: 0; }

.gallery-index .ls > div > a { position: relative; display: block; }

.gallery-index .ls .img { height: 0; padding-bottom: 92.10526%; -webkit-box-sizing: border-box; box-sizing: border-box; background-repeat: no-repeat; background-size: cover; background-position: center center; }

.gallery-index .ls .title { font-size: 16px; margin-top: 5px; text-align: center; }


@media (min-width: 1200px) { 
.gallery-index{
  max-width:1495px;
  margin-left:auto;
  margin-right:auto;
}

}

.gallery-index .list { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin: 0 auto; }

@media (max-width: 1199.98px) {

.gallery-index .list {
  margin-left:8.9%;
  margin-right:8.9%;
} 
 
}


@media (min-width: 1200px) { .gallery-index .item { width: 481px; margin-right: 20px; margin-bottom: 40px; } }


@media (max-width: 1366px) {
 
 .gallery-index .item { width: 385px; margin-right: 15px; margin-bottom: 40px; }
 .gallery-index{
    width:1200px;
	margin-left:auto;
	margin-right:auto;
 }
}



@media (max-width: 1199.98px) { .gallery-index .item { width: 50%; margin-bottom: 20px; margin-right:0px; margin-bottom:15px; }
  .gallery-index .item:nth-child(odd) { padding-right: 5px; }
  .gallery-index .item:nth-child(even) { padding-left: 5px; } 
  .gallery-index{
      width:100%;
  }  
}

.gallery-index .item:nth-child(3n) { margin-right: 0; }

.gallery-index .item > a { position: relative; display: block; }

.gallery-index .img { position: relative; height: 0; padding-bottom: 76.92308%; -webkit-box-sizing: content-box; box-sizing: content-box; background-repeat: no-repeat; background-size: cover; background-position: center center; }

.gallery-index .img-contain { background-size: contain; }

.gallery-index .img::after { content: ""; position: absolute; left: 0; top: 0; right: 0; bottom: 0; margin: 10px; background: rgba(215, 19, 24, 0.3) url(s06.png) no-repeat 50% 50%; -webkit-transition: .3s 0s; transition: .3s 0s; opacity: 0; }

.gallery-index .img-contain::after { background-size: contain; display: none; }

.gallery-index a:hover .img::after { -webkit-transition: .3s .03s; transition: .3s .03s; opacity: 1; }

.gallery-index .title { font-size: 16px; margin-top: 0px; text-align: center; }




@media (min-width: 1200px) {
  .gallerystory{
    width:1495px;
	margin-left:auto;
	margin-right:auto;
  }
}









.gallerystory .list { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin: 0 auto; }

@media (min-width: 1200px) { .gallerystory .item { width: 491px; margin-right: 10px; margin-bottom: 40px; } }


@media (max-width: 1366px) {
   
   .gallerystory .item { width: 390px; margin-right: 10px; margin-bottom: 40px; } 
   
   .gallerystory{
      width:1200px;
	  margin-left:auto;
	  margin-right:auto;
   }

}



@media (max-width: 1199.98px) { .gallerystory .item { width: 50%; margin-bottom: 20px; margin-right:0px; }
  .gallerystory .item:nth-child(odd) { padding-right: 5px; }
  .gallerystory .item:nth-child(even) { padding-left: 5px; } 
  
  .gallerystory{
    width:100%;
	padding-left:8.9%;
	padding-right:8.9%;
   }
    
}

.gallerystory .item:nth-child(3n) { margin-right: 0; }

.gallerystory .item > a { position: relative; display: block; }

.gallerystory .img { position: relative; height: 0; padding-bottom: 76.92308%; -webkit-box-sizing: content-box; box-sizing: content-box; background-repeat: no-repeat; background-size: cover; background-position: center center; }

.gallerystory .img-contain { background-size: contain; }

.gallerystory .img::after { content: ""; position: absolute; left: 0; top: 0; right: 0; bottom: 0; margin: 10px; background: rgba(0, 0, 0, 0.3) url(s06.png) no-repeat 50% 50%; -webkit-transition: .3s 0s; transition: .3s 0s; opacity: 0; }

.gallerystory .img-contain::after { background-size: contain; display: none; }

.gallerystory a:hover .img::after { -webkit-transition: .3s .03s; transition: .3s .03s; opacity: 1; }

.gallerystory .time { font-size: 14px; margin-top: 10px; margin-bottom:10px; }


.gallerystory span{
  border-bottom:2px solid #CBB583;
}

















.sp-supp .ct { margin: 0 auto; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; }

@media (min-width: 1200px) { .sp-supp .ct { width: 840px; } }

.sp-supp .ct > div { width: 33.3333%; text-align: center; margin-bottom: 80px; }

.sp-supp .ct > div > div { margin-top: 10px; font-size: 16px; }

.sp-supp .ct > div img { max-width: 100%; }

@media (max-width: 1199.98px) { .sp-supp .ct > div { padding: 0 15px; margin-bottom: 40px; }
  .sp-supp .ct > div > div { font-size: 14px; } }

.join01 { position: relative; margin: 0 auto; }

@media (min-width: 1200px) { .join01 { width: 1200px; } }

@media (max-width: 1199.98px) { .join01 { padding-left: 12px; padding-right: 12px; max-width: 680px; } }

@media (min-width: 1200px) { .join01 { height: 1040px; background: url(s11.jpg) no-repeat 0 0; } }

.join01 .item { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }

@media (min-width: 1200px) { .join01 .item { width: 510px; height: 200px; margin: 0 auto; } }

@media (max-width: 1199.98px) { .join01 .item { padding-bottom: 15px; border-bottom: 1px dashed #ddd; margin-bottom: 15px; } }

.join01 .item .n { border-radius: 50%; background-color: #c60a0e; width: 86px; height: 86px; line-height: 86px; text-align: center; color: #fff; font-size: 37px; }

@media (max-width: 1199.98px) { .join01 .item .n { margin-right: 10px; width: 38px; height: 38px; line-height: 38px; font-size: 23px; } }

.join01 .item:nth-child(even) .n { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; margin-left: 10px; }

@media (min-width: 1200px) { .join01 .item .x { width: 390px; } }

@media (max-width: 1199.98px) { .join01 .item .x { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; } }

.join01 .item .x > div:nth-child(1) { font-weight: bold; }

.join01 .item .x > div:nth-child(2) { text-align: justify; }

@media (max-width: 1199.98px) { .join01 .item .x > div:nth-child(2) { font-size: 12px; } }

.join01 .hint { margin-top: 50px; text-align: center; font-size: 16px; }

.join01 .hint > span { margin: 0 10px; }

.join01 .hint strong { color: #515151; }


.join011 img{
  width:100%;
}

@media (min-width: 1200px) {
.join011{
  width:1084px;
  margin-left:auto;
  margin-right:auto;
}
}
   





@media (max-width: 1199.98px) { .join01 .hint { margin-top: 15px; font-size: 14px; }
  .join01 .hint span { display: block; } }

.join02 .tt { font-size: 26px; margin-bottom: 50px; text-align: center; }

@media (max-width: 1199.98px) { .join02 .tt { margin-top: 25px; margin-bottom: 15px; } }

.join02 .cc { position: relative; z-index: 2; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }

@media (max-width: 1199.98px) { .join02 .cc { -ms-flex-wrap: wrap; flex-wrap: wrap; margin-bottom: -15px; } }

@media (min-width: 1200px) { .join02 .cc:after { content: ""; position: absolute; width: 94%; height: 1px; left: 50%; top: 92px; -webkit-transform: translateX(-50%); transform: translateX(-50%); background-color: #7c7c7d; z-index: 0; } }

.join02 .cc > div { text-align: center; }

@media (max-width: 1199.98px) { .join02 .cc > div { margin-bottom: 15px; width: 30%; background: #f3f3f3; padding: 10px; padding-bottom: 4px; border-radius: 4px; } }

.join02 .cc > div img { display: block; max-height: 42px; margin: 0 auto; }

@media (min-width: 1200px) { .join02 .cc > div div:nth-child(1) { height: 100px; position: relative; margin-bottom: 40px; }
  .join02 .cc > div div:nth-child(1)::after { position: absolute; z-index: 2; content: ""; display: block; left: 50%; bottom: 0; margin-left: -9px; border: 1px solid #7c7c7d; border-radius: 50%; background-color: #fff; width: 16px; height: 16px; } }

@media (max-width: 1199.98px) { .join02 .cc > div div:nth-child(1) { height: 42px; } }

.join03 { margin-left: auto; margin-right: auto; margin-bottom: 70px; }

@media (max-width: 1199.98px) { .join03 { margin-bottom: 40px; } }

@media (min-width: 1200px) { .join03 { height: 583px; background: url(s24.jpg) no-repeat 50% 50%; margin-bottom: 70px; } }

@media (max-width: 1199.98px) { .join03 { padding: 15px 0; background: #eee; } }

.join03 .wrp { margin: 0 auto; overflow: hidden; }

@media (min-width: 1200px) { .join03 .wrp { width: 1200px; } }

@media (max-width: 1199.98px) { .join03 .wrp { padding-left: 12px; padding-right: 12px; max-width: 680px; } }

.join03 .map { float: left; background-color: rgba(255, 255, 255, 0.8); padding: 20px 80px; margin-top: 35px; position: relative; -webkit-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1); box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1); }

.join03 .map .msg { position: absolute; font-size: 18px; left: 40px; top: 20px; }

.join03 .map .msg strong { color: #515151; }

.join03 .res { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; background-color: #fff; }

@media (min-width: 1200px) { .join03 .res { float: right; width: 380px; height: 583px; } }

@media (max-width: 1199.98px) { .join03 .res { height: 400px; } }

.join03 .res .sel { background-color: #515151; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 6px; }

.join03 .res .sel select { border-radius: 4px; background: #fff; border: 0 none; width: 49%; }

.join03 .res .t { font-size: 18px; text-align: center; margin: 20px 0; }

.join03 .res .ls { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; overflow: auto; }

.join03 .res .ls::-webkit-scrollbar { width: 6px; }

.join03 .res .ls::-webkit-scrollbar-track-piece { border-radius: 3px; background-color: rgba(0, 0, 0, 0.1); }

.join03 .res .ls::-webkit-scrollbar-thumb { border-radius: 3px; background-color: rgba(201, 57, 54, 0.7); }

.join03 .res .ls::-webkit-scrollbar-thumb:hover { background-color: #515151; }

.join03 .res .ls > div { margin: 0 20px; padding: 15px 0; border-bottom: 1px solid #ccc; }

.join03 .res .ls > div:first-child { padding-top: 0; }

.join03 .res .ls > div:last-child { border-bottom: 0 none; }

.join04 .tt { padding-bottom: 20px; font-size: 26px; margin-bottom: 40px; text-align: center; border-bottom: 1px solid #ccc; }

@media (max-width: 1199.98px) { .join04 .tt { margin-bottom: 15px; padding-bottom: 5px; font-size: 21px; } }

.join04 .cc .ls { overflow: hidden; }

.join04 .cc .ls > div { float: left; }

@media (min-width: 1200px) { .join04 .cc .ls > div { width: 275px; margin-right: 33.33333px; margin-bottom: 25px; } }

@media (max-width: 1199.98px) { .join04 .cc .ls > div { width: 50%; margin-bottom: 15px; }
  .join04 .cc .ls > div:nth-child(odd) { padding-right: 5px; }
  .join04 .cc .ls > div:nth-child(even) { padding-left: 5px; } }

.join04 .cc .ls > div:nth-child(4n+4) { margin-right: 0; }

.join04 .cc .ls > div > a { display: block; }

.join04 .cc .img { height: 0; padding-bottom: 100%; -webkit-box-sizing: border-box; box-sizing: border-box; background-repeat: no-repeat; background-size: cover; background-position: center center; }

.join04 .cc .title { height: 20px; line-height: 20px; text-align: center; margin-top: 6px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }

.join05 .tt { font-size: 26px; margin-bottom: 20px; }

@media (max-width: 1199.98px) { .join05 .tt { font-size: 21px; margin-bottom: 15px; } }

.join05 .st { margin-bottom: 40px; }

@media (max-width: 1199.98px) { .join05 .st { margin-bottom: 15px; } }

.join05 .cc { overflow: hidden; }

@media (min-width: 1200px) { .join05 .cc { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } }

@media (min-width: 1200px) { .join05 form { width: 830px; } }

.join05 form .c { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; margin-bottom: 20px; }

@media (max-width: 767.98px) { .join05 form .c { margin-bottom: 0; } }

.join05 form .c > * { width: 19%; height: 32px; border: 1px solid #aaa; padding: 0 10px; }

@media (max-width: 767.98px) { .join05 form .c > * { width: 100%; margin-bottom: 10px; } .home07 .c2 { display:none} }

.join05 form textarea { display: block; width: 100%; height: 260px; border: 1px solid #aaa; margin-bottom: 20px; padding: 5px 10px; }

@media (max-width: 1199.98px) { .join05 form textarea { height: 90px; margin-bottom: 15px; } }

.join05 form input[type="submit"] { width: 220px; height: 48px; background: #515151; border: 0 none; color: #fff; display: block; margin: 0 auto; cursor: pointer; }

.join05 .reply { width: 330px; font-size: 12px; padding: 20px; border: 1px solid #ccc; }

@media (max-width: 1199.98px) { .join05 .reply { width: 100%; margin-top: 25px; } }

.join05 .reply > div { overflow: hidden; margin-bottom: 10px; padding-left: 15px; position: relative; }

.join05 .reply > div::before { content: ""; position: absolute; left: 0; top: 6px; border-radius: 50%; width: 8px; height: 8px; background: #515151; }

.sp-about .xtt { font-size: 20px; margin-bottom: 25px; }

.sp-about .xtt div:first-child { font-size: 20px; line-height: 1.2; font-weight: 700; }

.sp-about .xtt div:last-child { color: #515151; font-weight: bold; }

@media (max-width: 1199.98px) { .sp-about .xtt { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end; margin-bottom: 10px; }
  .sp-about .xtt div:first-child { font-size: 27px; line-height: 1.2; font-weight: 500; }
  .sp-about .xtt div.s { margin-left: 10px; font-size: 21px; line-height: 1.4; }
  .sp-about .xtt div:last-child { width: 100%; color: #515151; font-weight: bold; } }

@media (min-width: 1200px) {
  .sp-about .mainc{
     max-width:1286px;
	 margin-left:auto;
	 margin-right:auto;
  }  
}

@media (max-width: 1366px) {

  .sp-about .mainc22{
     max-width:1200px;
	 margin-left:auto;
	 margin-right:auto;
  }  

}  
  
@media (max-width: 1199.98px) {
  .sp-about .mainc{
    padding-left:8.9%;
	padding-right:8.9%;
  }
} 

@media (min-width: 1200px) { .about011 { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } }

@media (min-width: 1200px) { .about01 .c1 { width: 995px; margin-left:auto; margin-right:auto; } .about01 .xtt div{text-align:center;} }

.about01 .c1 .txt { line-height:30px; }

@media (min-width: 1200px) { .about01 .c2 img { max-width: 533px; max-height: 600px; } }

@media (max-width: 1199.98px) { .about01 .c2 img { width: 100%; } }

.about01 .c3 { width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; text-align: center; -ms-flex-pack: distribute; justify-content: space-around; margin-top: 20px; }

@media (max-width: 1199.98px) { .about01 .c3 { -ms-flex-wrap: wrap; flex-wrap: wrap; margin-top: 0; } }

.about01 .c3 > div > div:nth-child(1) { color: #515151; font-size: 48px; }

@media (max-width: 1199.98px) { .about01 .c3 > div { width: 40%; }
  .about01 .c3 > div > div:nth-child(1) { font-size: 42px; } }
  
  
.sp-about .xtt{
  text-align:center;
}  

.sp-about .xtt span{
  font-size:16px;
}
  
  

@media (min-width: 1200px) { .about02 .ct { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between; }
  .about02 .c1 { width: 405px; height:528px;background: url(intro2.jpg) no-repeat right bottom;}
  
  .about02 .c2 { width:669px; color:#5E5D5B;} 
}

@media (min-width: 1200px) { .about02 .c2{padding-top:27px;}.about02{ padding-bottom:107px; padding-top:107px;}}

@media (max-width: 1199.98px) { .about02 .c1 img { width: 100%; } }




@media (min-width: 1200px) { .about022 .ct { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;padding-top:76px; }
  .about022 .c1 { width: 651px; height:381px;background: url(intro4.jpg) no-repeat right bottom; }
  
  .about022 .c2 { width:493px; color:#fff;} 

.mk1,.mk2{
  padding-left:36px;
}

.mk1{
  border-bottom:1px solid #565656;
  padding-bottom:9px;
}

.mk2{
  color:#808080;
}
  
}

@media (min-width: 1200px) { .about022 .c2{padding-top:57px;}.about022{ padding-bottom:107px; padding-top:107px;}.about022w{background:#111111;}}

@media (max-width: 1199.98px) { .about022 .c1 img { width: 100%; } }




@media (min-width: 1200px) { .about03 { position: relative; background: url(s26.jpg) no-repeat 5px 40px; }
  .about03 .tabs { position: absolute; left: 320px; top: 30px; }
  .about03 .tabs > div { cursor: pointer; float: left; width: 56px; margin-right: 56px; margin-bottom:18px; text-align: center; font-size: 24px; }
  .about03 .tabs > div.active { color: #515151; }
  .about03 .panels { position: relative; margin-top: 40px; overflow: hidden; }
  .about03 .panels > div { display: -webkit-box; display: -ms-flexbox; display: flex; position: absolute; left: 0; top: 0; z-index: 1; overflow: hidden; opacity: 0; -webkit-transition: .3s; transition: .3s; -webkit-transition-property: opacity,visibility; transition-property: opacity,visibility; }
  .about03 .panels > div.active { visibility: visible; position: relative; z-index: 2; opacity: 1; }
  .about03 .panels .txt { margin-left: 140px; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; }
  .about03 .panels .txt > div:nth-child(1) { font-size: 24px; padding-bottom: 6px; border-bottom: 1px dashed #ccc; margin-bottom: 15px; }
  .about03 .panels .txt > div:nth-child(2) { line-height: 1.8; }
  .about03 .panels .img { margin-left: 70px; }
  .about03 .panels .img img { max-width: 490px; max-height: 600px; } }

@media (max-width: 1199.98px) { .about03 { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; }
  .about03 .xtt { width: 100%; }
  .about03 .tabs { text-align: center; margin-right: 18px; font-size: 16px; border-right: 1px solid #ddd; }
  .about03 .tabs > div { position: relative; padding: 5px 0; padding-right: 16px; -webkit-transition: .3s; transition: .3s; }
  .about03 .tabs > div::before { content: ""; position: absolute; width: 1px; height: 100%; right: -1px; top: 0; background: #515151; -webkit-transition: .5s; transition: .5s; opacity: 0; -webkit-transform: scale(0); transform: scale(0); }
  .about03 .tabs > div::after { content: ""; position: absolute; right: -4px; top: 50%; margin-top: -4px; width: 8px; height: 8px; border-radius: 50%; border: 1px solid #ccc; background: #fff; -webkit-transition: .3s; transition: .3s; }
  .about03 .tabs > div.active { color: #515151; }
  .about03 .tabs > div.active::before { opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
  .about03 .tabs > div.active::after { border-color: #515151; }
  .about03 .panels { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; position: relative; }
  .about03 .panels > div { position: absolute; left: 0; top: 0; z-index: 1; overflow: hidden; visibility: hidden; opacity: 0; -webkit-transition: .3s; transition: .3s; -webkit-transition-property: opacity,visibility; transition-property: opacity,visibility; }
  .about03 .panels > div.active { visibility: visible; position: relative; z-index: 2; opacity: 1; }
  .about03 .panels img { max-width: 100%; } }

.about04 .xtt > div:last-child span { font-size: 14px; color: #666; font-weight: normal; }

.about04 .swiper-slide > a { display: block; }

.about04 .img { border: 1px solid #fff; padding: 9px; }

@media (max-width: 1199.98px) { .about04 .img { padding: 4px; } }

.about04 .img > div { height: 0; padding-bottom: 107.40741%; -webkit-box-sizing: border-box; box-sizing: border-box; background-repeat: no-repeat; background-size: contain; background-position: center center; }

.about04 .title { text-align: center; margin-top: 5px; }

@media (max-width: 1199.98px) { .about04 .title { font-size: 13px; margin-top: 2px; } }

.about04 .swiper-pagination { position: static; margin-top: 10px; }

@media (max-width: 1199.98px) { .about04 .swiper-pagination { margin-top: 5px; } }

.about04 .swiper-pagination-bullet { width: 12px; height: 12px; }

.about04 .swiper-pagination-bullet-active { background: #515151; }

.about05 .xtt { border-bottom: 1px dashed #ccc; padding-bottom: 8px; }

@media (min-width: 1200px) { .about05 .map { height: 550px; } }

@media (max-width: 1199.98px) { .about05 .map { height: 300px; } }

.about06 .xtt { border-bottom: 1px dashed #ccc; padding-bottom: 8px; }

.about06 .h { color: #666; margin-top: -10px; margin-bottom: 20px; }

@media (max-width: 1199.98px) { .about06 .h { margin: 10px 0; } }

@media (min-width: 576px) { .about06 form .c { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; margin-bottom: 20px; }
  .about06 form .c > * { width: 32.5%; height: 32px; border: 1px solid #aaa; padding: 0 10px; } }

@media (max-width: 575.98px) { .about06 form .c > * { width: 100%; height: 28px; border: 1px solid #aaa; padding: 0 10px; margin-bottom: 10px; } }

.about06 form textarea { display: block; width: 100%; height: 180px; border: 1px solid #aaa; padding: 10px; margin-bottom: 20px; }

.about06 form input[type="submit"] { width: 220px; height: 48px; background: #515151; border: 0 none; color: #fff; display: block; margin: 0 auto; cursor: pointer; }





.about07 .swiper-slide > a { display: block; }

.about07 .img { position: relative; padding-bottom: 100.33121%; background-repeat: no-repeat; background-size: cover; background-position: center center; }

.about07 .img::after { content: ""; position: absolute; left: 0; top: 0; right: 0; bottom: 0; background: transparent url(s40.png) no-repeat 50% 50%; opacity: .8; -webkit-transition: .3s; transition: .3s; }

.about07 a:hover .img::after { opacity: 1; background-color: rgba(0, 0, 0, 0.3); }

.about07 .title { height: 24px; line-height: 24px; padding-left: 16px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; background-color: #222; color: #fff; }

.about07 .swiper-pagination { position: static; margin-top: 10px; }

@media (max-width: 1199.98px) { .about07 .swiper-pagination { margin-top: 5px; } }

.about07 .swiper-pagination-bullet { width: 12px; height: 12px; }

.about07 .swiper-pagination-bullet-active { background: #515151; }

.about07{
  margin-left:8.9%;
  margin-right:8.9%;
}





.about08 .swiper-slide > a { display: block; }

.about08 .img2 { position: relative; padding-bottom: 60.33121%; background-repeat: no-repeat; background-size: cover; background-position: center center;}

.about08 .img2::after { content: ""; position: absolute; left: 0; top: 0; right: 0; bottom: 0; background: transparent url(s40.png) no-repeat 50% 50%; opacity: .8; -webkit-transition: .3s; transition: .3s; }

.about08 a2:hover .img::after { opacity: 1; background-color: rgba(0, 0, 0, 0.3); }

.about08 .title { height: 24px; line-height: 24px; padding-left: 16px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; background-color: #222; color: #fff; }

.about08 .swiper-pagination { position: static; margin-top: 10px; }

@media (max-width: 1199.98px) { .about08 .swiper-pagination { margin-top: 5px; } }

.about08 .swiper-pagination-bullet { width: 12px; height: 12px; }

.about08 .swiper-pagination-bullet-active { background: #515151; }

.about08 .img{
   text-align:center;
   height:350px;
   overflow:hidden;
}

.about08 .img img{
  height:350px;
  width:auto;
}

.about08 .canshu{
  display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
  padding-top:30px;
}









.sp-prod > div { height: 670px; overflow: hidden; background-repeat: no-repeat; background-position: center center; text-align: center; }

.sp-prod > div > div:nth-child(1) { font-size: 38px; line-height: 1; margin-top: 70px; text-shadow: 1px 1px 1px #fff; }

.sp-prod > div > div:nth-child(2) { line-height: 1; font-size: 28px; font-weight: 500; margin-top: 10px; text-transform: uppercase; text-shadow: 1px 1px 1px #fff; }

.sp-prod > div > div:nth-child(3) { margin: 48px 0; font-size: 18px; line-height: 24px; }

.sp-prod > div > div:nth-child(4) img { max-width: 100%; }

@media (max-width: 1199.98px) { .sp-prod > div { height: auto; background-size: cover; padding-bottom: 40px; } }

@media (max-width: 1199.98px) and (min-width: 1200px) { .sp-prod > div { width: 1200px; } }

@media (max-width: 1199.98px) and (max-width: 1199.98px) { .sp-prod > div { padding-left: 12px; padding-right: 12px; max-width: 680px; } }

@media (max-width: 1199.98px) { .sp-prod > div > div:nth-child(1) { font-size: 23px; line-height: 1; margin-top: 30px; text-shadow: 1px 1px 1px #fff; }
  .sp-prod > div > div:nth-child(2) { line-height: 1; font-size: 18px; font-weight: 500; margin-top: 10px; text-transform: uppercase; text-shadow: 1px 1px 1px #fff; }
  .sp-prod > div > div:nth-child(3) { margin: 20px 0; } }

.search-title { font-size: 18px; }


@media (min-width: 1200px) { 

  .product-index,.listing-index{
     width:88.75%;
	 margin-left:auto;
	 margin-right:auto;
  }




.product-index .ls { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; }

}

/*
@media (min-width: 1200px) { .product-index .ls > div { width: 590px; margin-right: 10px; margin-bottom: 30px; } }
*/

@media (min-width: 1200px) { .product-index .ls > div { width: 49.64%; margin-right: 10px; margin-bottom: 10px; } }

@media (max-width: 1366px) {.product-index .ls > div { width: 49%; }}

@media (max-width: 1199.98px) {.product-index .smallpro{display:none;} .product-index .ls > div { width: 100%; margin-bottom: 12px; }
  /*.product-index .ls > div:nth-child(odd) { padding-right: 5px; }
  .product-index .ls > div:nth-child(even) { padding-left: 5px; } */
  .product-index .ls{
    margin-left:8.9%;
	margin-right:8.9%;
  }
}

.product-index .ls > div:nth-child(2n) { margin-right: 0; }

.product-index .ls > div > a { position: relative; display: block; border: 0px solid #ccc; -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); -webkit-transition: .2s box-shadow; transition: .2s box-shadow; }

.product-index .ls > div > a:hover { -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2); box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2); }

/*
.product-index .img { padding-bottom: 100%; background-repeat: no-repeat; background-size: contain; background-position: center center; }
*/

/*
@media (min-width: 1200px) {
.product-index .img { height:450px; background-repeat: no-repeat; background-size: cover; background-position: center center; }
}
*/

@media (min-width: 1200px) {
.product-index .img { height:0px; padding-bottom:70%; background-repeat: no-repeat; background-size: cover; background-position: center center; }
}


@media (max-width: 1199.98px) { 
.product-index .img { padding-bottom: 70%; background-repeat: no-repeat; background-size: cover; background-position: center center; }
}

.product-index .title { height: 20px; line-height: 20px; font-size: 15px; padding-left: 10px; padding-right: 45px; text-align: center; margin: 10px 0; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; display:none; }



@media (max-width: 1199.98px) { .product-index .title { padding-left: 3px; padding-right: 3px; font-size: 13px; margin: 4px 0; } }

.product-index .code { position: absolute; left: 0; top: 0; padding: 30px; background: #fff; -webkit-transition: .2s; transition: .2s; opacity: 0; visibility: hidden; }

.product-index .code.show { opacity: 1; visibility: visible; }

.product-index .code-btn { position: absolute; right: 8px; bottom: 8px; width: 24px; height: 24px; background: url(s27.png) no-repeat 0 0; -webkit-transition: .2s .02s; transition: .2s .02s; opacity: .68; }

.product-index .code-btn:hover { opacity: 1; }




.product-index .img-wrp { position: relative; }



.product-index .img-wrp .txt { position: absolute; left: 0; top: 0; right: 0; bottom: 0; display: -webkit-box; display: -ms-flexbox; display: flex; color: #fff; background: rgba(81, 81, 81, 0.5); -webkit-transition: .3s .03s; transition: .3s .03s; opacity: 0; }

.product-index .img-wrp .txt > div { position:relative; width:100%; height:100%;}


.product-index .img-wrp .txt > div .c0{
  position:absolute;
  left:50px;
  top:30px;
  font-size:26px;
  font-weight:bold;
}

.product-index .img-wrp .txt > div .c1{
  position:absolute;
  left:50px;
  bottom:50px;
  font-size:36px;
  font-weight:bold;
  line-height:46px;
}

.product-index .img-wrp .txt > div .c1 .yinwen{
  font-size:48px;
}


.product-index .img-wrp .txt > div .c2{
  position:absolute;
  right:50px;
  bottom:50px;
}


.product-index .img-wrp .txt > div img { margin-bottom: 10px; }

.product-index .img-wrp:hover .txt { opacity: 1; }

.product-index .img-wrp:hover .title{
  color:#515151;
}


@media (min-width: 1200px) {


}


@media (max-width: 1199.98px) {

.product-index .img-wrp .txt { position: absolute; left: 0; top: 0; right: 0; bottom: 0; display: -webkit-box; display: -ms-flexbox; display: flex; color: #fff; background: rgba(81, 81, 81, 0.5); -webkit-transition: .3s .03s; transition: .3s .03s; opacity:0.8; }

.product-index .img-wrp .txt > div .c0{
  position:absolute;
  left:6.03%;
  top:6.36%;
  font-size:30px;
  font-weight:bold;
}


.product-index .img-wrp .txt > div .c1{
  position:absolute;
  left:6.03%;
  bottom:6.1%;
  font-size:18px;
  font-weight:bold;
  line-height:20px;
}

.product-index .img-wrp .txt > div .c1 .yinwen{
  font-size:14px;
}

.product-index .img-wrp .txt > div .c2{
  position:absolute;
  right:7.16%;
  bottom:3.1%;
  width:12.07%;
}

.product-index .img-wrp .txt > div .c2 img{
  width:100%;
  height:auto;
}


}




















/*


.product-item2 .sec01 > .title, .product-item2 .info .title { color: #326292; padding-bottom: 20px; margin-bottom: 20px; font-size: 20px; border-bottom: 1px solid #eee; }







@media (max-width: 1199.98px) { .product-item2 { width: 100%; padding-left: 12px; padding-right: 12px; max-width: 680px; } }



.product-item2 .xtt { font-size: 19px; letter-spacing: 3px; border-bottom: 1px solid #ddd; margin-top: -14px; margin-bottom: 25px; text-align: center; height: 48px; }



@media (max-width: 1199.98px) { .product-item2 .xtt { margin-bottom: 15px; font-size: 17px; } }



.product-item2 .xtt > span { padding: 0 10px; display: inline-block; height: 48px; line-height: 48px; border-bottom: 2px solid #326292; }



.product-item2 > * { margin-left: auto; margin-right: auto; margin-bottom: 70px; }



@media (max-width: 1199.98px) { .product-item2 > * { margin-bottom: 40px; } }



.product-item2 .crumb { margin-bottom: 30px; }



.product-item2 .crumb > a:first-child { background: url(s31.png) no-repeat 0 50%; padding-left: 24px; }



.product-item2 .crumb span { margin: 0 3px; color: #666666; }



*/





.product-item2 .sec01 { padding-bottom: 150px; padding-top:150px; }



@media (min-width: 1200px) { .product-item2 .view { width:1200px; margin-left:auto; margin-right:auto; } }



.product-item2 .view .img-wrp { position: relative;  padding: 5px; }


.product-item2 .view .img-wrp .img{
  width:1000px;
  margin-left:auto;
  margin-right:auto;
  height:358px;
  position:relative;


}

.product-item2 .view .img-wrp .img .sjz{
  position:absolute;
  left:0px;
  top:139px;
}

.product-item2 .view .dd{
  width:238px;
  min-height:112px;
  border:1px solid #565656;
}

.product-item2 .view .sjz-1{
  position:absolute;
  left:0px;
  top:185px;
}


.product-item2 .view .sjz-3{
  position:absolute;
  left:308px;
  top:185px;
}

.product-item2 .view .sjz-5{
  position:absolute;
  left:609px;
  top:185px;
}


.product-item2 .view .ss{
  width:238px;
  min-height:112px;
  border:1px solid #565656;
}


.product-item2 .view .sjz-2{

  position:absolute;
  left:159px;
  top:0px;
  
}


.product-item2 .view .sjz-4{

  position:absolute;
  left:459px;
  top:0px;
  
}


.product-item2 .view .sjz-6{

  position:absolute;
  left:760px;
  top:0px;
  
}


.product-item2 .view .sjz-66{

  position:absolute;
  left:760px;
  top:0px;
  
}







.product-item2 .view  .cc{
  padding-left:18px;
  padding-right:18px;
  padding-top:27px;
}

.product-item2 .view  .qh:hover{
  background:#001D59;
  color:#FFFFFF;
}

.product-item2 .view  .qh:hover .t{
  color:#FFFFFF;
}

.product-item2 .view  .cc .t{
  font-size:18px;
  font-weight:bold;
  color:#0C081B;
}





.product-item2 .view .show .pn { position: absolute; z-index: 10; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); width: 54px; height: 54px; cursor: pointer; background-repeat: no-repeat; background-position: center center; background-color: rgba(0, 0, 0, 0.2); -webkit-transition: .2s; transition: .2s; }



.product-item2 .view .show .pn:hover { opacity: 1; }



.product-item2 .view .show .pn.swiper-button-disabled { opacity: 0.3 !important; background-color: rgba(0, 0, 0, 0.3) !important; cursor: default !important; }



.product-item2 .view .show .prev { left: 5px; background-image: url(a1/s35.png); }



.product-item2 .view .show .next { right: 5px; background-image: url(a1/s36.png); }



.product-item2 .view .h { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; font-size: 16px; margin: 10px 0; }



.product-item2 .view .h span:nth-child(1) { padding-left: 10px; }



.product-item2 .view .h span:nth-child(2) { color: #666; }



.product-item2 .view .thumb .img { border: 1px solid #eee; padding: 2px; }



.product-item2 .view .thumb .img > div { padding-bottom: 100%; background-repeat: no-repeat; background-size: contain; background-position: center center; }



.product-item2 .view .thumb .swiper-slide-active .img { border-color: #306293; }



.product-item2 .view .thumb .pn { position: absolute; z-index: 10; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); width: 54px; height: 54px; cursor: pointer; background-repeat: no-repeat; background-position: center center; background-color: rgba(0, 0, 0, 0.2); -webkit-transition: .2s; transition: .2s; }



.product-item2 .view .thumb .pn:hover { opacity: 1; background-color: rgba(0, 0, 0, 0.6); }



.product-item2 .view .thumb .pn.swiper-button-disabled { opacity: 0.5 !important; cursor: default; }



.product-item2 .view .thumb .prev { left: -15px; background-image: url(a1/s35.png); }



.product-item2 .view .thumb .next { right: -15px; background-image: url(a1/s36.png); }



@media (min-width: 1200px) { .product-item2 .info { width: 630px; margin-left:auto; margin-right:auto; } }



@media (max-width: 1199.98px) { .product-item2 .info { margin-top: 15px; } }






























.product-item .sec01 > .title, .product-item .info .title { color: #326292; padding-bottom: 20px; margin-bottom: 20px; font-size: 20px; border-bottom: 1px solid #eee; }







@media (max-width: 1199.98px) { 
  .product-item { width: 100%;  max2-width: 680px; padding-left:8.9%; padding-right:8.9%;} 
  
}



.product-item .xtt { font-size: 19px; letter-spacing: 3px; border-bottom: 1px solid #ddd; margin-top: -14px; margin-bottom: 25px; text-align: center; height: 48px; }



@media (max-width: 1199.98px) { .product-item .xtt { margin-bottom: 15px; font-size: 17px; } }



.product-item .xtt > span { padding: 0 10px; display: inline-block; height: 48px; line-height: 48px; border-bottom: 2px solid #326292; }



.product-item > * { margin-left: auto; margin-right: auto; margin-bottom: 70px; }



@media (max-width: 1199.98px) { .product-item > * { margin-bottom: 40px; } }



.product-item .crumb { margin-bottom: 30px; }



.product-item .crumb > a:first-child { background: url(s31.png) no-repeat 0 50%; padding-left: 24px; }



.product-item .crumb span { margin: 0 3px; color: #666666; }



/*@media (min-width: 1200px) { .product-item .sec01 { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } }*/



.product-item .sec01 > .title { margin-bottom: 20px; }





@media (min-width: 1200px) { 
  .product-item .sec01 .view {  color:#3E3A39; width:325px;} 
  
  .product-item .pro01{
    margin-left:52.29%;
  }
  
  .product-item .pro01 .t1 div{
    font-size:106px;
	font-style:italic;
	font-weight:bold;
	width:480px;
    word-wrap: break-word;
    white-space: normal;
    word-break: break-all;
	text-align:left;
	line-height:80px;
  }
  
  .product-item .pro01 .t11 div{

	width:560px;

  }  
  
  .product-item .pro01 .t2{
    padding-top:130px;
	padding-bottom:130px;
	font-size:20px;
  }
  
  .product-item .pro01 .t3{
    font-size:80px;
	font-weight:bold;
	line-height:40px;
	margin-bottom:280px;
  }
  
  .product-item .pro01 .t3 span{
    font-size:30px;
  }
  
  .product-item .pro02{
    text-align:right;
	margin-right:24.73%;
	padding-bottom:369px;
  }
  
  .product-item .pro03{
    padding-bottom:96px;
  }
  
  .product-item .xiaoguo  .t{
    text-align:left;
	font-style:italic;
	font-size:70px;
	margin-bottom:65px;
  }
  
  .product-item .xiaoguo  .t span{
    border-bottom:4px solid #3E3A39;
	font-weight:bold;
  }
  
  .product-item .pro05{
    margin-bottom:101px;
  }
  
  .product-item .pro05  .t{
    text-align:left;
	font-style:italic;
	font-size:70px;
	margin-bottom:65px;
  }
  
  .product-item .pro05  .t span{
    border-bottom:4px solid #3E3A39;
	font-weight:bold;
  }  
  .product-item .pro04{ 
    padding-bottom:73px;
  }
  .product-item .pro04  .t{
    text-align:left;
	font-style:italic;
	font-size:70px;
	margin-bottom:65px;
  }
  
  .product-item .pro04  .t span{
    border-bottom:4px solid #3E3A39;
	font-weight:bold;
  }
  
  .product-item .pro04 .c{
    width:1200px;
	display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
  }
  
  .product-item .pro04 .c .c1{
    width:39.56%;
  }
  
  .product-item .pro04 .c .c2{
    width:32.11%;
  }
  
  .product-item .pro04 .c .c3{
    width:28.17%;
  }    
      
  .product-item .view .img-wrp .img { position: relative; height:450px; width:264px; margin-left:auto; margin-right:auto;  -webkit-box-sizing: content-box; box-sizing: content-box; }
  
  .pro04 .c1t{
    font-style:italic;
	font-weight:bold;
	font-size:30px;
	padding-top:84px;
	padding-bottom:214px;
	line-height:6px;
  }
  
  .pro04 .c1t > div{
    line-height:20px;
  }
  
  .pro04 .c1t span{
    font-size:60px;
  }
  .pro04 .c1t span.yinwen2{
    font-size:25px;
  }  
  .pro04 .c1c{
    font-size:20px;
  }
  .pro04 .c3{
    height:450px;
	text-align:right;
  }
  .pro04 .c3 > div{
    vertical-align:middle;
	height:100%;
	display:table-cell;
	height:450px;
	width:100%	
  }
  

  .pro04 .c3 .c3c{
    padding-top:145px;
  }
}

@media (max-width: 1199.98px) {

  .product-item .pro02 img{
    width:100%;
	height:auto;
  }

   
   .product-item .pro01 > div{
     text-align:left;
	 padding-top:105px;
    }


  .product-item .pro01 .t1 div{
    font-size:80px;
	font-style:italic;
	font-weight:bold;
    word-wrap: break-word;
    white-space: normal;
    word-break: break-all;
	text-align:left;
	line-height:80px;
  }
  
  .product-item .pro01 .t2{
    padding-top:130px;
	padding-bottom:130px;
  }
  
  .product-item .pro01 .t3{
    font-size:50px;
	font-weight:bold;
	line-height:40px;
  }
  
  .product-item .pro01 .t3 span{
    font-size:30px;
  }  

  .product-item .pro04  .t{
    text-align:center;
	font-style:italic;
	font-size:40px;
	margin-bottom:35px;
  }
  
  .product-item .pro04 .c1{
    margin-bottom:20px;
  }

  .product-item .pro04 .c2{
    margin-bottom:20px;
  }

  .product-item .pro05  .t{
    text-align:center;
	font-style:italic;
	font-size:40px;
	margin-bottom:35px;
  } 

   
  
  .product-item .xiaoguo .t{
    text-align:center;
	font-style:italic;
	font-size:40px;
	margin-bottom:35px;
  } 
  
  .about07  .t{
	font-style:italic;
	font-size:50px;
	margin-bottom:35px;
	
  }  
  
  .about07 .t{
	font-style:italic;
	font-size:50px;
	margin-bottom:35px;
  }  
  .about07  .t span{
    border-bottom:2px solid #3C3837;
  }

  .pro055 .t{
	font-style:italic;
	font-size:50px;
	margin-bottom:35px;
  }  
  .pro055  .t span{
    border-bottom:2px solid #3C3837;
  }  
  

  
  .pro04 img{
    width:100%;
  } 
  
}


.product-item .view .img-wrp { position: relative;  padding: 0px; }


@media (max-width: 1199.98px) {
  .product-item .view .img-wrp .img { position: relative; height: 0; padding-bottom: 100%; -webkit-box-sizing: content-box; box-sizing: content-box; }
}


.product-item .view .img-wrp img { -o-object-fit: contain; object-fit: contain; position: absolute; left: 0; right: 0; width: 100%; height: 100%; }



.product-item .view .show .pn { position: absolute; z-index: 10; top: 50%; width: 14px; height: 27px; cursor: pointer; background-repeat: no-repeat; background-position: center center; }



.product-item .view .show .pn:hover { opacity: 1; }



.product-item .view .show .pn.swiper-button-disabled { }



.product-item .view .show .prev { left: 5px; background-image: url(a1/s355.png); }



.product-item .view .show .next { right: 5px; background-image: url(a1/s366.png); }



.product-item .view .h { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; font-size: 16px; margin: 10px 0; }



.product-item .view .h span:nth-child(1) { padding-left: 10px; }



.product-item .view .h span:nth-child(2) { color: #666; }



.product-item .view .thumb .img { border: 1px solid #eee; padding: 2px; }



.product-item .view .thumb .img > div { padding-bottom: 100%; background-repeat: no-repeat; background-size: contain; background-position: center center; }



.product-item .view .thumb .swiper-slide-active .img { border-color: #306293; }



.product-item .view .thumb .pn { position: absolute; z-index: 10; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); width: 54px; height: 54px; cursor: pointer; background-repeat: no-repeat; background-position: center center; background-color: rgba(0, 0, 0, 0.2); -webkit-transition: .2s; transition: .2s; }



.product-item .view .thumb .pn:hover { opacity: 1; background-color: rgba(0, 0, 0, 0.6); }



.product-item .view .thumb .pn.swiper-button-disabled { opacity: 0.5 !important; cursor: default; }



.product-item .view .thumb .prev { left: -15px; background-image: url(a1/s35.png); }



.product-item .view .thumb .next { right: -15px; background-image: url(a1/s36.png); }



@media (min-width: 1200px) { .product-item .info { width: 630px; margin-left:auto; margin-right:auto; } }



@media (max-width: 1199.98px) { .product-item .info { margin-top: 15px; } }



.product-item .htt3,.product-item .htt2{

  color:#000000;

}



.product-item .info .n { margin-bottom: 10px; padding-left: 0px; background-repeat: no-repeat; background-position: 0 3px; text-align:left; }



.product-item .info .n1 { background-image: url(a1/s29.png); }



.product-item .info .n2 { background-image: url(a1/s30.png); }



.product-item .info .n3 { background-image: url(a1/s31.png); }



.product-item .info .n4 { background-image: url(a1/s32.png); }



.product-item .info .n5 { background-image: url(a1/s33.png); }



.product-item .info .n6 { background-image: url(a1/s34.png); }



.product-item .info .n7 span { color: #326292; font-weight: bold; }



.product-item .info .buy-btn { display: block; color: #fff; margin-top: 30px; border-radius: 10px; background-color: #d32c25; width: 128px; height: 30px; line-height: 30px; text-align: center; }



@media (max-width: 1199.98px) { .product-item .info .buy-btn { margin: 15px auto; } }



.product-item .info .code { overflow: hidden; }



.product-item .info .code > div { float: right; padding: 5px; border: 1px solid #ccc; text-align: center; }



.product-item .info .code > div img { width: 105px; }



.product-item .info .code > div span { display: block; color: #888; }


/*
.product-item .sec02 .sin img { display: block; margin: 0 auto; width: 100%; }



@media (min-width: 1200px) {

  .product-item .sec02 .sin{

    max-height:731px;

	overflow:hidden;

  }

}





@media (max-width: 1199.98px) { .product-item .sec02 .sin img { width: 100%; } }



.product-item .sec02 .ls { position: relative; }



.product-item .sec02 .pn { position: absolute; z-index: 10; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); width: 66px; height: 66px; cursor: pointer; background-repeat: no-repeat; background-position: center center; background-color: rgba(0, 0, 0, 0.4); -webkit-transition: .2s; transition: .2s; }



.product-item .sec02 .pn:hover { opacity: 1; background-color: rgba(0, 0, 0, 0.8); }



.product-item .sec02 .prev { left: 0; background-image: url(a1/s35.png); }



.product-item .sec02 .next { right: 0; background-image: url(a1/s36.png); }

*/

.product-item .sec02 {
  
  position: relative;
  
}

@media (max-width: 1199.98px) { 

 .product-item .sec02 {
   width:80%;
   margin-left:auto;
   margin-right:auto;  
  
}

}

.product-item .sec02 .t,.about07 .t{

display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;

}




.product-item .sec02 .sin img { display: block; margin: 0 auto; max-width: 1200px; }

@media (max-width: 1199.98px) { .product-item .sec02 .sin img { width: 100%; } }

.product-item .sec02 .ls { position: relative; }



.product-item .sec02 .pn { position: absolute; z-index: 10; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); width:14px; height: 27px; cursor: pointer; background-repeat: no-repeat; background-position: center center; background-color1: rgba(0, 0, 0, 0.4); -webkit-transition: .2s; transition: .2s; }

.product-item .xiaoguo .pn { position: absolute; z-index: 10; top: 65%; -webkit-transform: translateY(-50%); transform: translateY(-50%); width:14px; height: 27px; cursor: pointer; background-repeat: no-repeat; background-position: center center; background-color1: rgba(0, 0, 0, 0.4); -webkit-transition: .2s; transition: .2s; }

.product-item .sec02 .pn:hover {  }

.product-item .sec02 .prev { left: -40px; background-image: url(a1/s355.png); }

.product-item .sec02 .next { right: -40px; background-image: url(a1/s366.png); }






.product-item .sec02v {
  
  position: relative;

  
}

@media (max-width: 1199.98px) { 

 .product-item .sec02v {
   width:80%;
   margin-left:auto;
   margin-right:auto;  
  
}

}



.product-item .sec02v .sin img { display: block; margin: 0 auto; max-width: 1200px; }

@media (max-width: 1199.98px) { .product-item .sec02v .sin img { width: 100%; } }

.product-item .sec02v .ls { position: relative; }



.product-item .sec02v .pn { position: absolute; z-index: 10; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); width:14px; height: 27px; cursor: pointer; background-repeat: no-repeat; background-position: center center; background-color1: rgba(0, 0, 0, 0.4); -webkit-transition: .2s; transition: .2s;}

.product-item .xiaoguo .pn { position: absolute; z-index: 10; top: 65%; -webkit-transform: translateY(-50%); transform: translateY(-50%); width:14px; height: 27px; cursor: pointer; background-repeat: no-repeat; background-position: center center; background-color1: rgba(0, 0, 0, 0.4); -webkit-transition: .2s; transition: .2s;}

.product-item .sec02v .pn:hover {  }

.product-item .sec02v .prev { left: -40px; background-image: url(a1/s355.png); }

.product-item .sec02v .next { right: -40px; background-image: url(a1/s366.png); }

@media (min-width: 1200px) {

.product-item .sec02v video{
  
  width:1200px;height:463px;
  
}

}

@media (max-width: 1199.98px) {

.product-item .sec02v video{
  
  width:100%;
  height:250px;
  
}
  
}

.product-item .sec022 .sin img { display: block; margin: 0 auto; max-width: 1200px; }

@media (max-width: 1199.98px) { .product-item .sec022 .sin img { width: 100%; } }

.product-item .sec022 .ls { position: relative; }

.product-item .sec022 .pn { position: absolute; z-index: 10; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); width: 66px; height: 66px; cursor: pointer; background-repeat: no-repeat; background-position: center center; background-color: rgba(0, 0, 0, 0.4); -webkit-transition: .2s; transition: .2s; }

.product-item .sec022 .pn:hover { opacity: 1; background-color: rgba(0, 0, 0, 0.8); }

.product-item .sec022 .prev { left: 0; background-image: url(a1/s35.png); }

.product-item .sec022 .next { right: 0; background-image: url(a1/s36.png); }




.product-item .sec03 .img { padding-bottom: 100%; background-repeat: no-repeat; background-size: cover; background-position: center center; }



.product-item .sec03 .title { text-align: center; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }



.product-item .sec03 .swiper-pagination { position: static; margin-top: 30px; }



@media (max-width: 1199.98px) { .product-item .sec03 .swiper-pagination { margin-top: 10px; } }



.product-item .sec03 .swiper-pagination-bullet { width: 12px; height: 12px; }



.product-item .sec03 .swiper-pagination-bullet-active { background-color: #326292; }



.product-item .sec04 .h { font-size: 16px; color: #5b5b5b; margin: 30px 0; }



@media (max-width: 1199.98px) { .product-item .sec04 .h { margin: 10px 0; } }



@media (min-width: 1200px) { .product-item .sec04 form { display: -webkit-box; display: -ms-flexbox; display: flex; } }



@media (min-width: 1200px) { .product-item .sec04 .c { width: 480px; margin-right: 20px; } }



.product-item .sec04 .row { border: 1px solid #ccc; height: 60px; margin-bottom: 20px; display: -webkit-box; display: -ms-flexbox; display: flex; }



@media (max-width: 1199.98px) { .product-item .sec04 .row { margin-bottom: 10px; } }



.product-item .sec04 .row label { width: 27.19665%; margin: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; border-right: 1px solid #B1B1B1; }



.product-item .sec04 .row input { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; padding-left: 10px; padding-right: 10px; border: 0 none; -webkit-box-sizing: border-box; box-sizing: border-box; outline: 0 none; }



.product-item .sec04 input[type="submit"] { display: block; height: 60px; width: 100%; background: #326292; border: 0 none; color: #fff; -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-transition: .28s; transition: .28s; cursor: pointer; }



.product-item .sec04 input[type="submit"]:hover { background: #009354; }



.product-item .sec04 textarea { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; width: 100%; border: 1px solid #ccc; padding: 10px; outline: 0 none; }



@media (max-width: 1199.98px) { .product-item .sec04 textarea { margin-bottom: 10px; height: 90px; } }



.product-item .sec05 iframe { display: block; width: 880px; height: 480px; margin: 0 auto; }


/*

@media (max-width: 1199.98px) { .product-item .sec05 iframe { width: 100%; height: 280px; } }




.htt > div:nth-child(1) { font-size: 22px; font-family:Arial, Helvetica, sans-serif; color:#B2935D; }

.htt > div:nth-child(2) { font-size: 28px; font-family:"微软雅黑"; color:#2A1A58;background: url(httbg1.jpg) no-repeat bottom center;}

@media (max-width: 1199.98px) { .htt { margin-bottom: 10px; }
  .htt > div:nth-child(1) { font-size: 22px; }
  .htt > div:nth-child(2) { font-size: 19px; } }
  
  


.home00 .swiper-container{
  width:1920px;
}

 

@media (max-width: 1199.98px) { .home00 { background:#000; } }


.home00 .img { height: 0px; padding-bottom:48.68116%; background-repeat: no-repeat; background-size: cover; background-position: center center; }


.home00 .img { height: 0px; padding-bottom:44.18116%; background-repeat: no-repeat; background-size: cover; background-position: center center; }

@media (max-width: 1366px) {
.home00 .img { height: 0px; padding-bottom:38.68116%; background-repeat: no-repeat; background-size: cover; background-position: center center; }

.home00 .swiper-container{
  width:1345px;
}

}




@media (max-width: 1199.98px) { 
    .home00 .img2 { height: 0; padding-bottom: 120%; background-repeat: no-repeat; background-size: cover; background-position: center center; }
   .home00 .swiper-container{
  width:100%;
}	
}

.home00 .swiper-pagination-bullet { background: #fff; width: 16px; height: 16px; opacity: .6; }

@media (max-width: 1199.98px) { .home00 .swiper-pagination-bullet { width: 12px; height: 12px; } } 


*/




  
  
  
/* 

.home00 { margin-left: auto; margin-right: auto; margin-bottom: 70px; }

@media (max-width: 1199.98px) { .home00 { margin-bottom: 43px; } .home00 .img{display:none;} }

.home00 .img { height: 0px; padding-bottom:42%; background-repeat: no-repeat; background-size: cover; border-top:1px solid #BCBCBC;border-bottom:1px solid #BCBCBC;}

@media (min-width: 1500px) {.home00 .img { height: 0px; padding-bottom:42%; background-repeat: no-repeat; background-size: cover;} .home00 .img2{display:none;}}

@media (max-width: 1199.98px) { .home00 .img2 { display:block; height: 0; padding-bottom: 100%; background-repeat: no-repeat;background-size: cover; background-position: center center; } }


.home00 .swiper-pagination { border-top: 0px solid #000; position: static; }

.home00 .swiper-pagination-bullet { border-radius: 0; background-color: #f10624; width: 44px; height: 4px; }


@media (max-width: 1199.98px) { .home00 .swiper-pagination { border-top-width: 5px; } }
*/














.home02 {background-image: url(s_03.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center; }

@media (max-width: 1199.98px) { .home02 { margin-bottom: 40px; } }

@media (max-width: 1199.98px) { .home02 { padding-top: 15px; } }

.home02 .wrp { margin: 0 auto; }

@media (min-width: 1200px) { .home02 .wrp { width: 1200px; } }

@media (max-width: 1199.98px) { .home02 .wrp { padding-left: 12px; padding-right: 12px; max-width: 680px; } }

@media (min-width: 1200px) { .home02 .wrp { display: -webkit-box; display: -ms-flexbox; display: flex; } }

@media (min-width: 1200px) { .home02 .side { border: 1px solid #aaa; background-color: #fff; padding-left: 40px; width: 212px; margin-right: 10px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } }

.home02 .main { margin-bottom: -15px; }

@media (min-width: 1200px) { .home02 .main { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; } }

.home02 .main > div { margin-bottom: 15px; }

@media (min-width: 1200px) { .home02 .main > div { width: 33.3333%; padding-left: 15px; } }

.home02 .main > div > a { display: block; }

.home02 .img { position: relative; padding-bottom: 47.13376%; background-repeat: no-repeat; background-size: cover; background-position: center center; }

.home02 .img::after { content: ""; position: absolute; left: 0; top: 0; right: 0; bottom: 0; background: transparent url(s40.png) no-repeat 50% 50%; opacity: .8; -webkit-transition: .3s; transition: .3s; }

.home02 a:hover .img::after { opacity: 1; background-color: rgba(0, 0, 0, 0.3); }

.home02 .title { height: 24px; line-height: 24px; padding-left: 16px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; background-color: #222; color: #fff; }

.home02 .link { margin-top: 10px; }

.home02 .link a { display: inline-block; background-color: #515151; width: 109px; line-height: 28px; font-size: 12px; text-align: center; color: #fff; }

@media (min-width: 1200px) { .home03 { display: -webkit-box; display: -ms-flexbox; display: flex; } }

.home03 .htt { border-left: 8px solid #515151; padding-left: 15px; width: 230px; }

.home03 .htt > div:nth-child(3) { font-size: 18px; padding-bottom: 8px; }

@media (max-width: 1199.98px) { .home03 .htt { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: baseline; -ms-flex-pack: baseline; justify-content: baseline; -ms-flex-wrap: wrap; flex-wrap: wrap; width: 100%; padding-bottom: 3px; }
  .home03 .htt > div:nth-child(1) { width: 100%; }
  .home03 .htt > div:nth-child(3) { padding-left: .5em; padding-bottom: 0; } }

@media (min-width: 1200px) { .home03 .ct { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } }

.home03 .h { font-size: 15px; margin-bottom: 10px; }

@media (min-width: 1200px) { .home03 .c { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; border: 1px solid #ccc; } }

.home03 .c > div { display: -webkit-box; display: -ms-flexbox; display: flex; position: relative; }

@media (min-width: 1200px) { .home03 .c > div { width: 33.3333%; } }

@media (max-width: 1199.98px) { .home03 .c > div { border: 1px solid #ccc !important; margin-bottom: 5px; padding: 10px; } }

.home03 .c > div:not(:last-child) { border-right: 1px dotted #ccc; padding-left: 70px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; background-repeat: no-repeat; background-position: 30px 50%; position: relative; cursor: pointer; }

.home03 .c > div:not(:last-child) > div:nth-child(2) { font-size: 12px; color: #555; }

.home03 .c > div:not(:last-child)::after { content: ""; position: absolute; right: 50px; top: 50%; border: 6px solid transparent; border-top-color: #999; -webkit-transition: .45s; transition: .45s; -webkit-transform-origin: 50% 3px; transform-origin: 50% 3px; }

.home03 .c > div:not(:last-child) .dropdown { position: absolute; z-index: 19; left: -1px; right: -1px; top: 100%; border: 1px solid #ccc; background: #fff; padding: 10px; -webkit-box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1); box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1); -webkit-transition: .2s; transition: .2s; opacity: 0; visibility: hidden; }

.home03 .c > div:not(:last-child) .dropdown a { display: block; text-align: center; padding: 10px 0; }

.home03 .c > div:not(:last-child).active::after { -webkit-transform: rotate(-180deg); transform: rotate(-180deg); }

.home03 .c > div:not(:last-child).active .dropdown { opacity: 1; visibility: visible; }

.home03 .c > div:nth-child(1) { background-image: url(s53.png); }

.home03 .c > div:nth-child(2) { background-image: url(s54.png); }

.home03 .c form { position: relative; margin: auto; width: 81.25%; }

.home03 .c form input[type="text"] { width: 100%; height: 36px; border: 1px solid #ddd; border-radius: 18px; padding: 0 44px 0 18px; }

.home03 .c form input[type="submit"] { position: absolute; right: 10px; top: 50%; margin-top: -8px; width: 16px; height: 16px; background: url(s55.png) no-repeat 100% 0; border: 0 none; border-left: 1px solid #ddd; padding-left: 20px; }






.home05 .c1 .s1 { width: 214px; height: 572px; background: url(s60.jpg) no-repeat 0 0; }

.home05 .c1 .s2 { text-align: center; width: 100%; }

.home05 .c2 { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; margin: 0 10px; background-repeat: no-repeat; background-size: cover; background-position: center center; position: relative; }

@media (min-width: 1200px) { .home05 .c3 { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; width: 240px; } }

@media (min-width: 1200px) { .home05 .c3 > div:first-child { display: none; } }

.home05 .c3 > div { height: 190px; margin-bottom: 10px; position: relative; background-repeat: no-repeat; background-size: cover; background-position: center center; }

@media (max-width: 1199.98px) { .home05 .c3 > div { height: 0; padding-bottom: 63.33333%; -webkit-box-sizing: border-box; box-sizing: border-box; } }

.home05 .c3 .more { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; border: 1px solid #ccc; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-transition: .3s; transition: .3s; }

.home05 .c3 .more:hover { border-color: #515151; }

.home05 .c3 .more > div:first-child { font-size: 22px; font-weight: 500; color: #515151; }

.home05 .c3 .more > div:last-child { color: #555555; }

.home05 .title { position: absolute; left: 0; bottom: 0; width: 100%; height: 32px; line-height: 32px; text-align: center; padding: 0 10px; background-color: rgba(0, 0, 0, 0.5); color: #fff; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }

.home05 > .more { display: block; width: 110px; margin: 0 auto; line-height: 28px; background-color: #515151; color: #fff; text-align: center; font-size: 12px; margin-top: 20px; }

.home06 { margin-left: auto; margin-right: auto; margin-bottom: 70px; }

@media (max-width: 1199.98px) { .home06 { margin-bottom: 40px; } }

.home06 .htt { text-align: center; }

@media (min-width: 1200px) { .home06 .htt { margin-bottom: 20px; } }

.home06 .wrp { background: #eee; padding: 30px 0; }

.home06 .in { margin: 0 auto; }

@media (min-width: 1200px) { .home06 .in { width: 1200px; } }

@media (max-width: 1199.98px) { .home06 .in { padding-left: 12px; padding-right: 12px; max-width: 680px; } }

@media (min-width: 1200px) { .home06 .in { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } }

@media (min-width: 1200px) { .home06 .in > div { width: 360px; } }

@media (max-width: 1199.98px) { .home06 .in > div { margin-bottom: 10px; } }

.home06 .in > div > a { display: block; background-color: #fff; }

.home06 .in > div > a:hover { background-color: #222; color: #fff; }

.home06 .img { padding-bottom: 69.44444%; background-repeat: no-repeat; background-size: cover; background-position: center center; }

.home06 .txt { padding: 15px; }

.home06 .title { font-size: 15px; height: 23px; line-height: 23px; margin-bottom: 7px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }

.home06 .brief { line-height: 22px; height: 44px; overflow: hidden; opacity: .8; }

.home06 .brief::before { content: ""; float: right; width: 27px; height: 27px; margin-top: 6px; margin-left: 10px; background: url(s42.png) no-repeat 0 0; }

.home06 a:hover .brief::before { background-image: url(s43.png); }

.home06 .more { display: block; width: 110px; margin: 0 auto; line-height: 28px; background-color: #515151; color: #fff; text-align: center; font-size: 12px; margin-top: 20px; }



.home06 .cc{ text-align:center;}
.home06 .img2{ padding-bottom: 100%; background-repeat: no-repeat; background-size: cover; background-position: center center; }


.home06 .othernews{
  height:8px;
  overflow:hidden;
  color:#FFFFFF;
}

.home06 .othernews a{
  color:#FFFFFF;
}








.home07 { margin-left: auto; margin-right: auto; margin-bottom: 70px; }

@media (max-width: 1199.98px) { .home07 { margin-bottom: 40px; } }

@media (min-width: 1200px) { .home07 { background: url(s444.png) no-repeat 50% 0; } }

.home07 .wrp { margin: 0 auto; }

@media (min-width: 1200px) { .home07 .wrp { width: 1200px; } }

@media (max-width: 1199.98px) { .home07 .wrp { padding-left: 12px; padding-right: 12px; max-width: 680px; } }

@media (min-width: 1200px) { .home07 .wrp { display: -webkit-box; display: -ms-flexbox; display: flex; height: 460px; } }

.home07 .htt {   margin-bottom:30px; }

.home07 .htt > div:nth-child(1) { line-height: 1.2; margin-bottom: 4px; }

.home07 .htt > div:nth-child(2) { line-height: 1.2; }

@media (min-width: 1200px) { .home07 .simple-form div{ text-align:center;} .home07 .c1 { width: 372px; padding-right: 47px; } }

@media (max-width: 1199.98px) { .home07 form { background: #ddd; padding: 15px; } }

.home07 form input[name], .home07 form textarea { display: block; border:1px solid #BFBFBF; background: #fff; width: 100%; height: 38px; padding: 0 10px; margin-bottom: 18px; }

.home07 form textarea { height: 76px; padding: 5px 10px; margin-bottom: 25px; }

.home07 form input[type="submit"] { display: block; width: 100%; margin: 0 auto; height: 38px; background-color: #515151; border: 0 none; color: #fff; font-size: 12px; margin-top: 20px; }

@media (min-width: 1200px) { .home07 .c2 { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; padding-left: 40px; margin-right: 60px; background-color: #fff; } }

.home07 .map { height: 350px; -webkit-box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2); box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2); }

@media (max-width: 1199.98px) { .home07 .map { margin-top: 15px; } }

.home07 .text { position: relative; line-height: 2; margin-top: 25px; padding-left: 180px; background: url(s45.png) no-repeat 0 50%; }

.home07 .text::before { content: ""; position: absolute; width: 1px; height: 100%; left: 140px; background: #aaa; }

@media (max-width: 1199.98px) { .home07 .text { padding-left: 120px; background-size: 90px auto; line-height: 1.6125; }
  .home07 .text::before { left: 100px; } }
  
  
  
/*
.home08 { margin-left: auto; margin-right: auto; margin-bottom: 70px; }

@media (max-width: 1199.98px) { .home08 { margin-bottom: 40px; } }

.home08 .htt { text-align: center; }

@media (min-width: 1200px) { .home08 .htt { margin-bottom: 30px; } }

@media (min-width: 1200px) { .home08 .wrp { background: url(s46.jpg) no-repeat 50% 0; } }

.home08 .wrp .in { margin: 0 auto; }

@media (min-width: 1200px) { .home08 .wrp .in { width: 1200px; } }

@media (max-width: 1199.98px) { .home08 .wrp .in { padding-left: 12px; padding-right: 12px; max-width: 680px; } }

@media (min-width: 1200px) { .home08 .wrp .in { height: 391px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; } }

.home08 .c1 { border: 1px solid #ccc; }

@media (min-width: 1200px) { .home08 .c1 { width: 282px; margin-right: 40px; } }

.home08 .c1 > div:nth-child(1) { text-align: center; line-height: 1.3; font-size: 20px; padding-bottom: 24px; margin: 25px 0; background: url(s47.png) no-repeat 50% 100%; }

.home08 .c1 > div:nth-child(1) strong { font-weight: normal; color: #515151; }

.home08 .c1 ul { padding: 0 30px; list-style: none; }

.home08 .c1 li { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-bottom: 30px; }

.home08 .c1 li:last-child { margin-bottom: 0; }

.home08 .c1 li > div:nth-child(1) { width: 50%; background: url(s48.png) no-repeat 0 50%; padding-left: 20px; }

.home08 .c1 li > div:nth-child(2) { width: 50%; text-align: right; }

.home08 .c1 li > div:nth-child(3) { width: 100%; text-align: center; color: #9d9d9d; margin-top: 15px; }

@media (max-width: 1199.98px) { .home08 .c1 li > div:nth-child(3) { margin-top: 5px; } }

@media (min-width: 1200px) { .home08 .c2 { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; width: 280px; } }

.home08 .c2 input[type="text"] { display: block; width: 100%; height: 38px; border: 1px solid #ccc; background: #fff; background-repeat: no-repeat; background-position: 15px 50%; padding-left: 40px; }

@media (max-width: 1199.98px) { .home08 .c2 input[type="text"] { margin: 10px 0; } }

.home08 .c2 input[type="text"]:nth-child(1) { background-image: url(s49.png); }

.home08 .c2 input[type="text"]:nth-child(2) { background-image: url(s50.png); }

.home08 .c2 input[type="text"]:nth-child(3) { background-image: url(s51.png); }

.home08 .c2 input[type="text"]:nth-child(4) { background-image: url(s51.png); }

.home08 .c2 input[type="text"]:nth-child(5) { background-image: url(s51.png); }

.home08 .c2 input[type="text"]:nth-child(6) { background-image: url(s52.png); }

.home08 .c2 input[type="submit"] { display: block; width: 110px; margin: 0 auto; height: 38px; background-color: #515151; border: 0 none; color: #fff; font-size: 12px; }

*/

body.with-sp-login .page-wrp { padding: 1px 0; background: url(s59.jpg) no-repeat 50% 50%; }

@media (min-width: 1200px) { .sp-login { width: 450px; } }

.sp-login .h { margin-bottom: 30px; color: #666; }

@media (min-width: 1200px) { .sp-login .h { padding-left: 40px; } }

.sp-login .h span { color: #d48a3e; }

.sp-login form { margin: 0 auto; }

.sp-login form > div { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-bottom: 15px; }

@media (min-width: 1200px) { .sp-login form > div:not(:last-child) { position: relative; left: -40px; } }

@media (max-width: 1199.98px) { .sp-login form > div { margin-bottom: 5px; }
  .sp-login form > div:nth-child(2) { margin-bottom: 25px; } }

.sp-login form label { width: 100%; }

@media (min-width: 1200px) { .sp-login form label { width: 80px; line-height: 38px; text-align: right; } }

.sp-login form input[name] { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; width: 360px; height: 38px; border: 1px solid #ccc; padding: 0 5px; }

.sp-login form input[type="submit"] { margin: auto; width: 180px; height: 34px; border: 0 none; background: #515151; color: #ffffff; cursor: pointer; -webkit-transition: .3s; transition: .3s; }

.sp-login form input[type="submit"]:hover { background: #d25956; }

body.with-download-index { padding: 1px 0; background: #fff; }

/*

@media (min-width: 1200px) { .download-index .ls { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin: 0 auto; } }

@media (min-width: 1200px) { .download-index .ls > div { margin-bottom: 70px; width: 370px; margin-right: 45px; } }

@media (max-width: 1199.98px) { .download-index .ls > div { margin-bottom: 30px; } }

.download-index .ls > div:nth-child(3n) { margin-right: 0; }

.download-index .ls > div > a { position: relative; display: block; padding: 20px; background: #fff; border-radius: 8px; -webkit-transition: .3s; transition: .3s; -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08); box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08); }

@media (max-width: 1199.98px) { .download-index .ls > div > a { padding: 10px; } }

.download-index .ls > div > a:hover { -webkit-box-shadow: 0 1px 12px rgba(0, 0, 0, 0.12); box-shadow: 0 1px 12px rgba(0, 0, 0, 0.12); }

.download-index .ls .img { height: 250px; background-repeat: no-repeat; background-size: contain; background-position: center center; }

.download-index .ls .title { font-size: 17px; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; text-align: center; margin: 20px 0; }

@media (max-width: 1199.98px) { .download-index .ls .title { font-size: 15px; } }

.download-index .ls .txt { padding: 0 15%; font-size: 13px; line-height: 1; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; color: #666666; }


*/

@media (min-width: 1200px) {
.download-index .t{
  text-align:center;
  padding-top:119px;
  padding-bottom:119px;
}

.download-index .l{
  height:99px;
  line-height:99px;
  border-top:1px solid #CAB683;
}

.download-index .title{
  
  display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
  width:801px;
  margin-left:auto;
  margin-right:auto;
  overflow:hidden;

}

.download-index .m1{
  width:92px;
}

.download-index .m2{
  width:192px;
  font-size:20px;
  font-weight:bold;
}

.download-index .m22{
  width:79px;
}

.download-index .m3{
  width:438px;
  font-weight:bold;
}

.download-index .m3 a{
  font-weight:bold;
}

}



@media (min-width: 1200px) { .listing-index .ls { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap;} }

@media (min-width: 1200px) { .listing-index .ls > div { width: 49.64%; margin-right: 10px; margin-bottom: 10px; } } }

@media (max-width: 1366px) {.listing-index .ls > div { width: 49%; }}

@media (max-width: 1199.98px) { .listing-index .ls > div { margin-bottom: 30px; } 
  .listing-index .ls{
    margin-left:8.9%;
	margin-right:8.9%;
  } 
  .listing-index .ls .tt{
    display:none;
  }
}

.listing-index .ls > div:nth-child(2n) { margin-right: 0; }

.listing-index .ls > div > a { position: relative; display: block; padding: 0px; background: #fff; -webkit-transition: .3s; transition: .3s; border: 0px solid #d8d8d8; }

@media (max-width: 1199.98px) { .listing-index .ls > div > a { padding: 0px; } }

.listing-index .ls > div > a:hover { border-color: #515151; color:#515151; }

.listing-index .ls .img { height: 0; padding-bottom: 73.8%; -webkit-box-sizing: border-box; box-sizing: border-box; background-repeat: no-repeat; background-size: cover; background-position: center center; }


.listing-index .title { position: absolute; left: 0; top: 0; right: 0; bottom: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-transition: .3s; transition: .3s; }

.listing-index .title > div{opacity:0;}

.listing-index .title:hover { background: rgba(0, 0, 0, 0.3); }

.listing-index .title:hover > div { position:relative; width:100%; height:100%;opacity:1;}

.listing-index .title > div .c1{
  position:absolute;
  left:50px;
  bottom:50px;
  color:#FFFFFF;
  font-size:36px;
  font-weight:bold;
}  

.listing-index .title > div .c2{
  position:absolute;
  right:50px;
  bottom:50px;
}   



.listing-index .ls .tt{
  text-align:center;
  padding:10px;
  border:1px solid #000000;
}

@media (max-width: 1199.98px) {
.listing-index .title > div{opacity:0.8;}

.listing-index .title > div .c1{
  position:absolute;
  left:6.03%;
  bottom:6.1%;
  font-size:15px;
  font-weight:bold;
  line-height:20px;
} 

.listing-index .title > div .c2{
  position:absolute;
  right:7.16%;
  bottom:5.1%;
  width:12.07%;
}

.listing-index .title > div .c2 img{
  width:100%;
  height:auto;
}

}


@media (min-width: 1200px) {.home02gc .title{font-size:20px; border:1px solid #0000ff;} .home02gc .htt{margin-bottom:29px;} .home02gc{width:1200px; margin-left:auto; margin-right:auto;} .home02gc .ct { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;  } }

.home02gc .ct a { display: block; position: relative; margin-bottom: 10px; }

.home02gc .ct a::before { content: ""; position: absolute; left: 0; top: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.3); -webkit-transition: .3s .03s; transition: .3s .03s; opacity: 0; }

.home02gc .ct a:hover::before { opacity: 1; }

@media (min-width: 1200px) { .home02gc .ct .img { width: 595px; height: 608px; background-repeat: no-repeat; background-size: cover; background-position: center center; } }

@media (max-width: 1199.98px) { .home02gc .ct .img { height: 0; padding-bottom: 67.13287%; -webkit-box-sizing: content-box; box-sizing: content-box; background-repeat: no-repeat; background-size: cover; background-position: center center; } }

.home02gc .ct .title { position: absolute; margin: 55px 85px; left: 0; top: 0; right: 0; bottom: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-transition: .3s .03s; transition: .3s .03s; border: 1px solid #fff; color: #ffffff; font-size: 28px; opacity: 0; }

.home02gc .ct .title::after { content: ""; display: block; width: 39px; height: 39px; background: url(s30.png) no-repeat 0 0; margin-top: 5px; }

.home02gc .ct a:hover .title { opacity: 1; }






@media (min-width: 1200px) {

.home04 {

  background-image: url(s_04.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center;

}


.home04 a{
  padding-left:54.32%;
  padding-top:39.59%;
}

}




@media (max-width: 1199.98px) {

.home04 {

  background-image: url(yd4.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center;

}


.home04 a{
  display:block;
  width:100%;
  height:100%;
}
   
}
 















.htt{
  text-align:center;
}

.h-more{
  width:128px;
  height:40px;
  background:#515151;
  margin-left:auto;
  margin-right:auto;
  line-height:40px;
  text-align:center;
  margin-top:28px;
}

.h-more a{
  color:#FFFFFF;
}

.margin64{
  margin-bottom:64px;
}

.about01 .xtt2{
  background: url(ruzhi3.png) no-repeat bottom center;

}

.about01 .xtt2{
  text-align:center;
  font-size:24px;
  padding-bottom:20px;
  margin-bottom:20px;
}

.about01 .xtt2 .s{
   font-size:12px;
   padding-top:8px;
   color:#D7003B;
}
 
 
.about01 .yz_l{
  padding-left:123px;
  background: url(rizhi2.png) no-repeat;
  height:333px;
} 
@media (max-width: 1199.98px){
    .about01 .yz_l{padding-left:0px; background:none; height:auto;} 

    .about01 .txt img{ width:100%;} 

}




/*
header { padding: 20px 0;padding-bottom:26px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }

*/


@media (max-width: 1199.98px) { body { padding-top: 61px; } }

.m-topbar { display: block; position:relative; z-index: 100;  right: 0; height: 40px; background: #fff; padding: 10px 12px; -webkit-box-sizing: content-box; box-sizing: content-box;  overflow: hidden; -webkit-transition: .35s; transition: .35s; margin-left:8.9%; margin-right:8.9%;}

.m-topbar .logo { display: block; width:28%; height:auto; margin: 0 auto; }

.m-topbar .menu-btn { position: absolute; z-index: 2001; left: 6px; top: 12px; z-index: 1001; width: 36px; height: 36px; cursor: pointer; }

.m-topbar .menu-btn span { display: block; width: 24px; height: 2px; margin: 5px auto; background: #383838; }

.m-topbar .menu-btn span:first-child { margin-top: 10px; }

.m-topbar .search-btn { position: absolute; right: 0px; top: 20px; width: 22px; height: 22px; background: url(s56.png) no-repeat 50% 50%/contain; }

.m-topbar.show-search { height: 80px; background: #f3f3f3; -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); }

.m-topbar.show-search .search-btn { background-image: url(s57.png); }

.m-topbar .search { position: absolute; left: 6px; right: 6px; height: 28px; top: 62px; -webkit-transition: .5s; transition: .5s; opacity: 0; visibility: hidden; }

.m-topbar .search input[type="text"] { width: 100%; height: 28px; background: #a3a3a3; border: 0 none; border-radius: 13px; color: #fff; outline: 0 none; padding: 0 20px; }

.m-topbar .search input[type="submit"] { position: absolute; right: 10px; top: 5px; border: 0 none; width: 18px; height: 18px; background: url(s58.png) no-repeat 50% 50%/contain; }

.m-topbar.show-search .search { opacity: 1; visibility: visible; }

.m-menu { position: fixed; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; left: 0; top: 0; max-width: 220px; z-index: 2000; height: 100%; background: #fff; -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-transform: translate(-280px, 0); transform: translate(-280px, 0); -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0, 1); transition: all 0.4s cubic-bezier(0.4, 0, 0, 1);}

.m-menu.open { -webkit-transform: translate(0, 0); transform: translate(0, 0); }

.m-menu .mt { height: 61px; line-height: 60px; border-bottom: 1px solid #dedede; text-indent: 18px; font-size: 15px; }

.m-menu .ms { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; overflow-x: hidden; overflow-y: auto; padding: 20px 40px 0 30px; }

.m-menu ul, .m-menu li { list-style: none; margin: 0; }

.m-menu .ms ul { padding-left: 2em; font-size: 14px; }

.m-menu .ms > ul { padding-left: 0; width: 100%; }

.m-menu .ms ul a { display: inline-block; padding: 2px 0; }

.m-menu .ms > ul > li { margin-bottom: 10px; }

.m-menu .ms > ul > li > a { font-size: 15px; }

.m-menu .ms > ul > li ul { opacity: .9; }

.m-menu .ms > ul > li ul a { color: #383838; }

.m-menu-overlay { display: block; position: fixed; left: 0; top: 0; z-index: 2000; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); -webkit-transition: .25s; transition: .25s; opacity: 0; visibility: hidden; }

.m-menu-overlay.open { visibility: visible; opacity: 1; }


.ms ul > li:nth-child(8){
  
}







@media (min-width: 1200px) { .video-index .list { width: 1140px; margin: 0 auto; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; }
  .video-index .item { width: 330px; margin: 0 25px 35px 25px; }
  .video-index .item > a { display: block; }
  .video-index .img { position: relative; display: block; width: 330px; height: 210px; background-size: cover; background-position: 50% 50%; background-repeat: no-repeat; border-radius: 4px; overflow: hidden; }
  .video-index .mask { position: absolute; left: 0; top: 0; right: 0; bottom: 0; background: rgba(29, 81, 164, 0.3) url(s26.png) no-repeat 50% 50%; -webkit-transition: .3s .03s; transition: .3s .03s; opacity: 0; }
  .video-index a:hover .mask { opacity: 1; }
  .video-index .title { text-align: center; font-size: 14px; padding-top: 4px; } }

@media (max-width: 1199.98px) { .video-index .list { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; }
  .video-index .item { width: 50%; text-align: center; font-size: 13px; margin-bottom: 10px; }
  .video-index .item:nth-child(odd) { padding-right: 5px; }
  .video-index .item:nth-child(even) { padding-left: 5px; }
  .video-index .item > a { display: block; }
  .video-index .img { height: 0; padding-bottom: 63.63636%; -webkit-box-sizing: content-box; box-sizing: content-box; background-repeat: no-repeat; background-size: cover; background-position: center center; } }
  
@media (max-width: 1199.98px) {  
.page-index img{
  width:100%;
  height:auto;
}  
}


.i01{
  
}


.i02 .l img{
   opacity: 0;
}

@media (min-width: 1200px) {

.i02{
  position:relative;
}

.i02 .l{
  position:absolute;
  left:10.78%;
  top:42.48%;
}

.i02 .l{
  width:32.08%;
  height:18.77%;
}

.i02 .l img{
  width:100%;
  height:auto;
}

.i02  .img a{
  display:block;
  width:100%;
  height:100%;
  text-align:center;
  position:relative;
}

.i02  .img a .mark{
  position:absolute;
  top:50%;
  margin-top:-50.5px;
  margin-left:auto;
  margin-right:auto;
}

.i02 .img{
    height:100%;
    background-repeat: no-repeat; background-size: cover; background-position: center center;
}

}


@media (max-width: 1199.98px) { 


.i02 .img{
    height:100%;
    background-repeat: no-repeat; background-size: cover; background-position: center center;
}


.i03 a{
  display:block;
}

.i02 .l img{
   width:72.81%; height:auto;
}


.i02{
  position:relative;
}

.i02 .l{
  position:absolute;
  left:5.31%;
  top:21.65%;
}


}


.i03 img{
  opacity: 0;
}


@media (min-width: 1200px) {

.i03{
  
   background-image: url(i03.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center;
   text-align:right;

}

.i03 a{
  margin-right:9.5%;
}

.i03 a img{
   width:34.94%; height:auto;
}

}


@media (max-width: 1199.98px) { 

.i03{
  
   background-image: url(i03m.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center;
   position:relative;

}

.i03 a{
  position:absolute;
  left:5.9%;
  top:21.56%;
}

.i03 a img{
   width:79.06%; height:auto;
}

}


.i04 img{
  opacity: 0;
}


@media (min-width: 1200px) {

.i04{
  
   background-image: url(i04.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center;
   
}

.i04 a{
  margin-left:10.78%;
}

.i04 a img{
  width:29.11%; height:auto;
}

}

@media (max-width: 1199.98px) {

.i04{
  
   background-image: url(i04m.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center;
   position:relative;
}



.i04 a img{
  width:66.87%; height:auto;
  position:absolute;
  left:5.9%;
  top:21.56%;

}

}


@media (min-width: 1200px) {

.i05{
  
   background-image: url(i05.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center;
   text-align:center;

}

.i05 .t img{
   width:18.22%; height:auto;
}

.i05 .c{
   width:35.02%; height:auto;
   padding-top:48px;
   margin-left:auto;
   margin-right:auto;
}

.i05 .c img{
   width:100%;
}

}


@media (max-width: 1199.98px) {

.i05{
  
   background-image: url(i05m.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center;
   text-align:center;

}

.i05 img{
   width:50%; height:auto;
}

}

@media (min-width: 1200px) {

.sp-contact{
  
  padding-top:80px;
  
}

.sp-contact .s1 .c{
  padding-top:237px;
  font-size:18px;
}

}


@media (max-width: 1366px) {

.sp-contact{
  
  padding-bottom:180px;
  
}

}

@media (max-width: 1199.98px) {
.sp-contact{
  
  padding-bottom:0px;
}
}

.sp-contact .xtt { text-align: center; margin-bottom: 20px; }

@media (max-width: 1199.98px) { .sp-contact .xtt { margin-bottom: 10px; } }

.sp-contact .xtt div:first-child { font-size: 28px; color: #515151; }

@media (max-width: 1199.98px) { .sp-contact .xtt div:first-child { font-size: 22px; } }

.sp-contact .xtt div:last-child { margin-top: 5px; font-size: 11px; color: #746e6e; }

.sp-contact .xtt div:last-child span { color: #515151; }

@media (min-width: 1200px) { .sp-contact .ct { display: -webkit-box; display: -ms-flexbox; display: flex; height: 410px; } }

.sp-contact .s1, .sp-contact .s2 { width: 50%; padding: 30px 50px; }

@media (max-width: 1199.98px) {
.sp-contact .s1, .sp-contact .s2 {
  padding-left:0px;
  padding-right:0px;
}
}

.sp-contact .s1 .h, .sp-contact .s2 .h { font-size: 18px; color: #515151; margin-bottom: 20px; }

.sp-contact .s1 .h span, .sp-contact .s2 .h span { font-size: 11px; color: #898989; }

@media (max-width: 1199.98px) { .sp-contact .s1, .sp-contact .s2 { width: auto; padding: 0px; margin-left: 8.9%; margin-right: 8.9%; } }

.sp-contact .s1 { background: url(s02.jpg) no-repeat center center/cover; }

.sp-contact .s2 { background: #fff; }


@media (max-width: 1199.98px) {
.sp-contact .s2t{
  margin-top:28.22%; margin-bottom:15%;
}

.sp-contact .s2t img{
  width:44.68%;
  height:auto;
}
}

.sp-contact .s2 .row { display: -webkit-box; display: -ms-flexbox; display: flex; margin-bottom: 10px; position: relative; }

.sp-contact .s2 .row label { width: 70px; }

.sp-contact .s2 .row .required { color: #515151; margin-left: 5px; }

@media (max-width: 1199.98px) { .sp-contact .s2 .row .required { position: absolute; top: 0; right: 0; } }

.sp-contact .s2 .row input, .sp-contact .s2 .row textarea { border: 1px solid #ddd; background-color: #fff; width: 300px; height: 28px; padding: 0 5px; outline: 0 none; }

@media (max-width: 1199.98px) { .sp-contact .s2 .row input, .sp-contact .s2 .row textarea { width: auto; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; margin-right: 15px; } }

.sp-contact .s2 .row textarea { width: 420px; height: 130px; padding: 5px; }

@media (max-width: 1199.98px) { .sp-contact .s2 .row textarea { width: auto; height: 90px; } }

.sp-contact .s2 .btns { padding-left: 70px; }

.sp-contact .s2 .btns input { width: 140px; height: 38px; color: #ffffff; background: #515151; border: 0 none; cursor: pointer; -webkit-transition: .3s; transition: .3s; }

.sp-contact .s2 .btns input:hover { background: #215bb8; }


@media (min-width: 1200px) {
 .f01{
   height:515px;
 }
 
 .f01 .t{
   text-align:center;
   border-bottom:2px solid #F2F2F2;
   padding:20px;
 }
 
 .f01 .c{
   width:1200px;
   margin-left:auto;
   margin-right:auto;
   height:326px;
   margin-top:38px;
 }
 
 .f01 .c .cl{
   width:853px;
   height:325px;
   border:1px solid #ABABAB;
   margin-right:7px;
   float:left;
 }

 .f01 .c .cr{
   width:336px;
   height:325px;
   border:1px solid #ABABAB;
   float:left;
 }
 
 .f01 .c1t{
   text-align:center;
   font-size:30px;
   padding-top:33px;
   padding-bottom:33px;
   width:818px;
   margin-left:auto;
   margin-right:auto;
   border-bottom:1px solid #636363;
   margin-bottom:49px;
 }
 

 
 .f01 .c1c{
   width:818px;
   margin-left:auto;
   margin-right:auto;
 }
 
 /*
 .f01 .c1c input[type="text"]:nth-child(1) { background-image: url(s49.png); }

 .f01 .c1c input[type="text"]:nth-child(2) { background-image: url(s50.png); }

 .f01 .c1c input[type="text"]:nth-child(3) { background-image: url(s51.png); }

 .f01 .c1c input[type="text"]:nth-child(4) { background-image: url(s51.png); }

 .f01 .c1c input[type="text"]:nth-child(5) { background-image: url(s51.png); }

 .f01 .c1c input[type="text"]:nth-child(6) { background-image: url(s52.png); }*/
 
 .f01 .c1c form{
    display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
	width:818px;
 }

 .f01 .c1c input[type="submit"] { width:266px; height:50px; background-color: #D2C3A2;color: #fff; font-size: 12px; }
 
 .f01 .c1c input[type="text"]{background:#F0F0F0;background-repeat: no-repeat; border:1px solid #A9A9A9; width:266px; height:50px; padding-left:10px; margin-bottom:27px; }
 
 .f01 .crt{
      text-align:center;
      font-size:30px;
	 
 }
 
 .f01 .l{
   height:93px;
   border-top:1px solid #D2D2D2;
   overflow:hidden;
 }
 
 .f01 .l a{
   display:block;
   width:322px;
   height:80px;
   margin-left:5px;
   margin-top:7px;
   display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
 }
 
 .f01 .l a .img{
    width:78px;
	height:78px;
    border:1px solid #D2D2D2;
	background-repeat: no-repeat; background-size: cover; background-position: center center; 
 }
 
 .f01 .l a .txt{
   width:235px;
   overflow:hidden;
   height:70px;
  }
  .f01 .l a .title{
    height:20px;
	overflow:hidden; 
  }
}

 .f01 .c1t span{
   color:#FA0709;
 }


@media (max-width: 1199.98px) {
  .sp-f{
    padding-left:10px;
	padding-right:10px;
  }
  .f01 .t img{
    width:100%;
  }
  
  .f01 .c1t{
    text-align:center;
	padding:10px;
  }
  
 .f01 .c1c input[type="submit"] { width:50%;  background-color: #D2C3A2;color: #fff; height:30px; font-size: 12px; }
 
 .f01 .c1c span{
   display:block;
   text-align:center;
 }
 
 .f01 .c1c input[type="text"]{background:#F0F0F0;background-repeat: no-repeat; border:1px solid #A9A9A9; width:100%;height:30px; padding-left:10px; margin-bottom:10px; }  
  
}













@media (min-width: 1200px) { .home011 { margin-left: auto; margin-right: auto; margin-bottom: 50px; } .home011 .htt{margin-bottom:40px;} }

@media (min-width: 1200px) and (max-width: 1199.98px) { .home011 { margin-bottom: 40px; } }

@media (min-width: 1200px) { .home011 .h-more { margin-top: -15px; margin-bottom: 15px; } }

@media (min-width: 1200px) and (max-width: 1199.98px) { .home011 .h-more { margin-top: -5px; margin-bottom: 10px; } }

@media (min-width: 1200px) { .home011 .ct-wrp { background: url(probg2.jpg) no-repeat 50% 0; height:591px; }
  .home011 .ct { width: 1200px; margin: 0 auto; position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between; } }

@media (min-width: 1200px) and (max-width: 1199.98px) { .home011 .ct { width: 100%; padding-left: 12px; padding-right: 12px; max-width: 680px; } }

@media (min-width: 1200px) { .home011 .ct > div { margin-bottom: 5px; }
  
  .home011 .ct > div > a { display: block; position: relative; width: 297px; height: 591px; background-repeat: no-repeat; background-size: cover; background-position: center center; }
  .home011 .title { position: absolute; left: 0; top: 0; right: 0; bottom: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-transition: .3s; transition: .3s; }
  .home011 .title:hover { background: rgba(0, 0, 0, 0.3); }
  .home011 .title > div { color: #fff; font-size: 22px; line-height: 1.2; margin: auto; text-shadow: 0 1px 2px #000; max-width: 135px; text-align: center; } 
  
  .home011 .img{background-repeat: no-repeat; background-size: cover; background-position: center center;} 

}

@media (max-width: 1199.98px) { .home011 { margin-left: auto; margin-right: auto; margin-bottom: 70px; width: 1200px; } }

@media (max-width: 1199.98px) and (max-width: 1199.98px) { .home011 { margin-bottom: 40px; } }

@media (max-width: 1199.98px) and (max-width: 1199.98px) { .home011 { width: 100%; padding-left: 12px; padding-right: 12px; max-width: 680px; } }

@media (max-width: 1199.98px) { .home011 .ct { margin-left: -2px; margin-right: -2px; }
  .home011 .swiper-slide { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; }
  .home011 .swiper-slide > div { width: 50%; padding: 0 2px; margin-bottom: 4px; }
  .home011 .swiper-slide > div > a { position: relative; display: block; height: 0; padding-bottom: 61.96474%; -webkit-box-sizing: content-box; box-sizing: content-box; background-repeat: no-repeat; background-size: cover; background-position: center center; }
  .home011 .title { position: absolute; left: 0; top: 0; right: 0; bottom: 0; display: -webkit-box; display: -ms-flexbox; display: flex; }
  .home011 .title > div { color: #fff; font-size: 18px; line-height: 1.2; margin: auto; text-shadow: 0 1px 3px #000; max-width: 80%; text-align: center; }
  .home011 .swiper-pagination { position: static; line-height: 1; }
  .home011 .swiper-pagination-bullet { background-color: #2B1953; width: 35px; height: 3px; border-radius: 0; } }
  



  .home03-m { padding: 20px 0; margin-left: auto; margin-right: auto; margin-bottom: 70px; background: url(s25.jpg) no-repeat center center/cover; }

@media (max-width: 1199.98px) { .home03-m { margin-bottom: 40px; } }

.home03-m .ct { width: 1200px; margin: 0 auto; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; }

@media (max-width: 1199.98px) { .home03-m .ct { width: 100%; padding-left: 12px; padding-right: 12px; max-width: 680px; } }

.home03-m .ct > a { width: 48%; margin: 5px 1%; text-align: center; }

.home03-m .ct > a .img { height: 0; padding-bottom: 62.04819%; -webkit-box-sizing: content-box; box-sizing: content-box; background-repeat: no-repeat; background-size: cover; background-position: center center; }

.home03-m .htttxt{ padding:20px 40px; color:#202020}


@media (min-width: 1200px) {

.f02{
  height:814px;
}
  
  .f02 .list{
    display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;width:1200px; height:500px;
	margin-left:auto; margin-right:auto;
	height:700px;
	margin-top:30px;
  }
  

  .f02 .img {
      width:450px;
	  height:311px;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center center;
	  margin-bottom:12px;
  }
  .f02 .img a{
    display:block;
	padding-bottom:100%;
  }
  .f02 .list > div:nth-child(1){height:365px; width:278px;}
  .f02 .list > div:nth-child(2){width:621px; height:365px;}
  .f02 .list > div:nth-child(3){height:365px; width:276px;}
  .f02 .list > div:nth-child(4){height:311px; width:278px;}
}


@media (max-width: 1199.98px) {

   .f02 .img{
	 -webkit-box-sizing: content-box; box-sizing: content-box; background-repeat: no-repeat; background-size: cover; background-position: center center; 
	 margin-bottom:15px;
   }
   
   .f02 .img a{
    display:block;
	padding-bottom:100%;
  }

}




@media (min-width: 1200px) {
  .f03{
    height:1174px;
  }
  
  .f03 .c{
    width:1200px;
	margin-left:auto;
	margin-right:auto;
	height:1010px;
	margin-top:25px;
	
  }
  
  .f03 .ctl{
    width:796px;
	height:512px;
	float:left;
	margin-right:18px;
	background:#C8B79B;
  }
  
  .f03 .ctl .txt{
    padding:11px 20px;
  }
  
  .f03 .ctl .txt .title{
    border-bottom:1px solid #47423F;
	padding-bottom:5px;
	margin-bottom:5px;
  }
  
  .f03 .ct{
    height:512px;
  }
  
  .f03 .ctr{
    width:385px;
	height:512px;
	float:left;
  }
  
  .f03 .ctr a{
    display:block;
	height:248px;
	width:100%;
	text-align:center;
	background:#C8B79B;
  }
  
  .f03 .ctr a .img{
    width:385px;
	height:212px;
	background-repeat: no-repeat; background-size: cover; background-position: center center;
  }
  .f03 .ctr .title{
    padding-top:8px;
  }
  
  .f03 .ctr a:nth-child(1){
    margin-bottom:16px;
  }
  
  .f03 .ctl .img{
    width:796px;
	height:405px;
	background-repeat: no-repeat; background-size: cover; background-position: center center;
  }
  
  .f03 .cb{
    width:1200px;
	height:459px;
	margin-top:29px;
	
  }
  
  .f03 .cbl{
    width:504px;
	height:459px;
	margin-right:29px;
	float:left;
  }
  
  .f03 .cbr{
    width:666px;
	height:459px;
	float:left;
  }
  
  .f03 .cbr .l{
    height:140px;
	margin-bottom:17px;
	border-bottom:1px solid #A0A0A0;
  }
  
  .f03 .cbr .l a{
    display:block;
  }
  
  .f03 .cbr .l .img{
    width:120px;
	height:120px;
	border:3px solid #C6C599;
	float:left;
	margin-right:15px;
	background-repeat: no-repeat; background-size: cover; background-position: center center;
  }
  
  .f03 .cbr .l .txt{
    float:left;
	width:526px;
	float:left;
  }
    
  .f03 .cbl .img{
    display:block;
	height:459px;
	background-repeat: no-repeat; background-size: cover; background-position: center center;
  }
	

}



@media (max-width: 1199.98px) {
    
	.f03 .cbr .img{
	  padding-bottom:45%;
	  -webkit-box-sizing: content-box; box-sizing: content-box; background-repeat: no-repeat; background-size: cover; background-position: center center; 
	}
	
	.f03 .cbr > div{
	  margin-bottom:15px;
	}

}






@media (min-width: 1200px) {
  .f04{
    height:608px;
  }
  
  .f04 .l{
    width:569px;
	height:115px;
	overflow:hidden;
	float:left;
	margin-right:58px;
	margin-bottom:37px;
  }
  
  .f04 .l:nth-child(even){
    margin-right:0px;
  }
  
  .f04 .cc{
    width:1200px;
	height:470px;
	margin-left:auto;
	margin-right:auto;
	margin-top:32px;
  }
  
  .f04  .img img{
    width:102px;
	height:102px;
	border-radius: 53px;
  }
  
  .f04  .img{
    width:102px;
	float:left;
	margin-right:12px;
  }
  
  .f04 .txt{
    width:453px;
	float:left;
	color:#999999;
  }
  
  .f04 .txt .t{
     padding-left:23px;
  }
  
  .f04 .txt .c{
    width:453px;
	height:87px;
	background: url(kbbg.jpg) no-repeat; 
  }
  
  .f04 .txt .c > div{
    padding-left:35px;
	padding-top:24px;
  }
  
}



@media (max-width: 1199.98px) {
   
   .f04 .l{
     width:100%;
	 display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;
	 margin-bottom:15px;
   }
   
   .f04 .img{
     width:20%;
	 margin-right:10px;
   }
   
   .f04 .img img{
     width:100%;
	 border-radius: 53px;
   }
   
   .f04 .txt{
     width:80%;
	 padding-left:10px;
   }
   

}





@media (min-width: 1200px) {
.f05{
  height:1011px;
  width:1200px;
  margin-left:auto;
  margin-right:auto;
}

.f05 .c1{
  width:885px;
  height:933px;
  float:left;
  margin-right:16px;
  border:1px solid #AAAAAA;
}

.f05 .c2{
  width:297px;
  height:933px;
  border:1px solid #AAAAAA;
  float:left;
}

.f05 .htt{
  margin-left:22px;
  margin-right:22px;
  margin-top:25px;
  margin-bottom:26px;
}

.f05 .c1c .m .img{
  width:850px;
  height:550px;
  margin-left:auto;
  margin-right:auto;
  background-repeat: no-repeat; background-size: cover; background-position: center center;
  margin-bottom:17px;
}


.f05 .c1c .l{
  width:850px;
  height:171px;
  display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
  margin-left:auto;
  margin-right:auto;
}

.f05 .c1c .l a{
  display:block;
  width:274px;
  height:171px;
}

.f05 .c1c .l .img{
   background-repeat: no-repeat; background-size: cover; background-position: center center;
   height:171px;
   width:100%;
}

.f05 .c2m{
  width:275px;
  margin-left:auto;
  margin-right:auto;
}

.f05 .c2m .img{
  width:275px;
  height:215px;
  background-repeat: no-repeat; background-size: cover; background-position: center center;
}

.f05 .c2m  .mm{
  margin-bottom:33px;
  
}

.f05 .c2m .txt{
  color:#9A9A9A;
  margin-top:20px;
}


}


@media (max-width: 1199.98px) {
  .f05 .img{
    padding-bottom:50%;
	margin-bottom:10px;
	-webkit-box-sizing: content-box; box-sizing: content-box; background-repeat: no-repeat; background-size: cover; background-position: center center; 
  }
  
  .f05 .mm{
   margin-bottom:20px;
   color:#8C8C8C;
  }
}






.product-item .sec05 iframe { display: block; width: 880px; height: 480px; margin: 0 auto; }

@media (max-width: 1199.98px) { .product-item .sec05 iframe { width: 100%; height: 280px; } }








.htt2{

  font-size:35px;

  text-align:center;

  padding-bottom:31px;

  padding-top:45px;

}

.htt3{

  font-size:35px;

  text-align:center;

  padding-bottom:27px;

}

.fg{

  width:89px;

  border:6px solid #515151;

  margin-left:auto;

  margin-right:auto;

}





@media (max-width: 1199.98px) {

 

 .htt2{

  font-size:22px;

  text-align:center;

  padding-bottom:31px;

  padding-top:25px;

}



.htt3{

  font-size:28px;

  text-align:center;

  padding-bottom:10px;

}



}


@media (min-width: 1200px) {
/*****鼠标悬停图片变大文字消失*****/
.style1 ul li{float:left;margin:0 6px;position:relative;list-style:none}
.style1 .img{ -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s;}
.style1 ul li img{width: 170px;height: 120px;border-radius: 2px;}
.style1 ul li span{background:rgba(0, 0, 0, 0.5);color:#fff;border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;line-height: 23px;position:absolute;bottom: 3px;width: 170px;left:0;font-size:12px;-webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; -ms-transition: all 0.5s;}
.style1 .img:hover {-webkit-transform: scale(1.08); -moz-transform: scale(1.08); -o-transform: scale(1.08); -ms-transform: scale(1.08); }
.style1 ul li:hover span{ opacity:0}

/*****鼠标悬停文字消失*****/
.style2 ul li{float:left;margin:0 6px;position:relative;list-style:none}
.style2 ul li img{width: 170px;height: 120px;border-radius: 2px; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s;}
.style2 ul li span{background:rgba(0, 0, 0, 0.5);color:#fff;border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;line-height: 23px;position:absolute;bottom: 3px;width: 170px;left:0;font-size:12px;-webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; -ms-transition: all 0.5s;}
.style2 ul li:hover span{ opacity:0}

/*****鼠标悬停整体旋转*****/
.style3 ul li{float:left;margin:0 6px;position:relative;list-style:none}
.style3 .cc{ -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s;}
.style3 ul li img{width: 170px;height: 120px;border-radius: 2px;}
.style3 ul li span{background:rgba(0, 0, 0, 0.5);color:#fff;border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;line-height: 23px;position:absolute;bottom: 3px;width: 170px;left:0;font-size:12px;transition:All 0.4s ease-in-out;-webkit-transition:All 0.4s ease-in-out;-moz-transition:All 0.4s ease-in-out;-o-transition:All 0.4s ease-in-out;}
.style3 .cc:hover { transform:rotate(360deg);-webkit-transform:rotate(360deg); -moz-transform:rotate(360deg); -o-transform:rotate(360deg);  -ms-transform:rotate(360deg);}


/*****鼠标悬停整体旋转放大*****/
.style4 ul li{float:left;margin:0 6px;position:relative;list-style:none}
.style4 ul li{transition:All 0.4s ease-in-out;    -webkit-transition:All 0.4s ease-in-out;    -moz-transition:All 0.4s ease-in-out;    -o-transition:All 0.4s ease-in-out;}
.style4 ul li img{width: 170px;height: 120px;border-radius: 2px;}
.style4 ul li span{background:rgba(0, 0, 0, 0.5);color:#fff;border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;line-height: 23px;position:absolute;bottom: 3px;width: 170px;left:0;font-size:12px;transition:All 0.4s ease-in-out;-webkit-transition:All 0.4s ease-in-out;-moz-transition:All 0.4s ease-in-out;-o-transition:All 0.4s ease-in-out;}
.style4 ul li:hover {transform:rotate(360deg) scale(1.2);    -webkit-transform:rotate(360deg) scale(1.2);    -moz-transform:rotate(360deg) scale(1.2);    -o-transform:rotate(360deg) scale(1.2);    -ms-transform:rotate(360deg) scale(1.2);}


/*****鼠标悬停整体上升*****/
.style5 ul li{float:left;margin:0 6px;position:relative;list-style:none}
.style5 .img-wrp{transition:All 0.4s ease-in-out;    -webkit-transition:All 0.4s ease-in-out;    -moz-transition:All 0.4s ease-in-out;    -o-transition:All 0.4s ease-in-out;}
.style5 ul li img{width: 170px;height: 120px;border-radius: 2px;}
.style5 ul li span{background:rgba(0, 0, 0, 0.5);color:#fff;border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;line-height: 23px;position:absolute;bottom: 3px;width: 170px;left:0;font-size:12px;transition:All 0.4s ease-in-out;-webkit-transition:All 0.4s ease-in-out;-moz-transition:All 0.4s ease-in-out;-o-transition:All 0.4s ease-in-out;}
.style5 .img-wrp:hover {transform:translate(0,-10px);    -webkit-transform:translate(0,-10px);    -moz-transform:translate(0,-10px);    -o-transform:translate(0,-10px);    -ms-transform:translate(0,-10px);}


.style6 ul li{float:left;margin:0 6px;position:relative;list-style:none}
.style6 .cc{ -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s;}
.style6 ul li img{width: 170px;height: 120px;border-radius: 2px;}
.style6 ul li span{background:rgba(0, 0, 0, 0.5);color:#fff;border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;line-height: 23px;position:absolute;bottom: 3px;width: 170px;left:0;font-size:12px;-webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; -ms-transition: all 0.5s;}
.style6 .cc:hover {-webkit-transform: scale(1.1); -moz-transform: scale(1.1); -o-transform: scale(1.1); -ms-transform: scale(1.1); }
.style6 ul li:hover span{ opacity:0}


.style22 .img{position:relative;}
.style22 ul li img{width: 170px;height: 120px;border-radius: 2px; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s;}
.style22 .item .img .title{background:rgba(0, 0, 0, 0.5);color:#fff;border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;line-height: 23px;position:absolute;bottom: 3px;width: 100%;left:0;font-size:12px;-webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; -ms-transition: all 0.5s;opacity:0}
.style22 .item .img:hover .title{ opacity:1}

}


@media (min-width: 1200px) {

.gongcheng .item{
  border:1px solid #D8D8D8;
}


}



@media (min-width: 1200px) {

.pro_fl{
   background-image: url(probg.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center;
   padding-bottom:18%;
   width:100%;
   display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
}

.pro_fl .cl{
  width:50%;
  height:100%;
}

.pro_fl .cl .tt{
  text-align:center;
  padding-top:300px;
}

.pro_fl .cr .tt{
  text-align:center;
  padding-top:300px;
}

.pro_fl .cl .tt img{
  width:61.45%;
}

.pro_fl .cr .tt img{
  width:61.45%;
}

.pro_fl .cr{
  width:50%;
}

.pro_fl .cc{
  width:50.08%;
  margin-left:auto;
  margin-right:auto;
  display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
  margin-top:19px;
}

.pro_fl .cc > div{
  width:30.94%;
}

.pro_fl .cc > div a{
  display:block;
  height:28px;
  line-height:28px;
  text-align:center;
  border-radius: 8px; background: #fff; border: 0 none;
  color:#6A6A6A;
  margin-bottom:8px;
}

.pro_fl .cc > div a:hover{
  background:#000000;
  color:#FFFFFF;
}


}


@media (max-width: 1199.98px) {


.pro_fl{
   background-image: url(probg.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center;
   padding-bottom:100%;
   width:100%;
  
}

.pro_fl .cl{
  width:100%;
  height:100%;
}

.pro_fl .cl .tt{
  text-align:center;
  padding-top:20px;
}

.pro_fl .cr .tt{
  text-align:center;
  padding-top:20px;
}

.pro_fl .cl .tt img{
  width:61.45%;
}

.pro_fl .cr .tt img{
  width:61.45%;
}

.pro_fl .cr{
  width:100%;
}

.pro_fl .cc{
  width:90%;
  margin-left:auto;
  margin-right:auto;
  display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
  margin-top:19px;
}

.pro_fl .cc > div{
  width:30.94%;
}

.pro_fl .cc > div a{
  display:block;
  height:28px;
  line-height:28px;
  text-align:center;
  border-radius: 8px; background: #fff; border: 0 none;
  color:#6A6A6A;
  margin-bottom:8px;
}

.pro_fl .cc > div a:hover{
  background:#000000;
  color:#FFFFFF;
}



}

.m30{
  margin-top:30px;
}


.yc{
  display:none;
}


@media (max-width: 1199.98px) {

.sp-aboutcc .video a{
  display:block;
  height:300px;
  background-image: url(vvideo.jpg); background-repeat: no-repeat;  background-position: bottom center;
}

.sp-aboutcc .video .jsc .t{
  font-size:20px;
  font-weight:bold;
  text-align:center;
  padding:10px;
}

.sp-aboutcc .video .jsc .c{
  padding:10px;
}

.sp-aboutcc .shili{
  padding:10px;
}

.sp-aboutcc .shililist .tt{
  font-size:20px;
  font-weight:bold;
  text-align:center;
  padding:10px;
}

.sp-aboutcc .shililist .mainc{
  padding:10px;
}

.sp-aboutcc .shililist img{
  width:100%;
  height:auto;
}

}


@media (min-width: 1200px) {

.sp-aboutcc{
   
   background-image: url(aboutjs111.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center;
   height:3912px;
   font-size:18px;
}

.sp-aboutcc .video{
  height:450px;
  width:1200px;
  margin-left:auto;
  margin-right:auto;
  display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
}

.sp-aboutcc .video a{
  display:block;
  width:601px;
  height:511px;
  background-image: url(vvideo.jpg); background-repeat: no-repeat;  background-position: bottom center;
}

.sp-aboutcc .video .jsc{
  width:555px;
  padding-top:200px;
  line-height:30px;
}

.sp-aboutcc .video .jsc .t{
  font-size:30px;
  font-weight:bold;
  
}

.sp-aboutcc .video .afen{
  border-left:5px solid #000000;
  height:33px;
  margin-top:22px;
  margin-bottom:22px;
}

.sp-aboutcc .video .jsc .t span{
  font-size:12px;
  font-weight:300;
}

.sp-aboutcc .shili{
  width:1097px;
  margin-left:auto;
  margin-right:auto;
  padding-top:558px;
  text-align:center;
  line-height:33px;
  padding-bottom:150px;
}

.sp-aboutcc .shiliw{
  background: url(axshili.jpg) no-repeat top center;
  margin-top:200px;
}

.sp-aboutcc .shililist{
  padding-top:200px;
  width:1197px;
  margin-left:auto;
  margin-right:auto;
  height:1989px;
  display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
}

.sp-aboutcc .shililist .ls1{
  width:597px;
  margin-bottom:121px;
}

.sp-aboutcc .shililist .ls2{
  width:600px;
  margin-bottom:121px;
}

.sp-aboutcc .shililist .tt > *{
  text-align:center;
}

.sp-aboutcc .shililist .tt {
  padding-top:133px;
}

.sp-aboutcc .shililist .tt span{
  font-size:30px;
  font-weight:bold;
}

.sp-aboutcc .shililist .mainc{
  padding:20px;
  line-height:50px;
}

.sp-aboutcc .shililist .nopadding{
  padding-top:25px;
}

.sp-aboutcc .havepadding{
  padding-top:125px;
}

}


.youshi{
  height:3544px;
  background-image: url(jm_ys.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center;
}

.youshi > div{
  width:611px;
  margin-left:auto;
  margin-right:auto;
}

.youshi .ltop{
  padding-top:316px;
}

.youshi .t{
  font-size:28px;
  font-weight:bold;
  margin-bottom:10px;
}

.youshi .l1{
  margin-bottom:284px;
}

.youshi > div{
  margin-bottom:294px;
}

@media (max-width: 1199.98px) {

.youshi{
  height:auto;
  background-image:none;
}

.youshi > div{
  width:100%;
  margin-left:auto;
  margin-right:auto;
}

.youshi .ltop{
  padding-top:0px;
}

.youshi .t{
  font-size:28px;
  font-weight:bold;
  margin-bottom:10px;
}

.youshi .l1{
  margin-bottom:40px;
}

.youshi > div{
  margin-bottom:40px;
}

  .youshi{
    padding-left:10px;
	padding-right:10px;
  }
}

@media (min-width: 1200px) {
 
 .navcc{
   width:409px;
   margin-left:auto;
   margin-right:auto;
   display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
   padding-top:300px;
 }
 
 .navcc > div{
   width:30%;
   margin-bottom:8px;
 }
 
 .navcc > div a{
   display:block;
   width:124px;
   height:28px;
   text-align:center;
   border-radius: 10px;
   line-height:28px;
 }
 
 .navcc > div a{
   background:#FFFFFF;
   color:#5E5E5E;
 }
 
 .navcc > div a:hover{
   color:#FFFFFF;
   background:#000000;
 }

}





@media (min-width: 1200px) { 
  
  .sp-map-c{
    width:100%;
	display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
   }

  .sp-map {height: 666px; width:62.5%; }

  .sp-map .map-container { height: 666px; width:100%;}
  
  .map-r{
    width:37.5%;
  }
  

  
}

  .map-r img{
     width:100%;
	 height:auto;
  }



@media (max-width: 1199.98px) { .sp-map { width: 100%; height: 300px; }

  .sp-map .map-container { height: 300px; } }
  
  
@media (min-width: 1200px) {
  
  .product-index .crumb{
    padding-bottom:10px;
  }
  
  .listing-index .crumb{
    padding-bottom:10px;
  }
  
}

@media (max-width: 1199.98px) {
  
  .product-item2 .maincc .cc{
    padding:10px;
	margin-bottom:20px;
  }
  
  .product-item2 .maincc .cc .t{
    font-weight:bold;
  }
  
}






 header { position: fixed; left: 0; right: 0; top: 0;  -webkit-transition: .3s ease-in-out; transition: .3s ease-in-out; z-index: 100; }

  header > div.c {  height: 73px; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-transition: .28s; transition: .28s;  width:87.75%; margin-left:auto; margin-right:auto;  margin-top:30px; }

  header.show-search > div {  }

  header.show-menu { height:0px; background: rgba(255, 255, 255, 1); }

  header .logo { padding: 9px 0; }

  header .logo img { height: 73px; }
  
  @media (max-width: 1199.98px) {
   
   header .logo img { 
      height:auto;
	  width:36.87%; 
	
   } 
   
   header > div.c{
     margin-top:10px;
   }
   
  }

  header .menu-btn { position: relative; z-index: 1001; width: 36px; height: 36px; margin-top: 5px; margin-right: -4px; cursor: pointer; }
  


  header .menu-btn span { display: block; width: 24px; height: 3px;  margin-top: 5px; background: #000; -webkit-transition: .3s ease transform,opacity; transition: .3s ease transform,opacity; -webkit-transform-origin: 0 100%; transform-origin: 0 100%; }
  
  header .menu-btn span:nth-child(3) { width:18px;}

  header .menu-btn span:first-child { margin-top: 10px; }

  header.show-menu .menu-btn { background: rgba(255, 255, 255, 0.1);}

  header.show-menu .menu-btn span { background: #3E3A39; }

  header.show-menu .menu-btn span:nth-child(2) { -webkit-transform: rotate(45deg) translate(-3px, -8px); transform: rotate(45deg) translate(-3px, -8px); }

  header.show-menu .menu-btn span:nth-child(1) { opacity: 0; }

  header.show-menu .menu-btn span:nth-child(3) { -webkit-transform: rotate(-45deg) translate(3px, 4px); transform: rotate(-45deg) translate(2px, 4px); width:24px; }

  header .search-btn { margin: auto 13px auto auto; width: 20px; height: 20px; background: url(s56.png) no-repeat 50% 50%/contain; }

  header.show-search .search-btn { background-image: url(s57.png); }

  header.show-menu .search-btn { visibility: hidden; }

  header .search { width: 100%; height: 46px; padding: 6px 0 12px; -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; position: relative; -webkit-transition: .5s; transition: .5s; opacity: 0; }

  header .search input[type="text"] { width: 100%; height: 28px; background: rgba(255, 255, 255, 0.2); border: 0 none; border-radius: 13px; color: #fff; outline: 0 none; padding: 0 20px; }

  header .search input[type="submit"] { position: absolute; right: 10px; top: 11px; border: 0 none; width: 18px; height: 18px; background: url(s56.png) no-repeat 50% 50%/contain; }

  header.show-search .search { opacity: 1; }

  header nav { position: absolute; left: 0; right: 0; top: 46px; bottom: 92px; visibility: hidden; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; font-size: 18px;}

  header nav > div { margin: 5px 0; text-align:center;  }
  
  header .pronavc{
     opacity:0;
	 width:0px;
	 height:0px;
	 text-align:left;
	 background:#000;
  }
  
  header .pronavc .c a{
     color:#FFFFFF;
	 font-size:28px;
  } 


@media (max-width: 1199.98px) { 


  header .pronavc{
     opacity:0;
	 width:0px;
	 height:0px;
	 text-align:left;
	 background:#fff;
  }


}  
  
  header a{
    border-bottom:0px solid #fff;
  }
  
  header a:hover{
    border-bottom:0px solid #3E3A39;
  }

  header .pronavc .c a:hover{
     color:#FFFFFF;
	 border-bottom:2px solid #FFFFFF;
  }    

  header nav > div > div > a { display: block; color:#3E3A39; color: #fff; -webkit-transition: 0s 0s; transition: 0s 0s; opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); width:230px; margin-left:auto; margin-right:auto; text-align:left; font-size:30px; }

  header.show-menu nav { visibility: visible; }

  header.show-menu nav > div a { opacity: 1; color:#3E3A39; font-weight:bold; -webkit-transform: translateY(0px); transform: translateY(0px); -webkit-transition-duration: 0.5s !important; transition-duration: 0.5s !important; }

  header.show-menu nav > div:nth-child(1) a { -webkit-transition-delay: 0.25s; transition-delay: 0.25s; }

  header.show-menu nav > div:nth-child(2) a { -webkit-transition-delay: 0.35s; transition-delay: 0.35s; }

  header.show-menu nav > div:nth-child(3) a { -webkit-transition-delay: 0.45s; transition-delay: 0.45s; }

  header.show-menu nav > div:nth-child(4) a { -webkit-transition-delay: 0.55s; transition-delay: 0.55s; }

  header.show-menu nav > div:nth-child(5) a { -webkit-transition-delay: 0.65s; transition-delay: 0.65s; }

  header.show-menu nav > div:nth-child(6) a { -webkit-transition-delay: 0.75s; transition-delay: 0.75s; }

  header.show-menu nav > div:nth-child(7) a { -webkit-transition-delay: 0.85s; transition-delay: 0.85s; }

  header.show-menu nav > div:nth-child(8) a { -webkit-transition-delay: 0.95s; transition-delay: 0.95s; }

  header.show-menu nav > div:nth-child(9) a { -webkit-transition-delay: 1.05s; transition-delay: 1.05s; }

  header.show-menu nav > div:nth-child(10) a { -webkit-transition-delay: 1.15s; transition-delay: 1.15s; }

  header.show-menu nav > div:nth-child(11) a { -webkit-transition-delay: 1.25s; transition-delay: 1.25s; }

  header.show-menu nav > div:nth-child(12) a { -webkit-transition-delay: 1.35s; transition-delay: 1.35s; }

  header.show-menu nav > div:nth-child(13) a { -webkit-transition-delay: 1.45s; transition-delay: 1.45s; }

  header.show-menu nav > div:nth-child(14) a { -webkit-transition-delay: 1.55s; transition-delay: 1.55s; }

  header.show-menu nav > div:nth-child(15) a { -webkit-transition-delay: 1.65s; transition-delay: 1.65s; }

  header.show-menu nav > div:nth-child(16) a { -webkit-transition-delay: 1.75s; transition-delay: 1.75s; }

  header.show-menu nav > div:nth-child(17) a { -webkit-transition-delay: 1.85s; transition-delay: 1.85s; }

  header.show-menu nav > div:nth-child(18) a { -webkit-transition-delay: 1.95s; transition-delay: 1.95s; }

  header.show-menu nav > div:nth-child(19) a { -webkit-transition-delay: 2.05s; transition-delay: 2.05s; }

  header nav > div:last-child{} 

  body { padding-top: 0px; } 
  
  header .pronavc{
    position:absolute;
	right:0px;
	top:0px;
	height:100%;
	width:0px;
	z-index:10000000000;
 } 
 
 header .pronavc .an{
   padding-left:55px;
   padding-top:44px;
 } 
 
 @media (min-width: 1200px) { 
 header .pronavc .c{
   width:60.63%;
   margin-left:auto;
   margin-right:auto;
   display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
   padding-top:20%;
 
 }
}
 
 header .pronavc .c > div{
   width:48.12%;
   margin-bottom:17px;
}

.pronav,.anniu{
  cursor:pointer;
}



@media (max-width: 1199.98px) {
  
   header .pronavc .c > div{
   width:100%;
   margin-bottom:10px;
   }
 
   header .pronavc .c a{
     color:#000000;
	 font-size:14px;
  } 
  
  header .pronavc .an{
   padding-left:0px;
   padding-top:44px;
   text-align:right;
   padding-right:5%;
   opacity: 0.6;
 }
 header .s00{
   z-index:11111111111111111111111111111111111111;
 }
 
 header .pronavc .c{
   padding-top:23%;
   padding-left:16%;
 }  
  
}


@media (max-width: 1366px) {

  header .pronavc .c a{
     color:#FFFFFF;
	 font-size:22px;
  } 

}
  
  
@media (min-width: 1200px) { 

.product-item23{
  width:100%;
  display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
}

.product-item23 .sec00{
  width:13.4%;
  height:764px;
  margin-top:160px;
  overflow:hidden;
}

.product-item23 .sec00 .ls{
  padding-top:82px;
}

.product-item23 .sec01{
  width:24.97%;
  height:764px;
  margin-top:160px;
  border:1px #000000 #6666CC;
}

.product-item23 .sec01 .ls{
  margin-left:21px;
  padding-top:142px;
}

.product-item23 .sec01 .sec01nav{
  padding-top:174px;
  text-align:right;
  padding-right:14px;
} 


.product-item23 .sec01 .sec01nav span{
  margin-left:60px;
}

.product-item23 .sec02{
  width:59.63%;
  height:764px;
  margin-top:160px;
}

.product-item23 .sec02 .ls{
  
}

}

@media (max-width: 1366px) {

/*
.product-item23 .sin img{
  width:100%;
}*/

.product-item23 .sec00{
  width:13.4%;
  height:394px;
  overflow:hidden;
}

.product-item23 .sec00 .ls{
  padding-top:50px;
}

.product-item23 .sec01{
  width:24.97%;
  height:464px;
  overflow:hidden;
  padding-top:80px;
}

.product-item23 .sec01 .ls{
  margin-left:21px;
  padding-top:0px;
}


.product-item23 .sec01 .sec01nav{
  padding-top:74px;
  text-align:right;
  padding-right:14px;
} 


.product-item23 .sec01 .sec01nav span{
  margin-left:60px;
}



.product-item23 .sec02{
  width:59.63%;
  height:464px;
  overflow:hidden;
  padding-top:0px;
  margin-top:160px;
}



}


.product-item23 .sec02 .sin img { display: block; margin: 0 auto; max-width: 1200px; }

@media (max-width: 1199.98px) {

.product-item23 .sec02{
  width:100%;
  height:100%;
  margin-top:0px;
}
 
 .product-item .sec02 .sin img { width: 100%; }
 


.product-item23 .sec02{
  width:100%;
  height:auto;
  overflow:hidden;
  padding-top:0px;
  margin-top:0px;
}




.product-item23{
  width:100%;
  position:relative;
  height:100%;
}

.product-item23 .sec00{
  width:28.75%;
  position:absolute;
  left:8.9%;
  top:14.92%;
}

.product-item23 .sec00 .ls{
  padding-top:0px;
}


.product-item23 .sec00 img{
  width:100%;
  height:auto;
}

.product-item23 .sec01{
  width:48.59%;
  position:absolute;
  left:43.9%;
  top:6.91%;
}

.product-item23 .sec01 .sin img{
  width:100%;
}

.product-item23 .sec01 .ls{
  margin-left:0px;
  padding-top:0px;
}

.product-item23 .sec01 .sec01nav{
  padding-top:29.03%;
  text-align:right;
} 


.product-item23 .sec01 .sec01nav span{
  margin-left:0px;
}

.product-item23 .sec02{
  width:100%;
  position:absolute;
  left:0px;
  bottom:0px;
  height:39.3%;
  overflow:hidden;
}

.product-item23 .sec02 img{
  width:100%;
}
 
}

.product-item23 .sec02 .ls { position: relative; }

/*.product-item23 .sec02 .pn { position: absolute; z-index: 10; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); width: 66px; height: 66px; cursor: pointer; background-repeat: no-repeat; background-position: center center; background-color: rgba(0, 0, 0, 0.4); -webkit-transition: .2s; transition: .2s; }*/




.product-item23 .sec02 .pn:hover { opacity: 1; background-color: rgba(0, 0, 0, 0.8); }

.product-item23 .sec02 .prev { left: 110; background-image: url(a1/s35.png); }

.product-item23 .sec02 .next { right: 0; background-image: url(a1/s36.png); }  


.product-item23 .sec02 .pn { position: absolute; z-index: 10; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); width: 66px; height: 66px; cursor: pointer; background-repeat: no-repeat; background-position: center center; background-color1: rgba(0, 0, 0, 0.4); -webkit-transition: .2s; transition: .2s; }



.product-item23 .sec01 .pn:hover { opacity: 1; background-color1: rgba(0, 0, 0, 0.8); }

.product-item23 .sec01 .prev {  background-image: url(a1/s351.png); background-color:#FFFFFF;}

.product-item23 .sec01 .next {  background-image: url(a1/s361.png); background-color:#FFFFFF; }  


.product-item23 .sec01 .pn { z-index: 10;  -webkit-transform: translateY(-50%); transform: translateY(-50%); width: 66px; height: 66px; cursor: pointer; background-repeat: no-repeat; background-position: center center; background-color1: rgba(0, 0, 0, 0.4); -webkit-transition: .2s; transition: .2s; }



  
@media (min-width: 1200px) {
.sp-loginw{
  height:932px;
  background-image: url(jxs_b.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center;
}

.sp-loginw .sp-login{
  padding-top:468px;
}

}

@media (max-width: 1199.98px) {

.sp-loginw{
  padding-top:300px;
  background-image: url(jxs_b.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center;
  padding-bottom:10px;
  height:100%;
}

}

@media (min-width: 1200px) {
.home01 .tabs { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; margin-bottom: 35px; margin-top:61px;}
}

@media (max-width: 1199.98px) {
.home01 .tabs {
 display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: left; margin-bottom: 35px; margin-top:61px;
}
 .home01 .tabs { margin-bottom: 15px; } 
}

.home01 .tabs > * { text-align: center; margin: 0 30px; cursor: pointer;  }

@media (max-width: 1199.98px) { .home01 .tabs > * { margin: 0 10px; font-size: 14px; text-align:left;  } 
 .home01 .tabs{
   margin-bottom:60px;
 }
}

.home01 .tabs > *:hover, .home01 .tabs > *.active { color: #000; border-bottom:1px solid #CAB683; }

.home01 .tabs > * > div:first-child { height: 36px; background-repeat: no-repeat; background-position: center center; }

.home01 .tabs > div:nth-child(1) > div:first-child { background-image: url(s01.png); }

.home01 .tabs > div:nth-child(2) > div:first-child { background-image: url(s02.png); }

.home01 .tabs > div:nth-child(3) > div:first-child { background-image: url(s03.png); }

.home01 .tabs > div:nth-child(4) > div:first-child { background-image: url(s07.png); }

.home01 .tabs > a:nth-child(5) > div:first-child { background-image: url(s12.png); }

.home01 .panels { position: relative; }

.home01 .panels > * { position: absolute; left: 0; top: 0; width: 100%; z-index: 1; overflow: hidden; visibility: hidden; opacity: 0; -webkit-transition: .3s; transition: .3s; -webkit-transition-property: opacity,visibility; transition-property: opacity,visibility; }

.home01 .panels > *.active { visibility: visible; position: relative; z-index: 2; opacity: 1; }

.home01 .img { border-radius: 8px; height: 0; padding-bottom: 100%; -webkit-box-sizing: content-box; box-sizing: content-box; background-repeat: no-repeat; background-size: cover; background-position: center center; }

.home01 .title { padding-top: 8px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; text-align: center; }

.home01 .swiper-pagination { position: static; margin-top: 20px; }

.home01 .swiper-pagination-bullet { background: #2868af; width: 14px; height: 14px; }


.home01 input{
  width:100%;
  height:32px;
}

.home01 .c6 input{

  border:none;
  background:#CAB683;
  color:#FFFFFF;
  height:32px;  
  
}


@media (min-width: 1200px) { 



.home01 .c6 input{
  height:32px;
  width:37.27%;

}


}



.home01 .f1{
  display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
  width:100%;
}

.home01 .f1 > div{
  width:48%;
  margin-bottom:13px;
}

@media (max-width: 1199.98px) {
  .home01 .f1 > div{
    width:48%;
  }
}

.home01 .f1 .c6{
  padding-top:20px;
}


.home01 .f2{
  display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
  width:100%;
}

.home01 .f2 > div{
  width:48%;
  margin-bottom:13px;
}

@media (max-width: 1199.98px) {
  .home01 .f2 > div{
    width:48%;
  }
}

.home01 .f2 .c6{
  padding-top:20px;
}




.home01 .f3{
  display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
  width:100%;
}

.home01 .f3 > div{
  width:48%;
  margin-bottom:13px;
}

@media (max-width: 1199.98px) {
  .home01 .f3 > div{
    width:48%;
  }
}

.home01 .f3 .c6{
  padding-top:20px;
}


.home01 .f4{
  display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
  width:100%;
}

.home01 .f4 > div{
  width:48%;
  margin-bottom:13px;
}

@media (max-width: 1199.98px) {
  .home01 .f4 > div{
    width:48%;
  }
  
  .fanhui{
    position:fixed;
	top:50px;
	right:3px;
	width:100px;
	padding:5px;
	border:1px solid #3F3A39;
	color:#fff;
	background:#B4B4B4;
	z-index:111111111;
  }
  .fanhui a{
    color:#FFFFFF;
	display:block;
	text-align:center;
  }
}

.home01 .f4 .c6{
  padding-top:20px;
}







.hide2{
  visibility:hidden;
}

.footcontact{
  width:88.69%;
  margin-left:auto;
  margin-right:auto;
  display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: left; -ms-flex-pack: left; justify-content: space-between;
}

.footcontact .c1{
  width:30.36%;
}

.footcontact .c2{
  width:10.41%;
}

.footcontactw{
  position:fixed;
  width:100%;
  left:0;
  bottom:24px;
}


@media (min-width: 1200px) { 
  .page-nav { width: 1200px; margin-top:60px; padding-bottom:60px; }
  .page-nav a{font-size:30px; } 
}

.nosee{
  display:none;
}




















.prod-sel-kvs > div { display: -webkit-box; display: -ms-flexbox; display: flex; width: 280px;margin-left:auto; margin-right:auto; height: 56px; position: relative; border: 1px solid #ccc; border-radius: 6px; }



@media (max-width: 1199.98px) { .prod-sel-kvs > div { width: 150px; margin: 0 auto 8px auto; } }



.prod-sel-kvs .icon { margin-right: 10px; width: 56px; height: 56px; background-repeat: no-repeat; background-position: 50% 50%; -webkit-filter: grayscale(100%); filter: grayscale(100%); opacity: .6; -webkit-transition: .3s .03s; transition: .3s .03s; }



.prod-sel-kvs > div:hover .icon { -webkit-filter: grayscale(0%); filter: grayscale(0%); opacity: 1; }



.prod-sel-kvs > div.string_size .icon { background-image: url(s13.png); }



.prod-sel-kvs > div.string_color .icon { background-image: url(s11.png); }



.prod-sel-kvs > div.string_series .icon { background-image: url(s12.png); }



.prod-sel-kvs > div.string_style .icon { background-image: url(s15.png); }



.prod-sel-kvs .label { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }



.prod-sel-kvs .label > span { display: block; font-size: 15px; line-height: 1.5; letter-spacing: 1px; }



@media (min-width: 1200px) {

.prod-sel-kvs .label > span {font-size:18px;}

#product .product-title h2{
  font-size:80px;
}

#ppro li h3{
  font-size:20px;
}

#list-title h3{
  font-size:80px;
}

}



.prod-sel-kvs .label > span:last-child { font-size: 13px; }



.prod-sel-kvs > div:hover .label { color: #2254a3; }



.prod-sel-kvs .arrow { width: 12px; position: relative; margin-right: 12px; }



.prod-sel-kvs .arrow > span { content: ""; position: absolute; left: 0; -webkit-transition: .5s .03s; transition: .5s .03s; }



.prod-sel-kvs .arrow > span:first-child { top: 16px; border: 6px solid transparent; border-bottom-color: #bbb; }



.prod-sel-kvs .arrow > span:last-child { top: 32px; border: 6px solid transparent; border-top-color: #bbb; }



.prod-sel-kvs > div:hover .arrow span:first-child { border-bottom-color: #2254a3; }



.prod-sel-kvs > div:hover .arrow span:last-child { border-top-color: #2254a3; }



.prod-sel-kvs .sel-list { position: absolute; z-index: 10; left: 0; top: 58px; width: 100%; background: #fff; -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2); box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2); border-radius: 4px; padding: 8px 0; -webkit-box-sizing: border-box; box-sizing: border-box; border: 1px solid #ccc; -webkit-transform-origin: 50% 0; transform-origin: 50% 0; -webkit-transition: .15s .1s; transition: .15s .1s; opacity: 0; -webkit-transform: scaleY(0.6); transform: scaleY(0.6); visibility: hidden; }



.prod-sel-kvs .sel-list.wide { width: 300%; left: auto; right:-300px; -webkit-box-sizing: content-box; box-sizing: content-box; overflow: hidden; }



.prod-sel-kvs > div:hover .sel-list { opacity: 1; -webkit-transform: scaleY(1); transform: scaleY(1); visibility: visible; }



.prod-sel-kvs .sel-list > a { display: block; height: 30px; line-height: 30px; padding: 0 15px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }



.prod-sel-kvs .sel-list.wide > a { width: 25%; float: left; }



.prod-sel-kvs .sel-list > a.active, .prod-sel-kvs .sel-list > a:hover { color: #2254a3; }



.prod-sel-kvs .sel-list > a:hover { background: #f2f2f2; }


@media (max-width: 1199.98px) {

.prod-sel-kvs .sel-list.wide { width: 280%; left: -80%; -webkit-box-sizing: content-box; box-sizing: content-box; overflow: hidden; }

.prod-sel-kvs .sel-list.wide > a { width: 33%; float: left; }


.pro-list #list-title h3{
  font-size:22px;
  margin-bottom:5px;
}

.pro-list #list-title h6{
  font-size:12px;
}
}

.nosee{
  display:none;
}



@media (min-width: 1200px) { .product-index { background: #fff; padding: 1px; min-height: 600px; padding-bottom: 120px; }
  .product-index .list { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; width: 1200px; margin: 0 auto; }
  .product-index .list * { -webkit-box-sizing: content-box; box-sizing: content-box; }
  .product-index .item { margin: 0 30px 30px 0; }
  .product-index .item:nth-child(3n) { margin-right: 0; }
  .product-index .item > a { position: relative; display: block; width: 374px; padding: 0px; border: 1px solid #E6E6E6; background: #fff; -webkit-transition: .2s .03s border-color; transition: .2s .03s border-color; }
  .product-index .item > a:hover { border-color: #000; }
  .product-index .img { width: 374px; height: 374px; background-size: contain; background-position: 50% 50%; background-repeat: no-repeat; }
  .product-index .txt { padding: 16px 40px 8px 5px; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }
  .product-index .code-btn { position: absolute; right: 9px; bottom: 10px; width: 32px; height: 32px; background: url(barcode.png) no-repeat 0 0; opacity: .6; -webkit-transition: .32s; transition: .32s; }
  
  .product-index .code-btn2 { position: absolute; right: 49px; bottom: 10px;  }
  
  .product-index .code-btn:hover { opacity: 1; }
  .product-index .code { position: absolute; left: 9px; top: 9px; border: 5px solid #fff; width: 250px; height: 250px; -webkit-transition: .3s; transition: .3s; opacity: 0; visibility: hidden; }
  .product-index .code.show { opacity: 1; visibility: visible; } 
  }

@media (max-width: 1199.98px) { .product-index .list { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin: -6px; }
  .product-index .item { width: 50%; padding: 0 3px; margin-bottom: 6px; }
  .product-index .item > a { display: block; padding: 6px; border: 1px solid #E6E6E6; background: #F3F3F3; }
  .product-index .img { height: 0; padding-bottom: 100%; -webkit-box-sizing: content-box; box-sizing: content-box; background-repeat: no-repeat; background-size: contain; background-position: center center; }
  .product-index .txt { font-size: 14px; text-align: center; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; margin-top: 5px; } }
  
  
  
  
@media (min-width: 1200px) {

.ii01{
  
   background-image: url(ibg1.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center;
   
}


.ii02{
  
   background-image: url(ibg2.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center;
   
}


.ii03{
  
   background-image: url(ibg3.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center;
   position:relative;
   
}

.ii03 a{
  display:block;
  width:218px;
  height:96px;
}

.ii03 .ii03a1{
  position:absolute;
  left:47.6%;
  top:61.1%;
}


.ii03 .ii03a2{
  position:absolute;
  left:47.6%;
  top:74.89%;
}


.ii03 .ii03a2{
  position:absolute;
  left:47.6%;
  top:74.89%;
}


.ii03 .ii03a3{
  position:absolute;
  left:64.01%;
  top:61.1%;
}


.ii03 .ii03a4{
  position:absolute;
  left:64.01%;
  top:74.89%;
}


.ii04{
  
   background-image: url(ibg4.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center;
   
}

.wc{
   background:#FFFFFF;
   height:150px;
}

}  


@media (max-width: 1199.98px) { 

.ii01{
  
   background-image: url(yd1.png); background-repeat: no-repeat; background-size: cover; background-position: center center;
   position:relative;
}


.ii02{
  
   background-image: url(yd2.png); background-repeat: no-repeat; background-size: cover; background-position: center center;
   position:relative;
}

.ii03{
  
   background-image: url(yd3.png); background-repeat: no-repeat; background-size: cover; background-position: center center;
   position:relative;
}


.ii03 a{
 
   display:block;
   width:29.2%;
   height:9.1%;

}



.ii03 .ii03a1{
  position:absolute;
  left:4.6%;
  bottom:28.2%;
}


.ii03 .ii03a2{
  position:absolute;
  left:4.6%;
  top:72.89%;
}




.ii03 .ii03a3{
  position:absolute;
  right:28.6%;
  bottom:28.2%;
}


.ii03 .ii03a4{
  position:absolute;
  right:28.6%;
  top:72.89%;
}


.ii04{
  
   background-image: url(yd4.png); background-repeat: no-repeat; background-size: cover; background-position: center center;
   position:relative;
}


 header #pronavc .c a{
   color:#000000;
 }
 
 
 .wc{
   background:#FFFFFF;
   height:18%;
}

}
   


