/* 价格查询页面样式 */

.page-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.page-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

/* 价格列表 */
.price-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.price-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #008000;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.price-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.price-tag {
    background: linear-gradient(135deg, #ff9e1b 0%, #ff8c00 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
}

.price-body {
    color: #666;
}

.price-description {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price-meta {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.price-meta span {
    font-weight: 500;
    color: #333;
}

/* 价格说明 */
.price-info {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.price-info h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.3rem;
}

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

.price-info li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

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

/* 空状态和错误状态 */
.empty-state,
.error-state {
    text-align: center;
    padding: 3rem;
    color: #666;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .price-list {
        grid-template-columns: 1fr;
    }

    .price-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

