page.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. .container {
  2. width: 100%;
  3. height: 100%;
  4. padding: 10px 10px;
  5. overflow-y: scroll;
  6. box-sizing: border-box;
  7. .timer {
  8. :deep(.van-cell__title) {
  9. width: 70px !important;
  10. font-size: 14px;
  11. font-weight: 600;
  12. color: #323233;
  13. flex: none !important;
  14. }
  15. }
  16. .title {
  17. color: #323233;
  18. font-size: 14px;
  19. font-weight: 600;
  20. padding: 5px 15px;
  21. margin-top: 10px;
  22. }
  23. .project-tabs {
  24. :deep(.van-tab__panel) {
  25. height: 300px;
  26. overflow-y: scroll;
  27. }
  28. }
  29. .send-btn {
  30. position: absolute;
  31. bottom: 20px;
  32. left: 50%;
  33. transform: translateX(-50%);
  34. width: 90%;
  35. }
  36. // 详情样式们
  37. .workload-list,
  38. .receive-names {
  39. padding: 5px 15px;
  40. }
  41. .names-tag {
  42. margin-right: 4px;
  43. }
  44. .comment-title {
  45. font-size: 14px;
  46. padding-left: 15px;
  47. }
  48. .comment-content {
  49. font-size: 14px;
  50. padding-left: 15px;
  51. max-height: 32vh;
  52. overflow: scroll;
  53. margin-bottom: 70px;
  54. }
  55. .comment-item {
  56. display: flex;
  57. justify-content: flex-start;
  58. align-items: center;
  59. border-bottom: 1px solid #e3eaf5;
  60. height: 85px;
  61. .left {
  62. width: 40px;
  63. text-align: center;
  64. span {
  65. display: inline-block;
  66. width: 35px;
  67. height: 35px;
  68. line-height: 35px;
  69. color: #ffffff;
  70. background-color: #5a99e3;
  71. font-size: 12px;
  72. font-weight: 400;
  73. border-radius: 50%;
  74. }
  75. }
  76. .right {
  77. font-weight: 400;
  78. font-size: 14px;
  79. color: #121518;
  80. line-height: 16px;
  81. .title {
  82. padding: 5px;
  83. font-weight: 400;
  84. font-size: 14px;
  85. color: #8a94a4;
  86. margin-bottom: 8px;
  87. span {
  88. color: #1b80eb;
  89. margin-left: 10px;
  90. cursor: pointer;
  91. }
  92. }
  93. .item-content {
  94. padding-left: 5px;
  95. }
  96. }
  97. }
  98. .comment-input {
  99. position: fixed;
  100. left: 0;
  101. bottom: 10px;
  102. width: 100%;
  103. .comment-emoji {
  104. padding: 5px 15px;
  105. overflow-x: auto;
  106. font-size: 14px;
  107. white-space: nowrap; /* 禁止换行 */
  108. .emoji-tag {
  109. margin-right: 8px;
  110. }
  111. // 隐藏滚动条未生效
  112. ::-webkit-scrollbar {
  113. width: 0 !important;
  114. height: 0 !important;
  115. }
  116. }
  117. }
  118. // 差劲的空格样式
  119. .blank-line {
  120. height: 100px;
  121. }
  122. }