1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
| @import './skeleton/index.skeleton.scss';
|
| .index-container {
| position: relative;
|
| // 首页背景图
| .window-bgc {
| height: 200rpx;
| position: absolute;
| width: 100%;
| background-color: #f3514f;
| border-radius: 0 0 20rpx 20rpx;
| }
|
| .adver {
| display: flex;
| width: 100%;
| padding: 10rpx 8rpx;
| background-color: #fff;
| box-sizing: border-box;
| border-radius: 18rpx;
| overflow: hidden;
|
| .adver-left {
| width: 50%;
| padding: 8rpx 8rpx 0rpx 8rpx;
| }
|
| .adver-right {
| width: 50%;
| display: flex;
| flex-direction: column;
| padding: 8rpx 8rpx 0rpx 8rpx;
|
| view:last-child {
| padding-top: 8rpx;
| }
| }
|
| image {
| width: 100%;
| }
| }
| }
|
|