@charset "utf-8";

@import url('//at.alicdn.com/t/c/font_2395912_znrkpu5irv.css');

header,
section,
footer,
aside,
nav,
article,
figure {
  display: block;
}

:root {
  --col1: #2c6fc2;
  --col2: #111f67;
  --col3: #091842;
  --bg_c1: #f5f8ff;
}

body {
  font-family: 'Arial', 'Helvetica', sans-serif;
  text-align: justify;
  overflow-x: hidden;
}

/* ICON  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border-width: 0;
  transition: 0.5s;
}

video {
  display: block;
  object-fit: fill;
}

a {
  text-decoration: none;
}


li {
  list-style: none;
  padding: 0px;
}


input:focus {
  outline: none;
}

input[type=reset],
input[type=button] {
  cursor: pointer;
}


input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999;
}

input::-moz-placeholder,
textarea::-moz-placeholder,
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}


/***超出隐藏***/

.ellip {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.webkit2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.webkit3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.webkit4 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}



/* 分栏 */
.item2 {
  display: flex;
  flex-wrap: wrap;
}

.item2 .item {
  width: 49%;
  margin-right: 2%;
}

.item2 .item:nth-child(n+3) {
  margin-top: 2%;
}

.item2 .item:nth-child(2n) {
  margin-right: 0;
}

.item3 {
  display: flex;
  flex-wrap: wrap;
}

.item3 .item {
  width: 32%;
  margin-right: 2%;
}

.item3 .item:nth-child(n+4) {
  margin-top: 2%;
}

.item3 .item:nth-child(3n) {
  margin-right: 0;
}

.item4 {
  display: flex;
  flex-wrap: wrap;
}

.item4 .item {
  width: 23.5%;
  margin-right: 2%;
}

.item4 .item:nth-child(n+5) {
  margin-top: 2%;
}

.item4 .item:nth-child(4n) {
  margin-right: 0;
}

.item5 {
  display: flex;
  flex-wrap: wrap;
}

.item5 .item {
  width: 18.4%;
  margin-right: 2%;
}

.item5 .item:nth-child(n+6) {
  margin-top: 2%;
}

.item5 .item:nth-child(5n) {
  margin-right: 0;
}



/***翻页***/
.pagelist {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto 0;
  line-height: 2em;
  padding-top: 2em;
  color: #666;
  font-size: 1.2em;
}

.pagelist>* {
  display: block;
  margin: 0 2px;
}

.pagelist a,
.pagelist .current {
  font-size: 1.1em;
  width: 2em;
  height: 2em;
  line-height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--col1);
}

.pagelist a[href] {
  color: #333;
  background: #f5f5f5;
}

.pagelist a[href]:hover {
  color: #0687c2;
}

.pagelist li>span {
  line-height: 2.5em;
  display: inline-block;
  background: #f8f8f8;
  padding: 0 1em;
}

.prenext {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.7em;
  text-align: left;
  padding: 10px 15px;
  color: #666;
  border: dashed 1px #ccc;
}

.prenext a {
  color: #00a0e9;
}

.prenext a:hover {
  color: #0687c2;
  text-decoration: underline;
}

/* 表格 */
table {
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  border: solid 1px #ccc;
  padding: 10px;
}