@charset "UTF-8";
:root {
  --navTitle: 18px;
  --titleSize: 30px;
  --subTitileSize: 20px;
  --subTitle2Size: 14px;
  --title2Size: 26px;
  --title3Size: 20px;
  --title4Size: 16px;
  --title5Size: 18px;
  --title6Size: 22px;
  --title7Size: 18px;
  --title8Size: 26px;
  --title9Size: 22px;
  --title10Size: 42px;
  --title11Size: 60px;
  --titleBannerSize: 35px;
  --bigFontSize: 18px;
  --normalFontSize: 16px;
  --smallFontSize: 14px;
  --titleBigNumberSize: 32px;
  --titleBigSize: 32px;
  --titleTopBannerSize: 46px;
  --titleBigNumber2Size: 40px;
  --titleBanner2Size: 37px;
}

@media (max-width: 1360px) {
  :root {
    --navTitle: 16px;
    --titleSize: 28px;
    --subTitileSize: 18px;
    --subTitle2Size: 12px;
    --title2Size: 24px;
    --title3Size: 18px;
    --title4Size: 14px;
    --title5Size: 16px;
    --title6Size: 20px;
    --title7Size: 16px;
    --title8Size: 24px;
    --title9Size: 20px;
    --title10Size: 40px;
    --title11Size: 58px;
    --titleBannerSize: 33px;
    --bigFontSize: 16px;
    --normalFontSize: 14px;
    --smallFontSize: 12px;
    --titleBigNumberSize: 30px;
    --titleBigSize: 30px;
    --titleTopBannerSize: 44px;
    --titleBigNumber2Size: 38px;
    --titleBanner2Size: 35px;
  }
}

@media (max-width: 768px) {
  :root {
    --navTitle: 16px;
    --titleSize: 22px;
    --subTitileSize: 16px;
    --subTitle2Size: 13px;
    --title2Size: 18px;
    --title3Size: 16px;
    --title4Size: 14px;
    --title5Size: 15px;
    --title6Size: 16px;
    --title7Size: 15px;
    --title8Size: 18px;
    --title9Size: 16px;
    --title10Size: 24px;
    --title11Size: 28px;
    --titleBannerSize: 22px;
    --bigFontSize: 13px;
    --normalFontSize: 12px;
    --smallFontSize: 10px;
    --titleBigNumberSize: 18px;
    --titleBigSize: 18px;
    --titleTopBannerSize: 28px;
    --titleBigNumber2Size: 22px;
    --titleBanner2Size: 24px;
  }
}

@keyframes fadeInCustom {
  0% {
    opacity: 0;
    /* 完全透明 */
    transform: translateY(20px);
    /* 可选：添加向上位移增强效果 */
    transform: scale(0.3);
  }
  50% {
    opacity: 0.1;
    /* 完全不透明 */
    transform: translateY(10px);
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    /* 完全不透明 */
    transform: translateY(0px);
    transform: scale(1);
  }
}

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

.scale-loop {
  animation: scaleLoop 15s ease-in-out infinite;
}

@keyframes curtain {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.animate-mask {
  animation: curtain 5s linear infinite;
}

@keyframes brightnessLoop {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(0.8);
  }
  100% {
    filter: brightness(1);
  }
}

body {
  color: #383838 !important;
}

html {
  scroll-behavior: smooth;
}

/* 设置锚点偏移量，避免被固定导航栏遮挡 */
:target {
  scroll-margin-top: 120px;
  /* 与导航栏高度一致 */
}

/* 高亮显示目标区块 */
:target::before {
  content: "";
  display: block;
  height: 120px;
  /* 与导航栏高度一致 */
  margin-top: -120px;
  /* 抵消上面的高度 */
  visibility: hidden;
}

@media screen and (min-width: 1800px) {
  .layui-container {
    width: 1520px !important;
  }
}

@media screen and (min-width: 1400px) {
  .layui-container {
    width: 80%;
    max-width: 1520px;
    min-width: 1280px;
  }
  .custom-fade-in {
    animation-name: fadeInCustom;
  }
}

.empty-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.f-btn {
  display: inline-block;
  padding: 6px 15px;
  background-color: #f15e30;
  color: white;
  text-decoration: none;
  font-size: var(--normalFontSize);
  transition: all 0.3s;
  cursor: pointer;
}

.f-btn.radius {
  border-radius: 5px;
}

.f-btn.radius-lager {
  border-radius: 25px;
}

.f-btn.big {
  font-size: var(--title3Size);
  padding: 10px 25px;
}

.f-btn.big i {
  font-size: var(--title3Size);
}

.f-btn.md {
  font-size: var(--title3Size);
  padding: 8px 20px;
}

.f-btn.md i {
  font-size: var(--title3Size);
}

.f-btn.small {
  font-size: var(--subTitle2Size);
  padding: 5px 10px;
}

.f-btn.small i {
  font-size: var(--subTitle2Size);
}

