        /* 表单样式 */
        .calculator-body {
            background: #fff;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -10px 15px;
        }

        .form-group {
            flex: 1;
            padding: 0 10px;
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }

        .form-control {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 15px;
            color: #333;
        }

        .radio-group {
            display: flex;
            gap: 20px;
        }

        .radio-group label {
            display: inline-flex;
            align-items: center;
            cursor: pointer;
            margin-bottom: 0;
        }

        .radio-group input {
            margin-right: 6px;
        }

        .btn-submit {
            background: #d4a017;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 12px 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: block;
            margin: 10px auto;
            width: auto;
        }

        .btn-submit:hover {
            background: #0d4c8c;
            transform: translateY(-2px);
        }

        /* 结果容器样式 */
        .result-container {
            background: #fff;
            border-radius: 8px;
            padding: 20px;
            margin-top: 30px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }

        .result-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .result-header h3 {
            color: #d4a017;
            font-size: 22px;
            font-weight: 700;
            margin: 0;
            padding-bottom: 15px;
            border-bottom: 1px dashed #e0e6f5;
        }

        .result-section {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .result-section:last-child {
            margin-bottom: 0;
            border-bottom: none;
        }

        .result-title {
            color: #333;
            font-size: 18px;
            font-weight: 600;
            margin: 0 0 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f0f0f0;
        }

        /* 信息展示 */
        .info-row {
            margin-bottom: 10px;
            display: flex;
        }

        .info-label {
            color: #666;
            font-weight: 600;
            width: 90px;
        }

        .info-value {
            flex: 1;
            color: #333;
        }

        /* 八字表格 */
        .bazi-table-wrapper {
            margin: 15px 0;
            background: #f9f9f9;
            border-radius: 6px;
            padding: 15px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .bazi-title {
            text-align: center;
            font-weight: bold;
            font-size: 16px;
            color: #d4a017;
            margin-bottom: 10px;
            padding-bottom: 5px;
            border-bottom: 1px dashed #e0e6f5;
        }

        .bazi-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 10px;
        }

        .bazi-table th {
            background-color: #e6edf7;
            color: #d4a017;
            text-align: center;
            padding: 8px;
            font-size: 14px;
            border: 1px solid #d9e2ef;
        }

        .bazi-table td {
            text-align: center;
            padding: 10px 5px;
            border: 1px solid #e6edf7;
            font-weight: 600;
            font-size: 16px;
        }

        .bazi-table .tiangan-row td {
            background-color: #f5f9ff;
            color: #d4a017;
        }

        .bazi-table .dizhi-row td {
            background-color: #fff;
            color: #e74c3c;
        }

        .bazi-table .wuxing-row td {
            background-color: #f9f9f9;
            color: #2c3e50;
            font-size: 14px;
        }

        .bazi-table .shishen-row td {
            background-color: #f5f5f5;
            color: #16a085;
            font-size: 14px;
        }

        .bazi-table .highlight {
            background-color: #fff7e6 !important;
            position: relative;
        }

        .bazi-table .highlight:after {
            content: "命";
            position: absolute;
            top: 0;
            right: 0;
            font-size: 10px;
            background: #e74c3c;
            color: white;
            padding: 1px 3px;
            line-height: 1;
            border-radius: 0 0 0 4px;
        }

        .bazi-note {
            font-size: 12px;
            color: #666;
            text-align: center;
            margin-top: 5px;
        }

        /* 姻缘评分 */
        .yinyuan-score {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 15px;
            text-align: center;
        }

        .score-value {
            margin-bottom: 15px;
        }

        .score-number {
            font-size: 48px;
            font-weight: 700;
            color: #e74c3c;
            line-height: 1;
        }

        .score-unit {
            font-size: 24px;
            color: #e74c3c;
            margin-left: 5px;
        }

        .score-desc {
            width: 100%;
        }

        .score-title {
            font-size: 18px;
            color: #d4a017;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .progress-bar-container {
            height: 16px;
            background-color: #f0f0f0;
            border-radius: 8px;
            overflow: hidden;
            margin: 10px 0;
        }

        .progress-bar {
            height: 100%;
            background-color: #e74c3c;
            border-radius: 8px;
        }

        .progress-labels {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #666;
        }

        /* 分析内容 */
        .analysis-content {
            padding: 5px 0;
        }

        .analysis-text {
            line-height: 1.8;
            color: #333;
        }

        /* 建议项 */
        .advice-item {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #e6edf7;
        }

        .advice-item:last-child {
            border-bottom: none;
        }

        .advice-item h5 {
            color: #d4a017;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .advice-item i {
            margin-right: 8px;
        }

        .advice-content {
            line-height: 1.8;
            color: #333;
        }

        /* 付费精批按钮 */
        .premium-analysis {
            text-align: center;
            background: #fff7e6;
            border-radius: 8px;
            padding: 20px;
            margin-top: 30px;
        }

        .premium-analysis p {
            margin-bottom: 15px;
            color: #8B4513;
        }

        .premium-btn {
            display: inline-block;
            background: #e74c3c;
            color: white;
            padding: 12px 25px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }

        .premium-btn:hover {
            background: #c0392b;
            transform: translateY(-2px);
        }

        .premium-icon {
            margin-right: 6px;
        }

        /* 姻缘测试说明 */
        .tool-info {
            padding: 10px 0;
        }

        .info-item {
            margin-bottom: 20px;
            background-color: #f9fafc;
            border-radius: 8px;
            padding: 15px;
            border: 1px solid #edf2f7;
        }

        .info-item h4 {
            color: #d4a017;
            font-size: 16px;
            margin-top: 0;
            margin-bottom: 12px;
            border-bottom: 1px dashed #d1e0f1;
            padding-bottom: 8px;
        }

        .info-item h4 i {
            margin-right: 8px;
        }

        .info-item p {
            margin-bottom: 10px;
            line-height: 1.8;
        }

        /* 响应式样式 */
        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
            }

            .form-group {
                flex: none;
                width: 100%;
            }

            .score-number {
                font-size: 40px;
            }

            .score-unit {
                font-size: 20px;
            }

            .bazi-table td,
            .bazi-table th {
                padding: 5px 3px;
                font-size: 14px;
            }

            .bazi-table .wuxing-row td,
            .bazi-table .shishen-row td {
                font-size: 12px;
            }
        }