@charset "UTF-8";

/* ==========================================================================
   对比方案 · 产品对比表格模块样式
   ========================================================================== */

/* 1. 对比表格外层容器 */
.comparison-content {
    margin-top: 50px;
}

.comparison-table {
    margin-top: 30px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e4e4e7;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

/* 表格行布局 */
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr;
    border-bottom: 1px solid #f4f4f5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background: #fbfbfb;
}

/* 表头样式 */
.comparison-row.comparison-header {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
}

.comparison-row.comparison-header .comparison-item {
    padding: 18rem 24rem;
    font-weight: 600;
    font-size: 20rem;
    color: #ffffff;
}

/* 单元格通用 */
.comparison-item {
    font-size: 18rem;
    padding: 18rem 24rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #27272a;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.comparison-item.feature {
    font-weight: 600;
    color: #09090b;
}

.comparison-item.fubaishi {
    background: rgba(34, 197, 94, 0.04);
    border-left: 3px solid #22c55e;
    font-weight: 600;
    color: #15803d;
}

.comparison-item.others {
    background: rgba(244, 244, 245, 0.6);
    border-left: 3px solid #d4d4d8;
    color: #71717a;
}

/* 迷你Logo */
.logo-mini {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    align-content: center;
}
.logo-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 勾选图标 */
.check-icon {
    color: #22c55e;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}
.check-icon img {
    width: 100%;
    height: 100%;
}

/* 叉号图标 */
.x-icon {
    color: #ef4444;
    font-size: 16px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}
.x-icon img {
    width: 100%;
    height: 100%;
}


/* 2. 核心亮点卡片区域 */
.comparison-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 26px;
    border-radius: 12px;
    border: 1px solid #e4e4e7;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.01);
}

.highlight-card:hover {
    transform: translateY(-6px);
    border-color: #f12412;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.highlight-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(241, 36, 18, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #f12412;
    flex-shrink: 0;
}
.highlight-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.highlight-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #09090b;
}

.highlight-content p {
    color: #71717a;
    font-size: 14px;
    line-height: 1.5;
}


/* 3. 咨询联系表单模块 */
.contact-content {
    margin-top: 40px;
    width: 100%;
    display: flex;
    gap: 50px;
}

