index.less 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. .main {
  2. width: 100%;
  3. // height: 600px;
  4. .header {
  5. position: relative;
  6. z-index: 1;
  7. height: 120px;
  8. background: rgb(221, 223, 229);
  9. border-radius: 20px 20px 0 0;
  10. .show {
  11. display: flex;
  12. flex-direction: column;
  13. justify-content: center;
  14. box-sizing: border-box;
  15. width: 100%;
  16. height: 120px;
  17. padding-left: 68px;
  18. .tileline {
  19. position: relative;
  20. display: flex;
  21. align-items: center;
  22. color: #000;
  23. font-weight: 600;
  24. font-size: 20px;
  25. .hasPerson {
  26. display: flex;
  27. align-items: center;
  28. justify-content: center;
  29. width: 50px;
  30. height: 20px;
  31. margin-left: 10px;
  32. padding: 0 6px;
  33. color: #626c78;
  34. font-size: 11px;
  35. white-space: nowrap;
  36. background-color: #edf1f5;
  37. border-radius: 10px;
  38. }
  39. .titleIcon {
  40. position: absolute;
  41. top: 0;
  42. left: -36px;
  43. }
  44. .edit {
  45. margin-left: 16px;
  46. color: #c4c4c4;
  47. font-size: 18px;
  48. cursor: pointer;
  49. }
  50. }
  51. .timeLine {
  52. margin-top: 9px;
  53. color: #4d5262;
  54. font-size: 15px;
  55. .pdr10 {
  56. padding-right: 10px;
  57. }
  58. }
  59. }
  60. .editShow {
  61. width: 100%;
  62. height: 120px;
  63. padding: 20px 40px 0 40px;
  64. background: #fff;
  65. }
  66. }
  67. .close {
  68. position: absolute;
  69. top: 15px;
  70. right: 15px;
  71. z-index: 2;
  72. display: flex;
  73. align-items: center;
  74. justify-content: center;
  75. width: 36px;
  76. height: 36px;
  77. color: #c4c4c4;
  78. font-size: 20px;
  79. border-radius: 100%;
  80. cursor: pointer;
  81. transition: background-color 0.1s cubic-bezier(0.075, 0.82, 0.165, 1);
  82. &:hover {
  83. background-color: #fff;
  84. }
  85. }
  86. .content {
  87. padding: 0 0 110px;
  88. background-color: #eceff4;
  89. border-radius: 0 0 20px 20px;
  90. .infoList {
  91. display: flex;
  92. justify-content: space-between;
  93. padding: 18px 150px;
  94. // align-items: center;
  95. // justify-content: center;
  96. .item {
  97. text-align: center;
  98. .title {
  99. color: #4d5262;
  100. font-size: 10px;
  101. line-height: 1;
  102. }
  103. .num {
  104. color: #140050;
  105. font-size: 24px;
  106. line-height: 34px;
  107. }
  108. .describe {
  109. color: #c4c4c4;
  110. font-size: 12px;
  111. line-height: 1;
  112. }
  113. }
  114. }
  115. .devices {
  116. padding: 0 36px;
  117. }
  118. }
  119. .foot {
  120. display: flex;
  121. margin-top: 40px;
  122. .l {
  123. width: 65px;
  124. height: 86px;
  125. color: #000;
  126. font-size: 18px;
  127. line-height: 86px;
  128. text-align: center;
  129. background: rgba(0, 220, 35, 0.2);
  130. border-radius: 5px;
  131. }
  132. .r {
  133. flex: 1;
  134. padding-left: 22px;
  135. color: #4d5262;
  136. line-height: 22px;
  137. }
  138. }
  139. }