﻿/*网站基本定义*/

*{margin:0;padding:0;}

body{
   /* font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;*/
    font-size:16px;
    color:#000;
    line-height:22px; 
    min-width:1200px;
    
}

img{border:0px;}
ul,li{list-style:none;}
h1,h2,h3,h4,h5,h6 {font-size: 12px; font-weight: normal; }

a{ 
    text-decoration:none;     
    cursor:pointer;
    color:#333;
}
a:hover{color:#555;}


.clear{clear:both;}
.left{float:left;}
.right { float: right; }

.clearfix { *zoom: 1 }
.clearfix:after { visibility: hidden; clear: both; display: block; content: "."; height: 0 }


/*** effect zoom in ***/

.img-zoom-in img 
{
transition:all .2s ease-in-out;
-webkit-transition:all .2s ease-in-out;
-moz-transition:all .2s ease-in-out;
-ms-transition:all .2s ease-in-out;
-o-transition:all .2s ease-in-out;
}

.img-zoom-in:hover img 
{
transform:scale(1.1);
-webkit-transform:scale(1.1);
-moz-transform:scale(1.1);
-ms-transform:scale(1.1);
-o-transform:scale(1.1)
}

.video { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video iframe,
.video object,
.video embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.videoplay{position:relative;}

.videoplay::before {
  content: '';
  background: rgba(0,0,0,0.6);
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  bottom: 0;
  cursor: pointer;
  margin: auto;
  z-index: 2;
  overflow: hidden;
  border-radius: 20px;
}
.videoplay:hover:before{background:#ff0000;}
.videoplay::after {
  content: '';
  left: 20px;
  right: 0;
  border-width: 8px 15px;
  border-color: transparent transparent transparent #fff;
  width: 0px;
  height: 0px;
  overflow: hidden;
  position: absolute;
  top: 0px;
  bottom: 0;
  cursor: pointer;
  border-style: solid;
  margin: auto;
  z-index: 3;
}