1
0

index.less 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. @charset "utf-8";
  2. #hard {
  3. height: 100%;
  4. .layout {
  5. background: #fff;
  6. height: 100%;
  7. display: flex;
  8. flex-direction: column;
  9. position: relative;
  10. .layout-header {
  11. height: 84px;
  12. line-height: 84px;
  13. margin: 0 30px;
  14. border-bottom: 1px solid rgba(233, 239, 248, 1);
  15. text-align: center;
  16. .left {
  17. position: absolute;
  18. .title {
  19. color: #000000;
  20. display: inline-block;
  21. font-size: 20px;
  22. font-weight: 600;
  23. }
  24. }
  25. .right {
  26. float: right;
  27. text-align: right;
  28. padding: 20px 0;
  29. color: #5E677B;
  30. .text {
  31. line-height: 22px;
  32. }
  33. }
  34. }
  35. }
  36. .layout-footer {
  37. position: fixed;
  38. bottom: 0;
  39. left: 0;
  40. right: 0;
  41. height: 60px;
  42. line-height: 60px;
  43. box-shadow: 0px -4px 14px 0px rgba(189, 199, 215, 0.16);
  44. position: relative;
  45. .left {
  46. position: absolute;
  47. left: 30px;
  48. top: 0;
  49. }
  50. .right {
  51. position: absolute;
  52. right: 30px;
  53. top: 0;
  54. .button.lager {
  55. font-weight: 500;
  56. }
  57. }
  58. .center {
  59. padding-left: 108px;
  60. padding-right: 165px;
  61. display: flex;
  62. .p {
  63. flex: 1;
  64. margin-top: 22px;
  65. }
  66. .t {
  67. width: 40px;
  68. text-align: right;
  69. }
  70. }
  71. }
  72. .layout-body {
  73. background: #fff;
  74. flex: 1;
  75. overflow: hidden;
  76. overflow-y: auto;
  77. position: relative;
  78. padding: 20px 30px;
  79. .title {
  80. color: #050930;
  81. margin-bottom: 10px;
  82. }
  83. .desc {
  84. color: #050930;
  85. margin-bottom: 30px;
  86. }
  87. .label {
  88. color: #000000;
  89. margin-bottom: 10px;
  90. font-weight: 600;
  91. }
  92. .input {
  93. margin-bottom: 20px;
  94. }
  95. .select {
  96. border-radius: 2px;
  97. border: 1px solid rgba(200, 209, 218, 1);
  98. padding: 10px 20px;
  99. .select-title {
  100. color: #050930;
  101. margin-bottom: 10px;
  102. }
  103. }
  104. }
  105. }