    /* 纳音五行表单样式 */
    .nayin-form {
        background-color: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        margin-bottom: 20px;
    }

    .center-btn {
        text-align: center;
        margin-top: 20px;
    }

    .btn-submit {
        background: #d4a017;
        color: white;
        border: none;
        border-radius: 4px;
        padding: 12px 30px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 4px 8px rgba(212, 160, 23, 0.2);
    }

    .btn-submit:hover {
        background: #b8860b;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(212, 160, 23, 0.3);
    }

    /* 结果容器样式 */
    .result-container {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin-top: 30px;
        border: 1px solid #e6edf7;
    }

    .result-header {
        background: linear-gradient(135deg, #d4a017, #b8860b);
        color: white;
        padding: 15px 20px;
    }

    .result-header h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
    }

    .result-data {
        padding: 0;
    }

    .result-section {
        margin-bottom: 20px;
        border-bottom: 1px solid #edf2f9;
    }

    .result-section:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }

    .result-title {
        margin: 0;
        padding: 15px 20px;
        color: #d4a017;
        font-size: 16px;
        font-weight: 600;
        background-color: #f9f5e8;
        border-bottom: 1px solid #f0e6c8;
    }

    .result-info,
    .analysis-content,
    .fate-analysis {
        padding: 15px 20px;
    }

    .info-row {
        display: flex;
        margin-bottom: 10px;
    }

    .info-label {
        font-weight: 500;
        color: #666;
        width: 80px;
        flex-shrink: 0;
    }

    .info-value {
        flex: 1;
        color: #333;
    }

    .analysis-item {
        margin-bottom: 15px;
    }

    .analysis-item:last-child {
        margin-bottom: 0;
    }

    .analysis-subtitle {
        font-size: 15px;
        color: #d4a017;
        margin: 0 0 8px 0;
        padding-bottom: 5px;
        border-bottom: 1px dashed #f0e6c8;
    }

    /* 八字命盘表格样式 */
    .bazi-table-container {
        margin: 15px 20px;
        overflow-x: auto;
    }

    .bazi-table {
        width: 100%;
        border-collapse: collapse;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .bazi-table th,
    .bazi-table td {
        padding: 12px 8px;
        text-align: center;
        border: 1px solid #e6edf7;
    }

    .bazi-table thead tr {
        background-color: #d4a017;
        color: white;
        font-weight: 600;
    }

    .bazi-table tbody tr:nth-child(odd) {
        background-color: #f9f5e8;
    }

    .bazi-table tbody tr:nth-child(even) {
        background-color: #ffffff;
    }

    .bazi-label {
        font-weight: 600;
        color: #444;
        background-color: #f0e6c8;
    }

    .bazi-value {
        font-size: 1.1em;
    }

    .bazi-day {
        background-color: #fff8e1;
        font-weight: 600;
        color: #d4a017;
    }

    .bazi-row td {
        font-size: 1.3em;
        font-weight: 600;
    }

    /* 通知项目样式 */
    .notice-list {
        padding: 10px 0;
    }

    .notice-item {
        margin-bottom: 20px;
        background-color: #f9f5e8;
        border-radius: 8px;
        padding: 15px;
        border: 1px solid #f0e6c8;
    }

    .notice-item h4 {
        color: #d4a017;
        font-size: 16px;
        margin-top: 0;
        margin-bottom: 12px;
        border-bottom: 1px dashed #e6d6a2;
        padding-bottom: 8px;
    }

    .notice-item h4 i {
        margin-right: 8px;
    }

    .feature-list {
        padding-left: 20px;
        margin: 0;
    }

    .feature-list li {
        margin-bottom: 8px;
        line-height: 1.6;
    }

    /* 付费精批按钮样式 */
    .premium-analysis {
        text-align: center;
        margin: 20px;
        padding: 25px;
        background: linear-gradient(135deg, #fff6e9, #fffaf0);
        border-radius: 10px;
        border: 1px solid #ffeeba;
        position: relative;
        overflow: hidden;
    }

    .premium-analysis:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #d4a017, #b8860b);
        border-radius: 5px 5px 0 0;
    }

    .premium-analysis p {
        margin-bottom: 20px;
        font-size: 16px;
        color: #855a19;
        line-height: 1.6;
    }

    .premium-btn {
        display: inline-block;
        padding: 12px 30px;
        background: linear-gradient(135deg, #d4a017, #b8860b);
        color: white !important;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        border-radius: 50px;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
    }

    .premium-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 20px rgba(212, 160, 23, 0.4);
    }

    .premium-icon {
        display: inline-block;
        margin-right: 8px;
        animation: pointing 1.5s infinite;
    }

    @keyframes pointing {
        0% {
            transform: translateX(0);
        }

        50% {
            transform: translateX(5px);
        }

        100% {
            transform: translateX(0);
        }
    }

    /* 响应式调整 */
    @media (max-width: 768px) {
        .form-row {
            flex-direction: column;
        }

        .form-group {
            width: 100%;
            margin-right: 0;
        }

        .info-row {
            flex-direction: column;
        }

        .info-label {
            width: 100%;
            margin-bottom: 5px;
        }

        .bazi-table th,
        .bazi-table td {
            padding: 8px 5px;
            font-size: 0.9em;
        }

        .bazi-row td {
            font-size: 1.1em;
        }
    }