| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /* miniprogram/pages/publisherQuestion/publisherQuestion.wxss */
- .checkbox {
- transform: scale(0.8);
- margin-left: 10rpx;
- }
- .checkbox-group {
- width: 750rpx;
- margin-top: 30rpx;
- display: flex;
- justify-content: center;
- }
- .card {
- position: relative;
- display: flex;
- flex-direction: column;
- margin: 20rpx;
- background-color: #ffffff;
- border-radius: 28rpx;
- box-shadow: 5rpx 5rpx 8rpx 0rpx rgba(0, 0, 0, 0.16);
- }
- .title {
- margin: 20rpx 20rpx 20rpx 40rpx;
- font-size: 35rpx;
- }
- .question {
- margin: 0rpx 20rpx 0rpx 40rpx;
- font-size: 35rpx;
- line-height: 50rpx;
- }
- .answer {
- margin: 10rpx 20rpx 20rpx 20rpx;
- padding: 20rpx;
- width: 600rpx;
- border-radius: 10rpx;
- font-size: 35rpx;
- line-height: 50rpx;
- align-self: center;
- height: 100rpx;
- background-color: #EDEDED;
- }
- .save-btn {
- margin: 0rpx 10rpx 20rpx 10rpx;
- padding: 10rpx 20rpx;
- border-radius: 20rpx;
- font-size: 35rpx;
- align-self: center;
- }
|