correction.wxss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /* pages/home/correction/correction.wxss */
  2. page{
  3. background: #F7F7F7;
  4. }
  5. .choose-error{
  6. width: 750rpx;
  7. background: #fff;
  8. margin: 20rpx 0;
  9. }
  10. .choose-error>view:nth-child(1){
  11. width: 690rpx;
  12. font-family: PingFangSC-Semibold;
  13. font-size: 34rpx;
  14. font-weight: 700;
  15. color: #333333;
  16. padding: 30rpx;
  17. }
  18. .choose-error>view:nth-child(2){
  19. width: 690rpx;
  20. display: flex;
  21. flex-direction: row;
  22. padding: 0 30rpx 30rpx;
  23. }
  24. .choose-error>view:nth-child(2)>view:nth-child(1),
  25. .choose-error>view:nth-child(2)>view:nth-child(2){
  26. width: 160rpx;
  27. height:64rpx;
  28. line-height: 64rpx;
  29. font-size: 28rpx;
  30. color: #000;
  31. text-align: center;
  32. background: #F6F7F8;
  33. border: 3rpx solid #F6F7F8;
  34. border-radius: 4rpx;
  35. }
  36. .choose-error>view:nth-child(2)>view:nth-child(2){
  37. margin-left: 32rpx;
  38. }
  39. .content{
  40. width: 690rpx;
  41. background: #fff;
  42. padding: 30rpx;
  43. }
  44. .content>view:nth-child(1){
  45. font-family: PingFangSC-Medium;
  46. font-size: 34rpx;
  47. font-weight: 700;
  48. color: #333333;
  49. padding-bottom: 30rpx;
  50. margin-bottom: 30rpx;
  51. border-bottom: 1rpx solid #EEEEEE;
  52. }
  53. .content>textarea:nth-child(2){
  54. width: 690rpx;
  55. height: 310rpx;
  56. font-size: 28rpx;
  57. overflow: hidden;
  58. position: relative;
  59. }
  60. .currentWordNumber{
  61. font-size: 28rpx;
  62. color: gray;
  63. position: absolute;
  64. right: 0rpx;
  65. bottom: 0rpx;
  66. }
  67. .submit{
  68. width: 690rpx;
  69. height: 88rpx;
  70. line-height: 88rpx;
  71. margin: 30rpx;
  72. font-size: 34rpx;
  73. text-align: center;
  74. color: #fff;
  75. background: #CCCCCC;
  76. border-radius: 10rpx;
  77. }