/* ============================================================
   WEB / WAF Firewall — Product Page Stylesheet
   Scoped to body.page-web
   ============================================================ */
body.page-web{
    --web-blue: #2b78f6;
    --web-cyan: #22d0ff;
    --web-deep: #0a1a3a;
    --web-text: #253554;
    --web-text-light: #5b78a0;
    --web-text-muted: #858a8f;
    --web-bg-soft: #f4faff;
    --web-grad: linear-gradient(135deg, #2b78f6 0%, #22d0ff 100%);
    --web-grad-rev: linear-gradient(135deg, #22d0ff 0%, #2b78f6 100%);
    --web-card-shadow: 0 25px 60px -25px rgba(43, 120, 246, .25);

    overflow-x: hidden;
}
body.page-web *{ box-sizing: border-box; }
.page-web .m12{ width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   1. Banner — Animated Hero with floating shield
   ============================================================ */
.page-web .banner_dy{
    position: relative;
    width: 100%;
    min-height: 540px;
    overflow: hidden;
    background-color: #06122e;
    color: #fff;
    isolation: isolate;
    display: flex;
    align-items: center;
}
.page-web .banner_dy_bg{
    position: absolute;
    inset: -4%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: webBgDrift 24s ease-in-out infinite alternate;
    will-change: transform;
}
@keyframes webBgDrift{
    0%   { transform: scale(1.04) translate(0, 0); }
    50%  { transform: scale(1.08) translate(-1.5%, -.8%); }
    100% { transform: scale(1.05) translate(1%, .5%); }
}
.page-web .banner_dy_mask{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6,18,46,.78) 0%, rgba(6,18,46,.45) 55%, rgba(6,18,46,.25) 100%),
        linear-gradient(180deg, rgba(6,18,46,.25) 0%, rgba(6,18,46,.55) 100%);
    z-index: 1;
}
.page-web .banner_dy_grid{
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34,208,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,208,255,.06) 1px, transparent 1px);
    background-size: 44px 44px;
    animation: webGridMove 30s linear infinite;
    z-index: 2;
    pointer-events: none;
}
@keyframes webGridMove{
    0%   { background-position: 0 0, 0 0; }
    100% { background-position: 44px 44px, 44px 44px; }
}
.page-web .banner_dy_orb{
    position: absolute;
    width: 620px;
    height: 620px;
    right: -180px;
    top: -180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,208,255,.3), transparent 60%);
    filter: blur(40px);
    z-index: 2;
    animation: webOrbFloat 14s ease-in-out infinite;
    pointer-events: none;
}
.page-web .banner_dy_orb2{
    width: 480px; height: 480px;
    right: auto; top: auto;
    left: 30%; bottom: -180px;
    background: radial-gradient(circle, rgba(43,120,246,.28), transparent 60%);
    animation-duration: 18s;
    animation-direction: reverse;
}
@keyframes webOrbFloat{
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(-60px, 40px); }
}
.page-web .banner_dy_scan{
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
}
.page-web .banner_dy_scan::before{
    content: "";
    position: absolute;
    top: -50%;
    left: -30%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        110deg,
        transparent 30%,
        rgba(34,208,255,.06) 45%,
        rgba(34,208,255,.18) 50%,
        rgba(34,208,255,.06) 55%,
        transparent 70%
    );
    transform: rotate(8deg);
    animation: webScanMove 7s ease-in-out infinite;
}
@keyframes webScanMove{
    0%   { transform: translateX(-30%) rotate(8deg); opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: translateX(220%) rotate(8deg); opacity: 0; }
}

