@charset "UTF-8";


/* public css */
.pic-box {
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.pic-box img {
    width: 100%;
    height: auto;
}

.box-width {
    width: 1600rem;
    margin: 0 auto
}

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

.swiper-slide img {
    max-width: 100%;
    height: auto;
    display: block;
}

.left,.right {
    width: 50%;
}

.contain-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 20;
    background: #fff;
}

.contain-box {
    width: 100%;
    padding: 80rem 0;
    position: relative;
    /* background: #fff; */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    /* background-image: url(../images/serverbg.jpg); */
    background-attachment: fixed;
}

.contain-boxx {
    height: 100%;
    width: 100%;
    padding: 80rem 0;
    position: relative;
    /* background: #fff; */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    background-image: url(../images/serverbg.jpg);
    background-attachment: fixed;
}

.contain-boxx {
    height: 100%;
    width: 100%;
    padding: 80rem 0;
    position: relative;
    z-index: 0;
    background: #fff;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    background-image: url(../images/serverbg.jpg);
    background-attachment: fixed;
}

.contain-boxx::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 50%);
    z-index: -1;
    pointer-events: none;
}

.main-box {
    width: 1600rem;
    margin: 0 auto;
    position: relative;
    z-index: 20;
}

.more a {
    display: block;
    width: 100%;
    text-align: center;
}

.contain-title {
    text-align: center;
    padding: 30rem 0;
    position: relative;
}

.contain-title .en {
    position: absolute;
    top: 0;
    font-size: 70rem;
    left: 0;
    right: 0;
    margin: auto;
    color: transparent;
    -webkit-background-clip: text;
    background-image: linear-gradient(0deg,transparent 30%,#5b5b5b5e 80%);
    font-weight: bold;
    z-index: 10;
}

.contain-title .cn {
    font-size: 42rem;
    font-weight: bold;
    z-index: 30;
    position: relative;
}

.contain-title .subtit {
    font-size: 22rem;
    margin-top: 10rem;
}

.breadcump {
    width: 1600rem;
    height: 60rem;
    margin: 0rem auto;
    padding: 15rem;
    line-height: 30rem;
}

.breadcump * {
    font-size: 16rem;
}

.breadcump span a {
}

@keyframes opcshow {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.m-head,.m-top-menu,.m-footbut {
    display: none;
}

/* public css end */
/* header css */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0));
    z-index: 100;
    height: 9%;
    transition: all 0.3s ease;
    min-height: 80rem;
}

header:hover, header.fixed-white {
    background: rgba(255,255,255,0.97);
    box-shadow: 0rem 1rem 10rem rgb(0 0 0 / 12%);
}

header .head {
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 1600rem;
    margin: 0 auto;
    align-items: center;
    overflow: visible;
}

header .head .logopic {
    height: 100%;
    padding: 11rem 0;
}

header .head .logopic img {
    height: 100%;
    width: auto;
}

header .head .topnav {
    width: 50%;
    display: flex;
    justify-content: space-between;
    height: 100%;
    overflow: visible;
    align-items: center;
}

header .head .topnav>li {
    height: 100%;
    text-align: center;
    font-size: 18rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20rem;
}

header .head .topnav a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18rem;
    color: #fff;
    font-weight: 550;
    transition: color 0.3s;
}

header:hover .topnav a, header.fixed-white .topnav a {
    color: #000;
}

header .head .topnav>li.active {
    border-bottom: 4rem solid #f12412;
}

header .head .topnav>li.active a {
    color: #f12412 !important;
}

header .head .topnav>li:hover, header .head .topnav>li:focus-within {
    border-bottom: 4rem solid #f12412;
}

header .head .topnav>li:hover a, header .head .topnav>li:focus-within a {
    color: #f12412 !important;
}

header .head .topnav>li .subnav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180rem;
    background: #fff;
    box-shadow: 0 4rem 12rem rgba(0,0,0,0.1);
    border-radius: 0 0 6rem 6rem;
    z-index: 9999;
    padding: 0;
    margin: 0;
}

header .head .topnav>li:hover .subnav, header .head .topnav>li:focus-within .subnav {
    display: block;
}

header .head .topnav>li .subnav li {
    height: 45rem;
    line-height: 45rem;
    text-align: left;
    list-style: none;
}

header .head .topnav>li .subnav li a {
    color: #333 !important;
    font-weight: normal;
    font-size: 16rem;
    padding: 0 20rem;
    display: block;
    transition: background 0.2s;
}

header .head .topnav>li .subnav li:hover {
    background: #f5f5f5;
}

header .head .topnav>li .subnav li:hover a {
    color: #f12412 !important;
}

header .head .free-quote-btn a {
    display: block;
    position: relative;
    width: 120rem;
    height: 35rem;
    line-height: 35rem;
    text-align: center;
    font-weight: 550;
    border-radius: 24rem;
    background: #fff;
    color: #f12412;
    font-size: 17rem;
    overflow: hidden;
    text-decoration: none;
    z-index: 1;
}

header.fixed-white .free-quote-btn a {
    background: #f12412;
    color: #fff;
}

header:hover .head .free-quote-btn a {
    background: #f12412;
    color: #fff;
}

