:root {
    --color-primary: #3B7BF6;
    --color-primary-dark: #1D5FD9;
    --color-primary-light: #EEF4FF;
    --color-primary-soft: #B8D0FA;
    --color-accent: #FF8C2E;
    --color-accent-light: #FFF6EE;
    --color-accent-dark: #E06B00;
    --color-bg: #E8EEF8;
    --color-surface: #FFFFFF;
    --color-text: #1A2332;
    --color-text-secondary: #5A6B82;
    --color-border: #E4EBF5;
    --shadow-sm: 0 2px 10px rgba(29, 95, 217, 0.07);
    --shadow-md: 0 8px 28px rgba(29, 95, 217, 0.12);
    --shadow-card: 0 4px 24px rgba(15, 23, 42, 0.06);
    --shadow-float: 0 12px 40px rgba(29, 95, 217, 0.15);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-pill: 999px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", "Microsoft YaHei", sans-serif;
    background: linear-gradient(180deg, #DDE8F8 0%, var(--color-bg) 280px, #EEF2F9 100%);
    background-attachment: fixed;
    color: var(--color-text);
    line-height: 1.5;
    min-height: 100vh;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tabPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(29, 95, 217, 0.35); }
    50% { box-shadow: 0 6px 22px rgba(29, 95, 217, 0.5); }
}

/* ===== Header ===== */
.head {
    background-image: url("https://bx-gszs.oss-cn-hangzhou.aliyuncs.com/frontend/2026/05/27/16/bg.png");
    min-height: 452px;
    height: auto;
    background-size: cover;
    background-position: center top;
    padding: 52px 77px 36px;
    position: relative;
    overflow: visible;
}

.head::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 55%, rgba(232, 238, 248, 0.6) 100%);
    pointer-events: none;
}

.headTxt {
    position: relative;
    z-index: 1;
    padding: 4px 0 8px;
    max-width: 100%;
}

.headTxt-sub {
    margin: 0 0 10px;
    font-size: 30px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 4px;
    line-height: 1.4;
    text-shadow: 0 2px 12px rgba(0, 48, 120, 0.35);
}

.headTxt-main {
    margin: 0;
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 3px;
    line-height: 1.3;
    text-shadow:
        0 2px 16px rgba(0, 48, 120, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.2);
}

