html::-webkit-scrollbar {
  display: none;
}

.header {
  width: 100%;
  height: 12rem;
  background: #a20301;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  padding: 0 3.2rem;
}

.header .logo {
  width: 38rem;
  height: 8rem;
  background: url(/images/logo.png) no-repeat;
  background-size: 100% 100%;
}

.header .logo img {
  width: 38rem;
  height: 8rem;
}

.header-nav {
  display: none;
}

.header-right-moblie {
  display: inline-block;
  width: 5rem;
  height: 5rem;
  position: relative;
  outline: none;
  vertical-align: middle;
}

.header-right-moblie .navbtn {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 0.2rem;
  transition: all .3s ease-out 0s;
  background: #fff;
  margin-top: -1px;
}

.header-right-moblie .navbtn::after,
.header-right-moblie .navbtn::before {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 0.2rem;
  content: '';
  transition: all .3s ease-out 0s;
  background: #fff;
}

.header-right-moblie .navbtn::before {
  top: 1.5rem;
}

.header-right-moblie .navbtn::after {
  top: -1.5rem;
}

.header-right-moblie.on .navbtn {
  background: transparent;
}

.header-right-moblie.on .navbtn::before {
  transform: rotate(-45deg);
  top: 0;
}

.header-right-moblie.on .navbtn::after {
  transform: rotate(45deg);
  top: 0;
}

.m-nav {
  display: block;
  position: fixed;
  top: 12rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 12rem);
  overflow-y: auto;
  background: #f1f1f1;
  padding: 3.2rem;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease-out;
  z-index: 999;
}

.m-nav-show {
  transform: translateX(0);
  opacity: 1;
}

.m-nav .search {
  display: flex;
  justify-content: center;
}

.m-nav .search .input {
  font-size: 2.4rem;
  color: #646464;
  height: 6.6rem;
  padding: 0 2.4rem;
  box-shadow: none;
  float: left;
  border-right: 0;
  background: none;
  width: calc(100% - 12rem);
  border: #932024 1px solid;
  border-radius: 50vw 0 0 50vw;
  background: #fff;
  outline: 0;
  -webkit-appearance: none;
}

.m-nav .search .m-btn img {
  width: 4rem;
  height: 4rem;
}

.m-btn {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12rem;
  height: 6.6rem;
  line-height: 44px;
  border: 0;
  background: #932024;
  background-size: 0.3rem;
  border-radius: 0 50vw 50vw 0;
}

.m-nav-list {
  margin-top: 4rem;
}

.m-nav-item {
  padding: 0 4rem;
}

.m-nav-item>.m-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 11rem;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.m-nav-item>.m-menu>a {
  font-size: 3.4rem;
  font-weight: 700;
  color: #000;
}

.m-nav-item>.m-menu>i {
  display: block;
  width: 10.8rem;
  height: 10.8rem;
  background: url(/images/arrow_down.svg) center no-repeat;
  background-size: 4rem 4rem;
}

