add.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. @charset "utf-8";
  2. #wrapper {
  3. bottom: 60px;
  4. }
  5. #footer {
  6. position: absolute;
  7. bottom: 10px;
  8. left: 0;
  9. width: 100%;
  10. }
  11. .btn-blue, .btn-green {
  12. height: 40px;
  13. font-size: 16px;
  14. }
  15. .btn-blue {
  16. background-color: #47a8ef;
  17. }
  18. .btn-green {
  19. background-color: #74bf00;
  20. }
  21. .btn-red {
  22. background-color: #ff6a56;
  23. }
  24. .form .form-select-arrow {
  25. -webkit-transform: rotate(45deg);
  26. -moz-transform: rotate(45deg);
  27. -ms-transform: rotate(45deg);
  28. -o-transform: rotate(45deg);
  29. transform: rotate(45deg);
  30. }
  31. .form .form-control {
  32. height: 39px !important;
  33. text-align: right;
  34. border: none;
  35. }
  36. .form .input-group-addon {
  37. min-width: 100px;
  38. padding: 10px !important;
  39. border: none;
  40. text-align: left;
  41. }
  42. .form .required {
  43. left: 0;
  44. }
  45. .c-list > li {
  46. margin-left: 10px;
  47. border-color: #e1e1e1;
  48. }
  49. .step-tips {
  50. line-height: 20px;
  51. color: #909090;
  52. font-size: 12px;
  53. }
  54. .step-tips:first-child {
  55. margin-top: 10px;
  56. }
  57. .step-tips:nth-child(3) {
  58. margin-bottom: 10px;
  59. }
  60. .step-tit {
  61. color: #323232;
  62. font-size: 16px;
  63. font-weight: bold;
  64. }
  65. .step-tit span {
  66. color: #909090;
  67. font-size: 14px;
  68. font-weight: normal;
  69. }
  70. .n-avatar-l {
  71. margin: 5px 0;
  72. }
  73. .code-box {
  74. display: -webkit-box;
  75. display: box;
  76. -webkit-box-pack: center;
  77. -moz-box-pack: center;
  78. }
  79. .code-input, .code-btns {
  80. display: -webkit-box;
  81. display: -moz-box;
  82. display: box;
  83. -webkit-box-orient: vertical;
  84. -moz-box-orient: vertical;
  85. box-orient: vertical;
  86. -webkit-box-pack: center;
  87. -moz-box-pack: center;
  88. box-pack: center;
  89. }
  90. .code-input {
  91. -webkit-box-flex: 1;
  92. -moz-box-flex: 1;
  93. box-flex: 1;
  94. margin-right: 10px;
  95. }
  96. .code2-input {
  97. margin: 0;
  98. -webkit-box-orient: horizontal;
  99. -moz-box-orient: horizontal;
  100. box-orient: horizontal;
  101. }
  102. .code-input .form-control {
  103. height: 38px;
  104. padding: 6px;
  105. }
  106. .code-btns a {
  107. height: 36px;
  108. line-height: 36px !important;
  109. padding: 0 6px;
  110. color: #74bf00;
  111. border: 1px solid #74bf00;
  112. }
  113. .btn-disabled {
  114. cursor: default;
  115. background-color: #ccc;
  116. border: 0;
  117. color: #fff;
  118. }