39 lines
568 B
Plaintext
39 lines
568 B
Plaintext
/* pages/story/story.wxss */
|
|
|
|
.story {
|
|
padding: 32rpx;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.story .story-section {
|
|
margin: 30rpx 0;
|
|
}
|
|
|
|
.story .story-title {
|
|
margin: 30rpx;
|
|
text-align: center;
|
|
font-weight: 700;
|
|
font-size: 48rpx;
|
|
}
|
|
|
|
.story .story-section-title {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.btn-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
margin: 60rpx auto;
|
|
}
|
|
|
|
.btn-group .btn {
|
|
flex: 1;
|
|
padding: 30rpx;
|
|
border: 1px solid #409eff;
|
|
border-radius: 16rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
|