body {
    font-family: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
    background: linear-gradient(135deg, #ffeef8 0%, #fff5f7 50%, #f0f4ff 100%);
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
}

/* 导航栏 */
.nav-bar {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    padding: 15px 24px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.page-title {
    color: #e91e63;
    font-size: 18px;
    font-weight: 600;
}

.back-btn {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.back-btn:hover {
    background: linear-gradient(135deg, #c2185b, #880e4f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

/* 使用说明卡片 */
.instruction-card {
    background: linear-gradient(135deg, #fff9e6, #ffe5f3);
    border-radius: 6px;
    padding: 20px 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 200, 124, 0.2);
    border: 2px solid rgba(233, 30, 99, 0.1);
}

.instruction-title {
    font-size: 18px;
    font-weight: 600;
    color: #e91e63;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-icon {
    width: 24px;
    height: 24px;
    stroke: #e91e63;
    flex-shrink: 0;
}

.instruction-content {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.instruction-step {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.instruction-step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #e91e63;
    border-radius: 50%;
}

.instruction-tip {
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 6px;
    color: #c2185b;
    font-weight: 500;
    font-size: 14px;
}

/* 页面标题 */
h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 模版容器 */
.templates-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* 分类区块 */
.category-section {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #fce4ec;
}

.category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.15);
    flex-shrink: 0;
}

.category-icon img {
    width: 100%;
    height: 100%;
    stroke: #e91e63;
}

.category-title {
    font-size: 24px;
    background: linear-gradient(135deg, #e91e63, #ff4081);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

/* 模版卡片 */
.template-card {
    background: white;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.template-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.15);
    border-color: #e91e63;
}

.template-card:last-child {
    margin-bottom: 0;
}

.template-name {
    font-size: 18px;
    font-weight: 600;
    color: #e91e63;
    margin-bottom: 8px;
}

.template-desc {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
    font-style: italic;
}

.template-content {
    background: #f8f9fa;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    padding: 18px;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    white-space: pre-wrap;
    word-wrap: break-word;
    margin-bottom: 15px;
    max-height: 400px;
    overflow-y: auto;
    font-family: "SF Mono", Monaco, "Courier New", monospace;
}

.template-content::-webkit-scrollbar {
    width: 8px;
}

.template-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

.template-content::-webkit-scrollbar-thumb {
    background: #e91e63;
    border-radius: 6px;
}

.template-content::-webkit-scrollbar-thumb:hover {
    background: #c2185b;
}

.copy-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    width: 100%;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.copy-btn:active {
    transform: translateY(0);
}

/* 底部提示 */
.footer-tip {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border-radius: 6px;
    padding: 20px 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.footer-tip-title {
    font-weight: 600;
    color: #e91e63;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.footer-icon {
    width: 20px;
    height: 20px;
    stroke: #e91e63;
}

.footer-tip p {
    margin: 5px 0;
}

/* 手机版优化 */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .nav-bar {
        padding: 10px 12px;
        margin-bottom: 15px;
        border-radius: 6px;
    }

    .page-title {
        font-size: 15px;
    }

    .back-btn {
        font-size: 12px;
        padding: 6px 12px;
    }

    .instruction-card {
        padding: 12px 12px;
        margin-bottom: 15px;
        border-radius: 6px;
    }

    .instruction-title {
        font-size: 15px;
    }

    .instruction-content {
        font-size: 13px;
    }
    
    h1 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    h1 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .templates-container {
        gap: 30px;
    }

    .category-section {
        padding: 20px 16px;
    }

    .category-header {
        gap: 10px;
        margin-bottom: 20px;
    }

    .category-icon {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .category-title {
        font-size: 20px;
    }

    .template-card {
        padding: 16px;
        margin-bottom: 16px;
    }

    .template-name {
        font-size: 16px;
    }

    .template-desc {
        font-size: 13px;
    }

    .template-content {
        font-size: 13px;
        padding: 14px;
        max-height: 300px;
    }

    .copy-btn {
        font-size: 13px;
        padding: 9px 20px;
    }

    .footer-tip {
        padding: 16px 18px;
        margin-top: 30px;
        font-size: 13px;
    }
}

/* 平板优化 */
@media (min-width: 769px) and (max-width: 1024px) {
    body {
        max-width: 900px;
    }

    .category-section {
        padding: 25px;
    }

    .template-card {
        padding: 18px;
    }
}

/* 计算器专属样式 */
.calculator-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #fce4ec;
}

.section-icon {
    width: 36px;
    height: 36px;
    stroke: #e91e63;
}

.section-header h2 {
    font-size: 20px;
    color: #c2185b;
    margin: 0;
    background: none;
    padding: 0;
    border: none;
}

.section-content {
    margin-top: 20px;
}

.section-tip {
    margin-top: 15px;
    padding: 12px 16px;
    background: rgba(233, 30, 99, 0.05);
    border-radius: 6px;
    color: #c2185b;
    font-size: 14px;
    border-left: 4px solid #e91e63;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.tip-icon {
    width: 16px;
    height: 16px;
    stroke: #c2185b;
    flex-shrink: 0;
}

/* 输入行 */
.input-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.input-row label {
    min-width: 100px;
    font-weight: 500;
    color: #555;
    font-size: 15px;
}

.input-select {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #f8bbd0;
    border-radius: 6px;
    font-size: 15px;
    background: white;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-select:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.input-select:hover {
    border-color: #ec407a;
}

/* 风格卡片 */
.style-section {
    background: linear-gradient(135deg, #fff5f7, #fce4ec);
}

.style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.style-card {
    background: white;
    border-radius: 6px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.2);
    border-color: #f8bbd0;
}

.style-card.selected {
    border-color: #e91e63;
    background: linear-gradient(135deg, #fce4ec, #fff);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.style-card.selected::before {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: #e91e63;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.style-name {
    font-size: 16px;
    font-weight: 600;
    color: #e91e63;
    margin-bottom: 8px;
}

.style-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.style-scene {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

/* 计算分组 */
.calc-group {
    margin-bottom: 30px;
}

.calc-group h3 {
    font-size: 16px;
    color: #c2185b;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #e91e63;
}

/* 计算按钮 */
.calculate-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.calculate-btn:hover {
    background: linear-gradient(135deg, #c2185b, #880e4f);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
}

.calculate-btn:active {
    transform: translateY(0);
}

.btn-icon {
    width: 24px;
    height: 24px;
    stroke: white;
}

/* 结果区域 */
.result-section {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border: 3px solid #e91e63;
}

.result-info {
    background: white;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 25px;
}

.result-info h3 {
    font-size: 16px;
    color: #e91e63;
    margin-bottom: 12px;
}

.info-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.info-item {
    font-size: 14px;
    color: #555;
}

.result-divider {
    height: 3px;
    background: linear-gradient(to right, #e91e63, #ad1457);
    margin: 30px 0;
    border-radius: 6px;
}

.result-title {
    font-size: 20px;
    color: #c2185b;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 5px solid #e91e63;
}

.solution-card {
    background: white;
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 20px;
    border: 2px solid #f8bbd0;
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: #e91e63;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.15);
}

.solution-name {
    font-size: 18px;
    font-weight: 600;
    color: #e91e63;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.solution-item {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.solution-reason {
    margin-top: 12px;
    padding: 12px;
    background: #fce4ec;
    border-radius: 6px;
}

.solution-reason-title {
    font-size: 14px;
    font-weight: 600;
    color: #c2185b;
    margin-bottom: 8px;
}

.solution-reason-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.solution-complete {
    margin-top: 15px;
    padding: 15px;
    background: #fff9e6;
    border-radius: 6px;
    border-left: 4px solid #ff9800;
}

.solution-complete-title {
    font-size: 14px;
    font-weight: 600;
    color: #f57c00;
    margin-bottom: 8px;
}

.solution-complete-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.solution-meta {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 13px;
    color: #999;
}

.avoid-list {
    background: white;
    border-radius: 6px;
    padding: 20px;
    margin-top: 20px;
}

.avoid-item {
    font-size: 15px;
    color: #d32f2f;
    margin-bottom: 8px;
    padding-left: 10px;
}

.tips-box {
    background: white;
    border-radius: 6px;
    padding: 20px;
    margin-top: 20px;
}

.tip-item {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.tip-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
}

/* 手机版优化 */
@media (max-width: 768px) {
    .section-card {
        padding: 20px 16px;
    }
    
    .style-grid {
        grid-template-columns: 1fr;
    }
    
    .input-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .input-row label {
        min-width: auto;
        margin-bottom: 8px;
    }
    
    .info-list {
        grid-template-columns: 1fr;
    }
    
    .solution-meta {
        flex-direction: column;
        gap: 8px;
    }
}

/* 测量指南专属样式 */
.guide-section {
    background: linear-gradient(135deg, #fff5f7, #fce4ec);
}

.guide-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: start;
}

.body-diagram {
    background: white;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.1);
}

.body-diagram svg {
    width: 100%;
    height: auto;
}

.measure-instructions h3 {
    font-size: 18px;
    color: #e91e63;
    margin-bottom: 20px;
}

.measure-item {
    padding: 12px 0;
    border-bottom: 1px solid #f8bbd0;
}

.measure-item:last-of-type {
    border-bottom: none;
}

.measure-label {
    font-weight: 600;
    color: #c2185b;
    font-size: 15px;
    margin-bottom: 5px;
}

.measure-desc {
    font-size: 14px;
    color: #666;
}

.measure-tips {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 152, 0, 0.05);
    border-radius: 6px;
    border-left: 4px solid #ff9800;
}

.measure-tips h4 {
    font-size: 15px;
    color: #f57c00;
    margin-bottom: 10px;
}

.measure-tips ul {
    margin: 0;
    padding-left: 20px;
}

.measure-tips li {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

/* 滑块样式 */
.slider-group {
    margin-bottom: 35px;
}

.slider-group label {
    font-size: 16px;
    font-weight: 600;
    color: #c2185b;
    display: block;
    margin-bottom: 15px;
}

.slider-container {
    position: relative;
}

.custom-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, #f8bbd0, #e91e63);
    border-radius: 6px;
    outline: none;
    cursor: pointer;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #e91e63, #ad1457);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.4);
    transition: all 0.3s ease;
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.6);
}

.custom-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #e91e63, #ad1457);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.4);
    transition: all 0.3s ease;
}

.custom-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.6);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 13px;
    color: #999;
}

.current-value {
    font-size: 20px;
    font-weight: 700;
    color: #e91e63;
}

/* 尺寸输入框 */
.input-with-unit {
    display: flex;
    align-items: center;
    gap: 8px;
}

.size-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #f8bbd0;
    border-radius: 6px;
    font-size: 16px;
    background: white;
    color: #333;
    transition: all 0.3s ease;
}

.size-input:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.size-input::placeholder {
    color: #ccc;
}

.unit {
    font-size: 14px;
    color: #999;
    font-weight: 500;
    min-width: 30px;
}

.input-tip {
    font-size: 12px;
    color: #ff9800;
    margin-left: 10px;
}

.optional-inputs {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px dashed #f8bbd0;
}

.optional-inputs h4 {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

/* 服装类型卡片 */
.cloth-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.cloth-type-card {
    background: white;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.cloth-type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.15);
    border-color: #f8bbd0;
}

.cloth-type-card.selected {
    border-color: #e91e63;
    background: linear-gradient(135deg, #fce4ec, #fff);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.25);
}

.cloth-type-name {
    font-size: 16px;
    font-weight: 600;
    color: #e91e63;
    margin-bottom: 8px;
}

.cloth-type-desc {
    font-size: 12px;
    color: #999;
}

/* 偏好选择 */
.preference-section {
    margin-bottom: 20px;
}

.preference-section h4 {
    font-size: 15px;
    color: #c2185b;
    margin-bottom: 12px;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 16px;
    background: white;
    border-radius: 6px;
    border: 2px solid #f8bbd0;
    transition: all 0.3s ease;
}

.radio-label:hover {
    border-color: #e91e63;
    background: #fce4ec;
}

.radio-input {
    margin-right: 8px;
    cursor: pointer;
    accent-color: #e91e63;
}

.radio-text {
    font-size: 14px;
    color: #555;
}

.radio-input:checked + .radio-text {
    color: #e91e63;
    font-weight: 600;
}

/* 结果卡片样式 */
.result-main {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 25px;
    border: 3px solid #e91e63;
}

.result-size {
    text-align: center;
    margin-bottom: 25px;
}

.result-size-title {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.result-size-value {
    font-size: 48px;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 5px;
}

.result-size-number {
    font-size: 32px;
    color: #9c27b0;
    font-weight: 600;
}

.result-data {
    background: white;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.result-data h4 {
    font-size: 16px;
    color: #c2185b;
    margin-bottom: 15px;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.data-item {
    font-size: 14px;
    color: #555;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 6px;
}

.result-reason {
    background: white;
    border-radius: 6px;
    padding: 20px;
}

.result-reason h4 {
    font-size: 16px;
    color: #c2185b;
    margin-bottom: 12px;
}

.result-reason p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.alternative-sizes {
    margin-top: 25px;
}

.alternative-sizes h3 {
    font-size: 18px;
    color: #c2185b;
    margin-bottom: 15px;
}

.alt-size-card {
    background: white;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #ff9800;
}

.alt-size-name {
    font-size: 16px;
    font-weight: 600;
    color: #e91e63;
    margin-bottom: 8px;
}

.alt-size-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.size-chart {
    margin-top: 25px;
}

.size-chart h3 {
    font-size: 18px;
    color: #c2185b;
    margin-bottom: 15px;
}

.size-table {
    width: 100%;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.size-table table {
    width: 100%;
    border-collapse: collapse;
}

.size-table th {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.size-table td {
    padding: 12px;
    text-align: center;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.size-table tr:last-child td {
    border-bottom: none;
}

.size-table tr:hover td {
    background: #fce4ec;
}

/* 手机版优化 */
@media (max-width: 768px) {
    .guide-content {
        grid-template-columns: 1fr;
    }
    
    .cloth-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .data-grid {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .result-size-value {
        font-size: 36px;
    }
    
    .result-size-number {
        font-size: 24px;
    }
}

/* 色彩分类 */
.color-category {
    margin-bottom: 20px;
    border: none;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.08);
}

.category-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #c2185b;
    font-size: 15px;
    transition: all 0.3s ease;
}

.category-header:hover {
    background: linear-gradient(135deg, #f8bbd0, #fce4ec);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.category-header.active .toggle-icon {
    transform: rotate(180deg);
}

/* 色块网格 */
.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff, #fefefe);
    border: none;
}

.color-item {
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.color-item:hover {
    transform: translateY(-5px);
}

.color-item.selected .color-block {
    border: 4px solid #e91e63;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5);
    transform: scale(1.15);
}

.color-block {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    margin: 0 auto 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.color-name {
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

.color-item.selected .color-name {
    color: #e91e63;
    font-weight: 600;
}

/* 当前选择显示 */
.selected-color-display {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #c2185b;
}

#selectedColorPreview {
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-block {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid white;
}

.preview-name {
    font-size: 18px;
    color: #e91e63;
}

/* 场景分类 */
.scene-category {
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 6px;
    background: linear-gradient(135deg, #fef5f8, #ffffff);
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.06);
}

.scene-category:nth-child(1) {
    background: linear-gradient(135deg, #e3f2fd, #f5f9ff);
}

.scene-category:nth-child(2) {
    background: linear-gradient(135deg, #fce4ec, #fff5f7);
}

.scene-category:nth-child(3) {
    background: linear-gradient(135deg, #f3e5f5, #faf5fc);
}

.scene-category:nth-child(4) {
    background: linear-gradient(135deg, #fff9e6, #fffef5);
}

.scene-category-title {
    font-size: 16px;
    font-weight: 600;
    color: #c2185b;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    border-left: 4px solid #e91e63;
    display: inline-block;
}

/* 场景卡片 */
.scene-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.scene-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    padding: 20px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(233, 30, 99, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.scene-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.2);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(233, 30, 99, 0.3);
}

.scene-card.selected {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    transform: translateY(-2px);
    border-color: #e91e63;
}

.scene-card.selected .scene-name {
    color: white;
}

.scene-card.selected .scene-desc {
    color: rgba(255, 255, 255, 0.9);
}

.scene-name {
    font-size: 15px;
    font-weight: 600;
    color: #e91e63;
    margin-bottom: 6px;
}

.scene-desc {
    font-size: 12px;
    color: #999;
}

/* 特征选择增强 */
.radio-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    padding: 12px 16px;
    background: white;
    border-radius: 6px;
    border: 2px solid #f8bbd0;
    transition: all 0.3s ease;
    min-width: 140px;
}

.radio-label:hover {
    border-color: #e91e63;
    background: #fce4ec;
}

.radio-input:checked + .radio-text {
    color: #e91e63;
    font-weight: 600;
}

.radio-desc {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
    line-height: 1.4;
}

.feature-section {
    margin-bottom: 25px;
}

.feature-section h4 {
    font-size: 15px;
    color: #c2185b;
    margin-bottom: 15px;
    font-weight: 600;
}

/* 结果摘要 */
.result-summary {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border-radius: 6px;
    margin-bottom: 30px;
    border: none;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.08);
}

.summary-item {
    font-size: 15px;
    color: #555;
}

.summary-item strong {
    color: #e91e63;
    font-weight: 600;
}

/* 配色方案卡片 */
.scheme-card {
    background: linear-gradient(135deg, #fff9fb, #ffffff);
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 25px;
    border: none;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
}

.scheme-card:hover {
    background: linear-gradient(135deg, #fef5f8, #ffffff);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.15);
    transform: translateY(-2px);
}

.scheme-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    border-radius: 6px;
    margin: -10px -10px 20px -10px;
}

.scheme-title {
    font-size: 20px;
    font-weight: 600;
    color: #c2185b;
}

.scheme-rating {
    font-size: 18px;
    color: #ff9800;
}

/* 色块预览 */
.color-preview {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f4ff, #fef5f8);
    border-radius: 6px;
    border: none;
}

.preview-item {
    flex: 1;
    text-align: center;
}

.preview-color-block {
    width: 100%;
    height: 80px;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.preview-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.preview-color-name {
    font-size: 13px;
    color: #999;
}

/* 配色信息区域 */
.scheme-info {
    margin-bottom: 20px;
}

.info-section {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(248, 249, 250, 0.5);
    border-radius: 6px;
    border: none;
}

.info-title {
    font-size: 15px;
    font-weight: 600;
    color: #c2185b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-content {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    padding-left: 10px;
    margin-top: 8px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
}

/* 评分指标 */
.rating-bars {
    margin-top: 15px;
}

.rating-item {
    margin-bottom: 12px;
}

.rating-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 13px;
    color: #666;
}

.rating-bar {
    height: 8px;
    background: rgba(240, 240, 240, 0.8);
    border-radius: 6px;
    overflow: hidden;
    border: none;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #e91e63, #ad1457);
    border-radius: 6px;
    transition: width 0.5s ease;
}

/* 搭配建议区域 */
.outfit-suggestion {
    background: linear-gradient(135deg, #fff9e6, #fffef9);
    border-radius: 6px;
    padding: 20px;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.1);
}

.outfit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.outfit-item {
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    font-size: 14px;
    color: #555;
    border: none;
}

.outfit-label {
    font-weight: 600;
    color: #f57c00;
    margin-bottom: 5px;
}

/* 注意事项 */
.warning-box {
    background: linear-gradient(135deg, #ffebee, #fff5f5);
    border-radius: 6px;
    padding: 15px;
    border: none;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.1);
}

.warning-box .info-title {
    color: #d32f2f;
}

.warning-box .info-content {
    color: #c62828;
}

/* 手机版优化 */
@media (max-width: 768px) {
    .section-card {
        padding: 15px 12px;
        margin-bottom: 15px;
        border-radius: 6px;
    }
    
    .section-header {
        margin-bottom: 15px;
    }
    
    .section-header h2 {
        font-size: 16px;
    }
    
    .color-grid {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 8px;
        padding: 12px;
    }
    
    .color-block {
        width: 50px;
        height: 50px;
    }
    
    .color-name {
        font-size: 11px;
    }
    
    .scene-category {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .scene-category-title {
        font-size: 14px;
        padding: 8px 12px;
        margin-bottom: 10px;
    }
    
    .scene-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .scene-card {
        padding: 15px 8px;
    }
    
    .scene-name {
        font-size: 13px;
    }
    
    .scene-desc {
        font-size: 11px;
    }
    
    .color-preview {
        flex-direction: column;
        padding: 15px 12px;
    }
    
    .outfit-grid {
        grid-template-columns: 1fr;
    }
    
    .scheme-card {
        padding: 15px 12px;
        margin-bottom: 15px;
    }
    
    .scheme-header {
        margin: -5px -5px 15px -5px;
        padding: 12px 15px;
    }
    
    .scheme-title {
        font-size: 16px;
    }
    
    .radio-group {
        gap: 8px;
    }
    
    .radio-label {
        padding: 10px 12px;
        min-width: auto;
    }
    
    .feature-section h4 {
        font-size: 14px;
    }
    
    .selected-color-display {
        padding: 15px 12px;
        font-size: 14px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-card {
    animation: fadeInUp 0.5s ease-out;
}

.scheme-card {
    animation: fadeInUp 0.4s ease-out;
}