.f-btn:hover {
  background-color: #df410f;
  color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.flip-horizontal {
  transform: scaleX(-1);
}

.primary-color {
  color: #f15e30;
}

.contact-bag {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.contact-bag .item {
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.1), 0 8px 10px -6px rgba(59, 130, 246, 0.1);
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.contact-bag .item .item-head {
  padding: 10px 20px;
  background-image: linear-gradient(to right, #ff572285, #ff57227d);
  font-size: var(--title9Size);
}

.contact-bag .item .item-body {
  padding: 20px;
}

.contact-bag .item .item-body .info-bag {
  margin-bottom: 10px;
}

.contact-bag .item:hover {
  transform: translateY(5px);
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: white;
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .pc {
  padding-top: 25px;
}

header .pc .logo {
  margin-bottom: 25px;
}

header .pc .logo .txt {
  letter-spacing: 3.7px;
  margin-left: 5px;
  display: none;
}

header .pc .logo img {
  height: 50px;
}

header .pc .logo .mask-img {
  display: none;
}

header .pc nav {
  font-size: var(--navTitle);
  flex-grow: 1;
  padding: 0px 100px;
}

header .pc nav > ul {
  height: 100%;
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

header .pc nav > ul > li {
  position: relative;
  list-style: none;
  padding-top: 10px;
}

header .pc nav > ul > li > a {
  display: block;
  height: 100%;
  position: relative;
  transition: all 0.3s;
}

header .pc nav > ul > li .children {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  z-index: 99;
  max-height: 0px;
  max-width: 200px;
  overflow: hidden;
  white-space: nowrap;
  width: auto;
  min-width: max-content;
  font-size: var(--normalFontSize);
}

header .pc nav > ul > li .children.radius {
  border-radius: 0 0 2px 2px;
}

header .pc nav > ul > li .children::before {
  content: "";
  height: 2px;
  width: 0;
  display: block;
  background-color: #f15e30;
  transition: width 0.3s;
}

header .pc nav > ul > li .children > ul {
  padding: 10px 0;
}

header .pc nav > ul > li .children > ul li {
  padding: 10px 20px;
  transition: all 0.3s;
}

header .pc nav > ul > li .children > ul li:hover {
  background-color: #f4f4f7;
}

header .pc nav > ul > li .children > ul li:hover > a,
header .pc nav > ul > li .children > ul li:hover i {
  color: #f15e30;
}

header .pc nav > ul > li .children > ul li a,
header .pc nav > ul > li .children > ul li i {
  color: #333;
  transition: all 0.3s;
}

header .pc nav > ul > li .children-list {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  display: flex;
}

header .pc nav > ul > li .children-list .children {
  position: relative;
  top: 0;
}

header .pc nav > ul > li .children-list .third-nav {
  min-width: max-content;
  font-size: var(--normalFontSize);
}

header .pc nav > ul > li .children-list .third-nav .third-children {
  display: none;
  position: relative;
  background-color: white;
  border-radius: 0 0 2px 2px;
  border-top: 2px solid #f15e30;
}

header .pc nav > ul > li .children-list .third-nav .third-children .third-children-img {
  height: 70px;
  width: 140px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  background: white;
  padding: 10px;
}

header .pc nav > ul > li .children-list .third-nav .third-children .third-children-img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  z-index: 0;
  border-radius: 4px;
}

header .pc nav > ul > li .children-list .third-nav .third-children .third-children-img a {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
  color: white;
}

header .pc nav > ul > li .children-list .third-nav ul {
  padding: 10px 0;
}

header .pc nav > ul > li .children-list .third-nav ul li {
  padding: 10px 20px;
  transition: all 0.3s;
}

header .pc nav > ul > li .children-list .third-nav ul li:hover {
  background-color: #f4f4f7;
}

header .pc nav > ul > li .children-list .third-nav ul li:hover > a {
  color: #f15e30;
}

header .pc nav > ul > li .children-list .third-nav ul li a {
  color: #333;
  transition: all 0.3s;
}

header .pc nav > ul li:hover > a {
  color: #f15e30;
}

header .pc nav > ul li:hover .children {
  max-height: 400px;
  width: 100%;
}

header .pc nav > ul li:hover .children::before {
  width: 100%;
}

header .pc nav > ul .active > a {
  color: #f15e30;
}

header .pc .sarch-btn {
  width: 50px;
  text-align: center;
  cursor: pointer;
}

header .pc .sarch-btn i {
  font-size: 26px;
  position: relative;
  top: 10px;
}

header.mask {
  background-color: rgba(0, 0, 0, 0.1);
  position: fixed;
}

header.mask .mask-img {
  display: block !important;
}

header.mask .logo {
  color: white;
}

header.mask .normal-img {
  display: none;
}

header.mask a {
  color: white;
}

header.mask a::after {
  background-color: white !important;
}

header.mask .layui-icon {
  color: white;
}

header .search-box {
  display: none;
}

header .search-box > div {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .search-box input {
  width: 500px;
  padding: 10px;
  border-radius: 5px 0 0 5px;
  border: 1px solid #858585;
  font-size: var(--normalFontSize);
  outline: none;
  transition: all 0.3s;
  background-color: white;
}

header .search-box input:focus {
  border-color: #f15e30;
}

header .search-box .layui-icon-search {
  background-color: #f15e30;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 47px;
  width: 48px;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
  font-size: 28px;
  position: relative;
  left: -1px;
  color: white !important;
}

.home-banner {
  color: white;
  font-size: var(--title7Size);
}

.home-banner .video-bag {
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
}

.home-banner .video-bag video {
  width: 100%;
}

.home-banner .mask {
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background-image: url("../images/pt3.png");
  background-repeat: repeat, no-repeat;
  background-size: auto, 100%;
  background-position: bottom;
  display: none;
}

.home-banner .swiper-slide {
  background-size: cover;
  background-position: top;
  position: relative;
  animation: brightnessLoop 4s linear infinite;
}

.home-banner .swiper-slide .slide-bag {
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

.home-banner .swiper-slide .slide-bag .title {
  font-size: var(--titleBannerSize);
  margin-bottom: 20px;
  font-weight: bold;
}

.home-banner .swiper-slide .slide-bag .line {
  width: 800px;
  height: 5px;
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0) 100%);
  margin-bottom: 30px;
}

.home-banner .swiper-slide .slide-bag .content {
  margin-bottom: 120px;
  min-height: 100px;
  width: 600px;
}

.home-banner .swiper-slide .slide-bag .btns {
  display: none;
}

.home-banner .swiper-pagination-bullet {
  width: 40px;
  border-radius: 2px;
  height: 4px;
}

.home-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: white;
}

.product-service {
  padding-top: 40px;
  padding-bottom: 40px;
}

.product-service .title {
  font-size: var(--titleSize);
  margin-bottom: 40px;
}

.product-service .sub-title {
  font-size: var(--subTitileSize);
}

.product-service .product-body .text-bag {
  padding: 30px;
}

.product-service .product-body .text-bag .title {
  font-size: var(--title2Size);
  margin-bottom: 20px;
}

.product-service .product-body .text-bag .content {
  font-size: var(--subTitle2Size);
  line-height: 1.5;
}

.product-service .product-body .product-items {
  display: flex;
  gap: 20px;
}

.product-service .product-body .product-items .item {
  width: calc((100% - 60px) / 4);
  height: 600px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.product-service .product-body .product-items .item .mask-img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.product-service .product-body .product-items .item .mask-img img {
  height: 100%;
  object-fit: cover;
}

.product-service .product-body .product-items .item .ctitle {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--title10Size);
  color: white;
}

.product-service .product-body .product-items .item .stitle {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.75);
  color: #f15e30;
  padding: 5px 20px;
  border-bottom-right-radius: 25px;
  font-size: var(--normalFontSize);
}

.product-service .product-body .product-items .item .children-item {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  gap: 20px;
  opacity: 0;
  transition: all 0.5s;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.product-service .product-body .product-items .item .children-item a {
  color: white;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 5px 20px;
  white-space: nowrap;
}

.product-service .product-body .product-items .item .children-item a:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.product-service .product-body .product-items .item:hover .children-item {
  opacity: 1;
}

.product-service .product-body .product-grid-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-service .product-body .product-grid-items .grid-item {
  height: 500px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-service .product-body .product-grid-items .grid-item .item-main {
  height: 100%;
  transition: all 0.5s ease-in-out;
}

.product-service .product-body .product-grid-items .grid-item .item-main .item-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: -1;
}

.product-service .product-body .product-grid-items .grid-item .item-main .item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.product-service .product-body .product-grid-items .grid-item .item-main .item-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.product-service .product-body .product-grid-items .grid-item .item-main .item-txt {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--titleBannerSize);
  color: white;
  position: relative;
}

.product-service .product-body .product-grid-items .grid-item .item-children {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0px;
  left: 0px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  transition: all 0.5s ease-in-out;
  transform: scale(0);
  opacity: 0;
}

.product-service .product-body .product-grid-items .grid-item .item-children .children-item {
  display: grid;
  height: calc(50% - 10px);
  overflow: hidden;
}

.product-service .product-body .product-grid-items .grid-item .item-children .children-item.two {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.product-service .product-body .product-grid-items .grid-item .item-children .children-item.full {
  grid-template-columns: repeat(1, 1fr);
  height: 100%;
}

.product-service .product-body .product-grid-items .grid-item .item-children .children-item .citem {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.product-service .product-body .product-grid-items .grid-item .item-children .children-item .citem .citem-img {
  height: 100%;
  overflow: hidden;
  filter: brightness(0.8);
}

.product-service .product-body .product-grid-items .grid-item .item-children .children-item .citem .citem-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.95);
  transition: all 0.5s ease-in-out;
}

.product-service .product-body .product-grid-items .grid-item .item-children .children-item .citem .citem-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 1;
  text-align: center;
  font-size: var(--bigFontSize);
  padding: 10px 20px;
  width: 100%;
}

.product-service .product-body .product-grid-items .grid-item .item-children .children-item .citem:hover img {
  transform: scale(1.1);
}

.product-service .product-body .product-grid-items .grid-item .item-children .children-item .citem:hover .citem-txt {
  color: #f15e30;
}

.product-service .product-body .product-grid-items .grid-item:hover .item-main {
  transform: rotateX(90deg);
  opacity: 0;
}

.product-service .product-body .product-grid-items .grid-item:hover .item-children {
  transform: scale(1);
  opacity: 1;
}

.product-service .product-body .bg-black {
  background-color: #383838;
  color: white;
}

.product-service .product-body .bg-blue2 {
  background-color: #3e527c;
  color: white;
}

.product-service .product-body .bg-gray2 {
  background-color: #bec5cc;
  color: #383838;
}

.news-center {
  background-color: #f4f4f7;
  padding-bottom: 40px;
}

.news-center .title-bag {
  font-size: var(--titleSize);
  margin-bottom: 40px;
  height: 250px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.news-center .title-bag .sub-title {
  font-size: var(--subTitileSize);
  margin-top: 20px;
}

.news-center .title-bag .mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/news/new_bg.png);
  background-size: cover;
  filter: opacity(0.5) blur(1px) brightness(0.85);
  z-index: 0;
}

