@charset "UTF-8";
/**
 * 
 * @authors Your Name (you@example.org)
 * @date    2018-06-14 15:47:10
 * @version $Id$
 */
@font-face {
  font-family: defaultFont;
  src: url('../font/OpenSans-Regular.ttf');
}
@font-face {
  font-family: boldFont;
  src: url('../font/OpenSans-Bold.ttf');
}
@font-face {
  font-family: lightFont;
  src: url('../font/OpenSans-Light.ttf');
}
@font-face {
  font-family: extraBoldFont;
  src: url("../font/OpenSans-ExtraBold.ttf");
}
@font-face {
  font-family: SemiboldItalic;
  src: url("../font/OpenSans-SemiboldItalic.ttf");
}
* {
  margin: 0;
  padding: 0;
  font-family: defaultFont;
  font-size: 18px;
}
img {
  border: none;
}

li {
  list-style: none;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.wrapper {
  width: 1640px;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

.clearfix:after {
  display: block;
  height: 0;
  content: "";
  clear: both;
  visibility: hidden;
}

.clearfix {
  zoom: 1;
}
.page {
  padding-left: 0;
  margin: 25px 0;
  border-radius: 4px;
  clear: both;
  text-align: center;
}

.page div {
  display: inline-block;
}

.page a,
.page span {
  position: relative;
  float: left;
  padding: 12px 20px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #0198ff;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 18px;
}

.page .current {
  background-color: #0198ff;
  border: 1px solid #0198ff;
  color: #fff;
}

.page a:first-child,
.page span:first-child {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.page a:last-child,
.page span:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}