step2.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. .wrap{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. }
  6. .content{
  7. display: flex;
  8. }
  9. .menu {
  10. color: #fff;
  11. width: 210px;
  12. }
  13. .menu .again{
  14. padding-bottom: 4px;
  15. padding-left: 9px;
  16. color: #37CA71;
  17. text-decoration:none;
  18. }
  19. .menu .head{
  20. display: flex;
  21. align-items: flex-end;
  22. }
  23. .menu .p8{
  24. color: rgba(255,255,255,0.8)
  25. }
  26. .menu .tab{
  27. margin-top: 25px;
  28. padding: 18px 19px;
  29. cursor: pointer;
  30. display: flex;
  31. align-items: center;
  32. }
  33. .left-img{
  34. position: relative;
  35. margin-right: 20px;
  36. }
  37. .warring{
  38. position: absolute;
  39. width: 12px;
  40. height: 12px;
  41. right: -6px;
  42. bottom: 0px;
  43. }
  44. .btn-warning{
  45. bottom: 2px;
  46. }
  47. .env{
  48. width: 25px;
  49. height: 25px;
  50. }
  51. .jur{
  52. width: 25px;
  53. height: 28px;
  54. }
  55. .menu .tab{
  56. transition: all 0.1s;
  57. }
  58. .menu .tab.on{
  59. background: rgba(0,0,0,0.2);
  60. border-radius: 13px 13px 13px 13px;
  61. }
  62. .config-list{
  63. width: 485px;
  64. }
  65. /*
  66. ===================
  67. 服务器检测/信息输入
  68. ===================
  69. */
  70. .server{
  71. height: 430px;
  72. padding:0px 20px 3px 35px;
  73. overflow-y: scroll;
  74. }
  75. /* 隐藏滚动条 */
  76. .server::-webkit-scrollbar {
  77. width: 0px;
  78. height: 0px;
  79. }
  80. .server table{
  81. margin-bottom:20px;
  82. }
  83. .server td{
  84. padding:6px 5px;
  85. color: #fff;
  86. font-size: 12px;
  87. align-items: center;
  88. }
  89. .server .td1{
  90. color:rgba(255,255,255, 0.6);
  91. font-size: 12px;
  92. }
  93. .server .input{
  94. border:none;
  95. border-radius: 30px;
  96. padding:3px;
  97. width:200px;
  98. }
  99. .server .input:hover,
  100. .server .input:focus{
  101. outline:none;
  102. }
  103. .gray{
  104. color:#bbb;
  105. }
  106. .server tr:hover .gray{
  107. color:#333;
  108. }
  109. .trip{
  110. color: #EDB90F;
  111. font-size: 12px;
  112. height: 17px;
  113. }
  114. .trip img{
  115. width: 14px;
  116. height: 14px;
  117. margin-right: 5px;
  118. }
  119. /*
  120. ===================
  121. 正确错误
  122. ===================
  123. */
  124. .correct_span,
  125. .error_span{
  126. display:block;
  127. float:left;
  128. width:20px;
  129. height:16px;
  130. text-indent:-2000em;
  131. overflow:hidden;
  132. background:url(../images/install/icon.png) no-repeat;
  133. margin-right:5px;
  134. }
  135. .error_span{
  136. background-position:0 -23px;
  137. }
  138. .bottom{
  139. width: 110px;
  140. height: 32px;
  141. background: #FFFFFF;
  142. border-radius: 137px 137px 137px 137px;
  143. font-size: 14px;
  144. line-height: 32px;
  145. margin: 0 auto;
  146. margin-top: 20px;
  147. cursor: pointer;
  148. text-align: center;
  149. }
  150. .bottom a{
  151. display:block;
  152. width: 100%;
  153. height: 100%;
  154. }
  155. .bottom-btn{
  156. display: flex;
  157. }
  158. .bottom-btn .up-btn{
  159. color: rgba(255,255,255,0.6);
  160. margin-right: 10px;
  161. background-color: rgba(255,255,255,0.1);
  162. }
  163. .bottom-btn .next{
  164. color: #5A487D;
  165. }
  166. .bottom-btn .up-btn a{
  167. color: rgba(255,255,255,0.6);
  168. }
  169. .bottom-btn .up-btn a:link,a:visited{
  170. color: rgba(255,255,255,0.6);
  171. text-decoration: none;
  172. }