@charset "utf-8";
/* css reset */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
ol,
ul,
li,
dl,
dt,
dd,
table,
caption,
tr,
th,
td,
span,
p,
a,
b,
u,
i,
em,
img,
iframe,
fieldset,
form,
label,
legend,
input,
button,
select,
textarea {
  margin: 0;
  padding: 0;
}
html {
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -ms-transition: opacity 1s;
  transition: opacity 1s;
}
body {
  font-family: 'Microsoft YaHei', 'Segoe UI', 'PingFang SC', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}
input,
button,
textarea,
select {
  font: inherit;
  outline: 0;
  border: 0;
  background: none;
  color: inherit;
}
input:focus,
textarea:focus {
  color: inherit;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
}
ol,
ul,
li {
  list-style: none;
}
textarea {
  overflow: auto;
  resize: none;
}
table {
  border-collapse: collapse;
  border: 0;
}
img {
  border: 0;
  outline: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
a:focus {
  outline: 0;
}
svg:not(:root) {
  overflow: hidden;
}
input[type=date] {
  background-color: transparent;
  border: 0;
  filter: alpha(opacity=0);
}
::-ms-clear,
::-ms-reveal {
  display: none;
}
/* WebKit browsers */
::-webkit-input-placeholder {
  color: #909090;
}
/* Mozilla Firefox 4 to 18 */
:-moz-placeholder {
  color: #909090;
  opacity: 1;
}
/* Mozilla Firefox 19+ */
::-moz-placeholder {
  color: #909090;
  opacity: 1;
}
/* Internet Explorer 10+ */
:-ms-input-placeholder {
  color: #909090;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/*common*/
*:focus {
  outline: none;
}
/* display */
.dn {
  display: none;
}
.di {
  display: inline;
}
.db {
  display: block;
}
.dib {
  display: inline-block;
}
/* if the element is block level(eg. div, li), using 'inline-any' instead */
.fl {
  float: left;
}
.fr {
  float: right;
}
/* 块状元素水平居中 */
.auto {
  margin-left: auto;
  margin-right: auto;
}
/* overflow */
.ovh {
  overflow: hidden;
}
/* position */
.rel {
  position: relative;
}
.abs {
  position: absolute;
}
/* font-style */
.n {
  font-weight: normal;
  font-style: normal;
}
.b {
  font-weight: bold;
}
.i {
  font-style: italic;
}
/* text-align */
.tc {
  text-align: center;
}
.tr {
  text-align: right;
}
.tl {
  text-align: left;
}
.tj {
  text-align: justify;
}
/* 清除浮 动*/
.fix {
  *zoom: 1;
}
.fix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0;
}
/*table*/
table {
  width: 100%;
  border-collapse: collapse;
}
/*	line-text */
.writing-vertical {
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  writing-mode: tb-rl;
}
.overfloat-dot {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.overfloat-dot-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.overfloat-dot-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.overfloat-dot-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.overfloat-dot-5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
/* color num */
:root {
  --main-color: #0087CA;
  --hover-color: #0F7FCB;
  --hover-color-red:#D32D26;
  --border-color: #dee2e6;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --container-width: 1590px;
  font-size: 16px;
}
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1400px) {
  :root {
      --container-width: 1280px;
  }
}
/* sc (>1600px) */
@media (min-width: 1600px) {
  :root {
      --container-width: 1590px;
  }
}
/* big sc (1200px-1599px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  :root {
      --container-width: 1140px;
  }
}

/* mid sc (992px-1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  :root {
      --container-width: 960px;
  }
}

/* pad (768px-991px) */
@media (min-width: 768px) and (max-width: 991px) {
  :root {
      --container-width: 720px;
      font-size: 15px;
  }
}

/* phone(<768px) */
@media (max-width: 767px) {
  :root {
      --container-width: 100%;
      font-size: 15px;
  }
  .container {
      padding: 0 15px;
  }
}
/* sm phone (<576px) */
@media (max-width: 575px) {
  :root {
      font-size: 14px;
  }
  .container {
      padding: 0 12px;
  }
}
/* ====== 图片放大 ======= */
.img-boxs{
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.img-boxs img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: center center;
}
.img-boxs:hover img {
  transform: scale(1.05);
}
/* second search */
.middle-box {
  font-size: 0;
  letter-spacing: -1.5em;
}
.middle-box:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.middle-cont {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  letter-spacing: 0;
}
.header-top .up-search-box {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  transition: all 0.3s;
  transform: scale(1.2);
  opacity: 0;
  z-index: -1;
  display: none;
}
.header-top .up-search-box .middle-cont {
  width: 100%;
}
.header-top .up-search-box .up-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 32px;
  height: 32px;
  background: url(comm-close.png) no-repeat center center;
  background-size: contain;
}
.header-top .up-search-box.active {
  transform: scale(1);
  opacity: 1;
  z-index: 9999;
  display: block;
}
.header-top .search-box {
  background: #fff;
  border-bottom: 4px solid var(--bgcolor-color);
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.header-top .search-box .s-inp {
  width: 100%;
  height: 62px;
  line-height: 62px;
  font-size: 16px;
  padding-left: 15px;
}
.header-top .search-box .s-btn {
  height: 62px;
  line-height: 62px;
  width: 62px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 9;
  text-align: center;
}
.header-top .search-box .s-btn::before {
  content: "\f178";
  font-family: "FontAwesome";
  font-size: 20px;
  color: var(--bgcolor-color);
}
/* pages */
#pages {
  width: 100%;
  font-size: 14px;
  clear: both;
  overflow: hidden;
  text-align: center;
  margin-top: 40px;
}
#pages a,
#pages a:visited,
#pages a:hover {
  height: 40px;
  color: #666;
  padding: 0 15px;
  margin:0 2px;
  display: inline-block;
  line-height: 40px;
  font-size: 14px;
  width: auto;
  background-color: #E9E9E9;
  border-radius: 4px;
  border: solid 1px #ebebeb;
}
#pages span {
  height: 40px;
  color: #666;
  padding: 0 15px;
  width: auto;
  display: inline-block;
  line-height: 40px;
  font-size: 14px;
  background-color: #ffffff;
  border-radius: 4px;
  border: solid 1px #ebebeb;
  margin: 0 2px;
}
#pages span.active,
#pages a:hover,
#pages a.curr,
#pages a.curr:visited,
#pages a:hover {
  background: #3495D6;
  color: #fff;
}
#more {
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 3px;
  font-size: 18px;
  width: 100%;
  background: #1B4697;
  color: #fff;
  display: none;
}
@media (max-width: 1199px) {
  #more{
    display: block;
  }
  #pages .pages{
    display: none;
  }
}