index.acss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. page {
  2. background-color: #f5f5f5;
  3. }
  4. .upload-content {
  5. width: 100%;
  6. min-height: 2rem;
  7. background: #fff;
  8. border-radius: 8px;
  9. padding: 0.1rem;
  10. box-sizing: border-box;
  11. font-size: 0.18rem;
  12. }
  13. .upload-content-btn {
  14. position: relative;
  15. display: -webkit-box;
  16. display: -webkit-flex;
  17. display: flex;
  18. flex-direction: column;
  19. justify-self: center;
  20. align-items: center;
  21. height: auto;
  22. line-height: normal;
  23. padding: 12px;
  24. border-radius: 4px;
  25. border: 0 none;
  26. box-sizing: border-box;
  27. font-size: 18px;
  28. z-index: 2;
  29. color: #fff;
  30. background-color: #1677ff;
  31. box-shadow: inset 0 0 0 1px #1677ff;
  32. margin-bottom: 0.1rem;
  33. }
  34. .background {
  35. background-color: #f5f5f5;
  36. color: rgb(94, 94, 94, 0.8) !important;
  37. font-weight: bold !important;
  38. position: relative;
  39. width: calc(100% - 0.1rem) !important;
  40. margin-left: 0.1rem;
  41. border-bottom-left-radius: 0.14rem;
  42. border-top-left-radius: 0.14rem;
  43. padding: 0.1rem 0.2rem 0.1rem 0.1rem !important;
  44. }
  45. .background::before {
  46. content: "";
  47. position: absolute;
  48. right: 0;
  49. top: -0.2rem;
  50. width: 0.2rem;
  51. height: 0.2rem;
  52. background: #fff;
  53. transition: all 0.3s ease;
  54. box-sizing: border-box;
  55. border-bottom-right-radius: 0.14rem;
  56. z-index: 999;
  57. }
  58. .background::after {
  59. content: "";
  60. position: absolute;
  61. right: 0;
  62. bottom: -0.2rem;
  63. width: 0.2rem;
  64. height: 0.2rem;
  65. background: #fff;
  66. transition: all 0.3s ease;
  67. box-sizing: border-box;
  68. border-top-right-radius: 0.14rem;
  69. z-index: 999;
  70. }
  71. .bor-t {
  72. background-color: #f5f5f5;
  73. width: 0.2rem;
  74. height: 0.2rem;
  75. position: absolute;
  76. right: 0;
  77. top: -0.2rem;
  78. }
  79. .bor-b {
  80. background-color: #f5f5f5;
  81. width: 0.2rem;
  82. height: 0.2rem;
  83. position: absolute;
  84. right: 0;
  85. bottom: -0.2rem;
  86. }
  87. .box {
  88. display: flex;
  89. justify-content: flex-end;
  90. position: relative;
  91. background-color: #f5f5f5;
  92. }
  93. .menu {
  94. position: fixed;
  95. left: 0;
  96. top: 0;
  97. width: 2rem;
  98. height: 100vh;
  99. display: flex;
  100. flex-direction: column;
  101. background: #fff;
  102. font-size: 0.18rem;
  103. padding: 0.2rem 0;
  104. overflow-y: auto;
  105. color: rgb(94, 94, 94, 0.5);
  106. }
  107. .menu-item {
  108. width: 100%;
  109. min-height: 0.6rem;
  110. display: flex;
  111. align-items: center;
  112. justify-content: flex-start;
  113. padding: 0.1rem 0.2rem;
  114. /* line-height: 6vh; */
  115. font-weight: initial;
  116. }
  117. .center {
  118. /* position: absolute;
  119. right: 0; */
  120. width: calc(100% - 2rem);
  121. padding: 0.2rem;
  122. min-height: 100vh;
  123. }
  124. .result {
  125. margin-top: 25rpx;
  126. word-wrap: break-word;
  127. max-height: 3rem;
  128. overflow: auto;
  129. }
  130. .scroll-item{
  131. padding-top: 0.1rem;
  132. }
  133. .scroll-item:not(:first-child){
  134. border-top: 0.01rem dashed rgb(203, 203, 203);
  135. }