install.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. body {
  2. text-align: center;
  3. background: url(../images/install/bg_1.png) 100% 100% no-repeat;
  4. overflow: hidden;
  5. }
  6. * {
  7. box-sizing: border-box;
  8. }
  9. .header {
  10. display: flex;
  11. flex-direction: column;
  12. justify-content: center;
  13. align-items: center;
  14. gap: 10px;
  15. margin: 30px auto 0;
  16. }
  17. .header h2 {
  18. font-family: PingFangSC, PingFang SC;
  19. font-weight: 400;
  20. font-size: 40px;
  21. color: #1F2937;
  22. line-height: 56px;
  23. font-style: normal;
  24. }
  25. .header h1 {
  26. height: 70px;
  27. font-family: PingFangSC, PingFang SC;
  28. font-weight: 500;
  29. font-size: 50px;
  30. color: #1F2937;
  31. line-height: 70px;
  32. font-style: normal;
  33. }
  34. .install-box {
  35. margin: 20px auto 0;
  36. padding: 30px;
  37. background: #FFFFFF;
  38. border: 1px solid #E6E7EB;
  39. border-radius: 10px;
  40. overflow: auto;
  41. display: flex;
  42. flex-direction: column;
  43. width: 716px;
  44. height: 74vh;
  45. box-sizing: border-box;
  46. }
  47. .protocol-box {
  48. display: flex;
  49. flex-direction: column;
  50. flex: 1;
  51. gap: 8px;
  52. margin-bottom: 4px;
  53. }
  54. .protocol-box .title {
  55. height: 28px;
  56. font-family: PingFangSC, PingFang SC;
  57. font-weight: 500;
  58. font-size: 20px;
  59. color: #1F2937;
  60. line-height: 28px;
  61. text-align: center;
  62. font-style: normal;
  63. }
  64. .protocol {
  65. text-align: left;
  66. height: 400px;
  67. overflow-y: auto;
  68. color: #4B5563;
  69. line-height: 24px;
  70. }
  71. .protocol h2 {
  72. text-align: center;
  73. font-size: 16px;
  74. color: #000;
  75. }
  76. .step-btns {
  77. padding: 20px 0 10px 0;
  78. }
  79. .step-btns .layui-btn {
  80. min-width: 300px;
  81. height: 40px;
  82. background: #40CC92;
  83. border-radius: 6px;
  84. line-height: 40px;
  85. }
  86. .copyright {
  87. position: fixed;
  88. bottom: 0;
  89. left: 0;
  90. width: 100%;
  91. height: 40px;
  92. background: #FFFFFF;
  93. line-height: 40px;
  94. }
  95. .copyright,
  96. .copyright a {
  97. color: #4B5563;
  98. }