/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 414px;
    margin: 0 auto;
    background-color: #fff;
    min-height: 100vh;
}

/* 顶部轮播图 */
.banner {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 价格和标题 */
.price-title {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.price {
    font-size: 24px;
    color: #ff6699;
    font-weight: bold;
}

.event-title {
    font-size: 18px;
    font-weight: bold;
    margin: 8px 0;
}

/* 活动信息 */
.event-info {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.label {
    width: 60px;
    color: #999;
    flex-shrink: 0;
}

.value {
    flex: 1;
}

/* 活动福利 */
.benefit-section {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.benefit-content {
    font-size: 14px;
    line-height: 1.6;
}

.benefit-content p {
    margin-bottom: 8px;
}

.benefit-content p:last-child {
    margin-bottom: 0;
}

/* 出演嘉宾（新增“出演人员”标题样式） */
.guests-section {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.guests-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333;
}

.performers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.performer-item {
    background-color: #f8f8f8;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 13px;
}

.new-tag {
    color: #ff6699;
    font-size: 12px;
}

.birthday-sp {
    margin-top: 10px;
}

.sp-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.sp-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sp-item {
    background-color: #f0f8ff;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 13px;
}

/* 详情标题（粉色横杠样式） */
.detail-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.detail-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    position: relative;
    padding-bottom: 8px;
}

.detail-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #ff6699; /* 粉色横杠 */
    border-radius: 2px;
}

/* 详情内容（图片改为垂直排列，增加间距） */
.detail-content {
    padding: 15px;
}

.detail-images {
    display: flex;
    flex-direction: column; /* 垂直排列 */
    gap: 12px; /* 图片之间的垂直间距 */
    margin-bottom: 15px;
}

.image-item {
    width: 100%;
}

.detail-img {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16; /* 保持9:16比例 */
    object-fit: cover;
    border-radius: 8px;
}

.detail-text {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 10px;
}

.detail-text p {
    margin-bottom: 10px;
}

/* 平台声明 */
.disclaimer {
    padding: 15px;
    font-size: 12px;
    color: #999;
    text-align: center;
}
/* 返回按钮样式 */
.back-btn-container {
    padding: 10px 15px;
}

.back-btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: #fff;
    color: #ff6699;
    border: 1px solid #ff6699;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.back-btn-icon:hover {
    background-color: #fff0f5;
}

.btn-icon {
    font-size: 12px;
    font-weight: bold;
}