king
2020-12-30 e003a8ee8843aa60b0b7135f413b2b99857acff9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.advert-wrap {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
 
  .tip {
    position: absolute;
    display: inline-block;
    top: 20px;
    right: 15px;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    padding: 5px 15px;
    font-size: 16px;
    border-radius: 15px;
  }
}