You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
485 B
27 lines
485 B
|
|
page {
|
|
background-color: #ffffff;
|
|
}
|
|
.wanlian {
|
|
display: flex;
|
|
align-items: center; /* 垂直居中 */
|
|
justify-content: center; /* 水平居中 */
|
|
flex-direction: column;
|
|
padding-top: 80rpx;
|
|
padding-bottom: 60rpx;
|
|
}
|
|
.wanlian > image {
|
|
height: 130rpx;
|
|
width: 130rpx;
|
|
}
|
|
.footer {
|
|
display: flex;
|
|
align-items: center; /* 垂直居中 */
|
|
justify-content: center; /* 水平居中 */
|
|
flex-direction: column;
|
|
position: fixed;
|
|
bottom: 100rpx;
|
|
font-size: 24rpx;
|
|
width: 100%;
|
|
}
|
|
|
|
|