header .head .free-quote-btn a:after {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(45deg,#e10000 0,#cc0000);
    transition: 0.5s;
    z-index: -1;
}

header .head .free-quote-btn a:hover:after {
    width: 100%;
}

header .head .free-quote-btn a:hover {
    color: #fff;
}

/* ==================================================================== */
header .head .contact-box {
    display: flex;
    width: 360rem;
    align-items: center;
    justify-content: space-around;
}

header .head .contact-box .pic-box {
    width: 70rem;
}

header .head .contact-box p {
    font-size: 40rem;
    color: #fff;
}

/* header css end */
/* serbox css */
.serbox {
    background-image: url(../images/probg2.webp);
    padding: 80rem 0;
}

.serbox:before {
    background: radial-gradient(#00000096 60%, #00000061);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
}

.serbox .contain-title {
    color: #fff;
}

.serbox .contain-title .en {
    background-image: linear-gradient(0deg,transparent 30%,#ffffff8a 80%);
}

.serbox .main-box {
}

.sershow {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 50rem;
    position: relative;
    z-index: 20;
}

#sercav {
    position: absolute;
    top: -300rem;
    left: -200rem;
    z-index: 1;
}

.sershow .showbox {
    width: 18%;
    height: 650rem;
    border: 3rem #ffffff59 solid;
    padding: 15rem;
    color: #fff;
    position: relative;
    transition: 0.5s ease;
}

.sershow .showbox.active {
    width: 41%;
    border: 3rem #ffffff00 solid;
    background: #523c8594;
}

.sershow .showbox.active .titgroup b {
    color: #f12412;
}

.sershow .showbox .titgroup b {
    font-size: 50rem;
    color: #ffffff54;
}

.sershow .showbox .titgroup .tit {
    font-size: 30rem;
    font-weight: bold;
    margin-top: 10rem;
}

.sershow .showbox .titgroup .intro {
    font-size: 18rem;
    line-height: 40rem;
    margin-top: 10rem;
    display: none;
    animation: opcshow 0.5s 0.5s ease forwards;
    opacity: 0;
}

.sershow .showbox.active .titgroup .intro {
    display: block;
}

.sershow .showbox .itembox {
    display: none;
    opacity: 0;
    animation: opcshow 0.5s 0.5s ease forwards;
}

.sershow .showbox.active .itembox {
    display: flex
}

.sershow .showbox .itembox .itemshow {
    width: 24%;
    margin-right: 1%;
    margin-top: 0rem;
}

.sershow .showbox .itembox .itemshow .pic-box {
    filter: grayscale(0) brightness(200);
    width: auto;
    height: 40rem;
    margin: 10rem auto;
}

.sershow .showbox .itembox .itemshow .pic-box img {
    height: 100%;
    width: auto;
}

.sershow .showbox .itembox .itemshow p {
    font-size: 15rem;
    white-space: nowrap;
    text-align: center;
}

.sershow .showbox .entit {
    position: absolute;
    width: 90%;
    bottom: 5rem;
    height: auto;
    left: 20rem;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.sershow .showbox.active .entit span {
    display: block;
    width: 50%;
    font-size: 16rem;
}

.sershow .showbox .entit span {
    width: 90%;
    word-break: normal;
}

.sershow .showbox .entit .more {
    border: 1rem #fff solid;
    display: none;
    justify-content: center;
    align-items: center;
    line-height: 40rem;
    width: 150rem;
    color: #fff;
    transition: background 0.5s ease;
    animation: opcshow 0.5s 0.5s forwards;
    font-size: 16rem;
    opacity: 0;
}

.sershow .showbox.active .entit .more {
    display: block;
}

.sershow .showbox .entit .more:hover {
    background: #f12412;
    color: #ffffff;
    border: 1rem solid #f12412;
}

/* solutbox css */
.solutshow {
    display: flex;
    justify-content: space-between;
    height: 600rem;
    margin-top: 40rem;
    width: 100%;
    overflow: hidden;
}

.solutshow .swiper-wrapper {
    transition-delay: 0s;
}

.solutitem {
    width: 55%;
    overflow: hidden;
    height: 100%;
    color: #fff;
    border-radius: 20rem;
}

.solutitem .swiper-slide {
    width: 17%!important;
    height: 100%;
    /* background: #000; */
    transition: width 0.5s ease;
    border-radius: 20rem;
}

.solutitem .swiper-slide.swiper-slide-thumb-active {
    width: 49%!important;
}

.solutitem .showbox {
    width: 480rem;
    padding: 50rem 60rem;
    color: #fff;
    position: relative;
    height: 100%;
    border-radius: 30rem;
    background: #65b109;
    overflow: hidden;
}

.solutitem .colorbg {
    background: linear-gradient(45deg, #000000bd 40%, transparent 80%);
}

.solutitem .showbox .textbox {
    opacity: 0.7;
    position: relative;
    z-index: 30;
    text-shadow: 1rem 1rem 2rem BLACK;
}

.solutitem .swiper-slide.swiper-slide-thumb-active .showbox .textbox {
    opacity: 1;
}

.solutitem .showbox .tit {
    font-size: 30rem;
    font-weight: bold;
    margin-bottom: 10rem;
    border-bottom: 3rem #fff solid;
    padding-bottom: 10rem;
    width: 70%;
}

.solutitem .showbox .intro {
    font-size: 18rem;
    line-height: 35rem;
}

.solutitem .showbox .intro strong {
    font-weight: bold;
    font-size: larger;
}

.solutitem .showbox .bg {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 100%;
    overflow: hidden;
}

.solutitem .showbox .bg .pic-box {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 5;
}

.solutitem .showbox .bg .pic-box img {
    height: 100%;
    width: auto;
}

.solutitem .swiper-slide.swiper-slide-thumb-active .showbox .bg .pic-box img {
    transition: 2s 0.5s ease;
    transform: scale(1.6);
}

.solutitem .showbox .bg .colorbg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    overflow: hidden;
    opacity: 0.8;
}

.solutitem .showbox .more {
    padding: 15rem 0;
    width: 75%;
    border-top: 3rem #eeeeee38 solid;
    display: flex;
    position: absolute;
    bottom: 0rem;
    left: -5%;
    right: 0;
    margin: auto;
    justify-content: flex-end;
    z-index: 20;
}

.solutitem .showbox .more:before {
    width: 0%;
    position: absolute;
    height: 3rem;
    background: #fff;
    content: '';
    top: -3rem;
    left: 0;
}

.solutitem .swiper-slide.swiper-slide-thumb-active .showbox .more:before {
    width: 100%;
    transition: 2s 0.5s ease;
}

.solutitem .showbox .more a {
    font-size: 17rem;
    width: 40%;
    transform: skewX(344deg);
    letter-spacing: 2rem;
}

.solutitem .showbox .more a:hover {
    transform: translateX(10rem);
    transition: 0.5s ease;
}

.solutscreen {
    overflow: hidden!important;
    width: 45%;
    position: relative;
    left: -37rem;
    z-index: 30;
    --swiper-navigation-color: #ffffff;
    --swiper-navigation-size: 40rem;
}

.solutscreen .swithbtn {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #ff6301;
    width: 160rem;
    height: 80rem;
    z-index: 20;
}

.solutscreen .swithbtn>div {
    width: 50%;
    height: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: 0.5s ease;
}

.solutscreen .swithbtn>div:hover {
    background: #ff4f05;
}

.solutscreen .swithbtn .swiper-button-next {
    right: 0%
}

.solutscreen .swithbtn .swiper-button-prev {
    left: 0%
}

.solutscreen .showbox {
    width: 100%;
    height: 100%;
    border-radius: 30rem;
    overflow: hidden;
    border: 2rem #ababab solid;
    position: relative;
}

.solutscreen .showbox .pic-box {
    height: 100%;
    width: 100%;
}

.solutscreen .showbox .pic-box img {
    height: 100%;
    width: auto;
    transition: 0.5s ease;
}

.solutscreen .showbox:hover .pic-box img {
    transform: scale(1.2);
}

.solutscreen .showbox .textbox {
    position: absolute;
    bottom: 0;
    background: #0000009c;
    padding: 15rem 30rem;
    right: 0;
    font-size: 20rem;
    color: #fff;
    font-weight: bold;
    z-index: 10;
}



/* ============================================================
   合作客户Logo模块 - 无缝滚动组件
   ============================================================ */

.partner-logo-section {
  position: relative;
  width: 100%;
  margin-top: 48rem;
  padding: 20rem 0 10rem;
}

.partner-title {
  text-align: center;
  font-size: 18rem;
  font-weight: 600;
  letter-spacing: 3rem;
  color: #d4a017;
  margin-bottom: 24rem;
  text-transform: uppercase;
  position: relative;
}
.partner-title::after {
  content: '';
  display: block;
  width: 50rem;
  height: 2rem;
  background: #d4a017;
  margin: 8rem auto 0;
  border-radius: 10rem;
}

/* ---- 滚动容器；渐变遮罩 ---- */
.logo-scroll-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10rem 0;
  border-radius: 16rem;
  background: rgba(255, 255, 255, 0.02);
}

/* 左右渐变遮罩 */
.logo-scroll-wrapper::before,
.logo-scroll-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50rem;
  z-index: 2;
  pointer-events: none;
}
.logo-scroll-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #0f172a, transparent);
}
.logo-scroll-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #0f172a, transparent);
}

