@charset "utf-8";
/* 所有类名用小写，中横线 */
body {
  color: #333333;
}
a {
  color: #333333;
}
a:hover {
  color: #1658a0;
}
input::-webkit-input-placeholder {
  color: #cccccc;
}
.changeLine {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(172, 198, 230, 1);
}
.activeline {
  border-bottom: 3px solid rgba(27, 95, 176, 1);
  padding-bottom: 15px;
}
ul.toptitle li a {
  font-size: 28px;
  color: rgba(56, 56, 56, 1);
}

ul.toptitle li a.activeline {
  color: rgba(27, 95, 176, 1);
  font-weight: 700;
}
/*** layout ***/
.container {
  width: 1400px;
}
.body-bg {
  background: #f9f9f9;
}
/* .container{width: 1400px;} */
.bg-white {
  background: #fff;
}
.bg-lightred {
  background: linear-gradient(
    175.51deg,
    rgba(249, 236, 232, 0.44) 0%,
    rgba(241, 212, 204, 0.44) 100%
  );
}
.bg-lightgray {
  background: #fafafa;
}
/* .com-pannel{padding: 15px 20px; background: #fff; box-sizing: border-box;} */
.com-panel-gray {
  background: #fafafa;
  padding: 25px;
}
.bg-f7f7f7 {
  background: #f7f7f7;
}
.com-border {
  background: #fff;
  border: 1px solid #f0d6c2;
  box-shadow: 0px 3px 30px rgba(89, 28, 0, 0.06);
}
.com-panel-gray .com-title {
  margin-left: -25px;
}
.fontcolor-red {
  color: #1658a0;
}
.fontcolor-888 {
  color: #888;
}

.row-limit > .afterline:after,
.row-limit > .beforeline:before {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: #ebebeb;
}
.row-limit > .afterline:after {
  right: 0;
}
.row-limit > .beforeline:before {
  left: -1px;
}

@media (max-width: 1500px) {
  /* body{font-size: 15px;} */
  /* body{font-size: 14.25px;} */
}

@media (max-width: 1280px) {
  .row-limit > .afterline:after,
  .row-limit > .beforeline:before {
    display: none;
  }
}
/* @media (max-width: 768px) {
  .res-fontsize{font-size: 12.8px;}
} */

