/* ==================== CPS联盟 cps.css ==================== */
.container--response {
    width: 1200px;
    margin: 0 auto;
}
.p-cps {
    background: #f5f7fb;
    min-height: 100vh;
    color: #333;
    font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* 通用标题 */
.cps-section__title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1a2436;
    margin: 0 0 40px;
}
.cps-section__title::after {
    content: '';
    display: block;
    width: 56px; height: 4px;
    margin: 12px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #4facfe, #00c6ff);
}

/* ---------- Hero ---------- */
.cps-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #3b9bf5 0%, #4facfe 45%, #00c6ff 100%);
}
.cps-hero__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(255,255,255,0.18), transparent 35%),
        radial-gradient(circle at 85% 75%, rgba(255,255,255,0.12), transparent 40%);
    pointer-events: none;
}
.cps-hero__wrap {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 56px 20px;
}
/* 图文同一行：文字在左、图片在右，整组水平居中 */
.cps-hero__text {
    width: 480px;
    max-width: 46%;
    text-align: left;
}
.cps-hero__title {
    color: #fff;
    font-size: 52px;
    font-weight: 800;
    margin: 0 0 26px;
    letter-spacing: 2px;
    text-shadow: 0 4px 16px rgba(0,60,120,0.25);
}
.cps-hero__tags {
    text-align: left;
}
.cps-hero__tags .tag {
    display: inline-block;
    margin: 0 14px 10px 0;
    padding: 8px 22px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 15px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.45);
}
.cps-hero__img {
    flex-shrink: 0;
    width: 420px;
    max-width: 46%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 16px 40px rgba(0,50,110,0.3);
}
.cps-hero__img img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 20px;
    box-sizing: border-box;
}

/* 移动端：上下堆叠 */
@media screen and (max-width: 767px) {
    .cps-hero__wrap {
        flex-direction: column;
        gap: 0;
        padding: 36px 16px;
    }
    .cps-hero__text {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    .cps-hero__title {
        font-size: 34px;
        margin-bottom: 18px;
    }
    .cps-hero__tags {
        text-align: center;
    }
    .cps-hero__tags .tag {
        margin: 0 6px 10px;
    }
    .cps-hero__img {
        width: 100%;
        max-width: 340px;
        height: 200px;
        margin-top: 22px;
    }
}

/* ---------- 四步 ---------- */
.cps-steps {
    padding: 64px 20px 48px;
}
.cps-steps__list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.cps-steps__item {
    width: 180px;
    text-align: center;
}
.cps-steps__item .num {
    width: 56px; height: 56px;
    line-height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4facfe, #00c6ff);
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    font-style: italic;
    font-family: "DIN Alternate", Arial, sans-serif;
    box-shadow: 0 6px 16px rgba(79,172,254,0.4);
}
.cps-steps__item .txt {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}
.cps-steps__arrow {
    margin: 16px 10px 0;
}

/* ---------- 产品能力 ---------- */
.cps-ability {
    padding: 30px 20px 64px;
}
.cps-ability__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}
.cps-ability__card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26,36,54,0.08);
    transition: transform .3s ease;
}
.cps-ability__card:hover {
    transform: translateY(-4px);
}
.cps-ability__card .card-hd {
    background: linear-gradient(135deg, #4facfe, #00c6ff);
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 0;
}
.cps-ability__card .card-bd {
    background: #eaf5ff;
    padding: 36px 20px;
    text-align: center;
}
.cps-ability__card .card-icon {
    margin-bottom: 16px;
}
.cps-ability__card .card-bd p {
    color: #2c5f8a;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* ---------- 分成比例 ---------- */
.cps-rate {
    background: linear-gradient(135deg, #3b9bf5 0%, #4facfe 45%, #00c6ff 100%);
    overflow: hidden;
}
.cps-rate__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}
.cps-rate__img {
    width: 220px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 12px 30px rgba(0,50,110,0.3);
}
.cps-rate__img img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.cps-rate__text {
    display: flex;
    align-items: baseline;
    gap: 18px;
}
.cps-rate__text .label {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 3px 10px rgba(0,60,120,0.3);
}
.cps-rate__text .num {
    color: #fff;
    font-size: 88px;
    font-weight: 800;
    line-height: 1;
    font-family: "DIN Alternate", Arial, sans-serif;
    text-shadow: 0 6px 20px rgba(0,60,120,0.35);
}

/* ---------- 合作表单 ---------- */
.cps-form {
    padding: 64px 20px 80px;
}
.cps-form__tip {
    text-align: center;
    color: #7a8699;
    font-size: 14px;
    margin: -20px 0 40px;
}
.cps-form__body {
    max-width: 560px;
    margin: 0 auto;
}
.cps-form .form-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.cps-form .form-label {
    width: 130px;
    flex-shrink: 0;
    text-align: right;
    padding-right: 16px;
    font-size: 14px;
    color: #4a5568;
}
.cps-form .form-label em {
    color: #f56c6c;
    font-style: normal;
    margin-right: 4px;
}
.cps-form .form-input {
    flex: 1;
    height: 40px;
    padding: 0 14px;
    border: 1px solid #d8e0ec;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}
.cps-form .form-input:focus {
    border-color: #4facfe;
    box-shadow: 0 0 0 3px rgba(79,172,254,0.15);
}
.cps-form .form-checks,
.cps-form .form-radios {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}
.cps-form .form-checks label,
.cps-form .form-radios label {
    font-size: 14px;
    color: #4a5568;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}
.cps-form .form-checks input,
.cps-form .form-radios input {
    margin-right: 6px;
    accent-color: #4facfe;
    width: 15px; height: 15px;
}
.cps-form .form-row--submit {
    justify-content: center;
    margin-top: 32px;
}
.cps-form .form-submit {
    width: 220px;
    height: 46px;
    border: none;
    border-radius: 23px;
    background: linear-gradient(135deg, #4facfe, #00c6ff);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(79,172,254,0.4);
    transition: all .25s;
    letter-spacing: 4px;
}
.cps-form .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(79,172,254,0.5);
    background: linear-gradient(135deg, #3aa0f0, #00b5ea);
}
