﻿.yz-s-card {
    background-image: linear-gradient(180deg, #bbe1fe 0, #c4e5ff 42%, #e1f2fe 80%, #fff);
}

.pricing-card {
    border: 1px solid #e9ecef;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.user-select-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 1.5rem 0 2rem;
    padding: 0 10px;
}

.user-select-btn {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 0;
    font-size: 12px;
    border-radius: 5px;
    border: 1px solid #dee2e6;
    text-align: center;
    position: relative;
}

    .user-select-btn.selected {
        background-color: #ebeff5;
        border-color: #425470;
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
        border-radius: 5px 5px 0 5px;
    }

        .user-select-btn.selected::after {
            content: "✓";
            position: absolute;
            bottom: 0px;
            right: -1px;
            width: 20px;
            height: 20px;
            background-color: #425470;
            clip-path: polygon(100% 0, 0 100%, 100% 100%);
            text-align: end;
            font-size: 8px;
            padding-top: 8px;
            padding-right: 2px;
            color: #fff;
        }

.pricing-card[data-version="standard"] .user-select-btn.selected {
    background-color: #ebf1ff;
    border-color: #3b75ff;
}

    .pricing-card[data-version="standard"] .user-select-btn.selected::after {
        background-color: #3b75ff;
    }

.price-container {
    margin: 1.5rem 0;
    text-align: center;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #41536f;
    letter-spacing: -0.5px;
    margin: 0;
}

.price-standard {
    color: #2176e3;
}

.price-unit {
    font-size: 1.1rem;
    color: #000;
    margin-left: 0.5rem;
}

.card-header {
    border-bottom: none;
    padding: 1.25rem 1.5rem 0rem 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.card-title-admin {
    color: #425470;
}

.card-title-group {
    background: linear-gradient(131deg, #eae4db 15%, #f2d9b9 28%, #411c0f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-body {
    padding: 2rem 2rem 1rem 2rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.card-footer {
    background-color: white;
    border-top: none;
    padding: 1.5rem 2rem;
}

.btn-purple {
    background: linear-gradient(90deg, #4526a1, #553ac0 58%, #644cdd);
    color: #fff1e0;
    transition: all 0.2s;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0;
    border: none;
    cursor: default !important;
}

    .btn-purple:hover {
        background: linear-gradient(90deg, #644cdd, #553ac0 58%, #4526a1);
    }

    .btn-purple:not(:disabled):not(.disabled):focus {
        border-radius: 0;
        border: none;
        box-shadow: none !important;
        background: linear-gradient(90deg, #644cdd, #553ac0 58%, #4526a1);
        ;
    }

.btn-brown {
    background: linear-gradient(90deg, #2c1008, #441e10 58%, #4f2413);
    border-color: #8B4513;
    color: white;
    transition: all 0.2s;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0;
    border: none;
    cursor: default !important;
}

    .btn-brown:not(:disabled):not(.disabled):focus {
        border-radius: 0;
        border: none;
        box-shadow: none !important;
        background: linear-gradient(90deg, #4f2413, #441e10 58%, #2c1008);
    }

    .btn-brown:hover {
        background: linear-gradient(90deg, #4f2413, #441e10 58%, #2c1008);
    }

    .btn-brown span {
        background: linear-gradient(135deg, #f2e5cb 80%, #fccda3 20%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.btn-primary {
    background-color: #3b75ff;
    border: none;
    transition: all 0.2s;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0;
    color: #ffffff;
}

    .btn-primary:hover {
        background-color: #0a58ca;
        border-color: #0a58ca;
    }

    .btn-primary:not(:disabled):not(.disabled):focus {
        background-color: #0a58ca;
        border-color: #0a58ca;
        border: none;
        box-shadow: none !important;
    }

.btn-outline-primary {
    background-color: #ddebfa;
    color: #3f516c;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0;
    border: none;
    box-shadow: none !important;
}

    .btn-outline-primary:hover, .btn-outline-primary:not(:disabled):not(.disabled):focus {
        background-color: #b7d3f1;
        color: #3f516c;
    }

.yz-s-card .list-unstyled li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    font-size: 12px;
}

    .yz-s-card .list-unstyled li::before {
        content: "✓";
        font-weight: bold;
        margin-right: 0.75rem;
        margin-top: 1px;
    }

.pricing-card[data-version="admin"] .list-unstyled li::before {
    color: #425470;
}

.pricing-card[data-version="standard"] .list-unstyled li::before {
    color: #2481f8;
}

.pricing-card[data-version="enterprise"] .list-unstyled li::before {
    color: #6f42c1;
}

.pricing-card[data-version="group"] .list-unstyled li::before {
    color: #8B4513;
}

.text-muted {
    color: #595959 !important;
}

.container {
    max-width: 1200px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.125rem;
    color: #505253;
    max-width: 800px;
    margin: 0 auto 3rem;
}

@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 2.5rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .user-select-btn {
        font-size: 14px;
        padding: 8px 0;
    }
}

.badge-popular {
    position: absolute;
    top: 15px;
    right: -60px;
    transform: rotate(45deg);
    background-color: #fff1e0;
    color: white;
    width: 200px;
    height: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 20;
    text-align: center;
}

.badge-popular-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-1px);
    width: 100%;
    background: linear-gradient(90deg, #4526a1, #553ac0 58%, #644cdd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stars {
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 1;
}

.recommend-text {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    margin-top: 2px;
}

.pricing-card[data-version="admin"] .card-header {
    background-color: #e2f0ff;
}

.pricing-card[data-version="standard"] .card-header {
    background: linear-gradient(90deg, #1f68f6, #2689f8 48%, #30b2fb);
}

.pricing-card[data-version="enterprise"] .card-header {
    background: linear-gradient(90deg, #4526a1, #553ac0 58%, #644cdd);
    color: white;
}

.pricing-card[data-version="group"] .card-header {
    background: linear-gradient(90deg, #2c1008, #441e10 58%, #4f2413);
    color: white;
}

.pricing-card[data-version="enterprise"] .card-title,
.pricing-card[data-version="enterprise"] .text-muted,
.pricing-card[data-version="group"] .card-title {
    color: white !important;
}

.pricing-card[data-version="standard"] .card-header .text-muted {
    color: #bedbfc !important;
}

.pricing-card[data-version="admin"] .card-header .text-muted {
    color: #96a8c2 !important;
}

.pricing-card[data-version="group"] .card-header .text-muted {
    color: #fcd4ad !important;
    background: linear-gradient(131deg, #eae4db, #f2d9b9 88%, #411c0f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card[data-version="enterprise"] .user-select-container p {
    color: #5e45d1;
    font-weight: 600;
    font-size: 18px;
}

.pricing-card[data-version="group"] .user-select-container p {
    color: #3a190c;
    font-weight: 600;
    font-size: 18px;
}

.price-container {
    text-align: center;
    margin: 1.5rem 0 0;
    margin-top: auto;
}

.price-icon {
}


.price-icon-group {
}

.download-link {
    color: #425470 !important;
    text-decoration: none !important;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

    .download-link:hover {
        text-decoration: underline !important;
    }

.consult-btn-container {
    margin-top: auto;
}

.features-list {
    margin-top: 1.5rem;
    flex-grow: 1;
}
/* 调整占位高度，确保对齐 */
.empty-price-placeholder {
    /* height: 66px;*/
}
/* 移除企业版和集团版的用户选择容器 */
.pricing-card[data-version="enterprise"] .user-select-container,
.pricing-card[data-version="group"] .user-select-container {
    display: block;
    /* margin:0 auto; */
    margin-bottom: 2.4rem;
}
/* 统一按钮底部外边距 */
.consult-btn-container button {
    margin-bottom: 1.2rem !important;
}
/*以下各版本功能对比*/
.feature-table {
    table-layout: fixed;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

    .feature-table th:first-child {
        width: 20%;
        min-width: 200px;
    }

    .feature-table th:not(:first-child) {
        width: 20%;
    }

td.fw-medium.text-muted {
    font-size: 14px;
}

.module-content {
    display: table-row-group;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

    .module-content.show {
        max-height: 1000px;
        opacity: 1;
    }

.function-icon {
     width: 35px; 
     height: 35px; 
    /* background-color: #e6f0ff; 
     border-radius: 50%; */
     display: flex; 
     align-items: center; 
     justify-content: center; 
    margin-right: 1rem;
}

    .function-icon i {
        color: #165DFF;
    }

    .function-icon img {
        width: 20px;
    }

.feature-table td {
    border: 1px solid #f7f8fa;
    text-align: center;
    padding: 0.5rem;
}

.feature-table th {
    text-align: center;
    padding: 0.75rem;
    /* border: 1px solid #e9ecef; */
    /* background-color: #f8f9fa; */
}

.module-title {
    text-align: left;
    font-weight: 600;
    background-color: #f7f8fa;
    cursor: pointer;
    position: relative;
    /* border-bottom: 1px solid #e9ecef; */
}

    /* 移除功能模块行的边框 */
    .module-title > td {
        border: none !important;
        /* border-bottom: 1px solid #e9ecef !important; */
        padding-left: 1rem;
    }

.module-content {
    display: none;
}

    .module-content.show {
        display: table-row-group;
    }

/* 箭头样式 */
.module-title .arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: #6b7280;
}

.module-title.show .arrow {
    transform: translateY(-50%) rotate(180deg);
}

.table tbody + tbody, .table thead th {
    border: none;
}
/*以上各版本功能对比*/
/*以下增值服务专区*/
.yz-s-section {
    background: #f7f8fa;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.service-card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    padding: 24px;
    background: #fff;
    margin-bottom: 1.9rem;
}

    .service-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.service-icon {
    width: 40px;
    height: 40px;
    margin-right: 16px;
}

.yz-s-section .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #0e2245;
    margin-bottom: 0px;
}

.yz-s-section .card-text {
    font-size: 14px;
    color: #595959;
    line-height: 1.4;
    margin-bottom: 16px;
    word-wrap: break-word;
    padding: 0 5px;
}

.yz-s-section .price {
    font-size: 1.75rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.5rem;
}

    .yz-s-section .price span {
        font-size: 12px;
        font-weight: 400;
        padding-left: 3px;
    }

.yz-s-section .contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 在线咨询按钮样式 - 无边框背景，仅保留边框 */
.yz-s-section .btn-online {
    background-color: transparent;
    border: 1px solid #6f96f9;
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 14px;
    color: #6f96f9;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .yz-s-section .btn-online:hover {
        background-color: #6f96f9;
        color: #fff;
    }

    .yz-s-section .btn-online:focus {
        outline: none;
    }

.yz-s-section .email-text {
    font-size: 14px;
    color: #6a616f;
    margin: 0;
}
/*以上增值服务专区*/
