page.scss 2.6 KB

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