| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /* 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 {
- padding: 10rpx 20rpx;
- border-radius: 20rpx;
- font-size: 35rpx;
- align-self: center;
- margin-right: 20rpx;
- }
- .top-btn {
- margin: 0rpx !important;
- padding: 10rpx 20rpx !important;
- border-radius: 20rpx;
- font-size: 35rpx;
- font-weight: normal !important;
- }
- .btn {
- display: flex;
- justify-content: center;
- margin-bottom: 20rpx;
- }
|