/* ---- 滚动轨道；JS复制追加实现无限循环 ---- */
.logo-track {
  display: flex;
  align-items: center;
  gap: 32rem;
  width: max-content;
  animation: scrollLogo 28s linear infinite;
  will-change: transform;
  padding: 0 16rem;
}

/* ---- 单个Logo项 ---- */
.logo-track .logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240rem;
  height: 200rem;
  padding: 6rem 10rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14rem;
  border: 1rem solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.logo-track .logo-item img {

  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  object-fit: contain;
  filter: grayscale(0.2) brightness(0.9);
  transition: all 0.3s ease;
}

.logo-track .logo-item:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 30rem rgba(212, 160, 23, 0.12);
  transform: translateY(-3rem);
}
.logo-track .logo-item:hover img {
  filter: grayscale(0) brightness(1.1);
  transform: scale(1.05);
}


/* ============================================================
     页脚底部模块 - 社交链接入口样式；修复图标文字垂直居中
     ============================================================ */

.footbottom {
    padding: 12rem 0;
    border-top: 1rem solid rgba(255, 255, 255, 0.06);
}

.footbottom-inner {
    max-width: 1600rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12rem 20rem;
    padding: 0 20rem;
}

.footbottom-left {
    display: flex;
    align-items: center;
    gap: 20rem;
    flex-wrap: wrap;
}

.footbottom-left span {
    font-size: 13rem;
    color: rgb(255 255 255);
}

.footbottom-left a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.footbottom-left a:hover {
    color: #d4a017;
}

/* ============================================================
   ✅ 修复：社交链接入口 - 图标文字水平垂直居中
   ============================================================ */
.footbottom-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8rem;
    flex-wrap: wrap;
}

.social-label {
    font-size: 13rem;
    color: rgb(255 255 255);
    margin-right: 4rem;
    line-height: 1;
}

.social-link {
    display: inline-flex;
    align-items: center;          /* 关键点：垂直居中 */
    justify-content: center;      /* 关键点：水平居中 */
    gap: 5rem;                    /* 图标和文字间距 */
    padding: 5rem 12rem;
    border-radius: 20rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1rem solid rgba(255, 255, 255, 0.06);
    color: rgb(255 255 255);
    text-decoration: none;
    font-size: 12rem;
    transition: all 0.3s ease;
    line-height: 1;              /* 关键点：防止行高导致偏移 */
    vertical-align: middle;      /* 辅助对齐 */
}

.social-link svg {
    display: block;              /* 关键点：去除图片底部多余间距 */
    width: 18rem;
    height: 18rem;
    flex-shrink: 0;
}

.social-link span {
    display: inline-block;       /* 关键点：让文字和图标对齐 */
    font-size: 12rem;
    line-height: 1;             /* 和图标高度匹配 */
    vertical-align: middle;
}

.social-link:hover {
    transform: translateY(-2rem);
    background: rgba(255, 255, 255, 0.1);
}

.social-link.wechat:hover {
    color: #07c160;
    border-color: #07c160;
    background: rgba(7, 193, 96, 0.1);
}

.social-link.douyin:hover {
    color: #00f2ea;
    border-color: #00f2ea;
    background: rgba(0, 242, 234, 0.1);
}

.social-link.wjx:hover {
    color: #4fc3f7;
    border-color: #4fc3f7;
    background: rgba(79, 195, 247, 0.1);
}

