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
| /**
| * 徐祥健<xuxj@hugeinfo.com.cn>
| * 2018年7月6日 11:43
| *
| */
|
|
| @import '../../conf/vars';
|
| .image-box-view {
| &-img {
| width:70px;
| height:70px;
| background-size:70px 70px;
| position: relative;
| }
| &-info {
| color: rgb(255, 255, 255);
| background-color: rgba(0,0,0,0.4);
| position: absolute;
| bottom: 30px;
| width: 70px;
| text-align: left;
| padding: 0 12px;
| }
| &-text{
| text-align: center
| }
| }
|
|