correcting.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* student/pages/workDetail.wxss */
  2. .correct-detail {
  3. position: relative;
  4. display: flex;
  5. flex-direction: column;
  6. justify-content: flex-start;
  7. align-items: center;
  8. padding: 0 10px;
  9. height: 100vh;
  10. }
  11. .correct-detail .detail-title {
  12. display: flex;
  13. justify-content: space-between;
  14. width: 95%;
  15. /* padding: 10px; */
  16. padding: 10px 15px 0 15px;
  17. font-size: 14px;
  18. }
  19. .correct-detail .detail-title .van-button {
  20. border-radius: 5px;
  21. margin-top: 10px;
  22. }
  23. .correct-detail .detail-title text {
  24. width: 80%;
  25. white-space: normal;
  26. overflow: hidden;
  27. text-overflow: ellipsis;
  28. }
  29. .correct-detail .work-body {
  30. width: 100%;
  31. }
  32. .correct-detail .cell-style {
  33. border: 1px solid #333;
  34. }
  35. .img-content {
  36. display: flex;
  37. flex-direction: column;
  38. align-items: center;
  39. height: 78%;
  40. width: 95%;
  41. background-color: #f8f9fb;
  42. margin-top: 10px;
  43. }
  44. .img-content .img {
  45. margin-top: 60rpx;
  46. width: 90%;
  47. height: 75%;
  48. }
  49. .teacher-text {
  50. width: 90%;
  51. margin-top: 20px;
  52. }
  53. .title-cfg {
  54. display: flex;
  55. flex-direction: column;
  56. width:200px;
  57. padding-left: 35px;
  58. padding-top: 10px;
  59. }
  60. .title-cfg text:last-child {
  61. margin-top:10px;
  62. color: #999;
  63. }
  64. .title-cfg:first-child {
  65. font-size: 16px;
  66. }