index.module.scss 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. .Layout {
  2. width: 100%;
  3. height: 100%;
  4. :global {
  5. .topTitle {
  6. width: 100%;
  7. height: 90px;
  8. background-color: var(--themeColor);
  9. .main {
  10. width: 1580px;
  11. height: 100%;
  12. margin: 0 auto;
  13. display: flex;
  14. align-items: center;
  15. justify-content: space-between;
  16. &>div {
  17. height: 100%;
  18. }
  19. .logo {
  20. height: 58px;
  21. width: 230px;
  22. background-image: url('../../assets/img/login/LOGO.png');
  23. background-size: 100% 100%;
  24. }
  25. .tabCut {
  26. width: calc(100% - 800px);
  27. display: flex;
  28. align-items: center;
  29. justify-content: space-around;
  30. .row {
  31. line-height: 90px;
  32. cursor: pointer;
  33. font-size: 18px;
  34. color: #fff;
  35. height: 100%;
  36. &:hover {
  37. color: #D3B453;
  38. }
  39. }
  40. .active {
  41. pointer-events: none;
  42. color: #D3B453;
  43. position: relative;
  44. &::before {
  45. content: '';
  46. position: absolute;
  47. bottom: 0;
  48. left: 50%;
  49. transform: translateX(-50%);
  50. width: 56px;
  51. height: 24px;
  52. background-image: url('../../assets/img/login/flower.png');
  53. background-size: 56px 24px;
  54. }
  55. }
  56. }
  57. .user {
  58. cursor: pointer;
  59. position: relative;
  60. line-height: 90px;
  61. padding-left: 60px;
  62. background: url('../../assets/img/login/user_1.png') no-repeat left center;
  63. background-size: 40px 40px;
  64. font-size: 16px;
  65. color: #fff;
  66. .userSet {
  67. width: 115px;
  68. opacity: 0;
  69. pointer-events: none;
  70. transition: bottom .3s;
  71. height: 100px;
  72. background-color: var(--themeColor);
  73. position: absolute;
  74. left: 0;
  75. bottom: -80px;
  76. &>span {
  77. display: block;
  78. width: 100%;
  79. height: 50%;
  80. line-height: 50px;
  81. text-align: center;
  82. &:hover {
  83. color: #D3B453;
  84. }
  85. }
  86. }
  87. &:hover {
  88. .userSet {
  89. opacity: 1;
  90. pointer-events: auto;
  91. bottom: -100px;
  92. }
  93. }
  94. }
  95. }
  96. }
  97. .pageMain {
  98. width: 100%;
  99. height: calc(100% - 90px);
  100. background-image: url('../../assets/img/login/homeBg.jpg');
  101. background-size: cover;
  102. &>div {
  103. width: 1600px;
  104. margin: 0 auto;
  105. padding-top: 35px;
  106. height: calc(100% - 30px);
  107. .leftBar {
  108. float: left;
  109. width: 220px;
  110. height: 100%;
  111. background-color: #fff;
  112. border-radius: 5px;
  113. }
  114. .rightMain {
  115. width: calc(100% - 250px);
  116. height: 100%;
  117. float: right;
  118. &>div {
  119. width: 100%;
  120. height: 100%;
  121. }
  122. .breadTit {
  123. padding-left: 35px;
  124. background-color: #fff;
  125. border-radius: 5px;
  126. width: 100%;
  127. height: 50px;
  128. margin-bottom: 20px;
  129. }
  130. .objectSonMain {
  131. background-color: #fff;
  132. border-radius: 5px;
  133. width: 100%;
  134. height: calc(100% - 70px);
  135. .objectSonMainTit {
  136. width: calc(100% - 30px);
  137. margin: 0 auto 20px;
  138. height: 60px;
  139. border-bottom: 2px solid #999999;
  140. padding: 0 5px;
  141. display: flex;
  142. &>div {
  143. cursor: pointer;
  144. height: 100%;
  145. line-height: 58px;
  146. padding: 0 15px;
  147. font-size: 16px;
  148. margin-right: 50px;
  149. }
  150. .active {
  151. font-weight: 700;
  152. color: var(--themeColor);
  153. pointer-events: none;
  154. position: relative;
  155. &::before {
  156. content: '';
  157. z-index: 10;
  158. position: absolute;
  159. bottom: -3px;
  160. left: 0;
  161. width: 100%;
  162. height: 4px;
  163. background-color: var(--themeColor);
  164. }
  165. }
  166. }
  167. .objectSonMainTable {
  168. width: calc(100% - 60px);
  169. margin: 0 auto;
  170. height: calc(100% - 80px);
  171. .tableSelectBox{
  172. width: 100%;
  173. display: flex;
  174. align-items: center;
  175. .row{
  176. margin-right: 30px;
  177. }
  178. }
  179. }
  180. }
  181. }
  182. }
  183. }
  184. }
  185. }