.index .banner {
  height: 8.1rem;
}
.index .banner .text-part {
  width: min(12.18rem, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  --font-size: .62rem;
  color: #FFFFFF;
  line-height: 1.3;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}
.index .banner .tip {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem 0;
  font-weight: 600;
  --font-size: .14rem;
  color: #FFFFFF;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index .banner .tip span {
  display: block;
  --w: .2rem;
  --h: .34rem;
  width: var(--w);
  height: var(--h);
  border-radius: calc(var(--w) / 2);
  background-color: #D7E4F2;
  position: relative;
}
.index .banner .tip span i {
  width: calc(var(--w) * 0.2);
  height: calc(var(--h) * 0.2);
  border-radius: calc(var(--w) * 0.2 / 2);
  background-color: #184572;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index .banner .tip p {
  font-size: max(var(--font-size), 8px);
}
.index .banner .swiper {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.index .banner .swiper .swiper-slide .wp-block-video {
  height: 100%;
}
.index .banner .swiper .swiper-slide .wp-block-video video {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 910px) {
  .index .banner {
    height: 4.05rem;
  }
  .index .banner .tip span {
    --w: .12rem;
    --h: .204rem;
  }
  .index .banner .tip p {
    --font-size: .12rem;
  }
}
@media screen and (max-width: 700px) {
  .index .banner .tip span {
    display: none;
  }
}
.index .head {
  color: #333333;
  margin-bottom: 0.66rem;
}
.index .head h1 {
  font-weight: 700;
  --font-size: .6rem;
  text-transform: uppercase;
}
.index .head p {
  --font-size: .28rem;
  line-height: 1.3;
}
.index .ul {
  width: 5rem;
  --font-size: .16rem;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
}
@media screen and (max-width: 920px) {
  .index .ul {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
}
.index .ul li {
  display: flex;
  align-items: center;
}
.index .ul li::before {
  font-family: "icomoon";
  content: "\e903";
  margin-right: 0.15rem;
}
.index .part-1 {
  padding: 1.4rem 0 1.2rem;
  background: url(../images/index/bg-1.jpg) no-repeat right top/contain;
  background-position-y: -5.7rem;
}
.index .part-1 .content {
  height: 6.65rem;
  display: flex;
  position: relative;
  box-shadow: 0.3rem 0.3rem 0.8rem rgba(0, 0, 0, 0.2);
  gap: 1px;
}
.index .part-1 .content.triangle::before {
  --width: 2.6rem;
  --color: #05407A;
  top: -0.25rem;
  left: -0.25rem;
}
.index .part-1 .content .item {
  min-width: 1.7rem;
  transition: flex 0.6s ease-out;
  transition-property: flex, background-color;
  z-index: 9;
  background-color: rgba(0, 52, 105, 0.8);
  display: flex;
  justify-content: center;
  padding: 0.6rem 0;
  overflow: hidden;
  cursor: pointer;
}
.index .part-1 .content .item:hover {
  background-color: rgb(0, 52, 105);
}
.index .part-1 .content .item > .con > *:not(.bg) {
  opacity: 0;
  transform: translateY(100px);
  transition: 0.3s ease-out 0.3s;
  transition-property: opacity, transform;
}
.index .part-1 .content .item h2 {
  font-weight: 600;
  --font-size: .3rem;
  color: #FFFFFF;
  writing-mode: vertical-rl;
}
.index .part-1 .content .item h2::before {
  display: none;
}
.index .part-1 .content .item .con > * {
  width: 0;
  height: 0;
  overflow: hidden;
}
.index .part-1 .content .item:not(.active) > h2 {
  transform: unset;
  opacity: 1;
}
.index .part-1 .content .item.active {
  display: unset;
  flex: 1;
  padding: 1rem 1.4rem;
  z-index: 1;
  cursor: default;
  transform: unset !important;
}
.index .part-1 .content .item.active > .con > *:not(.bg) {
  opacity: 1;
  transform: translateY(0px);
}
.index .part-1 .content .item.active h2 {
  writing-mode: unset;
  --font-size: .44rem;
  width: 8.2rem;
  transition: color 0.3s ease-out;
}
.index .part-1 .content .item.active h2::before {
  display: unset;
}
.index .part-1 .content .item.active .ul a:hover {
  color: #FFA200;
}
.index .part-1 .content .item.active .con {
  width: 8.2rem;
  display: block;
}
.index .part-1 .content .item.active .con > * {
  width: unset;
  height: unset;
}
.index .part-1 .content .item.active .con > .ui {
  width: 4.5rem;
}
.index .part-1 .content .item.active .con > .bg {
  width: 100%;
  height: 100%;
}
.index .part-1 .content .item.active .con > img {
  pointer-events: none;
}
.index .part-1 .content .item.active h5 {
  --font-size: .16rem;
  color: #FFFFFF;
  line-height: 2.5;
}
.index .part-1 .content .item.active p {
  --font-size: .16rem;
  color: #FFFFFF;
  margin-bottom: 0.45rem;
  text-align: justify;
}
.index .part-1 .content .item img.bg {
  top: 0;
  left: 0;
}
@media screen and (max-width: 1200px) {
  .index .part-1 .content {
    height: 8rem;
  }
  .index .part-1 .content .ul {
    width: 100%;
  }
}
@media screen and (max-width: 920px) {
  .index .part-1 .content {
    height: unset;
    flex-direction: column;
  }
  .index .part-1 .content .item {
    justify-content: start;
    padding: 0.4rem 1rem;
  }
  .index .part-1 .content .item h2 {
    writing-mode: unset;
  }
  .index .part-1 .content .item .ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .index .part-1 .content .item > .con > *:not(.bg) {
    transition: 0.3s ease-out;
    transform: translateX(50px);
  }
  .index .part-1 .content .item.active {
    padding: 1rem 0.6rem;
  }
  .index .part-1 .content .item.active > .con > *:not(.bg) {
    transform: translateX(0px);
  }
  .index .part-1 .content .item.active h2 {
    width: auto;
  }
  .index .part-1 .content .item.active .con {
    width: auto;
  }
}
.index .part-2 {
  background: url(../images/index/bg-2.png) no-repeat right top/4rem;
  background-color: rgba(242, 242, 242, 0.9);
  padding: 1.3rem 0 1.5rem;
}
.index .part-2 .page-content {
  height: 5rem;
  display: flex;
  gap: 0 1.6rem;
}
.index .part-2 .left {
  width: 5.4rem;
  height: 6.8rem;
}
.index .part-2 .left.triangle::before {
  --width: 2.6rem;
  top: unset;
  right: -0.3rem;
  bottom: -0.3rem;
  transform: rotate(180deg);
}
.index .part-2 .left img {
  position: absolute;
}
.index .part-2 .right {
  flex: 1;
  padding-top: 0.75rem;
}
.index .part-2 .right .head h1 {
  margin-bottom: 0.2rem;
}
.index .part-2 .right .head p {
  margin-bottom: 0.5rem;
}
.index .part-2 .right .head > .ui {
  flex-direction: row-reverse;
  margin-bottom: 0.85rem;
  --color: #113978;
}
.index .part-2 .right .head .ul {
  width: 100%;
  color: #000000;
}
.index .part-2 .right .head .ul li::before {
  color: #113978;
}
.index .part-2 .right .head .ul a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 910px) {
  .index .part-2 .page-content {
    height: unset;
    flex-direction: column;
  }
}
.index .part-3 {
  background: url(../images/index/bg-3.jpg) no-repeat center/cover;
  background-position-y: 10px;
  padding: 3rem 0 1.8rem;
  background-color: rgb(6, 57, 110);
}
.index .part-3 .head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: #FFFFFF;
}
.index .part-3 .head .triangle {
  display: flex;
  align-items: center;
  gap: 0 1em;
}
.index .part-3 .head .triangle h1 {
  cursor: pointer;
}
.index .part-3 .head .triangle > * {
  opacity: 0.3;
}
.index .part-3 .head .triangle > *.active {
  opacity: 1;
}
.index .part-3 .head .triangle span {
  --font-size: .6rem;
  font-size: max(var(--font-size), 28px);
  cursor: default;
}
.index .part-3 .head .goMore {
  font-weight: 600;
  --font-size: .2rem;
  display: flex;
  align-items: baseline;
}
.index .part-3 .head .goMore i {
  margin-left: 0.12rem;
  transition: transform 0.3s ease-out;
}
.index .part-3 .head .goMore:hover i {
  transform: translateX(0.1rem);
}
.index .part-3 .content .area {
  display: none;
  visibility: hidden;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.index .part-3 .content .area.active {
  display: grid;
  visibility: visible;
}
.index .part-3 .content .item {
  display: flex;
  flex-direction: column;
}
.index .part-3 .content .item .img {
  height: 2.66rem;
  margin-bottom: 0.2rem;
  overflow: hidden;
}
.index .part-3 .content .item .img img {
  transition: transform 0.3s ease-out;
}
.index .part-3 .content .item .date {
  font-weight: 600;
  --font-size: .14rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.15rem;
}
.index .part-3 .content .item .h2 {
  flex: 1;
}
.index .part-3 .content .item h2 {
  --font-size: .24rem;
  color: #F3F3F3;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  -webkit-line-clamp: 3;
}
.index .part-3 .content .item > .foot {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 0.45rem;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  --font-size: .14rem;
  color: rgba(255, 255, 255, 0.5);
}
.index .part-3 .content .item > .foot .more {
  display: flex;
  color: #FFFFFF;
  --font-size: .14rem;
}
.index .part-3 .content .item > .foot .more::before {
  color: #FFFFFF;
  transition: color 0.3s ease-out, margin 0.3s ease-out;
}
.index .part-3 .content .item:hover .img img {
  transform: scale(1.2);
}
.index .part-3 .content .item:hover > .foot .more::before {
  color: #FFA200;
  margin-right: 0.3rem;
}
.index .part-3 .page-content > .foot {
  margin-top: 1.25em;
  display: grid;
  grid-template-columns: 1fr 0.38rem 3fr;
  gap: 0 0.14rem;
  align-items: center;
}
.index .part-3 .page-content > .foot i {
  display: block;
  background: url(../images/hexagon-special.png) no-repeat center/contain;
  height: 0.2rem;
}
.index .part-3 .page-content > .foot::before {
  content: "";
  height: 1px;
  background-color: #D1890D;
}
.index .part-3 .page-content > .foot::after {
  content: "";
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 910px) {
  .index .part-3 .content .area.active {
    display: block;
  }
  .index .part-3 .content .item .img {
    height: 4rem;
  }
  .index .part-3 .content .item > .foot {
    padding: 0.12rem 0 0.3rem;
  }
}
@media screen and (max-width: 750px) {
  .index .part-3 {
    padding-top: 2rem;
  }
  .index .part-3 .content {
    grid-template-columns: 100%;
  }
  .index .part-3 .content .item .img {
    height: 5.32rem;
  }
}
.index .part-4 {
  height: 7.9rem;
  padding: 1.6rem 0;
  position: relative;
}
.index .part-4 .head {
  display: flex;
  align-items: center;
  gap: 0 1.15rem;
}
.index .part-4 .head h1 {
  width: 5.6rem;
}
.index .part-4 .head p {
  display: flex;
  flex-direction: column;
  gap: 0.5rem 0;
}
.index .part-4 .head .goMore {
  font-weight: 600;
  --font-size: .2rem;
  display: flex;
  align-items: baseline;
  width: fit-content;
  align-self: end;
  color: #113978;
}
.index .part-4 .head .goMore i {
  margin-left: 0.12rem;
  transition: transform 0.3s ease-out;
}
.index .part-4 .head .goMore:hover i {
  transform: translateX(0.1rem);
}
.index .part-4 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: 0.5rem;
}
.index .part-4 ul li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem 0;
}
.index .part-4 ul p {
  font-weight: 700;
  --font-size: .78rem;
  color: #FFA811;
}
.index .part-4 ul .ui {
  --color: #979797;
}
.index .part-4 ul span {
  font-weight: 600;
  --font-size: .28rem;
  color: #333333;
}
.index .part-4 .bg {
  object-fit: contain;
  z-index: 9;
}
.index .part-4 .bg.left {
  width: 5.6rem;
  height: 7.4rem;
  top: 1.1rem;
  left: 0;
}
.index .part-4 .bg.right {
  width: 1.4rem;
  height: 8.1rem;
  bottom: 0;
  right: 0;
  top: unset;
  left: unset;
}
@media screen and (max-width: 910px) {
  .index .part-4 {
    height: unset;
  }
  .index .part-4 ul {
    grid-template-columns: repeat(2, 2.7rem);
    justify-content: space-around;
  }
}
.index .part-5 {
  height: 7rem;
  background: url(../images/index/bg-6.jpg) no-repeat top center/cover;
  position: relative;
  z-index: 9;
  border-bottom: 0.1rem solid #FFA200;
}
.index .part-5 .page-content {
  position: relative;
  top: -0.4rem;
  display: flex;
  gap: 0 1.75rem;
}
.index .part-5 .left {
  width: 6.46rem;
  height: 6.16rem;
  box-shadow: 0.3rem 0.3rem 0.8rem rgba(0, 0, 0, 0.2);
}
.index .part-5 .right {
  flex: 1;
  margin-top: 1.5rem;
}
.index .part-5 .right .text-part {
  color: #FFFFFF;
  --font-size: .28rem;
  line-height: 1.2;
}
.index .part-5 .right .text-part .con::before, .index .part-5 .right .text-part .con::after {
  --font-size: .4rem;
  color: #FFA200;
}
.index .part-5 .right .text-part .name {
  font-weight: 600;
  letter-spacing: 1.56px;
  margin-top: 0.35rem;
}
.index .part-5 .right .text-part .position {
  --font-size: .2rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1.11px;
  margin-top: 0.2rem;
}
.index .part-5 .right .foot {
  color: #262727;
  --font-size: .24rem;
  line-height: 1.5;
  margin-top: 0.4rem;
}
.index .part-5 .right .foot a {
  font-weight: 700;
  color: #EE9B0F;
  margin-top: 0.4rem;
  width: fit-content;
}
.index .part-5 .right .foot a::after {
  font-family: "icomoon";
  content: "\e90d";
  margin-left: 0.12rem;
  font-weight: 400;
  transition: transform 0.3s ease-out;
}
.index .part-5 .right .foot a:hover::after {
  transform: translateX(0.1rem);
}
@media screen and (max-width: 910px) {
  .index .part-5 {
    height: unset;
  }
  .index .part-5 .page-content {
    flex-direction: column;
  }
  .index .part-5 .page-content .head {
    color: #FFFFFF;
  }
}
.index .part-6 {
  height: 12.23rem;
  padding: 2.32rem 0;
  background-color: #003F7E;
  position: relative;
}
.index .part-6 .page-content {
  position: relative;
  z-index: 11;
}
.index .part-6 .text-part {
  width: 7.8rem;
}
.index .part-6 .head {
  color: #FFFFFF;
  margin-bottom: 0.8rem;
}
.index .part-6 .head h1 {
  margin-bottom: 0.4rem;
}
.index .part-6 .head p {
  --font-size: .24rem;
}
.index .part-6 .ul {
  --font-size: .18rem;
}
.index .part-6 .ul li {
  gap: 0.1rem;
}
.index .part-6 .ul li a {
  align-items: center;
  white-space: nowrap;
}
.index .part-6 .ul li a:hover {
  text-decoration: underline;
}
.index .part-6 .ul li::before {
  margin-right: 0;
  font-size: max(var(--font-size), 10px);
}
.index .part-6 .picture {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.index .part-6 .picture img {
  top: unset;
  left: unset;
  object-fit: cover;
  box-shadow: 0.1rem 0.2rem 0.2rem rgba(0, 0, 0, 0.3);
}
.index .part-6 .picture img:nth-of-type(1) {
  width: 3.7rem;
  height: 2.2rem;
  right: 1.4rem;
  bottom: 6.4rem;
  z-index: 9;
}
.index .part-6 .picture img:nth-of-type(2) {
  width: 6.2rem;
  height: 8.43rem;
  right: 2.6rem;
  bottom: -1.55rem;
}
.index .part-6 .picture img:nth-of-type(3) {
  width: 3.4rem;
  height: 2.15rem;
  left: 0;
  bottom: 2.15rem;
  z-index: 9;
}
.index .part-6 .picture img:nth-of-type(4) {
  width: 4.18rem;
  height: 5.7rem;
  left: 2.9rem;
  bottom: -2.5rem;
}
.index .part-6 .picture img:nth-of-type(5) {
  width: 3.65rem;
  height: 2.2rem;
  right: 0.15rem;
  bottom: -2.85rem;
  z-index: 9;
}
.index .part-6 .background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.index .part-6 .background img {
  top: unset;
  left: unset;
  object-fit: contain;
}
.index .part-6 .background img:nth-of-type(1) {
  width: 17.8rem;
  height: 2.4rem;
  right: 0;
  top: 0.95rem;
}
.index .part-6 .background img:nth-of-type(2) {
  width: 14.5rem;
  height: 2.4rem;
  left: 0;
  top: 3.9rem;
}
.index .part-6 .background img:nth-of-type(3) {
  width: 2.2rem;
  height: 4.3rem;
  right: 0;
  top: 4rem;
}
.index .part-6 .background img:nth-of-type(4) {
  width: 70%;
  height: 3.4rem;
  left: 0;
  bottom: 0;
}
.index .part-6 .background img:nth-of-type(5) {
  width: 27%;
  height: 3.4rem;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 920px) {
  .index .part-6 .text-part {
    width: 100%;
  }
  .index .part-6 .picture {
    display: none;
  }
  .index .part-6 .background img:nth-of-type(3) {
    display: none;
  }
  .index .part-6 .background img:nth-of-type(4), .index .part-6 .background img:nth-of-type(5) {
    height: 2.1rem;
  }
}
.index .part-7 {
  height: 9.3rem;
  background: url(../images/index/bg-12.png) no-repeat left bottom/19.2rem 3.6rem;
  position: relative;
  padding-top: 4.7rem;
}
.index .part-7 .head {
  text-align: center;
}
.index .part-7 .head h1 {
  margin-bottom: 0.3rem;
}
.index .part-7 .ul {
  color: #333333;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.index .part-7 .ul li a {
  text-decoration: underline;
}
.index .part-7 .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2.1rem;
  background-image: linear-gradient(#F0F0F2 70%, #FFFFFF);
}
@media screen and (max-width: 600px) {
  .index .part-7 {
    padding-top: 2.7rem;
  }
  .index .part-7 .ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .index .part-7 .background {
    display: none;
  }
}
.index .part-8 {
  background: url(../images/index/pic-14.jpg) no-repeat center/cover;
  padding: 1.3rem 0 1.5rem;
  color: #FFFFFF;
}
.index .part-8 .head {
  display: flex;
  justify-content: space-between;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
}
.index .part-8 .head .goMore {
  font-weight: 600;
  --font-size: .2rem;
  display: flex;
  align-items: baseline;
}
.index .part-8 .head .goMore i {
  margin-left: 0.12rem;
  transition: transform 0.3s ease-out;
}
.index .part-8 .head .goMore:hover i {
  transform: translateX(0.1rem);
}
.index .part-8 p {
  --font-size: .28rem;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 0.45rem;
}