/* @font-face {
  font-family: 'syst';
  src: url('/default/xhtml/font/NotoSerifCJKsc-Medium.woff') format('woff');
}
@font-face {
  font-family: 'systb';
	src: url('/default/xhtml/font/NotoSerifCJKsc-Bold.ttf') format('truetype');
} */
.font-syst,
.font-syst-b {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.font-syst {
  font-family: "syst";
}
.font-syst-b {
  font-family: "systb";
  font-weight: 700;
}

/* tab */
/* 
两种风格标题选项卡样式
.tab-brief:简洁型
.tab-card:卡片型
.res:需要小屏下响应时用，常用于标题个数多，一排放不下的情况
.js-tab:js-开头的类名只用于脚本查询DOM用，不建议在该类下写样式
.more:率属于某一块下的类名，不建议单独写全局样式，会影响到其他更多样式
 */
.tab-brief > .hd.line {
  border-bottom: #e5e5e5 1px solid;
}
.tab-brief > .hd ul {
  float: left;
  font-size: 1.5em;
}
.tab-brief > .hd li {
  float: left;
  line-height: 42px;
}
.tab-brief > .hd li a {
  transition: 0.3s all;
  display: inline-block;
}
.tab-brief > .hd li + li a {
  margin-left: 30px;
}
.tab-brief > .hd ul.activeline li a,
.tab-brief > .hd.line:not(.block) li a,
.tab-brief > .hd.pb li a {
  padding-bottom: 12px;
}
.tab-brief > .hd ul.activeline li a {
  position: relative;
}
.tab-brief > .hd ul.activeline li a:after {
  content: "";
  position: absolute;
  width: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: #d43030;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  overflow: hidden;
}
.tab-brief > .hd ul.activeline li.on a:after {
  width: 100%;
}
/*.tab-brief > .hd ul.activeline li a:before{content: ''; width: 0; height: 5px; position: absolute; left: 0; bottom: -1px; background: #333333; z-index: 1;}
.tab-brief > .hd ul.activeline li.on a:before{width: 1em;} */
/*.tab-brief > .hd.fw-bold li a{font-weight: bold;} */
.tab-brief > .hd ul.color-gray li:not(.on) a {
  color: #808080;
}
.tab-brief > .hd ul.color-gray li:not(.on) a:hover {
  color: #333;
}
.tab-brief > .hd li a:hover {
  color: #333;
}
/* .tab-brief > .hd ul.fs24{font-size: 1.5em;} */
.tab-brief > .hd ul.fs20 {
  font-size: 1.25em;
}
.tab-brief > .hd ul.ml40 li + li a {
  margin-left: 40px;
}
.tab-brief > .hd ul.ml80 li + li a {
  margin-left: 80px;
}
.tab-brief > .hd ul.on-color-blue li.on a {
  color: #1e5aa8;
  font-weight: bold;
}
.tab-brief > .hd ul.on-color-blue li:not(.on) a:hover {
  color: #1e5aa8;
}
/* .tab-brief > .hd.center ul{text-align: center; float: none;}
.tab-brief > .hd.center ul li{display: inline-block; float: none;} */
.tab-brief > .hd.center {
  display: flex;
  justify-content: center;
}

.tab-brief > .hd li.split:before {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -6px;
  content: "";
  width: 1px;
  height: 15px;
  background: #d1d1d1;
}
.tab-brief > .hd li.split {
  padding-left: 18px;
  margin-left: 18px;
}

.tab-brief > .hd .more {
  float: right;
  line-height: 42px;
}

.tab-brief > .hd.block li a {
  display: block;
  padding: 0 22px;
  line-height: 46px;
  border-radius: 5px 5px 0 0;
}
.tab-brief > .hd.block li.on a {
  background: #1658a0;
  color: #fff;
}
.tab-brief > .hd.block .more {
  line-height: 46px;
  padding-top: 0;
}

.tab-brief > .hd.flex ul {
  float: none;
  display: flex;
  justify-content: space-between;
}
.tab-brief > .hd.flex ul:before,
.tab-brief > .hd.flex ul:after {
  display: none;
}
.tab-brief > .hd ul[class*="cols-"] {
  float: none;
}
.tab-brief > .hd ul[class*="cols-"] li + li a {
  margin-left: 0;
}

.tab-brief > .hd dl {
  line-height: 42px;
}
.tab-brief > .hd dl dd {
  float: left;
  position: relative;
  font-size: 1.25em;
}
/*.tab-brief > .hd dl dd:before{content: ''; width: 5px; height: 5px; position: absolute; left: 0; top: 50%; margin-top: -2px; background: #C30905; border-radius: 50%;} */
/*.tab-brief > .hd dl dd a{color:#999999;} */
.tab-brief > .hd dl dd + dd {
  margin-left: 30px;
}
.tab-brief > .hd dl dd.on a {
  color: #1658a0;
}

.tab-card > .hd {
  line-height: 42px;
  background: #f0f0f0;
}
.tab-card > .hd ul {
  float: left;
}
.tab-card > .hd li {
  float: left;
  position: relative;
  font-size: 1.125em;
}
.tab-card > .hd li a {
  display: block;
  padding: 0 20px;
  color: #999999;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
}
.tab-card > .hd li.on {
  cursor: pointer;
}
.tab-card > .hd li.on a {
  background: #1658a0;
  color: #fff;
}
.tab-card > .hd .more {
  float: right;
}
.tab-card > .hd.arrow li.on:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  top: 100%;
  border: transparent solid 8px;
  border-top-color: #1672d5;
  margin-left: -8px;
}

.tab-block > .hd {
  line-height: 34px;
}
.tab-block > .hd ul {
  float: left;
}
.tab-block > .hd li {
  float: left;
  position: relative;
  font-size: 1.125em;
}
.tab-block > .hd li + li a {
  margin-left: 20px;
}
.tab-block > .hd li a {
  display: block;
  background: #f0f0f0;
  padding: 0 20px;
  border-radius: 4px;
  color: #999999;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
}
.tab-block > .hd li.on {
  cursor: pointer;
}
.tab-block > .hd li.on a {
  background: #1658a0;
  color: #fff;
}
.tab-block > .hd.fw-bold li a {
  font-weight: bold;
}
.tab-block > .hd .more {
  float: right;
  margin-right: 15px;
}
.tab-block > .mb20.arrow li.on:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  top: 100%;
  border: transparent solid 8px;
  border-top-color: #1672d5;
  margin-left: -8px;
}

.com-more a {
  color: #c4c4c4;
}
.com-more a:hover {
  color: #1e5aa8;
}

.tab-brief .bd > .item .infolist,
.tab-card .bd > .item .infolist {
  margin-top: 10px;
}
.tab-brief .bd > .item .infolist.mt0,
.tab-card .bd > .item .infolist.mt0 {
  margin-top: 0;
}
.js-tab .more a + a {
  display: none;
}
.js-tab > .bd > * + * {
  display: none;
}

