common.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. .hand-cursor {
  2. cursor: pointer;
  3. }
  4. .box-sizing-border-box{
  5. box-sizing: border-box;
  6. }
  7. .dis-flex{
  8. display: flex;
  9. }
  10. .justify-content-space-between{
  11. display: flex;
  12. justify-content: space-between;
  13. }
  14. .justify-content{
  15. display: flex;
  16. justify-content: center;
  17. }
  18. .align-items-center{
  19. display: flex;
  20. align-items: center;
  21. }
  22. .text-align-center{
  23. text-align: center;
  24. }
  25. .text-align-left{
  26. text-align: left;
  27. }
  28. .text-align-right{
  29. text-align: right;
  30. }
  31. .fc-12{
  32. color: #121212;
  33. }
  34. .fc-70{
  35. color: #707070;
  36. }
  37. .bg-c-EEF4FF{
  38. background-color: #EEF4FF;
  39. }
  40. .bg-c-F4F4F8{
  41. background-color: #F4F4F8;
  42. }
  43. .bg-c-f{
  44. background-color: #fff !important;
  45. }
  46. .fw-400{
  47. font-weight: 400;
  48. }
  49. .fw-b{
  50. font-weight: bold;
  51. }
  52. .fs-14{
  53. font-size: 14px;
  54. }
  55. .fs-16{
  56. font-size: 16px;
  57. }
  58. .fs-18{
  59. font-size: 18px;
  60. }
  61. .fs-24{
  62. font-size: 24px;
  63. }
  64. .lh-40{
  65. line-height: 40px;
  66. }
  67. .lh-19{
  68. line-height: 19px;
  69. }
  70. .plr-50{
  71. padding: 0 50px;
  72. }
  73. .mr-10{
  74. margin-right: 10px;
  75. }
  76. .mt-70{
  77. margin-top: 70px;
  78. }
  79. .mt-60{
  80. margin-top: 60px;
  81. }
  82. .mt-30{
  83. margin-top: 30px;
  84. }
  85. .mt-20{
  86. margin-top: 20px;
  87. }
  88. .mb-32{
  89. margin-bottom: 32px;
  90. }
  91. .mb-36{
  92. margin-bottom: 36px;
  93. }
  94. .mb-44{
  95. margin-bottom: 44px;
  96. }
  97. .mb-96{
  98. margin-bottom: 96px;
  99. }
  100. .mt-5{
  101. margin-top: 5px;
  102. }
  103. .mb-10{
  104. margin-bottom: 10px;
  105. }