@charset "utf-8";
/*!
by Sean Lu 20221210
!!!请勿直接在c.css中修改内容
!!!请勿直接在c.css中修改内容
!!!请勿直接在c.css中修改内容
*/
/* 全局变量设置 */
:root {
  --color-main: #de0000;
  --color-white: #fff;
  --color-txt: #253554;
  --color-bg: #f5f5f5;
  --color-0: #000;
  --color-3: #333;
  --color-6: #666;
  --color-9: #999;
  --color-border: #dedede;
  --fsize-base: 14px;
  --fsize-large: calc(var(--fsize-base) * 1.25);
  --fsize-txt: calc(var(--fsize-base) * 1.14);
  --fsize-small: calc(var(--fsize-base) * 0.85);
  --fsize-h1: calc(var(--fsize-base) * 2.6);
  --fsize-h2: calc(var(--fsize-base) * 2.15);
  --fsize-h3: calc(var(--fsize-base) * 1.7);
  --gap-base: 16px;
  --gap-mini: calc(var(--gap-base) * 0.25);
  --gap-small: calc(var(--gap-base) * 0.5);
  --gap-large: calc(var(--gap-base) * 1.5);
  --gap-h1: calc(var(--gap-base) * 5);
  --gap-h2: calc(var(--gap-base) * 4);
  --gap-h3: calc(var(--gap-base) * 3);
}
@media (max-width: 1440px) {
  :root {
    --fsize-base: 12px;
    --gap-base: 12px;
  }
}
@media (max-width: 800px) {
  :root {
    --fsize-base: 12px;
    --gap-base: 6px;
  }
}
.trans {
  transition: all 0.3s;
}
.header {
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  transition: all 0.3s;
}
@media (max-width: 800px) {
  .header {
    height: 80px;
  }
  .header.on {
    background: #222;
  }
}
.header .wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}
.header .wrapper .logo {
  width: 204px;
  height: 54px;
}
@media (max-width: 800px) {
  .header .wrapper .logo {
    width: 150px;
    height: 35px;
  }
}
.header .wrapper .logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header .wrapper .nav {
  height: 50px;
}
@media (max-width: 800px) {
  .header .wrapper .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 50px;
    height: 100%;
    background: var(--color-3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
  }
  .header .wrapper .nav.on {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header .wrapper .nav .nul {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 800px) {
  .header .wrapper .nav .nul {
    flex-direction: column;
  }
}
.header .wrapper .nav .nul .nli {
  height: 100%;
  position: relative;
  margin: 0 var(--gap-h3);
}
@media (max-width: 1000px) {
  .header .wrapper .nav .nul .nli {
    margin: 0 var(--gap-large);
  }
}
@media (max-width: 800px) {
  .header .wrapper .nav .nul .nli {
    height: 60px;
    width: 100%;
  }
}
.header .wrapper .nav .nul .nli .na {
  display: flex;
  position: relative;
  z-index: 2;
  align-items: center;
  height: 100%;
  font-size: var(--fsize-large);
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s;
}
@media (max-width: 800px) {
  .header .wrapper .nav .nul .nli .na {
    justify-content: center;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  }
}
.header .wrapper .nav .nul .nli .na::after {
  content: "";
  width: 0;
  height: 5px;
  background: var(--color-main);
  transition: all 0.3s;
  position: absolute;
  left: 0%;
  bottom: 10%;
  z-index: -1;
}
.header .wrapper .nav .nul .nli:hover .na {
  color: var(--color-white);
}
.header .wrapper .nav .nul .nli:hover .na::after {
  width: 100%;
}
.header .wrapper .nav .nul .nli:hover .sub {
  opacity: 1;
  visibility: visible;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
}
.header .wrapper .nav .nul .nli .sub {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  padding: var(--gap-base) 0;
  box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  transform-style: preserve-3d;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
}
@media (max-width: 800px) {
  .header .wrapper .nav .nul .nli .sub {
    display: none;
  }
}
.header .wrapper .nav .nul .nli .sub .sli .sa {
  text-decoration: none;
  height: 36px;
  display: flex;
  align-items: center;
  font-size: var(--fsize-txt);
  padding: 0 var(--gap-h3) 0 var(--gap-large);
  color: var(--color-3);
  border-left: 5px solid transparent;
  transition: all 0.3s;
}
.header .wrapper .nav .nul .nli .sub .sli .sa:hover {
  background: #014190;
  border-left-color: var(--color-main);
  color: var(--color-white);
}
.header .wrapper .mor {
  display: flex;
  align-items: center;
}
.header .wrapper .mor .it {
  position: relative;
}
@media (max-width: 800px) {
  .header .wrapper .mor .it.itno {
    display: none;
  }
}
.header .wrapper .mor .it .ma {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  position: relative;
}
.header .wrapper .mor .it .ma img {
  display: block;
  width: 24px;
  height: 24px;
}
.header .wrapper .mor .it:hover .mul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .wrapper .mor .it .mul {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  padding: var(--gap-base) 0;
  box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
}
.header .wrapper .mor .it .mul .mli .mla {
  text-decoration: none;
  height: 36px;
  display: flex;
  align-items: center;
  font-size: var(--fsize-txt);
  padding: 0 var(--gap-h3) 0 var(--gap-large);
  color: var(--color-3);
  border-left: 5px solid transparent;
  transition: all 0.3s;
}
.header .wrapper .mor .it .mul .mli .mla:hover {
  background: #014190;
  border-left-color: var(--color-main);
  color: var(--color-white);
}
.header .wrapper .mor .menu {
  display: none;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  border-radius: 50%;
}
@media (max-width: 800px) {
  .header .wrapper .mor .menu {
    display: flex;
  }
}
.header .wrapper .mor .menu i {
  align-items: center;
  height: 100%;
}
.header .wrapper .mor .menu svg {
  width: 16px;
}
.header .wrapper .mor .menu .i1 {
  display: flex;
}
.header .wrapper .mor .menu .i2 {
  display: none;
}
.header .wrapper .mor .menu.on .i1 {
  display: none;
}
.header .wrapper .mor .menu.on .i2 {
  display: flex;
}
.seawrap {
  background: rgba(77, 77, 77, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.seawrap.on {
  opacity: 1;
  visibility: visible;
}
.seawrap .clo {
  padding: var(--gap-mini);
  border: 2px solid var(--color-white);
  border-radius: 50%;
  position: absolute;
  right: var(--gap-h1);
  top: var(--gap-h1);
  transition: all 0.3s;
}
.seawrap .clo:hover {
  transform: rotate(90deg);
}
.seawrap .clo img {
  display: block;
  width: 58px;
  height: 58px;
}
.seawrap .seabox {
  width: 100%;
  max-width: 1200px;
  color: var(--color-white);
  text-align: center;
}
.seawrap .seabox .hd {
  font-size: calc(var(--fsize-h1) * 1.2);
  font-weight: bold;
  letter-spacing: var(--gap-small);
}
.seawrap .seabox .bd {
  margin-top: var(--gap-large);
}
.seawrap .seabox .bd .sea .ipt {
  width: 100%;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  height: 100px;
  display: flex;
  align-items: center;
  padding: 0 var(--gap-large);
  box-sizing: border-box;
  font-size: var(--fsize-h3);
  background: transparent;
  color: var(--color-white);
}
.bannerslide {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
@media (max-width: 800px) {
  .bannerslide {
    height: 70vh;
  }
}
.bannerslide .swiper-slide {
  height: 100vh;
}
@media (max-width: 800px) {
  .bannerslide .swiper-slide {
    height: 70vh;
  }
}
.bannerslide .swiper-slide.swiper-slide-active .bg {
  transform: scale(1);
}
.bannerslide .swiper-slide .bg {
  height: 100%;
  transform: scale(1.05);
  transition: all 1.2s;
}
.bannerslide .swiper-slide .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bannerslide .swiper-slide .box {
  position: absolute;
  bottom: 35vh;
  left: 0;
  right: 0;
  padding: 0 var(--gap-h1);
  box-sizing: border-box;
}
@media (max-width: 800px) {
  .bannerslide .swiper-slide .box {
    bottom: 20vh;
  }
}
.bannerslide .swiper-slide .box .inf {
  color: var(--color-white);
}
.bannerslide .swiper-slide .box .inf .nam {
  font-size: calc(var(--fsize-h1) * 1.4);
  line-height: 1.2;
  font-weight: bold;
  transition: all 0.3s;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
@media (max-width: 800px) {
  .bannerslide .swiper-slide .box .inf .nam {
    font-size: var(--fsize-h2);
  }
}
.bannerslide .swiper-slide .txt {
  position: absolute;
  bottom: var(--gap-h1);
  left: var(--gap-h1);
  font-size: var(--fsize-large);
  line-height: 1.6;
  color: var(--color-white);
  font-weight: 400;
  transition: all 0.3s;
  pointer-events: none;
  display: none;
}
@media (max-width: 800px) {
  .bannerslide .swiper-slide .txt {
    margin-top: var(--gap-h3);
    font-size: var(--fsize-base);
  }
  .bannerslide .swiper-slide .txt br {
    display: none;
  }
}
.bannerslide .swiper-slide .btn {
  margin-top: var(--gap-h3);
  display: none;
}
@media (max-width: 800px) {
  .bannerslide .swiper-slide .btn {
    margin-top: var(--gap-large);
  }
}
.bannerslide .swiper-slide .btn .ba {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-decoration: none;
  font-size: var(--fsize-txt);
  width: calc(var(--gap-h1) * 2);
  height: calc(var(--gap-h1) * 0.76);
  border-radius: var(--gap-h1);
  background: var(--color-main);
}
@media (max-width: 800px) {
  .bannerslide .swiper-slide .btn .ba {
    width: 40vw;
    height: 12vw;
  }
}
.bannerslide .swiper-slide .btn .ba:hover {
  background: #263138;
}
.bannerslide .swiper-slide .btn .ba:hover .arr {
  transform: rotate(45deg);
}
.bannerslide .swiper-slide .btn .ba .btxt {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.bannerslide .swiper-slide .btn .ba .arr {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: var(--gap-small);
  transition: all 0.3s;
}
@media (max-width: 800px) {
  .bannerslide .swiper-slide .btn .ba .arr {
    margin-left: 2vw;
  }
}
.bannerslide .swiper-slide .btn .ba .arr svg {
  width: 18px;
}
.bannerslide .pagewrap {
  position: absolute;
  right: var(--gap-h1);
  bottom: var(--gap-h1);
  z-index: 3;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  column-gap: var(--gap-small);
}
@media (max-width: 800px) {
  .bannerslide .pagewrap {
    bottom: calc(var(--gap-h1) * 3);
    column-gap: var(--gap-large);
  }
}
.bannerslide .pagewrap .swiper-button-prev,
.bannerslide .pagewrap .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  color: var(--color-white);
  width: 60px;
  height: 60px;
  border: rgba(255, 255, 255, 0.4) 1px solid;
  border-radius: 60px;
  transition: all 0.3s;
}
.bannerslide .pagewrap .swiper-button-prev svg,
.bannerslide .pagewrap .swiper-button-next svg {
  width: 18px;
}
.bannerslide .pagewrap .swiper-button-prev:hover,
.bannerslide .pagewrap .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.2);
}
.bannerslide .pagewrap .swiper-button-prev::after,
.bannerslide .pagewrap .swiper-button-next::after {
  display: none;
}
.homebox01 {
  display: flex;
  padding: var(--gap-h1) 0;
}
@media (max-width: 800px) {
  .homebox01 {
    flex-direction: column;
  }
}
.homebox01 .tit {
  flex: 1;
}
.homebox01 .tit .cn {
  font-size: var(--fsize-h2);
  font-weight: 900;
  color: var(--color-main);
}
.homebox01 .tit .en {
  font-size: var(--fsize-txt);
  line-height: 1.6;
  margin-top: var(--gap-base);
}
.homebox01 .inf {
  flex: 1;
  box-sizing: border-box;
  padding-left: var(--gap-h2);
  margin-left: var(--gap-h2);
  border-left: 1px solid #ccc;
}
@media (max-width: 800px) {
  .homebox01 .inf {
    border-left: 0;
    padding-left: 0;
    margin-left: 0;
    margin-top: var(--gap-h3);
  }
}
.homebox01 .inf .nam {
  font-size: var(--fsize-large);
  font-weight: 800;
}
.homebox01 .inf .txt {
  font-size: var(--fsize-txt);
  line-height: 1.6;
  margin-top: var(--gap-base);
  color: var(--color-3);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  word-break: break-all;
  -webkit-line-clamp: 4;
}
.homebox01 .inf .txt.tm {
  -webkit-line-clamp: 40;
}
.homebox01 .inf .btn {
  margin-top: var(--gap-base);
  display: flex;
}
.homebox01 .inf .btn .ba {
  height: 45px;
  border: 1px solid var(--color-0);
  display: flex;
  flex: 1;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
  font-size: var(--fsize-base);
  font-weight: 600;
  text-decoration: none;
  margin-right: var(--gap-large);
  color: var(--color-0);
  transition: all 0.3s;
}
.homebox01 .inf .btn .ba:last-child {
  margin-right: 0;
}
.homebox01 .inf .btn .ba:hover {
  border-color: var(--color-main);
  color: var(--color-main);
}
.homebox01 .inf .btn .ba.on {
  background: var(--color-0);
  color: var(--color-white);
}
.homebox01 .inf .btn .ba.on:hover {
  background: var(--color-main);
  border-color: var(--color-main);
}
.homebox04 {
  background: #f2f2f2;
  padding: var(--gap-h1) 0;
}
.homebox04 .hd {
  text-align: center;
}
.homebox04 .hd .sub {
  font-size: var(--fsize-large);
  color: var(--color-3);
}
.homebox04 .hd .nam {
  font-size: calc(var(--fsize-h1) * 1.2);
  font-weight: 600;
}
@media (max-width: 800px) {
  .homebox04 .hd .nam {
    font-size: var(--fsize-h2);
  }
}
.homebox04 .hd .lin {
  margin-top: var(--gap-large);
  font-size: var(--fsize-base);
  display: flex;
  flex-wrap: wrap;
}
.homebox04 .hd .lin .la {
  margin-right: var(--gap-large);
  color: var(--color-3);
  border-top: 2px solid transparent;
  padding: var(--gap-small) 0;
  text-decoration: none;
  transition: all 0.3s;
}
.homebox04 .hd .lin .la.on {
  border-top-color: var(--color-0);
}
.homebox04 .hd .lin .la:hover {
  border-top-color: var(--color-main);
  color: var(--color-main);
}
.homebox04 .hd .lin .la:last-child {
  margin-right: 0;
}
.homebox04 .bd {
  margin-top: var(--gap-large);
}
.homebox04 .bd .hb04list {
  padding: var(--gap-base) var(--gap-small);
}
.homebox04 .bd .hb04list .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-large);
}
.homebox04 .bd .hb04list .box {
  background: var(--color-white);
  padding: var(--gap-base);
  box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.homebox04 .bd .hb04list .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.homebox04 .bd .hb04list .box .img .ia {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  background: #f2f2f2;
  position: relative;
}
.homebox04 .bd .hb04list .box .img .ia img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--gap-large);
  box-sizing: border-box;
  object-fit: contain;
}
.homebox04 .bd .hb04list .box .inf {
  padding: var(--gap-large) var(--gap-base);
}
.homebox04 .bd .hb04list .box .inf .cla {
  display: flex;
  margin-bottom: var(--gap-small);
}
.homebox04 .bd .hb04list .box .inf .cla span {
  display: flex;
  height: 30px;
  border: 1px solid var(--color-3);
  font-size: var(--fsize-small);
  border-radius: 4px;
  align-items: center;
  padding: 0 var(--gap-base);
  font-weight: 300;
}
.homebox04 .bd .hb04list .box .inf .nam {
  font-size: calc(var(--fsize-large) * 1.1);
  font-weight: 600;
  color: var(--color-0);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  word-break: break-all;
  -webkit-line-clamp: 1;
}
.homebox04 .bd .hb04list .box .inf .mod {
  font-size: var(--fsize-small);
  margin: var(--gap-mini) 0 var(--gap-large);
}
.homebox04 .bd .hb04list .box .inf .it {
  display: none;
  padding-bottom: var(--gap-large);
  margin-bottom: var(--gap-large);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--color-0);
  font-size: var(--fsize-small);
  line-height: 1.6;
}
.homebox04 .bd .hb04list .box .inf .it .ih {
  font-size: var(--fsize-base);
  font-weight: 600;
  margin-bottom: var(--gap-small);
}
.homebox04 .bd .hb04list .box .inf .it .ib {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  word-break: break-all;
  -webkit-line-clamp: 2;
}
.homebox04 .bd .hb04list .box .inf .it .il .ii {
  position: relative;
  padding-left: 18px;
  letter-spacing: 0.5px;
  margin: var(--gap-mini) 0;
}
.homebox04 .bd .hb04list .box .inf .it .il .ii::before {
  content: "";
  position: absolute;
  background: #000;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 0;
  margin-top: 5px;
}
.homebox04 .bd .hb04list .box .inf .it.no {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.homebox04 .bd .hb04list .box .inf .btn {
  display: flex;
  margin-top: var(--gap-large);
}
.homebox04 .bd .hb04list .box .inf .btn .ba {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  background: var(--color-0);
  color: var(--color-white);
  font-size: var(--fsize-small);
  font-weight: 600;
  height: 40px;
  text-decoration: none;
  transition: all 0.3s;
}
.homebox04 .bd .hb04list .box .inf .btn .ba:hover {
  background: var(--color-main);
}
.homebox04 .bd .morbtn {
  margin-top: var(--gap-h3);
  display: flex;
  justify-content: center;
}
.homebox04 .bd .morbtn .ma {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 300px;
  height: 55px;
  background: var(--color-main);
  color: var(--color-white);
  font-size: var(--fsize-base);
  padding: 0 var(--gap-large);
  box-sizing: border-box;
  text-decoration: none;
  transition: all 0.3s;
}
.homebox04 .bd .morbtn .ma:hover {
  width: 320px;
  background: var(--color-0);
}
.inbox {
  padding: calc(var(--gap-h1) * 2) 0;
}
.inbox .hd {
  text-align: center;
  font-size: var(--fsize-h2);
  color: var(--color-0);
  font-family: "alishuhei";
}
.inbox .bd {
  margin-top: var(--gap-large);
  font-size: var(--fsize-txt);
  color: var(--color-6);
  line-height: 1.6;
}
.inbox .bd p {
  margin-bottom: var(--gap-large);
}
.inbox .bd h4 {
  color: var(--color-3);
  margin-bottom: var(--gap-h3);
  font-size: calc(var(--fsize-large) * 1.1);
  font-weight: normal;
}
.inbox.ib02 {
  background: var(--color-bg);
  position: relative;
}
.inbox.ib02::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/biglogo.svg) no-repeat left bottom;
  background-size: 30vw;
  opacity: 0.05;
}
.inbox .ib02list {
  display: grid;
  margin-top: var(--gap-h3);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gap-base);
  position: relative;
}
@media (max-width: 800px) {
  .inbox .ib02list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.inbox .ib02list .item {
  background-color: rgba(255, 255, 255, 0.8);
  padding: var(--gap-h3);
  transition: all 0.3s;
  grid-column-start: span 3;
}
@media (max-width: 800px) {
  .inbox .ib02list .item {
    grid-column-start: span 1;
  }
}
.inbox .ib02list .item.ib {
  grid-column-start: span 4;
}
@media (max-width: 800px) {
  .inbox .ib02list .item.ib {
    grid-column-start: span 1;
  }
}
.inbox .ib02list .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.inbox .ib02list .item .ih {
  font-size: var(--fsize-h3);
  font-weight: bold;
}
.inbox .ib02list .item .ib {
  font-size: var(--fsize-txt);
  line-height: 2;
  margin-top: var(--gap-large);
}
.inbox.ib03 {
  background: url(../img/dmg/hb03bg.jpg) no-repeat center top;
  overflow: hidden;
}
.inbox.ib03 .hd {
  color: var(--color-white);
}
.inbox .ib03list {
  margin-top: var(--gap-h3);
}
.inbox .ib03list .swiper-slide {
  transform: scale(0.8);
  opacity: 0.6;
  background: rgba(255, 255, 255, 0.8) url(../img/dmg/yuansushuiyin.png) no-repeat center bottom;
  background-size: cover;
  padding: var(--gap-large);
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 6px;
  position: relative;
  transition: all 0.3s;
}
.inbox .ib03list .swiper-slide::after {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../img/biglogo.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  right: var(--gap-large);
  bottom: var(--gap-large);
  opacity: 0.2;
  transition: all 0.3s;
  display: none;
}
.inbox .ib03list .swiper-slide .year {
  font-size: var(--fsize-h1);
  font-family: "alishuhei";
}
.inbox .ib03list .swiper-slide .con {
  font-size: var(--fsize-txt);
  line-height: 2;
  min-height: 200px;
  margin-top: var(--gap-large);
  padding-top: var(--gap-large);
  border-top: 1px solid var(--color-9);
}
.inbox .ib03list .swiper-slide .con p {
  margin-bottom: var(--gap-small);
}
.inbox .ib03list .swiper-slide .con p:last-child {
  margin-bottom: 0;
}
.inbox .ib03list .swiper-slide .con strong {
  color: #0052d9;
}
.inbox .ib03list .swiper-slide:hover {
  transform: scale(0.85);
}
.inbox .ib03list .swiper-slide-active,
.inbox .ib03list .swiper-slide-duplicate-active {
  transform: scale(1);
  opacity: 1;
}
.inbox .ib03list .swiper-slide-active:hover,
.inbox .ib03list .swiper-slide-duplicate-active:hover {
  transform: scale(1.05);
}
.inbox .ib03list .swiper-slide-active::after,
.inbox .ib03list .swiper-slide-duplicate-active::after {
  opacity: 1;
}
.inbox.ib04 {
  background: #fbfbfb;
}
.inbox.ib04 .hd {
  text-align: left;
}
.inbox .ib04list {
  margin-top: var(--gap-h3);
}
.inbox .ib04list .ih {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: var(--gap-h2);
}
.inbox .ib04list .ih img {
  display: block;
  width: 200px;
}
@media (max-width: 800px) {
  .inbox .ib04list .ih img {
    width: 160px;
  }
}
.inbox .ib04list .ih::after {
  content: "";
  height: 26px;
  width: 2px;
  background: #d8d9dc;
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
@media (max-width: 800px) {
  .inbox .ib04list .ih::after {
    display: none;
  }
}
.inbox .ib04list .ib {
  position: relative;
  display: flex;
}
@media (max-width: 800px) {
  .inbox .ib04list .ib {
    flex-direction: column;
  }
}
.inbox .ib04list .ib::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 67.5%;
  top: -26px;
  height: 2px;
  background: #d8d9dc;
  display: block;
}
@media (max-width: 800px) {
  .inbox .ib04list .ib::before {
    display: none;
  }
}
.inbox .ib04list .ib .it {
  position: relative;
  flex: 1;
  background-color: #f2f3f5;
  box-sizing: border-box;
  padding: var(--gap-h3);
  margin-right: var(--gap-base);
  transition: all 0.3s;
}
@media (max-width: 800px) {
  .inbox .ib04list .ib .it {
    margin-bottom: var(--gap-large);
  }
  .inbox .ib04list .ib .it:last-child {
    margin-bottom: 0;
  }
}
.inbox .ib04list .ib .it::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--color-main);
  transform: translateX(-50%);
  transition: all 0.3s;
}
.inbox .ib04list .ib .it:hover {
  background: var(--color-white);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.inbox .ib04list .ib .it:hover::after {
  width: 100%;
}
.inbox .ib04list .ib .it .nam {
  font-size: var(--fsize-h3);
  font-weight: bold;
}
.inbox .ib04list .ib .it .txt {
  font-size: var(--fsize-txt);
  line-height: 1.6;
  margin-top: var(--gap-large);
}
.inbox .ib04list .ib .it:last-child {
  margin-right: 0;
}
.inbox .ib04list .ib .it::before {
  content: "";
  height: 26px;
  width: 2px;
  background: #d8d9dc;
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
@media (max-width: 800px) {
  .inbox .ib04list .ib .it::before {
    display: none;
  }
}
.inbox.ib05 {
  position: relative;
  padding: 0;
}
.inbox.ib05 .hd {
  text-align: left;
}
.inbox.ib05 .bd {
  max-width: 580px;
  color: var(--color-0);
  height: 400px;
}
.inbox.ib05 .bd .honorgun {
  height: 100%;
}
.inbox.ib05 .bd .honorgun .swiper-slide {
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 30px;
  padding-left: 0;
}
.inbox.ib05 .bd .honorgun .swiper-slide img {
  max-width: 100%;
}
.inbox.ib05 .con {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 2;
  width: 100%;
  height: 100%;
}
@media (max-width: 800px) {
  .inbox.ib05 .con {
    position: relative;
    padding: var(--gap-h1) 0;
  }
}
.inbox.ib05 .bg img {
  display: block;
  width: 100%;
}
.inbox.ib06 {
  background: #fbfbfb;
}
.inbox.ib06 .bd {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-large);
}
@media (max-width: 800px) {
  .inbox.ib06 .bd {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.inbox.ib06 .conbox {
  width: 100%;
  max-width: 650px;
  margin: var(--gap-h3) auto 0;
  background: var(--color-white);
  box-sizing: border-box;
  padding: var(--gap-h3);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.inbox.ib06 .conbox:hover {
  transform: scale(1.05);
}
.inbox.ib06 .conbox .ch {
  font-size: var(--fsize-h3);
  color: var(--color-main);
}
.inbox.ib06 .conbox .cb {
  margin-top: var(--gap-large);
  line-height: 2.2;
}
#inc08 {
  position: relative;
}
#inc08 .equipbox {
  text-align: center;
  padding: var(--gap-h1) var(--gap-h3) var(--gap-h2);
  display: block;
}
#inc08 .equiptit {
  font-size: var(--fsize-h1);
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  #inc08 .equiptit {
    font-size: var(--fsize-h2);
  }
}
#inc08 .equiptxt {
  text-align: center;
  opacity: 0.7;
  font-size: var(--fsize-txt);
}
#inc08 .equipimg {
  height: 600px;
  width: 100%;
  background: url("../img/dmg/equip.jpg") no-repeat center center;
  background-size: cover;
  display: block;
}
@media (max-width: 800px) {
  #inc08 .equipimg {
    height: 200px;
  }
}
.nhomebox06 {
  background: #1e4c88 url(../img/dmg/homebox06bg.jpg) no-repeat center;
  background-size: cover;
  padding: var(--gap-h1) var(--gap-h2);
}
.nhomebox06 .hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 800px) {
  .nhomebox06 .hd {
    flex-direction: column;
  }
}
.nhomebox06 .hd .nam {
  font-size: var(--fsize-h2);
  font-weight: bold;
  color: var(--color-white);
}
.nhomebox06 .hd .txt {
  margin-top: var(--gap-large);
  color: #bfdce9;
  line-height: 1.5;
  font-size: var(--fsize-txt);
}
.nhomebox06 .hd .cla {
  display: flex;
  align-items: center;
}
@media (max-width: 800px) {
  .nhomebox06 .hd .cla {
    margin-top: var(--gap-h3);
  }
}
.nhomebox06 .hd .cla .ca {
  display: block;
  padding: var(--gap-small) var(--gap-large);
  border-radius: var(--gap-h1);
  border: 1px solid #bfdce9;
  color: #bfdce9;
  font-size: var(--fsize-base);
  margin-right: var(--gap-small);
  text-decoration: none;
}
.nhomebox06 .hd .cla .ca:last-of-type {
  margin-right: 0;
}
.nhomebox06 .hd .cla .ca:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.nhomebox06 .hd .cla .ca.on {
  background: var(--color-txt);
  color: var(--color-white);
  border-color: var(--color-txt);
}
.nhomebox06 .bd {
  margin-top: var(--gap-h3);
}
.nhomebox06 .hb06list {
  padding-top: 5px;
}
.nhomebox06 .hb06list .item .ia {
  display: block;
  width: 100%;
  text-decoration: none;
  color: var(--color-white);
  transition: all 0.3s;
}
.nhomebox06 .hb06list .item .ia:hover {
  transform: translateY(-5px);
}
.nhomebox06 .hb06list .item .inf {
  background: #071c35;
  padding: var(--gap-h3);
}
.nhomebox06 .hb06list .item .inf .sub {
  font-size: var(--fsize-base);
  margin-bottom: var(--gap-base);
}
.nhomebox06 .hb06list .item .inf .nam {
  font-size: calc(var(--fsize-large) * 1.1);
  color: #bfdce9;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  word-break: break-all;
  -webkit-line-clamp: 1;
}
.nhomebox06 .hb06list .item .inf .txt {
  font-size: var(--fsize-txt);
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  word-break: break-all;
  -webkit-line-clamp: 3;
  margin: var(--gap-large) 0;
}
.nhomebox06 .hb06list .item .inf .mor {
  padding-top: var(--gap-base);
  display: flex;
  align-items: center;
  color: var(--color-white);
  font-size: var(--fsize-base);
  font-weight: bold;
}
.nhomebox06 .hb06list .item .inf .mor svg {
  width: 16px;
  margin-left: var(--gap-mini);
}
@media (max-width: 800px) {
  .nhomebox06 .hb06list .item .inf .mor svg {
    width: 14px;
  }
}
#inc06 {
  position: relative;
  background: #f0f0f0;
  background-size: cover;
  padding: 100px 90px 120px 90px;
}
#inc06 .titblock {
  margin-bottom: 80px;
}
#inc06 .title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
}
#inc06 .subtit {
  letter-spacing: 0.3px;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.5;
}
#inc06 .button {
  padding: 15px 24px;
  background: #dae5f3;
  width: 210px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  color: #2a2f36;
}
#inc06 .button svg {
  fill: #2a2f36;
}
#inc06 .supportblock {
  display: flex;
  justify-content: space-between;
}
#inc06 .supportblock .box {
  width: 25%;
  padding: 0px 40px;
  text-align: center;
}
#inc06 .supportblock .box:nth-child(4) {
  border-right: #d8d8d8 0px solid;
}
#inc06 .supportblock .box:nth-child(1) {
  padding-left: 0px;
}
#inc06 .supportblock .box .boximg {
  margin-bottom: 20px;
}
#inc06 .supportblock .box .boximg img {
  height: 60px;
}
#inc06 .supportblock .box .title {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5px;
}
#inc06 .supportblock .box .title svg {
  fill: #bf1522;
  width: 18px;
  height: 18px;
}
#inc06 .supportblock .box .content {
  text-align: center;
  letter-spacing: 0.3px;
  line-height: 1.5;
}
@media (max-width: 800px) {
  #inc06 {
    padding: var(--gap-h1);
  }
}
@media (max-width: 800px) {
  #inc06 .title {
    font-size: var(--fsize-h2);
  }
}
@media (max-width: 800px) {
  #inc06 .subtit {
    font-size: var(--fsize-txt);
  }
  #inc06 .subtit br {
    display: none;
  }
}
@media (max-width: 800px) {
  #inc06 .titblock {
    margin-bottom: var(--gap-h3);
  }
}
@media (max-width: 800px) {
  #inc06 .supportblock {
    flex-direction: column;
    row-gap: var(--gap-h1);
  }
}
@media (max-width: 800px) {
  #inc06 .supportblock .box {
    width: 100%;
    padding: 0;
    margin: 0;
  }
}
#sh_ft {
  min-width: 1200px;
  font-size: 15px;
  line-height: 2;
}
@media (max-width: 1440px) {
  #sh_ft {
    min-width: 100%;
  }
}
#sh_ft .ft_nav {
  padding: 0 90px;
  box-sizing: content-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: #172230;
  font-size: 14px;
  font-weight: 300;
}
#sh_ft .ft_nav li {
  color: #fff;
}
#sh_ft .ft_nav li a {
  opacity: 1;
  font-size: 16px;
  color: #fff;
  transition: all 0.2s;
}
#sh_ft .ft_nav li a:hover {
  opacity: 0.6;
}
#sh_ft .inner {
  display: block;
  background: #1f2a38;
  padding: 80px 90px 120px 90px;
  box-sizing: border-box;
}
@media (max-width: 1000px) {
  #sh_ft .inner {
    display: none;
  }
}
@media (max-width: 1440px) {
  #sh_ft .inner {
    padding: 50px;
  }
}
@media (max-width: 800px) {
  #sh_ft .inner {
    display: none;
  }
}
#sh_ft .inner .upblock {
  display: flex;
  justify-content: space-between;
  background: #1f2a38;
  font-size: 15px;
  border-bottom: rgba(255, 255, 255, 0.1) 1px solid;
  color: #c7d2e0;
  margin-bottom: 100px;
}
#sh_ft .inner .upblock div {
  padding: 20px 0;
}
#sh_ft .inner .downblock {
  display: flex;
  justify-content: space-between;
  background: #1f2a38;
}
#sh_ft .ft_logo {
  width: 20%;
}
#sh_ft .ft_logo img {
  width: 160px;
}
#sh_ft .info {
  line-height: 2.2;
  color: #ffffff;
}
#sh_ft .info p {
  height: 36px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