/* ---- 移动端样式 ---- */
@media (max-width: 768rem) {
    .footbottom-inner {
        /* flex-direction: column; */
        text-align: center;
        gap: 8rem;
    }
    .footbottom-left {
        justify-content: center;
    }
    .footbottom-social {
        justify-content: center;
    }
}

/* ---- 滚动动画 ---- */
@keyframes scrollLogo {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 悬停暂停 */
.logo-scroll-wrapper:hover .logo-track {
  animation-play-state: paused;
}

/* ---- 移动端样式 ---- */
@media (max-width: 768rem) {
  .logo-track {
    gap: 24rem;
    padding: 0 12rem;
  }
  .logo-track .logo-item {
    /* width: 110rem; */
    /* height: 68rem; */
    /* padding: 4rem 8rem; */
  }
  .logo-track .logo-item img {
    /* max-width: 90rem; */
    /* max-height: 50rem; */
  }
  .logo-scroll-wrapper::before,
  .logo-scroll-wrapper::after {
    width: 30rem;
  }
}

@media (max-width: 480rem) {
  .logo-track {
    gap: 16rem;
    padding: 0 8rem;
  }
  .logo-track .logo-item {
    /* width: 85rem; */
    /* height: 56rem; */
    /* padding: 4rem 6rem; */
  }
  .logo-track .logo-item img {
    /* max-width: 68rem; */
    /* max-height: 40rem; */
  }
}

/* casebox */
.casebox {
    /* padding:0; */
}

.casebox .main-box {
    /* width:100%; */
}

.caseshow {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 30rem;
}

.caseshow .showbox {
    width: 32%;
    height: auto;
    position: relative;
    margin: 0.5%;
}

.caseshow .showbox .pic-box {
    width: 100%;
    transition: 0.5s ease;
    height: 350rem;
}

.caseshow .showbox .pic-box img {
    min-height: 100%;
}

.caseshow .showbox:hover .pic-box img {
    transform: scale(1.2);
}

.caseshow .showbox .textbox {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0000007d;
    color: #fff;
    display: flex;
    justify-content: center;
    opacity: 0;
    align-items: center;
    flex-direction: column;
    top: 0;
    left: 0;
    transition: 0.5s ease;
}

.caseshow:hover .showbox .textbox {
    background: #0000007d;
    opacity: 1;
}

.caseshow .showbox .textbox>div {
    opacity: 0;
}

.caseshow .showbox:hover .textbox>div {
    opacity: 1;
}

.caseshow .showbox:hover .textbox {
    background: #f12412ab;
    opacity: 1;
}

.caseshow .showbox .textbox .tit {
    font-size: 22rem;
}

.caseshow .showbox .textbox .line {
    width: 100rem;
    height: 3rem;
    background: #fff;
    margin: 15rem 0;
}

.caseshow .showbox .textbox .intro {
    font-size: 35rem;
    font-weight: bold;
    letter-spacing: 2rem;
}

.caseshow .showbox .textbox .more {
    border: 1rem #fff solid;
    transition: 0.5s ease;
    transform: rotate(0) scale(1.5);
    margin-top: 30rem;
    width: 40rem;
    height: 40rem;
    text-align: center;
    line-height: 40rem;
    font-size: 30rem;
}

.caseshow .showbox:hover .textbox .more {
    transform: rotate(360deg) scale(1);
}

/* process css */
.process {
    position: relative;
    z-index: 1;
}

.process:before {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.75) 30%, rgba(15, 23, 42, 0.95) 100%);
    content: '';
    top: 0;
    left: 0;
    z-index: -1;

}

.process .contain-title {
    text-align: left;
    color: #fff;
}

