@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);
  }
}

.menu-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}

.menu-icon {
  height: 24px;
  width: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: 0.4s cubic-bezier(0.4, 2.3, 0.3, 1);
  position: absolute;
  left: 0;
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2) {
  top: 10px;
}

.menu-icon span:nth-child(3) {
  top: 20px;
}

.menu-btn.active .menu-icon span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.menu-btn.active .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active .menu-icon span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .contact-bag {
    display: block;
  }
  .contact-bag .item {
    margin-bottom: 20px;
  }
  header .mobile {
    padding: 10px 0;
  }
  header .mobile .logo img {
    height: 30px;
  }
  header .mobile .mask-img {
    display: none;
  }
  header .mobile .layui-icon-search {
    font-size: var(--titleSize);
  }
  header .mobile .mobile-nav {
    max-height: 100vh;
    height: 0;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
  }
  header .mobile .mobile-nav a {
    color: inherit;
  }
  header .mobile .mobile-nav > ul {
    padding: 10px;
  }
  header .mobile .mobile-nav > ul > li {
    font-size: var(--title5Size);
    border-bottom: 1px solid #f0f0f0;
  }
  header .mobile .mobile-nav > ul > li:last-child {
    border-bottom: none;
  }
  header .mobile .mobile-nav > ul > li > details[open] > summary::after {
    transform: translateY(-50%) rotate(45deg);
  }
  header .mobile .mobile-nav > ul > li > details[open] > ul details[open] > summary::after {
    transform: translateY(-50%) rotate(45deg);
  }
  header .mobile .mobile-nav .children-nav {
    padding-left: 50px;
  }
  header .mobile .mobile-nav .children-nav > li {
    padding: 5px 0;
  }
  header .mobile .mobile-nav details {
    overflow: hidden;
  }
  header .mobile .mobile-nav details summary {
    cursor: pointer;
    position: relative;
    padding: 10px 20px;
    font-size: var(--title5Size);
    list-style: none;
    transition: all 0.3s ease;
  }
  header .mobile .mobile-nav details summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
  }
  header .mobile .mobile-nav details summary:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header .mobile .mobile-nav details .children-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 0 0 50px;
  }
  header .mobile .mobile-nav details[open] .children-nav {
    max-height: 200px;
    padding: 10px 0 10px 50px;
    overflow: auto;
  }
  header .mobile.active {
    height: 100vh;
  }
  header .mobile.active .mobile-nav {
    height: 100vh;
    overflow-y: auto;
  }
  header.mask .mask-img {
    display: block !important;
  }
  header.mask .normal-img {
    display: none;
  }
  header.mask .menu-icon span {
    background: white;
  }
  header .search-box input {
    width: 80vw;
  }
  .home-banner {
    font-size: var(--title7Size);
  }
  .home-banner .video-bag video {
    height: 100%;
    width: auto;
    max-width: inherit !important;
  }
  .home-banner .swiper-slide .slide-bag {
    padding-bottom: 80px;
  }
  .home-banner .swiper-slide .slide-bag .title {
    font-size: var(--titleBannerSize);
  }
  .home-banner .swiper-slide .slide-bag .line {
    width: 80vw;
  }
  .home-banner .swiper-slide .slide-bag .content {
    margin-bottom: 120px;
  }
  .home-banner .f-btn {
    font-size: var(--title5Size);
    padding: 10px 20px;
    margin-top: 20px;
  }
  .home-banner .f-btn i {
    font-size: var(--title5Size);
  }
  .product-service {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .product-service .title {
    font-size: var(--titleSize);
    margin-bottom: 20px;
  }
  .product-service .sub-title {
    font-size: var(--subTitileSize);
  }
  .product-service .product-body .text-bag {
    padding: 20px;
  }
  .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);
  }
  .product-service .product-body .product-items {
    display: block;
    gap: 20px;
  }
  .product-service .product-body .product-items .item {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
  }
  .product-service .product-body .product-items .item .children-item {
    opacity: 1;
    flex-wrap: wrap;
    gap: 10px;
  }
  .product-service .product-body .product-items .item .children-item a {
    padding: 2px 8px;
  }
  .product-service .product-body .product-grid-items {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .product-service .product-body .product-grid-items .grid-item {
    height: 200px;
    border-radius: 10px;
  }
  .product-service .product-body .grid-items > div:last-child {
    direction: rtl;
  }
  .product-service .product-body .grid-items > div:last-child .text-bag {
    direction: ltr;
  }
  .news-center {
    padding-bottom: 20px;
  }
  .news-center .title-bag {
    font-size: var(--titleSize);
    margin-bottom: 20px;
    padding: 40px 20px;
    height: auto;
  }
  .news-center .title-bag .sub-title {
    font-size: var(--subTitileSize);
    margin-top: 20px;
  }
  .news-center .news-body {
    width: auto;
  }
  .news-center .news-body .primary-news {
    padding: 15px 20px;
  }
  .news-center .news-body .primary-news .cate {
    font-size: var(--title4Size);
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .news-center .news-body .primary-news .title {
    font-size: var(--title3Size);
    margin-bottom: 20px;
    line-height: 1.3;
  }
  .news-center .news-body .primary-news .content {
    font-size: var(--subTitle2Size);
  }
  .news-center .news-body .news-grid {
    margin-top: 20px;
  }
  .news-center .news-body .news-grid .news-card {
    margin-bottom: 10px;
  }
  .news-center .news-body .news-grid .news-card img {
    height: auto;
    object-fit: cover;
  }
  .news-center .news-body .news-grid .news-card a {
    display: block;
    padding: 10px 10px;
    font-size: 16px;
  }
  .news-center .news-body .news-grid .news-items {
    margin-bottom: 10px;
  }
  .news-center .news-body .news-grid .news-items li {
    margin-bottom: 5px;
    font-size: 16px;
  }
  .service-support {
    padding: 50px 0;
  }
  .service-support .title {
    font-size: var(--titleSize);
    margin-bottom: 20px;
  }
  .service-support .sub-title {
    font-size: var(--subTitileSize);
    margin-bottom: 30px;
  }
  .service-support .service-body .service-item img {
    height: auto;
  }
  .service-support .service-body .service-item .item-bag {
    padding: 10px;
  }
  .service-support .service-body .service-item .item-title {
    font-size: var(--title5Size);
  }
  .service-support .service-body .service-item .item-content {
    font-size: var(--normalFontSize);
    margin-top: 10px;
  }
  .service-support .service-body .service-item .more-btn {
    margin-top: 10px;
  }
  .service-support .service-body .service-item .more-btn a {
    font-size: var(--normalFontSize);
    padding: 2px 5px;
  }
  .slogan {
    height: 200px;
    padding: 0 20px;
  }
  .slogan .text-bag {
    padding: 0 20px;
  }
  .slogan .text-bag > div {
    position: relative;
  }
  .slogan .text-bag > div::before {
    font-size: 40px;
    left: -20px;
  }
  .slogan .text-bag > div::after {
    font-size: 40px;
    right: -20px;
  }
  .slogan .text-bag .title {
    font-size: var(--title7Size);
    margin-bottom: 10px;
  }
  .slogan .text-bag .sub-title {
    font-size: var(--subTitileSize);
  }
  .top-banner {
    height: 120px;
  }
  .about-page .about-intro {
    margin-top: 20px;
  }
  .about-page .about-intro .about-content {
    display: block;
  }
  .about-page .about-intro .about-content > div {
    width: 100%;
  }
  .about-page .about-intro .about-content .text-bag {
    padding-left: 0px;
    margin-top: 20px;
  }
  .about-page .about-intro .about-content .text-bag .title {
    font-size: var(--titleSize);
    margin-bottom: 20px;
  }
  .about-page .about-intro .about-content .text-bag .content {
    font-size: var(--title3Size);
  }
  .about-page .about-intro .about-content .text-bag .items {
    margin-top: 20px;
  }
  .about-page .about-intro .about-content .text-bag .items .num {
    font-size: var(--titleBigNumberSize);
  }
  .about-page .about-intro .about-content .text-bag .items .des {
    font-size: var(--subTitileSize);
  }
  .about-page .about-history {
    margin-top: 20px;
    padding: 20px 0;
  }
  .about-page .about-history .title {
    font-size: var(--titleBigSize);
    margin-bottom: 20px;
  }
  .about-page .about-history .history-line-wrap {
    display: none;
  }
  .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 .swiper-button-prev,
  .about-page .about-history .swiper-button-next {
    padding: 0px;
    top: var(--swiper-navigation-top-offset, 50%);
  }
  .about-page .about-history .swiper-button-next {
    left: inherit;
  }
  .about-page .about-history .history-items .item {
    width: 100%;
    margin-bottom: 20px;
    flex-direction: column-reverse;
  }
  .about-page .about-history .history-items .item .img {
    height: auto;
  }
  .about-page .about-history .history-items .item .info-bag,
  .about-page .about-history .history-items .item .img-bag {
    width: 100%;
  }
  .about-page .about-history .history-items .item .info-bag {
    padding-right: 0px;
  }
  .about-page .about-history .history-items .item .year {
    font-size: var(--title2Size);
    color: #f15e30;
    margin-bottom: 10px;
    margin-top: 20px;
  }
  .about-page .about-history .history-items .item .text {
    font-size: 18px;
    color: #4b5563;
  }
  .about-page .about-success {
    margin-top: 0px;
  }
  .about-page .about-success .layui-container {
    height: 300px;
  }
  .about-page .about-success .success-items {
    flex-wrap: wrap;
  }
  .about-page .about-success .success-items .item .num {
    font-size: var(--titleBigNumber2Size);
  }
  .about-page .about-success .success-items .item .des {
    font-size: var(--title5Size);
  }
  .about-page .about-culture {
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .about-page .about-culture .title {
    font-size: var(--titleBigSize);
    margin-bottom: 20px;
  }
  .about-page .about-culture .content {
    font-size: var(--subTitle2Size);
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .about-page .about-culture .culture-items {
    display: block;
    margin-top: 20px;
  }
  .about-page .about-culture .culture-items .item .img-bag {
    height: 300px;
  }
  .about-page .about-culture .culture-items .item .img-bag .img-content {
    font-size: var(--title6Size);
  }
  .about-page .about-culture .culture-items .item .img-bag .img-content .icon-bag {
    height: 60px;
    width: 60px;
  }
  .about-page .about-culture .culture-items .item .info-bag {
    margin-top: 20px;
    text-align: center;
  }
  .about-page .about-culture .culture-items .item .info-bag .txt {
    font-size: var(--title8Size);
    margin-top: 20px;
  }
  .about-page .about-culture .culture-items .item .info-bag .content {
    font-size: var(--title6Size);
  }
  .about-page .about-culture .culture-items .item:nth-child(4n + 2), .about-page .about-culture .culture-items .item:nth-child(4n + 4) {
    display: block;
    margin-top: 20px;
  }
  .news-page {
    padding: 0px 0;
  }
  .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: 300px;
  }
  .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 .f-btn {
    padding: 5px 10px;
    font-size: var(--normalFontSize);
  }
  .news-page .news-swiper .swiper-pagination {
    bottom: 0px;
  }
  .news-page .news-swiper .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    border-radius: 4px;
    margin: 0 5px !important;
  }
  .news-page .news-hat-list {
    position: relative;
    padding: 20px 0;
  }
  .news-page .news-hat-list .hot-items {
    margin-top: 20px;
    display: block;
  }
  .news-page .news-hat-list .hot-items .main-item {
    width: 100%;
  }
  .news-page .news-hat-list .hot-items .main-item .img-bag {
    height: auto;
  }
  .news-page .news-hat-list .hot-items .other-items {
    width: 100%;
  }
  .news-page .news-hat-list .hot-items .other-items .items {
    display: flex;
    padding: 20px 0;
  }
  .news-page .news-hat-list .hot-items .other-items .items .date-bag {
    min-width: 60px;
  }
  .news-page .news-bag {
    margin-top: 20px;
  }
  .news-page .news-bag .news-filter {
    display: none;
  }
  .news-page .news-bag .news-list {
    display: block;
  }
  .news-page .news-bag .news-list .news-item img {
    height: auto;
  }
  .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);
  }
  .news-page .news-bag .news-list2 {
    display: block;
  }
  .news-page .news-pagination {
    display: none;
  }
  .join-page .join-entrance {
    margin-top: 20px;
  }
  .join-page .join-entrance .title {
    margin-bottom: 20px;
  }
  .join-page .join-entrance .link-imgs {
    display: block;
  }
  .join-page .join-entrance .link-imgs .img-bag {
    margin-bottom: 20px;
  }
  .join-page .join-system {
    margin-top: 20px;
  }
  .join-page .join-system .title {
    margin-bottom: 20px;
  }
  .join-page .join-system .join-system-list .items {
    width: 50% !important;
  }
  .join-page .join-system .join-system-list .items .img-bag {
    height: 150px;
  }
  .join-page .join-welfare {
    margin-top: 20px;
  }
  .join-page .join-welfare .title {
    margin-bottom: 20px;
  }
  .join-page .join-welfare .join-welfare-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 0px;
  }
  .join-page .join-welfare .join-welfare-list .items .img-bag {
    width: 20vw;
    height: 20vw;
  }
  .join-page .join-welfare .join-welfare-list .items .img-bag img {
    width: 40px;
    height: 40px;
    object-fit: cover;
  }
  .join-page .join-club {
    margin-top: 40px;
  }
  .join-page .join-club .title {
    margin-bottom: 20px;
  }
  .join-page .join-club .join-club-swiper .swiper-content {
    display: block;
  }
  .join-page .join-club .join-club-swiper .swiper-content .swiper-img-bag {
    width: 100%;
    height: 200px;
  }
  .join-page .join-club .join-club-swiper .swiper-content .swiper-info {
    width: 100%;
    padding: 40px 20px;
  }
  .join-page .join-club .join-club-swiper .swiper-content .swiper-info .swiper-title {
    margin-bottom: 10px;
  }
  .join-page .join-contact {
    padding: 20px 0;
  }
  .join-page .join-contact .title {
    margin-bottom: 20px;
  }
  .join-page .join-form {
    margin-top: 20px;
    padding: 20px 0;
  }
  .join-page .join-form .title {
    margin-bottom: 20px;
  }
  .join-page .join-form .layui-container {
    display: block;
  }
  .join-page .join-form .layui-container .j-left {
    max-width: 100%;
    min-width: 100%;
  }
  .join-page .join-form .layui-container .j-left .item-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 0px;
  }
  .join-page .join-form .layui-form {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .join-page .join-form .layui-form .form-body {
    width: 80%;
  }
  .join-page .join-form .layui-form-item {
    margin-bottom: 20px;
    width: 100%;
  }
  .news-detail {
    padding-bottom: 20px;
  }
  .news-detail .news-detail-main {
    padding: 20px 0;
  }
  .news-detail .news-detail-recommend .title {
    margin-bottom: 20px;
  }
  .news-detail .news-detail-recommend .title::after {
    height: 2px;
    width: 30px;
  }
  .news-detail .news-detail-recommend .item-wrapper {
    display: block;
  }
  .news-detail .news-detail-recommend .item-wrapper .item-slide {
    margin-bottom: 20px;
  }
  .news-detail .news-detail-recommend .item-wrapper .item-slide .img-bag {
    height: auto;
  }
  .solution-page .top-banner .title {
    font-size: var(--title8Size);
  }
  .solution-page .top-banner .line {
    height: 2px;
    width: 60px;
    background-color: white;
    margin: 5px 0;
  }
  .solution-page .top-banner .sub-title {
    font-size: var(--title9Size);
  }
  .solution-page .solution-realize {
    padding: 20px 0;
  }
  .solution-page .solution-realize .realize-warp {
    display: block;
  }
  .solution-page .solution-realize .realize-warp .img-list {
    width: 100%;
  }
  .solution-page .solution-realize .realize-warp .content-bag {
    width: 100%;
    height: auto;
    text-align: left;
  }
  .solution-page .solution-realize .realize-warp .content-bag .ctitle {
    margin-top: 20px;
  }
  .solution-page .solution-realize .realize-warp .content-bag .des {
    margin-top: 20px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .solution-page .solution-realize2 {
    padding: 20px 0;
  }
  .solution-page .solution-realize2 .title-wrap {
    margin-bottom: 20px;
  }
  .solution-page .solution-realize2 .realize-warp {
    display: block;
  }
  .solution-page .solution-realize2 .realize-warp .img-big {
    width: 100%;
    max-width: 100%;
  }
  .solution-page .solution-realize2 .realize-warp .content-bag {
    width: 100%;
    height: auto;
    text-align: left;
  }
  .solution-page .solution-realize2 .realize-warp .content-bag .ctitle {
    margin-top: 20px;
  }
  .solution-page .solution-realize2 .realize-warp .content-bag .des {
    margin-bottom: 20px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .solution-page .solution-realize3 {
    padding: 20px 0;
    margin-bottom: 20px;
  }
  .solution-page .solution-realize3 .realize-warp {
    display: block;
    padding: 20px;
  }
  .solution-page .solution-realize3 .realize-warp .img-big {
    width: 100%;
    max-width: 100%;
  }
  .solution-page .solution-realize3 .realize-warp .content-bag {
    width: 100%;
    height: auto;
    text-align: left;
  }
  .solution-page .solution-realize3 .realize-warp .content-bag .ctitle {
    margin-top: 20px;
  }
  .solution-page .solution-realize3 .realize-warp .content-bag .des {
    margin-bottom: 20px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .solution-page .solution-light {
    padding: 20px 0;
  }
  .solution-page .solution-light .light-warp {
    display: block;
  }
  .solution-page .solution-light .light-warp .content-bag .light-items {
    margin-top: 20px;
  }
  .solution-page .solution-light .light-warp .content-bag .light-items .item {
    gap: 20px;
    margin-bottom: 20px;
  }
  .solution-page .solution-light .light-warp .content-bag .light-items .item .icon-bag {
    width: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .solution-page .solution-light .light-warp .img-bag {
    width: 100%;
    height: auto;
  }
  .solution-page .solution-light2 {
    padding: 20px 0;
  }
  .solution-page .solution-light2 .light-warp {
    display: block;
  }
  .solution-page .solution-light2 .light-warp .content-bag .light-items {
    margin-top: 20px;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
  .solution-page .solution-light2 .light-warp .content-bag .light-items .item .icon-bag {
    width: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .solution-page .solution-detail {
    padding: 20px 0;
  }
  .solution-page .solution-detail .layui-container {
    width: inherit !important;
  }
  .solution-page .solution-detail img {
    width: 100% !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 {
    overflow: hidden;
  }
  .solution-page .solution-service .service-swiper .swiper-wrapper {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }
  .solution-page .solution-service .service-swiper .item {
    cursor: pointer;
  }
  .solution-page .solution-service .service-swiper .item .img-bag {
    height: auto;
  }
  .solution-page .solution-service .service-swiper .content-bag {
    padding: 10px;
  }
  .solution-page .solution-service .product-manager-contact {
    display: block;
  }
  .solution-page .solution-service .product-manager-contact .item {
    margin-bottom: 10px;
  }
  .search-page .layui-container {
    padding: 0 15px;
    width: auto !important;
    min-width: auto;
  }
  .search-page .search-body {
    padding: 20px 0;
  }
  .search-page .search-body .search-tips {
    margin-bottom: 20px;
  }
  .search-page .search-body .search-case-list {
    margin-top: 20px;
  }
  .search-page .search-body .search-case-list .case-items {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0px;
  }
  footer {
    padding: 20px 0 0 0;
  }
  footer .footer-body {
    display: block;
  }
  footer .footer-body .logo img {
    height: 30px;
  }
  footer .footer-body .details-bag {
    font-size: var(--bigFontSize);
    display: flex;
    justify-content: space-between;
  }
  footer .footer-body .details-bag .phone {
    margin-top: 20px;
  }
  footer .footer-body .details-bag .contact-list {
    margin-top: 10px;
  }
  footer .footer-body .details-bag .contact-list .item {
    margin-bottom: 10px;
  }
  footer .footer-body .nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
    gap: 20px;
  }
  footer .footer-body .nav .nav-item .title {
    font-size: var(--title5Size);
    margin-bottom: 5px;
  }
  footer .footer-body .nav .nav-item li {
    margin-bottom: 5px;
  }
  footer .footer-body .nav .nav-item li a {
    font-size: var(--bigFontSize);
  }
  footer .wx-qwcode {
    font-size: var(--bigFontSize);
    padding-top: 20px;
    padding-right: 20px;
  }
  footer .wx-qwcode img {
    width: 70px;
    height: 70px;
  }
  footer .footer-bottom {
    font-size: var(--bigFontSize);
  }
}
