| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /* 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;
- border-bottom-style: solid;
- border-bottom-width: 1rpx;
- border-bottom-color: #C5CAE9;
- }
- .title {
- margin: 20rpx;
- font-size: 40rpx;
- font-weight: 800;
- }
- .question {
- margin: 20rpx;
- font-size: 35rpx;
- line-height: 50rpx;
- }
- .answer {
- margin: 20rpx;
- padding: 20rpx;
- width: 600rpx;
- border-radius: 10rpx;
- font-size: 35rpx;
- line-height: 50rpx;
- align-self: center;
- }
- .save-btn {
- margin: 20rpx;
- padding: 10rpx 20rpx;
- border-radius: 20rpx;
- font-size: 35rpx;
- align-self: center;
- }
|