teacherFault.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /* component/teacher/teacherFault/teacherFault.wxss */
  2. @import "../../../pages/register/register.wxss";
  3. @import "../../../pages/login/login.wxss";
  4. .page {
  5. display: flex;
  6. flex-direction: column;
  7. height: 100%;
  8. align-items: center;
  9. justify-content: flex-start;
  10. }
  11. .toptitle {
  12. display: flex;
  13. flex-direction: row;
  14. width: 100%;
  15. justify-content: space-between;
  16. align-items: center;
  17. }
  18. .toptitle_left {
  19. margin-left: 36rpx;
  20. font-weight: 600;
  21. font-size: 36rpx;
  22. color: #474747;
  23. }
  24. .toptitle_right {
  25. width: 197rpx;
  26. height: 56rpx;
  27. background-color: #f5a725;
  28. border-radius: 13rpx;
  29. display: flex;
  30. flex-direction: row;
  31. justify-content: center;
  32. align-items: center;
  33. margin-right: 14rpx;
  34. }
  35. .toptitle_right_text {
  36. font-size: 25rpx;
  37. font-weight: 400;
  38. color: #ffffff;
  39. line-height: 31px;
  40. }
  41. .toptitle_right_icon {
  42. width: 24rpx;
  43. height: 14rpx;
  44. margin-left: 20rpx;
  45. }
  46. .scrollview {
  47. margin-top: 25rpx;
  48. flex: 1;
  49. height: 0;
  50. width: 100%;
  51. margin-bottom: 152rpx;
  52. }
  53. .scroll_item_bg {
  54. display: flex;
  55. justify-content: center;
  56. }
  57. /* 故障报修样式 */
  58. .fault_info_textarea {
  59. font-size: 30rpx;
  60. width: 580rpx;
  61. word-wrap: break-word;
  62. white-space: pre-line;
  63. height: 84rpx;
  64. margin-top: 52rpx;
  65. background-color: #f1f1f1;
  66. }
  67. .fault_info_scroll {
  68. width: 580rpx;
  69. display: flex;
  70. flex-direction: row;
  71. white-space: nowrap;
  72. margin-top: 25rpx;
  73. }
  74. .fault_info_layout {
  75. display: flex;
  76. justify-content: center;
  77. flex-direction: column;
  78. align-items: center;
  79. }
  80. .fault_info_scroll_item {
  81. width: 167rpx;
  82. height: 93rpx;
  83. margin-left: 10rpx;
  84. margin-right: 10rpx;
  85. }
  86. .submitFault_layout {
  87. width: 100;
  88. display: flex;
  89. margin-top: 150rpx;
  90. justify-content: center;
  91. align-items: center;
  92. }
  93. .submitFault {
  94. width: 327rpx;
  95. height: 73rpx;
  96. font-size: 30rpx;
  97. font-weight: 600;
  98. text-align: center;
  99. background-color: #7DB0FF;
  100. color: #FFFFFF;
  101. border-radius: 7rpx;
  102. }