:root {
  font-size: 10px;
  --primary: #0e4c92;
}

* {
  font-family: Helvetica;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.12);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50%;
  margin: 0;
  padding: 0;
}

.space {
  flex-grow: 1;
}

/* 1344  1440 */

html,
body {
  width: 100%;
  min-width: 1440px;
  height: 100%;
  background-color: #fcfcfc;
}

body {
  opacity: 1;
  transition: opacity 0.8s;
  position: relative;
      overflow-x: hidden;
}

 .comment {
   
    display: none;

  }
  .comment-form {
    position: fixed;
    top: 50%;
    right: 200px;
    z-index: 999;
    transform: translateY(-50%);
    background-color: #fff;
    border-radius: 4px;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 1;
    transition: opacity 0.5s;
    box-shadow: 0px 3px 14px 0px rgba(0,0,0,0.102);
  }
  .comment-form .label {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;

  }
  .comment-form .label img {
    width: 16px;
    height: 16px;
  }
  .comment-form .label span{
    color:#333333;
    font-size: 14px;
  }
  .comment-form .input {
    width: 100%;
    display: flex;
    gap: 20px;
  }
  .comment-form .input textarea {
    width: 272px;
    height: 120px;
    outline: none;
    border: 1px solid #EEEEEE;
    border-radius: 4px;
    padding: 16px;
    box-sizing: border-box;
    font-size: 14px;
  }
  .comment-form .input textarea::placeholder, .comment-form .input input::placeholder {
    font-size: 12px;
  }
  .comment-form .input input {
    width: 100%;
    font-size: 14px;
    outline: none;
    border: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .comment-form .input img {
    width: 112px;
    height: 40px;
    flex-shrink: 0;
    background-color: #165BA0;
  }
  .comment-form .submit {
    width: 100%;
    border-radius: 100px;
    height: 48px;
    text-align: center;
    background-color: #165BA0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 48px;
    border: 0;
    cursor: pointer;
    margin-top: 10px;
  }
  .comment-form .submit:active {
    background-color: #0d4278;
  }



.slide-menu {
  position: fixed;
  z-index: 9;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.slide-menu:hover .item > span {
  width: 110px;
}

.slide-menu .item {
  display: flex;
  align-items: center;
  height: 48px;
  column-gap: 12px;
  cursor: pointer;
  user-select: none;
  color: #fff;
}

.slide-menu .item:hover {
  color: rgb(255, 153, 0);
}

.slide-menu .item .icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 50px;
  height: 36px;
  font-size: 32px;
  filter: drop-shadow(0 0 0.4rem rgba(42, 72, 105, 0.5));
}

.slide-menu .item > span {
  background-color: #0e4c92;
  font-size: 14px;
  height: 48px;
  width: 0;
  transition: width 0.4s;
  text-wrap: nowrap;
  text-align: center;
  line-height: 48px;
}

.over-float-menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.1s;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0 0 6rem rgba(0, 0, 0, 0.1);
  height: 100px;
}

.over-float-menu .container {
  width:1344px;
 
  height: 100%;
  display: flex;
  align-items: center;
}

.over-float-menu .container .logo {
  width: 308px;
}

.over-float-menu .container .items {
  width: 0;
  flex-grow: 1;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}

.over-float-menu .container .items .menu-item {
  position: relative;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.over-float-menu .container .items .menu-item:hover .float-menu {
  transform: scaleY(1);
}

.over-float-menu .container .items .menu-item:hover .float-menu .top-line {
  width: 100%;
}

.over-float-menu .container .items .menu-item > span {
  font-weight: 600;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  height: 100px;
  display: flex;
  align-items: center;
}

.over-float-menu .container .items .menu-item > span::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  margin-left: 8px;
  border: 5px solid #000;
  border-bottom: 0;
  border-left-color: transparent;
  border-right-color: transparent;
}

