init project

This commit is contained in:
limqhz
2020-06-21 16:27:58 +08:00
commit e8fe10b5fb
178 changed files with 9964 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
/* pages/questions/index.wxss */
.container {
padding: 20rpx;
padding-top: 150rpx;
min-height: calc(100vh - 170rpx);
}
.body {
background: #1a191e;
border-radius: 10rpx;
}
.body .cell {
overflow: hidden;
border-bottom: 2rpx solid #212025;
}
.body .cell .question {
display: flex;
justify-content: space-between;
align-items: center;
height: 90rpx;
padding: 0 20rpx;
color: #fff;
font-size: 24rpx;
}
.body .cell .question>image {
width: 22rpx;
height: 12rpx;
}
.body .cell .answer {
padding: 50rpx;
border-top: 2rpx solid #212025;
color: rgba(255, 255, 255, 0.6);
font-size: 22rpx;
line-height: 38rpx;
}