total.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /* 全屏背景 */
  2. body {
  3. background: #eff3f6;
  4. }
  5. /* 头部和尾部 */
  6. .total-head,
  7. .total-sect,
  8. .total-floo {
  9. padding: 10px;
  10. margin: 20px 0;
  11. background: white;
  12. border-radius: 5px;
  13. box-sizing: border-box;
  14. }
  15. .vue-title {
  16. display: flex;
  17. margin: 5px 0;
  18. line-height: 32px;
  19. font-size: 18px;
  20. color: #333;
  21. font-weight: 600;
  22. }
  23. .vue-title-left {
  24. width: 4px;
  25. height: 18px;
  26. margin-top: 6px;
  27. background: #29ba9c;
  28. display: inline-block;
  29. margin-right: 10px;
  30. }
  31. .vue-title-content {
  32. font-size: 14px;
  33. flex: 1;
  34. }
  35. /* 修改input占位符默认颜色 */
  36. input::-webkit-input-placeholder,
  37. textarea::-webkit-input-placeholder {
  38. color: #999 !important;
  39. }
  40. input:-moz-placeholder,
  41. textarea:-moz-placeholder {
  42. color: #999 !important;
  43. }
  44. input::-moz-placeholder,
  45. textarea::-moz-placeholder {
  46. color: #999 !important;
  47. }
  48. input:-ms-input-placeholder,
  49. textarea:-ms-input-placeholder {
  50. color: #999 !important;
  51. }
  52. /* 脚部 */
  53. .fixed {
  54. width: calc(100% - 275px);
  55. padding: 7px;
  56. padding-top: 10px;
  57. position: fixed;
  58. bottom: -20px;
  59. z-index: 199;
  60. box-sizing: border-box;
  61. box-shadow: 0px -1px 10px rgba(0, 0, 0, .1);
  62. }
  63. /* 页脚盒子 */
  64. .fixed_box {
  65. height: 40px;
  66. text-align: center;
  67. }
  68. /* 小星星 */
  69. .asterisk {
  70. position: relative;
  71. }
  72. .asterisk>.el-form-item__label::before {
  73. content: "*";
  74. color: red;
  75. font-size: 13px;
  76. position: absolute;
  77. top: -3px;
  78. left: -6.5px;
  79. }