workDetail.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /* student/pages/workDetail.wxss */
  2. .work-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. .work-detail .detail-title {
  12. display: flex;
  13. justify-content: space-between;
  14. width: 90%;
  15. padding: 10px;
  16. padding-left: 15px;
  17. padding-right: 15px;
  18. font-size: 14px;
  19. }
  20. .work-detail .detail-title .van-button {
  21. border-radius: 5px;
  22. }
  23. .work-detail .detail-title text {
  24. display: inline-block;
  25. width: 70%;
  26. white-space: nowrap;
  27. overflow: hidden;
  28. text-overflow: ellipsis;
  29. }
  30. .work-detail .work-body {
  31. width: 100%;
  32. }
  33. .work-detail .cell-style {
  34. border: 1px solid #333;
  35. }
  36. .work-detail .toWorkEdit {
  37. position: absolute;
  38. bottom: 30px;
  39. width: 70%;
  40. border-radius: 10px;
  41. }
  42. .wrapper {
  43. display: flex;
  44. align-items: center;
  45. justify-content: center;
  46. height: 100%;
  47. }
  48. .content {
  49. display: flex;
  50. flex-direction: column;
  51. justify-content: flex-start;
  52. align-items: center;
  53. width: 260px;
  54. padding: 30px 25px;
  55. background-color: #fff;
  56. border-radius: 20px;
  57. position: relative;
  58. }
  59. .content text {
  60. margin-bottom: 20px;
  61. }
  62. .content .body {
  63. max-height: 240px;
  64. }
  65. .content .close {
  66. position: absolute;
  67. top: 15px;
  68. right: 20px;
  69. }
  70. /* .work-body {
  71. display: flex;
  72. align-items: center;
  73. justify-content: flex-start;
  74. } */
  75. .pull-work {
  76. /* display: flex; */
  77. margin-top: 20px;
  78. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
  79. padding: 0 20px;
  80. display: flex;
  81. justify-content: flex-start;
  82. align-items: center;
  83. width: 90%;
  84. }
  85. .pull-work text {
  86. display: inline-block;
  87. width: 80%;
  88. height: 40px;
  89. line-height: 41px;
  90. }