@charset "utf-8";
/* 所有类名用小写，中横线 */
input::-webkit-input-placeholder {
  color: #cccccc;
}
a:hover {
  color: #8b1906;
}
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  clear: both;
  display: block;
  width: 100%;
  height: 0px;
}
/*** layout ***/
/***
简单参考栅格布局，将容器进行了 12 等分，如设计图不规律分割列宽，则采用自定义类名如zwgk-col-l(类名一定要包含col-)替代col-*，。所有列在1200px下响应变成一列
.container:包裹页面上的内容
.container-fluid:包裹页面上的内容,它用于 100% 宽度
row-space20：每列间隔宽度20px
row-space30：每列间隔宽度30px
row-space40：每列间隔宽度40px
***/
.container:after,
.container:before {
  display: table;
  content: "";
}
.container:after {
  clear: both;
}
.container {
  width: 1300px;
  margin-right: auto;
  margin-left: auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.entirebox {
  padding: 20px 30px;
  background-color: #fff;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
@media (max-width: 1400px) {
  .container {
    width: auto;
    margin-right: 50px;
    margin-left: 50px;
  }
}

.row:after,
.row:before {
  content: "";
  display: block;
  clear: both;
}
.row-space20 {
  margin-left: -10px;
  margin-right: -10px;
}
.row-space20 > * {
  padding-left: 10px;
  padding-right: 10px;
}
.row-space30 {
  margin-left: -15px;
  margin-right: -15px;
}
.row-space30 > * {
  padding-left: 15px;
  padding-right: 15px;
}
.row-space40 {
  margin-left: -20px;
  margin-right: -20px;
}
.row-space40 > * {
  padding-left: 20px;
  padding-right: 20px;
}
.row > [class*="col-"] {
  position: relative;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
  float: left;
}
.row > .col-12 {
  width: 100%;
}
.row > .col-11 {
  width: 91.66666667%;
}
.row > .col-10 {
  width: 83.33333333%;
}
.row > .col-9 {
  width: 75%;
}
.row > .col-8 {
  width: 66.66666667%;
}
.row > .col-7 {
  width: 58.33333333%;
}
.row > .col-6 {
  width: 50%;
}
.row > .col-5 {
  width: 41.66666667%;
}
.row > .col-4 {
  width: 33.33333333%;
}
.row > .col-3 {
  width: 25%;
}
.row > .col-2 {
  width: 16.66666667%;
}
.row > .col-1 {
  width: 8.33333333%;
}
.mt {
  margin-top: 20px;
}
.mb {
  margin-bottom: 20px;
}

/* tab */
/* 
两种风格标题选项卡样式
.tab-brief:简洁型
.tab-card:卡片型
.res:需要小屏下响应时用，常用于标题个数多，一排放不下的情况
.js-tab:js-开头的类名只用于脚本查询DOM用，不建议在该类下写样式
.more:率属于某一块下的类名，不建议单独写全局样式，会影响到其他更多样式
 */
.tab-brief > .head {
  border-bottom: #dfdfdf 1px solid;
}
.tab-brief > .head ul {
  float: left;
}
.tab-brief > .head li {
  float: left;
  position: relative;
  padding: 0 0 14px;
  font-size: 1.125em;
  color: #666666;
  font-weight: bold;
}
.tab-brief > .head li + li {
  margin-left: 30px;
}
.tab-brief > .head li a {
  color: #666;
}
.tab-brief > .head li:after {
  content: "";
  position: absolute;
  width: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: #0050b5;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  overflow: hidden;
}
.tab-brief > .head li.on:after {
  width: 100%;
}
.tab-brief > .head li.on a {
  color: #0046a9;
}
.tab-brief > .head .more {
  padding-top: 3px;
  float: right;
}

.tab-card > .head {
  line-height: 46px;
  background: #f4f4f4;
}
.tab-card > .head ul {
  float: left;
}
.tab-card > .head li {
  float: left;
  position: relative;
  font-size: 1.125em;
}
.tab-card > .head li a {
  display: block;
  padding: 0 20px;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  background: #f4f4f4;
}
.tab-card > .head li.on {
  cursor: pointer;
}
.tab-card > .head li.on a {
  background: #e52e0f;
  color: #fff;
}
.tab-card > .head li.on:after {
  width: 100%;
}
.tab-card.line > .head {
  line-height: 24px;
  background: #fff;
  border-bottom: 1px solid #e52e0f;
}
.tab-card.line > .head li {
  margin-bottom: 1px;
  margin-left: 20px;
}
.tab-card.line > .head li a {
  padding: 6px 10px 5px;
  font-weight: normal;
}
.tab-card.line > .head .com-more {
  line-height: 36px;
}
.tab-card.line.default > .head {
  border-bottom-color: #f79179;
}
.tab-card.line.default > .head li.on a {
  background-color: #f79179;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.tab-card.line.default > .head .com-more a {
  color: #faad9b;
}

.com-more {
  float: right;
  margin-right: 10px;
}
.com-more a {
  color: #dd2b21;
}

/* infolist */
/***
稿件列表样式：
dot:标题前带小点
md:日期-月日
ymd：日期-年月日
line:每条信息之间含分割下滑线
col2:两列
col3:三列
col4:四列
space20:多列之间含20px的间距
space30:多列之间含30px的间距
多列在768以下响应变成一列
res:480以下标题由一行响应成多行显示
以上类名采用简写方式，便于阅读书写，不可单独写样式，以免冲突覆盖样式。注意不要与base.css中的全家类名冲突
 ***/
.infolist {
  clear: both;
}
.infolist li {
  position: relative;
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 25px;
  overflow: hidden;
  vertical-align: top;
}
.infolist li a {
  float: left;
  position: relative;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
}
.infolist li,
.infolist li a {
  -moz-box-sizing: border-box;
  -welit-box-sizing: border-box;
  box-sizing: border-box;
}
.infolist li .time {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 25px;
  margin: auto 0;
  color: #999999;
}
.infolist li a br {
  display: none;
}
.infolist.md li {
  padding-right: 60px;
}
.infolist.ymd li {
  padding-right: 100px;
}
.infolist li.nodata {
  padding-right: 0;
}

.infolist.dot li a {
  padding-left: 18px;
}
.infolist.dot li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
  width: 5px;
  height: 5px;
  background: #666;
  border-radius: 50%;
}
.infolist.dot li:hover a:before {
  background: #8b1906;
}

.infolist.line li {
  border-bottom: 1px solid #e1e5eb;
}
.infolist.line li {
  padding-top: 14px;
  padding-bottom: 14px;
}

.infolist.col2 li,
.infolist.col3 li,
.infolist.col4 li {
  float: left;
}
.infolist.col2 li {
  width: 50%;
}
.infolist.col3 li {
  width: 33.33333%;
}
.infolist.col4 li {
  width: 25%;
}
.infolist.space20 {
  margin-left: -10px;
  margin-right: -10px;
}
.infolist.space20 li {
  padding-left: 10px;
  padding-right: 10px;
}
.infolist.space20 li .time {
  right: 10px;
}
.infolist.space20.md li {
  padding-right: 70px;
}
.infolist.space20.ymd li {
  padding-right: 110px;
}
.infolist.space30 {
  margin-left: -15px;
  margin-right: -15px;
}
.infolist.space30 li {
  padding-left: 15px;
  padding-right: 15px;
}
.infolist.space30 li .time {
  right: 15px;
}
.infolist.space30.md li {
  padding-right: 75px;
}
.infolist.space30.ymd li {
  padding-right: 115px;
}

/*crumb*/
.crumb {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}
.crumb h2 {
  position: relative;
  line-height: 20px;
  font-size: 0.875em;
  font-weight: normal;
}
.crumb h2 em {
  font-style: normal;
}
.crumb > h2 > a,
.crumb > h2 > span {
  margin: 0 10px;
}
.crumb a:first-child {
  margin-left: 0;
}
.crumb span {
  color: #777;
}
.crumb.line {
  border-bottom: 1px solid #e5e5e5;
}
.crumb.gray {
  padding-right: 10px;
  padding-left: 10px;
  background-color: #f5f5f5;
}

/*分页*/
.pagination {
  padding: 20px 0;
  font-size: 14px;
  color: #333;
  line-height: 28px;
  clear: both;
}
.pagination li {
  display: inline-block;
}
.pagination .arrow a {
  color: #333;
}
.pagination .total_count,
.pagination .arrow a,
.pagination .arrow span,
.pagination .page_jump a {
  display: inline-block;
  padding: 0 10px;
  margin: 4px;
  zoom: 1;
  border: #dfdfdf 1px solid;
  border-radius: 3px;
}
.pagination #page_input {
  width: 40px;
  height: 28px;
  color: #888;
  text-align: center;
  border: #dfdfdf 1px solid;
  border-radius: 3px;
  background: #fff;
}
.pagination .total_count,
.pagination .arrow a,
.pagination .page_jump a {
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  background: #f5f6f7;
  background: -webkit-linear-gradient(#ffffff 10%, #f1f1f1);
  background: -o-linear-gradient(#ffffff 10%, #f1f1f1);
  background: -moz-linear-gradient(#ffffff 10%, #f1f1f1);
  background: linear-gradient(#ffffff 10%, #f1f1f1);
}
.pagination .arrow span {
  background: #f5f5f5;
  color: #999;
}
.pagination .arrow a:hover,
.pagination .page_jump a:hover,
.pagination .arrow .current {
  background: ##ca1d00;
  border-color: #ca1d00;
  text-decoration: none;
}
.pagination .arrow .current {
  font-weight: bold;
}
.pagination .page_jump {
  margin-left: 4px;
}
.pagination .page_jump a {
  margin-left: 6px;
}

/*其他*/
.transition,
.transition a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.imgscale a {
  overflow: hidden;
}
.imgscale a img {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition-duration: 4s;
  transition-duration: 4s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.imgscale a:hover img {
  -moz-transform: scale3d(1.1, 1.1, 1);
  -ms-transform: scale3d(1.1, 1.1, 1);
  -o-transform: scale3d(1.1, 1.1, 1);
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.place {
  position: relative;
  z-index: 3;
  display: block;
  padding-top: 56.25%;
  overflow: hidden;
}
.place .pic {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.place .pic img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
}

/* 单行省略号 */
.elli-s {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}
/* 多行省略号 */
.elli-m {
  display: -webkit-box;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

/* 外链跳转提示框 */
.alert-mengban {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  filter: alpha(opacity=80) !important;
  width: 100%;
  height: 100%;
  display: none;
}
.alert-warning {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -300px;
  margin-top: -160px;
  width: 600px;
  height: 270px;
  background: #fff;
  z-index: 10001;
  display: none;
  border: 2px solid;
  border-radius: 10px;
}
.alert-delete {
  position: relative;
  width: 100%;
  height: 38px;
}
.alert-delete span {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background: #bebebe;
  cursor: pointer;
}
.alert-delete span:hover {
  background-color: #929292;
}
.alert-wzsm {
  width: 520px;
  height: 100px;
  margin: 15px auto 0;
  line-height: 1.4em;
  font-size: 1.5em;
  color: #000;
  text-align: center;
  padding-bottom: 1em;
  border-bottom: 1px solid #d4d4d4;
}
.alert-footer {
  width: 100%;
  padding: 25px 0;
  text-align: center;
  color: #000;
}
.alert-footer span {
  cursor: pointer;
  display: inline-block;
  margin: 0 12px;
  font-size: 1.125em;
}
.alert-warning .continue {
  width: 124px;
  height: 42px;
  color: #fff;
  background-color: #347bd7;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  text-align: center;
  line-height: 42px; /* border:#e1e1e1 1px solid; box-shadow: 0 0 10px rgba(0,0,0,0.2) inset; -webikt-box-shadow: 0 0 10px rgba(0,0,0,0.2) inset;*/
}
.alert-warning .fangqi {
  line-height: 42px;
  color: #347bd7;
}

/*header*/
.header {
  min-width: 1340px;
}
.header .inhead {
  position: relative;
}
.header .inhead .banner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.header .inhead .banner img {
  display: block;
  width: 100%;
}
.header .inhead .container {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding-top: 20px;
  padding-bottom: 20px;
}
.header .inhead .container .datetime {
  float: left;
  color: #fff;
  font-size: 1.125em;
  line-height: 40px;
  text-shadow: 0 1px #961b1d, 1px 0 #961b1d, -1px 0 #961b1d, 0 -1px #961b1d;
}
.header .inhead .container .search {
  float: right;
  width: 300px;
}
.search .slb {
  margin-left: 10px;
}
.header .inhead .container .search dl {
  position: relative;
  width: 100%;
  background: #fff;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  border: 2px #1b79b9 solid;
  overflow: hidden;
}
.header .inhead .container .search dl dd {
  position: relative;
  margin-right: 40px;
}
.header .inhead .container .search dl dd input[type="text"] {
  height: 36px;
  line-height: 36px;
  width: 90%;
  padding: 0 5%;
  font-size: 1em;
  color: #003153;
  background: none;
  border: none;
  vertical-align: top;
}
.header .inhead .container .search dl dd input::-webkit-input-placeholder {
  color: #003153;
}
.header .inhead .container .search dl dt.searchbtn {
  position: absolute;
  top: -1px;
  right: 0;
  bottom: -1px;
  width: 40px;
  cursor: pointer;
}
.header .inhead .container .search dl dt.searchbtn i {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  text-align: center;
  font-size: 1.75em;
  color: #003153;
  line-height: 1em;
  margin-top: -0.5em;
}
.header .inhead .container .search dl dt .searchBtn:hover {
  filter: alpha(opacity=95);
  -moz-opacity: 0.95;
  opacity: 0.95;
}
.header-menu {
  background-color: #e52e0f;
}
.header-menu .mainnav li {
  float: left;
  position: relative;
  width: 9.2%;
  text-align: center;
}
.header-menu .mainnav li a {
  display: block;
  position: relative;
  font-size: 1.125em;
  color: #fff;
  text-align: center;
}
.header-menu .mainnav li a font {
  position: relative;
  z-index: 2;
  line-height: 54px;
}
.header-menu .mainnav li a:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: #ffc8bf;
}
.header-menu .mainnav li.on a {
  color: #952310;
}
.header-menu .mainnav li.on a:after {
  content: "";
}
.header-menu .mainnav li.navli0 {
  width: 6%;
}
.header-menu .mainnav li.navli10 {
  width: 11.2%;
}

.slh img {
  height: 51px;
  background-color: #fff;
  margin-top: 20px;
  margin-right: 10px;
}

@media (max-width: 1400px) {
  .header {
    min-width: inherit;
  }
}
/*footer*/
.footer {
  min-width: 1340px;
  background-color: #fab7a8;
}
.footer-links {
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #eeeef0;
}
.footer-links span {
  display: block;
  text-align: center;
  font-size: 1.125em;
  line-height: 33px;
}
.footer-links select {
  width: 100%;
  color: #555;
  padding: 6px 12px;
  font-size: 14px;
  text-align: center;
  border: none;
  border-radius: 5px;
}
.footer-links select:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
}
.footer-bqxx {
  padding-top: 35px;
  padding-bottom: 35px;
  margin-right: 30%;
  font-size: 15px;
  color: #fff;
  line-height: 2em;
}
.footer-qrcode {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -43px;
}
.footer-qrcode dl dd {
  float: right;
}
.footer-qrcode dl dt {
  float: left;
  line-height: 22px;
  padding-top: 21px;
  padding-right: 30px;
  font-size: 15px;
  color: #fff;
}
@media (max-width: 1400px) {
  .footer {
    min-width: inherit;
  }
}
