.soft-header {
    background: linear-gradient(135deg, #1a6dcc 0%, #0d4a9e 100%);
    color: white;
    padding: 25px 30px;
    text-align: center;
    margin-bottom: 20px;
}

.soft-header h1 {
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
}

.soft-header p {
    color: white;
    font-size: 16px;
    opacity: 0.9;
}

.table-container {
    padding: 20px;
    overflow-x: auto;
}

.tableList {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    border: 1px solid #e1e5eb;
    border-radius: 6px;
    overflow: hidden;
}

.tableList th,
.tableList td {
    padding: 14px 16px;
    text-align: left;
    border-right: 1px solid #e1e5eb;
}

.tableList th:last-child,
.tableList td:last-child {
    border-right: none;
}

.tableList .tr1 {
    background: linear-gradient(to right, #f8fafc, #eef5ff);
    border-bottom: 2px solid #1a6dcc;
}

.tableList .tr1 td {
    font-weight: 700;
    font-size: 15px;
    color: #1a6dcc;
}

.tableList .tr2:nth-child(odd) {
    background-color: #f9fbfd;
}

.tableList .tr2:nth-child(even) {
    background-color: #ffffff;
}

.tableList .tr2:hover {
    background-color: #f0f7ff;
    transition: background-color 0.2s;
}

.tableList td:first-child {
    width: 35%;
    font-weight: 500;
    color: #2d3748;
    border-right: 1px solid #e1e5eb;
}

.tableList td:last-child {
    width: 65%;
    color: #4a5568;
}

/* 模块层级样式 */
.module-level-1 {
    font-weight: 700;
    font-size: 15px;
    color: #2c5282;
    padding-left: 10px;
    border-left: 4px solid #2c5282;
}

.module-level-2 {
    padding-left: 30px;
    color: #2d3748;
}

.module-level-3 {
    padding-left: 50px;
    color: #4a5568;
}

.module-level-4 {
    padding-left: 70px;
    color: #718096;
}

.module-level-5 {
    padding-left: 90px;
    color: #a0aec0;
}

.highlight-row {
    background-color: #fff7e6 !important;
    border-left: 4px solid #ffa726;
}

.highlight-row td:first-child {
    color: #e65100;
}

.gift-row,
.price-row {
    background-color: #f8f9fa !important;
    border-top: 2px dashed #dee2e6;
}

.gift-row td,
.price-row td {
    padding: 20px;
    line-height: 1.8;
}

.gift-title,
.price-title {
    font-weight: 700;
    color: #1a6dcc;
    margin-bottom: 8px;
    font-size: 16px;
}

.price-value {
    color: #e53935;
    font-weight: 700;
}

.footer {
    text-align: center;
    padding: 20px;
    color: #718096;
    font-size: 13px;
    border-top: 1px solid #e1e5eb;
    background-color: #f8f9fa;
}

@media (max-width: 768px) {

    .tableList th,
    .tableList td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .header h1 {
        font-size: 22px;
    }

    .header p {
        font-size: 14px;
    }

    .container {
        border-radius: 0;
    }
}

.contact-widget {
    position: fixed;
    bottom: 80px;
    right: 30px;
    background-color: white;
    color: white;
    border-radius: 16px;
    padding: 15px 20px;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 220px;
    text-align: center;
}

.contact-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.6);
}

.contact-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.phone {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.email {
    opacity: 0.9;
    font-size: 13px;
    margin-bottom: 12px;
}

.qrcode {
    width: 100%;
    border-radius: 8px;
    margin-top: 5px;
    background: white;
    padding: 5px;
}

.soft-describe {
    display: -webkit-box;
    height: 90px;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}