_banner.scss
1.21 KB
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
51
52
53
54
55
56
57
58
59
60
/*
* @description: banner css
* @author: lore-w
* @date: 2015-4-24
*/
//banner
.banner {
width: 100%;
//height: 220px;
margin-bottom: 15px;
position: relative;
.swiper-container, .swiper-slide, img {
width: 320px;
height: 200px;
display: block;
overflow: hidden;
}
.swiper-slide {
float: left;
a {
display: block;
}
}
.pagination-wrap {
position: relative;
margin-top: 10px;
text-align: center;
}
.pagination {
height: auto;
overflow: hidden;
display: inline-block;
margin: 0 auto;
}
}
@each $channel in default, fashion, beauty, sport, lifestyle, video {
##{$channel} {
.banner {
.swiper-pagination-bullet {
@include retina-sprite($icons, #{$channel}-normal);
margin-right: 5px;
float: left;
opacity: 1;
&:nth-last-of-type(1) {
margin-right: 0;
}
&.swiper-pagination-bullet-active {
@include retina-sprite($icons, #{$channel}-active);
}
}
}
}
}