.m-com-more {
  clear: both;
  text-align: center;
  line-height: 40px;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 140px;
  background-color: #f5f5f5;
  display: none;
  border: #ececec 1px solid;
}
.m-com-more a {
  color: #666;
}
.m-com-more a:hover {
  color: #333;
}
.m-com-more.white {
  background: #fff;
  border-color: #fff;
}
.bg-lightblue .m-com-more,
.com-panel-lightred .m-com-more,
.com-panel-lightred .m-com-more,
.com-panel-gray .m-com-more {
  background: #fff;
}

@media (max-width: 768px) {
  .tab-brief > .hd.res {
    margin-top: -5px;
  }
  .tab-brief > .hd.res ul {
    margin: 0 -2px !important;
    font-size: 1.25em;
  }
  .tab-brief > .hd.res ul li {
    margin: 0;
    padding: 0 !important;
    border-bottom: none;
  }
  .tab-brief > .hd.res ul li a {
    display: block;
    margin: 5px 2px 0 !important;
    padding: 7px 12px !important;
    line-height: 1.5;
    background-color: #f1f1f1;
    color: #666;
  }
  .tab-brief > .hd.res ul li.on a {
    color: #fff;
    background: #1658a0;
  }
  .tab-brief > .hd.res li a:before,
  .tab-brief > .hd.res li a:after {
    display: none;
  }
  .tab-brief.arrow > .hd.res li.on i {
    display: none;
  }
  .tab-brief .bd > .item > .newsList {
    margin-top: 0;
  }

  .tab-brief > .hd.res li.split:before {
    display: none;
  }

  .tab-card > .hd.res {
    margin-bottom: -10px;
    background: none;
    border-bottom: #dfdfdf 1px solid;
  }
  .tab-card > .hd.res ul li {
    margin: 0 10px 10px 0 !important;
    font-size: 1.125em;
  }
  .tab-card > .hd.res ul li a {
    padding: 7px 12px !important;
    height: auto;
    line-height: 1.5;
    color: #666;
  }
  .tab-card > .hd.res ul li.on a {
    background: #1672d5;
    color: #fff;
  }
  .tab-card > .bd .item > .newsList {
    margin-top: 0;
  }
  .tab-card > .hd .more,
  .tab-brief > .hd .more {
    display: none;
  }

  .tab-block > .hd.res li {
    margin: 0 5px 5px 0;
  }
  .tab-block > .hd.res li a {
    padding: 0 10px;
  }
  .tab-block > .hd.arrow.res li.on:after {
    border-width: 6px;
    margin-left: -6px;
  }

  .m-com-more {
    display: block;
  }
}
@media (max-width: 480px) {
  .tab-brief > .hd.flex ul {
    display: block;
  }
  .tab-brief > .hd.flex ul li {
    text-align: center;
  }
  .tab-brief > .hd.res ul {
    margin: 0 -2px !important;
    font-size: 1.125em;
  }
}

.js-tabSwitch > .js-switch-bd {
  position: relative; /*overflow: hidden;*/
}
.js-tabSwitch > .js-switch-bd .js-switch-item {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  -khtml-opacity: 0;
  transition: opacity 0.2s;
  box-sizing: border-box;
}
.js-tabSwitch > .js-switch-bd .js-switch-item.show {
  position: relative;
  z-index: 2;
  opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  -khtml-opacity: 1;
}
@media (max-width: 1280px) {
  .js-tabSwitch-md-showall > .js-switch-hd {
    display: none;
  }
  .js-tabSwitch-md-showall > .js-switch-bd {
    overflow: inherit;
  }
  .js-tabSwitch-md-showall > .js-switch-bd .js-switch-item {
    opacity: 1 !important;
    display: block !important;
    position: static;
    margin-bottom: 20px;
    margin-top: 0;
  }
}

/* infolist */
/***
稿件列表样式：
dot:标题前带小点
md:日期-月日
ymd：日期-年月日
line:每条信息之间含分割下滑线
space20:多列之间含20px的间距
space30:多列之间含30px的间距
多列在768以下响应变成一列
 ***/
.infolist {
  clear: both;
}
.infolist li {
  position: relative;
  padding-top: 9px;
  padding-bottom: 9px;
  line-height: 28px;
  overflow: hidden;
  vertical-align: top;
}
.infolist li > a,
.infolist li .box > a {
  float: left;
  position: relative;
  font-size: 1.125em;
  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: 28px;
  margin: auto 0;
  color: #999;
}
.infolist li a br {
  display: none;
}
.infolist li:hover a,
.infolist li a:hover {
  color: #1658a0;
}
.infolist li:hover span {
  color: #1658a0;
}
.infolist.md li {
  padding-right: 60px;
}
.infolist.ymd li {
  padding-right: 110px;
}

