step3.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. .wrap{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. }
  6. .wrap > .title{
  7. text-align: center;
  8. padding: 23px 0 27px 0;
  9. color: rgba(255,255,255,0.8);
  10. font-size: 14px;
  11. }
  12. .content{
  13. display: flex;
  14. }
  15. .menu {
  16. color: #fff;
  17. width: 210px;
  18. }
  19. .menu .again{
  20. padding-bottom: 4px;
  21. padding-left: 9px;
  22. color: #37CA71;
  23. }
  24. .menu .head{
  25. display: flex;
  26. align-items: flex-end;
  27. }
  28. .menu .p8{
  29. color: rgba(255,255,255,0.8)
  30. }
  31. .menu .tab{
  32. margin-top: 25px;
  33. padding: 18px 19px;
  34. cursor: pointer;
  35. }
  36. .menu .tab.on{
  37. background: rgba(0,0,0,0.2);
  38. border-radius: 13px 13px 13px 13px;
  39. }
  40. .config-list{
  41. width: 485px;
  42. }
  43. /*
  44. ===================
  45. 服务器检测/信息输入
  46. ===================
  47. */
  48. .server::-webkit-scrollbar { width: 0 !important;
  49. height: 0 !important; }
  50. /*IE 10+*/
  51. .server { -ms-overflow-style: none; }
  52. /*Firefox*/
  53. .server { overflow: -moz-scrollbars-none; }
  54. .server{
  55. padding:0px 20px 20px 35px;
  56. width: 560px;
  57. height: 475px;
  58. overflow: scroll;
  59. }
  60. .server table{
  61. margin-bottom:20px;
  62. }
  63. .server td{
  64. padding:6px 5px;
  65. color: #fff;
  66. font-size: 12px;
  67. }
  68. .server .td1{
  69. font-weight: normal;
  70. color: #FFFFFF;
  71. font-size: 14px;
  72. text-align: right;
  73. padding-right: 12px
  74. }
  75. .server .el-radio{
  76. color: rgba(255,255,255,0.8);
  77. }
  78. .server .el-radio__label{
  79. font-size: 12px;
  80. }
  81. .server .input{
  82. border:none;
  83. border-radius: 20px;
  84. background-color: rgba(0,0,0,0.1);
  85. padding:0px 15px;
  86. width: 186px;
  87. height: 30px;
  88. color: #fff;
  89. }
  90. .server .input:hover,
  91. .server .input:focus{
  92. outline:none;
  93. }
  94. .server input::placeholder {
  95. color: rgba(255,255,255,0.2);
  96. }
  97. .gray{
  98. color:#bbb;
  99. }
  100. .server tr:hover .gray{
  101. /*color:#333;*/
  102. }
  103. .server .el-radio__input.is-checked .el-radio__inner {
  104. border-color: #37CA71;
  105. background: #37CA71;
  106. }
  107. /*
  108. ===================
  109. 正确错误
  110. ===================
  111. */
  112. .correct_span,
  113. .error_span{
  114. display:block;
  115. float:left;
  116. width:20px;
  117. height:16px;
  118. text-indent:-2000em;
  119. overflow:hidden;
  120. background:url(../images/install/icon.png) no-repeat;
  121. margin-right:5px;
  122. }
  123. .error_span{
  124. background-position:0 -23px;
  125. }
  126. .section .bottom{
  127. margin: 0;
  128. }
  129. .bottom a{
  130. display:block;
  131. width: 100%;
  132. height: 100%;
  133. }
  134. .bottom-btn{
  135. display: flex;
  136. justify-content: center;
  137. }
  138. .next{
  139. color: #5A487D;
  140. }
  141. .bottom-btn .up-btn{
  142. margin-right: 10px;
  143. background-color: rgba(255,255,255,0.1);
  144. }
  145. .bottom-btn .up-btn a:link,a:visited{
  146. color: rgba(255,255,255,0.6);
  147. text-decoration: none;
  148. }