@charset "utf-8";

@font-face {
  font-family: 'Microsoft-Himalaya';
  src: url('../fonts/Microsoft Himalaya.ttf');
}

@font-face {
  font-family: 'ArialMT';
  src: url('../fonts/ArialMT.ttf');
}

@font-face {
  font-family: 'iconfont';
  /* Project id 3337781 */
  src: url('//at.alicdn.com/t/font_3337781_gy9gya24l4d.woff2?t=1650960594103') format('woff2'),
    url('//at.alicdn.com/t/font_3337781_gy9gya24l4d.woff?t=1650960594103') format('woff'),
    url('//at.alicdn.com/t/font_3337781_gy9gya24l4d.ttf?t=1650960594103') format('truetype');
}

.iconfont {
  font-family: 'iconfont';
}

/* 浮动布局 */
.fl {
  float: left;
}

.fr {
  float: right;
}

.clearfix:after {
  height: 0;
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  font-size: 0;
}

.clearfix {
  zoom: 1;
}

* html .clearfix {
  zoom: 1;
}

/* 最多显示一行 */
.line-text--one {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 最多显示两行 */
.line-text--two {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* layout */
.wp {
  width: 1200px;
  margin: auto;
}

.pagination {
  text-align: center;
  margin-top: 80px;

}

.pagination ul li {
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #FFF;
  font-family: 'Microsoft YaHei UI';
  font-weight: 400;
  font-size: 16px;
  color: #000;
  margin-right: 10px;
  cursor: pointer;
  border: 1px solid #D4D4D4;
  box-sizing: border-box;
}

.pagination ul li a {
  color: #000;
}

.pagination ul .ac {
  background: #DD3032;
  color: #FFFFFF;
  cursor: pointer;
}

.pagination ul .ac a {
  color: #FFFFFF;
  cursor: pointer;
}

/* flex css */

.df{
  display: flex;
}


.fwn{
  flex-wrap: nowrap;
}

.fdc{
  flex-direction: column;
}

.jcsb{
  justify-content: space-between;
}
.jcc{
  justify-content: center;
}

.aic{
  align-items: center;
}
.fn{
  flex: none;
}
.f1{
  flex: 1;
}
.tac{
	text-align: center;
}
.c7e{
	color: #7e7e7e;
}
.cc5{
	color: #c5c5c5;
}
.mb10{
	margin-bottom: 10px;
}