.infolist.dot li > a,
.infolist.dot li .box > a {
  padding-left: 25px;
}
.infolist.dot li > a:before,
.infolist.dot li .box > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  background: #d1d1d1;
  transition: 0.3s all;
}
.infolist.dot:not(.dot-red) li:hover a:before {
  background: #1658a0;
}
.infolist.dot-red li > a:before {
  background: #c72c24;
}
.infolist.dot.dot-rhomboid li > a:before {
  transform: rotate(-45deg);
  left: 2px;
}
.infolist.dot.dot-circle li > a:before,
.infolist.dot.dot-circle li .box > a:before {
  border-radius: 50%;
}

.infolist.dot-file li > a {
  padding-left: 40px;
}
.infolist.dot-file li > a:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 16px;
  height: 20px;
  margin-top: -8px;
  background: url(../images/icon_file.png) no-repeat;
  background-size: 100% 100%;
  transition: 0.3s all;
}
.infolist.dot-file li:hover > a:before {
  background: url(../images/icon_file_red.png) no-repeat;
  background-size: 100% 100%;
}

.infolist.dot-zc li > a {
  padding-left: 40px;
}
.infolist.dot-zc li > a:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 18px;
  height: 20px;
  margin-top: -8px;
  background: url(../images/infolist_icon_zc.png) no-repeat;
  background-size: 100% 100%;
  transition: 0.3s all;
}
.infolist.dot-zc li:hover > a:before {
  background: url(../images/infolist_icon_zc_red.png) no-repeat;
  background-size: 100% 100%;
}

/* .infolist.dot.dot-rhomboid li > a,
.infolist.dot.dot-rhomboid li .box > a{padding-left: 25px;} */

.infolist.line li {
  border-bottom: 1px solid #e1e5eb;
}
.infolist.dashed li {
  border-bottom: 1px dashed #d6d6d6;
}
.infolist.li-h72 li {
  padding-top: 22px;
  padding-bottom: 22px;
}
.infolist.li-h60 li {
  padding-top: 16px;
  padding-bottom: 16px;
}
.infolist.li-h42 li {
  padding-top: 7px;
  padding-bottom: 7px;
}
.infolist.lastnoline li:last-child {
  border-bottom: none !important;
}
.infolist.fs20 li > a {
  font-size: 1.25em;
}
.infolist.fs16 li,
.infolist.fs16[class*="space-"] li .box {
  padding-top: 7px;
  padding-bottom: 7px;
}
.infolist.fs16 li > a,
.infolist.fs16 li .box > a {
  font-size: 1em;
}