.contact-info {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-item {
    display: flex;
    gap: 18px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(241, 36, 18, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #f12412;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #09090b;
}

.info-text p {
    color: #52525b;
    font-size: 14px;
    line-height: 1.5;
}

.contact-form {
    width: 45%;
    background: #fffffff2;
    border-radius: 16px;
    padding: 35rem;
    border: 1rem solid #f12412;
    box-shadow: 0 10rem 25rem  -5rem  #f12412;
}

.contact-form input,
.contact-form textarea {
    box-shadow: 15rem red;
    width: 100%;
    padding: 13rem 16rem;
    margin-bottom: 24rem;
    background: #f124120d;
    border: 1px solid #f12412;
    border-radius: 8px;
    color: #09090b;
    font-size: 20rem;
    transition: all 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f12412;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(241, 36, 18, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a1a1aa;
}

.contact-form textarea {
    resize: vertical;
    min-height: 110px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}


/* 4. 通用按钮样式 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12rem 28rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #f12412, #fa4526);
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e10000, #cc0000);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(241, 36, 18, 0.3);
}

.btn-full {
    width: 100%;
}

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

.leftbox {
     width: 50%;
}
.leftboxx {
    position: absolute;
    top: 30%;
}
.rightbox {
    width: 45%;
}

.rightbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.flexbox .leftbox .des {
    color: #4b5563;
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    margin: 0 0 35px;
}

.btnn {
    position: relative;
    font-size: 14px;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    padding: 10px 26px;
    background-color: #f12412;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0 4px 10px rgba(241, 36, 18, 0.15);
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

.btnn:after {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    position: absolute;
    border-radius: 6px;
    top: 0;
    left: 0;
    background: #fb4324;
    transition: 0.4s ease;
    z-index: -1;
}

.btnn:hover:after {
    width: 100%;
}

.leftbox .contain-title {
    text-align: left;
}


/* 5. 新闻资讯模块 */
.news-header,
.news-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.news-header h2 {
    font-size: 28px;
    color: #09090b;
    font-weight: 700;
}

.more-link {
    font-size: 14px;
    color: #f12412;
    text-decoration: none;
    font-weight: 500;
}

.more-link:hover {
    text-decoration: underline;
}

.news-grid {
    margin-top: 30px;
    display: flex;
    gap: 24px;
}

.news-card {
    width: 33.333333%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
    border: 1px solid #e4e4e7;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    border-color: rgba(241, 36, 18, 0.2);
}

.news-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f4f4f5;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-img img {
    transform: scale(1.06);
}

.news-content {
    padding: 20px;
}

.news-date {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: #71717a;
    gap: 6px;
    margin-bottom: 10px;
}

.news-title {
    font-size: 16px;
    color: #09090b;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-desc {
    font-size: 14px;
    color: #52525b;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newmore {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f4f4f5;
    padding-top: 12px;
}

.btnnn {
    position: relative;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    background-color: #f12412;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0 2px 6px rgba(241, 36, 18, 0.1);
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

.btnnn:after {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    position: absolute;
    border-radius: 4px;
    top: 0;
    left: 0;
    background: #fb4324;
    transition: 0.4s ease;
    z-index: -1;
}

.btnnn:hover:after {
    width: 100%;
}


/* 6. 痛点解决方案区块 */
.painbox {
    background: linear-gradient(135deg, #0f52ba, #1e40af);
    padding: 65px 0;
    color: #ffffff;
}

.pain-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.pain-item {
    background: rgba(255, 255, 255, 0.96);
    padding: 30px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
}

.pain-item p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.pain-item:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #ffd059;
}

.pain-item .icon {
    font-size: 38px;
    color: #eab308;
}

.pain-item h4 {
    font-size: 18px;
    margin: 12px 0 10px;
    font-weight: 700;
    color: #09090b;
}


/* 7. 数据优势区块 */
.sitebox {
    background: #f8fafc;
    padding: 65px 0;
}

.site-flex {
    display: flex;
    flex-wrap: nowrap;
    gap: 45px;
    align-items: center;
}

.site-left {
    flex: 1.1;
    min-width: 350px;
}

.site-right {
    flex: 1;
    min-width: 350px;
}

.site-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.site-grid-item {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    padding: 26px 24px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
    position: relative;
}

.site-grid-item:hover {
    border-color: #e1251b;
    background: linear-gradient(180deg, #ffffff 0%, rgba(225, 37, 27, 0.02) 100%);
    box-shadow: 0 20px 35px -10px rgba(225, 37, 27, 0.08), 0 10px 15px -5px rgba(0, 0, 0, 0.02);
    transform: translateY(-4px);
}

.site-grid-item b {
    color: #e1251b;
    font-size: 25px;
    font-weight: 700;
    display: block;
    letter-spacing: 0.5px;
}

.site-grid-item p {
    color: #64748b;
    font-size: 20px;
    margin-top: 8px;
    line-height: 1.6;
}

.site-tip {
    line-height: 1.7;
    padding: 14px 20px;
    font-size: 18px;
    color: #c2410c;
    font-weight: 600;
    background: linear-gradient(90deg, rgba(234, 88, 12, 0.06) 0%, rgba(234, 88, 12, 0.01) 100%);
    border-radius: 8px;
    border-left: 4px solid #ea580c;
    display: flex;
    align-items: center;
}


/* 8. 保障服务区块 */
.safebox {
    background: #1e40af;
    color: #ffffff;
    padding: 65px 0;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 35px 0 50px;
}

.guarantee-card {
    text-align: center;
    padding: 26px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.guarantee-card p {
    opacity: 0.9;
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.service-mode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-mode-item {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.service-mode-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.service-mode-item p {
    opacity: 0.9;
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

/* 右侧悬浮联系按钮 */
.fixed-box {
    position: fixed;
    right: 24px;
    bottom: 90px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fixed-btn1 {
    border-radius: 40px;
    padding: 12px 20px;
    white-space: nowrap;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.fixed-tel {
    display: block;
    text-align: center;
    background: #ff5533;
    color: #fff;
    border-radius: 40px;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 85, 51, 0.3);
    transition: all 0.25s ease;
}

.fixed-tel:hover {
    transform: scale(1.05);
    background: #f12412;
}

.btn-orange {
    background: #f12412;
    color: #fff;
    border: none;
    padding: 12rem 32rem;
    border-radius: 50px;
    font-size: 15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(241, 36, 18, 0.2);
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(241, 36, 18, 0.35);
    background: #e11d48;
}

.btn-orangee {
    position: relative;
    margin-top: 15px;
    display: inline-block;
    background: #f12412;
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(241, 36, 18, 0.2);
}

.btn-orangee:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(241, 36, 18, 0.35);
}

.bj {
    background-image: url(../images/wrod.jpg);
    background-size: cover;
    background-position: center;
}

.yanse {
    height: auto;
    min-height: 220px;
    background: rgba(255, 255, 255, 0.92);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.swiper-container { width: 100%; height: 100%; }
.swiper-slide { text-align: center; font-size: 18px; display: flex; justify-content: center; align-items: center; }

/* 通用网格布局 */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; align-items: stretch; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; margin-top:30px;}
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; align-items: stretch; }

/* Hero首屏 */
.hero-box {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}
.hero-box h1 {
    text-shadow: 1px 1px 1px #000;
    font-size: 48rem;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hero-box h2 {
    text-shadow: 1px 1px 1px #000;
    font-size: 30px;
    color: #ff5533;
    margin-bottom: 35px;
    font-weight: 700;
}
.hero-pain-list {text-shadow: 1px 1px 1px #000;margin-bottom: 35px;}
.hero-pain-list p {
    font-size: 28rem;
    color: #ffffff;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}
.hero-pain-list p::before {
    content: "•";
    color: #ff5533;
    font-weight: bold;
    font-size: 24px;
    margin-right: 10px;
    line-height: 0;
}

/* 解决方案对比表格 */
.solution-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 30px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
}
.solution-header {
    background: #0f172a;
    color: #ffffff;
}
.solution-th, .solution-td {
    padding: 18rem 24rem;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
    font-size: 20rem;
    line-height: 1.6;
}
.solution-th {
    font-size: 25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: none;
}
.solution-row { transition: background-color 0.2s ease; }
.solution-row:hover { background: #f8fafc; }
.solution-row:last-child .solution-td { border-bottom: none; }
.solution-td:nth-child(3) { font-weight: 500; color: #0f172a; background-color: #fffaf9; }

/* 五步转化卡片 */
.steps-flow { display: flex; justify-content: space-between; margin-top: 40px; position: relative; }
.step-card {
    flex: 1;
    background: #ffffff;
    padding: 30px 20px;
    margin: 0 10px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border-top: 4px solid #2563eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.step-card.highlight {
    border-top-color: #ff5533;
    background: #fff8f6;
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(255, 85, 51, 0.08);
}
.step-card.highlight:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 30px rgba(255, 85, 51, 0.15);
}
.step-num {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 20px;
}
.step-card.highlight .step-num { background: #ff5533; }
.step-card h4 { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: #0f172a; }
.step-card p { font-size: 18px; color: #64748b; line-height: 1.6; }

/* 自测卡片 */
.selftest-card {
    margin-top: 30rem;
    background: #fff8f6;
    border-left: 5px solid #ff5533;
    padding: 30rem;
    border-radius: 8rem;
    margin-bottom: 35rem;
    box-shadow: 0 2px 5px rgba(255,85,51,0.03);
}
.selftest-card h4 {font-size: 23rem;color: #0f172a;font-weight: 700;margin-bottom: 18px;}
.selftest-card li {font-size: 18rem;color: #ea580c;margin-bottom: 12px;list-style-type: none;display: flex;align-items: center;}
.selftest-card li::before { content: "✕"; margin-right: 10px; font-weight: bold; color: #ff5533; }

.base-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    margin-bottom: 30rem;
    border: 1px solid #e2e8f0;
}
.base-table th {background: #f8fafc;padding: 18rem 20rem;font-weight: 600;text-align: left;font-size: 20rem;color: #0f172a;border-bottom: 1px solid #e2e8f0;}
.base-table td {padding: 16rem 20rem;border-bottom: 1px solid #f1f5f9;font-size: 18rem;color: #475569;}
.base-table tr:last-child td { border-bottom: none; }
.case-alert {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    padding: 20rem 25rem;
    border-radius: 8px;
    font-size: 18rem;
    color: #0369a1;
    line-height: 1.6;
    font-weight: 500;
}

/* 时间轴模块 */
.timeline-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.timeline-node {
    flex: 1;
    padding: 30px 8px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.08);
    margin: 0 10px;
    border-left: 5px solid #0f172a;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.timeline-node:hover {
    transform: translateY(-6px);
    border-left-color: #ff5533;
    box-shadow: 0 20px 40px -10px rgba(255, 85, 51, 0.18);
}

.node-title {
    font-size: 20rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.timeline-node:hover .node-title {
    color: #ff5533;
}

.node-desc {
    font-size: 17rem;
    color: #475569;
    line-height: 1.6;
}

/* 亮点卡片墙 */
.feature-wall-item {
    background: #ffffff;
    padding: 30rem 20rem;
    text-align: center;
    font-size: 18rem;
    font-weight: 700;
    color: #0f172a;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}
.feature-wall-item:hover { border-color: #ff5533; color: #ff5533; background-color: #fffbfb; }

/* 案例详情盒子 */
.case-detail-box {
    margin-top: 30px;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
}
.case-detail-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid #ff5533;
    display: inline-block;
}
.case-data-table {
    width: 100%;
    margin-bottom: 25px;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
.case-data-table th { background: #f8fafc; padding: 14px; font-weight: 600; text-align: center; border-bottom: 1px solid #e2e8f0; border-right: 1px solid #e2e8f0; font-size: 20px; color: #0f172a; }
.case-data-table td { padding: 14px; text-align: center; border-bottom: 1px solid #f1f5f9; border-right: 1px solid #f1f5f9; font-size: 18px; color: #334155; }
.case-data-table th:last-child, .case-data-table td:last-child { border-right: none; }
.case-data-table tr:last-child td { border-bottom: none; }

.quote-box {
    background: #f8fafc;
    padding: 24px;
    border-radius: 8px;
    font-style: normal;
    color: #475569;
    line-height: 1.7;
    font-size: 16px;
    border-left: 4px solid #cbd5e1;
}

/* 信任徽章 */
.badge-item {
    background: #0f172a;
    color: #ffffff;
    padding: 30rem 20rem;
    text-align: center;
    border-radius: 12px;
    font-size: 18rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(15,23,42,0.15);
}
.rule-card {
    background: #fff8f6;
    border: 1px solid #ffedd5;
    padding: 30rem;
    border-radius: 12px;
    margin-bottom: 20rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}
.rule-card h4 {font-size: 20rem;font-weight: 700;color: #c2410c;margin-bottom: 10px;}
.rule-card p {font-size: 18rem;color: #475569;line-height: 1.6;}

/* FAQ手风琴 */
.faq-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; margin-bottom: 16px; overflow: hidden; box-shadow: 0 2px 4px rgba(0,0,0,0.02); transition: border-color 0.2s ease; }
.faq-card:hover { border-color: #cbd5e1; }
.faq-q {background: #ffffff;padding: 22rem 25rem;font-size: 17rem;font-weight: 700;color: #0f172a;cursor: pointer;display: flex;justify-content: space-between;align-items: center;}
.faq-a {padding: 22rem 25rem;font-size: 17rem;color: #475569;line-height: 1.7;border-top: 1px solid #e2e8f0;background-color: #fafafa;display: none;}


/* 底部合作Logo区域 */
.partner-logo-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.partner-title {
    text-align: center;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 500;
}

.logo-grid {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.logo-item {
    width: 15%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.35;
    transition: all 0.4s ease;
}

.logo-item:hover {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.logo-item:hover img {
    filter: none;
    opacity: 1;
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4, .grid-5 {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .hero-box {
        padding: 45px 16px !important;
    }
    
    .hero-box .main-box.grid-2 {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .hero-box h1 {
        font-size: 26px !important;
        line-height: 1.35 !important;
        margin-bottom: 15px !important;
    }
    .hero-box h2 {
        font-size: 19px !important;
        margin-bottom: 25px !important;
    }
    .hero-pain-list p {
        font-size: 15px !important;
        margin-bottom: 10px !important;
    }
    .hero-box .btn-orange {
        width: 100% !important;
        font-size: 16px !important;
        padding: 14px 16px !important;
        box-sizing: border-box;
    }

    .steps-flow, .timeline-wrap {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .step-card, .timeline-node {
        margin: 8px 0 !important;
        width: 100% !important;
        box-sizing: border-box;
        text-align: left !important;
        padding: 24px 20px !important;
    }
    .step-num {
        margin-bottom: 12px !important;
    }

    .solution-table, .base-table, .case-data-table, .comparison-table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .solution-table th, .solution-table td,
    .base-table th, .base-table td,
    .case-data-table th, .case-data-table td {
        white-space: nowrap !important;
        padding: 12px 16px !important;
        font-size: 14px !important;
    }

    .contain-title {
        padding: 0 16px !important;
    }
    .contain-title .cn {
        font-size: 22px !important;
    }
    .contain-title .subtit {
        font-size: 13px !important;
    }

    .case-detail-box {
        padding: 20px 16px !important;
        border-radius: 12px !important;
    }
    .case-detail-box h3 {
        font-size: 18px !important;
        margin-bottom: 15px !important;
    }
    .case-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .selftest-card {
        padding: 20px 16px !important;
    }
    .selftest-card h4 {
        font-size: 17px !important;
    }
    .selftest-card li {
        font-size: 14px !important;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

/* 深色卡片配套信息模块 */
.sershow .showbox .titgroup .service-info {
    margin-top: 12rem;
    padding: 10rem 14rem;
    background: rgba(0,0,0,0.35);
    border-radius: 6px;
    margin-bottom: 20rem;
}
.sershow .showbox .titgroup .service-info p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #f0f0f0;
}
.sershow .showbox .titgroup .service-info p .label {
    color: #4298ff;
    font-weight: bold;
}

.fold-subbox {
    margin: 14rem 0;
    padding: 0px 16rem;
    background: rgba(0,0,0,0.3);
    border-radius: 6px;
    display: none;
}
.fold-subbox h4 {
    margin: 0 0 8rem;
    font-size: 16rem;
    color: #7cb8ff;
}
.fold-subbox p {
    margin: 0;
    font-size: 14rem;
    line-height: 1.7;
    color: #eee;
}
.content-title {
    margin-top: 25px;
    font-size: 17px;
    text-align: center;
}
.content-body{}
.content-title p {margin-top: 15px;margin-bottom: 15px;text-align: center;font-size: 17px;color: #999;}
/* 3. 咨询联系表单模块 - 左侧卡片网格调整 */
.contact-info {
    width: 55%;
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */ /* 两列均分 */
    gap: 20rem; /* 网格间距 */
}

.info-card {
    background: #f12412; /* 橙色背景色（可根据需要微调色值） */
    border-radius: 8px;
    padding: 10px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(241, 90, 36, 0.2);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
}
.info-card:nth-child(3) .info-icon{
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 15px;
}
.info-card .info-icon {
    width: 60px;
    height: 60px;
    /* border-radius: 50%; */
    /* background: rgba(255, 255, 255, 0.2); */ /* 白色半透明图标背景 */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 15px;
}

.info-card .info-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ffffff;
}

.info-card .info-text p {
    color: #ffffff;
    font-size: 21rem;
    line-height: 1.5;
    margin: 0;
}
.info-icon img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}
.p1{
    color: #ffffff;
    font-size: 27rem !important;
    line-height: 1.5;
    margin: 0;
    }

/* 必须分开写，不能合并选择器！很多浏览器合并会失效 */
::-webkit-input-placeholder {
  color: #000 !important; /* 改成你想要的颜色 */
  opacity: 1 !important;
}
::-moz-placeholder {
  color: #000 !important;
  opacity: 1 !important;
}
:-ms-input-placeholder {
  color: #000 !important;
  opacity: 1 !important;
}
::placeholder {
  color: #000 !important;
  opacity: 1 !important;
}



    /* 独立 CTA 横条外壳（全宽背景） */
    .bottom-cta-banner {
        background: linear-gradient(135deg, #e1251b 0%, #ff5533 100%);
        padding: 26rem 10rem;
        width: 100%;
        box-shadow: 0 10rem 30rem rgba(225, 37, 27, 0.15);
        position: relative;
        z-index: 99;
        box-sizing: border-box;
    }

    .cta-inner-wrapper {
        width: 1600rem;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }

    .cta-left-content {
        flex: 1;
        text-align: left;
    }

    .cta-fire-tag {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5rem);
        color: #e1251b !important;
        font-size: 20rem;
        font-weight: 600;
        padding: 3rem 10rem;
        border-radius: 50rem;
        margin-bottom: 6rem;
        border: 1rem solid rgba(255, 255, 255, 0.2);
    }

    .cta-main-title {
        font-size: 26rem;
        font-weight: 800;
        color: #e1251b !important;
        margin: 0 0 4rem 0;
        letter-spacing: 0.5rem;
        line-height: 1.3;
    }

    .cta-sub-title {
        font-size: 14rem;
        color: rgba(255, 255, 255, 0.85);
        margin: 0;
    }

    .cta-highlight-num {
        font-weight: 800;
        margin: 0 2rem;
    }

    .cta-right-action {
        margin-left: 30rem;
    }

    .cta-flash-btn {
        display: flex;
        align-items: center;
        gap: 8rem;
        background: #ffffff;
        color: #e1251b !important;
        padding: 13rem 28rem;
        font-size: 26rem;
        width: 100%;
        font-weight: 700;
        border-radius: 50rem;
        text-decoration: none !important;
        box-shadow: 0 6rem 15rem rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        white-space: nowrap;
    }
    .cta-flash-btnn {
        margin: 0 auto;
        /*display: flex;*/
        align-items: center;
        gap: 8rem;
        background: #ffffff;
        color: #e1251b !important;
        padding: 13rem 28rem;
        font-size: 26rem;
        width: 30%;
        font-weight: 700;
        border-radius: 50rem;
        text-decoration: none !important;
        box-shadow: 0 6rem 15rem rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        margin-bottom: 10rem;
        white-space: nowrap;
    }
    .cta-flash-btnn:hover {
        transform: scale(1.03);
        background: #fffb00;
        color: #0f172a !important;
        box-shadow: 0 10rem 20rem rgba(0, 0, 0, 0.15);
    }

    .cta-flash-btnn:hover .arrow-icon {
        transform: translateX(4rem);
    }

    .cta-flash-btnn:hover .arrow-icon path {
        fill: #0f172a;
    }

    .cta-flash-btnn .arrow-icon {
        transition: transform 0.3s ease;
    }

    .cta-flash-btnn .arrow-icon path {
        fill: #e1251b;
    }

    .cta-flash-btn:hover {
        transform: scale(1.03);
        background: #fffb00;
        color: #0f172a !important;
        box-shadow: 0 10rem 20rem rgba(0, 0, 0, 0.15);
    }

    .cta-flash-btn:hover .arrow-icon {
        transform: translateX(4rem);
    }

    .cta-flash-btn:hover .arrow-icon path {
        fill: #0f172a;
    }

    @media (max-width: 768rem) {
        .cta-inner-wrapper {
            
            text-align: center !important;
            gap: 5%;
           
        }
        .cta-left-content {
            text-align: center !important;
        }
        .cta-right-action {
            margin-left: 0;
            width: 100%;
        }
        .cta-flash-btn {
            justify-content: center;
        }
    }
    
    
    
    
    
    
    
    /* === 提取的行内样式 === */

    /* 1. Hero 容器相对定位 */
    .hero-box {
      position: relative;
    }

    /* 2. 主网格容器：居中对齐 + 顶部内边距 */
    .main-boxx.grid-2 {
      align-items: center;
      padding-top: 120rem;  /* 保留原单位 */
    }

    /* 3. 底部信任标签（绝对定位） */
    .hero-trust-tag {
      position: absolute;
      bottom: 40rem;
      left: 0;
      width: 100%;
      text-align: center;
      font-size: 28rem;
      color: #fff;
      font-weight: 500;
    }

    /* 4. 信任标签内的数字强调样式（原为 span 内联） */
    .trust-num {
      color: #f12412;
      font-weight: bold;
      font-size: 36rem;
    }

    /* 5. 分隔符样式（原为内联 color） */
    .trust-divider {
      margin: 0 20rem;
      color: #cccccc;
    }

    /* （可选）保留原有 btn-orange 等样式，未改动 */
    .btn-orange {
      /* 原有样式保持不变，此处未涉及内联，无需提取 */
    }