.m-sub {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.m-sub a {
  display: block;
  height: 6.4rem;
  line-height: 6.4rem;
  font-size: 2.8rem;
  color: #666;
}

.m-active>.m-menu>i {
  transform: rotate(-90deg);
}.dwjl

/* banner */
.banner {
  margin-top: 12rem;
  width: 100%;
  height: 36.6rem;
  overflow: hidden;
}

.banner .swiper-container {
  width: 100%;
  height: 36.6rem;
  overflow: hidden;
  position: relative;
}

.banner .swiper-slide img {
  width: 100%;
  height: 36.6rem;
  /* transition: 1s linear 2s; */
  transform: scale(1.1);
}

.banner .swiper-pagination {
  display: flex;
  justify-content: flex-end;
  padding-right: 7.2rem;
  bottom: 1.6rem;
}

.banner .swiper-slide-active img,
.banner .swiper-slide-duplicate-active img {
  transition: 6s linear;
  transform: scale(1);
}

.banner .swiper-pagination-bullet {
  width: 1.6rem;
  height: 1.6rem;
}

.banner .swiper-pagination-bullet-active {
  background: #fff;
}

/* container */
.container {
  width: 100%;
  background: #fff;
}

.row-1 {
  width: 100%;
  padding: 4rem 4rem 0;
}

.news-left {
  width: 100%;
}

.news-tile {
  margin-bottom: 2.4rem;
  display: flex;
  justify-content: space-between;
}

.news-tile .more {
  font-size: 2rem;
  font-family: PingFang SC, PingFang SC;
  color: #000000;
}

.news-tile>div>span:nth-child(1) {
  font-size: 2.4rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 900;
  color: #000000;
  padding-right: 1.8rem;
}

.news-tile>div>span:nth-child(2) {
  font-size: 2rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  color: #000000;
}

.news-left-img {
  width: 100%;
  overflow: hidden;
}

.news-left-img img {
  width: 100%;
}

.news-left-list {
  padding-top: 4rem;
}

.new-left-item {
  display: block;
  width: 100%;
  height: 17.8rem;
  border-bottom: 1px solid #EDF1F7;
  padding-top: 2.4rem;
}

.new-left-item .title {
  font-size: 2.8rem;
  font-family: PingFang SC, PingFang SC;
  color: #333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.new-left-item .time {
  font-size: 2rem;
  font-family: Bahnschrift, Bahnschrift;
  font-weight: 400;
  color: #999999;
  padding-top: 1.6rem;
}

.news-right-list {
  width: 100%;
  padding-bottom: 6rem;
}

.new-right-item {
  width: 100%;
  height: 13.2rem;
  border-bottom: 1px solid #EDF1F7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.new-right-item .time {
  width: 8.4rem;
  height: 5rem;
  background: #EDF1F7;
  text-align: center;
  line-height: 5rem;
  font-size: 2.4rem;
  font-family: Bahnschrift, Bahnschrift;
  font-weight: 400;
  color: #333333;
}

.new-right-item .title {
  width: 56rem;
  font-size: 2.8rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: #333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* news-middle */
.news-middle {
  width: 100%;
  height: 65rem;
  margin: 4rem 0;
}

.news-middle .swiper {
  width: 100%;
  height: 100%;
}

.news-middle .swiper-pagination-bullet-active {
  background: #932024;
}

.news-middle .swiper-button-white,
.news-middle .swiper-button-white::after {
  display: none;
}

.news-middle .swiper-slide .img {
  width: 100%;
  height: 41rem;
  overflow: hidden;
}

.news-middle .swiper-slide .img>img {
  width: 100%;
  height: 41rem;
}

.news-middle .module {
  width: 34.6rem;
  position: relative;
  color: #932024;
  line-height: 3.4rem;
  text-align: center;
  margin: 4rem auto 0;
}

.news-middle .module>span:nth-child(1) {
  font-size: 2.4rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: bold;
  padding-right: 1rem;
}

.news-middle .module>span:nth-child(2) {
  font-size: 2rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
}

.news-middle .module::before,
.news-middle .module::after {
  content: "";
  width: 1.4rem;
  height: 1px;
  position: absolute;
  top: calc(50% - 1px);
  background: #932024;
}

.news-middle .module::before {
  left: 0;
}

.news-middle .module::after {
  right: 0;
}

.news-middle .title {
  font-size: 2.4rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: bold;
  color: #333333;
  padding: 2rem 0;
  width: 48rem;
  text-align: center;
  margin: 0 auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: all 0.5s;
}

.news-middle .intro {
  display: none;
  /* width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 2.8rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: #666666;
  margin: 0 auto; */
}

.news-middle .swiper-slide>a {
  display: block;
  width: 100%;
  height: 100%;
}

.row-2 {
  width: 100%;
  padding: 4rem 4rem 0;
}

.zhxw-content {
  width: 100%;
  margin-top: 2.3rem;
}

.zhxw .zhxw-swiper {
  width: 100%;
  height: 100%
}

.zhxw .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}

.zhxw .swiper-pagination-bullet-active {
  background: #932024;
}

.zhxw .swiper-slide .img {
  width: 100%;
  height: 41rem;
  overflow: hidden;
}

.zhxw .swiper-slide .img>img {
  width: 100%;
  height: 41rem;
}

.zhxw .txt {
  width: 100%;
  height: 10rem;
  border-left: 0.5rem solid #932024;
}

.zhxw .swiper-slide .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10rem;
}

.zhxw .swiper-slide .title>span:nth-child(1) {
  font-size: 2.8rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: bold;
  color: #333333;
  width: 46rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 10rem;
}

.zhxw .swiper-slide .title>span:nth-child(2) {
  font-size: 2rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: #666;
  line-height: 10rem;
}

.zhxw .swiper-pagination {
  bottom: 12rem;
  text-align: right;
  padding-right: 2rem;
}

.zhxw .swiper-slide .intro {
  display: none;

}

