
/*
    Document   : CSS样式初始化
    Created on : 2013. 8. 6,15:41:00
    Author     :
    Description:
        CSS样式表的初始化，全局样式设置。部分样式属性请根据具体页面重置其属性
*/
/* reset */

img{vertical-align:top}  /* 图片在当前行内的垂直位置 */
/* 页面设置 */
  /* 取消a标签点击后的虚线框 */
a {outline: none;}  
a:active {star:expression(this.onFocus=this.blur());}
 /* 设置页面文字等在拖动鼠标选中情况下的背景色与文字颜色 */ 
/* 
::selection {color: #fff;background-color: #4C6E78;}    
::-moz-selection {color: #fff;background-color: #4C6E78;} 
*/
.loading{
  position: fixed;
  width: 100%;
  height:100%;
  background: #fff;
  z-index: 999999999;
}
.anm{
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.loadEffect{
  width: 100px;
  height: 100px;
  position: relative;
  margin: 0 auto;
  margin-top:100px;
}
.loadEffect span{
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #bf2f2f;
  position: absolute;
  -webkit-animation: load 1.04s ease infinite;
}
@-webkit-keyframes load{
  0%{
      -webkit-transform: scale(1.2);
      opacity: 1;
  }
  100%{
      -webkit-transform: scale(.3);
      opacity: 0.5;
  }
}
.loadEffect span:nth-child(1){
  left: 0;
  top: 50%;
  margin-top:-10px;
  -webkit-animation-delay:0.13s;
}
.loadEffect span:nth-child(2){
  left: 14px;
  top: 14px;
  -webkit-animation-delay:0.26s;
}
.loadEffect span:nth-child(3){
  left: 50%;
  top: 0;
  margin-left: -10px;
  -webkit-animation-delay:0.39s;
}
.loadEffect span:nth-child(4){
  top: 14px;
  right:14px;
  -webkit-animation-delay:0.52s;
}
.loadEffect span:nth-child(5){
  right: 0;
  top: 50%;
  margin-top:-10px;
  -webkit-animation-delay:0.65s;
}
.loadEffect span:nth-child(6){
  right: 14px;
  bottom:14px;
  -webkit-animation-delay:0.78s;
}
.loadEffect span:nth-child(7){
  bottom: 0;
  left: 50%;
  margin-left: -10px;
  -webkit-animation-delay:0.91s;
}
.loadEffect span:nth-child(8){
  bottom: 14px;
  left: 14px;
  -webkit-animation-delay:1.04s;
}
/*手机站*/
.mobile-inner-nav a{
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: returnToNormal;
  animation-name: returnToNormal;
}
  
@-webkit-keyframes returnToNormal {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes returnToNormal {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.header_wap{
	width: 100%;
	height: 50px;
	position: fixed;
	top: 0px;
  left: 0px;
  z-index: 9999;
}
.mobile-inner-header .logo img{
  height: 30px;
  margin-top: 10px;
  margin-left: 16px;  
}
.small_wap,.header_wap_bj{background: #000;}
.mobile-inner-header-icon{
	color: #ffffff;
	height: 50px;
	font-size:25px;
	text-align: center;
	float:right;
	width: 50px;
	position: relative;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
.mobile-inner-header-icon:hover{

	cursor: pointer;
}
.mobile-inner-header-icon span{
	position: absolute;
	left: calc((100% - 25px) / 2);
	top: calc((100% - 1px) / 2);
	width: 25px;
	height: 1px;
	background-color: rgba(255,255,255,1);
}
.mobile-inner-header-icon span:nth-child(1){
transform: translateY(4px) rotate(0deg);
	}
.mobile-inner-header-icon span:nth-child(2){
transform: translateY(-4px) rotate(0deg);
	}
	



	
.mobile-inner-header-icon-click span:nth-child(1){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickfirst;
	}		
.mobile-inner-header-icon-click span:nth-child(2){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
	}
	


@keyframes clickfirst {
  0% {
	  transform: translateY(4px) rotate(0deg);
	  
  }

  100% {
    transform: translateY(0) rotate(45deg);
  }
}	



@keyframes clicksecond {
  0% {
	  transform: translateY(-4px) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(-45deg);
  }
}	

.mobile-inner-header-icon-out span:nth-child(1){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outfirst;
	}		
.mobile-inner-header-icon-out span:nth-child(2){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outsecond;
	}

@keyframes outfirst {
  0% {
    transform: translateY(0) rotate(-45deg);
  }

  100% {
    transform: translateY(-4px) rotate(0deg);
  }
}	



@keyframes outsecond {
  0% {
    transform: translateY(0) rotate(45deg);
  }

  100% {
    transform: translateY(4px) rotate(0deg);
  }
}

.mobile-inner-nav{
	background-color: rgba(191,47,47,0.9);
	width: 100%;
	position: absolute;
	top: 50px;
	left: 0px;
	padding-top: 30px;
	padding-bottom: 80px;
	display: none;
}
.mobile-inner-nav a{
	display: inline-block;
	line-height: 50px;
	text-decoration: none;
	width: 80%;
	margin-left: 10%;
	color: #FFFFFF;
	border-bottom: solid 1px rgba(255,255,255,0.3);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	font-weight:300;
}
.mobile-inner-nav a:hover{
	color: rgba(255,255,255,0.4);
	border-bottom: solid 1px rgba(255,255,255,0.2);
}
@media screen and (max-width: 1560px) { 
  .index_2 .index_2_1{
  width: 10%;
}
.index_2 .index_2_2 h1 {
  padding-top: 34px;
}
} 
/* css注释：设置了浏览器宽度不小于1201px时body 显示1200px宽度 */ 
 
@media screen and (max-width: 1400px) { 
  .index_2_22 {
    display: block;
    margin-top: 70px;
}
.index_2 .index_2_1{
  width: 0%;
}
.index_2 .index_2_2 h1 {
  padding-top: 34px;
}
.about_video img,.d3_1 img{
  width: 100%;
}
} 
/* 设置了浏览器宽度不大于1200px时body 显示900px宽度 */ 
 
@media screen and (max-width: 1200px) { 

} 
@media screen and (min-width: 751px) { 
  .wap{
    display: none!important;
  }
  .pc{
    display:block!important;
  }
} 

@media screen and (max-width: 750px) { 
  .pc{
    display: none!important;
  }
  .wap{
    display:block!important;
  }
  .w100{
    width: 100%;
  }
  #wap_banner{
    height:100%
  }
  .aboutPower .about_video{
    width: 100%;
  }
  .aboutPower ul {
    width: 100%;
    display: flex;
    float: left;
    flex-wrap: wrap;
}
 .index_3{
   background: none;
   padding:50px 0
 }
 .index_3 ul{
   padding:0 2%;
   flex-wrap: wrap ;
 }
 .index_3 ul li{
   display: block;
   width: 49%;
   padding:0;
   margin-bottom: 10px;
 }
 .index_3 ul li h1{
   font-size: 12px;
   left: 10px;
 }
 .index_3 ul li h2{
   font-size: 16px;
   left:10px;
   top: 45px;
 }
 .video-fullscreen{
   display: none;
 }

 .m-video{
   margin-top: 30px!important;
 }
 .index_6{
   padding:50px 0
 }
 .hd_all{
   width: 100%;
 }
 .hd_all h1 img{
   width:80%;
 }
 .sxy_1{
   width: 100%;
 }
 .sxy_1_left .hd_all,.sxy_1_left{
   width: 100%;
 }
 .swiper_nx, .swiper_pr {
  width: 28px;
  height: 28px;
  position: absolute;
  top:60px;
  cursor: pointer;
}
 .list_jy h1 img{
   width: 60%;

 }
 
 
  .index_wap_3{
   width: 100%;
   background: url("../image/index-22.jpg") top center no-repeat #d8d2d8;
   background-size: contain;
   display: flex;
   align-items:flex-end 
 }
 #youku,#tx{
   width:100%!important;
   height:300p!important;
 }
  .index_wap_3 ul {
    padding-top:70%;
    padding-bottom: 10%
  }
 .index_wap_3 ul li{
   background: rgba(208,21,27,0.8);
   padding:5px 0;
   width:90%;
   margin: 3px auto;

 }

 .index_wap_3 img{
   display: block;
   width: 100%;
 }
 .index_2_11 {
  background: none;
}
.index_2_12 {
  background:none;;
}
.index_2_13 {
  background: none;
}
.index_2_14 {
  background: none;
}

 .footer_wap{
   width:100%;
   padding-top: 50px;
   background: #242424;
 }
.footer_wap h1{
text-align: center;
}
.footer_wap h1 img{
  width: 60%;
}
.footer_wap ul {
  display: flex;
  padding:20px 10%

}
.footer_wap ul li{
  width: 25%;
  text-align: center;
  box-sizing: border-box;
  background:url(../image/foot_6.png) center left no-repeat;
  background-size: contain;
}
.footer_wap ul li img{
  width:60%
}
.foot_wap_bo{
	padding:0 10%;
  padding-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
  color:#666 ;
  border-top: 1px solid #383838;
  text-align: center;
  padding-top: 20px;
  font-size:14px
}
.foot_wap_bo a{
  color: #666;
  line-height: 20px;
}
.abot_wap_menu{
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: row ;
  justify-content:space-between;
  padding-bottom: 10px;

}
.abot_wap_menu dd{
  display: block;
  width: 33.333%;
  height:50px;
}
.abot_wap_menu dd a{
  font-size: 16px;
  color: #000;
  line-height: 50px;

}
.abot_wap_menu dd.active a span{
  border-bottom: 1px solid #000;
  
}
.about_US{
  padding-bottom: 40px;
  padding-top: 10px;
}
.about_US p{
  padding-left: 20%;
  padding-right: 4%;
  margin-top: 10px;
  line-height: 24px;
  text-align: justify;
  font-size: 16px;
  text-indent: 2em;
}
body{-webkit-tap-highlight-color:transparent;}
.about_3 {
  width: 100%;
  background: #fff;
  padding: 40px 0;
}
.about_3_main{
  width: 90%;
  margin:0 auto
}
.about_3_main img{
  width: 100%;
}
.about_3_main .m-video{
  margin-top: 0!important;
}
.hono_wap {
padding-top:30px
}
.ry_l{
  width: 100%;
  padding-bottom: 70px;
}
.ry_l img,.cp_1,.wap_cp{
  width: 100%;
}
.wap_cp .thumb_cp{
  width:100%;
  float:none;
}
.wap_cp  .cp_1_main{
  background: #1a1a1a;
  position: relative;
  padding-top: 30px;
  margin-bottom: 20px;
}
.wap_cp  .cp_1_main img{
  width: 70%;
}
.wap_cp  .cp_1_main h1 {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  padding-left: 35px;
  padding-top: 10px;
  margin-bottom: 40px;
}
.wap_cp .cp_1_main h3{
  top:auto;
  bottom:30px;
  right:35px
}
.cp_list_wap{
  display: flex;
  flex-wrap:wrap ;
  justify-content: space-between ;
}
.cp_list_wap .wap_list{
  width:48%
}
.cp_list_wap .wap_list img{
  width:100%
}
.abot_wap_menu{
  background: #fff;
}
.cp_list_wap{
  padding:20px 10px;
  background:#f5f5f5
}
.wap_list .cp_tj h2{
  font-size: 16px;
  font-weight: 400;
  padding-top: 10px;
}
.wap_list .cp_tj h3{
  font-size: 14px;
  font-weight: 400;
  padding-top: 6px;
  padding-bottom: 20px;
}
.show_cs,.show_cp_1{
  display: none;
}
.show_cp{
  width: 100%;
  margin:0;
  padding-bottom: 40px;
}
.wz-images-list img,.show_cp_2{
  width: 100%!important;
  height: auto!important;

}
.wap_zm .cp_main_1 img{
  width: 100%;
  float: none;
}
.wap_zm .cp_1_main{
  padding-top: 20px;
  position: relative;
}
.wap_zm .cp_1_main img{
  width: 70%;
}
.wap_zm .cp_1_main h1{
  font-size: 16px;
  padding-top: 8px;
    margin-bottom: 30px;
    padding-left: 35px;
}
.wap_zm .cp_1_main h3{
  bottom: 30px;
  top:auto;
  right: 35px;
}
.wap_zm li{
  margin-bottom: 10px!important;
}
.sjslm_all{
  width:100%
}
.sjslm_all h1{
  background-size: contain;
  height: 60px;
  width: 94%;
  margin: 0 auto;
}
.sjslm_all ul.sjs_ul{
  width: 94%;
  margin: 0 auto;
  padding-top: 20px;
}
.sjslm_all ul.sjs_ul li{
  width: 100%;
}
.sjslm_all ul.sjs_ul li img{
  width: 100%;
}
.sjs_main{
  padding:20px 0
}
.wap_mx_1{
  text-align: center;
}
.wap_mx_1 img{ 
   background: #fff;
   width: 80%;
   margin: 0 auto;
}
#wap_fx{
  overflow: hidden;
width: 100%;
padding:40px 0
}
.cp_list_main{
  background: none;
  width: 100%;
  padding-left: 0;
  margin: 40px auto;
  margin-top: 20px;
}
.zmd_tit{
  font-size: 30px;
  padding-bottom: 20px;
}
.new_list{
  width:94%;
  margin: 0 auto;
}
.new_list li {
  display: block;
  width:100%;
  margin-bottom: 20px;
}
.my-map {
  height: 600px!important;
}
.cont{
  padding-top:20px;
  width: 90%;
  margin: 0 auto;
}

.con_t{
  height: 50px!important;
}
.cont h1{
  font-weight: 400;
  font-size: 24px;
  padding-bottom: 20px;
  color: #000000;
}
.cont li h2{
  font-weight: 400;
  font-size:16px;
  padding-bottom: 4px;
  color: #000000;
}
.cont li p{
  padding-bottom: 20px;
}
.cont li img{
  width: 30%;
  margin-bottom: 30px;
}
#ppd{
  margin-bottom: 40px;
}
#ppd ,#ppd .zd{
  width: 100%;
}
.ys_9{
  width: 100%;
  margin:40px 0
}
.ys_9 h1 {
  font-size: 24px;
  line-height: 24px;
  color: #000000;
  font-weight: 400;
  padding-bottom: 8px;
  padding-left: 2%;
}
.ys_9 h2 {
  font-size: 14px;
  line-height: 14px;
  color: #666666;
  font-weight: 400;
  padding-left: 2%;
  padding-bottom:30px;
}
.bd{
  width: 100%;
  box-sizing: border-box;
  padding:20px 4%
}
.form-group{
  display: block;
}
.form-group input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding-left: 10px;
  font-size: 14px;
  box-sizing: border-box;
  border: 0;
  margin-bottom: 10px;
}
.but{
  width:100%;
  height: 40px;
  color:#fff;
  background: #bf2f2f;
}
.sxy_4 {
  padding:40px 0
}
.sxy_4 h1{
  width:90%;
  margin:0 auto;
  background-size: contain;
  height: 70px;
}
.sxy_5_main{
  width:90%;
  margin: 0 auto;
}
.sxy_5_main .swiper-slide h2 {
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  padding-top: 20px;
}
.show_main{
  width: 94%;
  margin: 40px auto;
}
.show_main .show_tit {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #000;
}
.show_main img{
  width: 100%!important;
  height: auto!important;
}

.list_jy{
  width: 94%;
  margin: 0 auto;
}
.list_jy ul{
  width: 100%;
  margin:0 auto;
  overflow:hidden;
  padding: 0;
}
.video_list li{
	display:block;
	width:47%!important;
	margin:0;
	float:left



}
.video_list li img{
width:100%
	

}
.list_jy ul li h2 {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  margin-top: 0px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list_jy ul li h3 {
  font-size: 14px;
  font-weight: 400;
  color: #808080;
  line-height: 14px;
  margin-top:0px;
  margin-bottom: 0px;
}
.cp_img{
  height: auto!important;
}
.list_jy ul li img{width: 100%;}
} 
/* 设置了浏览器宽度不大于901px时body 显示200px宽度 */ 
 
@media screen and (max-width: 500px) { 

} 
/* 设置了浏览器宽度不大于500px时 abc 显示100px宽度 */  