add.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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: 30px;
  51. color: #909090;
  52. font-size: 12px;
  53. }
  54. .step-tit {
  55. color: #323232;
  56. font-size: 16px;
  57. font-weight: bold;
  58. }
  59. .step-tit span {
  60. color: #909090;
  61. font-size: 14px;
  62. font-weight: normal;
  63. }
  64. .n-avatar-l {
  65. margin: 5px 0;
  66. }
  67. .code-box {
  68. display: -webkit-box;
  69. display: box;
  70. -webkit-box-pack: center;
  71. -moz-box-pack: center;
  72. }
  73. .code-input, .code-btns {
  74. display: -webkit-box;
  75. display: -moz-box;
  76. display: box;
  77. -webkit-box-orient: vertical;
  78. -moz-box-orient: vertical;
  79. box-orient: vertical;
  80. -webkit-box-pack: center;
  81. -moz-box-pack: center;
  82. box-pack: center;
  83. }
  84. .code-input {
  85. -webkit-box-flex: 1;
  86. -moz-box-flex: 1;
  87. box-flex: 1;
  88. margin-right: 10px;
  89. }
  90. .code-input .form-control {
  91. height: 38px;
  92. padding: 6px;
  93. }
  94. .code-btns a {
  95. height: 36px;
  96. line-height: 36px !important;
  97. padding: 0 6px;
  98. color: #74bf00;
  99. border: 1px solid #74bf00;
  100. }