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
| .check-card-form-box {
| margin-top: 10px;
| margin-bottom: -10px;
| .card-cell {
| border: 1px solid #bcbcbc;
| border-radius: 4px;
| padding: 6px;
| margin-bottom: 12px;
| line-height: 1.5;
| transition: all 0.3s;
| cursor: pointer;
| span {
| display: block;
| overflow: hidden;
| text-overflow: ellipsis;
| white-space: nowrap;
| }
| }
| .card-cell:hover, .card-cell.active {
| border-color: #1890ff;
| background: #1890ff;
| span {
| color: #ffffff!important;
| }
| }
| .card-pic-cell {
| border: 1px solid #bcbcbc;
| border-radius: 4px;
| background-size: cover;
| background-position: center;
| margin-bottom: 12px;
| line-height: 1.5;
| cursor: pointer;
| }
| .card-pic-cell:hover, .card-pic-cell.active {
| border-color: #1890ff;
| box-shadow: 0px 0px 4px #1890ff;
| }
| }
|
|