.news-center .news-body {
  width: 1200px;
  margin: 0 auto;
}

.news-center .news-body .primary-news {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 40px 75px;
  transition: all 0.5s;
  cursor: pointer;
}

.news-center .news-body .primary-news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #f15e30;
}

.news-center .news-body .primary-news .cate {
  font-size: var(--title4Size);
  color: #f15e30;
  margin-bottom: 20px;
}

.news-center .news-body .primary-news .title {
  font-size: var(--title3Size);
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
}

.news-center .news-body .primary-news .content {
  font-size: var(--subTitle2Size);
  line-height: 1.5;
  color: #999999;
}

.news-center .news-body .primary-news:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.news-center .news-body .news-grid {
  margin-top: 40px;
}

.news-center .news-body .news-grid .news-card {
  background-color: white;
  border-radius: 5px;
  box-sizing: border-box;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  overflow: hidden;
}

.news-center .news-body .news-grid .news-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.news-center .news-body .news-grid .news-card img:hover {
  transform: scale(1.05);
}

.news-center .news-body .news-grid .news-card a {
  display: block;
  padding: 10px 10px;
  box-sizing: border-box;
  font-size: var(--normalFontSize);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.news-center .news-body .news-grid .news-card:hover {
  background-color: #f15e30;
}

.news-center .news-body .news-grid .news-card:hover a {
  color: white;
}

.news-center .news-body .news-grid .news-items li {
  margin-bottom: 10px;
  font-size: var(--normalFontSize);
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.news-center .news-body .news-grid .news-items li::before {
  content: "·";
  font-size: 20px;
}

.news-center .news-body .news-grid .news-items li:hover a {
  color: #f15e30;
}

.service-support {
  background-color: #31405c;
  display: none;
  padding: 100px 0;
}

.service-support .title {
  font-size: var(--titleSize);
  margin-bottom: 40px;
  text-align: center;
  color: white;
}

.service-support .sub-title {
  font-size: var(--subTitileSize);
  text-align: center;
  margin-bottom: 60px;
}

.service-support .service-body .service-item {
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.service-support .service-body .service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-support .service-body .service-item .item-bag {
  padding: 20px;
  transition: background-color 0.3s;
}

.service-support .service-body .service-item .item-title {
  font-size: var(--title5Size);
}

.service-support .service-body .service-item .item-content {
  font-size: var(--normalFontSize);
  line-height: 1.5;
  color: #999999;
  margin-top: 20px;
}

.service-support .service-body .service-item .more-btn {
  margin-top: 20px;
}

.service-support .service-body .service-item .more-btn a {
  font-size: var(--smallFontSize);
  border: 1px solid #858585;
  padding: 5px 10px;
  display: inline-block;
  color: #858585;
  transition: all 0.3s;
}

.service-support .service-body .service-item .more-btn a:hover {
  color: #f15e30;
  border-color: #f15e30;
}

.service-support .service-body .service-item:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  transform: translateY(-10px);
}

.service-support .service-body .service-item:hover .item-bag {
  background-color: #f15e30;
  color: white;
}

.service-support .service-body .service-item:hover .item-bag a {
  color: white;
  border-color: white;
}

.service-support .service-body .service-item:hover .item-bag .item-content {
  color: white;
}

.slogan {
  height: 300px;
  background-image: url(../images/slogan.png);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.slogan .text-bag {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.slogan .text-bag > div {
  position: relative;
}

.slogan .text-bag > div::before {
  content: "“";
  font-size: 100px;
  color: white;
  position: absolute;
  top: 0px;
  left: -200px;
}

.slogan .text-bag > div::after {
  content: "”";
  font-size: 100px;
  color: white;
  position: absolute;
  top: 0px;
  right: -200px;
}

.slogan .text-bag .title {
  font-size: var(--title6Size);
  color: white;
  text-align: center;
  margin-bottom: 20px;
}

.slogan .text-bag .sub-title {
  font-size: var(--subTitileSize);
  color: white;
  text-align: center;
}

footer {
  background-color: #1a1a1a;
  color: white;
  padding: 30px 0 0 0;
}

footer .footer-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .footer-body .logo img {
  height: 50px;
}

footer .footer-body .details-bag {
  font-size: var(--bigFontSize);
}

footer .footer-body .details-bag .phone {
  margin-top: 20px;
}

footer .footer-body .details-bag .contact-list {
  margin-top: 35px;
}

footer .footer-body .details-bag .contact-list .content {
  color: #f15e30;
}

footer .footer-body .details-bag .contact-list .item {
  margin-bottom: 10px;
}

footer .footer-body .nav {
  display: flex;
  gap: 150px;
}

footer .footer-body .nav .nav-item .title {
  font-size: var(--title5Size);
  margin-bottom: 10px;
}

footer .footer-body .nav .nav-item li {
  margin-bottom: 10px;
}

footer .footer-body .nav .nav-item li a {
  font-size: var(--smallFontSize);
  color: rgba(255, 255, 255, 0.7);
}

footer .wx-qwcode {
  text-align: center;
  font-size: var(--smallFontSize);
  color: rgba(255, 255, 255, 0.7);
  display: none;
}

footer .wx-qwcode img {
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
}

footer .footer-bottom {
  text-align: center;
  font-size: var(--smallFontSize);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid #707070;
  padding: 20px 0;
  margin-top: 20px;
}

.top-banner {
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.top-banner .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.top-banner .title {
  font-size: var(--titleTopBannerSize);
  text-align: center;
}

.top-banner.line .title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.top-banner.line .line {
  height: 4px;
  width: 120px;
  background-color: white;
  margin: 20px 0;
}

.top-banner.line .sub-title {
  font-size: var(--titleBannerSize);
}

.about-page .about-intro {
  margin-top: 40px;
}

.about-page .about-intro .about-content {
  display: flex;
}

.about-page .about-intro .about-content > div {
  width: 50%;
}

.about-page .about-intro .about-content .img-bag {
  overflow: hidden;
  border-radius: 10px;
}

.about-page .about-intro .about-content .img-bag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.about-page .about-intro .about-content .img-bag img:hover {
  transform: scale(1.1);
}

.about-page .about-intro .about-content .text-bag {
  padding-left: 40px;
}

.about-page .about-intro .about-content .text-bag .title {
  font-size: var(--title2Size);
  margin-bottom: 20px;
}

.about-page .about-intro .about-content .text-bag .content {
  font-size: var(--title3Size);
  line-height: 1.5;
  color: #4b5563;
  text-align: justify;
}

.about-page .about-intro .about-content .text-bag .items {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.about-page .about-intro .about-content .text-bag .items .num {
  font-size: var(--titleBigNumberSize);
  color: #f15e30;
}

.about-page .about-intro .about-content .text-bag .items .des {
  font-size: var(--subTitileSize);
  color: #4b5563;
}

.about-page .about-history {
  margin-top: 40px;
  background-color: #f9fafb;
  padding: 80px 0;
}

.about-page .about-history .title {
  font-size: var(--titleBigSize);
  margin-bottom: 40px;
}

.about-page .about-history .content {
  font-size: var(--subTitle2Size);
  line-height: 1.5;
  color: #4b5563;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about-page .about-history .history-items {
  margin-top: 20px;
}

.about-page .about-history .history-items .item {
  cursor: pointer;
  display: flex;
}

.about-page .about-history .history-items .item .img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.about-page .about-history .history-items .item .img-bag {
  width: 50%;
  overflow: hidden;
}

.about-page .about-history .history-items .item .img-bag img {
  transition: all 0.3s;
}

.about-page .about-history .history-items .item .img-bag img:hover {
  transform: scale(1.05);
}

.about-page .about-history .history-items .item .info-bag {
  width: 50%;
  padding-right: 20px;
}

.about-page .about-history .history-items .item .info-bag .year {
  font-size: var(--title11Size);
  color: #f15e30;
  margin-bottom: 10px;
  margin-top: 20px;
}

.about-page .about-history .history-items .item .info-bag .text {
  font-size: var(--title5Size);
  color: #4b5563;
}

.about-page .about-history .swiper-button-prev,
.about-page .about-history .swiper-button-next {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  top: 80%;
  padding: 0 20px;
}

.about-page .about-history .swiper-button-prev::after,
.about-page .about-history .swiper-button-next::after {
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.about-page .about-history .swiper-button-next {
  left: 70px;
}

.about-page .about-history .history-line-wrap {
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}

.about-page .about-history .history-line-wrap .line {
  height: 3px;
  background-color: #ccc;
  position: absolute;
  width: 100%;
  top: 15px;
  z-index: 0;
}

.about-page .about-history .history-line-wrap .items {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  padding: 5px 0;
  transition: all 0.2s;
  justify-content: space-around;
}

.about-page .about-history .history-line-wrap .items div {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.about-page .about-history .history-line-wrap .items div span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  transition: all 0.3s;
}

.about-page .about-history .history-line-wrap .items div.active span, .about-page .about-history .history-line-wrap .items div:hover span {
  border-color: #f15e30;
  box-shadow: 0 0 5px 2px rgba(241, 94, 48, 0.5);
  transform: scale(1.1);
}

.about-page .about-history .history-line-wrap .items div.active span::after, .about-page .about-history .history-line-wrap .items div:hover span::after {
  display: inline-block;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #f15e30;
  border-radius: 50%;
}

.about-page .about-success {
  margin-top: 0px;
  height: 0;
  overflow: hidden;
}

.about-page .about-success .layui-container {
  width: 100% !important;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  height: 500px;
}

.about-page .about-success .layui-container .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(241, 94, 48, 0.75);
  z-index: 0;
}

.about-page .about-success .success-bag {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.about-page .about-success .success-items {
  display: flex;
  justify-content: space-between;
  width: 80%;
  gap: 20px;
}

.about-page .about-success .success-items .item {
  text-align: center;
}

.about-page .about-success .success-items .item .num {
  font-size: var(--titleBigNumber2Size);
  color: white;
}

.about-page .about-success .success-items .item .des {
  font-size: var(--title5Size);
  color: white;
  margin-top: 10px;
}

.about-page .about-culture {
  margin-top: 40px;
  padding-bottom: 40px;
}

.about-page .about-culture .title {
  font-size: var(--titleBigSize);
  margin-bottom: 40px;
}

.about-page .about-culture .content {
  font-size: var(--subTitle2Size);
  line-height: 1.5;
  color: #4b5563;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about-page .about-culture .content ul li {
  font-size: var(--normalFontSize);
  list-style-type: square;
  list-style-position: inside;
}

.about-page .about-culture .culture-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(300px, 1fr));
  flex-wrap: wrap;
  gap: 80px;
  margin-top: 20px;
}

.about-page .about-culture .culture-items .item .img-bag {
  width: 100%;
  height: 500px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background-color: #f8f8f8;
}

.about-page .about-culture .culture-items .item .img-bag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s ease-in-out;
  filter: blur(5px) brightness(0.7);
  opacity: 0.8;
}

.about-page .about-culture .culture-items .item .img-bag .img-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  max-height: 500px;
  background-color: rgba(56, 56, 56, 0);
  z-index: 0;
  transition: all 0.3s ease-in-out;
}

.about-page .about-culture .culture-items .item .img-bag .img-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  color: white;
  line-height: 1.8;
  font-size: var(--bigFontSize);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.about-page .about-culture .culture-items .item .img-bag .img-content .ctitle {
  font-size: var(--normalFontSize);
  margin-top: 20px;
  line-height: 1.2;
}

.about-page .about-culture .culture-items .item .img-bag .img-content .icon-bag {
  height: 80px;
  width: 80px;
  margin-bottom: 40px;
  display: none;
}

.about-page .about-culture .culture-items .item .img-bag .img-content .icon-bag img {
  display: block;
}

.about-page .about-culture .culture-items .item .img-bag:hover .img-mask {
  background-color: rgba(56, 56, 56, 0.05);
  height: 100%;
}

.about-page .about-culture .culture-items .item .img-bag:hover .img-content {
  transform: scale(1);
  color: #f15e30;
  transform: scale(1.01);
}

.about-page .about-culture .culture-items .item .img-bag:hover img {
  transform: scale(1.1);
}

.about-page .about-culture .culture-items .item .info-bag .txt {
  font-size: var(--title8Size);
  margin-top: 20px;
  text-align: center;
}

.about-page .about-culture .culture-items .item .info-bag .content {
  font-size: var(--title6Size);
  color: #4b5563;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about-page .about-culture .culture-items .item:nth-of-type(4n + 2), .about-page .about-culture .culture-items .item:nth-of-type(4n + 4) {
  display: flex;
  flex-direction: column-reverse;
}

.about-page .about-culture .culture-items .item:nth-of-type(4n + 2) .info-bag .txt, .about-page .about-culture .culture-items .item:nth-of-type(4n + 4) .info-bag .txt {
  margin-top: 0;
  margin-bottom: 20px;
}

.news-page {
  padding-bottom: 40px;
}

.news-page .news-swiper {
  overflow: hidden;
}

.news-page .news-swiper .title {
  font-size: var(--titleSize);
  margin-bottom: 20px;
}

.news-page .news-swiper .swiper-slide {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.news-page .news-swiper .swiper-slide .swiper-content {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 40px;
  box-sizing: border-box;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  color: white;
}

.news-page .news-swiper .swiper-slide .swiper-content .swiper-title {
  font-size: var(--title2Size);
  margin-bottom: 20px;
}

.news-page .news-swiper .swiper-slide .swiper-content .swiper-info {
  display: flex;
  justify-content: space-between;
}

.news-page .news-swiper .swiper-slide .swiper-content .swiper-info .swiper-date {
  font-size: var(--title7Size);
}

.news-page .news-swiper .swiper-pagination {
  bottom: -50px;
}

.news-page .news-swiper .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  margin: 0 10px !important;
}

.news-page .news-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #f15e30;
}

.news-page .news-hat-list {
  position: relative;
  padding: 40px 0;
}

.news-page .news-hat-list::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../images/news/hot_bg.png);
  background-size: cover;
  background-position: center;
  filter: opacity(0.1);
  z-index: -1;
}

