common.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. body {
  2. background-color: #f3f6f8;
  3. padding-top: 80px;
  4. }
  5. .common-head {
  6. height: 50px;
  7. border-bottom: 1px solid #e4e8ef;
  8. display: flex;
  9. align-items: center;
  10. padding: 0 20px;
  11. }
  12. .common-head-title {
  13. display: inline-block;
  14. line-height: 1;
  15. padding-left: 6px;
  16. font-size: 18px;
  17. font-weight: 700;
  18. border-left: 5px solid #008dfe;
  19. }
  20. .common-head-tab {
  21. display: flex;
  22. margin-left: 38px;
  23. }
  24. .common-head-tab li {
  25. margin-right: 28px;
  26. line-height: 48px;
  27. border-bottom: 2px solid transparent;
  28. color: #666;
  29. font-size: 14px;
  30. cursor: pointer;
  31. }
  32. .common-head-tab li:hover,
  33. .common-head-tab li.active {
  34. color: #008dfe;
  35. border-bottom-color: #008dfe;
  36. }
  37. .head-title.bg {
  38. margin-top: 10px;
  39. padding: 0 30px 0 15px;
  40. background-color: #008dfe;
  41. border: 0;
  42. line-height: 40px;
  43. color: #fff;
  44. position: relative;
  45. background: linear-gradient(90deg, #3094fc, #57bdfd);
  46. border-top-left-radius: 4px;
  47. }
  48. .head-title.bg::before {
  49. content: "";
  50. border-color: #9dd4fb transparent transparent;
  51. border-style: solid;
  52. border-width: 36px 7px 0 0;
  53. position: absolute;
  54. right: -7px;
  55. bottom: 0;
  56. }
  57. .head-title.bg::after {
  58. content: "";
  59. border-color: transparent transparent #9dd4fb;
  60. border-style: solid;
  61. border-width: 0 7px 4px 0;
  62. position: absolute;
  63. right: -7px;
  64. top: 0;
  65. }
  66. .common-head-tab.bg li:hover,
  67. .common-head-tab.bg li.active {
  68. color: #008dfe;
  69. border-bottom-color: transparent
  70. }
  71. .more {
  72. flex: 1;
  73. text-align: right;
  74. font-size: 14px;
  75. color: #979a99;
  76. cursor: pointer;
  77. background: url(../img/more.png) no-repeat right center;
  78. padding-right: 15px;
  79. }
  80. .bgWhite {
  81. background-color: #fff;
  82. }
  83. .common-body {
  84. display: flex;
  85. align-items: center;
  86. justify-content: center;
  87. padding: 15px;
  88. }
  89. .imgSize {
  90. width: 100%;
  91. height: 100%;
  92. background-color: bisque;
  93. }
  94. .iconSize {
  95. width: 14px;
  96. height: 14px;
  97. background-color: rgb(64, 186, 235)
  98. }
  99. .banner-box {
  100. height: 400px;
  101. }
  102. .section {
  103. width: 1200px;
  104. margin: 10px auto;
  105. }