.rate-page {
    padding: 15px;
    background: var(--bg-color);
    min-height: 100vh;
}

.header {
    text-align: center;
    margin-bottom: 15px;
    padding: 15px 0;
    background: var(--primary-color);
    border-radius: 8px;
    color: var(--white);
}

.title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 6px;
}

.subtitle {
    font-size: 13px;
    opacity: 0.9;
}

.property-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.property-item {
    background: var(--white);
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.property-name {
    font-size: 16px;
    font-weight: bold;
}

.property-desc {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.property-desc:last-child {
    border-bottom: none;
}

.property-desc div:first-child {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 4px;
}

.property-desc div:last-child {
    font-size: 13px;
    color: var(--text-color-light);
    line-height: 1.6;
    white-space: pre-wrap;
}

/* 响应式设计 */
@media screen and (min-width: 768px) {
    .rate-page {
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
    }

    .header {
        padding: 20px 0;
    }

    .title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 16px;
    }

    .property-item {
        padding: 16px;
    }

    .property-name {
        font-size: 18px;
    }

    .property-desc div:first-child {
        font-size: 16px;
    }

    .property-desc div:last-child {
        font-size: 14px;
    }
}
