body{
    background-color: #fff;
}
/* 影院选择页面样式 */
.cinema-container {
    /* background-color: #f5f5f5; */
    flex: 1;
    margin-top: 20px;
}

/* 筛选区域容器 */
.filter-section {
    background-color: #fff;
    padding: 5px 30px;
    margin-top: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* 筛选区域 */
.filter-container {
    margin-bottom: 10px;
}

.filter-item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px dashed #e5e5e5;
}

.filter-item:last-child {
    border-bottom: none;
}

.filter-name {
    width: 70px;
    color: #999;
    flex-shrink: 0;
    font-size: 14px;
}

.filter-values {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
}

.filter-values a {
    margin-right: 20px;
    margin-bottom: 10px;
    color: #333;
    padding: 0 10px;
    height: 26px;
    line-height: 26px;
    border-radius: 13px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.filter-values a:hover, .filter-values a.active {
    background-color: #ef4238;
    color: #fff;
}

.date-filter a {
    min-width: 100px;
    text-align: center;
}

/* 影院列表区域 */
.cinema-list-section {
    background-color: #fff;
    margin-top: 20px;
    padding: 20px 0;
    /* box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); */
}

/* 影院列表 */
.cinema-list {
    margin-bottom: 40px;
}

.cinema-item {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px dashed #e5e5e5;
}

.cinema-item:last-child {
    border-bottom: none;
}

.cinema-info {
    flex: 1;
    padding-right: 30px;
}

.cinema-name {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.cinema-address {
    color: #999;
    margin-bottom: 10px;
    font-size: 14px;
}

.cinema-tags {
    margin-bottom: 10px;
}

.tag {
    display: inline-block;
    border: 1px solid #589daf;
    color: #589daf;
    padding: 0 5px;
    height: 18px;
    line-height: 16px;
    border-radius: 2px;
    font-size: 12px;
    margin-right: 5px;
}

.cinema-discount {
    display: flex;
    align-items: center;
}

.discount-card {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    background-color: #f90;
    color: #fff;
    border-radius: 2px;
    font-size: 12px;
    margin-right: 5px;
}

.discount-text {
    color: #999;
    font-size: 12px;
}

/* 价格和距离信息区域 - 调整宽度和右侧边距 */
.cinema-price-info {
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.price {
    /* margin-bottom: 10px; */
    text-align: center;
}

.price-number {
    font-size: 20px;
    color: #ef4238;
}

.price-text {
    font-size: 12px;
    color: #999;
}

.distance {
    color: #999;
    font-size: 12px;
}

/* 购票按钮区域 - 调整宽度 */
.cinema-action {
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-buy {
    display: inline-block;
    width: 90px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #ef4238;
    color: #fff;
    border-radius: 15px;
    font-size: 14px;
    box-shadow: 0 2px 10px -2px #f03d37;
}

.btn-buy:hover {
    background-color: #e53935;
    color: #fff;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.page-prev, .page-next {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    margin: 0 5px;
}

.page-prev.disabled, .page-next.disabled {
    color: #c5c5c5;
    cursor: not-allowed;
}

.page-num {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    margin: 0 5px;
}

.page-num.active {
    background-color: #ef4238;
    color: #fff;
    border-color: #ef4238;
}

.page-ellipsis {
    margin: 0 5px;
}

/* 影院列表标题区域 */
.cinema-list-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 10px 15px 10px;
    margin-bottom: 0;
    border-bottom: 1px solid #e5e5e5;
}

.cinema-count {
    color: #333;
    font-size: 14px;
}

.count-number {
    color: #ef4238;
    font-weight: bold;
    margin: 0 3px;
}

.cinema-sort {
    display: flex;
    align-items: center;
}

.sort-item {
    color: #999;
    font-size: 14px;
    padding: 0 10px;
}

.sort-item.active {
    color: #ef4238;
}

.sort-item:hover {
    color: #ef4238;
}

.sort-divider {
    color: #e5e5e5;
    font-size: 12px;
}

/* 区域标题样式 */
.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-left: 10px;
}

.title-line {
    width: 4px;
    height: 20px;
    background-color: #ef4238;
    margin-right: 10px;
    border-radius: 2px;
}

.section-title h2 {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    margin-right: 15px;
}

.section-title .cinema-count {
    color: #999;
    font-size: 14px;
    font-weight: normal;
}

.section-title .count-number {
    color: #ef4238;
    font-weight: bold;
    margin: 0 3px;
}
