1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /* pages/home/correction/correction.wxss */
- page{
- background: #F7F7F7;
- }
- .choose-error{
- width: 750rpx;
- background: #fff;
- margin: 20rpx 0;
- }
- .choose-error>view:nth-child(1){
- width: 690rpx;
- font-family: PingFangSC-Semibold;
- font-size: 34rpx;
- font-weight: 700;
- color: #333333;
- padding: 30rpx;
- }
- .choose-error>view:nth-child(2){
- width: 690rpx;
- display: flex;
- flex-direction: row;
- padding: 0 30rpx 30rpx;
- }
- .choose-error>view:nth-child(2)>view:nth-child(1),
- .choose-error>view:nth-child(2)>view:nth-child(2){
- width: 160rpx;
- height:64rpx;
- line-height: 64rpx;
- font-size: 28rpx;
- color: #000;
- text-align: center;
- background: #F6F7F8;
- border: 3rpx solid #F6F7F8;
- border-radius: 4rpx;
- }
- .choose-error>view:nth-child(2)>view:nth-child(2){
- margin-left: 32rpx;
- }
- .content{
- width: 690rpx;
- background: #fff;
- padding: 30rpx;
- }
- .content>view:nth-child(1){
- font-family: PingFangSC-Medium;
- font-size: 34rpx;
- font-weight: 700;
- color: #333333;
- padding-bottom: 30rpx;
- margin-bottom: 30rpx;
- border-bottom: 1rpx solid #EEEEEE;
- }
- .content>textarea:nth-child(2){
- width: 690rpx;
- height: 310rpx;
- font-size: 28rpx;
- overflow: hidden;
- position: relative;
- }
- .currentWordNumber{
- font-size: 28rpx;
- color: gray;
- position: absolute;
- right: 0rpx;
- bottom: 0rpx;
- }
- .submit{
- width: 690rpx;
- height: 88rpx;
- line-height: 88rpx;
- margin: 30rpx;
- font-size: 34rpx;
- text-align: center;
- color: #fff;
- background: #CCCCCC;
- border-radius: 10rpx;
- }
|