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
| .share-wrap {
| min-height: 84px;
| position: relative;
| background: #ffffff;
| overflow: hidden;
|
| >.anticon-tool {
| position: absolute;
| z-index: 3;
| font-size: 16px;
| right: 1px;
| top: 1px;
| cursor: pointer;
| padding: 5px;
| background: rgba(255, 255, 255, 0.55);
| }
| .share-image {
| background: #ffffff;
| overflow: hidden;
| background-repeat: no-repeat;
| background-size: cover;
| background-position: center;
| padding-top: 100%;
| }
| }
|
| .share-wrap::after {
| display: block;
| content: ' ';
| clear: both;
| }
| .share-wrap:hover {
| z-index: 1;
| box-shadow: 0px 0px 4px #1890ff;
| }
|
|