.infolist li .box {
  position: relative;
  overflow: hidden;
}
.infolist[class*="space-"] li .box {
  padding-top: 10px;
  padding-bottom: 10px;
}
.infolist[class*="space-"] {
  margin-top: 0;
}
.infolist[class*="space-"] li {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.infolist[class*="space-"] li .box {
  margin-top: 0;
}

.infolist.mulit li > a {
  position: static;
  float: none;
  padding-left: 0;
  max-width: none;
  white-space: normal;
}
.infolist.mulit li > .time {
  position: static;
  display: inline-block;
}
.infolist.mulit li > a:before {
  top: 23px;
  margin-top: 0;
}
.infolist.mulit.dot li {
  padding-left: 18px;
}

.infolist.mulit2 li > a {
  display: -webkit-box;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.infolist.mulit2.dot li > a:before {
  top: 14px;
}
.infolist.mulit2 li > .time {
  top: 12px;
  bottom: auto;
}

.infolist.split5n li:nth-child(5n) {
  margin-bottom: 15px;
  padding-bottom: 25px;
  border-bottom: 1px dashed #ccc;
}

.infolist.timeblock li .time {
  position: static;
  display: block;
  clear: both;
  color: #a6a6a6;
  padding-top: 6px;
}
.infolist.timeblock.dot li .time {
  margin-left: 25px;
}

@media (max-width: 1500px) {
  .infolist.li-h72 li {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

@media (max-width: 992px) {
  .infolist li {
    padding-top: 9px;
    padding-bottom: 9px;
  }
}
@media (max-width: 768px) {
  .infolist.md[class*="space"] li {
    padding-right: 60px;
  }
  .infolist.ymd[class*="space"] li {
    padding-right: 110px;
  }

  .res.infolist li {
    padding-right: 0 !important;
    position: relative;
  }
  .res.infolist li > a,
  .res.infolist li .box > a {
    position: static;
    float: none;
    max-width: none;
    padding-left: 0;
    white-space: normal;
  }
  .res.infolist.ymd li > a,
  .res.infolist.ymd li .box > a,
  .res.infolist.md li > a,
  .res.infolist.md li .box > a {
    padding-right: 12px;
  }
  .res.infolist li .time {
    position: static;
    display: inline-block;
  }
  .res.infolist.dot li > a:before,
  .res.infolist.dot li .box > a:before,
  .res.infolist.mulit2.dot li > a:before {
    top: 18px;
    margin-top: 0;
    width: 6px;
    height: 6px;
  }
  .res.infolist.li-h72.dot li a:before {
    top: 28px;
  }
  .res.infolist.dot li,
  .res.infolist.dot li .box {
    padding-left: 18px;
  }
  .res.infolist.dot-file li {
    padding-left: 36px;
  }
  .res.infolist.li-h72.dot-file li a:before {
    top: 31px;
  }

  .res.infolist.dot-zc li > a:before {
    top: 17px;
    margin-top: 0;
  }
  .res.infolist.dot-zc li {
    padding-left: 36px;
  }
}

/***
菜单卡片样式：
***/
.iconmenu li .box {
  display: block;
}

.iconmenu li .box {
  position: relative;
}
.iconmenu li .box .icon {
  display: block;
  font-size: 0;
  line-height: 0;
}
.iconmenu.splitline li .box {
  position: relative;
}
.iconmenu.splitline li .box:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  width: 1px;
  background: #ecf2f9;
}
.iconmenu.splitline li:first-child .box:before {
  display: none;
}

.iconmenu.inline li .icon,
.iconmenu.inline li .txt {
  display: inline-block;
  vertical-align: middle;
}

.iconmenu.break li .box {
  text-align: center;
}
.iconmenu.break li.icon {
  display: block;
}
.iconmenu.break li.icon img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.iconmenu.break li.txt:not([class*="elli-"]) {
  display: block;
}

.iconmenu.position li .box {
  position: relative;
}
.iconmenu.position li .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.iconmenu.valignmiddle li .box:after {
  content: "";
  width: 0;
  height: 100%;
}
.iconmenu.valignmiddle li .box:after,
.iconmenu.valignmiddle li .txt,
.iconmenu.valignmiddle li .icon {
  vertical-align: middle;
  display: inline-block;
}

.iconmenu.center li .box {
  text-align: center;
}

.iconmenu.justify {
  text-align-last: justify;
}
.iconmenu.justify li {
  display: inline-block;
  vertical-align: top;
  text-align-last: auto;
}

/* com-title */
.com-title h3 {
  position: relative;
  display: inline-block;
  font-size: 2em;
  font-weight: bold;
}
.com-title h3 a:hover {
  color: #1658a0;
}
.com-title.color-blue h3,
.com-title.color-blue h3 a {
  color: #1658a0;
}
.com-title.square h3:before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 6px;
  height: 28px;
  margin-top: -11px;
  background-color: #1658a0;
}
.com-title.square h3 {
  padding-left: 28px;
}
.com-title.square.orange h3:before {
  background: #ee5e37;
}
.com-title.underline h3 {
  padding-bottom: 18px;
}
.com-title.underline h3:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #1f5eab;
}
.com-title.underline.red h3:after {
  background: #c20000;
}
.com-title.underline.half h3 {
  padding-bottom: 14px;
}
.com-title.underline.half h3:after {
  width: 2em;
}
.com-title.fs24 h3 {
  font-size: 1.5em;
}
.com-title.fs24.square h3 {
  padding-left: 25px;
}
.com-title.fs24.square h3:before {
  width: 4px;
  height: 22px;
  margin-top: -10px;
}
.com-title.line {
  border-bottom: 1px solid #dedede;
  padding-bottom: 15px;
}

@media (max-width: 768px) {
  .com-title h3 {
    font-size: 1.5em;
  }
  .com-title.square h3:before {
    width: 4px;
    height: 22px;
    margin-top: -10px;
  }
  .com-title.square h3 {
    padding-left: 20px;
  }
}

.com-tit-b {
  text-align: center;
  overflow: hidden;
}
.com-tit-b .box {
  position: relative;
  display: inline-block;
}
.com-tit-b .line {
  position: absolute;
}
.com-tit-b .line.l {
  right: 100%;
}
.com-tit-b .line.r {
  left: 100%;
}
@media (max-width: 992px) {
  .com-tit-b {
    justify-content: center;
  }
}

.com-btn {
  padding-left: 15px;
  padding-right: 15px;
  display: inline-block;
  white-space: nowrap;
}
.com-btn .icon,
.com-btn .txt {
  display: inline-block;
  vertical-align: middle;
}
.com-btn .icon {
  font-size: 0;
}
.com-btn .icon img {
  display: block;
}

/* 单行省略号 */
.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;
}

