/* ===== 猝死关爱保险金区块 ===== */
.qt_sudden {
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(180deg, #FFE7CF 0%, #FFD9B0 100%);
    border-radius: 20px;
    padding: 50px 60px 60px 60px;
    position: relative;
    overflow: hidden;
    margin: 40px auto;
    max-width: 1200px;
}

/* ===== 保险金一次性赔付板块 ===== */
.qt_claim {
    width: 100%;
    box-sizing: border-box;
    padding: 30px 20px 50px 20px;
    text-align: center;
    position: relative;
}

.qt_claim_title {
    font-size: 22px;
    line-height: 1.7;
    color: #333333;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* 中心光圈 */
.qt_claim_circle {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 222, 192, 0.55) 0%, rgba(255, 222, 192, 0) 70%);
}

.qt_claim_circle::before {
    content: "";
    position: absolute;
    top: 18%;
    left: 18%;
    width: 64%;
    height: 64%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 232, 210, 0.65) 0%, rgba(255, 232, 210, 0) 70%);
}

/* 中心盾牌 */
.qt_claim_shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    text-align: center;
    z-index: 2;
}

.qt_claim_shield_body {
    background: linear-gradient(180deg, #FFFAF2 0%, #FFF2DE 100%);
    border: 2px solid #FFD0A0;
    border-radius: 18px 18px 8px 8px;
    padding: 16px 8px 24px 8px;
    position: relative;
    box-shadow: 0 6px 20px rgba(255, 138, 60, 0.18);
}

.qt_claim_shield_text_top {
    font-size: 16px;
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.qt_claim_shield_amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 4px;
}

.qt_claim_shield_amount .num {
    font-size: 56px;
    font-weight: 800;
    color: #5A2E0F;
    line-height: 1;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.qt_claim_shield_amount .unit {
    font-size: 20px;
    font-weight: 700;
    color: #5A2E0F;
    line-height: 1;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.qt_claim_shield_label {
    font-size: 13px;
    color: #8B4513;
    font-weight: 600;
    writing-mode: vertical-rl;
    position: absolute;
    right: 12px;
    top: 18px;
    letter-spacing: 2px;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* 飘带 */
.qt_claim_ribbon {
    background: linear-gradient(180deg, #FF8A3C 0%, #FF6B1A 100%);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 0;
    text-align: center;
    margin: -4px -10px 0 -10px;
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 4px 10px rgba(255, 107, 26, 0.35);
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.qt_claim_ribbon_text {
    display: inline-block;
    padding: 0 20px;
}

/* 6 个橙色理赔场景球 */
.qt_claim_bubble {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #FFB077 0%, #FF8A3C 45%, #F26B1A 100%);
    box-shadow:
        0 6px 16px rgba(242, 107, 26, 0.35),
        inset -3px -4px 8px rgba(180, 60, 0, 0.25),
        inset 4px 4px 10px rgba(255, 220, 180, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.qt_claim_bubble::before {
    content: "";
    position: absolute;
    top: 12%;
    left: 22%;
    width: 28%;
    height: 22%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    filter: blur(2px);
}

.qt_claim_bubble_text {
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(180, 60, 0, 0.4);
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    z-index: 1;
    position: relative;
}

/* 6 个气泡位置（围绕中心圆环） */
.qt_claim_bubble--top-left {
    top: 18%;
    left: 12%;
}

.qt_claim_bubble--top-right {
    top: 18%;
    right: 12%;
}

.qt_claim_bubble--mid-left {
    top: 50%;
    left: -2%;
    transform: translateY(-50%);
}

.qt_claim_bubble--mid-right {
    top: 50%;
    right: -2%;
    transform: translateY(-50%);
}

.qt_claim_bubble--bottom-left {
    bottom: 18%;
    left: 18%;
}

.qt_claim_bubble--bottom-mid {
    bottom: 18%;
    right: 18%;
}

/* 响应式 */
@media (max-width: 900px) {
    .qt_claim_title {
        font-size: 16px;
        padding: 0 12px;
    }
    .qt_claim_circle {
        width: 320px;
        height: 320px;
    }
    .qt_claim_shield {
        width: 130px;
    }
    .qt_claim_shield_text_top {
        font-size: 12px;
    }
    .qt_claim_shield_amount .num {
        font-size: 36px;
    }
    .qt_claim_shield_amount .unit {
        font-size: 14px;
    }
    .qt_claim_shield_label {
        font-size: 10px;
        right: 8px;
        top: 12px;
    }
    .qt_claim_ribbon {
        font-size: 12px;
        padding: 6px 0;
    }
    .qt_claim_bubble {
        width: 64px;
        height: 64px;
    }
    .qt_claim_bubble_text {
        font-size: 12px;
    }
    .qt_claim_bubble--top-left { left: 4%; top: 10%; }
    .qt_claim_bubble--top-right { right: 4%; top: 10%; }
    .qt_claim_bubble--mid-left { left: -10%; }
    .qt_claim_bubble--mid-right { right: -10%; }
    .qt_claim_bubble--bottom-left { left: 8%; bottom: 10%; }
    .qt_claim_bubble--bottom-mid { right: 8%; bottom: 10%; }
}


/* 上半部分：文字+剪贴板 */
.qt_sudden_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.qt_sudden_top_left {
    flex: 1;
    min-width: 0;
}

.qt_sudden_top_right {
    flex: 0 0 auto;
    width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qt_sudden_img1 {
    width: 100%;
    max-width: 260px;
    height: auto;
    display: block;
}

.qt_sudden_text1 {
    font-size: 22px;
    line-height: 1.7;
    color: #333333;
    font-weight: 400;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.qt_sudden_highlight {
    color: #FF6B1A;
    font-weight: 700;
    font-size: 25px;
}

/* 下半部分：白色卡片 */
.qt_sudden_card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(255, 138, 60, 0.08);
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.qt_sudden_card_left {
    flex: 1;
    min-width: 0;
}

.qt_sudden_card_right {
    flex: 0 0 auto;
    width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qt_sudden_img2 {
    width: 100%;
    max-width: 170px;
    height: auto;
    display: block;
}

.qt_sudden_text2 {
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
    font-weight: 500;
    margin-bottom: 6px;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.qt_sudden_bold {
    color: #333333;
    font-weight: 700;
    font-size: 26px;
}

.qt_sudden_text3 {
    font-size: 15px;
    color: #999999;
    margin-top: 18px;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* 响应式 */
@media (max-width: 900px) {
    .qt_sudden {
        padding: 30px 24px 36px 24px;
    }
    .qt_sudden_top {
        flex-direction: column;
        gap: 20px;
    }
    .qt_sudden_top_right {
        width: 100%;
    }
    .qt_sudden_text1 {
        font-size: 22px;
    }
    .qt_sudden_highlight {
        font-size: 26px;
    }
    .qt_sudden_card {
        flex-direction: column;
        padding: 24px;
    }
    .qt_sudden_card_right {
        width: 100%;
    }
    .qt_sudden_text2 {
        font-size: 18px;
    }
    .qt_sudden_bold {
        font-size: 22px;
    }
}

/* ===== 水陆空/自燃意外保障区块 ===== */
.qt_accident {
    width: 100%;
    box-sizing: border-box;
    background: #FFEFE0;
    border-radius: 20px;
    padding: 30px 40px 40px 40px;
    margin: 40px auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.qt_accident_section {
    margin-bottom: 30px;
}

.qt_accident_section:last-child {
    margin-bottom: 0;
}

.qt_accident_title {
    display: inline-block;
    background: linear-gradient(90deg, #FF8A3C 0%, #FFB077 100%);
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 30px;
    margin: 0 auto 30px auto;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 138, 60, 0.3);
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* === 3 icons row === */
.qt_accident_icons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.qt_accident_item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qt_accident_icon {
    width: 120px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 16px;
    display: block;
}

.qt_accident_text {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    font-weight: 500;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    max-width: 200px;
}

.qt_accident_highlight {
    color: #FF6B1A;
    font-weight: 700;
    font-size: 22px;
    margin: 0 2px;
}

/* === 自燃意外区 === */
.qt_accident_fire {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px 32px;
    margin-bottom: 16px;
    gap: 20px;
    box-shadow: 0 4px 16px rgba(255, 138, 60, 0.08);
}

.qt_accident_fire_text {
    flex: 1;
    font-size: 22px;
    line-height: 1.6;
    color: #333333;
    font-weight: 500;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.qt_accident_fire_icon {
    width: 200px;
    height: 130px;
    object-fit: contain;
    flex: 0 0 auto;
}

.qt_accident_alert {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 22px 28px;
    margin-bottom: 16px;
    gap: 20px;
    box-shadow: 0 4px 16px rgba(255, 138, 60, 0.08);
}

.qt_accident_alert_icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex: 0 0 auto;
}

.qt_accident_alert_text {
    flex: 1;
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.qt_accident_source {
    font-size: 14px;
    line-height: 1.8;
    color: #999999;
    padding: 0 8px;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    margin-top: 10px;
}

/* 响应式 */
@media (max-width: 900px) {
    .qt_accident {
        padding: 24px 18px 28px 18px;
    }
    .qt_accident_title {
        font-size: 18px;
        padding: 10px 24px;
    }
    .qt_accident_icons {
        flex-direction: column;
        gap: 24px;
    }
    .qt_accident_icon {
        width: 90px;
        height: 70px;
    }
    .qt_accident_text {
        font-size: 15px;
    }
    .qt_accident_highlight {
        font-size: 18px;
    }
    .qt_accident_fire {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .qt_accident_fire_text {
        font-size: 18px;
    }
    .qt_accident_fire_icon {
        width: 160px;
        height: 100px;
    }
    .qt_accident_alert {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }
    .qt_accident_alert_icon {
        width: 60px;
        height: 60px;
    }
    .qt_accident_alert_text {
        font-size: 15px;
    }
}

/* ===== 家庭守护保障区块 ===== */
.qt_family {
    width: 100%;
    box-sizing: border-box;
    background: #FFEFE0;
    border-radius: 20px;
    padding: 35px 50px;
    margin: 40px auto;
    max-width: 1200px;
}

.qt_family_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.qt_family_text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.qt_family_text_top {
    font-size: 20px;
    line-height: 1.8;
    color: #333333;
    font-weight: 500;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.qt_family_text_bottom {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.qt_family_text_highlight {
    font-size: 44px;
    font-weight: 700;
    color: #FF6B1A;
    line-height: 1;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.qt_family_text_label {
    font-size: 26px;
    font-weight: 700;
    color: #333333;
    line-height: 1;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.qt_family_img {
    flex: 0 0 auto;
    width: 220px;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .qt_family {
        padding: 24px 18px;
    }
    .qt_family_inner {
        flex-direction: column-reverse;
        text-align: center;
        gap: 20px;
    }
    .qt_family_text_top {
        font-size: 16px;
    }
    .qt_family_text_bottom {
        justify-content: center;
    }
    .qt_family_text_highlight {
        font-size: 36px;
    }
    .qt_family_text_label {
        font-size: 22px;
    }
    .qt_family_img {
        width: 200px;
    }
}

/* ===== 投保门槛区块 ===== */
.qt_qualify {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
}

.qt_qualify_card {
    flex: 1;
    background: #FFEFE0;
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 280px;
    box-sizing: border-box;
}

.qt_qualify_icon {
    width: auto;
    height: 130px;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 16px;
    display: block;
}

.qt_qualify_text {
    font-size: 22px;
    line-height: 1.5;
    color: #333333;
    font-weight: 600;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    margin-top: auto;
}

@media (max-width: 900px) {
    .qt_qualify {
        flex-direction: column;
        gap: 16px;
    }
    .qt_qualify_card {
        min-height: auto;
        padding: 20px 16px;
    }
    .qt_qualify_icon {
        height: 100px;
    }
    .qt_qualify_text {
        font-size: 18px;
    }
}

/* ===== 投保案例板块 ===== */
.qt_case {
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(180deg, #FFF0E0 0%, #FFE0C4 100%);
    border-radius: 20px;
    padding: 40px 50px 50px 50px;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

/* 顶部：文字+照片 */
.qt_case_top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.qt_case_top_text {
    flex: 1;
    min-width: 0;
}

.qt_case_top_name {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    line-height: 1.4;
    margin-bottom: 16px;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.qt_case_top_desc {
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
    font-weight: 500;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.qt_case_top_img {
    flex: 0 0 auto;
    width: 280px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.qt_case_photo {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
}

/* 中部：4列信息表 */
.qt_case_table {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(255, 138, 60, 0.1);
}

.qt_case_th {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: #FFF0E0;
}

.qt_case_th_item {
    padding: 18px 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #FF6B1A;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    border-right: 1px solid rgba(255, 138, 60, 0.15);
}

.qt_case_th_item:last-child {
    border-right: none;
}

.qt_case_td {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: #FFFFFF;
}

.qt_case_td_item {
    padding: 22px 12px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.qt_case_td_item:last-child {
    border-right: none;
}

/* 底部：故事叙述 */
.qt_case_story {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 4px 20px rgba(255, 138, 60, 0.1);
}

.qt_case_story_p {
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
    font-weight: 500;
    margin-bottom: 8px;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.qt_case_story_p:last-child {
    margin-bottom: 0;
}

.qt_case_story_highlight {
    color: #FF6B1A;
    font-weight: 700;
    font-size: 22px;
}

/* 响应式 */
@media (max-width: 900px) {
    .qt_case {
        padding: 24px 18px 30px 18px;
    }
    .qt_case_top {
        flex-direction: column;
        gap: 16px;
    }
    .qt_case_top_name {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .qt_case_top_desc {
        font-size: 14px;
    }
    .qt_case_top_img {
        width: 100%;
        justify-content: center;
    }
    .qt_case_photo {
        max-width: 200px;
    }
    .qt_case_th_item {
        font-size: 13px;
        padding: 12px 4px;
    }
    .qt_case_td_item {
        font-size: 16px;
        padding: 14px 4px;
    }
    .qt_case_story {
        padding: 20px 18px;
    }
    .qt_case_story_p {
        font-size: 14px;
    }
    .qt_case_story_highlight {
        font-size: 16px;
    }
}
