.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.regular {
  font-family: "regular";
}
.medium {
  font-family: "medium";
}
.widget {
  margin: 0!important;
}
.row {
  margin-left: 0!important;
  margin-right: 0!important;
}
.container-fluid {
  padding-right: 0!important;
  padding-left: 0!important;
}
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  padding-right: 0!important;
  padding-left: 0!important;
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 一行省略溢出显示省略号*/
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.ss span {
  position: relative;
  z-index: 1;
}
.ss i {
  display: block;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
}
.ss i:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.ss i:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}
.ss:hover i {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
.ss:hover i:after {
  -moz-animation: anim-out-pseudo 0.75s;
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
.img_rotate {
  -moz-animation: rotate 15s infinite linear;
  -webkit-animation: rotate 15s infinite linear;
  animation: rotate 15s infinite linear;
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes scaleCircleAni {
  0% {
    transform: scale(0.9) rotate(0deg);
  }
  100% {
    transform: scale(0.9) rotate(360deg);
  }
}
@keyframes circle_1 {
  0% {
    -webkit-transform: rotate(360deg) scaleX(1);
  }
  100% {
    -webkit-transform: rotate(0deg) scaleX(1.05);
  }
}
@keyframes circle_2 {
  0% {
    -webkit-transform: rotate(360deg) scaleX(1);
  }
  100% {
    -webkit-transform: rotate(90deg) scaleX(1.05);
  }
}
@keyframes circle_3 {
  0% {
    -webkit-transform: rotate(360deg) scaleX(1);
  }
  100% {
    -webkit-transform: rotate(180deg) scaleX(1.05);
  }
}
.linear {
  transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
}
.ease {
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.ease-in {
  transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
}
.ease-out {
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
}
@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-moz-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-ms-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes fadeOfOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes upDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes upDown {
  from {
    -webkit-transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
  }
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.coverbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.indDiv {
  width: 3.9rem;
  color: #333;
}
.indDiv .cn {
  font-size: var(--fs40);
  line-height: 0.7rem;
  font-weight: 500;
}
.indDiv .en {
  margin-top: 5px;
  font-size: var(--fs24);
  line-height: 0.3rem;
  font-family: 'Barlow-L';
}
.indDiv .zi {
  margin-top: 0.3rem;
  color: #444;
  font-size: var(--fs20);
  line-height: 0.4rem;
}
.indDiv .more {
  margin-top: 0.6rem;
}
.indDiv .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.3rem;
  height: 0.42rem;
  border-radius: 0.6rem;
  border: #FF0103 solid 1px;
  font-size: var(--fs14);
  text-transform: uppercase;
  color: #FF0103;
  font-family: 'NotoSans-R';
}
.indDiv .more a em {
  margin-left: 0.12rem;
  width: 8px;
  height: 9px;
  background: url(../img/ico1.png);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indDiv .more a:hover {
  background: #FF0103;
  color: #fff;
}
.indDiv .more a:hover em {
  filter: brightness(0) invert(1);
  transform: rotate(45deg);
}
.particles-js {
  position: absolute;
  width: 20%;
  height: 3.2rem;
  pointer-events: none;
  /* 不影响点击 */
}
.background {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.background div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 0 0 repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 1s;
  will-change: opacity;
}
.background .lightgray {
  background-image: url(../img/indexP1.jpg);
  opacity: 1;
}
.background .darkgray {
  background-image: url(../img/indexP2.jpg);
}
.background .white {
  background-image: url(../img/indexP3.jpg);
}
.background.bg-dark .darkgray {
  opacity: 1;
}
.background.bg-dark .lightgray,
.background.bg-dark .white {
  opacity: 0;
}
.background.bg-white .white {
  opacity: 1;
}
.background.bg-white .lightgray,
.background.bg-white .darkgray {
  opacity: 0;
}
.indexP1 {
  position: relative;
  overflow: hidden;
  padding: 1.2rem 0 1.6rem;
}
.indexP1 .particles-js {
  top: -5%;
  right: -5%;
}
.indexP1 .tab {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.indexP1 .tab ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.indexP1 .tab li {
  position: relative;
  display: flex;
  font-size: var(--fs16);
  padding: 0 0.36rem 0 0.3rem;
  line-height: 0.46rem;
  text-align: center;
  color: #333;
}
.indexP1 .tab li::after {
  content: '/';
  position: absolute;
  right: 0;
  top: 0;
  color: #333;
}
.indexP1 .tab li:last-child::after {
  display: none;
}
.indexP1 .tab li em {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP1 .tab .liNow {
  color: #fff;
}
.indexP1 .tab .liNow em {
  padding: 0 0.4rem;
  border-radius: 0.45rem;
  background: #FF0103;
}
.indexP1 .mxfDiv {
  position: relative;
  padding-top: 1.1rem;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP1 .tabContentDiv {
  width: 7.2rem;
}
.indexP1 .tabContent {
  animation: am_top 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}
.indexP1 .pjDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP1 .detail {
  width: 3.82rem;
}
.indexP1 .detail a {
  display: block;
  padding-right: 0.42rem;
  padding-bottom: 0.5rem;
  position: relative;
}
.indexP1 .detail a .time {
  position: absolute;
  right: 0;
  top: 0;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  font-size: var(--fs14);
  color: #666;
  padding-top: 0.4rem;
  line-height: 14px;
  font-family: 'NotoSans-R';
}
.indexP1 .detail a .time em {
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -0.03rem;
  width: 0.05rem;
  height: 0.32rem;
  border-radius: 0.05rem;
  background: rgba(255, 1, 3, 0.2);
  overflow: hidden;
}
.indexP1 .detail a .time em::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.16rem;
  background: #FF0103;
}
.indexP1 .detail a .imgDiv {
  width: 100%;
  height: 4.4rem;
  border-radius: 0.14rem;
  position: relative;
  overflow: hidden;
}
.indexP1 .detail a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.indexP1 .detail a .name {
  position: absolute;
  right: -0.7rem;
  bottom: 0;
  width: calc(100% + 0.2rem);
  padding: 0.3rem;
  color: #333;
  background: linear-gradient(90deg, #FFF 79.58%, rgba(255, 255, 255, 0) 94.74%);
  border-radius: 0.2rem;
  z-index: 1;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP1 .detail a .name em {
  display: block;
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs17);
  line-height: 0.3rem;
  max-height: 0.6rem;
  padding-right: 0.6rem;
}
.indexP1 .detail a:hover .imgDiv img {
  transform: scale(1.1);
}
.indexP1 .detail a:hover .name {
  color: #FF0103;
}
.indexP1 .list {
  width: 3.06rem;
  height: 4.9rem;
  padding: 0.3rem 0.3rem 0;
  background: #fff;
  border-radius: 0.14rem;
}
.indexP1 .list li {
  margin-bottom: 0.2rem;
}
.indexP1 .list li:last-child {
  margin-bottom: 0;
}
.indexP1 .list li a {
  display: block;
  padding-right: 0.38rem;
  padding-bottom: 0.4rem;
  position: relative;
}
.indexP1 .list li a .time {
  position: absolute;
  right: 0;
  top: 0;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  font-size: var(--fs14);
  color: #666;
  padding-top: 0.4rem;
  line-height: 14px;
  font-family: 'NotoSans-R';
}
.indexP1 .list li a .time em {
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -0.03rem;
  width: 0.05rem;
  height: 0.32rem;
  border-radius: 0.05rem;
  background: rgba(255, 1, 3, 0.2);
  overflow: hidden;
}
.indexP1 .list li a .time em::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.16rem;
  background: #FF0103;
}
.indexP1 .list li a .imgDiv {
  width: 100%;
  height: 1.7rem;
  border-radius: 0.1rem;
  position: relative;
  overflow: hidden;
}
.indexP1 .list li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.indexP1 .list li a .name {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 0.5rem);
  padding: 0.12rem;
  color: #333;
  background: #fff;
  border-radius: 0.15rem;
  z-index: 1;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP1 .list li a .name em {
  display: block;
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs15);
  line-height: 0.24rem;
  max-height: 0.48rem;
}
.indexP1 .list li a:hover .imgDiv img {
  transform: scale(1.1);
}
.indexP1 .list li a:hover .name {
  color: #FF0103;
}
.indexP2 {
  position: relative;
  overflow: hidden;
  padding: 1.6rem 0 1.45rem;
}
.indexP2 .particles-js {
  top: -5%;
  left: -5%;
}
.indexP2 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP2 .indDiv {
  padding-top: 0.5rem;
}
.indexP2 .list {
  width: 7.16rem;
}
.indexP2 .list li {
  margin-bottom: 0.24rem;
}
.indexP2 .list li:last-child {
  margin-bottom: 0;
}
.indexP2 .list li a {
  display: block;
  position: relative;
  padding: 0.42rem 0.96rem 0 3.45rem;
  height: 2.44rem;
  border-radius: 0.14rem;
  border: #f2f2f2 solid 1px;
  background: #fff;
}
.indexP2 .list li a .imgDiv {
  position: absolute;
  left: 0.4rem;
  top: 0.35rem;
  width: 2.7rem;
  height: 1.72rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.indexP2 .list li a .imgDiv::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.indexP2 .list li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.indexP2 .list li a .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs22);
  line-height: 0.3rem;
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP2 .list li a .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.24rem;
  font-size: var(--fs16);
  color: #999;
  line-height: 0.28rem;
  height: 0.84rem;
}
.indexP2 .list li a .ico {
  margin-top: 0.15rem;
  width: 0.11rem;
  height: 0.1rem;
  background: url(../img/ico2.png) no-repeat;
  background-size: 0.11rem;
}
.indexP2 .list li a .label {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  margin-top: -0.16rem;
  width: 0.05rem;
  height: 0.32rem;
  border-radius: 0.05rem;
  background: rgba(255, 1, 3, 0.2);
  overflow: hidden;
}
.indexP2 .list li a .label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.16rem;
  background: #FF0103;
}
.indexP2 .list li a:hover .imgDiv::after {
  opacity: 1;
}
.indexP2 .list li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.indexP2 .list li a:hover .name {
  color: #FF0103;
}
.indexP3 {
  position: relative;
  overflow: hidden;
  padding-top: 1.6rem;
  height: 8.6rem;
}
.indexP3 .mxfDiv {
  position: relative;
  z-index: 1;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP3 .indDiv {
  padding-top: 0.26rem;
}
.indexP3 .rightDiv {
  width: 7.16rem;
}
.indexP3 .rightDiv .xxxx ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP3 .rightDiv .xxxx li {
  width: 2.4rem;
}
.indexP3 .rightDiv .xxxx li .pjDiv {
  position: relative;
  width: 2.4rem;
  height: 3.16rem;
  background: #fff;
  border-radius: 0.16rem;
  border: #dd0000 solid 1px;
}
.indexP3 .rightDiv .xxxx li .baozhe {
  position: relative;
  width: 2.05rem;
  height: 2.99rem;
}
.indexP3 .rightDiv .xxxx li .imgDiv {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.93rem;
  height: 2.66rem;
  margin-left: -0.96rem;
  margin-top: -1.33rem;
}
.indexP3 .rightDiv .xxxx li .imgDiv img {
  width: 100%;
  transition: All 1s ease;
}
.indexP3 .rightDiv .xxxx li .name {
  margin-top: 0.22rem;
  font-size: var(--fs15);
  line-height: 0.28rem;
  color: #333;
  text-align: center;
}
.indexP3 .rightDiv .xxxx li:nth-child(1),
.indexP3 .rightDiv .xxxx li:nth-child(3) {
  width: 2.05rem;
}
.indexP3 .rightDiv .xxxx li:nth-child(1) .pjDiv,
.indexP3 .rightDiv .xxxx li:nth-child(3) .pjDiv {
  background: none;
  border: none;
  width: 2.05rem;
  height: 3.16rem;
  position: relative;
}
.indexP3 .rightDiv .xxxx li:nth-child(1) .imgDiv,
.indexP3 .rightDiv .xxxx li:nth-child(3) .imgDiv {
  width: 1.6rem;
  height: 2.52rem;
  margin-left: -0.8rem;
  margin-top: -1.26rem;
}
.indexP3 .rightDiv .xxxx li:hover .imgDiv img {
  transform: scale(1.05);
}
.indexP3 .tips {
  position: relative;
  z-index: 1;
  padding-top: 1.5rem;
  text-align: center;
  font-size: var(--fs14);
  line-height: 0.24rem;
  color: #666;
  opacity: 0.8;
}
.indHonor {
  position: relative;
}
.indHonor .list {
  overflow: hidden;
}
.indHonor .list li {
  width: calc((100% - 0.4rem) / 3);
  margin-right: 0.2rem;
}
.indHonor .list li .pjDiv {
  padding-top: 5px;
  width: 100%;
}
.indHonor .list li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  border-radius: 0.16rem;
  border: #fff solid 1px;
  height: 3.16rem;
  background: #fff;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indHonor .list li .imgDiv img {
  max-width: 1.92rem;
  max-height: 2.66rem;
}
.indHonor .list li .name {
  margin-top: 0.22rem;
  font-size: var(--fs15);
  line-height: 0.28rem;
  color: #333;
  text-align: center;
}
.indHonor .list .swiper-slide-active .imgDiv {
  border: #FF0103 solid 1px;
}
@media (max-width: 1004px) {
  .particles-js {
    display: none;
  }
  .indDiv {
    width: auto;
  }
  .indDiv .cn {
    font-size: var(--fs28);
    line-height: 0.64rem;
  }
  .indDiv .en {
    font-size: var(--fs16);
    line-height: 0.4rem;
  }
  .indDiv .zi {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .indDiv .more {
    margin-top: 0.45rem;
  }
  .indDiv .more a {
    width: 2.36rem;
    height: 0.72rem;
  }
  .indexP1 {
    padding: 0.9rem 0 1rem;
  }
  .indexP1 .tab {
    padding: 0.6rem 0;
    position: relative;
  }
  .indexP1 .tab ul {
    margin-bottom: 0;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    flex-flow: wrap;
  }
  .indexP1 .tab li {
    width: calc((100% - 0.4rem) / 3);
    margin-right: 0.2rem;
    margin-top: 0.2rem;
    font-size: var(--fs14);
    padding: 0;
    line-height: 0.66rem;
  }
  .indexP1 .tab li:nth-child(3n) {
    margin-right: 0;
  }
  .indexP1 .tab li:nth-child(-n+3) {
    margin-top: 0;
  }
  .indexP1 .tab li::after {
    display: none;
  }
  .indexP1 .tab li:last-child::after {
    display: none;
  }
  .indexP1 .tab li em {
    width: 100%;
    padding: 0;
    border-radius: 0.45rem;
  }
  .indexP1 .tab .liNow em {
    padding: 0 0.4rem;
  }
  .indexP1 .mxfDiv {
    padding-top: 0;
    display: block;
  }
  .indexP1 .tabContentDiv {
    width: auto;
  }
  .indexP1 .pjDiv {
    display: block;
  }
  .indexP1 .detail {
    width: 100%;
  }
  .indexP1 .detail a {
    padding-right: 0.62rem;
    padding-bottom: 0.6rem;
  }
  .indexP1 .detail a .time {
    font-size: var(--fs14);
    padding-top: 0.7rem;
  }
  .indexP1 .detail a .time em {
    width: 0.06rem;
    height: 0.56rem;
  }
  .indexP1 .detail a .time em::before {
    height: 0.28rem;
  }
  .indexP1 .detail a .imgDiv {
    height: 4.8rem;
    border-radius: 0.2rem;
  }
  .indexP1 .detail a .name {
    right: 0;
    background: linear-gradient(90deg, #FFF 89.58%, rgba(255, 255, 255, 0) 94.74%);
    width: calc(100% - 0.8rem);
    padding: 0.24rem;
    border-radius: 0.24rem;
  }
  .indexP1 .detail a .name em {
    font-size: var(--fs16);
    line-height: 0.48rem;
    max-height: 0.96rem;
    padding-right: 0;
  }
  .indexP1 .list {
    margin-top: 0.3rem;
    width: auto;
    height: auto;
    padding: 0.4rem 0.3rem;
    border-radius: 0.2rem;
  }
  .indexP1 .list li a {
    padding-right: 0.62rem;
    padding-bottom: 0.6rem;
  }
  .indexP1 .list li a .time {
    font-size: var(--fs14);
    padding-top: 0.7rem;
  }
  .indexP1 .list li a .time em {
    width: 0.06rem;
    height: 0.56rem;
  }
  .indexP1 .list li a .time em::before {
    height: 0.28rem;
  }
  .indexP1 .list li a .imgDiv {
    height: 3.4rem;
    border-radius: 0.16rem;
  }
  .indexP1 .list li a .name {
    width: calc(100% - 0.8rem);
    padding: 0.2rem;
    border-radius: 0.2rem;
  }
  .indexP1 .list li a .name em {
    font-size: var(--fs14);
    line-height: 0.42rem;
    max-height: 0.84rem;
  }
  .indexP2 {
    padding: 1rem 0;
  }
  .indexP2 .mxfDiv {
    display: block;
  }
  .indexP2 .indDiv {
    padding-top: 0;
  }
  .indexP2 .list {
    margin-top: 0.6rem;
    width: 100%;
  }
  .indexP2 .list li a {
    padding: 0.3rem 0.96rem 0 3rem;
    height: 2.14rem;
    border-radius: 0.2rem;
  }
  .indexP2 .list li a .imgDiv {
    left: 0.25rem;
    top: 0.25rem;
    width: 2.4rem;
    height: 1.6rem;
    border-radius: 0.16rem;
  }
  .indexP2 .list li a .name {
    font-size: var(--fs16);
    line-height: 0.42rem;
  }
  .indexP2 .list li a .msg {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 0.15rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .indexP2 .list li a .ico,
  .indexP2 .list li a .label {
    display: none;
  }
  .indexP3 {
    padding: 1rem 0 0;
    height: auto;
  }
  .indexP3 .wrap {
    padding: 0;
  }
  .indexP3 .mxfDiv {
    display: block;
  }
  .indexP3 .indDiv {
    padding: 0 var(--offset);
  }
  .indexP3 .rightDiv {
    margin-top: 0.6rem;
    width: 100%;
  }
  .indexP3 .tips {
    padding: 0.8rem var(--offset) 0.6rem;
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .indexP3 .footDiv .wrap {
    padding: 0 var(--offset);
  }
  .indHonor .list li {
    width: calc((100% - 0.1rem) / 2);
  }
  .indHonor .list li .imgDiv {
    border-radius: 0.2rem;
    height: 3.86rem;
    background: #fff;
  }
  .indHonor .list li .imgDiv img {
    max-width: 2.92rem;
    max-height: 3.26rem;
  }
  .indHonor .list li .name {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
}
.commonBox {
  padding-bottom: 1.4rem;
  position: relative;
  background: url(../img/commonBg2.jpg) center bottom repeat-y;
  background-size: 100%;
  overflow: hidden;
}
.commonBox::before {
  content: '';
  position: absolute;
  top: 0.74rem;
  left: 10%;
  width: 3.6rem;
  height: 3.58rem;
  background: url(../img/logobg.png) no-repeat;
  background-size: cover;
  z-index: 0;
  pointer-events: none;
}
.commonBox::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10.8rem;
  background: url(../img/botbg.png) no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}
.commonBox .particles-js {
  top: -5%;
  right: -5%;
}
.topicpage {
  position: relative;
  z-index: 1;
  padding-top: 0.8rem;
}
.topicpage .second {
  width: 100%;
  padding-bottom: 0.65rem;
}
.topicpage .second ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.topicpage .second li {
  position: relative;
  display: flex;
  font-size: var(--fs16);
  padding: 0 0.36rem 0 0.3rem;
  line-height: 0.46rem;
  text-align: center;
}
.topicpage .second li::after {
  content: '/';
  position: absolute;
  right: 0;
  top: 0;
  color: #333;
}
.topicpage .second li:last-child::after {
  display: none;
}
.topicpage .second li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.topicpage .second li a:hover {
  color: #FF0103;
}
.topicpage .second li .aNow {
  color: #fff !important;
  padding: 0 0.4rem;
  border-radius: 0.45rem;
  background: #FF0103;
}
.topicpage .list {
  padding-bottom: 0.8rem;
}
.topicpage .list li {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  height: 1.95rem;
  margin-top: 0.2rem;
}
.topicpage .list li:first-child {
  margin-top: 0;
}
.topicpage .list li .imgDiv {
  width: 3.06rem;
  height: 1.95rem;
  overflow: hidden;
  border-radius: 0.1rem;
}
.topicpage .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topicpage .list li .conDiv {
  width: calc(100% - 3.18rem);
}
.topicpage .list li .conDiv a {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  height: 1.95rem;
  padding: 0.4rem 1.14rem 0 0.55rem;
  border: #fff solid 1px;
  border-radius: 0.1rem;
  background: #fff;
}
.topicpage .list li .conDiv a:hover {
  border: #FF0103 solid 1px;
}
.topicpage .list li .conDiv a .time {
  width: 2.4rem;
  display: flex;
  align-items: flex-start;
  font-size: var(--fs18);
  color: #999;
}
.topicpage .list li .conDiv a .time em {
  font-size: var(--fs60);
  color: #333;
  line-height: 0.54rem;
  vertical-align: top;
  padding-right: 5px;
}
.topicpage .list li .conDiv a .name {
  width: 5.1rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
}
@media (max-width: 1004px) {
  .commonBox {
    padding-bottom: 0;
    background-size: cover;
  }
  .commonBox::before {
    display: none;
  }
  .commonBox .particles-js {
    display: none;
  }
  .topicpage {
    padding-top: 0.65rem;
  }
  .topicpage .second {
    width: 100%;
    padding-bottom: 0.65rem;
  }
  .topicpage .second ul {
    margin-bottom: 0;
    display: flex;
    display: -webkit-flex;
    flex-flow: wrap;
  }
  .topicpage .second li {
    font-size: var(--fs14);
    padding: 0 0.15rem 0 0.1rem;
    line-height: 0.66rem;
  }
  .topicpage .second li::after {
    content: '/';
    position: absolute;
    right: 0;
    top: 0;
    color: #333;
  }
  .topicpage .second li:last-child::after {
    display: none;
  }
  .topicpage .second li a {
    padding: 0 0.4rem;
    border-radius: 0.45rem;
  }
  .topicpage .second li .aNow {
    padding: 0 0.4rem;
  }
  .topicpage .list li {
    height: 2rem;
    margin-top: 0.3rem;
  }
  .topicpage .list li .imgDiv {
    width: 2.86rem;
    height: 2rem;
  }
  .topicpage .list li .conDiv {
    width: calc(100% - 3rem);
  }
  .topicpage .list li .conDiv a {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    height: 2rem;
    padding: 0.3rem 0.3rem 0 0.35rem;
    border-radius: 0.2rem;
  }
  .topicpage .list li .conDiv a .time {
    display: none;
    width: auto;
    font-size: var(--fs14);
  }
  .topicpage .list li .conDiv a .time em {
    font-size: var(--fs36);
    line-height: 0.6rem;
  }
  .topicpage .list li .conDiv a .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    width: auto;
    font-size: var(--fs16);
    line-height: 0.48rem;
    max-height: 1.44rem;
  }
}
.honor {
  position: relative;
  z-index: 1;
  padding-top: 0.8rem;
}
.honor .list {
  padding-bottom: 0.8rem;
}
.honor .list ul {
  margin-bottom: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.honor .list li {
  width: calc((100% - 1.92rem) / 4);
  margin-right: 0.64rem;
  margin-top: 0.6rem;
}
.honor .list li:nth-child(-n+4) {
  margin-top: 0;
}
.honor .list li:nth-child(4n) {
  margin-right: 0;
}
.honor .list li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
  height: 3.16rem;
  border: #f2f2f2 solid 1px;
  background: #fff;
  border-radius: 0.16rem;
}
.honor .list li .imgDiv img {
  max-width: 1.8rem;
  max-height: 2rem;
  filter: grayscale(20%) brightness(1);
  transition: filter 0.6s ease;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.honor .list li .name {
  text-align: center;
  font-size: var(--fs15);
  line-height: 0.3rem;
  padding: 0 0.2rem;
  color: #333;
  margin-top: 0.2rem;
}
.honor .list li:hover .imgDiv img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1.05);
}
@media (max-width: 1004px) {
  .honor {
    padding-top: 0.65rem;
  }
  .honor .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.45rem;
  }
  .honor .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .honor .list li:nth-child(3),
  .honor .list li:nth-child(4) {
    margin-top: 0.45rem;
  }
  .honor .list li:nth-child(4n) {
    margin-right: 0.2rem;
  }
  .honor .list li:nth-child(2n) {
    margin-right: 0;
  }
  .honor .list li .imgDiv {
    height: 3.6rem;
    border-radius: 0.2rem;
  }
  .honor .list li .imgDiv img {
    max-width: 2.4rem;
    max-height: 2.6rem;
  }
  .honor .list li .name {
    font-size: var(--fs14);
    line-height: 0.42rem;
    padding: 0;
  }
}
.newshow {
  position: relative;
  z-index: 1;
  background: #fff;
  padding-bottom: 0.84rem;
  border-radius: 0 0 0.14rem 0.14rem;
}
.newshow .wal {
  width: 10.2rem;
  margin: 0 auto;
}
.newshow .name {
  padding-top: 0.8rem;
  font-size: var(--fs36);
  line-height: 0.6rem;
  color: #333;
  margin: 0;
}
.newshow .time {
  padding: 0.3rem 0 0.45rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #666;
  border-bottom: #d9d9d9 solid 1px;
}
.newshow .content {
  padding: 0.5rem 0 1.36rem;
  font-size: 18px;
  line-height: 2.5;
  color: #333;
}
.newshow .content section {
  display: block!important;
}
.newshow .imgDiv {
  text-align: center;
  border-radius: 0.1rem;
  overflow: hidden;
}
.newshow .imgDiv img {
  max-width: 100%;
}
.pageDown {
  border-top: #d9d9d9 solid 1px;
}
.pageDown li {
  border-bottom: #d9d9d9 solid 1px;
}
.pageDown li a {
  position: relative;
  font-size: var(--fs16);
  line-height: 0.28rem;
  color: #333;
  display: block;
  padding: 0.4rem 1rem 0.7rem 0;
}
.pageDown li a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0.55rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  border: #d8d8d8 solid 1px;
  background: url(../img/ico4.png) center no-repeat;
  background-size: 0.18rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.pageDown li a em {
  color: #666;
  display: block;
  margin-bottom: 0.2rem;
}
.pageDown li a:hover {
  color: #FF0103;
}
.pageDown li a:hover::after {
  border: #FF0103 solid 1px;
  background: #FF0103 url(../img/ico4on.png) center no-repeat;
  background-size: 0.18rem;
}
@media (max-width: 1004px) {
  .newshow {
    padding-bottom: 1rem;
    border-radius: 0 0 0.2rem 0.2rem;
  }
  .newshow .wal {
    width: 100%;
    padding: 0 0.3rem;
  }
  .newshow .name {
    padding-top: 0.8rem;
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .newshow .time {
    padding: 0.2rem 0 0.3rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .newshow .content {
    padding: 0.5rem 0 1rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .newshow .imgDiv {
    border-radius: 0.2rem;
  }
  .pageDown li a {
    font-size: var(--fs14);
    line-height: 0.42rem;
    padding: 0.3rem 0 0.4rem 0;
  }
  .pageDown li a::after {
    display: none;
  }
}
.fixed-zhl {
  width: 1.08rem;
  height: 1.08rem;
  background: #FF0103;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  transform: scale(0);
  will-change: transform;
  z-index: 1000;
}
.fixed-zhl .fixed-a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  color: #fff;
  font-size: var(--fs16);
  text-transform: uppercase;
}
.news {
  position: relative;
  z-index: 1;
  padding-top: 0.8rem;
}
.news .second {
  width: 100%;
  padding-bottom: 0.65rem;
}
.news .second ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.news .second li {
  position: relative;
  display: flex;
  font-size: var(--fs16);
  padding: 0 0.36rem 0 0.3rem;
  line-height: 0.46rem;
  text-align: center;
}
.news .second li::after {
  content: '/';
  position: absolute;
  right: 0;
  top: 0;
  color: #333;
}
.news .second li:last-child::after {
  display: none;
}
.news .second li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.news .second li a:hover {
  color: #FF0103;
}
.news .second li .aNow {
  color: #fff !important;
  padding: 0 0.4rem;
  border-radius: 0.45rem;
  background: #FF0103;
}
.news .list {
  padding-bottom: 0.8rem;
}
.news .list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 一行3列 */
  gap: 0.35rem 0.4rem;
  margin: 0;
}
.news .list li {
  min-height: 3rem;
  background: #fff;
  padding: 0.3rem 0.45rem 0.15rem 0.36rem;
  border-radius: 0.14rem;
}
.news .list li a {
  display: block;
  padding-right: 0.38rem;
  padding-bottom: 0.4rem;
  position: relative;
}
.news .list li a .time {
  position: absolute;
  right: 0;
  top: 0;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  font-size: var(--fs14);
  color: #666;
  padding-top: 0.4rem;
  line-height: 14px;
  font-family: 'NotoSans-R';
}
.news .list li a .time em {
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -0.03rem;
  width: 0.05rem;
  height: 0.32rem;
  border-radius: 0.05rem;
  background: rgba(255, 1, 3, 0.2);
  overflow: hidden;
}
.news .list li a .time em::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.16rem;
  background: #FF0103;
}
.news .list li a .imgDiv {
  width: 2.5rem;
  height: 2.02rem;
  border-radius: 0.1rem;
  position: relative;
  overflow: hidden;
}
.news .list li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.news .list li a .name {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 0.5rem);
  padding: 0.12rem 0.12rem 0.12rem 0.22rem;
  color: #333;
  background: #fff;
  border-radius: 0.15rem;
  z-index: 1;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.news .list li a .name em {
  display: block;
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs15);
  line-height: 0.24rem;
  max-height: 0.48rem;
}
.news .list li a:hover .imgDiv img {
  transform: scale(1.1);
}
.news .list li a:hover .name {
  color: #FF0103;
}
.news .list .one {
  grid-row: span 2;
  padding: 0.35rem 0.42rem 0.15rem 0.36rem;
  border-radius: 0.14rem;
}
.news .list .one a {
  display: block;
  padding-right: 0;
  padding-bottom: 0;
  position: relative;
}
.news .list .one a .time {
  position: relative;
  writing-mode: horizontal-tb;
  padding-top: 0;
  margin-top: 0.26rem;
  padding-left: 0.4rem;
}
.news .list .one a .time em {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.03rem;
  margin-left: 0;
  width: 0.32rem;
  height: 0.05rem;
}
.news .list .one a .time em::before {
  width: 0.16rem;
  height: 100%;
}
.news .list .one a .imgDiv {
  width: 100%;
  height: 4.38rem;
  border-radius: 0.14rem;
}
.news .list .one a .name {
  position: relative;
  right: 0;
  bottom: 0;
  width: auto;
  padding: 0.12rem 0 0;
  color: #333;
  background: none;
  z-index: 1;
}
.news .list .one a .name em {
  font-size: var(--fs17);
  line-height: 0.3rem;
  max-height: 0.6rem;
}
@media (max-width: 1004px) {
  .news {
    padding-top: 0.65rem;
  }
  .news .second {
    width: 100%;
    padding-bottom: 0.65rem;
  }
  .news .second ul {
    margin-bottom: 0;
    display: flex;
    display: -webkit-flex;
    flex-flow: wrap;
  }
  .news .second li {
    font-size: var(--fs14);
    padding: 0 0.15rem 0 0.1rem;
    line-height: 0.66rem;
  }
  .news .second li::after {
    content: '/';
    position: absolute;
    right: 0;
    top: 0;
    color: #333;
  }
  .news .second li:last-child::after {
    display: none;
  }
  .news .second li a {
    padding: 0 0.4rem;
    border-radius: 0.45rem;
  }
  .news .second li .aNow {
    padding: 0 0.4rem;
  }
  .news .list ul {
    display: block;
  }
  .news .list li {
    margin-top: 0.3rem;
    min-height: 1rem;
    padding: 0.3rem;
    border-radius: 0.2rem;
    box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
  }
  .news .list li:first-child {
    margin-top: 0;
  }
  .news .list li a {
    padding-right: 0.62rem;
    padding-bottom: 0.6rem;
  }
  .news .list li a .time {
    font-size: var(--fs14);
    padding-top: 0.7rem;
  }
  .news .list li a .time em {
    width: 0.06rem;
    height: 0.56rem;
  }
  .news .list li a .time em::before {
    height: 0.28rem;
  }
  .news .list li a .imgDiv {
    width: auto;
    height: 3.4rem;
    border-radius: 0.16rem;
  }
  .news .list li a .name {
    width: calc(100% - 0.8rem);
    padding: 0.2rem;
    border-radius: 0.2rem;
  }
  .news .list li a .name em {
    font-size: var(--fs14);
    line-height: 0.42rem;
    max-height: 0.84rem;
  }
  .news .list .one {
    padding: 0.35rem;
    border-radius: 0.2rem;
  }
  .news .list .one a {
    display: block;
    padding-right: 0;
    padding-bottom: 0;
    position: relative;
  }
  .news .list .one a .time {
    margin-top: 0.26rem;
    padding-left: 0.72rem;
  }
  .news .list .one a .time em {
    width: 0.56rem;
    height: 0.06rem;
  }
  .news .list .one a .time em::before {
    width: 0.28rem;
  }
  .news .list .one a .imgDiv {
    height: 5.68rem;
    border-radius: 0.2rem;
  }
  .news .list .one a .name {
    padding: 0.2rem 0 0;
  }
  .news .list .one a .name em {
    font-size: var(--fs16);
    line-height: 0.52rem;
    max-height: 1.04rem;
  }
}
.authorization {
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}
.authorization .links {
  margin-bottom: 1.3rem;
}
.authorization .links ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.authorization .links li {
  margin: 0 0.24rem;
}
.authorization .links li a {
  display: flex;
  align-items: center;
  width: 3.7rem;
  height: 1.7rem;
  padding: 0 0.45rem;
  border-radius: 14px;
  background: #fff;
  border: #fff solid 1px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}
.authorization .links li a .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.04rem;
  height: 1.04rem;
}
.authorization .links li a .imgDiv img {
  max-width: 100%;
}
.authorization .links li a .pj {
  padding-left: 0.4rem;
}
.authorization .links li a .name {
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #000;
}
.authorization .links li a .zi {
  font-size: var(--fs15);
  color: #666;
  line-height: 0.32rem;
}
.authorization .links li .aNow {
  border: #dd0000 solid 1px;
}
.authorization .selectGroup {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  z-index: 2;
}
.authorization .selectGroup .box {
  margin: 0 0.1rem;
}
.authorization .selectGroup .select {
  width: 2.88rem;
  position: relative;
}
.authorization .selectGroup .select .caption {
  overflow: hidden;
  border-radius: 0.48rem;
  position: relative;
  cursor: pointer;
  height: 0.6rem;
  line-height: 0.58rem;
  width: 100%;
  padding: 0 0.4rem 0 0.3rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs14);
  color: #333;
  border: #FFD9D9 solid 1px;
}
.authorization .selectGroup .select .caption::after {
  content: "";
  position: absolute;
  display: block;
  width: 9px;
  height: 8px;
  background: url(../img/selectIco.png) no-repeat center;
  right: 0.3rem;
  top: 50%;
  margin-top: -4px;
  z-index: 2;
}
.authorization .selectGroup .select .xlist {
  display: none;
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: 4;
  width: 100%;
  background: #fff;
  max-height: 2.5rem;
  overflow: auto;
  border: #ebebeb solid 1px;
  border-top: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.authorization .selectGroup .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.authorization .selectGroup .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.authorization .selectGroup .select .xlist::-webkit-scrollbar-thumb {
  background-color: #dd0000;
}
.authorization .selectGroup .select .xlist a {
  display: block;
  position: relative;
  line-height: 0.5rem;
  height: 0.5rem;
  cursor: pointer;
  color: #999;
  font-size: var(--fs14);
  overflow: hidden;
  padding: 0 0.3rem;
}
.authorization .selectGroup .select .xlist a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ebebeb;
}
.authorization .selectGroup .select .xlist a:last-child::after {
  display: none;
}
.authorization .selectGroup .select .xlist a:hover {
  color: #dd0000;
}
.authorization .selectGroup .form {
  position: relative;
  width: 2.88rem;
  height: 0.6rem;
  overflow: hidden;
}
.authorization .selectGroup .form .input1 {
  border: #FFD9D9 solid 1px;
  border-radius: 0.45rem;
  height: 0.6rem;
  line-height: 0.58rem;
  color: #999;
  background: none;
  width: 100%;
  font-size: var(--fs14);
  padding-left: 0.3rem;
}
.authorization .selectGroup .form .input1::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.authorization .selectGroup .form .input1:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.authorization .selectGroup .form .input1::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.authorization .selectGroup .form .input1:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.authorization .selectGroup .form .btnDiv {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.authorization .selectGroup .form .btnDiv a {
  display: block;
  width: 0.6rem;
  text-align: center;
  height: 0.6rem;
  background: #dd0000 url(../img/search.svg) center no-repeat;
  background-size: 0.36rem;
  border-radius: 50%;
}
.authorization .list {
  padding-top: 0.8rem;
}
.authorization .list .liDiv {
  margin-top: 0.4rem;
}
.authorization .list .liDiv:first-child {
  margin-top: 0;
}
.authorization .list .liDiv .toptop {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  border-radius: 14px 14px 0 0;
  height: 0.7rem;
  background: #ff0103;
  overflow: hidden;
  color: #fff;
  padding: 0 0.3rem 0 0.95rem;
}
.authorization .list .liDiv .toptop .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 0.3rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.25rem;
  background: #fff;
  border-radius: 50%;
}
.authorization .list .liDiv .toptop .ico img {
  width: 0.22rem;
}
.authorization .list .liDiv .toptop .province {
  font-size: var(--fs22);
  line-height: 0.3rem;
}
.authorization .list .liDiv .toptop .area {
  font-size: var(--fs14);
  line-height: 0.2rem;
}
.authorization .list .liDiv .botbot {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  border-top: none;
  border: #ff0103 solid 1px;
  border-radius: 0 0 14px 14px;
  background: #fff;
  overflow: hidden;
  padding: 0.52rem 0;
}
.authorization .list .liDiv .wen {
  font-size: var(--fs15);
  line-height: 0.24rem;
  color: #999;
  position: relative;
  padding-left: 0.25rem;
  margin-bottom: 0.15rem;
}
.authorization .list .liDiv .wen img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.1rem;
  width: 0.19rem;
}
.authorization .list .liDiv .leftDiv {
  width: 33.33%;
  padding: 0 0.3rem 0 0.56rem;
  position: relative;
}
.authorization .list .liDiv .leftDiv::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #F2F2F2;
}
.authorization .list .liDiv .leftDiv .lie li {
  padding-bottom: 0.2rem;
}
.authorization .list .liDiv .leftDiv .lie li .zi {
  position: relative;
  padding-left: 0.26rem;
  color: #333;
  font-size: var(--fs14);
  line-height: 0.22rem;
  margin-bottom: 6px;
}
.authorization .list .liDiv .leftDiv .lie li .zi::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  margin-top: -0.05rem;
  background: #ff0103;
}
.authorization .list .liDiv .leftDiv .lie li .msg {
  position: relative;
  padding-left: 0.26rem;
  font-size: var(--fs14);
  line-height: 0.26rem;
  color: #999;
}
.authorization .list .liDiv .leftDiv .lie li .msg::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 0;
  height: 100%;
  width: 1px;
  border-left: 1px dashed #D8D8D8;
}
.authorization .list .liDiv .leftDiv .lie li:last-child {
  padding-bottom: 0;
}
.authorization .list .liDiv .midDiv {
  position: relative;
  width: 33.33%;
  padding: 0 0.45rem;
}
.authorization .list .liDiv .midDiv::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #F2F2F2;
}
.authorization .list .liDiv .midDiv .msglie li {
  padding: 0.3rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 1, 3, 0.15);
  background: rgba(255, 1, 3, 0.02);
  margin-bottom: 0.3rem;
}
.authorization .list .liDiv .midDiv .msglie li:last-child {
  margin-bottom: 0;
}
.authorization .list .liDiv .midDiv .msglie li .cn {
  display: flex;
  position: relative;
  padding-bottom: 0.1rem;
}
.authorization .list .liDiv .midDiv .msglie li .cn em {
  font-size: var(--fs16);
  color: #000;
  line-height: 0.3rem;
}
.authorization .list .liDiv .midDiv .msglie li .cn .l7 {
  font-size: var(--fs16);
  color: #000;
  line-height: 0.3rem;
}
.authorization .list .liDiv .midDiv .msglie li .cn .l7 span {
  color: #999;
  font-size: var(--fs14);
  display: block;
  line-height: 0.2rem;
}
.authorization .list .liDiv .midDiv .info {
  padding-bottom: 0.4rem;
}
.authorization .list .liDiv .midDiv .info dd {
  position: relative;
  padding-left: 0.36rem;
  font-size: var(--fs16);
  color: #000;
  line-height: 0.28rem;
}
.authorization .list .liDiv .midDiv .info dd a {
  color: #000;
}
.authorization .list .liDiv .midDiv .info dd a:hover {
  color: #dd0000;
}
.authorization .list .liDiv .midDiv .info dd img {
  position: absolute;
  left: 0;
  top: 0.06rem;
  width: 0.19rem;
}
.authorization .list .liDiv .midDiv .labelDiv em {
  display: block;
  font-size: var(--fs14);
  line-height: 0.24rem;
  color: #999;
  margin-bottom: 8px;
}
.authorization .list .liDiv .midDiv .labelDiv dl {
  display: flex;
  flex-wrap: wrap;
}
.authorization .list .liDiv .midDiv .labelDiv dd {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0 0.1rem 0.1rem 0;
  font-size: var(--fs14);
  color: #FF0103;
  min-width: 0.92rem;
  padding: 0 0.1rem;
  height: 0.3rem;
  border-radius: 6px;
  background: rgba(255, 1, 3, 0.08);
}
.authorization .list .liDiv .rightDiv {
  width: 33.33%;
  padding: 0 0.56rem 0 0.4rem;
}
.authorization .list .liDiv .rightDiv .agency {
  margin-bottom: 0.4rem;
}
.authorization .list .liDiv .rightDiv .agency:last-child {
  margin-bottom: 0;
}
.authorization .list .liDiv .rightDiv .agency li {
  border-radius: 15px;
  border: 1px solid rgba(255, 1, 3, 0.15);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  margin-bottom: 0.4rem;
}
.authorization .list .liDiv .rightDiv .agency li:last-child {
  margin-bottom: 0;
}
.authorization .list .liDiv .rightDiv .agency li .touDiv {
  padding: 0.2rem 0.3rem 0.1rem;
  border-radius: 10px;
  border-bottom: 2px solid #FF0103;
  background: rgba(255, 1, 3, 0.03);
}
.authorization .list .liDiv .rightDiv .agency li .touDiv .title {
  font-size: var(--fs14);
  line-height: 0.2rem;
  color: #999;
}
.authorization .list .liDiv .rightDiv .agency li .touDiv .company {
  font-size: var(--fs16);
  color: #333;
  line-height: 0.28rem;
}
.authorization .list .liDiv .rightDiv .agency li .botDiv {
  background: #fff;
  padding: 0 0.3rem;
}
.authorization .list .liDiv .rightDiv .agency li .botDiv dd {
  padding: 0.25rem 0;
  border-bottom: rgba(0, 0, 0, 0.1) solid 1px;
}
.authorization .list .liDiv .rightDiv .agency li .botDiv dd:last-child {
  border-bottom: none;
}
.authorization .list .liDiv .rightDiv .agency li .botDiv dd .name {
  font-size: var(--fs16);
  color: #000;
  line-height: 0.28rem;
  margin-bottom: 6px;
}
.authorization .list .liDiv .rightDiv .agency li .botDiv dd .hala p {
  position: relative;
  padding-left: 0.36rem;
  font-size: var(--fs16);
  color: #000;
  line-height: 0.28rem;
}
.authorization .list .liDiv .rightDiv .agency li .botDiv dd .hala p a {
  color: #000;
}
.authorization .list .liDiv .rightDiv .agency li .botDiv dd .hala p a:hover {
  color: #dd0000;
}
.authorization .list .liDiv .rightDiv .agency li .botDiv dd .hala p img {
  position: absolute;
  left: 0;
  top: 0.06rem;
  width: 0.19rem;
}
.authorization .more {
  margin-top: 0.9rem;
  text-align: center;
}
@media (max-width: 1004px) {
  .authorization .links {
    margin-bottom: 0.7rem;
  }
  .authorization .links ul {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .authorization .links li {
    width: calc((100% - 0.2rem)/2);
    margin: 0.2rem 0.2rem 0 0;
  }
  .authorization .links li:nth-child(2n) {
    margin-right: 0;
  }
  .authorization .links li:nth-child(-n+2) {
    margin-top: 0;
  }
  .authorization .links li a {
    width: 100%;
    height: 1.45rem;
    padding: 0 0.3rem;
    border-radius: 0.2rem;
    box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.1);
  }
  .authorization .links li a .imgDiv {
    display: none;
  }
  .authorization .links li a .pj {
    padding-left: 0;
    width: 100%;
  }
  .authorization .links li a .name {
    text-align: center;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .authorization .links li a .zi {
    text-align: center;
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .authorization .selectGroup {
    display: block;
  }
  .authorization .selectGroup .box {
    margin: 0 0 0.3rem 0;
  }
  .authorization .selectGroup .box:last-child {
    margin: 0;
  }
  .authorization .selectGroup .select {
    width: 100%;
    position: relative;
  }
  .authorization .selectGroup .select .caption {
    height: 0.96rem;
    line-height: 0.94rem;
    width: 100%;
    padding: 0 0.75rem 0 0.3rem;
    font-size: var(--fs14);
  }
  .authorization .selectGroup .select .caption::after {
    right: 0.3rem;
  }
  .authorization .selectGroup .select .xlist {
    max-height: 4.3rem;
  }
  .authorization .selectGroup .select .xlist a {
    line-height: 0.86rem;
    height: 0.86rem;
    font-size: var(--fs14);
    padding: 0 0.3rem;
  }
  .authorization .selectGroup .form {
    width: 100%;
    height: 0.96rem;
  }
  .authorization .selectGroup .form .input1 {
    height: 0.96rem;
    line-height: 0.94rem;
  }
  .authorization .selectGroup .form .btnDiv a {
    width: 0.96rem;
    height: 0.96rem;
    background-size: 0.48rem;
  }
  .authorization .list .liDiv .toptop {
    border-radius: 0.2rem 0.2rem 0 0;
    height: 1.2rem;
    padding: 0 0.3rem 0 1.4rem;
  }
  .authorization .list .liDiv .toptop .ico {
    width: 0.86rem;
    height: 0.86rem;
    margin-top: -0.43rem;
  }
  .authorization .list .liDiv .toptop .ico img {
    width: 0.32rem;
  }
  .authorization .list .liDiv .toptop .province {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .authorization .list .liDiv .toptop .area {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .authorization .list .liDiv .botbot {
    border-radius: 0 0 0.2rem 0.2rem;
    padding: 0.6rem 0;
    display: block;
  }
  .authorization .list .liDiv .wen {
    font-size: var(--fs15);
    line-height: 0.48rem;
    padding-left: 0.45rem;
    margin-bottom: 0.2rem;
  }
  .authorization .list .liDiv .wen img {
    margin-top: -0.18rem;
    width: 0.36rem;
  }
  .authorization .list .liDiv .leftDiv {
    width: 100%;
    padding: 0 0.3rem 0.6rem;
  }
  .authorization .list .liDiv .leftDiv::after {
    right: auto;
    left: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    height: 1px;
  }
  .authorization .list .liDiv .leftDiv .lie li {
    padding-bottom: 0.4rem;
  }
  .authorization .list .liDiv .leftDiv .lie li .zi {
    padding-left: 0.3rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-bottom: 0.1rem;
  }
  .authorization .list .liDiv .leftDiv .lie li .zi::before {
    width: 6px;
    height: 6px;
    margin-top: -3px;
  }
  .authorization .list .liDiv .leftDiv .lie li .msg {
    padding-left: 0.3rem;
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .authorization .list .liDiv .leftDiv .lie li .msg::before {
    left: 2px;
  }
  .authorization .list .liDiv .midDiv {
    width: 100%;
    padding: 0.5rem 0.3rem 0.6rem;
  }
  .authorization .list .liDiv .midDiv::after {
    right: auto;
    left: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    height: 1px;
  }
  .authorization .list .liDiv .midDiv .msglie li {
    border-radius: 0.2rem;
  }
  .authorization .list .liDiv .midDiv .msglie li .cn {
    display: flex;
    position: relative;
    padding-bottom: 0.1rem;
  }
  .authorization .list .liDiv .midDiv .msglie li .cn em {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .authorization .list .liDiv .midDiv .msglie li .cn .l7 {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .authorization .list .liDiv .midDiv .msglie li .cn .l7 span {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .authorization .list .liDiv .midDiv .info dd {
    padding-left: 0.45rem;
    font-size: var(--fs14);
    line-height: 0.56rem;
  }
  .authorization .list .liDiv .midDiv .info dd img {
    top: 0.1rem;
    width: 0.32rem;
  }
  .authorization .list .liDiv .midDiv .labelDiv em {
    line-height: 0.42rem;
  }
  .authorization .list .liDiv .midDiv .labelDiv dd {
    font-size: var(--fs13);
    padding: 0 0.2rem;
    min-width: 1.5rem;
    height: 0.56rem;
  }
  .authorization .list .liDiv .rightDiv {
    width: 100%;
    padding: 0.5rem 0.3rem 0;
  }
  .authorization .list .liDiv .rightDiv .agency li {
    border-radius: 0.2rem;
  }
  .authorization .list .liDiv .rightDiv .agency li .touDiv {
    padding: 0.25rem 0.3rem;
    border-radius: 0.2rem;
  }
  .authorization .list .liDiv .rightDiv .agency li .touDiv .title {
    line-height: 0.42rem;
  }
  .authorization .list .liDiv .rightDiv .agency li .touDiv .company {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .authorization .list .liDiv .rightDiv .agency li .botDiv dd {
    padding: 0.35rem 0;
  }
  .authorization .list .liDiv .rightDiv .agency li .botDiv dd .name {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .authorization .list .liDiv .rightDiv .agency li .botDiv dd .hala p {
    padding-left: 0.45rem;
    font-size: var(--fs14);
    line-height: 0.56rem;
  }
  .authorization .list .liDiv .rightDiv .agency li .botDiv dd .hala p img {
    top: 0.1rem;
    width: 0.32rem;
  }
}
.pageCon {
  padding: 1.2rem 0;
}
.pageCon .title {
  text-align: center;
  font-size: var(--fs48);
  color: #333;
  font-weight: bold;
  line-height: 0.48rem;
  margin-bottom: 0.45rem;
}
.pageCon .content {
  font-size: var(--fs18);
  line-height: 0.36rem;
}
@media (max-width: 1004px) {
  .pageCon {
    padding: 1rem 0;
  }
  .pageCon .title {
    font-size: var(--fs22);
    line-height: 0.56rem;
  }
  .pageCon .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
}