.transition,
.transition * {
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

.imgscale img {
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.imgscale img:hover,
.imgscale a:hover img {
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
/*图片占位符*/
/***
16:9[56.25%]
4:3[75%]
3:2[66.666667%]
 ***/
.imgratio {
  position: relative;
  z-index: 2;
  display: block;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
}
.imgratio .imgratio-imgbox {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  overflow: hidden;
}
.imgratio .imgratio-imgbox .imgratio-img {
  display: block;
  width: 100%;
  height: 100%;
}
.imgratio.free .imgratio-imgbox .imgratio-img {
  height: auto;
  min-height: 100%;
  object-fit: cover;
}

/* 滚动条 */
.scrollbar-xy {
  overflow: auto;
}
.scrollbar-xy::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.scrollbar-y {
  overflow-y: auto;
  overflow-x: hidden;
}
.scrollbar-y::-webkit-scrollbar {
  width: 5px;
  height: auto;
}
.scrollbar-x {
  overflow-x: auto;
  overflow-y: hidden;
}
.scrollbar-x::-webkit-scrollbar {
  height: 5px;
  width: auto;
}
/* 滚动条轨道 */
.scrollbar-xy::-webkit-scrollbar-track,
.scrollbar-x::-webkit-scrollbar-track,
.scrollbar-y::-webkit-scrollbar-track {
  border-radius: 3px;
  background: #d1d1d1;
}
/* 滚动条滑块 */
.scrollbar-xy::-webkit-scrollbar-thumb,
.scrollbar-x::-webkit-scrollbar-thumb,
.scrollbar-y::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: #c72c24;
}

/* 当前位置crumb */
.crumb {
  background: #fafafa;
}
.crumb h2 {
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 1.125em;
  line-height: 28px;
  font-weight: normal;
  color: #888888;
}
.crumb h2 a {
  color: #888888;
}
.crumb h2 a:last-child,
.crumb h2 a:hover {
  color: #000;
}

/*pagediv*/
.pagediv {
  font-size: 0.875em;
  color: #333;
  line-height: 2;
  clear: both;
}
.pagediv a {
  color: #333;
}
.pagediv .moye,
.pagediv .arrow a,
.pagediv .index_num,
.pagediv .pagination_index_last,
.pagediv #pagination_input,
.pagediv #currentPage {
  display: inline-block;
  *display: inline;
  margin: 4px;
  zoom: 1;
  border: #dfdfdf 1px solid;
  border-radius: 3px;
  vertical-align: top;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  background: #f1f1f1;
  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);
}
.pagediv .arrow a:hover,
.pagediv .index_num {
  background: #2a82e4;
  border-color: #2a82e4;
  color: #fff;
  text-decoration: none;
}
.pagediv .moye,
.pagediv .arrow a,
.pagediv .index_num {
  padding: 0 10px;
}
.pagediv .index_num {
  font-weight: 700;
}
.pagediv .pagination_index_last {
  padding: 0 6px;
}
.pagediv #pagination_input {
  width: 40px;
  height: 28px;
  color: #888;
  text-align: center;
  background: #fff;
}
.pagediv #currentPage {
  width: 40px;
  height: 30px;
  color: #888;
  text-align: center;
  background: #fff;
}
.pagediv font.en {
  display: none;
}
body.older .pagediv #pagination_input {
  height: 49px;
}
@media (max-width: 768px) {
  body.older .pagediv #pagination_input {
    height: 35px;
  }
}

/* 外链跳转 */
.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;
  left: 50%;
  top: 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 {
  width: 100%;
  height: 38px;
  position: relative;
}
.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: #929292;
}
.alert-wzsm {
  width: 520px;
  height: 100px;
  margin: 15px auto 0;
  line-height: 35px;
  font-size: 1.5em;
  color: #000;
  text-align: center;
  padding-bottom: 15px;
  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.25em;
}
.alert-warning .continue {
  width: 124px;
  height: 42px;
  color: #ab0d07;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  border: #e1e1e1 1px solid;
  text-align: center;
  line-height: 42px;
  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: #ab0d07;
}
@media (max-width: 640px) {
  .alert-warning {
    left: 2%;
    margin-left: 0;
    width: 96%;
    height: auto;
  }
  .alert-wzsm {
    width: 90%;
    height: auto;
    margin: 15px auto 0;
    line-height: 28px;
    font-size: 18px;
    color: #000;
    text-align: center;
  }
}