#sh_ft .links {
  margin: auto 0 0 auto;
}
#sh_ft .links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
#sh_ft .links a + a {
  margin-left: 15px;
}
#sh_ft {
  position: relative;
  z-index: 6;
}
@media (max-width: 800px) {
  #sh_ft {
    min-width: 100%;
  }
}
@media (max-width: 800px) {
  #sh_ft .inner {
    padding: var(--gap-h1);
  }
}
@media (max-width: 800px) {
  #sh_ft .inner .upblock {
    font-size: var(--fsize-txt);
    flex-direction: column;
    row-gap: var(--gap-large);
    padding-bottom: var(--gap-h3);
    margin-bottom: var(--gap-h3);
  }
}
@media (max-width: 800px) {
  #sh_ft .inner .upblock div {
    padding: 0;
  }
}
#sh_ft .inner .upblock div a {
  color: #c7d2e0;
  transition: all 0.3s;
}
#sh_ft .inner .upblock div a:hover {
  color: var(--color-white);
}
@media (max-width: 800px) {
  #sh_ft .inner .downblock {
    flex-direction: column;
  }
}
@media (max-width: 800px) {
  #sh_ft .inner .downblock .info {
    display: none;
  }
  #sh_ft .inner .downblock .info:last-child {
    display: block;
    align-items: center !important;
  }
}
@media (max-width: 800px) {
  #sh_ft .ft_nav {
    padding: var(--gap-h1);
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    font-size: var(--fsize-txt);
  }
}
@media (max-width: 800px) {
  #sh_ft .ft_nav li a {
    font-size: var(--fsize-txt);
  }
}
#sh_ft .info a {
  color: var(--color-white);
  transition: all 0.3s;
}
#sh_ft .info a:hover {
  opacity: 0.6;
}
body {
  overflow-x: hidden;
}
body.fxd {
  overflow: hidden;
}
.wrapper {
  box-sizing: border-box;
  padding: 0 20px;
  width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .wrapper {
    width: 100%;
  }
}
@-webkit-keyframes zoomInSmall {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.92, 0.92, 0.92);
    transform: scale3d(0.92, 0.92, 0.92);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomInSmall {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.92, 0.92, 0.92);
    transform: scale3d(0.92, 0.92, 0.92);
  }
  50% {
    opacity: 1;
  }
}
.zoomInSmall {
  -webkit-animation-name: zoomInSmall;
  animation-name: zoomInSmall;
}
.lightGallery-white-theme .lg-outer .lg-thumb-outer {
  box-shadow: 0px 0px 6px -3.5px rgba(0, 0, 0, 0.25) inset;
}
.lightGallery-white-theme .lg-sub-html {
  color: #333 !important;
}
.lightGallery-white-theme .lg-sub-html a {
  color: #2f2f2f !important;
}
.lightGallery-white-theme .lg-backdrop {
  background-color: rgba(243, 243, 243, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightGallery-white-theme .lg-backdrop {
  background-color: rgba(243, 243, 243, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightGallery-white-theme .lg-thumb-item.active,
.lightGallery-white-theme .lg-thumb-item:hover {
  border-color: var(--color-main);
}
.lightGallery-white-theme .lg-progress-bar {
  background-color: #999;
}
.lightGallery-white-theme .lg-progress-bar .lg-progress {
  background-color: #333;
}
.lightGallery-white-theme .lg-outer .lg-thumb-outer {
  background-color: #fcfcfc;
}
.lightGallery-white-theme .lg-next,
.lightGallery-white-theme .lg-prev {
  background-color: rgba(0, 0, 0, 0.03);
  color: #444;
}
.lightGallery-white-theme .lg-next:hover,
.lightGallery-white-theme .lg-prev:hover {
  color: #000;
}
.lightGallery-white-theme .lg-next:focus,
.lightGallery-white-theme .lg-prev:focus {
  outline: none;
  box-shadow: none;
}
.lightGallery-white-theme .lg-toolbar .lg-icon {
  color: #555;
}
.lightGallery-white-theme .lg-toolbar .lg-icon:hover {
  color: #000;
}
.lightGallery-white-theme .lg-counter {
  color: #555;
}
.lightGallery-white-theme .lg-outer .lg-thumb-item.active,
.lightGallery-white-theme .lg-outer .lg-thumb-item:hover {
  border: 2px solid var(--color-main);
}
/* 圆细滚动条样式 20180601 / 20230805取消 */
/* 拖选文字样式 20160628 */
::selection {
  background: var(--color-main);
  color: var(--color-white);
}
::-moz-selection {
  background: var(--color-main);
  color: var(--color-white);
}
/* 移动端全局控制reset */
body,
div,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
dl,
dd,
form,
iframe,
input,
textarea,
select,
label,
article,
aside,
footer,
header,
menu,
nav,
section,
time,
audio,
video {
  margin: 0;
  padding: 0;
}
article,
aside,
footer,
header,
hgroup,
nav,
section,
audio,
canvas,
video {
  display: block;
}
body {
  font-size: 100%;
  font-family: Helvetica, "PingFang SC", "Hiragino Sans GB", STHeiti, "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: var(--color-white);
}
textarea {
  resize: none;
}
iframe,
img {
  border: 0;
}
ul,
ol {
  list-style: none;
}
input,
select,
textarea {
  outline: 0;
  -webkit-user-modify: read-write-plaintext-only;
}
/* input { -webkit-appearance: none; } */
a {
  text-decoration: none;
  color: #666;
}
a:hover {
  text-decoration: underline;
  color: var(--color-main);
}