.over-float-menu .container .items .menu-item .float-menu {
  width: 100%;
  position: absolute;
  top: calc(100% - 3px);
  z-index: 99;
  left: 0;
  transition: transform 0.2s;
  transform: scaleY(0);
  transform-origin: 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.over-float-menu .container .items .menu-item .float-menu .top-line {
  width: 0;
  height: 3px;
  background-color: #0e4c92;
  transition: width 0.6s;
}

.over-float-menu .container .items .menu-item .float-menu .content {
  width: 100%;
  display: flex;
  background-color: #fff;
  flex-direction: column;
  padding: 20px 0;
  transform-origin: 0 0;
  transition: transform 0.3s;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
}

.over-float-menu .container .items .menu-item .float-menu .content .item {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.over-float-menu .container .items .menu-item .float-menu .content .item:hover {
  background-color: #eef0f3;
}

.over-float-menu .container .items .menu-item .float-menu .content .item:hover span {
  color: #0e4c92;
}

.over-float-menu .container .items .menu-item .float-menu .content .item span {
  color: #697589;
  font-size: 16px;
}

.over-float-menu .container .items2 {
  display: flex;
  align-items: center;
  gap: 100px;
}

.over-float-menu .container .items2 span {
  font-weight: 600;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  height: 100px;
  display: flex;
  align-items: center;
}

.over-float-menu .container .items2 span::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  margin-left: 8px;
  border: 5px solid #000;
  border-bottom: 0;
  border-left-color: transparent;
  border-right-color: transparent;
}

header {
  width: 100%;
  height: 100%;
  position: relative;
}

@media screen and (max-width: 750px) {
    header {
      height: 30vh;
      width: 100%; 
      position: relative;
    }
}

header .header__top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 230px;
  background: linear-gradient(180deg, #090909d4 0%, rgba(63, 43, 18, 0) 100%);
}

header .header__top .nav__top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .header__top .nav__top .container {
  width:1344px;
 
  height: 11rem;
  box-sizing: border-box;
  background-image: linear-gradient(to left, #ffffff66, #ffffff66);
  background-size: 0 1px;
  background-position-y: 100%;
  background-position-x: 0;
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

header .header__top .nav__top .container > .logo {
  width: 30.8rem;
}

header .header__top .nav__top .container > .xiaoxun {
  width: 22rem;
  height: 4rem;
}

header .header__top .nav__top .container > nav {
  display: flex;
  align-items: center;
}

header .header__top .nav__top .container > nav > span {
  color: #e8e8e8;
  font-size: 18px;
  padding: 0 1.6rem;
  cursor: pointer;
}

header .header__top .nav__top .container > nav > span:nth-child(4) {
  border-right: 1px solid #e8e8e8;
}

header .header__top .nav__top .container > nav > span:hover {
  color: #e9af3a;
}

header .header__top .nav__top .container > .group {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

header .header__top .nav__top .container > .group i {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 100px;
  border: 1px solid #e8e8e8;
  font-size: 1.4rem;
  font-style: normal;
  line-height: 3.2rem;
  text-align: center;
  color: #e8e8e8;
  cursor: pointer;
  transition: border-color 1s, background-color 1s;
}

header .header__top .nav__top .container > .group i:hover {
  background-color: #002d60;
  border-color: #002d60;
}

header .header__top .nav__top .container > .group .search {
  background-image: url("../assets/search.png");
  background-size: 50% 50%;
  background-position: 50% 50%;
}

header .header__top .nav__menu {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 23.8rem;
}

header .header__top .nav__menu .menu-item {
  position: relative;
  width: 164px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .header__top .nav__menu .menu-item:hover .float-menu {
  transform: scaleY(1);
}

header .header__top .nav__menu .menu-item:hover .float-menu .top-line {
  width: 100%;
}

header .header__top .nav__menu .menu-item > span {
  --color: #fff;
  color: var(--color);
  font-size: 22px;
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.11);
  line-height: 3;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
}

header .header__top .nav__menu .menu-item > span::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  margin-left: 8px;
  border: 5px solid var(--color);
  border-bottom: 0;
  border-left-color: transparent;
  border-right-color: transparent;
}

header .header__top .nav__menu .menu-item .float-menu {
  width: 100%;
  position: absolute;
  top: 100%;
  z-index: 99;
  left: 0;
  transition: transform 0.2s;
  transform: scaleY(0);
  transform-origin: 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header .header__top .nav__menu .menu-item .float-menu .top-line {
  width: 0;
  height: 3px;
  background-color: #0e4c92;
  transition: width 0.6s;
}

header .header__top .nav__menu .menu-item .float-menu .content {
  width: 100%;
  display: flex;
  background-color: #fff;
  flex-direction: column;
  padding: 20px 0;
  transform-origin: 0 0;
  transition: transform 0.3s;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
}

header .header__top .nav__menu .menu-item .float-menu .content .item {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

header .header__top .nav__menu .menu-item .float-menu .content .item:hover {
  background-color: #eef0f3;
}

header .header__top .nav__menu .menu-item .float-menu .content .item:hover span {
  color: #0e4c92;
}

header .header__top .nav__menu .menu-item .float-menu .content .item span {
  color: #697589;
  font-size: 18px;
}

header .more {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  user-select: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9;
}

header .more span {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

header .more span i {
  font-style: normal;
  color: #fff;
  font-size: 16px;
  display: block;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.48);
  animation: sca 1s infinite alternate;
  opacity: 0;
  white-space: nowrap;
}

header .more span > i:nth-child(2) {
  animation-delay: 0.2s;
}

header .more span > i:nth-child(3) {
  animation-delay: 0.4s;
}

header .more span > i:nth-child(4) {
  animation-delay: 0.6s;
}

header .more img {
  width: 22px;
  height: 22px;
  margin-left: 1px;
  opacity: 0;
  animation: sca 1s infinite alternate 0.8s;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}


.swiper .swiper-slide .img {
    width: 100%;
   	height:100%;
}

header .swiper .swiper-slide .img {
    width: 100%;
   	height:100%;
	/*min-height:100%;*/
	/*animation: zoom 10s infinite ease-in-out;*/
}

@keyframes zoom {
    0% {
      transform: scale(1.1);
    }
   100% {
      transform: scale(1);
    }
}

 .swiper .swiper-slide  img {
    width: 100%;
    height:100%;
}

header .swiper .swiper-slide  img {
    width: 100%;
    height:100%;
    min-height:100%;
    transition:2s linear 4s;
    /*transform:scale(1.1,1.1);*/
    object-fit: fill;
}

header .swiper-slide-active img,
header .swiper-slide-duplicate-active img{
    transition:6s linear;
    /*transform:scale(1,1);*/
    /*min-height:100%;*/
}	
	


.swiper .swiper-slide .img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper .pagination {
  right: 20rem;
  bottom: 3rem;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  z-index: 9;
}

.swiper .pagination .link {
  width: 30px;
  height: 16px;
  background-image: url("../assets/vlink.png");
}

.swiper .pagination .dot {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.6s;
  cursor: pointer;
  user-select: none;
  width: 8px;
  height: 8px;
  background-color: #FFFFFF;
  opacity: 0.75;
  border-radius: 8px;
}

.swiper .pagination .dot span {
  font-size: 16px;
  font-weight: 600;
  transform: translate(3px, 5px);
  display: none;
}

.swiper .pagination .dot:hover {
  color: #ffbe3a;
  background-image: url("../assets/banner-hover.svg");
}

.swiper .pagination .active {
  background-image: url("../assets/banner.svg");
  width: 30px;
  height: 30px;
  background-color: transparent;
}

.swiper .pagination .active span {
  display: inline-block;
}

.swiper .moreabout {
  right: 12rem;
  bottom: 3rem;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  z-index: 9;
}

.swiper .moreabout .vline {
  width: 1px;
  height: 16px;
  background: #FFFFFF;
}

.swiper .moreabout .mtext {
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 14px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.swiper .moreabout .mtext {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, .66);
  line-height: 14px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.swiper .moreabout .mtext:hover {
  color: #FFFFFF;
}

.return-top {
  width: 44px;
  height: 44px;
  background-image: url('../assets/return-top.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
  position: fixed;
  bottom: 200px;
  right: 50px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.return-top.show {
  opacity: 1;
  visibility: visible;
}

footer {
  width: 100%;
  background-color: #002d60;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../assets/footer-bg.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

footer .b-bg {
  width: 100%;
  background-image: url("../assets/bottom-bg.png");
  height: 180px;
  background-size: 100%;
  position: absolute;
  top: 40px;
  left: 0;
}

footer .container {
  /*width: calc(100% - 400px);*/
 
  position: relative;
  padding: 104px 0 64px;
  box-sizing: border-box;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

footer .container .box {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 99px;
  padding-bottom: 28px;
  border-bottom: 1px solid #d8d8d83b;
}

footer .container .box img {
  width: 435px;
  height: 126px;
}

footer .container .box .frend-links .title {
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  line-height: 24px;
  font-family: "light";
}

footer .container .box .frend-links .links {
  margin-top: 23px;
  width: 400px;
  display: grid;
  grid-template-rows: repeat(3, minmax(24px, max-content));
  grid-template-columns: repeat(3, 1fr);
  row-gap: 20px;
}

footer .container .box .frend-links .links span {
  font-size: 14px;
  color: #ffffff;
}

footer .container .box .frend-links .links-us {
  margin-top: 23px;
  width: 400px;
  display: grid;
  grid-template-rows: repeat(4, minmax(24px, max-content));
  grid-template-columns: repeat(1, 1fr);
  row-gap: 20px;
}

footer .container .box .frend-links .links-us span {
  font-size: 14px;
  color: #ffffff;
}

footer .container .box .frend-links .links-us span span {
  margin-left: 20px;
}

footer .container .code {
  position: absolute;
  right: 0;
  top: 430px;
  width: 156px;
  height: 156px;
}

footer .container .contact {
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid #d8d8d83b;
}

footer .container .contact .c-title {
  font-family: "light";
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  line-height: 24px;
}

footer .container .contact div {
  display: flex;
  flex-direction: column;
}

footer .container .contact div .title {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.5;
}

footer .container .contact div .sub-title {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5;
  opacity: 0.6;
}

footer .container .bah {
  width: 100%;
  font-size: 16px;
  margin-top: 6.4rem;
  text-align: center;
}

footer .container .bah span {
  color: #FFFFFF;
  margin-right: 5px;
}

main {
  position: relative;
  width: 100%;
}

main .main__bg1 {
  position: absolute;
  width: 100%;
  background-image: url("../assets/bg1.png");
  height: 103rem;
  top: 0;
  left: 0;
  z-index: -1;
}

main .main__bg2 {
  position: absolute;
  width: 63.8rem;
  background-image: url("../assets/bg2.webp");
  height: 91.8rem;
  top: calc(120rem + 150px);
  right: 0;
  z-index: -1;
}

main .main__bg2-1 {
  position: absolute;
  width: 117.3rem;
  background-image: url(../assets/main__bg2-1.png);
  height: 65.5rem;
  top: 107rem;
  right: 24rem;
  z-index: -1;
}

main .main__bg3 {
  position: absolute;
  width: 100%;
  background-image: url("../assets/bg3.webp");
  height: 106rem;
  top: calc(200rem + 1000px);
  left: 0;
  z-index: -1;
}

main .title-article {
  display: flex;
  flex-direction: column;
  position: relative;
}

main .title-article .title-en {
  font-weight: 400;
  font-size: 16px;
  color: #697589;
  line-height: 16px;
  margin-bottom: 6px;
}

main .title-article .title-zn {
  font-weight: normal;
  font-size: 36px;
  color: #121212;
  line-height: 36px;
  font-weight: 700;
  font-family: SourceHanSerifCN-Bold, SourceHanSerifCN-Bold;
}

main .title-article img {
  width: 33.8rem;
  height: 36.5rem;
  position: absolute;
  z-index: -1;
}

main .title-article span {
  color: #0e4c92;
  font-size: 16px;
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}

main .title-article span::before {
  content: "";
  display: block;
  width: 3.6rem;
  height: 8px;
  background: linear-gradient(270deg, #0e4c92 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.24;
}

main .look-more {
  font-size: 16px;
  color: #0e4c92;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  gap: 1rem;
}

main .look-more.hidden {
    display: none;
}

main .look-more::after {
  content: "";
  background-image: url("../assets/more-arrow.png");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 16px;
  height: 10px;
  display: block;
}

main .main {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main .hwdt {
  width:1344px;
 
  box-sizing: border-box;
  padding-top: 10rem;
}

main .hwdt .banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

main .hwdt .tabs {
  display: flex;
  align-items: flex-start;
  transform: translateY(25px);
  width: calc(100% - 360px);
}

main .hwdt .tabs .tabs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 28px;
  cursor: pointer;
}

main .hwdt .tabs .tabs-item span {
  color: #121212;
  font-size: 20px;
  width: 80px;
}

main .hwdt .tabs .tabs-item img {
  height: 30px;
  display: none;
  margin-bottom: 10px;
}

main .hwdt .tabs .tabs-item.active span {
  font-weight: 700;
  color: #0E4C92;
}

main .hwdt .tabs .tabs-item.active img {
  display: inline-block;
}

main .hwdt .tabs .tabs-line {
  width: 850px;
  height: 1px;
  background: #B3B6C0;
  border-radius: 0px 0px 0px 0px;
  opacity: 0.5;
  margin-top: 9px;
}

main .hwdt .grid {
  width: 100%;
  display: none;
  align-items: center;
  gap: 3.2rem;
  margin-top: 3rem;
}
main .hwdt .grid.active {
    display: flex;
}

main .hwdt .grid .left {
  width: 0;
  flex-grow: 1;
  display: grid;
  grid-template-rows: 44.2rem 34.6rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

main .hwdt .grid .right {
  width: 0;
  flex-grow: 1;
  display: grid;
  grid-template-rows: 34.6rem 44.2rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

main .hwdt .grid .swiper {
  width: 100%;
  height: 100%;
  background-color: #fff;
  grid-column: span 2;
  --swiper-pagination-color: #fff;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-inactive-opacity: 0.5;
}

main .hwdt .grid .swiper .mask-white {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateY(0);
  background-color: #fff;
  z-index: 99;
}

main .hwdt .grid .swiper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
}

main .hwdt .grid .swiper .swiper-slide:hover img {
  transform: scale(1.1);
}

main .hwdt .grid .swiper .swiper-slide .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

main .hwdt .grid .swiper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

main .hwdt .grid .swiper .swiper-slide .mask {
  width: 100%;
  height: 9rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding: 0 3rem;
  box-sizing: border-box;
}

main .hwdt .grid .swiper .swiper-slide .mask span {
  width: 80%;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

main .hwdt .grid .swiper .swiper-pagination {
  text-align: right;
  padding: 0 3rem;
  box-sizing: border-box;
  height: 9rem;
  bottom: 0;
  left: auto;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: max-content;
}

main .hwdt .grid .card {
  width: 100%;
  height: 100%;
  background-color: #f8f8fb;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.6s;
  cursor: pointer;
}

main .hwdt .grid .card:hover {
  background-color: #fff;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.37);
}

main .hwdt .grid .card:hover img {
  transform: scale(1.1);
}

main .hwdt .grid .card:hover .info span {
  color: #0e4c92;
}

main .hwdt .grid .card:hover .info .lineL {
  height: 100%;
}

main .hwdt .grid .card:hover .info .lineR {
  height: 100%;
}

main .hwdt .grid .card:hover .info .lineB {
  width: 100%;
}

main .hwdt .grid .card .img {
  width: 100%;
  height: 22.6rem;
  overflow: hidden;
  position: relative;
}

main .hwdt .grid .card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

main .hwdt .grid .card .img .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateY(0);
  background-color: #f8f8fb;
  z-index: 99;
}

main .hwdt .grid .card .info {
  width: 100%;
  height: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 2.8rem;
  box-sizing: border-box;
}

main .hwdt .grid .card .info span {
  color: #121212;
  font-size: 16px;
  line-height: 30px;
  height: 60px;
  font-weight: 600;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

main .hwdt .grid .card .info i {
  display: block;
  background-color: #0e4c92;
  position: absolute;
}

main .hwdt .grid .card .info .lineL {
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  transition: height 0.6s;
}

main .hwdt .grid .card .info .lineR {
  bottom: 0;
  right: 0;
  width: 2px;
  height: 0;
  transition: height 0.6s;
}

main .hwdt .grid .card .info .lineB {
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  transition: width 0.6s;
}

main .main__bg2 {
  position: absolute;
  top: 154rem;
  width: 63.8rem;
  height: 91.8rem;
  z-index: -1;
}

main .main__bg3 {
  position: absolute;
  top: 216rem;
  width: 192rem;
  height: 106rem;
  z-index: -1;
}

main .main__bg4 {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 83.7rem;
  z-index: -1;
}

main .jxky {
  width:1344px;
 
  box-sizing: border-box;
  position: relative;
}

main .jxky .banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

main .jxky .grid {
  width: 100%;
  display: grid;
  margin-top: 4rem;
  grid-template-rows: 530px;
  grid-template-columns: 1fr 96px 1fr;
  opacity: 0;
  transform: translateY(20%);
}

main .jxky .grid .list {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-shadow: 0px 6px 20px 0px rgba(14, 76, 146, 0.16);
  padding: 4.2rem;
  box-sizing: border-box;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

main .jxky .grid .list .view {
  width: 100%;
  height: 50px;
  overflow: hidden;
  transition: height 0.6s;
}

main .jxky .grid .list .active {
  height: 158px;
}

main .jxky .grid .list .active .item .year {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
  font-size: 18px;
}

main .jxky .grid .list .active .item .month {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

main .jxky .grid .list .active .item .line {
  width: 100%;
  transition-delay: 0.3s;
}

main .jxky .grid .list .active .item .title {
  color: #0e4c92;
  transform: translateY(0);
}

main .jxky .grid .list .active .item .desc {
  opacity: 1;
  transition-delay: 0.3s;
}

main .jxky .grid .list .item {
  width: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s;
}

main .jxky .grid .list .item .year {
  color: #0e4c92;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  width: max-content;
  transform: translateX(-100%);
  transition: all 0.3s;
}

main .jxky .grid .list .item .month {
  color: #0e4c92;
  font-weight: 600;
  width: max-content;
  font-size: 24px;
  line-height: 1;
  margin-top: 10px;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.3s;
}

main .jxky .grid .list .item .line {
  width: 0;
  height: 1px;
  background-color: #0e4c92;
  margin: 10px 0;
  transition: width 0.3s;
}

main .jxky .grid .list .item .title {
  width: 80%;
  color: #121212;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  transition: all 0.6s;
  transform: translateY(-24px);
  text-overflow: ellipsis;
  overflow: hidden;
  text-wrap: nowrap;
      white-space: nowrap;
}

main .jxky .grid .list .item .desc {
  margin-top: 10px;
  width: 80%;
  font-size: 14px;
  color: #697589;
  line-height: 26px;
  opacity: 0;
  transition: opacity 0.6s;
}

main .jxky .grid .img {
  width: 100%;
  height: 100%;
  grid-column: 2 / 4;
  grid-row: 1 / 2;
  box-shadow: 0px 6px 20px 0px rgba(14, 76, 146, 0.16);
  z-index: 1;
  position: relative;
  overflow: hidden;
}

main .jxky .grid .img .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateY(0);
  background-color: #fff;
  z-index: 9;
}

main .jxky .grid .img img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*opacity: 0;*/
  /*filter: blur(5px);*/
  transition: filter 0.6s, transform 0.6s;
}

main .jxky .grid .img .active-img {
  opacity: 1;
  z-index: 1;
  filter: blur(0px);
}

main .jxky .grid .img .active-img:hover {
  transform: scale(1.1);
}

main .xzhw {
  width:1344px;
 
  box-sizing: border-box;
  padding-top: 14rem;
}

main .xzhw .banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

main .xzhw .accordion {
  display: flex;
  width: 100%;
  height: 526px;
  background: #FFFFFF;
  box-shadow: 0px 20px 100px 1px rgba(14, 76, 146, 0.07);
}

main .xzhw .accordion-item {
  overflow: hidden;
  transition: flex 0.5s ease;
  cursor: pointer;
  position: relative;
  background-color: #ddd;
  height: 100%;
  display: flex;
}

main .xzhw .item-left {
  position: relative;
  width: 266px;
  height: 100%;
  overflow: hidden;
     cursor: default;
}

main .xzhw .item-left .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: transform 0.3s;
}

main .xzhw .item-left:hover .img {
    transform: scale(1.1);
}

main .xzhw .item-left .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #00000091;
}

main .xzhw .item-left .title {
  position: absolute;
  left: 50%;
  top: 65px;
  transform: translateX(-50%);
  font-weight: 400;
  font-size: 30px;
  color: #FFFFFF;
  writing-mode: vertical-rl;
  text-orientation: upright;
  z-index: 3;
   cursor: default;
}

main .xzhw .item-left .line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 390px;
  width: 0px;
  height: 51px;
  border: 1px solid #FFFFFF;
  z-index: 3;
     cursor: default;
}

main .xzhw .item-left .more {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
  z-index: 3;
  bottom: 40px;
}

main .xzhw .item-right {
  width: 0px;
  height: 100%;
  transition: width 0.2s ease;
}

main .xzhw .item-right .list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 12px 5px;
  background: #FFFFFF;
  box-shadow: 0px 20px 100px 1px rgba(14, 76, 146, 0.07);
  position: relative;
}

main .xzhw .item-right .list .list-line1 {
  position: absolute;
  width: 38%;
  top: 50%;
  left: 40px;
  border: 1px dashed #EEF0F3;
}

main .xzhw .item-right .list .list-line2 {
  position: absolute;
  width: 38%;
  top: 50%;
  right: 40px;
  border: 1px dashed #EEF0F3;
}

main .xzhw .item-right .list .list-line3 {
    position: absolute;
    height: 90%;
    top: 5%;
    left: 50%;
    border: 1px solid #EEF0F3;
    z-index: 1;
}

/*main .xzhw .item-right .list > .list-box:nth-child(1),*/
/*main .xzhw .item-right .list > .list-box:nth-child(3) {*/
  
/*}*/

/*main .xzhw .item-right .list > .list-box:nth-child(2),*/
/*main .xzhw .item-right .list > .list-box:nth-child(4) {*/
/*  padding-left: 35px;*/
/*}*/

/*main .xzhw .item-right .list > .list-box:nth-child(3),*/
/*main .xzhw .item-right .list > .list-box:nth-child(4) {*/
/*  padding-top: 16px;*/
/*}*/

/*main .xzhw .item-right .list > .list-box:nth-child(1),*/
/*main .xzhw .item-right .list > .list-box:nth-child(2) {*/
/*  padding-bottom: 20px;*/
/*}*/

main .xzhw .item-right .list .list-box {
  display: flex;
  flex-direction: column;
  width: calc(50% - 20px);
  /*min-width: 47%;*/
  box-sizing: border-box;
  position: relative;
  padding: 10px 35px;
  margin: 5px 10px;
  transition: box-shadow 0.6s;
  height:48%;
    cursor: default;
}

main .xzhw .item-right .list .list-box:hover {
    /*box-shadow: 0px 20px 100px 1px rgba(14, 76, 146, 0.07);*/
    box-shadow: 0 0 80px rgba(0,0,0,.2);
}

main .xzhw .item-right .list .list-box i {
  display: block;
  background-color: #0e4c92;
  position: absolute;
}


main .xzhw .item-right .list .list-box .lineL {
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  transition: height 1.6s;
  /*height: 100%;*/
  z-index: 10;
}

main .xzhw .item-right .list .list-box:hover .lineL {
  height: 100%;
}

main .xzhw .item-right .list .list-box .lineR {
  bottom: 0;
  right: 0;
  width: 2px;
  height: 0;
  transition: height 1.6s;
  /*height: 100%;*/
}

main .xzhw .item-right .list .list-box:hover .lineR {
  height: 100%;
}

main .xzhw .item-right .list .list-box .lineT {
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  transition: width 1.6s;
  /*width: 100%;*/
}

main .xzhw .item-right .list .list-box:hover .lineT {
  width: 100%;
}

main .xzhw .item-right .list .list-box .lineB {
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  transition: width 1.6s;
  /*width: 100%;*/
}

main .xzhw .item-right .list .list-box:hover .lineB {
  width: 100%;
  position: absolute;
}

main .xzhw .item-right .list .list-box a {
  display: flex;
  flex-direction: column;
  flex-basis: calc(50% - 10px);
      cursor: default;
}

main .xzhw .item-right .list .list-box a .time {
  font-weight: 400;
  font-size: 14px;
  color: #0E4C92;
}

main .xzhw .item-right .list .list-box a .title {
  font-weight: 400;
  font-size: 18px;
  color: #121212;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 12px 0;
  line-height: 30px;
  height:60px;
}

main .xzhw .item-right .list .list-box a .content {
  font-weight: 400;
  font-size: 13px;
  color: #999999;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 24px;
  height:72px;
}

main .xzhw .item-right .list .list-box a .details {
  width: 120px;
  height: 32px;
  background: #EEEEEE;
  border-radius: 4px 4px 4px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
      cursor: pointer;
          position: absolute;
    right: 35px;
    bottom: 10px;
}

main .xzhw .item-right .list .list-box a .details .details-text {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 22px;
}

main .xzhw .item-right .list .list-box a .details .details-img {
  width: 16px;
  height: 16px;
  margin-left: 5px;
}

main .xzhw .active .item-right {
  width: 798px;
}

main .tzgg-mtsj {
  width:1344px;
 
  box-sizing: border-box;
  padding: 10rem 0 7.5rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  overflow: hidden;
}

main .tzgg-mtsj .tzgg {
  width: 105.6rem;
}

main .tzgg-mtsj .tzgg .banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5rem;
}

main .tzgg-mtsj .tzgg .grid {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding-right: 4.4rem;
  box-sizing: border-box;
  border-right: 1px solid #0e4c924e;
  opacity: 0;
  transform: translateX(-20%);
}

main .tzgg-mtsj .tzgg .grid .left {
  width: 0;
  flex-grow: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

main .tzgg-mtsj .tzgg .grid .left:hover .img img {
  transform: scale(1.1);
}

main .tzgg-mtsj .tzgg .grid .left:hover .title {
  color: #0e4c92;
}

main .tzgg-mtsj .tzgg .grid .left:hover .title span {
  background-size: 100% 1px;
}

main .tzgg-mtsj .tzgg .grid .left .img {
  width: 100%;
  height: 25.2rem;
  background-color: #fff;
  box-shadow: 0px 6px 20px 0px rgba(14, 76, 146, 0.16);
  overflow: hidden;
}

main .tzgg-mtsj .tzgg .grid .left .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

main .tzgg-mtsj .tzgg .grid .left .time {
  color: #0e4c92;
  font-size: 14px;
}

main .tzgg-mtsj .tzgg .grid .left .title {
  color: #121212;
  font-size: 20px;
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  text-overflow: ellipsis;
  overflow: hidden;
  text-wrap: nowrap;
}

main .tzgg-mtsj .tzgg .grid .left .title span {
  padding-bottom: 2px;
  background-image: linear-gradient(to left, #0e4c92, #0e4c92);
  background-size: 0 1px;
  background-position: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.6s;
}

main .tzgg-mtsj .tzgg .grid .left .desc {
  color: #697589;
  font-size: 14px;
  line-height: 1.8;
  height: 4.8rem;
}

main .tzgg-mtsj .tzgg .grid .right {
  width: 40rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

main .tzgg-mtsj .tzgg .grid .right .item {
  width: 100%;
  display: flex;
  align-items: center;
  border-top: 1px dashed #00000044;
  height: 100px;
  padding: 2.5rem 0;
  box-sizing: border-box;
  cursor: pointer;
}

main .tzgg-mtsj .tzgg .grid .right .item:hover .title {
  color: #0e4c92;
}

main .tzgg-mtsj .tzgg .grid .right .item:hover .title span {
  background-size: 100% 1px;
}

main .tzgg-mtsj .tzgg .grid .right .item .time {
  width: 70px;
  height: 100%;
  border-right: 1px solid #ededed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 20px;
}

main .tzgg-mtsj .tzgg .grid .right .item .time .day {
  color: #0e4c92;
  font-weight: 600;
  text-align: center;
  font-size: 24px;
}

main .tzgg-mtsj .tzgg .grid .right .item .time .year-month {
  color: #0e4c92;
  text-align: center;
  font-size: 12px;
}

main .tzgg-mtsj .tzgg .grid .right .item .title {
  width: 0;
  flex-grow: 1;
  font-size: 18px;
  color: #121212;
  line-height: 1.4;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

main .tzgg-mtsj .tzgg .grid .right .item .title span {
  padding-bottom: 2px;
  background-image: linear-gradient(to left, #0e4c92, #0e4c92);
  background-size: 0 1px;
  background-position: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.6s;
}

main .tzgg-mtsj .mtsj {
  width: 0;
  flex-grow: 1;
}

main .tzgg-mtsj .mtsj .banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5rem;
}

main .tzgg-mtsj .mtsj .grid {
  width: 100%;
  height: 400px;
  opacity: 0;
  transform: translateX(20%);
}

main .tzgg-mtsj .mtsj .grid .item {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #00000044;
  box-sizing: border-box;
  gap: 2rem;
  height: 100px;
  cursor: pointer;
}

main .tzgg-mtsj .mtsj .grid .item:last-child {
  border-color: transparent;
}

main .tzgg-mtsj .mtsj .grid .item:hover .img {
  border-color: #922f2b;
}

main .tzgg-mtsj .mtsj .grid .item:hover .title {
  color: #922f2b;
}

main .tzgg-mtsj .mtsj .grid .item:hover .title span {
  background-size: 100% 1px;
}

main .tzgg-mtsj .mtsj .grid .item .img {
  width: 98px;
  height: 66px;
  border: 1px dashed rgba(146, 47, 43, 0.3);
  transition: border-color 0.6s;
  padding: 2px;
  box-sizing: border-box;
  background-color: #fff;
}

main .tzgg-mtsj .mtsj .grid .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main .tzgg-mtsj .mtsj .grid .item .title {
  width: 0;
  flex-grow: 1;
  font-size: 18px;
  color: #121212;
  line-height: 1.6;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

main .tzgg-mtsj .mtsj .grid .item .title span {
  padding-bottom: 2px;
  background-image: linear-gradient(to left, #922f2b, #922f2b);
  background-size: 0 1px;
  background-position: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.6s;
}

main .hwsj {
  width:1344px;
 
  box-sizing: border-box;
  padding-top: 10rem;
  position: relative;
}

main .hwsj .arrow.left {
    position:absolute;
    top:50%;
    left:-40px;
    width:38px;
    height:38px;
    cursor:pointer;
}
main .hwsj .arrow.right {
    position:absolute;
    top:50%;
    right:-40px;
    width:38px;
    height:38px;
    cursor:pointer;
}

main .hwsj .hwxy-right-bg {
  position: absolute;
  width: 290px;
  height: 438px;
  right: 0%;
  top: 5%;
}

main .hwsj .banner {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

main .hwsj .grid {
  width: 100%;
  box-sizing: border-box;
  height: 80rem;
  display: flex;
  position: relative;
}

main .hwsj .grid .lines {
  width: 100%;
  height: 37rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 5rem;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(30%);
}

main .hwsj .grid .line-box0 {
  transform: translateY(16rem);
}

main .hwsj .grid .line-box1 {
  transform: translateY(8rem);
}
main .hwsj .grid .line-box2 {
  transform: translateY(0);
}

main .hwsj .grid .line-box3 {
  transform: translateY(8rem);
}
main .hwsj .grid .line-box4 {
  transform: translateY(16rem);
}


main .hwsj .grid .line-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 37rem;
}
main .hwsj .grid .line-box.hidden {
  display:none;
}

main .hwsj .grid .line-box .year {
  font-weight: bold;
  font-size: 4rem;
  color: #121212;
  line-height: 1;
  margin-bottom: 1.6rem;
}

main .hwsj .grid .line-box .desc {
  font-size: 14px;
  color: #121212;
  line-height: 1;
  width: 19rem;
  text-align:center;
}

main .hwsj .grid .line-box img {
  width: 19rem;
  height: 5rem;
  margin-bottom: 2.5rem;
}

main .hwsj .grid .line-box .line {
  display: block;
  width: 2px;
  background: linear-gradient(180deg, #e9af3a 0%, rgba(233, 175, 58, 0) 100%);
  height: 23rem;
}

main .hwsj .grid .bg {
  position: absolute;
  width: 100%;
  background-image: url("../assets/bg4.webp");
  height: 41.8rem;
  bottom: 0;
  left: 0;
  z-index: -1;
}

main .ztjj {
  width:1344px;
  height: 61rem;
 
  box-sizing: border-box;
  padding-top: 10rem;
  position: relative;
}

main .ztjj .ztjj-bg {
  width: 117rem;
  height: 65.5rem;
  position: absolute;
  right: 4rem;
  z-index: -1;
  top: 2rem;
}

main .ztjj .banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

main .ztjj .grid {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 0;
  position: relative;
  user-select: none;
}

main .ztjj .grid .swiper {
  height: 26rem;
}

main .ztjj .grid .swiper-slide {
  width: 31.5% !important;
  height: 16rem;
  margin: 0 1%;
  position: relative;
  cursor: pointer;
}

main .ztjj .grid .swiper-but {
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
}

main .ztjj .grid .swiper-scrollbar {
  width: 800px;
  height: 2px;
  background: linear-gradient(135deg, rgba(14, 76, 146, 0) 0%, #0E4C92 11%, #0E4C92 89%, rgba(14, 76, 146, 0) 100%, #0E4C92 100%);
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

main .ztjj .grid .swiper-scrollbar .swiper-scrollbar-drag {
  height: 6px;
  background: #C41D17;
  border-radius: 3px 3px 3px 3px;
  margin-top: -2px;
}

main .ztjj .grid .img {
  width: 100%;
  height: 16rem;
  border-radius: 1.2rem;
  overflow: hidden;
  transform: rotateX(90deg);
}

main .ztjj .grid .img:hover img {
  transform: scale(1.15);
}

main .ztjj .grid .img img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.3s;
}

main .ztjj .grid .arrow {
  width: 38px;
  height: 38px;
  position: absolute;
  cursor: pointer;
  user-select: none;
}

main .ztjj .grid .arrow.left {
  left: -42px;
  top: 31%;
}

main .ztjj .grid .arrow.right {
  right: -52px;
  top: 31%;
}

main .ztjj .grid .bottom {
  width: 800px;
  height: 16px;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

main .hwmt {
  width:1344px;
 
  box-sizing: border-box;
  padding-top: 0rem;
  margin-bottom: 120px;
}

main .hwmt .banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 111px;
}

main .hwmt .grid {
  width: 100%;
  display: grid;
  grid-template-rows: 34rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin: 4rem 0;
}

main .hwmt .grid .item {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
}

main .hwmt .grid .item:hover .img img {
  transform: scale(1.1);
}

main .hwmt .grid .item > .mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  box-sizing: border-box;
  padding: 2rem;
}

main .hwmt .grid .item > .mask .content {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  box-sizing: border-box;
  gap: 1rem;
  overflow: hidden;
}

main .hwmt .grid .item > .mask .content .title {
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  width: 90%;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
}

main .hwmt .grid .item > .mask .content .desc {
  height: 40px;
  display: flex;
  justify-content: flex-start;
  transition: all 0.6s;
  width: 100%;
  align-items: center;
}

main .hwmt .grid .item > .mask .content .desc .icon-weixin {
  font-size: 28px;
  color: #ffffff;
}

main .hwmt .grid .item > .mask .content .desc .wx {
  font-size: 18px;
  color: #0BD950;
  line-height: 18px;
  display: inline-block;
  margin: 0 24px 0 10px;
}

main .hwmt .grid .item > .mask .content .desc .time {
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
}

main .hwmt .grid .item > .mask .content .btn {
  background-color: #00b53c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 11rem;
  height: 40px;
  overflow: hidden;
  transition: all 0.6s;
  transform: translateX(-10rem);
}

main .hwmt .grid .item > .mask .content .btn i {
  font-size: 2.4rem;
}

main .hwmt .grid .item > .mask .content .btn span {
  white-space: nowrap;
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity 0.6s;
}

main .hwmt .grid .item .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

main .hwmt .grid .item .img .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateY(0);
  background-color: #fff;
  z-index: 9;
}

main .hwmt .grid .item .img img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.6s;
}

main .hwmt .grid .wx-box {
  display: flex;
  padding-top: 20px;
}

main .hwmt .grid .wx-box .wx-box-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 50px;
}

main .hwmt .grid .wx-box .wx-box-item .top {
  width: 146px;
  height: 137px;
}

main .hwmt .grid .wx-box .wx-box-item .center {
  width: 100px;
  height: 100px;
}

main .hwmt .grid .wx-box .wx-box-item span {
  margin-top: 10px;
  font-weight: 400;
  font-size: 14px;
  color: #121212;
}
@media screen and (max-width: 900px) {
    header{
        height:50vh;
    }
}