.news-page .news-hat-list .hot-title .etitle {
  font-size: var(--title10Size);
  color: #ccc;
}

.news-page .news-hat-list .hot-title .ctitle {
  font-size: var(--title10Size);
}

.news-page .news-hat-list .hot-items {
  margin-top: 40px;
  display: flex;
  gap: 40px;
}

.news-page .news-hat-list .hot-items .main-item {
  width: 50%;
}

.news-page .news-hat-list .hot-items .main-item .img-bag {
  height: 510px;
}

.news-page .news-hat-list .hot-items .main-item .img-bag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-page .news-hat-list .hot-items .main-item .m-title {
  font-size: var(--title9Size);
  margin-top: 20px;
}

.news-page .news-hat-list .hot-items .other-items {
  width: 50%;
}

.news-page .news-hat-list .hot-items .other-items .items {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.news-page .news-hat-list .hot-items .other-items .items .date-bag {
  min-width: 110px;
  color: #999999;
}

.news-page .news-hat-list .hot-items .other-items .items .date-bag .date {
  font-size: var(--title8Size);
}

.news-page .news-hat-list .hot-items .other-items .items .date-bag .month {
  font-size: var(--title8Size);
}

.news-page .news-hat-list .hot-items .other-items .items .content-bag .ctitle {
  font-size: var(--title8Size);
}

.news-page .news-hat-list .hot-items .other-items .items .content-bag .cdes {
  font-size: var(--normalFontSize);
  color: #858585;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-page .news-bag {
  margin-top: 40px;
}

.news-page .news-bag .news-filter {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  font-size: var(--title2Size);
  border-bottom: 1px solid #e5e7eb;
}

.news-page .news-bag .news-filter .news-filter-item {
  font-size: var(--subTitle2Size);
  cursor: pointer;
  transition: all 0.3s;
}

.news-page .news-bag .news-filter .news-filter-item::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #f15e30;
  transition: width 0.3s;
}