/* Banner content */
.page-web .banner_dy .m12{ position: relative; z-index: 5; }
.page-web .ban_cont3{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 540px;
    padding: 80px 24px;
    gap: 40px;
}
.page-web .ban_cont1_left{
    max-width: 640px;
    flex: 1 1 0;
    min-width: 0;
}
.page-web .ban_badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.18);
    font-size: 12px;
    letter-spacing: 4px;
    color: rgba(255,255,255,.85);
    margin-bottom: 28px;
    font-weight: 500;
}
.page-web .ban_badge::before{
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--web-cyan);
    box-shadow: 0 0 12px rgba(34,208,255,.85);
    animation: webPulse 1.8s ease-in-out infinite;
}
@keyframes webPulse{
    0%, 100% { opacity: .55; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.45); }
}
.page-web .ban_title{
    display: block;
    font-size: clamp(34px, 4.4vw, 56px);
    font-weight: 700;
    line-height: 1.18;
    margin: 0 0 22px;
    background: linear-gradient(135deg, #ffffff 0%, #d3e6ff 60%, #22d0ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -.5px;
    font-family: PingFang SC, Microsoft YaHei, Inter, sans-serif;
}
.page-web .ban_left_p{
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.75;
    color: rgba(255,255,255,.78);
    margin: 0 0 36px;
    max-width: 580px;
}
.page-web .ban_btnbox{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.page-web .btn_public{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .5px;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), background .35s ease, box-shadow .35s ease, border-color .35s ease;
    border: 1px solid transparent;
    cursor: pointer;
    line-height: 1.4;
}
.page-web .ban_btn1{
    background: var(--web-grad);
    color: #fff;
    box-shadow: 0 16px 35px -10px rgba(43,120,246,.55);
}
.page-web .ban_btn1:hover{
    transform: translateY(-3px);
    box-shadow: 0 22px 45px -10px rgba(34,208,255,.6);
}
.page-web .ban_btn3{
    background: rgba(255,255,255,.1);
    color: #fff;
    border-color: rgba(255,255,255,.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.page-web .ban_btn3:hover{
    background: rgba(255,255,255,.18);
    border-color: rgba(34,208,255,.5);
    transform: translateY(-3px);
}
.page-web .ban_btn_help{
    background: transparent;
    color: rgba(255,255,255,.85);
    border-color: rgba(255,255,255,.3);
}
.page-web .ban_btn_help:hover{
    background: rgba(255,255,255,.06);
    color: #fff;
    border-color: rgba(255,255,255,.5);
    transform: translateY(-3px);
}

/* ----- Right Side Visual: floating shield with rings ----- */
.ban_right_visual{
    position: relative;
    flex: 0 0 460px;
    width: 460px;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brv_ring{
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(34,208,255,.35);
    animation: brvSpin 18s linear infinite;
    pointer-events: none;
}
.brv_r1{
    border-style: dashed;
    border-color: rgba(34,208,255,.4);
}
.brv_r2{
    inset: 50px;
    border-color: rgba(43,120,246,.4);
    animation-duration: 14s;
    animation-direction: reverse;
}
.brv_r3{
    inset: 100px;
    border-style: dotted;
    border-color: rgba(34,208,255,.5);
    animation-duration: 10s;
}
.brv_ring::before{
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--web-cyan);
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 16px rgba(34,208,255,.9);
}
.brv_r2::before{
    background: var(--web-blue);
    box-shadow: 0 0 16px rgba(43,120,246,.9);
    top: auto; bottom: -5px;
}
.brv_r3::before{
    background: var(--web-cyan);
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
}
@keyframes brvSpin{
    to { transform: rotate(360deg); }
}
.brv_glow{
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,208,255,.45), rgba(43,120,246,.2) 45%, transparent 70%);
    filter: blur(8px);
    animation: brvGlowPulse 3.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes brvGlowPulse{
    0%, 100% { transform: scale(1);   opacity: .65; }
    50%      { transform: scale(1.1); opacity: 1;   }
}
.brv_orbit{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: brvSpin 30s linear infinite reverse;
}

/* The shield icon itself — floating up/down with subtle tilt */
.page-web .ban_right_img{
    position: relative;
    z-index: 5;
    max-width: 340px;
    height: auto;
    width: auto;
    margin: 0;
    filter:
        drop-shadow(0 25px 40px rgba(34,208,255,.4))
        drop-shadow(0 0 25px rgba(43,120,246,.3));
    animation: brvFloat 4s ease-in-out infinite;
    will-change: transform;
}
@keyframes brvFloat{
    0%, 100% { transform: translateY(0)     rotate(0deg); }
    25%      { transform: translateY(-12px) rotate(-1.2deg); }
    50%      { transform: translateY(-18px) rotate(0deg); }
    75%      { transform: translateY(-12px) rotate(1.2deg); }
}

/* Floating sparkles around the shield */
.brv_spark{
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--web-cyan);
    box-shadow: 0 0 14px var(--web-cyan);
    z-index: 4;
    pointer-events: none;
    animation: brvSparkFloat 5s ease-in-out infinite;
}
.brv_spark_1{ top: 18%;  left: 16%; animation-delay: 0s;   }
.brv_spark_2{ top: 25%;  right: 12%; width: 6px; height: 6px; background: var(--web-blue); box-shadow: 0 0 12px var(--web-blue); animation-delay: 1.2s; }
.brv_spark_3{ bottom: 22%; left: 14%; width: 5px; height: 5px; animation-delay: 2.4s; }
.brv_spark_4{ bottom: 18%; right: 18%; width: 9px; height: 9px; animation-delay: 3.6s; }
@keyframes brvSparkFloat{
    0%, 100% { transform: translateY(0)    scale(1);   opacity: .8; }
    50%      { transform: translateY(-15px) scale(1.3); opacity: 1; }
}

/* ============================================================
   2. mod_box & Common Titles
   ============================================================ */
.page-web .mod_box{
    width: 100%;
    display: block;
    justify-content: center;
    padding: 100px 0 80px;
    background:
        linear-gradient(180deg, rgba(244,250,255,.95) 0%, rgba(255,255,255,.95) 100%),
        url(/style/img/web_modbox_bg.png) 50% / cover no-repeat;
    position: relative;
    overflow: hidden;
}
.page-web .mod_box::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43,120,246,.08), transparent 70%);
    right: -200px;
    top: 100px;
    filter: blur(60px);
    pointer-events: none;
}
.page-web .mod_box::after{
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,208,255,.08), transparent 70%);
    left: -180px;
    bottom: 100px;
    filter: blur(60px);
    pointer-events: none;
}
.page-web .mod_box > .m12{ position: relative; z-index: 1; }