.mtdy {
  margin-top: 6rem;
}

.sxdt-list {
  width: 100%;
}

.xsdt-item {
  margin-bottom: 6rem;
}

.xsdt-item .img {
  width: 100%;
  height: 40rem;
  overflow: hidden;
}

.xsdt-item .img img {
  width: 100%;
  height: 40rem;
}

.xsdt-item .title {
  width: 100%;
  height: 11rem;
  border-left: 0.5rem solid #932024;
  font-size: 2.8rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: bold;
  color: #333333;
  padding: 1.6rem 2rem;
  background: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}


.row-3 {
  width: 100%;
}

.row-3 .bg {
  width: 100%;
  height: auto;
  background: url(/images/xywh-bg.png) no-repeat;
  background-size: cover;
  padding: 5rem 4rem;

}

.xywh {
  position: relative;
}

.xywh-title {
  width: 21.3rem;
  height: 4.6rem;
  background: url(/images/xywh-title-m.png) no-repeat;
  background-size: 100% 100%;
  margin: 0 auto;
}

.xyfj {
  width: 100%;
  height: 65.4rem;
  background: url(/images/xyfj.png) no-repeat;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 4rem 0 3.2rem;
}

.xyfj>div:nth-child(1) {
  font-size: 3.3rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: #FFFFFF;
}

.xyfj>div:nth-child(2) {
  font-size: 2rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: #FFFFFF;
}

.xywh-box {
  width: 50%;
  height: 31.3rem;
  font-size: 3.4rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
}