.news-page .news-bag .news-filter .news-filter-item:hover, .news-page .news-bag .news-filter .news-filter-item.active {
  color: #f15e30;
}

.news-page .news-bag .news-filter .news-filter-item:hover::after, .news-page .news-bag .news-filter .news-filter-item.active::after {
  width: 100%;
}

.news-page .news-bag .news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 40px;
}

.news-page .news-bag .news-list .news-item {
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}

.news-page .news-bag .news-list .news-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.news-page .news-bag .news-list .news-item .news-content {
  padding: 20px 0;
}

.news-page .news-bag .news-list .news-item .news-content .news-title {
  font-size: var(--subTitileSize);
}

.news-page .news-bag .news-list .news-item .news-content .news-time {
  font-size: var(--title5Size);
  color: #999999;
}

.news-page .news-bag .news-list .news-item:hover {
  transform: translateY(-8px) scale(1.03);
}

.news-page .news-bag .news-list2 {
  display: grid;
  grid-template-columns: repeat(1, minmax(300px, 1fr));
  gap: 0px;
}

.news-page .news-bag .news-list2 .news-title {
  margin: 10px 0;
}

.news-page .news-bag .news-list2 .news-des {
  font-size: var(--title4Size);
  color: #858585;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-page .news-bag .news-list2 .news-more {
  font-size: var(--subTitle2Size);
  color: #1e40af !important;
  margin-top: 10px;
}

.news-page .news-bag .news-list2 .news-more i {
  transform: rotate(180deg);
  font-size: 12px;
  font-weight: bold;
}

.news-page .news-bag .news-list2 .news-more:hover {
  color: #f15e30 !important;
}

.news-page .news-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.news-detail {
  padding-bottom: 40px;
}

.news-detail .layui-container {
  max-width: 1200px;
}

.news-detail .news-detail-main {
  padding: 40px 0;
  background-color: white;
  border-radius: 10px;
}

.news-detail .news-detail-main .news-detail-title {
  font-size: var(--title2Size);
  margin-bottom: 20px;
}

.news-detail .news-detail-main .news-detail-time {
  font-size: var(--title7Size);
  color: #999999;
  margin-bottom: 20px;
}

.news-detail .news-detail-main .news-detail-content {
  font-size: var(--bigFontSize);
  color: #4b5563;
  line-height: 30px;
  margin-bottom: 20px;
}

.news-detail .news-detail-main .news-detail-content img {
  width: 100%;
  margin: 10px 0;
}

