/*全局初始化样式*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  position: relative;
  margin: 0 auto;
  color: #333;
  font-size: 0.16rem;
  font-family: '微软雅黑', "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.4;
  width: 100%;
  zoom: 1;
  /*禁用Webkit内核浏览器的文字大小调整功能*/
  -webkit-text-size-adjust: none;
  /*取出点击出现半透明的灰色背景*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight: rgba(0, 0, 0, 0);
  /*设置字体的抗锯齿或者说光滑度*/
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
* {
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*word-break: break-all;*/
  word-wrap: break-word;
}
/*默认去除ul、li的默认样式*/
.p,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
  padding: 0;
}
.ul,
.ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
ul,
ul li,
dl,
dl dt,
dl dd {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*初始化下拉菜单、单行输入框、多行输入框的样式*/
select,
input,
textarea {
  border-radius: 0;
  -webkit-border-radius: 0;
  color: #333;
}
/*表单元素获得焦点时不显示虚线框*/
input:focus {
  outline: none;
}
input,
button,
select,
textarea {
  outline: none;
  /*-webkit-appearance:none;*/
  /*强制去除表单自带的样式*/
}
/*不允许多行输入文本框有滚动条*/
textarea {
  resize: none;
  /*-webkit-appearance:none;*/
  /*强制去除textarea自带的样式*/
}
/*初始化表单元素样式*/
textarea,
input,
select {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}
/*初始化HTML5标签样式*/
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
article,
aside,
footer,
header,
hgroup,
nav,
section,
figure,
figcaption {
  display: block;
}
/*去除figure边距*/
figure,
figcaption {
  margin: 0px;
  padding: 0px;
}
/*初始化图片样式*/
img {
  border: none;
  border: 0;
  max-width: 100%;
  vertical-align: middle;
}
/*初始化a的样式和字体样式*/
a {
  color: #333;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
em {
  font-style: normal;
}
/*清除浮动*/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
  font-size: 0px;
}
.clearfix {
  zoom: 1;
}
/* 滚动条 */
/* * {scrollbar-width: thin;scrollbar-color: #8b8b8b;} */
*::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
*::-webkit-scrollbar-thumb {
  background: #8b8b8b;
  border-radius: 3px;
}
/* @font-face {
  font-family: 'SourceHanSerifSC';
  src: url('fonts/SourceHanSerifCN-Bold.otf');
} */
body {
  padding-top: 1.7rem;
}
.section1 {
  position: relative;
  z-index: 3;
}
.banner {
  width: 100%;
  height: 7.66rem;
  overflow: hidden;
}
.banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s linear 2s;
  transform: scale(1.1, 1.1);
}
.banner .swiper-slide-active img,
.banner .swiper-slide-duplicate-active img {
  transition: 6s linear;
  transform: scale(1, 1);
}
.banner .swiper-button-prev,
.banner .swiper-button-next {
  width: 0.47rem;
  height: 0.75rem;
  background-size: 100% 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  display: none;
}
.banner .swiper-button-prev::after,
.banner .swiper-button-next::after {
  display: none;
}
.banner .swiper-button-prev {
  background: url(../img/banner-l.png) no-repeat;
  left: 3%;
}
.banner .swiper-button-next {
  background: url(../img/banner-r.png) no-repeat;
  right: 3%;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 0.4rem;
}
.search {
  position: absolute;
  margin-top: -0.52rem;
  width: 100%;
  left: 0;
  z-index: 2;
}
.search .container {
  width: 76.5%;
  background: #fff;
  border-radius: 0.05rem;
  box-shadow: 0rem 0.04rem 0.16rem 0rem rgba(0, 74, 140, 0.2);
  border-bottom: 0.05rem solid #94070a;
  display: flex;
  align-items: center;
  padding: 0.29rem 1.6rem;
  margin: 0 auto;
}
.search_box {
  display: inline-flex;
  align-items: center;
  flex: 1;
  height: 0.56rem;
  border: 1px solid #e3e3e3;
  border-radius: 0.5rem;
}
.search_box .screen {
  width: 1rem;
  line-height: 0.56rem;
  position: relative;
}
.search_box .screen_item {
  font-size: 0.19rem;
  width: 100%;
  padding-right: 0.16rem;
  text-align: center;
  height: 100%;
}
.search_box .screen .con {
  cursor: pointer;
}
.search_box .screen .arrow_box {
  position: absolute;
  margin-left: 0.04rem;
  width: 0.12rem;
  height: 0.122rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.search_box .screen .arrow_box .arrow_up,
.search_box .screen .arrow_box .arrow_down {
  width: 0.1rem;
  height: 0.05rem;
  background: url(../img/ico_sj.png) no-repeat center;
  background-size: 0.1rem 0.05rem;
  background-position: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
.search_box .screen .arrow_box .arrow_up {
  top: 0;
}
.search_box .screen .arrow_box .arrow_down {
  bottom: 0;
  transform: translateX(-50%) rotate(180deg);
}
.search_box .screen .drop {
  position: absolute;
  left: 0;
  top: 100%;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  width: 2rem;
  display: none;
}
.search_box .screen .drop_scroll {
  max-height: 2.7rem;
  overflow-y: auto;
  padding: 6px 0;
}
.search_box .screen .drop_scroll div {
  font-size: 14px;
  padding: 0 0.2rem;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #606266;
  height: 0.34rem;
  line-height: 0.34rem;
  cursor: pointer;
}
.search_box .screen .drop_scroll div:hover,
.search_box .screen .drop_scroll div.active {
  color: #fff;
  background: #94070a;
}
.search_box input {
  flex: 1;
  font-size: 0.19rem;
  padding-left: 0.2rem;
  padding-right: 0.3rem;
}
.search_box input:placeholder {
  color: #999999;
}
.search .btn {
  color: #fff;
  height: 0.56rem;
  width: 1.64rem;
  margin-left: 0.2rem;
  font-size: 0.19rem;
  line-height: 0.56rem;
  border-radius: 0.5rem;
  cursor: pointer;
  text-align: center;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding-left: 0.2rem;
  background: #94070a url(../img/search.png) no-repeat;
  background-position: 0.4rem center;
  background-size: 0.19rem 0.2rem;
}
.search .btn:hover {
  border-radius: 0.1rem;
  letter-spacing: 0.02rem;
}
.section2 {
  background: url(../img/bg2.jpg) no-repeat bottom center / 100% 100%;
  max-width: 19.2rem;
  margin: 0 auto;
  height: 8.4rem;
  padding-top: 1.84rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.section2 .year {
  width: 10.36rem;
  position: absolute;
  right: 0;
  bottom: -0.85rem;
  z-index: -1;
}
.section2 .ro_r {
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
}
.section2 .ro_r li {
  width: 1.63rem;
  height: 3.65rem;
  position: relative;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  animation: shake 3s infinite linear;
}
.section2 .ro_r li::after {
  content: '';
  height: 100%;
  border-right: 1px solid #dadada;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  z-index: -1;
}
.section2 .ro_r li a {
  height: 100%;
  padding-top: 0.72rem;
  display: block;
}
.section2 .ro_r li img {
  height: 0.55rem;
  display: block;
  margin: 0 auto;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.section2 .ro_r li .ifo {
  font-size: 0.24rem;
  font-weight: bold;
  color: #FFFFFF;
  width: 0.28rem;
  line-height: 1.1;
  display: flex;
  justify-content: center;
  margin: 0.16rem auto 0;
}
.section2 .ro_r li:nth-child(1) {
  background-image: url(../img/ico_11.png);
}
.section2 .ro_r li:nth-child(2) {
  background-image: url(../img/ico_12.png);
}
.section2 .ro_r li:nth-child(3) {
  background-image: url(../img/ico_13.png);
}
.section2 .ro_r li:nth-child(4) {
  background-image: url(../img/ico_14.png);
}
.section2 .ro_r li:nth-child(5) {
  background-image: url(../img/ico_15.png);
}
.section2 .ro_r li:nth-child(even) {
  margin-top: 1.65rem;
  animation: shake2 3s infinite linear;
}
.section2 .ro_r li:hover img {
  animation: jello 1s;
}
@keyframes shake {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes shake2 {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    -moz-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    -moz-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    -moz-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    -moz-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    -moz-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    -moz-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    -moz-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.section3 {
  position: relative;
  padding-top: 0.74rem;
  z-index: 2;
  height: 8.32rem;
  overflow: hidden;
}
.section3::after {
  content: '';
  position: absolute;
  background: url(../img/ico_16.png) no-repeat center;
  width: 8.05rem;
  height: 8.32rem;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2rem;
}
.section3 .w16 {
  display: flex;
  justify-content: space-between;
}
.section3 .new {
  width: 59.9%;
}
.section3 .toc {
  width: 33.9%;
}
.tabnav {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 0.3rem;
}
.tabnav_item {
  font-family: 'SourceHanSerifSC';
  font-size: 0.36rem;
  font-weight: bold;
  position: relative;
  padding-right: 0.34rem;
  margin-right: 0.34rem;
  display: inline-block;
  cursor: pointer;
}
.tabnav_item:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.34rem;
  background: #d3d3d3;
}
.tabnav_item:last-child {
  margin-right: 0;
  padding-right: 0;
}
.tabnav_item:last-child::after {
  display: none;
}
.tabnav_item.active {
  color: #94070a;
}
.tabnav .mebox {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.tabnav .mebox .more {
  display: none;
  align-items: center;
  color: #6d6d6d;
}
.tabnav .mebox .more img {
  width: 0.63rem;
  margin-left: 0.12rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tabnav .mebox .more.active {
  display: inline-flex;
}
.tabnav .mebox .more:hover {
  color: #94070a;
}
.tabnav .mebox .more:hover img {
  margin-left: 0.24rem;
}
.tabblock > * {
  display: none;
}
.datelist .firt {
  overflow: hidden;
  display: block;
  height: 3.1rem;
}
.datelist .firt .img {
  float: left;
  width: 5.26rem;
  height: 100%;
  overflow: hidden;
}
.datelist .firt .img img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.datelist .firt .info {
  float: right;
  width: calc(100% - 5.26rem);
  height: 100%;
  border-bottom: 1px solid #e9e9e9;
  padding-left: 0.55rem;
}
.datelist .firt .info h2 {
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #333;
  font-size: 0.24rem;
  line-height: 0.6rem;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.datelist .firt .info p {
  color: #666;
  font-size: 0.18rem;
  line-height: 1.6;
  height: 0.6rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-all;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.datelist .firt .info span {
  display: block;
  color: #bfa776;
  font-size: 0.18rem;
  font-family: 'SourceHanSerifSC';
}
.datelist .firt:hover .img img {
  transform: scale(1.1);
}
.datelist .firt:hover .info h2 {
  color: #94070a;
}
.datelist ul {
  margin-top: 0.15rem;
}
.datelist li {
  line-height: 0.46rem;
  font-size: 0.18rem;
}
.datelist li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.datelist li p {
  color: #333;
  max-width: 80%;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-left: 0.15rem;
  position: relative;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.datelist li p::after {
  content: '';
  position: absolute;
  left: 1px;
  top: 50%;
  transform: translateY(-50%);
  width: 0.05rem;
  height: 0.05rem;
  background: #bbbbbb;
  transform: rotate(45deg);
}
.datelist li i {
  font-style: normal;
  color: #999;
  font-family: 'SourceHanSerifSC';
}
.datelist li:hover p {
  color: #94070a;
}
.toc .datelist {
  padding-left: 0.08rem;
  position: relative;
}
.toc .datelist::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/ico_17.png) repeat-y;
  width: 0.08rem;
  height: 100%;
}
.toc .datelist a {
  display: block;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 0.18rem;
  margin-bottom: 0.26rem;
  padding-left: 0.24rem;
}
.toc .datelist p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-all;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-left: 0.15rem;
  position: relative;
  line-height: 1.6;
  height: 0.54rem;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.toc .datelist p::after {
  content: '';
  position: absolute;
  left: 1px;
  top: 0.12rem;
  width: 0.05rem;
  height: 0.05rem;
  background: #bbbbbb;
  transform: rotate(45deg);
}
.toc .datelist span {
  padding-left: 0.15rem;
  display: block;
  color: #999;
  font-size: 0.18rem;
  font-family: 'SourceHanSerifSC';
}
.toc .datelist a:hover p {
  color: #94070a;
}
.repeat {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.repeat:after {
  content: '';
  position: absolute;
  right: 0;
  top: 2.54rem;
  width: 17.94rem;
  height: 100%;
  z-index: -1;
  background: url(../img/texture.png) no-repeat right bottom;
}
.repeat .di_bg {
  background: #eee;
  width: 100%;
  height: 2.54rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.dep {
  display: flex;
  justify-content: space-between;
  padding-top: 0.48rem;
  position: relative;
  z-index: 2;
}
.dep::after {
  content: '';
  position: absolute;
  background: url(../img/txt_2.png) no-repeat center / 100% 100%;
  width: 4.33rem;
  height: 5.12rem;
  left: 1.92rem;
  top: 3.52rem;
  z-index: -1;
}
.dep_lt {
  width: 22.4%;
}
.dep_lt .bx {
  width: 100%;
  height: 2.54rem;
  background: #94070a;
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: block;
}
.dep_lt .bx::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  background: url(../img/ico_25.png) no-repeat center;
  transform: translateX(-50%);
  width: 2.09rem;
  height: 1.09rem;
  z-index: -1;
}
.dep_lt .bx img {
  width: 1.29rem;
  display: block;
  margin: 0.323rem auto 0;
}
.dep_lt .bx p {
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 0.28rem;
}
.dep_lt .bx .a{
  text-align: center;
  font-size: .16rem;
  color: #ca8081;
  padding-top: .03rem;
}
.dep_lt .lks {
  display: flex;
  justify-content: space-between;
  padding: 0 0.35rem;
}
.dep_lt .lks a {
  display: block;
  color: #333;
  font-size: 0.28rem;
  width: 0.3rem;
  line-height: 1.1;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.dep_lt .lks a::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background: url(../img/ico_27.png) no-repeat center top;
  width: 0.26rem;
  height: 1.14rem;
  top: 0;
  opacity: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.dep_lt .lks a:nth-child(1) {
  padding-top: 1.28rem;
}
.dep_lt .lks a:nth-child(2) {
  padding-top: 0.43rem;
}
.dep_lt .lks a:nth-child(2)::after {
  background-position: 0 -0.8rem;
}
.dep_lt .lks a:nth-child(3) {
  padding-top: 1.18rem;
}
.dep_lt .lks a:nth-child(3)::after {
  background-position: 0 -0.1rem;
}
.dep_lt .lks a:nth-child(4) {
  padding-top: 0.64rem;
}
.dep_lt .lks a:nth-child(4)::after {
  background-position: 0 -0.6rem;
}
.dep_lt .lks a.active {
  color: #94070a;
  font-weight: bold;
}
.dep_lt .lks a.active:after {
  opacity: 1;
}
.dep_rt {
  width: 74.5%;
}
.dep .dep_item {
  display: flex;
  flex-wrap: wrap;
  overflow-y: auto;
  height: 1.36rem;
  margin-bottom: 0.28rem;
}
.dep .dep_item a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: #fff;
  width: calc(100% / 5 - 0.12rem);
  height: 0.48rem;
  text-align: center;
  line-height: 0.48rem;
  font-weight: bold;
  font-size: 0.2rem;
  padding: 0 0.18rem;
  margin-left: 0.15rem;
  margin-bottom: 0.2rem;
  cursor: pointer;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.dep .dep_item a:nth-child(5n+1) {
  margin-left: 0;
}
.dep .dep_item a.active {
  background: #94070a;
  color: #fff;
}
.dep .dep_item a.lk_more{
  background: #bda066;
  color: #fff;
}
.dep .doc {
  float: right;
  margin-left: auto;
  position: relative;
  width: 9.26rem;
  height: 6.52rem;
}
.dep .doc_bet {
  display: flex;
  width: 9.26rem;
}
.dep .doc .cont {
  width: 3.6rem;
  height: 6.12rem;
  position: relative;
  background: #fff;
  box-shadow: 8px 1px 13px rgba(158, 158, 158, 0.6);
}
.dep .doc .swbox {
  width: 100%;
  height: 100%;
  padding: 0.3rem 0.42rem;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.dep .doc .swbox:first-child {
  opacity: 1;
}
.dep .doc .swbox .box {
  width: 100%;
  height: 100%;
}
.dep .doc .swbox .swiper-slide {
  background: #fff;
}
.dep .doc .swbox .swiper-button-next,
.dep .doc .swbox .swiper-button-prev {
  color: #880025;
}
.dep .doc .swbox .imbox {
  width: 2.74rem;
  height: 3.84rem;
}
.dep .doc .swbox .imbox img {
  width: 100%;
  height: 100%;
}
.dep .doc .swbox .tit {
  display: flex;
  justify-content: space-between;
}
.dep .doc .swbox .tit h3 {
  color: #333;
  font-size: 0.2rem;
  padding-top: 0.14rem;
  padding-bottom: 0.1rem;
}
.dep .doc .swbox .tit h3:last-child {
  font-size: 0.18rem;
}
.dep .doc .swbox .t1 {
  color: #333;
  font-size: 0.14rem;
}
.dep .doc .swbox .t2 {
  color: #333;
  font-size: 0.14rem;
  line-height: 1.5;
  margin-top: 0.06rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-all;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 0.44rem;
}
.dep .doc .swbox .a_more{
  display: block;
  color: #fff;
  background: #94070a;
  width: 1.1rem;
  height: 0.38rem;
  line-height: 0.38rem;
  text-align: center;
  margin: 0.1rem auto 0;
  transition: all .3s;
}
.dep .doc .swbox .a_more:hover{
  opacity: 0.7;
}
.dep .doc .calendar {
  width: calc(100% - 3.6rem);
  margin-top: 0.7rem;
}
.dep .doc .calendar .hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.26rem;
  padding-bottom: 0.24rem;
}
.dep .doc .calendar .hd h3 {
  font-weight: bold;
  padding-left: 0.18rem;
  color: #333;
  font-size: 0.28rem;
  position: relative;
}
.dep .doc .calendar .hd h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #94070a;
  width: 0.04rem;
  height: 0.24rem;
}
.dep .doc .calendar .hd h3 span{
  font-size: .16rem;
  color: #999;
  font-weight: normal;
}
.dep .doc .calendar .hd span {
  color: #333;
  font-size: 0.2rem;
}
.dep .doc .calendar table {
  margin: 0 auto;
  text-align: center;
}
.dep .doc .calendar .bd {
  background: #fff;
  box-shadow: 8px 1px 13px rgba(158, 158, 158, 0.6);
  padding: 0.2rem 0.6rem;
  min-height: 3.36rem;
}
.dep .doc .calendar #calendar_body th {
  width: 0.6rem;
  height: 0.4rem;
  color: #254682;
}
.dep .doc .calendar td {
  width: 0.6rem;
  height: 0.52rem;
  text-align: center;
  font-size: 0.2rem;
  color: #333;
}
.dep .doc .calendar td div {
  width: 0.38rem;
  height: 0.38rem;
  line-height: 0.38rem;
  text-align: center;
  border-radius: 50%;
  margin: 0.07rem auto;
}
.dep .doc .calendar .gray_date {
  color: #c7c7c7;
}
.dep .doc .calendar .circle {
  color: #fff;
}
.dep .doc .calendar .circle div {
  background: #94070a;
}
.dep .doc .more {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 0.18rem;
  width: 1.35rem;
  height: 0.4rem;
  line-height: 0.4rem;
  display: block;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
.dep .doc .more::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  background: #94070a;
  z-index: -1;
}
.dep .doc .more:hover::before {
  width: 100%;
}
.section5 {
  padding-top: 0.6rem;
}
.section5 .hd {
  position: relative;
  width: 100%;
  height: 5.84rem;
  overflow: hidden;
}
.section5 .hd .carousel {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.section5 .hd .carousel_item {
  flex-shrink: 0;
  width: 1.4rem;
  height: 5.84rem;
  display: flex;
  justify-content: center;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  position: relative;
  cursor: pointer;
}
.section5 .hd .carousel_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section5 .hd .carousel_item p {
  position: absolute;
  left: 50%;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
  padding: 0 0.2rem;
  color: #fff;
  height: 0.62rem;
  line-height: 0.62rem;
  width: 80%;
  transform: translateX(-50%);
  bottom: 0.38rem;
  opacity: 0;
  font-size: 0.2rem;
  font-weight: bold;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.section5 .hd .carousel_item.active {
  width: 8.96rem;
}
.section5 .hd .carousel_item.active p {
  opacity: 1;
}
.section5 .hd .tbox {
  display: none;
}
.section5 .hd .tbox.active {
  display: flex;
}
.section5 .bd {
  display: flex;
  justify-content: space-around;
  padding: 0 0.65rem;
  position: relative;
  margin-top: 0.7rem;
}
.section5 .bd::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #fff, #dcdcdc, #fff);
}
.section5 .bd .item {
  position: relative;
  color: #333;
  font-size: 0.28rem;
  padding-top: 0.24rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
  cursor: pointer;
}
.section5 .bd .item::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  background: #aeaeae;
  top: -5%;
}
.section5 .bd .item::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0.14rem;
  height: 0.14rem;
  border-radius: 50%;
  background: transparent;
  top: -9%;
  box-sizing: border-box;
}
.section5 .bd .item.active {
  color: #94070a;
  font-weight: bold;
}
.section5 .bd .item.active::before {
  background: #94070a;
}
.section5 .bd .item.active::after {
  background: rgba(148, 7, 10, 0.3);
}
.section6 {
  position: relative;
  z-index: 2;
  padding-top: .38rem;
  padding-bottom: 0.74rem;
}
.section6::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 10.95rem;
  background: url(../img/bg6.png) no-repeat right top;
  background-size: 100% 100%;
  z-index: -1;
  left: 0;
  top: 0;
  background-position: 0 -1.3rem;
}
.section6 .title {
  margin: 0 auto 0.22rem;
  display: block;
  width: 3.45rem;
}
.section6 .brief {
  color: #333;
  font-size: 0.18rem;
  line-height: 1.4;
  text-align: center;
  padding: 0 1rem;
}
.section6 .row {
  display: flex;
  justify-content: space-between;
  margin-top: 0.62rem;
  margin-bottom: 0.7rem;
}
.section6 .row a {
  text-align: center;
}
.section6 .row .circle {
  width: 1.04rem;
  height: 1.04rem;
  border-radius: 50%;
  margin: 0 auto;
  border: 1px dashed #a2282a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  cursor: pointer;
}
.section6 .row .circle::before {
  content: '';
  width: 1.24rem;
  height: 1.24rem;
  border-radius: 50%;
  background: url(../img/yuanhuan.png) no-repeat center;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.62rem;
  margin-top: -0.62rem;
  pointer-events: none;
  opacity: 0;
  animation: roted 10s infinite linear;
}
.section6 .row .circle img {
  max-width: 0.55rem;
  position: relative;
  z-index: 2;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
@keyframes roted {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.section6 .row .num {
  color: #7d5a45;
  font-size: 0.18rem;
}
.section6 .row .num h3 {
  color: #880025;
  font-size: 0.48rem;
  display: inline-block;
  font-family: 'SourceHanSerifSC';
}
.section6 .row p {
  color: #7d5a45;
  font-size: 0.18rem;
}
.section6 .row a:hover .circle img {
  transform: rotateY(180deg);
}
.section6 .row a:hover .circle::before {
  opacity: 1;
}
.section6 .tips{
  display: flex;
  justify-content: center;
}
.section6 .tips span{
  border: 1px solid #7d5a45;
  padding: .06rem .1rem;
  color: #7d5a45;
}
.section6 .s_lks {
  text-align: center;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 0.06rem;
  padding: 0.1rem 0;
  display: none;
}
.section6 .s_lks::before,
.section6 .s_lks::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  width: 1rem;
}
.section6 .s_lks::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}
.section6 .s_lks::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}
.section6 .s_lks p {
  display: inline-block;
  color: #333;
  font-size: 0.18rem;
  background: #fff;
  border-radius: 0.4rem;
  box-shadow: 8px 1px 13px rgba(226, 218, 213, 0.6);
  margin: 0 0.27rem;
  padding: 0.14rem 0.23rem;
  position: relative;
  z-index: 2;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}
.section6 .s_lks p::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #bda066;
  z-index: -1;
  border-radius: 0.4rem;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
.section6 .s_lks p:hover {
  color: #fff;
}
.section6 .s_lks p:hover::after {
  width: 100%;
}
.section6 .s_lks .scroll {
  white-space: nowrap;
}
.section6 .s_lks .marquee_ltr {
  -webkit-animation: marquee_ltr 20s linear infinite running;
  animation: marquee_ltr 20s linear infinite running;
}
.section6 .s_lks .marquee_rtl {
  -webkit-animation: marquee_rtl 20s linear infinite running;
  animation: marquee_rtl 20s linear infinite running;
}
.adverSwiper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0.4rem;
}
.adverSwiper .item {
  width: 100%;
  height: 1.2rem;
  display: block;
  overflow: hidden;
}
.adverSwiper .item img {
  width: 100%;
  height: 100%;
  display: block;
}
.adverSwiper .swiper-button-next,
.adverSwiper .swiper-button-prev {
  color: #880025;
}
@keyframes marquee_rtl {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes marquee_ltr {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (max-width: 800px) {
  .section1 {
    height: 4.24rem;
  }
  .section2 {
    background: #fff;
    height: auto;
    max-width: 100%;
    padding-top: 1.14rem;
  }
  .section2 .year {
    display: none;
  }
  .section2 .ro_r {
    padding: 0;
    flex-wrap: wrap;
  }
  .section2 .ro_r li {
    width: 48%;
    height: 2rem;
    animation: infinite!important;
    margin-top: 0!important;
    margin-bottom: 4%;
  }
  .section2 .ro_r li::after {
    display: none;
  }
  .section2 .ro_r li:nth-child(1) {
    background: #27addc;
  }
  .section2 .ro_r li:nth-child(2) {
    background: #94070a;
  }
  .section2 .ro_r li:nth-child(3) {
    background: #0d67a8;
  }
  .section2 .ro_r li:nth-child(4) {
    background: #bfa776;
  }
  .section2 .ro_r li:nth-child(5) {
    background: #2e5293;
  }
  .section2 .ro_r li a {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .section2 .ro_r li .ifo {
    width: 100%;
    font-size: 0.32rem;
  }
  .search .container {
    padding: 0;
  }
  .tabnav_item {
    font-family: '微软雅黑';
    margin-right: 0;
  }
  .tabnav_item::after {
    display: none;
  }
  .tabnav .mebox .more {
    font-size: 0.26rem;
  }
  .tabnav .mebox .more img {
    width: 0.83rem;
  }
  .section3::after {
    display: none;
  }
  .section3 .w16 {
    flex-direction: column;
  }
  .section3 .new {
    width: 100%;
  }
}
