@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}
li {
  list-style: none;
} /*全局样式*/ html, body {
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}
html {
  font-size: 5.2083333333333vw;
}
@media (max-width:1199px) {
  html {
    font-size: 6.6vw;
  }
}
@media (max-width:767px) {
  html {
    font-size: 13.3vw;
  }
} /*= 清除浮动=*/ .clear {
  clear: both;
  height: 0px;
  line-height: 0px;
  font-size: 0px;
  overflow: hidden;
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  height: 0px;
  clear: both;
  visibility: hidden;
  font-size: 0px;
}
:focus {
  outline: 0
}
a, button, input[type="button"], input[type="submit"], input[type="reset"] {
  cursor: pointer
} /* Hides from IE-mac \*/ * html .clearfix {
  height: 0%;
} /* End hide from IE-mac */ * + html .clearfix {
  min-height: 0%;
} /* 针对IE7 */ * + html .clearfix {
  min-height: 0%;
} /*原文件配置*/ body {
  color: #333;
  background: #ffffff;
  font: .16rem 'Microsoft YaHei', arial, sans-serif;
  min-width: 320px;
}
@media (max-width:450px) {
  .home-news .focus .swiper-container img {
    max-height: 290px;
  }
  video {
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width:767px) {
  body {
    font-size: 14px;
  }
}
a {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #e00700;
} /*块级转化*/ .di_in {
  display: inline-block;
}
.di_no {
  display: none;
}
.di_bl {
  display: block;
} /*原文件配置  end*/ /*横向居中*/ .te_c {
  text-align: center;
} /*相对定位*/ .footer .link {
  margin-top: .3rem;
  margin-left: .2rem;
}
.footer .link a {
  color: #ffffff;
  margin-right: .1rem;
}
.p_r {
  position: relative;
}
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flex-v {
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.flex-align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-pack-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-pack-justify {
  -webkit-box-pack: justify;
  -webkit-justify-content: pace-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-warp {
  flex-flow: wrap
}
.flex-column {
  flex-flow: column
}
.ellipsis-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.ellipsis-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ellipsis-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.transition {
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s
}
img {
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}
.img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}
@media (max-width:1199px) {
  .container {
    padding-left: .2rem;
    padding-right: .2rem;
  }
}


.header {
  background-color: rgba(224, 7, 0, 0.1);
  background-size: contain;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  height: 1.2rem;
  position: fixed;
  transition: background 0.3s ease;
  /* 修复ios fixed半透明发白核心代码 */
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  /* 关闭ios自带图层缓存白底 */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.header.solid {
  background-color: #e00700;
  transition: background 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  /* 实色头部不需要模糊，清空 */
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.header .logo {
  margin-right: .5rem;
}
.header .logo img {
  height: .69rem;
}
.header .top {
  justify-content: flex-end;
  color: #FFF;
  margin-top: .25rem;
}
.header .search-btn {
  width: .15rem;
  height: .15rem;
  background: url(../images/search.svg)no-repeat center;
  background-size: 100%;
  margin-right: .2rem;
  cursor: pointer;
}
.header .lang {
  color: #FFF;
  text-transform: uppercase;
  margin-left: .2rem;
}
.menu-btn {
  display: none;
  background: url(../images/menu.svg)no-repeat center;
  width: .5rem;
  height: .5rem;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: .2rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.menu-btn.close {
  background-image: url(../images/close.svg);
}
.nav li > a {
  line-height: 2;
  font-size: .2rem;
  color: #FFF;
}
.nav li.on a {
  color: #333;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.nav .drop {
  left: -.3rem;
  right: -.3rem;
  top: .4rem;
  position: absolute;
  transition: transform 0.2s linear, opacity 0.2s linear;
  -webkit-transition: transform 0.2s linear, opacity 0.2s linear;
  -moz-transition: transform 0.2s linear, opacity 0.2s linear;
  -ms-transition: transform 0.2s linear, opacity 0.2s linear;
  -o-transition: transform 0.2s linear, opacity 0.2s linear;
  transform-origin: top;
  z-index: 9;
  transform: rotateX(90deg);
  opacity: 0;
  -webkit-transform: rotateX(90deg);
  -moz-transform: rotateX(90deg);
  -ms-transform: rotateX(90deg);
  -o-transform: rotateX(90deg);
  background-color: #FFF;
  line-height: .4rem;
  padding-top: .05rem;
}
.nav .drop::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -8px;
  width: 0;
  height: 0;
  border-left: 8px transparent solid;
  border-right: 8px transparent solid;
  border-bottom: 8px #FFF solid;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
/* hover展开 */
.nav li.p_r:hover .drop {
  opacity: 1;
  transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
}

/* 核心：下拉内部没有a标签=无子栏目，全部隐藏 */
.nav .drop:not(:has(a)) {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
/* 隐藏三角 */
.nav .drop:not(:has(a))::after {
  display: none !important;
}
/* 隐藏右侧箭头 */
.nav li.p_r:has(.drop:not(:has(a))) .arrow {
  display: none !important;
}






.m-search {
  display: none;
  border-bottom: 1px #FFF solid;
}
.m-search input[type='text'] {
  height: .7rem;
  color: #FFF;
  background: none;
}
.m-search input[type='text']::placeholder {
  color: #FFF;
}
.m-search input[type='submit'] {
  background: url(../images/search.svg)no-repeat center;
  width: .8rem;
  background-size: .24rem;
}
.search-content {
  background: #e00700;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10001;
  display: none;
  width: 100%;
  height: 100%;
}
.search-content .close {
  position: absolute;
  right: .6rem;
  top: .6rem;
  width: .6rem;
  height: .6rem;
  background: url(../images/close.svg)no-repeat center;
  background-size: .4rem;
  cursor: pointer;
  z-index: 10;
}
.search-content .content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 8rem;
  height: .8rem;
  border-bottom: 1px #FFF solid;
}
.search-content .content input[type='text'] {
  color: #FFF;
  font-size: .18rem;
  background: none;
}
.search-content .content input[type='text']::placeholder {
  color: #FFF;
}
.search-content .content input[type='submit'] {
  width: .6rem;
  background: url(../images/search.svg)no-repeat center;
  background-size: .3rem;
}
.footer {
  width: 100%;
  background: url(../images/f-bg.png)no-repeat center;
  background-size: 100% 100%;
  padding-top: .5rem;
  z-index: 10;
  color: #FFF;
  margin-top: 2rem;
}
.footer .logo img {
  height: .69rem;
}
.footer .info {
  line-height: 2;
  margin-right: .6rem;
}
.footer .erwma {
  margin-right: .2rem;
  width: 1rem;
}
.footer .erwma:last-child {
  margin-right: 0;
}
.footer .erwma .pic {
  padding: 5px;
  background-color: #FFF;
}
.footer .erwma .pic img {
  width: 100%;
}
.footer .erwma .tit {
  margin-top: .1rem;
}
@keyframes ani_roll2 {
  0% {
    background-position: 0 bottom;
  }
  100% {
    background-position: -100% bottom;
  }
}
.footer .footer-cloud {
  position: absolute;
  left: 0;
  right: 0;
  height: .67rem;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  z-index: -2;
  top: -0;
  transform: translateY(-99%);
  -webkit-transform: translateY(-99%);
  -moz-transform: translateY(-99%);
  -ms-transform: translateY(-99%);
  -o-transform: translateY(-99%);
}
.footer .footer-cloud .cloud1 {
  position: relative;
  z-index: 2;
  display: -webkit-flex;
  display: flex;
  background: url(../images/f-bg1.png) 0 bottom repeat-x;
  background-size: auto 100%;
  animation: 55s linear infinite ani_roll2;
  -webkit-animation: 55s linear infinite ani_roll2;
}
.footer .footer-cloud .cloud2 {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0rem;
  z-index: 1;
  display: -webkit-flex;
  display: flex;
  background: url(../images/f-bg2.png) 0 bottom repeat-x;
  background-size: auto 100%;
  animation: 30s linear infinite ani_roll2;
  -webkit-animation: 30s linear infinite ani_roll2;
}
.footer .footer-cloud img {
  opacity: 0 !important;
  visibility: hidden !important;
  animation: none;
  -webkit-animation: none;
}
.copyright {
  border-top: 1px rgba(255, 255, 255, .2) solid;
  margin-top: .3rem;
  padding-top: .3rem;
  padding-bottom: .3rem;
}
.copyright img {
  width: .28rem;
  margin-right: .1rem;
}
.copyright .text {
  margin-right: .3rem;
}
.copyright a {
  color: #FFF;
}
@keyframes banner {
  0% {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}
.banner {
  overflow: hidden;
}
.banner img {
  width: 100%;
  height: 100vh;
}
.banner .swiper-slide {
  overflow: hidden;
}
.banner .swiper-slide-active {
  animation: 6s linear infinite banner;
  -webkit-animation: 6s linear infinite banner;
}
.banner .swiper-pagination {
  bottom: .5rem;
}
.banner .swiper-pagination-bullet {
  background-color: #FFF;
  opacity: 1;
  width: .16rem;
  height: .16rem;
  margin: 0 .17rem !important;
}
.banner .swiper-pagination-bullet-active {
  background: url(../images/banner-icon.svg)no-repeat center;
  background-size: 100%;
  width: .44rem;
  height: .44rem;
}
@font-face {
  font-family: 'HarmonyOS_Sans_Medium';
}
.home-title .en {
  background: url(../images/tit-icon.svg)no-repeat left center;
  padding-left: .5rem;
  background-size: .4rem;
  line-height: .4rem;
  height: .4rem;
  color: rgba(224, 7, 0, .2);
  font-size: .22rem;
  font-family: 'HarmonyOS_Sans_Medium';
  text-transform: uppercase;
}
.home-title .cn {
  color: #e00700;
  font-size: .32rem;
  font-weight: bold;
  line-height: 1;
}
.home-title .more {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.48rem;
  background: url(../images/more.svg)no-repeat right bottom;
  background-size: 100%;
  padding-bottom: .3rem;
}
.home-news {
  width: 10.5rem;
  margin-right: .4rem;
  margin-top: .55rem;
}
.home-news .focus {
  width: 100%;
  height: 6rem;
  overflow: hidden;
  margin-top: .5rem;
}
.home-news .focus .text-con {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: .3rem 2rem.3rem .5rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .7));
  z-index: 2;
  color: #FFF;
  line-height: 1.8;
}
.home-news .focus .date {
  font-size: .18rem;
  font-family: 'HarmonyOS_Sans_Medium';
}
.home-news .focus .tit {
  font-size: .2rem;
  font-weight: bold;
}
.home-news .focus .swiper-pagination {
  left: auto;
  right: .2rem;
  width: auto;
  bottom: .35rem;
}
.home-news .focus .swiper-pagination-bullet {
  background-color: #FFF;
  width: 10px;
  height: 10px;
  margin: 0 .1rem !important;
  position: relative;
}
.home-news .focus .swiper-pagination-bullet-active {
  margin: 0 .15rem !important;
}
.home-news .focus .swiper-pagination-bullet-active::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px #FFF dashed;
}
.home-news .item {
  margin-top: .3rem;
  width: 49%;
  margin-right: 2%;
  padding: .4rem .2rem;
  background-color: #F5F5F5;
  box-shadow: 0 0 .2rem rgba(0, 0, 0, .1);
  border-bottom: 4px #e00700 solid;
}
.home-news .item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 4px;
  background-color: #FF8F1F;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  z-index: 1;
}
.home-news .item:last-child {
  margin-right: 0;
}
.home-news .item .pic {
  margin-right: .2rem;
  width: 2.3rem;
  height: 1.4rem;
  overflow: hidden;
}
.home-news .item .tit {
  font-size: .18rem;
  font-weight: bold;
  margin-top: .05rem;
  line-height: 1.6;
}
.home-news .item .date {
  position: absolute;
  left: 0;
  bottom: .05rem;
  background: url(../images/date.svg)no-repeat left center;
  padding-left: .25rem;
  background-size: .17rem;
  font-size: .14rem;
  font-family: 'HarmonyOS_Sans_Medium';
  color: #666;
}
.home-notice {
  margin-top: .55rem;
}
.home-notice .con {
  width: 100%;
  background: url(../images/tbg2.png)no-repeat left top;
  background-size: cover;
  padding-top: .5rem;
  height: 8.5rem;
  margin-top: .5rem;
  padding-left: .3rem;
  padding-right: .3rem;
}
.home-notice .item {
  z-index: 9;
  border-bottom: 1px #D8D8D8 dashed;
  padding: .34rem .08rem;
}
.home-notice .item:last-child {
  border-bottom: 0;
}
.home-notice .item .tit {
  font-size: .18rem;
}
.home-notice .item .des {
  display: none;
  font-size: .14rem;
  color: #FFF;
  opacity: .6;
  margin-top: .15rem;
  line-height: 1.65;
}
.home-notice .item .date {
  background: url(../images/date.svg)no-repeat left center;
  padding-left: .25rem;
  background-size: .17rem;
  font-size: .14rem;
  font-family: 'HarmonyOS_Sans_Medium';
  color: #666;
  margin-top: .12rem;
}
.home-notice .item.on {
  padding: .2rem .08rem;
}
.home-notice .item.on .tit {
  color: #FFF;
  text-decoration: underline;
  font-weight: bold;
}
.home-notice .item.on .des {
  display: block;
}
.home-notice .item.on .date {
  background-image: url(../images/date1.svg);
  color: #FFF;
}
.home-notice .item.on::after {
  content: '';
  position: absolute;
  left: -.3rem;
  right: -.5rem;
  bottom: 0;
  height: 100%;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  background: url(../images/tbg1.png)no-repeat left center;
  background-size: cover;
  z-index: -1;
  background-image: linear-gradient(90deg, #e00700, #d80000);
}
.home-notice .item.on::before {
  content: '';
  position: absolute;
  right: -.5rem;
  width: .2rem;
  height: .2rem;
  background-color: #a20000;
  bottom: -.2rem;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
  clip-path: polygon(100% 0, 0 0, 0 100%);
}
.home-keyan, .home-xueshu {
  margin-top: .55rem;
  z-index: 10;
}
.home-keyan {
  width: 7.7rem;
  margin-right: .6rem;
}
.home-keyan .text-content {
  margin-top: .4rem;
}
.home-keyan .text-content .pic {
  width: 3.6rem;
  height: 2.1rem;
  overflow: hidden;
}
.home-keyan .text-content .con {
  padding: .2rem;
  background: url(../images/tbg3.png)no-repeat left top;
  background-size: cover;
}
.home-keyan .text-content .tit {
  font-weight: bold;
  font-size: .18rem;
  color: #e00700;
  padding-bottom: .1rem;
}
.home-keyan .text-content .tit::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: .5rem;
  background-color: #e00700;
}
.home-keyan .text-content .des {
  color: #B5B5B5;
  margin-top: .2rem;
}
.home-keyan .text-content .date {
  color: #e00700;
  align-items: flex-end;
  margin-top: .1rem;
}
.home-keyan .text-content .date span {
  margin-right: .1rem;
  margin-bottom: .2rem;
}
.home-keyan .text-content .date span::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -.18rem;
  width: 1px;
  height: .3rem;
  background-color: #e00700;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.home-keyan .text-content .dot {
  width: .54rem;
  height: .54rem;
  background: url(../images/icon.png)no-repeat center;
  background-size: 100%;
  position: absolute;
  right: -.25rem;
  bottom: -.2rem;
  z-index: 2;
}
.home-keyan li {
  margin-top: .15rem;
  padding-left: .2rem;
  font-size: .18rem;
  padding-top: .05rem;
  padding-bottom: .1rem;
  z-index: 2;
}
.home-keyan li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #ffe9e1;
  border-left: 4px #e00700 solid;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  opacity: 0;
  z-index: -1;
}
.home-keyan li a::after {
  content: '';
  position: absolute;
  left: -.2rem;
  top: .08rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px #323232 solid;
}
.home-keyan li .date {
  color: #9F9F9F;
  margin-top: .05rem;
}
.home-xueshu ul {
  margin-top: .4rem;
}
.home-xueshu li {
  margin-bottom: .22rem;
  padding-left: .6rem;
}
.home-xueshu li a {
  height: .9rem;
}
.home-xueshu li .date {
  position: absolute;
  left: 0;
  top: 0;
  width: .9rem;
  height: .9rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #F4F4F4;
  border: 1px #E8E8E8 solid;
  z-index: 3;
  font-size: .2rem;
  padding-top: .15rem;
}
.home-xueshu li .date span {
  color: #9F9F9F;
  font-size: .22rem;
}
.home-xueshu li .tit {
  height: .86rem;
  border: 1px #E8E8E8 solid;
  line-height: .86rem;
  padding-left: .7rem;
  padding-right: .2rem;
  font-size: .18rem;
  z-index: 1;
}
.home-xueshu li .tit::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(90deg, #e00700, #d80000);
  z-index: -1;
  width: 0;
  height: 100%;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}
