main-dsg778.css 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. *{
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. body{
  7. height: 100vh;
  8. color:#000;
  9. overflow: hidden;
  10. }
  11. li{
  12. list-style: none;
  13. }
  14. .yz_header{
  15. padding: 0 20px;
  16. height: 60px;
  17. line-height: 60px;
  18. background-color: #173862;
  19. }
  20. .yz_header img{
  21. height: 52px;
  22. float: left;
  23. padding-top: 4px;
  24. padding-right: 15px;
  25. }
  26. .yz_header .yz_title{
  27. float: left;
  28. font-size: 22px;
  29. color: #fff;
  30. }
  31. .yz_header .usrForm:hover .userli{
  32. display: block;
  33. pointer-events: auto;
  34. }
  35. .yz_header .userli,.noReadli{
  36. position: relative;
  37. position: absolute;
  38. top:44px;
  39. right:0;
  40. width: 220px;
  41. z-index: 4444;
  42. display: none;
  43. line-height: 20px;
  44. padding: 6px;
  45. border-radius: 4px;
  46. background-color: #fff;
  47. }
  48. .yz_header .userli::after,.noReadli::after{
  49. position: absolute;
  50. top: -10px;
  51. right:1px;
  52. content: "";
  53. width: 0px;
  54. height: 0px;
  55. z-index: 4444;
  56. border-bottom: 14px solid #fff;
  57. border-left: 14px solid transparent;
  58. border-right: 14px solid transparent;
  59. border-radius: 4px;
  60. }
  61. .yz_header .userli li{
  62. color: #9c9c9c;
  63. padding:4px 0;
  64. }
  65. .yz_header .noReadli li{
  66. display: flex;
  67. color: #9c9c9c;
  68. padding:8px 0;
  69. font-size: 13px;
  70. justify-content: space-between;
  71. }
  72. .yz_Tab{
  73. width: 180px;
  74. height:100%;
  75. color: #ebebeb;
  76. overflow: hidden;
  77. border-right: 1px solid #0e47b0;
  78. background-color:rgb(6,27,81);
  79. }
  80. .yz_Tab .warmli{
  81. position: relative;
  82. cursor: pointer;
  83. font-size: 16px;
  84. }
  85. .yz_Tab .warmli ul{
  86. font-size: 15px;
  87. color: rgba(255,255,255,0.8);
  88. display: none;
  89. }
  90. .warmli ul.yzli_this{
  91. display: block;
  92. }
  93. .warmli ul.yzli_none{
  94. display: none;
  95. }
  96. .yz_Tab .warmli li{
  97. padding:8px 10px 8px 28px;
  98. }
  99. .yz_Tab li.tabact{
  100. color: #5793f3;
  101. }
  102. .yz_Tab .showSider{
  103. padding:0 10px;
  104. line-height: 40px;
  105. text-align: right;
  106. }
  107. .yz_Tab .showSider .iconfont{
  108. font-size: 25px;
  109. cursor: pointer;
  110. }
  111. iframe{
  112. border: none;
  113. }
  114. .yz_main_m{
  115. height: 100%;
  116. width: calc(100% - 180px);
  117. }
  118. .yz_footer{
  119. display: flex;
  120. align-items: center;
  121. justify-content: space-between;
  122. padding-left:15px;
  123. height:40px;
  124. width:100%;
  125. font-size: 12px;
  126. color: #eee;
  127. background-color: #173862;
  128. }
  129. .yz_chat{
  130. position: relative;
  131. display: flex;
  132. align-items: center;
  133. height: 100%;
  134. cursor: pointer;
  135. padding: 4px 15px 4px 10px;
  136. background-color: #122c4d;
  137. box-shadow: -12px 3px 10px #183d6a;
  138. }
  139. .yz_chat img{
  140. height: 32px;
  141. width: 32px;
  142. margin-right:5px;
  143. border-radius: 50%;
  144. }
  145. .yz_inbl{
  146. display: none;
  147. }
  148. @media screen and (max-width: 700px) {
  149. .yz_Tab{
  150. width: 40px;
  151. }
  152. .yz_header .headbig{
  153. display: none ;
  154. }
  155. .yz_main_m{
  156. width: calc(100% - 40px);
  157. }
  158. .yz_header{
  159. padding: 0 10px;
  160. }
  161. .yz_header .iconfont{
  162. font-size: 24px;
  163. }
  164. .yz_header .select .iconfont{
  165. font-size: 16px;
  166. }
  167. .yz_header .margin-lr{
  168. margin: 0 6px;
  169. }
  170. .yz_header .headsm{
  171. display: block;
  172. }
  173. }
  174. @media screen and (min-width: 700px){
  175. .yz_header .headsm{
  176. display: none;
  177. }
  178. }
  179. .yz_header .select{
  180. position: relative;
  181. width: 110px;
  182. height: 32px;
  183. font-size: 14px;
  184. margin-right:15px;
  185. }
  186. .select .option{
  187. position: relative;
  188. width: 100%;
  189. height: 32px;
  190. line-height: 32px;
  191. padding: 0 30px 0 6px;
  192. color: #fff;
  193. border-radius: 4px;
  194. cursor: pointer;
  195. overflow: hidden;
  196. -webkit-user-select: none;
  197. background-color: rgba(158, 158, 158, 0.4);
  198. border: 1px solid rgba(232, 232, 232, 0.3);
  199. }
  200. .select .icon-right{
  201. position: absolute;
  202. top: 1px;
  203. right: 6px;
  204. }
  205. .select ul{
  206. position: absolute;
  207. width: 100%;
  208. top: 34px;
  209. left: 0;
  210. max-height: 150px;
  211. overflow-y: auto;
  212. text-align: center;
  213. color: #fff;
  214. display: none;
  215. padding: 4px 0;
  216. border-radius: 2px;
  217. background-color: rgb(6,27,81);
  218. }
  219. .select ul::-webkit-scrollbar{
  220. display: block;
  221. width: 5px;
  222. }
  223. .select ul::-webkit-scrollbar-thumb{
  224. background-color: #fff;
  225. }
  226. .select ul li{
  227. padding: 5px 0;
  228. cursor: pointer;
  229. }
  230. .select ul li.act{
  231. background-color: #20a6ff;
  232. }
  233. input[type='checkbox'].switch {
  234. cursor: pointer;
  235. outline: none;
  236. appearance: none;
  237. -webkit-appearance: none;
  238. -moz-appearance: none;
  239. position: relative;
  240. width: 34px;
  241. height: 18px;
  242. background: #ccc;
  243. border-radius: 10px;
  244. transition: border-color .3s, background-color .3s;
  245. }
  246. input[type='checkbox'].switch::after {
  247. content: '';
  248. display: inline-block;
  249. width: 14px;
  250. height: 14px;
  251. border-radius: 50%;
  252. background: #fff;
  253. box-shadow: 0, 0, 2px, #999;
  254. transition: .4s;
  255. position: absolute;
  256. top: 2px;
  257. left: 4px;
  258. }
  259. input[type='checkbox'].switch:checked {
  260. background: rgb(19, 206, 102);
  261. }
  262. input[type='checkbox'].switch:checked::after {
  263. content: '';
  264. position: absolute;
  265. left: 50%;
  266. top: 1px;
  267. }
  268. .iconfont.iconact{
  269. transform:rotate(90deg);
  270. transition:transform 0.3s linear;
  271. }
  272. #rouTer{
  273. width: 180px;
  274. height: calc(100% - 40px);
  275. overflow-y: auto;
  276. }