.news-detail .news-detail-recommend .title {
  font-size: var(--title6Size);
  margin-bottom: 40px;
}

.news-detail .news-detail-recommend .title::after {
  content: "";
  display: block;
  height: 4px;
  width: 60px;
  background-color: #f15e30;
}

.news-detail .news-detail-recommend .item-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 20px;
}

.news-detail .news-detail-recommend .item-wrapper .item-slide {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  cursor: pointer;
}

.news-detail .news-detail-recommend .item-wrapper .item-slide .img-bag {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.news-detail .news-detail-recommend .item-wrapper .item-slide .img-bag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-detail .news-detail-recommend .item-wrapper .item-slide .news-content {
  padding: 20px;
}

.news-detail .news-detail-recommend .item-wrapper .item-slide .news-content .news-title {
  font-size: var(--title4Size);
  margin-bottom: 10px;
}

.news-detail .news-detail-recommend .item-wrapper .item-slide .news-content .news-time {
  font-size: var(--subTitle2Size);
  color: #999999;
}

.news-detail .news-detail-recommend .item-wrapper .item-slide:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-8px) scale(1.03);
}

.join-page {
  padding: 0px 0;
}

.join-page .join-entrance {
  margin-top: 80px;
}

.join-page .join-entrance .title {
  font-size: var(--titleBigSize);
  margin-bottom: 40px;
}

.join-page .join-entrance .link-imgs {
  display: flex;
  gap: 40px;
}

.join-page .join-entrance .link-imgs .img-bag {
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.join-page .join-entrance .link-imgs .img-bag:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-8px) scale(1.03);
}

.join-page .join-system {
  margin-top: 80px;
}

.join-page .join-system .title {
  font-size: var(--titleBigSize);
  margin-bottom: 40px;
}

.join-page .join-system .join-system-list {
  display: flex;
  flex-wrap: wrap;
}

.join-page .join-system .join-system-list .items {
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
  width: 25%;
}

.join-page .join-system .join-system-list .items .img-bag {
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.join-page .join-system .join-system-list .items .img-bag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.join-page .join-system .join-system-list .items .text-bag {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.1);
}

.join-page .join-system .join-system-list .items .text-bag .txt {
  font-size: var(--title9Size);
  color: white;
}

.join-page .join-system .join-system-list .items:first-child, .join-page .join-system .join-system-list .items:last-child {
  width: 50%;
}

.join-page .join-system .join-system-list .items:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  transform: translateY(-10px);
}

.join-page .join-welfare {
  margin-top: 80px;
  height: 0;
  overflow: hidden;
}

.join-page .join-welfare .title {
  font-size: var(--titleBigSize);
  margin-bottom: 40px;
}

.join-page .join-welfare .join-welfare-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 40px;
}

.join-page .join-welfare .join-welfare-list .items {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.join-page .join-welfare .join-welfare-list .items .img-bag {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-page .join-welfare .join-welfare-list .items .img-bag img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.join-page .join-welfare .join-welfare-list .items .txt {
  font-size: var(--title5Size);
  color: #4b5563;
  margin-top: 10px;
}

.join-page .join-welfare .join-welfare-list .items:hover .img-bag {
  transform: rotateY(180deg);
  transition: all 0.3s;
}

.join-page .join-club {
  margin-top: 80px;
}

.join-page .join-club .title {
  font-size: var(--titleBigSize);
  margin-bottom: 40px;
}

.join-page .join-club .join-club-swiper {
  overflow: hidden;
}

.join-page .join-club .join-club-swiper .swiper-content {
  display: flex;
}

.join-page .join-club .join-club-swiper .swiper-content .swiper-img-bag {
  width: 70%;
  height: 500px;
}

.join-page .join-club .join-club-swiper .swiper-content .swiper-img-bag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.join-page .join-club .join-club-swiper .swiper-content .swiper-info {
  width: 30%;
  background-color: #f1f1f1;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.join-page .join-club .join-club-swiper .swiper-content .swiper-info .swiper-title {
  font-size: var(--titleBannerSize);
  margin-bottom: 20px;
}

.join-page .join-club .join-club-swiper .swiper-content .swiper-info .swiper-des {
  font-size: var(--title8Size);
  line-height: 1.5;
  color: #4b5563;
}

.join-page .join-club .join-club-swiper .swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  border-radius: 2px;
}

.join-page .join-club .join-club-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #f15e30;
}

.join-page .join-contact {
  padding: 40px 0;
}

.join-page .join-contact .title {
  font-size: var(--titleBigSize);
  margin-bottom: 40px;
}

.join-page .join-form {
  margin-top: 80px;
  padding: 40px 0;
  background-image: url(../images/join/bg-form.png);
}

.join-page .join-form .title {
  font-size: var(--titleBigSize);
  margin-bottom: 40px;
}

.join-page .join-form .layui-container {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.join-page .join-form .layui-container .j-left {
  min-width: 300px;
  max-width: 300px;
}

.join-page .join-form .layui-container .j-left .info-bag {
  margin-bottom: 20px;
}

.join-page .join-form .layui-container .j-left .text-secondary {
  font-size: var(--title9Size);
}

.join-page .join-form .layui-container .j-left .font-medium {
  font-size: var(--title5Size);
  color: #999999;
}

.join-page .join-form .layui-container .j-right {
  flex: 1;
}

.join-page .join-form .layui-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.join-page .join-form .layui-form .form-body {
  width: 100%;
}

.join-page .join-form .layui-form-item {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.join-page .join-form .layui-form-item label {
  font-size: var(--title9Size);
  white-space: nowrap;
}

.join-page .join-form .layui-form-item input,
.join-page .join-form .layui-form-item textarea {
  font-size: var(--normalFontSize);
  width: 100%;
}

.join-page .join-form .layui-form-item textarea {
  height: 200px;
  resize: none;
  margin-top: 10px;
}

.join-page .join-form .layui-btn {
  background-color: #f15e30;
  color: white;
}

.join-page .join-form .layui-btn:hover {
  background-color: #df410f;
}

.invest-page .inverst-interaction {
  padding: 40px 0;
}

.invest-page .inverst-interaction .title {
  font-size: var(--title10Size);
  margin-bottom: 40px;
}

.invest-page .inverst-interaction .title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #f15e30;
}

.invest-page .inverst-interaction .content-bag {
  display: flex;
}

.invest-page .inverst-interaction .content-bag .bag-left {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.invest-page .inverst-interaction .content-bag .bag-left .ctitle {
  font-size: var(--titleBannerSize);
}

.invest-page .inverst-interaction .content-bag .bag-left .cdes {
  font-size: var(--title6Size);
  margin-top: 20px;
  color: #4b5563;
}

.invest-page .inverst-interaction .content-bag .bag-left .cbtn a {
  display: inline-block;
  border: 1px solid #f15e30;
  color: #f15e30;
  border-radius: 25px;
  padding: 10px 50px;
  transition: all 0.3s;
  text-align: center;
  font-size: var(--bigFontSize);
  margin-top: 40px;
}

.invest-page .inverst-interaction .content-bag .bag-left .cbtn a:hover {
  background-color: #f15e30;
  color: white;
}

.invest-page .inverst-interaction .content-bag .bag-right {
  width: 65%;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  /* 梯形裁剪路径 */
}

.invest-page .inverst-interaction .content-bag .bag-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s;
}

.invest-page .inverst-notice {
  padding: 40px 0;
}

.invest-page .inverst-notice .title {
  font-size: var(--title10Size);
  margin-bottom: 40px;
}

.invest-page .inverst-notice .title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #f15e30;
}

