/* 试用卡片样式 */
.trial-card {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    text-align: center;
}

/* 价格标签样式 */
.price-tag {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6b6b;
    margin: 1rem 0;
}

.price-period {
    font-size: 1rem;
    color: #999;
    margin-bottom: 2rem;
}

/* 功能列表样式 */
.features-list {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.features-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.features-list li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 限制说明样式 */
.trial-limits {
    background: #fff3f3;
    border: 1px solid #ffcccc;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 3rem;
}

.trial-limits h3 {
    color: #dc3545;
    margin-bottom: 1rem;
}

.limits-list {
    list-style: none;
    text-align: left;
}

.limits-list li {
    margin-bottom: 0.5rem;
    color: #666;
}

.limits-list li:before {
    content: "⚠";
    margin-right: 0.5rem;
    color: #dc3545;
}