You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
1.8 KiB
112 lines
1.8 KiB
/* pages/list/movieticket/list/cinema/index.wxss */
|
|
page {
|
|
background: #f0f0f0;
|
|
}
|
|
|
|
.banner-container{
|
|
width: 100%;
|
|
height: 253rpx;
|
|
margin: 30rpx 0;
|
|
}
|
|
.banner-item{
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: center;
|
|
}
|
|
.banner-box{
|
|
width: 90%;
|
|
height: 100%;
|
|
}
|
|
.banner-img{
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 10rpx;
|
|
}
|
|
.movie-info {
|
|
text-align: center;
|
|
margin-bottom: 25rpx;
|
|
font-size: 27rpx;
|
|
color: #666;
|
|
}
|
|
.movie-title {
|
|
font-weight: 500;
|
|
font-size: 35rpx;
|
|
color: #000;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
.dates-list {
|
|
overflow-y: auto;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 25rpx;
|
|
border-bottom: 1rpx solid #ccc;
|
|
}
|
|
.date-item {
|
|
position: relative;
|
|
font-size: 27rpx;
|
|
color: #666;
|
|
line-height: 75rpx;
|
|
margin-right: 65rpx;
|
|
flex-shrink: 0;
|
|
}
|
|
.date-item.active {
|
|
font-weight: 500;
|
|
font-size: 31rpx;
|
|
color: #000;
|
|
}
|
|
.date-item.active::after {
|
|
position: absolute;
|
|
display: block;
|
|
content: "!";
|
|
font-size: 0;
|
|
width: 46rpx;
|
|
height: 5rpx;
|
|
background: #0B898E;
|
|
border-radius: 3rpx;
|
|
left: 50%;
|
|
margin-left: -23rpx;
|
|
bottom: 0;
|
|
}
|
|
.movie-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0 23rpx;
|
|
height: 173rpx;
|
|
background: white;
|
|
border-radius: 13rpx;
|
|
color: #666;
|
|
font-size: 27rpx;
|
|
margin: 30rpx 25rpx;
|
|
}
|
|
.movie-item .price {
|
|
color: #D62828;
|
|
font-weight: 500;
|
|
font-size: 33rpx;
|
|
flex: 1;
|
|
margin-bottom: 50rpx;
|
|
}
|
|
.movie-item .price text{
|
|
font-size: 24rpx;
|
|
font-weight: 400;
|
|
}
|
|
.movie-item .btn {
|
|
width: 123rpx;
|
|
line-height: 52rpx;
|
|
background: #D62828;
|
|
border-radius: 26rpx;
|
|
text-align: center;
|
|
color: #fff;
|
|
font-weight: 500;
|
|
}
|
|
.movie-item .time {
|
|
color: #000;
|
|
font-size: 35rpx;
|
|
font-weight: 500;
|
|
margin-bottom: 25rpx;
|
|
}
|
|
.movie-item .type {
|
|
font-size: 29rpx;
|
|
color: #333;
|
|
margin-bottom: 25rpx;
|
|
}
|