.price-banner {
    background: linear-gradient(135deg, #4e54c8, #1E9FFF);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.price-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 10px;
}

.price-subtitle {
    font-size: 16px;
    opacity: 0.8;
}

.notice-text {
    color: #ff6b6b;
    font-weight: 500;
}

.price-table {
    overflow-x: auto;
}

.layui-table {
    margin: 0;
}

.layui-table th {
    background-color: #f8f8f8;
    text-align: center;
    font-weight: 500;
}

.layui-table td {
    text-align: center;
}

.ad-section {
    background: linear-gradient(135deg, #4e54c8, #1E9FFF);
    padding: 0;
    overflow: hidden;
}

.ad-banner {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ad-text {
    color: #fff;
}

.ad-text h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.ad-text p {
    font-size: 16px;
    opacity: 0.9;
}

.ad-banner .layui-btn {
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
    font-size: 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff9f43, #ff6b6b);
    color: #fff;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.ad-banner .layui-btn:hover {
    opacity: 0.9;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* 添加表格文字颜色样式 */
.layui-table td .price {
    color: #ff6b6b;  /* 红色 */
    font-weight: 500;
}

.layui-table td .free {
    color: #52c41a;  /* 绿色 */
    font-weight: 500;
}

/* 分类行样式 */
.layui-table .category-row td {
    font-weight: bold;
    font-size: 16px;
    background-color: #f0f2f5;
    padding: 15px;
    color: #333;
    border-left: 4px solid #1E9FFF;
    text-align: left !important;
}

.category-name {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    border-left: 4px solid #1E9FFF;
    text-align: left;
    background: #fff !important;
    padding: 9px 15px !important;
}