.invest-page .inverst-notice .notice-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}

.invest-page .inverst-notice .notice-items .item {
  font-size: var(--title8Size);
  position: relative;
  cursor: pointer;
}

.invest-page .inverst-notice .notice-items .item .item-top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.invest-page .inverst-notice .notice-items .item .img-bag {
  height: 400px;
  overflow: hidden;
}

.invest-page .inverst-notice .notice-items .item .img-bag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s;
}

.invest-page .inverst-notice .notice-items .item .date-bag {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
  padding: 20px;
  border-radius: 0 0px 10px 0;
  transition: all 2s;
}

.invest-page .inverst-notice .notice-items .item .date-bag .date {
  font-size: var(--title9Size);
}

.invest-page .inverst-notice .notice-items .item .date-bag .month {
  font-size: var(--title9Size);
}

.invest-page .inverst-notice .notice-items .item .ctitle {
  font-size: var(--title3Size);
  margin-top: 20px;
}

.invest-page .inverst-notice .notice-items .item:hover .date-bag {
  background-color: rgba(255, 255, 255, 0.5);
}

.invest-page .inverst-notice .notice-items .item:hover img {
  transform: scale(1.1);
}

.invest-page .inverst-duty {
  padding: 40px 0;
}

.invest-page .inverst-duty .title {
  font-size: var(--title10Size);
  margin-bottom: 40px;
}

.invest-page .inverst-duty .title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #f15e30;
}

.invest-page .inverst-duty .content-bag {
  display: flex;
  margin-bottom: 40px;
}

.invest-page .inverst-duty .content-bag .bag-left {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.invest-page .inverst-duty .content-bag .bag-left .ctitle {
  font-size: var(--titleBannerSize);
}

.invest-page .inverst-duty .content-bag .bag-left .cdes {
  font-size: var(--title6Size);
  margin-top: 20px;
  color: #4b5563;
}

.invest-page .inverst-duty .content-bag .bag-right {
  width: 65%;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  /* 梯形裁剪路径 */
}

.invest-page .inverst-duty .content-bag .bag-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s;
}

.invest-page .inverst-duty .content-bag:nth-of-type(2n + 1) {
  flex-direction: row-reverse;
}

.invest-page .inverst-duty .content-bag:nth-of-type(2n + 1) .bag-right {
  clip-path: polygon(0% 0, 100% 0, 85% 100%, 0% 100%);
}

.solution-page .solution-realize {
  padding: 40px 0;
  position: relative;
}

.solution-page .solution-realize .realize-warp {
  display: flex;
  gap: 40px;
  position: relative;
  margin-bottom: 40px;
}

.solution-page .solution-realize .realize-warp:nth-of-type(2n + 1) {
  flex-direction: row-reverse;
}

.solution-page .solution-realize .realize-warp:nth-of-type(2n + 1) .content-bag {
  text-align: left;
}

.solution-page .solution-realize .realize-warp:nth-of-type(2n + 1) .content-bag .des {
  padding-left: 0px;
  padding-right: 80px;
}

.solution-page .solution-realize .realize-warp .img-list {
  display: flex;
  gap: 20px;
  width: 40%;
}

.solution-page .solution-realize .realize-warp .img-list .row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(50% - 10px);
}

.solution-page .solution-realize .realize-warp .img-list .row img {
  width: 100%;
  object-fit: cover;
  height: 300px;
  transition: transform 2s;
}

.solution-page .solution-realize .realize-warp .img-list .row .img-bag {
  cursor: pointer;
  overflow: hidden;
}

.solution-page .solution-realize .realize-warp .img-list .row .img-bag:hover img {
  transform: scale(1.1);
}

.solution-page .solution-realize .realize-warp .img-list .row .img-bag:last-child img {
  height: 140px;
}

.solution-page .solution-realize .realize-warp .img-list .row:last-child .img-bag:first-child img {
  height: 140px;
}

.solution-page .solution-realize .realize-warp .img-list .row:last-child .img-bag:last-child img {
  height: 300px;
}

.solution-page .solution-realize .realize-warp .content-bag {
  width: 60%;
  height: 500px;
  overflow: auto;
  text-align: right;
}

.solution-page .solution-realize .realize-warp .content-bag .stitle {
  font-size: var(--titleBigSize);
  font-weight: bold;
  margin-top: 40px;
}

.solution-page .solution-realize .realize-warp .content-bag .ctitle {
  margin-top: 40px;
  font-size: var(--titleBanner2Size);
  color: #4a910e;
}

.solution-page .solution-realize .realize-warp .content-bag .des {
  margin-top: 40px;
  font-size: var(--title7Size);
  color: #858585;
  padding-left: 80px;
}

.solution-page .solution-realize::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  content: "";
  background-image: url(../images/solution/c1_bg.png);
  background-size: cover;
  background-position: center;
  width: 10%;
  z-index: 0;
}

.solution-page .solution-realize::before {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  content: "";
  background-image: url(../images/solution/c2_bg.png);
  background-size: cover;
  background-position: center;
  width: 10%;
  z-index: 0;
}

.solution-page .solution-realize2 {
  padding: 40px 0;
  position: relative;
}

.solution-page .solution-realize2 .title-wrap {
  margin-bottom: 40px;
  border-left: 8px solid #f15e30;
}

.solution-page .solution-realize2 .title-wrap .stitle {
  font-size: var(--titleBanner2Size);
  color: #f15e30;
  font-weight: bold;
  padding-left: 20px;
}

.solution-page .solution-realize2 .title-wrap .ctitle {
  font-size: var(--normalFontSize);
  padding-left: 20px;
}

