101 lines
1.6 KiB
Plaintext
101 lines
1.6 KiB
Plaintext
/* pages/advertisement/index.wxss */
|
|
|
|
.adContainer {
|
|
/* margin-top: 240rpx; */
|
|
position: absolute;
|
|
width: 100%;
|
|
bottom: 35%;
|
|
}
|
|
|
|
|
|
.content {
|
|
width: 100%;
|
|
position: relative;
|
|
overflow: hidden;
|
|
background: #eee;
|
|
height: 100vh;
|
|
background-color: #F1F1F1;
|
|
}
|
|
|
|
.content-img {
|
|
width: 100%;
|
|
}
|
|
|
|
.content-top {
|
|
font-size: 20px;
|
|
color: #fff;
|
|
position: absolute;
|
|
top: 1%;
|
|
left: 3%;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.content-content {
|
|
width: 70%;
|
|
font-size: 48rpx;
|
|
font-family: Source Han Sans CN-Bold, Source Han Sans CN;
|
|
font-weight: bold;
|
|
color: #000;
|
|
position: absolute;
|
|
left: 18%;
|
|
top: 28%;
|
|
text-align: center;
|
|
}
|
|
|
|
.content-bot {
|
|
width: 100%;
|
|
text-align: center;
|
|
font-size: 16px;
|
|
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
|
|
font-weight: 500;
|
|
color: #000;
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 3%;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.content-gif {
|
|
text-align: center;
|
|
height: 60px;
|
|
width: 60%;
|
|
line-height: 60px;
|
|
animation: shake 0.9s infinite;
|
|
background: rgba(229, 63, 46);
|
|
display: block;
|
|
margin: 0 auto;
|
|
color: #fff;
|
|
position: absolute;
|
|
left: 23%;
|
|
transform: translateX(-50%);
|
|
bottom: 51%;
|
|
font-size: 22px;
|
|
border-radius: 15px;
|
|
letter-spacing: 1px;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.bjbj {
|
|
width: 100%;
|
|
height: 888px;
|
|
|
|
}
|
|
.adCustom {
|
|
position: absolute;
|
|
width: 100%;
|
|
top:10%;
|
|
height: 60px;
|
|
}
|
|
@keyframes shake {
|
|
0% {
|
|
transform: scale(1);
|
|
}
|
|
|
|
40% {
|
|
transform: scale(0.95);
|
|
}
|
|
|
|
100% {
|
|
transform: scale(1);
|
|
}
|
|
} |