.tags {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.tags:last-of-type {
    margin-bottom: 8px;
}

.tags .tag {
    background: linear-gradient(135deg, #FFB347 0%, #F4940C 50%, #E07A00 100%);
    border-radius: 28px;
    color: #fff;
    line-height: 55px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin-right: 0;
    margin-bottom: 0;
    width: 141px;
    height: 55px;
    box-shadow: 0 4px 14px rgba(244, 148, 12, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tags .tag:active {
    transform: scale(0.97);
}

.tags .tagB {
    width: 212px;
    background: linear-gradient(135deg, #5B9CF8 0%, #3B7BF6 50%, #1D5FD9 100%);
    box-shadow: 0 4px 14px rgba(59, 123, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* ===== Content ===== */
.content {
    padding: 0 24px 48px;
    margin-top: -20px;
    position: relative;
    z-index: 2;
}

/* Tab navigation */
.menus {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 10px;
    box-shadow: var(--shadow-float);
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: sticky;
    top: 12px;
    z-index: 100;
}

.menu {
    flex: 1;
    min-width: 0;
    height: 64px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 22px;
    color: var(--color-text-secondary);
    text-align: center;
    line-height: 64px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 4px;
    position: relative;
}

.menu:active {
    transform: scale(0.96);
}

.menuActive {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(135deg, #6BA3FA 0%, var(--color-primary) 45%, var(--color-primary-dark) 100%);
    box-shadow: 0 4px 16px rgba(29, 95, 217, 0.4);
    animation: tabPulse 2.5s ease-in-out infinite;
}

/* Section containers */
.content .con {
    margin-top: 32px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 40px 24px 44px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: fadeInUp 0.45s ease both;
}

.content .con .titlecon {
    width: auto;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.content .con .titlecon .title {
    font-size: 34px;
    color: var(--color-text);
    font-weight: 700;
    position: relative;
    text-align: center;
    letter-spacing: 2px;
    z-index: 1;
}

.content .con .titlecon .title::after {
    content: '';
    width: 110%;
    height: 12px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary-soft) 20%, var(--color-primary-light) 80%, transparent 100%);
    border-radius: 6px;
    z-index: -1;
    position: absolute;
    bottom: 4px;
    left: -5%;
}

.content .con .mart60 {
    margin-top: 60px;
}

/* ===== Section 1: Insurance table ===== */
.table {
    margin-top: 40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.table .rowTitle {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    display: flex;
}

.table .row {
    display: flex;
    transition: background 0.2s;
}

.table .row:nth-child(even) {
    background: #F8FAFD;
}

.table .row:hover {
    background: var(--color-primary-light);
}

.rowTitle .cell {
    width: 50%;
    text-align: center;
    line-height: 80px;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.row .cell {
    width: 50%;
    padding: 35px 16px;
    font-size: 25px;
    border: none;
    border-top: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-secondary);
}

.row .cell:first-child {
    background: rgba(238, 244, 255, 0.5);
    font-weight: 500;
    color: var(--color-text);
}

.row .cell:last-child {
    border-right: none;
    color: var(--color-primary-dark);
    font-weight: 600;
    font-size: 26px;
}

.zrow {
    padding: 32px 24px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    font-size: 25px;
    line-height: 1.75;
    background: linear-gradient(180deg, #F8FAFD 0%, #F3F6FB 100%);
    position: relative;
}

.zrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-soft) 100%);
    border-radius: 0 2px 2px 0;
}

.tips {
    padding: 28px 24px;
    border-top: 1px solid var(--color-border);
    background: linear-gradient(180deg, #FFFBF7 0%, #FFF8F2 100%);
}

.tips .title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-accent-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tips .title::before {
    content: '!';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #FFB347, var(--color-accent));
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.tips .lable {
    font-weight: 600;
    font-size: 25px;
    margin-top: 16px;
    color: var(--color-text);
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-accent);
}

.tips .tipCon {
    margin-top: 14px;
    font-weight: 400;
    font-size: 25px;
    color: var(--color-text-secondary);
    line-height: 1.85;
    padding: 18px 20px;
    background: var(--color-surface);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 140, 46, 0.2);
    box-shadow: inset 0 2px 8px rgba(255, 140, 46, 0.06);
}

/* ===== Section 2: Service process ===== */
.con2 .process {
    margin-top: 40px;
    position: relative;
    padding-left: 20px;
}

.con2 .process::before {
    content: '';
    position: absolute;
    left: 52px;
    top: 45px;
    bottom: 45px;
    width: 3px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-primary-dark) 100%);
    border-radius: 2px;
    opacity: 0.25;
}

.con2 .process .procon {
    width: 562px;
    max-width: 100%;
    height: 90px;
    background: linear-gradient(135deg, #fff 0%, var(--color-primary-light) 100%);
    border-radius: var(--radius-md);
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(59, 123, 246, 0.15);
    display: flex;
    align-items: center;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.con2 .process .procon::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.con2 .process .procon:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.con2 .process .procon:nth-child(even) {
    background: linear-gradient(135deg, #fff 0%, var(--color-accent-light) 100%);
    border-color: rgba(255, 140, 46, 0.2);
}

.con2 .process .procon:nth-child(even)::before {
    background: linear-gradient(180deg, #FFB347 0%, var(--color-accent) 100%);
}

.procon .numImg {
    width: 64px;
    height: 43px;
    margin: 0 23px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.procon .proconTxt {
    font-weight: 600;
    font-size: 30px;
    color: var(--color-text);
    letter-spacing: 0.5px;
}

.procon .proicon {
    width: 56px;
    height: 66px;
    margin: 0 40px 0 auto;
    flex-shrink: 0;
    opacity: 0.85;
    filter: drop-shadow(0 2px 6px rgba(59, 123, 246, 0.15));
}

/* ===== Section 3: One-stop service ===== */
.content .con3 .titlecon {
    width: auto;
}

.content .con3 .titlecon .title::after {
    width: 100%;
}

.con3 .serves {
    margin-top: 40px;
    padding: 0;
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.con3 .serves2 {
    justify-content: flex-end;
    margin-top: 20px;
}

.serves .serve {
    flex: 1;
    min-width: 0;
    height: 130px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 500;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    overflow: hidden;
}

.serves .serve::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-soft) 100%);
}

.serves .serve:nth-child(2)::before {
    background: linear-gradient(90deg, #FFB347 0%, var(--color-accent) 100%);
}

.serves .serve:nth-child(3)::before {
    background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.serves2 .serve::before {
    background: linear-gradient(90deg, #34C759 0%, #28A745 100%);
}

.serves .serve:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-soft);
}

.serves2 .serve {
    flex: 0 0 200px;
}

.serves .serve .title {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
    font-size: 27px;
}

.serves .serve .lable {
    color: var(--color-primary);
    font-size: 22px;
    font-weight: 500;
    padding: 4px 14px;
    background: var(--color-primary-light);
    border-radius: var(--radius-pill);
}

.serves .serve .rightIcon {
    width: 33px;
    height: 20px;
    position: absolute;
    left: -10px;
    opacity: 0.75;
}

.serves .serve .bottomIcon {
    width: 20px;
    height: 33px;
    position: absolute;
    top: -10px;
    opacity: 0.75;
}

/* ===== Section 4: Claims ===== */
.con4 .claim {
    margin-top: 40px;
    background: linear-gradient(160deg, var(--color-primary-light) 0%, #F5F8FF 35%, #FAFBFE 100%);
    border-radius: var(--radius-md);
    padding: 32px 20px 36px;
    border: 1px solid rgba(59, 123, 246, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.claim > .title {
    font-size: 26px;
    color: var(--color-primary-dark);
    text-align: center;
    font-weight: 700;
    letter-spacing: 2px;
    padding-bottom: 12px;
    border-bottom: 2px dashed rgba(59, 123, 246, 0.2);
    margin-bottom: 0;
}

.claim .process {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    gap: 8px;
}

.claim .process .procard {
    width: 162px;
    height: 162px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 28px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.claim .process .procard::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(59, 123, 246, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.claim .process .procard:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-soft);
}

.procard .rightIcon {
    position: absolute;
    width: 33px;
    height: 30px;
    top: 40%;
    right: -33px;
    opacity: 0.55;
}

.procard .bottomIcon {
    position: absolute;
    width: 30px;
    height: 33px;
    bottom: -22px;
    left: 40%;
    opacity: 0.55;
}

.claim .process .procard .pro_icon {
    height: 51px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(59, 123, 246, 0.2));
}

.claim .process .procard .title {
    font-size: 24px;
    margin-top: 18px;
    color: var(--color-text);
    font-weight: 600;
}

.claim .process .procard .title2 {
    margin-top: 6px;
    line-height: 1.3;
}

.claim .tip {
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    margin-bottom: 12px;
    background: var(--color-surface);
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
    padding-left: 52px;
}

.claim .tip::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    line-height: 28px;
    text-align: center;
}

.claim .tip:nth-child(4)::before { content: '1'; }
.claim .tip:nth-child(5)::before { content: '2'; }
.claim .tip:nth-child(6)::before { content: '3'; }
.claim .tip:nth-child(7)::before { content: '4'; }

.claim .tip:hover {
    border-color: var(--color-primary-soft);
    box-shadow: var(--shadow-sm);
}

.claim .tip .tipTitle {
    font-weight: 500;
    font-size: 25px;
    color: var(--color-text);
    line-height: 1.65;
}

.claim .tip .tipTitle .lable {
    font-weight: 400;
    font-size: 24px;
    color: var(--color-text-secondary);
    margin-left: 6px;
}

.con4 .claimtips {
    font-weight: 400;
    font-size: 25px;
    color: var(--color-text-secondary);
    padding: 24px 24px 24px 52px;
    line-height: 1.85;
    background: linear-gradient(135deg, #F8FAFD 0%, #F3F6FB 100%);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    margin-top: 8px;
    position: relative;
}

.con4 .claimtips::before {
    content: '?';
    position: absolute;
    left: 16px;
    top: 24px;
    width: 28px;
    height: 28px;
    background: var(--color-accent-light);
    color: var(--color-accent-dark);
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    line-height: 24px;
    text-align: center;
    border: 2px solid var(--color-accent);
}

/* ===== Footer contact ===== */
.phone {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text);
    font-size: 26px;
    font-weight: 600;
    margin-top: 36px;
    padding: 24px 28px;
    background: linear-gradient(135deg, #fff 0%, var(--color-primary-light) 50%, #D6E6FF 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
    border: 2px solid rgba(59, 123, 246, 0.2);
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.phone::before {
    content: '';
    display: inline-block;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background-color: var(--color-primary);
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 4px 12px rgba(29, 95, 217, 0.3);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.5.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.5.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.phone:active {
    transform: scale(0.98);
    box-shadow: var(--shadow-md);
}

/* ===== Visibility ===== */
.con2,
.con3,
.con4 {
    display: none;
}

.marb30 {
    margin-bottom: 30px;
}