.process .contain-title .en {
    background-image: linear-gradient(0deg,transparent 30%,#ffffff5e 80%);
}

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

.cessshow .left {
    padding: 30rem;
    width: 35%;
}

.cessshow .right {
    width: 65%;
}

.cessshow .left .textbox {
    margin-top: 30rem;
    color: #fff;
    line-height: 60rem;
}

.cessshow .p1 {
    font-size: 25rem;
    letter-spacing: 2rem;
}

.cessshow .more {
    width: 130rem;
    height: 40rem;
    line-height: 40rem;
    background: linear-gradient(45deg, #f12412, #fa4526)!important;
    font-size: 16rem;
    color: #fff;
    margin-top: 100rem;
    border-radius: 5rem;
}

.cessshow .showbox {
    height: 180rem;
    width: 70%;
    margin: 30rem;
    position: relative;
    color: #fff;
    box-shadow: 5rem 8rem 25rem #ffffff8a;
    border-top-right-radius: 30rem;
    transition: 0.5s ease;
}

.cessshow .showbox:hover {
    background: linear-gradient(45deg, #f12412, #fa4526) !important;
}

.cessshow .showbox:hover .bigicon {
    transform: scale(1.3) translateX(-20rem,-10rem);
}

.cessshow .showbox .textbox>div {
    position: relative;
    z-index: 5;
}

.cessshow .showbox .textbox {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 15rem 30rem;
}

.cessshow .showbox:nth-child(2), .cessshow .showbox:nth-child(3) {
    margin-left: 25%;
}

.cessshow .showbox .txticon {
    width: 70rem;
    margin-bottom: 10rem;
}

.cessshow .showbox .tit {
    font-size: 25rem;
}

.cessshow .showbox .tit span {
    display: inline-block;
    transform: skewX(-20deg);
    margin-right: 10rem
}

.cessshow .showbox .intro {
    font-size: 18rem;
    margin-top: 10rem;
}

.cessshow .showbox .textbox .bigicon {
    position: absolute;
    width: 170rem;
    opacity: 0.3;
    bottom: -50rem;
    right: -50rem;
}

.cessshow .showbox:hover .bigicon {
    transform: scale(1.2) translate(-40rem,-30rem);
}

/* ohterser css */
.othershow {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30rem;
}

.othershow .showbox {
    width: 32%;
    display: flex;
    justify-content: space-between;
    padding: 30rem;
    align-items: center;
    margin: 15rem 0;
    border-radius: 20rem;
    border-top-left-radius: 60rem;
    border-bottom-right-radius: 60rem;
    background: #fff!important;
    color: #000;
    box-shadow: 5rem 0 10rem #7a7a7ab0;
}

.othershow .showbox:hover {
    background: linear-gradient(45deg, #f79252, #ff6301)!important;
}

.othershow .showbox:hover .textbox {
    color: #fff
}

.othershow .showbox .pic-box {
    width: 100rem;
    height: 100rem;
    padding: 20rem;
    transition: transform 0.5s ease;
    background: linear-gradient(45deg, #f79252, #ff6301)!important;
    /* clip-path:polygon(30% 0,70% 0,100% 30%,100% 70%,70% 100%,30% 100%,0 70%,0 30%); */
    border: 3rem #fff solid;
    border-radius: 50%;
}

.othershow .showbox .pic-box img {
    filter: brightness(200);
}

.othershow .showbox .textbox {
    width: 70%;
    transition: none;
}

.othershow .showbox:hover .pic-box {
    transform: perspective(1000rem) rotateY(360deg);
}

.othershow .showbox .textbox .tit {
    font-size: 25rem;
    margin-bottom: 10rem;
}

.othershow .showbox .textbox .intro {
    font-size: 18rem;
}

.othershow .showbox:nth-child(1) {
    background: linear-gradient(45deg, #f79252, #ff6301);
}

.othershow .showbox:nth-child(2) {
    background: linear-gradient(45deg, #dbcd21, #f7c501);
}

.othershow .showbox:nth-child(3) {
    background: linear-gradient(45deg, #91c51f, #34d80f);
}

.othershow .showbox:nth-child(4) {
    background: linear-gradient(45deg, #24c93f, #05bf23);
}

.othershow .showbox:nth-child(5) {
    background: linear-gradient(45deg, #24b8c9, #01bacf);
}

.othershow .showbox:nth-child(6) {
    background: linear-gradient(45deg, #245dc9, #0138a2);
}

.othershow .showbox:nth-child(7) {
    background: linear-gradient(45deg, #8a24c9, #62019d);
}

.othershow .showbox:nth-child(8) {
    background: linear-gradient(45deg, #c924ad, #9d0182);
}

.othershow .showbox:nth-child(9) {
    background: linear-gradient(45deg, #c9243f, #a1011b);
}

/* abusbox css */
.abusbox {
    padding: 120rem 0;
    /* background-image: url(../images/serverbg.jpg); */
    background-attachment: fixed;
}

/*.otherser{*/
/*     background-image: url(../images/serverbg.jpg); */
/*     background-attachment: fixed;*/
/*}*/
/*.otherser:before{*/
/* background: #00000061; */
/*	position:absolute;*/
/*	top:0;*/
/*	left:0;*/
/*	width:100%;*/
/*	height:100%;*/
/*	content:''*/
/*}*/
.abusbox:before {
    /* background: #00000061; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ''
}

.abusbox .tit {
    font-size: 45rem;
    text-align: center;
    color: #fff;
    font-weight: bold;
    margin-bottom: 120rem;
}

.abusbox .tit .en {
    background-image: linear-gradient(0deg,transparent 30%,#ffffff5e 80%);
    color: transparent;
}

.abusbox .numbox {
    width: 100%;
    display: flex;
}

.abusbox .numbox .showbox {
    width: 33.33333%;
    /* text-align: center; */
}

.abusbox .numbox .showbox .top {
    display: flex;
    /* justify-content:center; */
    color: #f12412;
}

.abusbox .numbox .showbox .top b {
    font-size: 50rem;
    width: max-content;
    background-image: linear-gradient(0deg, #f12412, #f12412);
    -webkit-background-clip: text;
    color: transparent;
}

.abusbox .numbox .showbox .top span {
    font-size: 30rem;
}

.abusbox .numbox .showbox .line {
    width: 100rem;
    height: 2rem;
    background: #f12412;
    margin: 10rem 0 15rem;
}

.abusbox .numbox .showbox .bottom {
    font-size: 20rem;
    color: #f12412;
}

/* newsbox css */
.newsshow {
    margin-bottom: 30rem;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30rem;
}

.newsshow .toubox {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.newsshow .toubox .pic-box {
    width: 50%;
    border-radius: 30rem;
}

.newsshow .toubox .textbox {
    width: 50%;
    padding: 40rem;
}

.newsshow .toubox .tit {
    font-size: 25rem;
    font-weight: bold;
}

.newsshow .toubox .date {
    display: flex;
    align-items: center;
    font-size: 16rem;
    margin: 15rem 0;
}

.newsshow .toubox .date span {
    display: block;
    width: 60rem;
    height: 4rem;
    margin-right: 20rem;
    background: #f12412;
}

.newsshow .toubox .intro {
    font-size: 20rem;
    line-height: 35rem;
}

.newsshow .toubox .more {
    font-size: 18rem;
    margin-top: 100rem;
    width: 150rem;
    line-height: 30rem;
    float: right;
}

.newsshow .showbox {
    padding: 30rem;
    background-color: #f6f6f6;
    width: 31%;
    margin: 20rem 1.333% 0% 0;
    position: relative;
    overflow: hidden;
    border-radius: 20rem;
}

.newsshow .showbox .tit {
    font-size: 20rem;
    font-weight: bold;
    padding-bottom: 10rem;
    margin-bottom: 10rem;
    border-bottom: 2rem #ccc solid;
    position: relative;
    transition: none;
}

.newsshow .showbox .tit b {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5rem;
}

.newsshow .showbox .tit span {
    opacity: 0.7;
    font-weight: normal;
}

.newsshow .showbox .date {
    font-size: 18rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: none;
}


.newsshow .showbox .date{
            display: block;
        position: relative;
        width: 120rem;
        height: 35rem;
        line-height: 35rem;
        text-align: center;
        font-weight: 550;
        border-radius: 24rem;
     background: #f12412;
        color: #fff;
        font-size: 17rem;
        overflow: hidden;
        text-decoration: none;
        z-index: 1;
    }

.newsshow .showbox:hover .date{
      background: #fff;
        color: #f12412;
}

.newsshow .showbox:hover .date span{
      background: #fff;
        color: #f12412!important;
}



.newsshow .showbox:before {
    position: absolute;
    top: 0;
    left: -100%;
    background: #f12412;
    content: '';
    width: 100%;
    height: 100%;
    transition: 0.5s ease;
}

.newsshow .showbox:hover .tit {
    color: #fff;
}

.newsshow .showbox:hover .date {
    color: #fff
}

.newsshow .showbox:hover:before {
    left: 0%;
}

/* links */
.linksbox {
    padding: 10rem 0;
}

.linkshow {
    display: flex;
    align-items: center;
}

.linkshow .tit {
    font-size: 14rem;
    color: #f12412;
    margin-right: 25rem;
}

.linkshow .tit span {
    display: block;
    font-size: 25rem;
    font-weight: bold;
    letter-spacing: 1rem;
}

.linkshow .showbox {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 13rem;
    flex-wrap: wrap;
}

.linkshow .showbox a {
    display: block;
    line-height: 20rem;
    text-align: center;
    width: auto;
    padding: 5rem 10rem;
    font-size: 14rem;
}

.linkshow .showbox a:hover {
    color: #f12412;
}

/* footer css */
footer {
    width: 100%;
    background: #333;
    /* padding-top: 60rem; */
    color: #fff;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    padding-left: 160rem;
    background: inherit;
}

.footer .left {
    width: 45%;
    padding-right: 40rem;
}

.footer .left .contain-title {
    text-align: left;
}
.footer .left .contain-title .en {
    background-image: linear-gradient(0deg,transparent 30%,#9f9f9f 80%);
}

.footer .left .conshow {
    line-height: 60rem;
    font-size: 20rem;
    margin-top: 40rem;
}

.footer .left .conshow img {
    border: 1rem #ffffffa1 solid;
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    background: #f12412;
    margin-right: 20rem;
    padding: 3rem;
}

.footer .left .conshow span {
    font-weight: bold;
}

.footer .right {
    width: 55%;
    border-top-left-radius: 60rem;
    background: url(../images/footbg.webp);
    padding: 60rem 60rem;
    position: relative;
    overflow: hidden;
    background-position: right center;
}

.footer .right>div {
    position: relative;
}

.footer .right::before {
    background: linear-gradient(126deg, #333333 50%, transparent 90%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
}

.footer .right .p1 {
    font-size: 40rem;
    font-weight: bold;
    color: #f12412;
}

.footer .right .p2 {
    font-size: 25rem;
    margin-top: 20rem;
}

.footer .ewmbox {
    display: flex;
    margin-top: 50rem;
}

.footer .ewmbox .showbox {
    margin-right: 30rem
}

.footer .ewmbox .showbox .pic-box {
    width: 130rem;
    margin-bottom: 0rem;
}

.footer .ewmbox .showbox p {
    font-size: 18rem;
    text-align: center;
    font-weight: bold;
}

.footnav {
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    padding: 20rem;
    width: 100%;
    color: #000;
    border-top-left-radius: 40rem;
    border-bottom-left-radius: 40rem;
}

.footnav li a {
    font-size: 18rem;
}

.footnav>li {
    display: flex;
    width: auto;
    margin: 15rem 1%;
    align-items: center;
}

.footnav>li>a {
    font-weight: bold;
}

.footnav>li span {
    width: 7rem;
    height: 7rem;
    background-color: #f12412;
    border-radius: 50%;
    display: inline-block;
    margin-right: 15rem;
}

.footnav .subnav {
    display: flex;
}

.footnav .subnav li {
    margin: 0 15rem;
}

.footnav .subnav li a:hover {
    color: #f12412;
}

.footbottom {
    background: #f12412;
    width: 100%;
    text-align: center;
    padding: 15rem 0;
    font-size: 16rem;
}

.footbottom span {
    display: inline-block;
    margin: 0 20rem;
}

.footbottom span a {
    color: #fff;
}

.footlogo {
    position: absolute!important;
    bottom: 30rem;
    right: 20rem;
    width: 320rem;
    filter: drop-shadow(2rem 4rem 5rem #000);
}

.footlogo .pic-box {
    width: 100%;
    height: auto;
}

.main-boxx {
    width: 1600rem;
    margin: 0 auto;
    /* position: relative; */
    z-index: 20;
}



/* ========== 合作模块 表格样式 ========== */
/* 合作模块外层容器 */
.cooper-wrap {
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100);
    padding: 0rem 0;
}
/* 模块标题区域 */
.cooper-wrap .contain-title {
    margin-bottom: 50rem;
    text-align: center;
}
.cooper-wrap .contain-title .en {
    font-size: 16rem;
    letter-spacing: 2rem;
    color: #0F52BA;
    opacity: 0.7;
}
.cooper-wrap .contain-title .cn {
    margin-bottom: 12rem;
    font-size: 32rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 10rem;
}
.cooper-wrap .contain-title .subtit {
    font-size: 17rem;
    color: #64748b;
    margin-top: 16rem;
    max-width: 720rem;
    margin-left: auto;
    margin-right: auto;
}

/* 表格外层容器，开启横向滚动适配移动端 */
.cooper-table-wrap {
    /* margin-top: 50rem; */
    overflow-x: auto;
}
/* 表格基础卡片样式 */
.cooper-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 20rem !important;
    overflow: hidden;
    box-shadow: 0 8rem 36rem rgba(15, 82, 186, 0.08) !important;
}

/* 表头渐变背景 */
.cooper-table thead tr {
    background: linear-gradient(135deg, #084099 0%, #2970e2 100%) !important;
}
.cooper-table th {
    font-size: 16rem;
    font-weight: 600;
    letter-spacing: 0.5rem;
    padding: 20rem 14rem;
    text-align: center;
    color: #ffffff;
}
/* 各列宽度分配 */
.cooper-table th:nth-child(1) { width: 16%; }
.cooper-table th:nth-child(2) { width: 28%; text-align: left; }
.cooper-table th:nth-child(3) { width: 22%; }
.cooper-table th:nth-child(4) { width: 34%; text-align: left; }

/* 表格行hover交互 */
.cooper-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1rem solid #f1f5f9;
}
.cooper-table tbody tr:last-child {
    border-bottom: none;
}
.cooper-table tbody tr:hover {
    background: linear-gradient(90deg, #eff6ff 0%, #f8fafc 100%);
    transform: scale(1.003);
}
.cooper-table tbody tr td {
    font-size: 15rem;
    line-height: 1.75;
    vertical-align: middle;
    padding: 22rem 14rem;
    color: #334155;
}
/* 第三列文字居中 */
.cooper-table td:nth-child(3) {
    text-align: center;
    color: #64748b;
}

/* 第一列带emoji图标 */
.cooper-table tbody tr td:first-child {
    position: relative;
    text-align: center;
    font-weight: 700;
    color: #0F52BA;
    padding-left: 40rem;
}

/* 诊断合作 - 放大镜图标 */
.cooper-table tbody tr:nth-child(1) td:first-child::before {
    content: "🔍";
    display: inline-block;
    position: absolute;
    left: 10rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20rem;
    color: #0F52BA;
}
/* 项目合作 - 目标图标 */
.cooper-table tbody tr:nth-child(2) td:first-child::before {
    content: "🎯";
    display: inline-block;
    position: absolute;
    left: 10rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20rem;
    color: #0F52BA;
}
/* 年度陪跑 - 握手服务图标 */
.cooper-table tbody tr:nth-child(3) td:first-child::before {
    content: "🤝";
    display: inline-block;
    position: absolute;
    left: 10rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20rem;
    color: #0F52BA;
}
/* 连锁定制 - 门店图标 */
.cooper-table tbody tr:nth-child(4) td:first-child::before {
    content: "🏬";
    display: inline-block;
    position: absolute;
    left: 10rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20rem;
    color: #0F52BA;
}

/* 平板适配 */
@media screen and (max-width: 992rem) {
    .cooper-wrap {
        /* padding: 60rem 0; */
    }
    .cooper-table th, .cooper-table td {
        padding: 16rem 10rem !important;
        font-size: 14rem;
    }
}
/* 手机端适配 */
@media screen and (max-width:768rem) {
    .cooper-wrap .contain-title .cn {
        font-size: 26rem;
    }
    .cooper-wrap .contain-title .subtit {
        font-size: 15rem;
    }
    .cooper-table th {
        font-size: 24rem;
    }
    .cooper-table tbody tr td {
        font-size: 16rem;
    }
    .cooper-table tbody tr td:first-child::before {
        font-size: 16rem;
        left: 6rem;
    }
    .cooper-table tbody tr td:first-child {
        padding-left: 24rem;
    }
}

/* 按钮区域 */
.cooper-btn-box {
    text-align: center;
    margin-top: 45rem;
}
.cooper-btn-box .btn-orange {
    padding: 16rem 42rem;
    font-size: 17rem;
    border-radius: 50rem;
    transition: all 0.3s ease;
    box-shadow: 0 6rem 18rem rgba(241, 36, 18, 0.22);
    border: none;
    cursor: pointer;
}
.cooper-btn-box .btn-orange:hover {
    transform: translateY(-3rem);
    box-shadow: 0 10rem 28rem rgba(241, 36, 18, 0.3);
}
/* 底部提示小字 */
.cooper-tip {
    margin-top: 24rem;
    font-size: 14rem;
    color: #94a3b8;
}
/* 移动端按钮 */
@media screen and (max-width:768rem) {
    .cooper-btn-box .btn-orange {
        padding: 14rem 30rem;
        font-size: 15rem;
        width: 90%;
        max-width: 320rem;
    }
}

/* 客户评价轮播模块 */
.casebox .testimonial-title {
    text-align: center;
    margin: 60rem 0 30rem;
}
.casebox .testimonial-title h3 {
    font-size: 26rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 10rem;
}
.casebox .testimonial-title p {
    color: #64748b;
    font-size: 16rem;
}
.testimonial-swiper-wrap {
    overflow: hidden;
    padding: 20rem 0 50rem;
}
.testimonial-swiper {
    width: 100%;
    height: auto;
}
.testimonial-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}
.testimonial-swiper .swiper-slide {
    height: auto;
}
.testimonial-item {
    background: #fff;
    border-radius: 18rem;
    box-shadow: 0 6rem 30rem rgba(212, 26, 10, 0.07);
    padding: 30rem;
    height: 100%;
}
.testimonial-star {
    color: #f59e0b;
    font-size: 20rem;
    margin-bottom: 16rem;
}
.testimonial-text {
    font-size: 15rem;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 24rem;
}
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12rem;
    border-top: 1rem solid #f1f5f9;
    padding-top: 20rem;
}
.testimonial-avatar {
    width: 44rem;
    height: 44rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #d41a0a, #f12412);
    color: #fff;
    font-size: 18rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-info h4 {
    font-size: 16rem;
    color: #0f172a;
    margin: 0;
}
.testimonial-info span {
    font-size: 13rem;
    color: #64748b;
}
/* swiper分页器自定义 */
.testimonial-swiper .testimonial-pagination {
    bottom: 5rem !important;
}
.testimonial-swiper .testimonial-pagination .swiper-pagination-bullet {
    width: 12rem;
    height: 12rem;
    background: #d41a0a;
    opacity: 0.3;
}
.testimonial-swiper .testimonial-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 26rem;
    border-radius: 6rem;
}
@media screen and (max-width:768rem) {
    .testimonial-item {
        padding: 22rem;
    }
    .casebox .testimonial-title h3 {
        font-size: 22rem;
    }
}


/* ===== 全局统一 H1 标签防错乱代码 ===== */
/*.h1-seo {*/
/*    font-size: inherit !important;*/
/*    margin: 0 !important;*/
/*    font-weight: inherit !important;*/
/*    line-height: inherit !important;*/
/*    display: block;*/
/*    border: none !important;*/
/*    background: none !important;*/
/*}*/

/* 首屏主容器 */
.fbs-hero {
  position: relative;
  width: 100%;
  height: 100%;
  /* aspect-ratio: 1920 / 910; */
  /* min-height: 600px; */
  /* max-height: 910px; */
  overflow: hidden;
  background-color: #0f172a !important;
  color: #ffffff;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  margin: 0 !important;
  padding: 0 !important;
}

/* 轮播主体容器 */
.fbs-hero-bg.swiper-container {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
}

.fbs-hero-bg .swiper-wrapper {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
}

.fbs-hero-bg .swiper-slide {
  flex-shrink: 0 !important;
  width: 100% !important;
  height: 100% !important;
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: hidden;
}

.fbs-hero-bg .swiper-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  vertical-align: bottom !important;
  border: none !important;
}

/* 暗色遮罩 */
.fbs-hero-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 2 !important;
  pointer-events: none;
}

/* 左右按钮 */
.fbs-hero-bg .swiper-button-prev,
.fbs-hero-bg .swiper-button-next {
  z-index: 10 !important;
  color: #ffffff !important;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.fbs-hero-bg .swiper-button-prev:after,
.fbs-hero-bg .swiper-button-next:after {
  display: none !important;
  content: "" !important;
}

.fbs-hero-bg .swiper-button-prev svg,
.fbs-hero-bg .swiper-button-next svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  transition: all 0.3s ease;
}

.fbs-hero-bg .swiper-button-prev:hover,
.fbs-hero-bg .swiper-button-next:hover {
  background: #ff5533 !important;
  border-color: #ff5533 !important;
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(255, 85, 51, 0.6);
}

.fbs-hero-bg .swiper-button-prev { left: 30px !important; }
.fbs-hero-bg .swiper-button-next { right: 30px !important; }

/* 内容层布局 */
.fbs-hero-container {
  position: relative;
  z-index: 20;
  width: 1580rem;
  /* max-width: 1200px; */
  margin: 0 auto;
  /* padding: 60px 20px 45px; */ /* 留出底部圆点空间 */
  box-sizing: border-box;
  pointer-events: auto;
}

.fbs-hero-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.fbs-hero-left { flex: 1.2; }
.fbs-hero-right {flex: 0.8;display: flex;}

.fbs-title {
  font-size: 38rem;
  font-weight: 800;
  line-height: 1.35;
  color: #ffffff;
  margin: 0 0 16px 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.fbs-subtitle {font-size: 24rem;color: #ff5533;font-weight: 700;margin: 0 0 8px 0;}
.fbs-tagline {font-size: 20rem;color: #ff5533;font-weight: 700;margin: 0 0 25px 0;}
.fbs-pain-list { margin-bottom: 30px; }
.fbs-pain-list p {font-size: 18rem;color: #f8fafc;margin: 0 0 12px 0;line-height: 1.5;}

.fbs-btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, #ff5533 0%, #e63e1c 100%);
  color: #ffffff !important;
  font-size: 16px;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 85, 51, 0.4);
  transition: all 0.3s ease;
}

.fbs-btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 85, 51, 0.6);
}

.fbs-card-img {
  width: 100%;
  /* max-width: 460px; */
  /* min-height: 260px; */
  background-color: #1e293b;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.fbs-card-img img {width: 100%;height: 100%;max-height: 390rem;object-fit: cover;display: block;}

/* 信任指标 */
.fbs-hero-trust {
  width: 100%;
  margin: 0 auto;
  z-index: 99;
  bottom: 120rem;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-top: 40px; */
  /* padding-top: 20px; */
  /* border-top: 1px solid rgba(255, 255, 255, 0.15); */
  font-size: 28rem;
  color: #cbd5e1;
}

.fbs-hero-trust .trust-item {margin: 0 20rem;}
.fbs-hero-trust .trust-num {color: #ff5533;font-size: 36rem;font-weight: bold;}
.fbs-hero-trust .trust-line { color: rgba(255, 255, 255, 0.3); }

/* ==========================================
   分页器小圆点高亮专属样式
   ========================================== */
.fbs-hero .swiper-pagination {
  position: absolute !important;
  bottom: 12px !important;
  left: 0 !important;
  width: 100% !important;
  text-align: center !important;
  z-index: 30 !important;
  pointer-events: auto !important;
}

.fbs-hero .swiper-pagination-bullet {
  display: inline-block !important;
  width: 12px !important;
  height: 12px !important;
  background: rgba(255, 255, 255, 0.4) !important;
  opacity: 1 !important;
  margin: 0 6px !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
}

.fbs-hero .swiper-pagination-bullet-active {
  width: 32px !important;
  border-radius: 8px !important;
  background: #ff5533 !important;
  box-shadow: 0 0 12px rgba(255, 85, 51, 0.9) !important;
}

/* 移动端响应式 */
@media screen and (max-width: 900px) {
  .fbs-hero { aspect-ratio: auto; height: auto; min-height: 520px; }
  .fbs-hero-container { padding: 40px 16px 40px; }
  .fbs-hero-main { flex-direction: column; gap: 30px; }
  .fbs-title { font-size: 24px; }
  .fbs-subtitle, .fbs-tagline { font-size: 16px; }
  .fbs-pain-list p { font-size: 15px; }
  .fbs-btn-cta { display: block; text-align: center; font-size: 14px; padding: 12px 16px; }
  .fbs-hero-right { justify-content: center; width: 100%; }
  .fbs-hero-trust { font-size: 13px; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
  .fbs-hero-trust .trust-num { font-size: 16px; }
  .fbs-hero-trust .trust-line { display: none; }
  .fbs-hero .swiper-pagination { bottom: 8px !important; }
  .fbs-hero-bg .swiper-button-prev,
  .fbs-hero-bg .swiper-button-next { display: none !important; }
}