/* swiper */
.swiper-com-tpxw .swiper-slide {
  position: relative;
}
.swiper-com-tpxw .swiper-slide .txt {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62px;
  padding-left: 20px;
  padding-right: 120px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  color: #fff;
  line-height: 62px;
}
.swiper-com-tpxw .swiper-slide .txt a {
  color: #fff;
}

.swiper-pagination.right {
  left: auto !important;
  right: 20px;
  bottom: 19px !important;
  width: auto !important;
}
.swiper-pagination span {
  transition: 0.3s all;
}

.swiper-pagination-circle span {
  width: 10px;
  height: 10px;
  box-sizing: border-box;
  border: 1px solid #fff;
  opacity: 1;
  background: none;
}
.swiper-pagination-circle .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-circle.red span {
  border-color: #999999;
}
.swiper-pagination-circle.red .swiper-pagination-bullet-active {
  background: #d43030;
  border-color: #d43030;
}

.swiper-pagination-block .swiper-pagination span {
  width: 14px;
  height: 6px;
  opacity: 0.7;
  border-radius: 0;
  background: #fff;
}
.swiper-pagination-block .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #b71a37;
}

.swiper-pagination-solid span {
  width: 9px;
  height: 9px;
  opacity: 0.42;
  border-radius: 6px;
  background: #fff;
}
.swiper-pagination-solid .swiper-pagination-bullet-active {
  opacity: 1;
  width: 28px;
}
.swiper-pagination-solid.s span {
  width: 6px;
  height: 6px;
}
.swiper-pagination-solid.s .swiper-pagination-bullet-active {
  width: 14px;
}
.swiper-pagination-solid.s.right {
  bottom: 10px !important;
  right: 10px !important;
}

.swiper-com-arrow {
  position: relative;
}
.swiper-com-arrow .swiper-button {
  position: absolute;
  width: 39px;
  height: 39px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}
