Blame view

app/static/common/swiper.scss 1.06 KB
7820380e   “wangming”   1
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
45
46
47
48
49
50
  .swiper2 {
      width: 100%;
      height: 100%;
      position: relative;
  
      .swiper {
          width: 100%;
          height: 100%;
  
          // margin-left: 21px;
          .swiper-pagination {
              width: 100px;
              display: flex;
              position: absolute;
              bottom: 33px;
              left: 50%;
              margin-left: -50px;
              flex-direction: row;
              justify-content: space-between;
  
              .swiper-pagination-bullet {
                  width: 26.89px;
                  height: 4px;
                  background-color: black;
                  border-radius: 15px 15px 15px 15px;
              }
  
              .swiper-pagination-bullet-active {
                  background: #FFFFFF;
              }
          }
      }
  
      .swiper-wrapper {
          width: 100%;
          height: 100%;
  
          .swiper-slide {
              width: 100%;
              height: 100%;
  
              img {
                  display: block;
                  width: 100%;
                  height: 100%;
                  border-radius: 10px 10px 10px 10px;
              }
          }
      }
  }