.jghd {
  background: url(/images/jghd.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 79.3rem;
  line-height: 31.3rem;
}

.xghd {
  background: url(/images/xghd.png) no-repeat;
  background-size: 100% 100%;
  line-height: 31.3rem;
  position: absolute;
  left: 50%;
  top: 79.3rem;
}

.dwjl {
  background: url(/images/dwjl.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 110.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.dyyx img,
.dwjl img {
  width: 7rem;
  height: 7rem;
}

.dyyx {
  background: #F4561E;
  position: absolute;
  left: 50%;
  top: 110.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.xywh-img {
  width: 100%;
  padding-top: 66.6rem;
}

.xywh-img img {
  width: 100%;
}

.row-4 {
  width: 100%;
  padding: 6.4rem 4rem 0;
}

.zt {
  width: 100%;
}



.zt-title .title {
  font-size: 3.8rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: #333333;
  text-align: center;
  padding-bottom: 4rem;
}

.zt-title .more {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.6rem 0 4rem;
}

.zt-title .more i {
  background: url(/images/zt-icon.png) center center no-repeat;
  width: 4.6rem;
  height: 4.6rem;
  background-size: contain;
  display: block;
  margin-right: 2rem;
}

.zt-title .more span {
  font-size: 2rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: #980A16;
  /* writing-mode: lr-tb; */
  line-height: 4.6rem;

}
.zt-net-box{
  width: 100%;
  height: 60rem;
  overflow: hidden;
position: relative;
}
.zt-net {
  display: flex;
  position: absolute;
        left: 0;
        top: 0;
}

.zt-net .net-item {
  display: block;
  width: 16.8rem;
  height: 60rem;
  position: relative;
  overflow: hidden;
}
.zt-net .net-item .zt-img{
 width: 100%;
  height: 60rem;
}
.zt-net .net-item .zt01{
background: url(/images/zt01-m.png) 0 0 no-repeat;
    background-size: 100% 100%;
}
.zt-net .net-item .zt02{
background: url(/images/zt02-m.png) 0 0 no-repeat;
    background-size: 100% 100%;
}
.zt-net .net-item .zt03{
background: url(/images/zt03-m.png) 0 0 no-repeat;
    background-size: 100% 100%;
}
.zt-net .net-item .zt04{
background: url(/images/zt04-m.png) 0 0 no-repeat;
    background-size: 100% 100%;
}
.zt-net .net-item .zt05{
background: url(/images/zt05-m.png) 0 0 no-repeat;
    background-size: 100% 100%;
}
.zt-net .net-item .zt06{
background: url(/images/zt06-m.png) 0 0 no-repeat;
    background-size: 100% 100%;
}
.zt-net .net-item img {
  width: auto;
  height: 100%;
}

.zt-net .net-item .more {
  position: absolute;
  right: 7rem;
  bottom: 0;
  writing-mode: vertical-lr;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  line-height: 2.3;
}

.zt-net .net-item .more::after {
  content: "";
  border-left: 1px solid #fff;
  display: inline-block;
  height: 8rem;
  margin-top: 1.6rem;
}
.row-6,
.row-5 {
  width: 100%;
}
.jyzd,
.zszx {
  padding-top: 7.2rem;
  position: relative;
}

.zszx-bg {
  width: 100%;
  height: 22rem;
  background: url(/images/zszx02.png) no-repeat;
  background-size: 100% 100%;
  margin-top: 12rem;
}
.jyzd .zszx-bg {
 background: url(/images/jyzd01.png) no-repeat;
  background-size: 100% 100%;
}
.zszx-title {
  width: 100%;
  font-size: 3.6rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: #333333;
  text-align: center;
  position: absolute;
  top: 7.2rem;
  left: 0;
}
.jyzd .more,
.zszx .more {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: #980A16;
  position: absolute;
  top: 12.4rem;
  left: 0;
  padding: 1.4rem 0;
}
.jyzd .more img,
.zszx .more img {
  width: 5rem;
  height: 1.6rem;
  margin-left: 2.8rem;
}

.zszx-intro {
  width: 100%;
  background: url(/images/zszx01.png) no-repeat;
  background-size: 100% 100%;
  padding: 6rem 4rem;
}

.zszx-intro div {
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: #FFFFFF;
  font-size: 2.4rem;
  line-height: 4.3rem;
}

/* footer */
.footer {
  width: 100%;
  margin-top: 80rem;
  min-height: 32rem;
  background: url(/images/footer-bg.png) no-repeat;
  background-size: cover;
  position: relative;
}

.footer-box {
  padding: 0 4rem;
}

.footer-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 0 0;
}
.footer-left .logo img,
.footer-left .logo {
  width: 100%;
  height: auto;
}
.phone,
.address,
.email {
  display: flex;
  height: 4.8rem;
  line-height: 4.8rem;
  font-size: 2.4rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: #FFFFFF;
  width: 100%;

}
.phone{
  height: auto;
}
.address {
  margin-top: 4rem;
}
.phone,
.email {
  margin-top: 2.4rem;
}
.phone img,
.email img,
.address img {
  width: 4.8rem;
  height: 4.8rem;
  margin-right: 2.4rem;
}

.footer-middle {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  padding: 3.2rem;
}

.middle-item {
  width: 100%;
}

.middle-item .title {
  font-size: 2.4rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: bold;
  color: #932024;
  margin-top: 4.8rem;
  padding-left: 2rem;
  border-left: 2px solid #932024;
}

.middle-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.middle-list>a {
  font-size: 2.4rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: #666;
  margin-right: 2.4rem;
  line-height: 8rem;
}

.footer-right {
  display: flex;
  justify-content: center;
  position: absolute;
  right: 11rem;
  top: 30rem;
}

.footer-right>div {
  width: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.footer-right>div>img {
  width: 6.8rem;
  height: 6.8rem;
}

.footer-right>div span {
  font-size: 2rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1.6rem;
}

.footer-right .code {
  width: 28rem;
  height: 28rem;
  background: #fff;
  padding: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  position: absolute;
  left: calc(50% - 14rem);
  bottom: 100%;
  margin-bottom: 2rem;
  z-index: 999;
  transform: translateY(-4rem);
  opacity: 0;
  transition: all 0.2s ease-out 0s;
visibility: hidden;
}

.footer-right .code>img {
  width: 24rem;
  height: 24rem;
}

.footer-right .code::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  margin-left: -1.6rem;
  width: 0;
  height: 0;
  border: 1.6rem solid transparent;
  font-size: 0;
  border-top-color: #fff;
}

.footer-right .code.codeShow {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.copyright {
  width: 60rem;
  padding: 2.3rem 0;
  margin: 4.8rem auto 0;
  border-top: 1px solid #fff;
  font-size: 2.4rem;
  text-align: center;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: #FFFFFF;
}

.copyright p {
  padding: 0 6rem;
}

.copyright p span {
  font-size: 2.4rem !important;
}

.top {
  width: 8rem;
  height: 8rem;
  background: #F4561E;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 4rem;
  bottom: 35rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 998;
  visibility: hidden;
  opacity: 0;
  transition: all 1s;
}

.top img {
  width: 3rem;
  height: 3rem;
}

.top {
  font-size: 2rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  color: #FFFFFF;
}

.topShow {
  visibility: visible;
  opacity: 1;
}
.search-box{
  display: none;
}