common.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. list-style: none;
  5. box-sizing: border-box;
  6. }
  7. html,
  8. body {
  9. width: 100%;
  10. height: auto;
  11. background-color: #F7F8F9;
  12. }
  13. .HoutaiContainer {
  14. width: 1440px;
  15. height: auto;
  16. margin: 0 auto;
  17. }
  18. .HoutaiContainerTitle {
  19. width: 1440px;
  20. height: 58px;
  21. display: flex;
  22. display: -moz-flex;
  23. display: -o-flex;
  24. display: -webkit-flex;
  25. display: -ms-flex;
  26. position: fixed;
  27. top: 0;
  28. background-color: #F7F8F9;
  29. }
  30. .HoutaiContainerTitleText {
  31. color: #000000;
  32. font-weight: bold;
  33. font-size: 32px;
  34. margin-left: 32px;
  35. margin-top: 11px;
  36. }
  37. .HoutaiContainerTitleLogout {
  38. width: 60px;
  39. height: 43px;
  40. background-color: #000000;
  41. border-radius: 15px;
  42. color: #FFFFFF;
  43. font-size: 14px;
  44. font-weight: bold;
  45. text-align: center;
  46. line-height: 43px;
  47. margin-top: 11px;
  48. position: absolute;
  49. right: 32px;
  50. cursor: pointer;
  51. }
  52. .HoutaiContainerTitleButton {
  53. margin-left: 32px;
  54. /* margin-top: 16px; */
  55. width: 1316px;
  56. /* width: 1440px; */
  57. /* height: 43px; */
  58. display: flex;
  59. display: -moz-flex;
  60. display: -o-flex;
  61. display: -webkit-flex;
  62. display: -ms-flex;
  63. align-items: center;
  64. flex-wrap: wrap;
  65. margin-top: 58px;
  66. }
  67. .HoutaiContainerTitleButton p {
  68. background-color: #FFFFFF;
  69. border-radius: 4px;
  70. text-align: center;
  71. color: #000000;
  72. font-size: 14px;
  73. font-weight: bold;
  74. margin-right: 16px;
  75. border: 1px solid #000;
  76. padding: 10px 16px;
  77. margin-bottom: 16px;
  78. cursor: pointer;
  79. }
  80. .SLHeader-Container {
  81. overflow: hidden;
  82. margin-left: 32px;
  83. position: relative;
  84. }