@charset "utf-8";
/* CSS Document */

*{
  vertical-align: baselinebaseline;
  font-family:Arial;
  outline:0;
  padding:0;
  margin:0;
  border:0;
}
html {
  -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body {
  color:#727171;
  min-width:320px;
  margin:0;
  padding:0;
  font-family:Arial;
}
.*{ margin:0; padding:0;}
button { cursor:pointer;}
form { display:inline;}
/* remember to define focus styles! */
:focus { outline:0;}
ol, ul ,li{ list-style:none;}
/* tables still need cellspacing="0" in the markup */
table {
  border-collapse:separate;
  border-spacing:0;
}
caption, th, td {
  font-weight:normal;
  text-align:left;
}
a img { border:0;}
/* remove possible quote marks (") from <q> & <blockquote> */
blockquote:before, blockquote:after, q:before, q:after { content: "";}
blockquote, q { quotes: "" "";}
.box100{
	width:100%;
	}

/* fenix' basic classes */
/* 基本框 */
.c { clear:both;}
a {
  color:#727171;
  text-decoration:none;
  cursor:pointer;
}
.aWord{
  font-weight: bolder;
}

a:hover {
  color:#727171;
  text-decoration:none;
}
.red{ color:#d6353f;}

input[type=”button”], input[type=”submit”], input[type=”reset”], button,input[type=”text”]  {
	-webkit-appearance: none;
}


/***********************
 * 引用样式  开始 *
 ***********************/
.viewport, body{
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    height: 100%;
}
html{
    width: 100%;
    height: 100%;
}
.container{
    width: 100%;
    min-height: 100%;
}
.widthBox{
    width: 100%;
    box-sizing: border-box;
}
.b{
    border: 1px solid black;
}
.padd2{
	padding: 0 2%;
}
.padd4{
	padding: 0 4%;
}
.padd8{
	padding: 0 8%;
}
.tabcell{
	display: table-cell;
	vertical-align: middle;
}
.flexbox{
	display: -webkit-box;
	-webkit-box-pack: center;
	box-pack: center;
	-webkit-box-align: center;
	box-align: center;
}
.flexright{
	-webkit-box-flex: 1;
	box-flex: 1;
}
/***********************
 * 引用样式  结束 *
***********************/


/* 左边栏目样式  */
.module-nav ul li{
   	position: relative;
   }
.module-nav ul li:before{
	content:"";
	width: 100%;
	height: 3px;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	background: #fede00;
	transition:all 0.8s ease;
	transform: scale(0);
}
.module-nav ul li:hover{
	font-size: 18px;
	font-family: "微软雅黑";
}
.module-nav ul li:hover:before{
	transition:all 0.8s ease;
	transform: scale(1);
}
.module-nav ul .active{
	background: #06A7E1;
}