.page-web .first_title{
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 700;
    background: linear-gradient(135deg, #0a1a3a 0%, #2b78f6 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
    line-height: 1.3;
    display: block;
    text-align: center;
    font-family: PingFang SC, Microsoft YaHei, Inter, sans-serif;
    position: relative;
}
.page-web .first_title::after{
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: var(--web-grad);
    border-radius: 2px;
    margin: 18px auto 0;
    box-shadow: 0 6px 14px -3px rgba(43,120,246,.4);
}

/* ============================================================
   3. mod1 — Product Features (2x2 grid)
   ============================================================ */
.page-web .mod1{
    padding-bottom: 80px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
.page-web .mod1_list{
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 24px;
    margin: 0;
}
.page-web .mod1_cont{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    height: auto;
    min-height: 240px;
    flex: 1 1 0;
    min-width: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f4faff 100%);
    border: 1px solid rgba(43,120,246,.08);
    border-radius: 18px;
    padding: 32px 36px;
    position: relative;
    overflow: hidden;
    transition: transform .45s cubic-bezier(.2,.8,.2,1),
                box-shadow .45s ease,
                border-color .45s ease,
                background .45s ease;
    cursor: pointer;
}
.page-web .mod1_cont::before{
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 0;
    height: 3px;
    background: var(--web-grad);
    transition: width .5s ease;
    z-index: 2;
}
.page-web .mod1_cont::after{
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43,120,246,.08), transparent 70%);
    right: -80px;
    bottom: -80px;
    transition: transform .5s ease, opacity .5s ease;
    opacity: 0;
}
.page-web .mod1_cont:hover{
    transform: translateY(-8px);
    border-color: rgba(34,208,255,.4);
    box-shadow:
        0 35px 70px -20px rgba(43,120,246,.3),
        0 0 0 1px rgba(34,208,255,.2);
    background: linear-gradient(135deg, #ffffff 0%, #e8f4ff 100%);
}
.page-web .mod1_cont:hover::before{ width: 100%; }
.page-web .mod1_cont:hover::after{ opacity: 1; transform: scale(1.2); }

.page-web .mod1_text{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 28px;
    flex-shrink: 0;
    text-align: left;
    width: 100%;
    position: relative;
    z-index: 1;
}
.page-web .mod1_text > svg{
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    transition: transform .5s ease;
}
.page-web .mod1_cont:hover .mod1_text > svg{
    transform: scale(1.08) rotate(-4deg);
}
.page-web .mod1_text dl{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
}
.page-web .mod1_text dl dt{
    color: var(--web-deep);
    font-family: PingFang SC, Microsoft YaHei, Inter, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    transition: color .35s ease;
}
.page-web .mod1_cont:hover .mod1_text dl dt{
    color: var(--web-blue);
}
.page-web .mod1_text dl dd{
    width: auto;
    color: var(--web-text-muted);
    text-align: justify;
    font-family: PingFang SC, Microsoft YaHei, Inter, sans-serif;
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.75;
    margin: 0;
    flex: 1 0 0;
}

/* ============================================================
   4. mod2 — Pricing Cards
   ============================================================ */
.page-web .mod2{
    padding-bottom: 60px;
    padding-top: 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
.page-web .mod2_list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    align-items: stretch;
    gap: 22px;
    margin: 0;
}
.page-web .mod2_tc{
    display: flex;
    width: auto;
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    flex-shrink: 0;
    background: #fff;
    box-shadow: 0 25px 60px -25px rgba(67,67,68,.18);
    border-radius: 16px;
    border: 1px solid rgba(43,120,246,.08);
    overflow: hidden;
    position: relative;
    transition: transform .45s cubic-bezier(.2,.8,.2,1),
                box-shadow .45s ease,
                border-color .45s ease;
}
.page-web .mod2_tc::before{
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--web-grad);
    z-index: 2;
    transform: scaleX(.4);
    transform-origin: left center;
    transition: transform .5s ease;
}
.page-web .mod2_tc:hover{
    transform: translateY(-12px);
    box-shadow:
        0 40px 80px -25px rgba(43,120,246,.4),
        0 0 0 1px rgba(34,208,255,.25);
    border-color: rgba(34,208,255,.4);
}
.page-web .mod2_tc:hover::before{ transform: scaleX(1); }