.swiper-com-arrow .swiper-button-prev {
  left: -20px;
}
.swiper-com-arrow .swiper-button-next {
  right: -20px;
}
.swiper-com-arrow .swiper-button:after {
  content: "";
  width: 9px;
  height: 17px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.swiper-com-arrow .swiper-button-prev:after {
  background-image: url(../images/arrow_left_black.png);
}
.swiper-com-arrow .swiper-button-next:after {
  background-image: url(../images/arrow_right_black.png);
}
.swiper-com-arrow .swiper-button-prev:hover:after {
  background-image: url(../images/arrow_left_red.png);
}
.swiper-com-arrow .swiper-button-next:hover:after {
  background-image: url(../images/arrow_right_red.png);
}

.swiper-button-arrow2 {
  width: 44px;
  height: 34px;
  margin-top: -17px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.swiper-button-arrow2.swiper-button-prev {
  background-image: url(../images/arrow/arrow2_left_gray.png);
  left: -60px;
}
.swiper-button-arrow2.swiper-button-next {
  background-image: url(../images/arrow/arrow2_right_gray.png);
  right: -60px;
}

.swiper-button-arrow3 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  margin-top: -30px;
}
.swiper-button-arrow3:after {
  content: "";
  width: 0;
  height: 0;
  border: transparent solid 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.swiper-button-arrow3.swiper-button-prev {
  left: -32px;
}
.swiper-button-arrow3.swiper-button-next {
  right: -32px;
}
.swiper-button-arrow3.swiper-button-prev:after {
  right: 15px;
  border-right-color: #015293;
}
.swiper-button-arrow3.swiper-button-next:after {
  left: 15px;
  border-left-color: #015293;
}

@media (max-width: 1500px) {
  .swiper-button-arrow2 {
    width: 30px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3) !important;
    margin-top: -25px;
  }
  .swiper-button-arrow2:after {
    content: "";
    width: 0;
    height: 0;
    border: transparent solid 7px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  .swiper-button-arrow2.swiper-button-prev {
    left: 0;
    border-radius: 0 4px 4px 0;
  }
  .swiper-button-arrow2.swiper-button-next {
    right: 0;
    border-radius: 4px 0 0 4px;
  }
  .swiper-button-arrow2.swiper-button-prev:after {
    right: 15px;
    border-right-color: #fff;
  }
  .swiper-button-arrow2.swiper-button-next:after {
    left: 15px;
    border-left-color: #fff;
  }
}

@media (max-width: 1280px) {
  .swiper-com-arrow .swiper-button-prev {
    left: 0;
    border-radius: 0 5px 5px 0;
  }
  .swiper-com-arrow .swiper-button-next {
    right: 0;
    border-radius: 5px 0 0 5px;
  }
  .swiper-com-arrow .swiper-button {
    height: 50px;
    background-color: rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 768px) {
  .swiper-com-tpxw .swiper-slide .txt {
    height: 42px;
    line-height: 42px;
  }
  .swiper-pagination.right {
    bottom: 12px !important;
  }
}

/* 关怀版 */
body.older {
  font-size: 28px;
  letter-spacing: 1px;
}
@media (max-width: 1280px) {
  /* body.older{font-size: 24px;} */
}
@media (max-width: 992px) {
  /* body.older{font-size: 20px;} */
}
@media (max-width: 768px) {
  body.older {
    font-size: 18px;
    letter-spacing: 0;
  }
}

@media (min-width: 769px) {
  body.older .tab-brief > .hd ul.activeline li a:after {
    height: 5px;
  }
  body.older .tab-brief > .hd ul.activeline li a,
  body.older .tab-brief > .hd.line:not(.block) li a,
  body.older .tab-brief > .hd.pb li a {
    padding-bottom: 22px;
  }

  body.older .infolist li {
    width: 100% !important;
    line-height: 1.8;
  }
  body.older .infolist.dot li a:before {
    width: 8px;
    height: 8px;
    margin-top: -4px;
    left: 3px;
  }
  body.older .infolist.dot li a {
    padding-left: 30px;
  }
  body.older .infolist.md li {
    padding-right: 4.5em;
  }
  body.older .infolist.ymd li {
    padding-right: 7em;
  }
  body.older .infolist.space20.infolist.ymd li {
    padding-right: 6.5em;
  }
  body.older .infolist li .time {
    height: 50px;
    line-height: 50px;
  }

  body.older .infolist.mulit2.dot li > a:before {
    top: 28px;
  }

  body.older .infolist.circle li a {
    padding-left: 35px;
  }
  body.older .infolist.circle li a:before {
    width: 12px;
    height: 12px;
    top: 20px;
  }
  body.older .infolist.circle li a:after {
    width: 8px;
    height: 8px;
    top: 23px;
  }
  body.older .infolist li .tag {
    padding: 7px 12px;
  }
  body.older .infolist.dashedh li:before {
    left: 7.5px;
  }
  body.older .infolist.date li .time {
    height: auto;
    line-height: 1;
    font-size: 0.75em;
  }
  body.older .infolist.date li {
    padding-left: 110px;
  }
  body.older .infolist.date li:before {
    left: 44px;
    top: 95px;
    bottom: 0;
  }

  body.older .swiper-pagination-solid span {
    width: 15px;
    height: 15px;
    border-radius: 8px;
  }
  body.older .swiper-pagination-solid .swiper-pagination-bullet-active {
    width: 40px;
  }
  body.older .swiper-pagination.right {
    bottom: 33px !important;
  }
  body.older .m-com-more {
    display: block;
    width: 220px;
    line-height: 60px;
    border-radius: 30px;
  }
}

@media (max-width: 1280px) {
  body.older .mainnav li a {
    font-size: 1.375em;
  }
}

@media (max-width: 992px) {
  body.older .tab-brief > .hd.res {
    margin-top: -5px;
  }
  body.older .tab-brief > .hd.res ul {
    margin: 0 -2px !important;
    font-size: 1.25em;
  }
  body.older .tab-brief > .hd.res ul li {
    margin: 0;
    padding: 0 !important;
    border-bottom: none;
  }
  body.older .tab-brief > .hd.res ul li a {
    display: block;
    margin: 5px 2px 0 !important;
    padding: 7px 12px !important;
    line-height: 1.5;
    background-color: #f1f1f1;
    color: #666;
  }
  body.older .tab-brief > .hd.res ul li.on a {
    color: #fff;
    background: #1658a0;
  }
  body.older .tab-brief > .hd.res li a:before,
  body.older .tab-brief > .hd.res li a:after {
    display: none;
  }
  body.older .tab-brief.arrow > .hd.res li.on i {
    display: none;
  }
  body.older .tab-brief .bd > .item > .newsList {
    margin-top: 0;
  }

  body.older .tab-brief > .hd.res li.split:before {
    display: none;
  }
  body.older .tab-brief > .hd .more {
    display: none;
  }
}

@media (max-width: 768px) {
  .infolist li {
    line-height: 1.555;
  }
}
@media (max-width: 480px) {
}
