@font-face {
      font-family: 'Century Gothic';
      src: url('../fonts/CenturyGothic.TTF');
      font-weight: normal;
      font-style: normal;
}

.page {
      background-color: #CCC;
      color: #FFF;
      font-size:16px;
      line-height: 1;
      margin:8px;
      width:20px;
      height:20px;
      font-weight:200;
      padding: 5px 12px; 
      border-radius:3px;
}

.page:hover {
      background-color: #ff2e29;
      color: #fff;
      font-weight: 200;
} 

.page.active {
      background-color: #ff2e29;
      color: #fff;
      font-weight: 200;
}  
.next {
	color: #000;
	font-size: 20px;
	padding: 6px;
	margin: 0 6px;
	cursor: pointer;
	font-family: "youyuan";
	font-weight: 500;
}

.next:hover {
	color: #ff2e29;
}
input:-webkit-autofill { 
    box-shadow: 0 0 0px 1000px white inset;
}
::-webkit-scrollbar {
	width: 0px;
	background: #FFF；
}

::-webkit-scrollbar-thumb {
	width: 5px;
	background-color: #888;
}

::-webkit-scrollbar-thumb:hover {
	width: 5px;
	background-color: #ff2e29;
}

::-webkit-scrollbar-corner {
	background-color: #EEE;
}

::-webkit-scrollbar:horizontal {
	height: 1px;
}
/* 去除iPhone中默认的input,select,textarea,button样式*/
input,select,textarea,button,textarea {
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	outline: none;
	resize: none;
	background:none;
	border:none;
	width:100%;
	height:inherit;
	font-family:inherit;
	font-weight:inherit;
	font-size:inherit;
	color:inherit;
	vertical-align:middle;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}