/* Hide the redundant top-bg div (we use the ::before bar now) */
.page-web .mod2_top_bg1{
    display: none;
}

.page-web .mod2_tc h3{
    margin: 0;
    padding: 36px 32px 20px;
    color: var(--web-deep);
    text-align: center;
    font-family: PingFang SC, Microsoft YaHei, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}
.page-web .mod2_titleborder{
    height: 1px;
    align-self: stretch;
    background: linear-gradient(90deg, transparent, rgba(43,120,246,.18), transparent);
    margin: 0 32px;
}
.page-web .m2_c_box{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 28px 32px;
    gap: 16px;
}
.page-web .mod2_cont{
    display: flex;
    gap: 16px;
    width: 100%;
    font-family: PingFang SC, Microsoft YaHei, sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.6;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(43,120,246,.1);
    align-items: center;
}
.page-web .mod2_cont:last-child{ border-bottom: 0; }
.page-web .mod2_cont_list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 1 0;
    min-width: 0;
}
.page-web .mod2_cont_list p{
    margin: 0;
    word-break: break-word;
}
.page-web .mod2_cont_list_l{
    color: var(--web-text-light);
    font-weight: 500;
}
.page-web .mod2_cont_list_r{
    color: var(--web-deep);
    font-weight: 600;
}
.page-web .mod2_cont_list_r .mdui-select{
    width: 100%;
    max-width: 110px;
    height: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px -3px rgba(43,120,246,.18);
    font-size: 13px;
}

.page-web .mod2_buybox{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 32px 32px;
    gap: 12px;
}
.page-web .mod2_price{
    color: var(--web-text-light);
    font-family: PingFang SC, Microsoft YaHei, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex: 1 1 0;
    min-width: 0;
}
.page-web .mod2_price span{
    background: var(--web-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: DINCond-Black, Inter, sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}
.page-web .mod2_buy{
    padding: 11px 22px;
    border-radius: 999px;
    background: var(--web-grad);
    font-family: PingFang SC, Microsoft YaHei, sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 20px -6px rgba(43,120,246,.5);
    transition: transform .35s ease, box-shadow .35s ease;
    white-space: nowrap;
}
.page-web .mod2_buy:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -6px rgba(34,208,255,.6);
}

/* ============================================================
   5. mod3 — Tab Feature Showcase
   ============================================================ */
.page-web .mod3{
    background: linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
    padding: 100px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.page-web .mod3::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43,120,246,.08), transparent 70%);
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    filter: blur(60px);
    pointer-events: none;
}
.page-web .mod3_cont{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}
.page-web .mod3_tab_cont{
    display: flex;
    gap: 50px;
    align-items: flex-start;
    justify-content: space-between;
}
.page-web .tab_title{
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 0 0 320px;
}
.page-web .mod3_list{
    cursor: pointer;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--web-text-light);
    font-family: PingFang SC, Microsoft YaHei, sans-serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    padding: 16px 18px;
    border-radius: 12px;
    transition: all .4s cubic-bezier(.2,.8,.2,1);
    position: relative;
    list-style: none;
}
.page-web .mod3_list:hover{
    color: var(--web-blue);
    background: rgba(43,120,246,.05);
    transform: translateX(4px);
}
.page-web .tab_line{
    position: relative;
    width: 36px;
    height: 4px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 2px;
}
.page-web .tab_line::before{
    display: block;
    content: "";
    width: 100%;
    background: rgba(91,120,160,.25);
    height: 100%;
    transition: background .5s ease;
}
.page-web .mod3_active{
    color: var(--web-blue);
    background: linear-gradient(90deg, rgba(43,120,246,.08), rgba(34,208,255,.02));
    box-shadow: inset 3px 0 0 var(--web-blue);
}
.page-web .mod3_active .tab_line{
    width: 50px;
}
.page-web .mod3_active .tab_line::before{
    background: var(--web-grad);
    box-shadow: 0 0 12px rgba(43,120,246,.4);
}