.solution-page .solution-realize2 .realize-warp {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.solution-page .solution-realize2 .realize-warp .img-big {
  min-width: calc(50% - 20px);
  max-width: calc(50% - 20px);
  overflow: hidden;
  position: relative;
}

.solution-page .solution-realize2 .realize-warp .img-big .swiper-button-prev,
.solution-page .solution-realize2 .realize-warp .img-big .swiper-button-next {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  top: 88%;
  padding: 0 20px;
}

.solution-page .solution-realize2 .realize-warp .img-big .swiper-button-prev::after,
.solution-page .solution-realize2 .realize-warp .img-big .swiper-button-next::after {
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.solution-page .solution-realize2 .realize-warp .img-big .swiper-button-next {
  left: 70px;
}

.solution-page .solution-realize2 .realize-warp .content-bag .zhaiyao {
  font-size: var(--title8Size);
  font-weight: bold;
  margin-bottom: 10px;
}

.solution-page .solution-realize2 .realize-warp .content-bag .des {
  font-size: var(--title7Size);
  color: #333;
}

.solution-page .solution-realize3 {
  padding: 40px 0;
  position: relative;
}

.solution-page .solution-realize3 .realize-warp {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  background-color: #fafafa;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.solution-page .solution-realize3 .realize-warp .img-big {
  min-width: 250px;
  max-width: 250px;
  overflow: hidden;
  position: relative;
}

.solution-page .solution-realize3 .realize-warp .content-bag .zhaiyao {
  font-size: var(--title8Size);
  font-weight: bold;
  margin-bottom: 10px;
}

.solution-page .solution-realize3 .realize-warp .content-bag .zhaiyao .block {
  font-size: var(--title8Size);
  font-weight: bold;
  margin-bottom: 10px;
}

.solution-page .solution-realize3 .realize-warp .content-bag .des {
  font-size: var(--title3Size);
  color: #333;
}

.solution-page .solution-light {
  padding: 40px 0;
}

.solution-page .solution-light .light-warp {
  display: flex;
  gap: 40px;
}

.solution-page .solution-light .light-warp .content-bag .ctitle {
  font-size: var(--titleBigSize);
  font-weight: bold;
}

.solution-page .solution-light .light-warp .content-bag .light-items {
  margin-top: 80px;
}

.solution-page .solution-light .light-warp .content-bag .light-items .item {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
}

.solution-page .solution-light .light-warp .content-bag .light-items .item .icon-bag {
  width: 80px;
}

.solution-page .solution-light .light-warp .content-bag .light-items .item .icon-bag img {
  width: 100%;
}

.solution-page .solution-light .light-warp .content-bag .light-items .item .info {
  width: calc(100% - 120px);
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.solution-page .solution-light .light-warp .content-bag .light-items .item .info .ititle {
  font-size: var(--title8Size);
}

.solution-page .solution-light .light-warp .content-bag .light-items .item .info .des {
  font-size: var(--title7Size);
  color: #858585;
  margin-top: 20px;
}

.solution-page .solution-light .light-warp .img-bag {
  width: 350px;
  min-width: 350px;
  height: 500px;
  align-self: center;
}

.solution-page .solution-light .light-warp .img-bag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-page .solution-light2 {
  padding: 40px 0;
}

.solution-page .solution-light2 .light-warp .content-bag .ctitle {
  font-size: var(--titleBigSize);
  font-weight: bold;
}

.solution-page .solution-light2 .light-warp .content-bag .light-items {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}

.solution-page .solution-light2 .light-warp .content-bag .light-items .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #fafafa;
  padding: 40px;
  border-radius: 20px;
  gap: 40px;
}

.solution-page .solution-light2 .light-warp .content-bag .light-items .item .icon-bag {
  width: 80px;
}

.solution-page .solution-light2 .light-warp .content-bag .light-items .item .icon-bag img {
  width: 100%;
}

.solution-page .solution-light2 .light-warp .content-bag .light-items .item .info .ititle {
  font-size: var(--title3Size);
}

.solution-page .solution-detail {
  padding: 40px 0;
}

.solution-page .solution-detail .layui-container {
  width: 1100px !important;
}

.solution-page .solution-detail {
  padding: 40px 0;
}

.solution-page .solution-detail .layui-container {
  width: 1100px !important;
}

.solution-page .solution-service {
  padding: 40px 0;
  background: #f6f6f6;
}

.solution-page .solution-service .ctitle {
  font-size: var(--titleBigSize);
  font-weight: bold;
  margin-bottom: 40px;
}

.solution-page .solution-service .service-swiper .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.solution-page .solution-service .service-swiper .item {
  cursor: pointer;
}

.solution-page .solution-service .service-swiper .item .img-bag {
  height: 300px;
}

.solution-page .solution-service .service-swiper .item .img-bag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.solution-page .solution-service .service-swiper .item .img-bag img:hover {
  transform: scale(1.1);
}

.solution-page .solution-service .service-swiper .content-bag {
  background-color: white;
  padding: 20px;
  font-size: var(--subTitileSize);
  text-align: center;
  transition: all 0.3s;
}

.solution-page .solution-service .service-swiper .content-bag:hover {
  background-color: #f15e30;
  color: white;
}

.solution-page .solution-service .product-manager-contact {
  display: flex;
  gap: 40px;
}

.solution-page .solution-service .product-manager-contact .item h3 {
  font-size: var(--subTitileSize);
  margin-bottom: 20px;
}

.solution-page .solution-service .product-manager-contact .item p {
  font-size: var(--title7Size);
  color: #858585;
}

.solution-page .customer-service {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
}

.solution-page .customer-service .service-bag {
  display: flex;
  gap: 10px;
  padding: 10px 20px;
  background-color: #f15e30;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.solution-page .customer-service .service-bag:hover {
  transform: scale(1.1);
}

.search-page .layui-container {
  width: 1000px !important;
  min-width: 1000px;
}

.search-page .search-body {
  padding: 40px 0;
}

.search-page .search-body .search-tips {
  font-size: var(--titleBannerSize);
  margin-bottom: 40px;
}

.search-page .search-body .search-tips span {
  color: #f15e30;
}

.search-page .search-body .title {
  font-size: var(--title8Size);
  margin-bottom: 20px;
  border-bottom: 2px solid #f15e30;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.search-page .search-body .title .total {
  font-size: var(--title6Size);
  color: #f15e30;
}

.search-page .search-body .search-list .item {
  border-bottom: 1px dashed #ddd;
  padding: 20px 0;
}

.search-page .search-body .search-list .item .news-title {
  font-size: var(--title3Size);
  margin-bottom: 10px;
}

.search-page .search-body .search-list .item .news-des {
  font-size: var(--subTitle2Size);
  line-height: 1.5;
  color: #999999;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-page .search-body .search-case-list {
  margin-top: 40px;
}

.search-page .search-body .search-case-list .case-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.search-page .search-body .search-case-list .case-items .item {
  transition: all 0.3s;
  cursor: pointer;
}

.search-page .search-body .search-case-list .case-items .item .img-bag {
  height: 200px;
}

.search-page .search-body .search-case-list .case-items .item .img-bag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-page .search-body .search-case-list .case-items .item .content-bag {
  padding: 10px;
  text-align: center;
  font-size: var(--subTitileSize);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: white;
}

.search-page .search-body .search-case-list .case-items .item:hover {
  transform: scale(1.05);
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background-color: rgba(241, 94, 48, 0.2);
  border-radius: 2em;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(241, 94, 48, 0.5);
  border-radius: 2em;
}

::-webkit-scrollbar-corner {
  background-color: rgba(241, 94, 48, 0.2);
}
