@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0,0,0,0); 
  -webkit-overflow-scrolling: touch;
}

@font-face
{
  font-family: YH;
  src: url('../font/msyh.ttf'),url('../font/msyhbd.ttf')
}

html {
  height: 100%;   
}


body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: 'Microsoft YaHei','YH';
  color:#333;  
  min-width: 320px;
  background:#fff;
  line-height: 1.7;
}


select, input, textarea, button {
  font-family: 'reg','light','bold',sans-serif,arial,"microsoft yahei",'YH';
  font-size:16px;
  color:#333;
  border:0;
  -webkit-appearance: none;
  outline: 0;
  cursor: pointer;
  -webkit-appearance: none;
   opacity: 1;
}


html,body,div,span,object,h1,h2,h3,h4,h5,h6,p,a,img,small,ol,ul,li,label
{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
}


ul, dl, dd {
  margin: 0;
  padding: 0;
  list-style: none; 
}


img {
  max-width: 100%;
  border: none;
  font-size:0;
  outline-width:0px;  
  vertical-align:top;  
}


table {
  border-collapse: collapse;
  border-spacing: 0; 
}


.cur, button {
  cursor: pointer; 
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}


input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder{
	 color:#fff;
	 
}
input::-moz-placehoder, textarea::-moz-placehoder, select::-moz-placehoder{
	 color:#fff;
	 
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder, select::-ms-input-placeholder{
	 color:#fff;	 
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder{
   /* //ie10+ input和textarea  */
  color: #fff ; 
}

input::-webkit-input-placeholder { 
color: #fff ; 
}

input:-moz-placeholder { 
color: #fff ; 
} 
input::-moz-placeholder { 
color: #fff ; 
}

input:-ms-input-placeholder { 
color: #fff; 
}

select{ appearance:none; -moz-appearance:none; -webkit-appearance:none;}


a { text-decoration: none; color:#333;cursor: pointer; }
a:hover { text-decoration: none; color:#333; }
a:hover,button:hover{ opacity:1; }
*:focus{ outline:none; }


.left {
  float: left; }

.right {
  float: right; }
  
  
.clearfix {
  *zoom: 1; }
.clearfix:after, .clearfix:before {
    display: block;
    content: "clear";
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden; 
}


.oneline {
	display:block;
	overflow: hidden;/*超出部分隐藏*/
	white-space: nowrap;/*不换行*/
	text-overflow:ellipsis;/*超出部分文字以...显示*/
}


/*模态框*/
.modal {
	position: fixed;
	z-index: 9999999999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	display: none; 
}
.modal .modal-wrapper {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center; 
}
.modal .modal-content {
	background-color:transparent; 
	border-radius:0; 
	width:90%; 
	padding:0; 
	text-align:left; 
}


/*轮播图*/
.swiper-container {
	width: 100%;
	height: 100%;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    /*background: #fff;*/

    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}


/*视频*/
.video-js .vjs-big-play-button {
    font-size: 3em;
    line-height: 1.5em;
    height: 1.5em;
    width: 3em;
    /*display: block;*/
    position: absolute;
    top: 50%;
	margin-top:-0.75em;
    left: 50%;
	margin-left:-1.5em;
    padding: 0;
    cursor: pointer;
    opacity: 1;
    border:0;
    background-color: #000;
    background-color: rgba(0,0,0,.7);
    -webkit-border-radius: .3em;
    -moz-border-radius: .3em;
    border-radius: .3em;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.video-js .vjs-big-play-button:focus, .video-js:hover .vjs-big-play-button{
	border-color: #fff;
	background-color: #000;
	background-color: rgba(0,0,0,.5);
	-webkit-transition: all 0s;
	-moz-transition: all 0s;
	-ms-transition: all 0s;
	-o-transition: all 0s;
	transition: all 0s;
}