.page-web .tab_box{
    flex: 1 1 0;
    min-width: 0;
}
.page-web .mod3tab_list{
    display: none;
    width: 100%;
    padding: 40px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f4faff 100%);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    border: 1px solid rgba(43,120,246,.08);
    box-shadow: 0 30px 60px -25px rgba(43,120,246,.18);
    gap: 32px;
    animation: webTabFadeIn .5s ease;
}
.page-web .mod3tab_list[style*="flex"]{
    display: flex !important;
}
@keyframes webTabFadeIn{
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.page-web .mod3tab_list p{
    color: #45587c;
    font-family: PingFang SC, Microsoft YaHei, sans-serif;
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.85;
    margin: 0;
    text-align: justify;
}
.page-web .tabimg_box{
    width: 100%;
    height: 320px;
    border-radius: 14px;
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    transition: transform .6s ease;
}
.page-web .mod3tab_list:hover .tabimg_box{
    transform: scale(1.02);
}

/* ============================================================
   6. Responsive
   ============================================================ */
@media (max-width: 1280px){
    .page-web .banner_dy{ min-height: 480px; }
    .page-web .ban_cont3{ min-height: 480px; padding: 70px 24px; gap: 30px; }
    .ban_right_visual{ flex: 0 0 380px; width: 380px; height: 380px; }
    .brv_r2{ inset: 40px; }
    .brv_r3{ inset: 80px; }
    .page-web .ban_right_img{ max-width: 280px; }
    .page-web .brv_glow{ width: 220px; height: 220px; }
    .page-web .mod1_text > svg{ width: 64px; height: 64px; }
    .page-web .mod2_list{ gap: 18px; }
}

@media (max-width: 1024px){
    .ban_right_visual{ flex: 0 0 320px; width: 320px; height: 320px; }
    .brv_r2{ inset: 30px; }
    .brv_r3{ inset: 70px; }
    .page-web .ban_right_img{ max-width: 220px; }
    .page-web .brv_glow{ width: 180px; height: 180px; }
    .page-web .brv_spark{ width: 6px; height: 6px; }

    .page-web .mod1_list{ flex-direction: column; gap: 18px; }
    .page-web .mod2_list{ grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .page-web .mod3_tab_cont{ flex-direction: column; gap: 30px; }
    .page-web .tab_title{ flex: 0 0 auto; flex-direction: row; flex-wrap: wrap; }
    .page-web .mod3_list{ font-size: 16px; padding: 12px 16px; }
    .page-web .mod3_active{ box-shadow: inset 0 -3px 0 var(--web-blue); }
}

@media (max-width: 880px){
    .page-web .banner_dy{ min-height: auto; }
    .page-web .ban_cont3{
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
        padding: 60px 20px;
    }
    .ban_right_visual{
        flex: 0 0 auto;
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    .brv_r2{ inset: 30px; }
    .brv_r3{ inset: 60px; }
    .page-web .ban_right_img{ max-width: 180px; }
    .page-web .brv_glow{ width: 160px; height: 160px; }
}

@media (max-width: 640px){
    .page-web .ban_badge{
        padding: 6px 14px;
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 22px;
    }
    .page-web .btn_public{ padding: 11px 22px; font-size: 13px; }
    .ban_right_visual{ width: 240px; height: 240px; }
    .brv_r2{ inset: 24px; }
    .brv_r3{ inset: 50px; }
    .page-web .ban_right_img{ max-width: 150px; }
    .page-web .brv_glow{ width: 130px; height: 130px; }

    .page-web .mod_box{ padding: 60px 0; }
    .page-web .mod1_cont{ padding: 24px; min-height: 0; }
    .page-web .mod1_text{ flex-direction: column; gap: 18px; }
    .page-web .mod1_text > svg{ width: 56px; height: 56px; }
    .page-web .mod1_text dl dt{ font-size: 18px; }
    .page-web .mod2_list{ grid-template-columns: 1fr; }
    .page-web .mod2_tc h3{ padding: 28px 24px 16px; font-size: 19px; }
    .page-web .m2_c_box{ padding: 22px 24px; }
    .page-web .mod2_buybox{ padding: 18px 24px 26px; }
    .page-web .mod3{ padding: 60px 0; }
    .page-web .mod3tab_list{ padding: 28px; gap: 24px; }
    .page-web .tabimg_box{ height: 220px; }
    .page-web .mod3_list{ font-size: 15px; padding: 10px 14px; }
}