.home-guanli, .home-zhaosheng {
  margin-top: .9rem;
  z-index: 11;
}
.home-zhaosheng {
  margin-right: .6rem;
}
.home-zhaosheng .content {
  margin-top: .3rem;
}
.home-zhaosheng .item {
  padding: .25rem .2rem .25rem .1rem;
}
.home-zhaosheng .item::after {
  content: '';
  position: absolute;
  left: 1.4rem;
  bottom: 0;
  right: 0;
  height: 1px;
  border-bottom: 1px dotted #9E9E9E;
}
.home-zhaosheng .item::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #E00700;
}
.home-zhaosheng .item:last-child::after {
  display: none;
}
.home-zhaosheng .item .dot {
  position: absolute;
  top: .18rem;
  width: .2rem;
  height: .2rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #e00700;
  left: -.5rem;
  z-index: 4;
}
.home-zhaosheng .item .dot::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: .1rem;
  height: .1rem;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  background-color: #ffffff;
  z-index: 5;
}
.home-zhaosheng .date {
  font-size: .14rem;
  color: #9E9E9E;
  width: .7rem;
  margin-right: .6rem;
}
.home-zhaosheng .date span {
  font-weight: bold;
  font-size: .26rem;
  color: #e00700;
}
.home-zhaosheng .txt-con {
  padding-top: .15rem;
}
.home-zhaosheng .item .txt-con::after {
  content: '';
  position: absolute;
  z-index: 3;
  left: -.4rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: #e00700;
}
.home-zhaosheng .tit {
  font-size: .18rem;
}
.home-guanli {
  width: 7.7rem;
}
.home-guanli .card {
  margin-top: .35rem;
  padding: .15rem;
  border: 1px #D8D8D8 solid;
}
.home-guanli .card .pic {
  width: 3.6rem;
  height: 2.3rem;
  overflow: hidden;
}
.home-guanli .card .text-con {
  padding: .2rem .3rem;
}
.home-guanli .card .tit {
  font-weight: bold;
  font-size: .18rem;
  line-height: 1.6;
}
.home-guanli .card .des {
  color: #9E9E9E;
  margin-top: .15rem;
  line-height: 1.8;
}
.home-guanli .card .time {
  background: url(../images/time.svg)left center no-repeat;
  background-size: .25rem;
  padding-left: .4rem;
  color: #9F9F9F;
  margin-top: .2rem;
}
.home-guanli li {
  border-bottom: 1px #9E9E9E dotted;
  line-height: .6rem;
  height: .6rem;
  padding-left: .3rem;
}
.home-guanli li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background-color: #E00700;
}
.home-guanli li:last-child {
  border-bottom: 0;
}
.home-guanli li .tit {
  margin-right: .3rem;
  min-width: 0;
  font-size: .18rem;
}
.home-guanli li .date {
  color: #9E9E9E;
}
.home-photo {
  margin-top: .55rem;
}
.home-photo .item {
  width: 31.3%;
  margin-right: 3%;
  overflow: hidden;
  height: 2.1rem;
  margin-top: .15rem;
}
.home-photo .item:nth-of-type(3n) {
  margin-right: 0;
}
.home-photo .item .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  height: .5rem;
  line-height: .5rem;
  background-color: rgba(0, 0, 0, .6);
  font-size: .18rem;
  color: #FFF;
}
.home-fc {
  margin-top: 1.15rem;
  padding-left: 1.6rem;
  padding-right: 3.3rem;
  z-index: 8;
}
.home-fc .quan1 {
  position: absolute;
  left: 0;
  top: -1.1rem;
  width: 2.93rem;
  height: 2.93rem;
  background: url(../images/q1.png)no-repeat center;
  background-size: 100%;
  z-index: -1;
  animation: 50s linear infinite ani_turn2;
  -webkit-animation: 50s linear infinite ani_turn2;
}
.home-fc .quan2 {
  position: absolute;
  right: -1.5rem;
  top: -2.4rem;
  width: 10.2rem;
  height: 10.2rem;
  background: url(../images/q2.png)no-repeat center;
  background-size: 100%;
  z-index: -1;
  animation: 100s linear infinite ani_turn2;
  -webkit-animation: 100s linear infinite ani_turn2;
}
@keyframes ani_turn2 {
  0% {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
.home-fc .entxt {
  color: #FF8F1F;
  opacity: .05;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: bold;
  position: absolute;
  z-index: -1;
  right: -1.2rem;
  top: 1rem;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.home-fc .title {
  position: absolute;
  left: 1.6rem;
  top: 0;
  z-index: 10;
}
.home-fc .title .cn {
  color: #e00700;
  font-weight: bold;
  font-size: .32rem;
}
.home-fc .title .en {
  font-size: .48rem;
  opacity: .1;
  text-transform: uppercase;
  margin-top: .1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}
.home-fc .title .more {
  width: 1.48rem;
  background: url(../images/more.svg)no-repeat right bottom;
  background-size: 100%;
  padding-bottom: .3rem;
  margin-top: .8rem;
  color: #666;
}
.home-fc .home-title {
  display: none;
}
.home-fc .content {
  padding-left: 3.9rem;
  height: 6.8rem;
}
.home-fc .btn {
  position: absolute;
  left: -3.9rem;
  bottom: .7rem;
  padding-bottom: .2rem;
  right: 5rem;
  z-index: 8;
}
.home-fc .swiper-pagination-progressbar {
  width: 100%;
  height: 2px;
  left: auto;
  bottom: 0;
  background-color: #D8D8D8;
}
.home-fc .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #e00700;
  height: 3px;
  top: auto;
  bottom: 0;
}
.home-fc .btn .swiper-num {
  font-size: .18rem;
  color: #818181;
}
.home-fc .btn .active {
  color: #e00700;
  font-size: .3rem;
  font-weight: bold;
}
.home-fc .view .swiper-slide {
  overflow: hidden;
}
.home-fc .view .pic {
  z-index: 7;
  width: 4rem;
  height: 5.1rem;
  overflow: hidden;
  margin-top: .4rem;
}
.home-fc .view .text-con {
  padding: .4rem .5rem;
  z-index: 4;
}
.home-fc .view .text-con::after {
  content: '';
  position: absolute;
  left: 0;
  right: -3rem;
  top: 0;
  z-index: -1;
  height: 100%;
  background-image: linear-gradient(90deg, #e00700, #FFF);
  opacity: .1;
}
.home-fc .view .tit-con {
  border-bottom: 1px #D8D8D8 solid;
}
.home-fc .view .tit-con span {
  font-size: .3rem;
  color: #e00700;
  font-weight: bold;
  margin-right: .2rem;
  padding-bottom: .15rem;
}
.home-fc .view .tit-con span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 4px;
  background-color: #e00700;
}
.home-fc .view .des {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  font-size: .18rem;
  color: #797979;
  line-height: 2;
  margin-top: .3rem;
}
.home-fc .view .gd {
  line-height: .4rem;
  border-radius: .2rem;
  -webkit-border-radius: .2rem;
  -moz-border-radius: .2rem;
  -ms-border-radius: .2rem;
  -o-border-radius: .2rem;
  padding: 0 .3rem;
  border: 1px #e00700 solid;
  margin-top: .6rem;
  color: #e00700;
}
.home-fc .preview {
  position: absolute;
  left: 0;
  bottom: .15rem;
  width: 9.4rem;
  height: 1.48rem;
  overflow: hidden;
}
.home-fc .preview .swiper-slide {
  width: 1.48rem;
  height: 1.48rem;
  overflow: hidden;
  margin-right: .5rem;
  z-index: 2;
  cursor: pointer;
}
.home-fc .preview .active-nav::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #e00700;
  z-index: -1;
}

.swiper-slide:first-child {
  /* 把active-nav对应的样式写在这里 */
 
}

.home-fc .preview .swiper-slide .pic {
  width: 1.34rem;
  height: 1.34rem;
  z-index: 9;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
}
@media (min-width:1025px) {
  .nav li:hover .drop {
    opacity: 1;
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
  }
  .nav .drop a:hover {
    background-color: #e00700;
    color: #FFF;
  }
  .nav li:hover > a, .home-guanli li:hover .tit {
    font-weight: bold;
  }
  .copyright a:hover, .home-news .item:hover .tit, .home-keyan .text-content:hover .tit, .home-photo .item:hover .text, .home-guanli .card:hover .tit {
    text-decoration: underline;
  }
  .home-news .focus .swiper-slide:hover img, .home-news .item:hover .pic img, .home-keyan .text-content:hover .pic img, .home-photo .item:hover img, .home-guanli .card:hover .pic img, .home-fc .view .swiper-slide:hover .pic img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
  }
  .home-news .focus .swiper-slide:hover .tit {
    text-decoration: underline;
  }
  .home-news .item:hover {
    background: url(../images/tbg1.png)no-repeat center;
    background-size: cover;
  }
  .home-news .item:hover::after, .home-xueshu li:hover .tit::after {
    width: 100%;
  }
  .home-news .item:hover .tit, .home-news .item:hover .date, .home-xueshu li:hover .tit, .home-zhaosheng .item:hover .tit, .home-zhaosheng .item:hover .date, .home-zhaosheng .item:hover .date span {
    color: #FFF;
  }
  .home-news .item:hover .date {
    background-image: url(../images/date1.svg);
  }
  .home-keyan li:hover::after {
    width: 100%;
    opacity: 1;
  }
  .home-keyan li:hover a::after, .home-zhaosheng .item:hover .dot, .home-zhaosheng .item:hover::after, .home-zhaosheng .item:hover::before {
    display: none;
  }
  .home-keyan li:hover .date, .home-xueshu li:hover .date span, .home-fc .title .more:hover {
    color: #e00700;
  }
  .home-xueshu li:hover .date {
    background-color: #FFF;
    border-color: #e00700;
    color: #e00700;
  }
  .home-zhaosheng .item:hover {
    background: url(../images/tbg4.png)no-repeat center;
    background-size: cover;
  }
  .home-fc .view .gd:hover {
    background-color: #e00700;
    color: #FFF;
  }
}
@media (max-width:1199px) {
  .header .top {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .nav-con {
    position: fixed;
    width: 100%;
    left: 0;
    top: 1.2rem;
    overflow-y: scroll !important;
    display: none;
    background-color: #e00700;
    z-index: 999;
    height: calc(100vh - 1.2rem);
    padding: .2rem .3rem;
  }
  .nav {
    display: block;
  }
  .nav .arrow {
    position: absolute;
    right: 0;
    top: 0;
    height: 1.1rem;
    width: .6rem;
  }
  .nav .arrow::after {
    content: '';
    background: url(../images/arrow.svg)no-repeat center;
    background-size: 100%;
    width: .32rem;
    height: .32rem;
    position: absolute;
    left: .1rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
  .nav .cur .arrow::after {
    transform: translateY(-50%) rotate(90deg);
    -webkit-transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
  }
  .nav .drop {
    position: static;
    left: auto;
    transform: translate(0, 0);
    opacity: 1;
    width: 100%;
    display: none;
    text-align: left;
    background: none;
    padding-top: 0;
    line-height: .7rem;
    padding-left: .2rem;
  }
  .nav .drop::after {
    display: none;
  }
  .nav .drop a {
    color: #FFF;
    font-size: 13px;
  }
  .m-search {
    display: block;
  }
  .nav li > a {
    font-size: 14px;
    line-height: 1.1rem;
  }
  .footer .footer-cloud {
    display: none;
  }
  .footer .erwma {
    width: 1.4rem;
  }
  @keyframes banner {
    0% {
      transform: scale(1);
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
    }
    100% {
      transform: scale(1);
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
    }
  }
  .home-fc {
    padding-left: .2rem;
    padding-right: .2rem;
  }
  .home-fc .title {
    left: .2rem;
  }
}
@media (max-width:767px) {	

.header {
  background-color: rgba(224, 7, 0, 1);
  background-size: contain;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  height: 1.2rem;
  position: fixed;
  transition: background 0.3s ease;
  /* 修复ios fixed半透明发白核心代码 */
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  /* 关闭ios自带图层缓存白底 */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.header.solid {
  background-color: #e00700;
  transition: background 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  /* 实色头部不需要模糊，清空 */
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
  .footer .logo, .footer .info, .footer .logo-box, .home-news, .home-news .item, .home-keyan .text-content .pic, .home-keyan, .home-guanli, .home-guanli .card .pic {
    margin-right: 0;
    width: 100%;
  }
  .footer {
    margin-top: .4rem;
  }
  .footer .link {
    text-align: center;
  }
  .footer .txt-con {
    width: 100%;
    margin-top: .3rem;
    text-align: center;
  }
  .footer .erwma-con {
    width: 100%;
    margin-top: .3rem;
  }
  .copyright {
    line-height: 1.8;
  }
  .banner img {
    height: 5.2rem;
    width: auto;
    margin-top: 0.1rem;
  }
  .home-title .en, .home-fc .btn .active {
    font-size: 16px;
  }
  .home-title .cn {
    font-size: 20px;
  }
  .home-title .more, .home-news .focus .tit, .home-news .item .tit, .home-notice .item .tit, .home-keyan .text-content .tit, .home-keyan li, .home-xueshu li .tit, .home-xueshu li .date span, .home-photo .item .text, .home-zhaosheng .tit, .home-zhaosheng .date span, .home-guanli .card .tit, .home-guanli li .tit {
    font-size: 14px;
  }
  .home-news .focus, .home-notice .con {
    height: auto;
  }
  .home-news .focus .text-con {
    padding-left: .2rem;
  }
  .home-news .focus .date, .home-news .item .date, .home-notice .item .des, .home-notice .item .date, .home-keyan .text-content .des, .home-xueshu li .date, .home-zhaosheng .date, .home-guanli .card .des, .home-guanli .card .time, .home-guanli li .date, .home-fc .btn .swiper-num, .home-fc .view .des {
    font-size: 12px;
  }
  .home-news .item .pic {
    width: 2.8rem;
    height: 1.6rem;
  }
  .home-keyan .text-content .tit {
    padding-bottom: 0;
  }
  .home-keyan .text-content .pic, .home-guanli .card .pic {
    height: 3.2rem;
  }
  .home-keyan li {
    padding-left: .4rem;
  }
  .home-keyan li a::after {
    left: -.4rem;
  }
  .home-xueshu li .date {
    width: 1rem;
    height: 1rem;
  }
  .home-xueshu li a {
    height: 1rem;
  }
  .home-keyan .text-content .dot, .home-zhaosheng .item .txt-con::after, .home-fc .title, .home-fc .quan2, .home-fc .quan1, .home-fc .entxt {
    display: none;
  }
  .home-photo .item {
    width: 49%;
  }
  .home-photo .item:nth-of-type(odd) {
    margin-right: 2%;
  }
  .home-photo .item:nth-child(even), .home-zhaosheng {
    margin-right: 0;
  }
  .home-photo .item .text {
    line-height: .7rem;
    height: .7rem;
    padding: 0 .2rem;
  }
  .home-zhaosheng .item {
    padding-left: 0;
    padding-right: 0;
  }
  .home-zhaosheng .date {
    width: 1rem;
  }
  .home-zhaosheng .item::before {
    left: 1.18rem;
  }
  .home-guanli li {
    line-height: .8rem;
    height: .8rem;
  }
  .home-fc .home-title {
    display: block;
  }
  .home-fc .view .pic {
    order: 1;
    width: 100%;
  }
  .home-fc .view .text-con {
    order: 2;
  }
  .home-fc .content {
    height: auto;
    padding-left: 0;
  }
  .home-fc .preview {
    position: sticky;
    width: 100%;
    margin-top: .5rem;
  }
  .home-fc .preview .swiper-wrapper {
    overflow-x: auto;
  }
  .home-fc .preview .swiper-slide {
    margin-right: .2rem;
  }
  .home-fc .view {
    padding-bottom: .7rem;
  }
  .home-fc .btn {
    left: 0;
    bottom: 0;
    right: 0;
  }
  .home-fc .view .tit-con span {
    font-size: 18px;
  }
  .home-fc .view .gd {
    line-height: .6rem;
    border-radius: .3rem;
    -webkit-border-radius: .3rem;
    -moz-border-radius: .3rem;
    -ms-border-radius: .3rem;
    -o-border-radius: .3rem;
  }
}
@media(max-width: 1024px) {
  .banner {
    margin-top: 1.2rem;
  }
}



/*网分页样式*/
.pages2 {
	clear: both;
	margin: 40px auto 20px auto;
	padding-top: 40px;
	overflow: hidden;
	text-align: center;
	font-size: 14px;
}
.pages2 ul li {
	display: inline-block;
	border: 1px solid #ccc;
	padding: 6px 15px;
	margin: 0 1px;
	line-height: 24px;
	background: #fff;
	color: #999;
	border-radius: 2px
}
.pages2 ul li:hover {
	background: #e00700;
	color: #fff;
	border: 1px solid #e00700
}
.pages2 ul li:hover a {
	color: #fff;
}
.pages2 ul li.thisclass {
	display: inline-block;
	border: 1px solid #e00700;
	padding: 6px 15px;
	margin: 0 1px;
	background: #e00700;
	color: #fff;
}
.pages2 ul li.thisclass a {
	color: #fff;
}
.pages2 ul li a {
	display: block;
	color: #999
}
.pages2 ul li a:hover {
	color: #fff;
}

.pages2 tr td {
	display: inline-block;
	border: 1px solid #ccc;
	padding: 6px 15px;
	margin: 0 1px;
	line-height: 24px;
	background: #fff;
	color: #999;
	border-radius: 2px
}
.pages2 tr td:hover {
	background: #e00700;
	color: #fff;
	border: 1px solid #e00700
}
.pages2 tr td:hover a {
	color: #fff;
}
.pages2 tr td.thisclass {
	display: inline-block;
	border: 1px solid #e00700;
	padding: 6px 15px;
	margin: 0 1px;
	background: #e00700;
	color: #fff;
}
.pages2 tr td.thisclass a {
	color: #fff;
}
.pages2 tr td a {
	display: block;
	color: #999
}
.pages2 tr td a:hover {
	color: #fff;
}