123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- page {
- min-height: calc(100vh - 44px);
- background-color: #f2f2f2;
- }
- .content {
- padding: 26rpx 30rpx;
- &-list {
- padding: 40rpx 30rpx 0;
- background-color: #fff;
- border-radius: 10rpx;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- margin-bottom: 20rpx;
- &-item {
- width: calc(50% - 11rpx);
- margin-bottom: 38rpx;
- &-image {
- margin-bottom: 6rpx;
- position: relative;
- .image {
- border-radius: 8rpx !important;
- border: solid 1px #666;
- padding: 5rpx;
- }
- .play-btn {
- position: absolute;
- top: 50%;
- left: 50%;
- margin-left: -35rpx;
- margin-top: -35rpx;
- }
- }
- &-title {
- font-size: 28rpx;
- color: #3f3f3f;
- margin-bottom: 6rpx;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- -o-text-overflow: ellipsis;
- }
- &-subtitle {
- font-size: 22rpx;
- color: #a2a2a2;
- }
- }
- }
- }
|