webStatis.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. body {
  7. background-color: #EBF0F3;
  8. }
  9. .web-contanier {
  10. /* width: 100%; */
  11. /* height: 100%; */
  12. background-color: #EBF0F3;
  13. margin: 0 auto;
  14. margin-bottom: 20px;
  15. min-height: 1100px;
  16. }
  17. .header {
  18. width: 100%;
  19. height: 64px;
  20. line-height: 64px;
  21. background: #ffffff;
  22. padding-left: 18px;
  23. box-sizing: border-box;
  24. font-family: YouSheBiaoTiHei;
  25. font-size: 36px;
  26. font-weight: 400;
  27. color: #2D7BCC;
  28. }
  29. .content-wrap {
  30. width: 100%;
  31. height: 100%;
  32. box-sizing: border-box;
  33. }
  34. .boxContanier {
  35. width: 100%;
  36. margin-top: 25px;
  37. background: #FFFFFF;
  38. padding: 10px 20px;
  39. box-sizing: border-box;
  40. /* margin-bottom: 50px; */
  41. }
  42. .topList .layui-tab-card {
  43. box-shadow: none;
  44. }
  45. .topList .navtitle {
  46. width: 220px;
  47. float: left;
  48. /* height: 1240px; */
  49. margin-top: -11px;
  50. }
  51. .topList .navtitle li {
  52. display: block;
  53. height: 56px;
  54. line-height: 56px;
  55. background: #ffffff;
  56. font-size: 18px;
  57. color: #2D7BCC;
  58. }
  59. .topList .navtitle li {
  60. text-align: left;
  61. }
  62. .navtitle li:first-child {
  63. margin: 12px 0 0 0;
  64. }
  65. .navtitle li span {
  66. font-size: 18px;
  67. font-family: Microsoft YaHei;
  68. font-weight: bold;
  69. color: #2681FF;
  70. line-height: 42px;
  71. padding-right: 16px;
  72. }
  73. .content-wrap .layui-tab-card>.navtitle .layui-this {
  74. color: #ffffff;
  75. background: #2D7BCC;
  76. }
  77. .content-wrap .layui-tab-card>.navtitle .layui-this span {
  78. color: #ffffff;
  79. }
  80. .content-wrap .layui-tab-card>.navtitle .layui-this li {
  81. color: #ffffff;
  82. }
  83. .content-wrap .layui-tab-card>.navtitle {
  84. background: #ffffff;
  85. }
  86. .content-wrap .navtitle .layui-this:after {
  87. border: none;
  88. height: auto;
  89. }
  90. .topList .rightContent {
  91. padding: 0 0 0 230px;
  92. margin-top: -25px;
  93. }
  94. .commonTitle {
  95. width: 100%;
  96. height: 42px;
  97. }
  98. .commonTitle span {
  99. font-size: 20px;
  100. font-family: Microsoft YaHei;
  101. font-weight: bold;
  102. color: #2681FF;
  103. line-height: 42px;
  104. }
  105. .line {
  106. width: 100%;
  107. height: 2px;
  108. background: #D8E2ED;
  109. position: relative;
  110. }
  111. .line::before {
  112. content: ' ';
  113. width: 128px;
  114. height: 3px;
  115. background: #2681FF;
  116. position: absolute;
  117. top: -2px;
  118. }
  119. /* 缂傚啯鍨归悵顖炴嚀閸愵厾妲� */
  120. .web-contanier .content-wrap #siteAssessment {
  121. width: 100%;
  122. height: 634px;
  123. box-sizing: border-box;
  124. margin-top: -20px;
  125. }
  126. .web-assessment .bgline {
  127. width: 104%;
  128. height: 10px;
  129. background: #ebf0f3;
  130. position: relative;
  131. margin: 0 0 0 -20px;
  132. }
  133. .imgPosition {
  134. position: relative;
  135. }
  136. .imgPosition img {
  137. position: absolute;
  138. right: 3%;
  139. top: 11%;
  140. }
  141. .web-assessment .rightBottomContent {
  142. width: 230px;
  143. float: left;
  144. }
  145. .web-assessment .rightBottomContent .arrayDate {
  146. width: 223px;
  147. height: 102px;
  148. text-align: left;
  149. padding: 16px 0 0 20px;
  150. margin: 20px 0 0 0;
  151. box-sizing: border-box;
  152. }
  153. .web-assessment .rightBottomContent .arrayDate.arrayFir {
  154. background-image: linear-gradient(to right, #7BB5F4, #3D8AE0);
  155. }
  156. .web-assessment .rightBottomContent .arrayDate.arraySec {
  157. background-image: linear-gradient(to right, #F78E49, #F7A56F);
  158. }
  159. .web-assessment .rightBottomContent .arrayDate.arrayThi {
  160. background-image: linear-gradient(to right, #43DC99, #36B47E);
  161. }
  162. .web-assessment .rightBottomContent .arrayDate .title {
  163. font-size: 24px;
  164. font-family: inherit;
  165. font-weight: 600;
  166. color: #FFFFFF;
  167. }
  168. .web-assessment .rightBottomContent .arrayDate .name {
  169. font-size: 14px;
  170. font-family: serif;
  171. font-weight: 600;
  172. color: #FFFFFF;
  173. margin-bottom: 8px;
  174. }
  175. /* 闁告牕鎼獮娆撳矗婵犲拋鏁庨梻锟介崶顒�鍔ラ梻鍌樺妽濞插潡寮悧鍫濆壈闁告劧鎷� */
  176. .update-case {
  177. width: 100%;
  178. height: 1000px;
  179. background: #FFFFFF;
  180. }
  181. .update-case .update-tab {
  182. margin-top: 28px;
  183. }
  184. .update-case .update-tab-title {
  185. width: 288px;
  186. border-bottom-width: none;
  187. border-bottom-style: none;
  188. }
  189. .update-tab .update-tab-title>li {
  190. width: 95px;
  191. height: 36px;
  192. background: #FFFFFF;
  193. border: 1px solid #A4A4A4;
  194. color: #666666;
  195. font-size: 16px;
  196. font-weight: bold;
  197. z-index: 99;
  198. }
  199. .topList .update-tab .update-tab-title .layui-this {
  200. width: 95px;
  201. height: 36px;
  202. background: #DFEDFF;
  203. border: 1px solid #2681FF;
  204. color: #2681FF;
  205. }
  206. .topList .update-tab #wzkp-type {
  207. margin-bottom: 20px;
  208. }
  209. .topList .update-tab #wzkp-type li {
  210. border: none;
  211. padding-bottom: 10px;
  212. border-bottom: 1px solid #A4A4A4;
  213. }
  214. .topList .update-tab #wzkp-type .layui-this {
  215. border: none;
  216. border-bottom: 3px solid #2681FF;
  217. background: #ffffff;
  218. }
  219. .topList .update-tab #wzkp-type .layui-this:after {
  220. border: none;
  221. }
  222. .department {
  223. height: 400px;
  224. width: 1200px;
  225. }
  226. .street {
  227. height: 400px;
  228. width: 100%;
  229. }
  230. .webStates {
  231. width: 733px;
  232. height: 446px;
  233. padding: 0 0 0 230px;
  234. }
  235. .tHeader .situation_border {
  236. border-bottom: 1px solid #8393A5;
  237. }
  238. .web-assessment .dataTab>.layui-tab-title li {
  239. font-size: 20px;
  240. font-family: Microsoft YaHei;
  241. font-weight: bold;
  242. color: #999999;
  243. }
  244. .web-assessment .dataTab>.layui-tab-title .layui-this {
  245. color: #2F7CD3;
  246. }
  247. .web-assessment .dataTab>.layui-tab-more li.layui-this:after,
  248. .web-assessment .dataTab>.layui-tab-title .layui-this:after {
  249. border-bottom: 3px solid #2F7CD3;
  250. }
  251. .marker-one::before {
  252. content: ' ';
  253. width: 10px;
  254. height: 10px;
  255. margin-left: 5px;
  256. border-radius: 50%;
  257. -webkit-box-shadow: #FD8F00 0px 0px 10px;
  258. -moz-box-shadow: #FD8F00 0px 0px 10px;
  259. box-shadow: #FD8F00 0px 0px 10px;
  260. background: #FD8F00;
  261. position: absolute;
  262. top: 38%;
  263. left: 2%;
  264. }
  265. .marker-two::before {
  266. content: ' ';
  267. width: 10px;
  268. height: 10px;
  269. margin-left: 5px;
  270. border-radius: 50%;
  271. -webkit-box-shadow: #FD2400 0px 0px 10px;
  272. -moz-box-shadow: #FD2400 0px 0px 10px;
  273. box-shadow: #FD2400 0px 0px 10px;
  274. background: #FD2400;
  275. position: absolute;
  276. top: 38%;
  277. left: 2%;
  278. }
  279. .marker-three::before {
  280. content: ' ';
  281. width: 10px;
  282. height: 10px;
  283. margin-left: 5px;
  284. border-radius: 50%;
  285. -webkit-box-shadow: #2EB334 0px 0px 10px;
  286. -moz-box-shadow: #2EB334 0px 0px 10px;
  287. box-shadow: #2EB334 0px 0px 10px;
  288. background: #2EB334;
  289. position: absolute;
  290. top: 38%;
  291. left: 2%;
  292. }
  293. /* 闁哄牜鍓涚紞澶岀博閿燂拷 */
  294. .marker2-one::before {
  295. content: ' ';
  296. width: 10px;
  297. height: 10px;
  298. margin-left: 5px;
  299. border-radius: 50%;
  300. -webkit-box-shadow: #FD8F00 0px 0px 10px;
  301. -moz-box-shadow: #FD8F00 0px 0px 10px;
  302. box-shadow: #FD8F00 0px 0px 10px;
  303. background: #FD8F00;
  304. position: absolute;
  305. top: 38%;
  306. left: -1%;
  307. }
  308. .marker2-two::before {
  309. content: ' ';
  310. width: 10px;
  311. height: 10px;
  312. margin-left: 5px;
  313. border-radius: 50%;
  314. -webkit-box-shadow: #FD2400 0px 0px 10px;
  315. -moz-box-shadow: #FD2400 0px 0px 10px;
  316. box-shadow: #FD2400 0px 0px 10px;
  317. background: #FD2400;
  318. position: absolute;
  319. top: 38%;
  320. left: -1%;
  321. }
  322. .marker2-three::before {
  323. content: ' ';
  324. width: 10px;
  325. height: 10px;
  326. margin-left: 5px;
  327. border-radius: 50%;
  328. -webkit-box-shadow: #2EB334 0px 0px 10px;
  329. -moz-box-shadow: #2EB334 0px 0px 10px;
  330. box-shadow: #2EB334 0px 0px 10px;
  331. background: #2EB334;
  332. position: absolute;
  333. top: 38%;
  334. left: -1%;
  335. }
  336. /*婵ɑ鍨归弫鎾诲冀韫囨洘绐楅柡鍥х摠閺屽﹪骞嗛崨顓炴瀸*/
  337. .DistrictPortal {
  338. height: 600px;
  339. width: 1123px;
  340. }
  341. .tableItem {
  342. padding: 10px 0 20px 0;
  343. }
  344. .tableItem .layui-table {
  345. width: 100%;
  346. text-align: center;
  347. }
  348. /*闂侇喓鍔戝Λ顒勫即鐎涙ɑ鐓�闁诡垰鎳庨崰锟�*/
  349. .updateStreet {
  350. width: 1123px;
  351. height: 600px;
  352. }
  353. #detail_table th,
  354. #detail_table tr,
  355. #detail_table td {
  356. text-align: left;
  357. }
  358. /*闁稿繑婀圭划顒勫礌閸濆嫬绠奸柟顖氭噹閸狅拷*/
  359. .web-assessment {
  360. overflow: hidden;
  361. }
  362. .web-assessment .dataTab>.layui-tab-title.tabName li {
  363. font-size: 18px;
  364. }
  365. .layui-laypage .layui-laypage-curr .layui-laypage-em {
  366. background-color: #1E8BFC !important;
  367. }
  368. .layui-laypage button {
  369. background-color: #1E8BFC !important;
  370. color: #ffffff;
  371. }
  372. /*24閻忓繐绻戝鍌炲礃閸涱喗绾柡鍌滃閺嬪啰绮╅敓锟�*/
  373. .article-warp {
  374. margin-top: 19px;
  375. }
  376. .article-warp ul li {
  377. width: 100%;
  378. /* height: 22px; */
  379. margin-bottom: 20px;
  380. }
  381. .article-warp ul li a {
  382. display: block;
  383. width: 100%;
  384. /* height: 22px; */
  385. }
  386. .article-warp .sort-div {
  387. display: inline-block;
  388. width: 107px;
  389. /* height: 26px; */
  390. border: 1px solid #007EFF;
  391. font-size: 14px;
  392. text-align: center;
  393. line-height: 26px;
  394. color: #007EFF;
  395. }
  396. .article-warp .sort-artTitle {
  397. font-size: 14px;
  398. font-family: Microsoft YaHei;
  399. font-weight: 400;
  400. color: #333333;
  401. }
  402. #test7 {
  403. text-align: left;
  404. }
  405. #test8 {
  406. text-align: left;
  407. }
  408. /*闁告瑦鍨电粩鐑藉箵閹版澘鏅�*/
  409. .remindList {
  410. width: 100%;
  411. /*height: 100px;*/
  412. }
  413. .remindList li {
  414. width: 341px;
  415. float: left;
  416. height: 55px;
  417. line-height: 55px;
  418. box-sizing: border-box;
  419. margin: 28px 0 0 28px;
  420. text-align: center;
  421. }
  422. .remindList li:nth-child(1) {
  423. background: linear-gradient(0deg, #43DC99 0%, #36B47E 100%);
  424. margin-left: 0;
  425. }
  426. .remindList li:nth-child(2) {
  427. background: linear-gradient(0deg, #F78E49 0%, #F7A56F 100%);
  428. }
  429. .remindList li:nth-child(3) {
  430. background: linear-gradient(0deg, #C11E1E 0%, #F64444 100%);
  431. }
  432. .clearfix:after {
  433. content: ".";
  434. display: block;
  435. height: 0;
  436. clear: both;
  437. visibility: hidden;
  438. }
  439. .messageList {
  440. width: 342px;
  441. float: left;
  442. border: 1px solid #E3E9F0;
  443. box-sizing: border-box;
  444. }
  445. .messageList:nth-child(2) {
  446. margin: 0 26px;
  447. }
  448. .messageList li {
  449. width: 315px;
  450. height: 100%;
  451. background: #F1F5F9;
  452. border-radius: 4px 4px 0 0;
  453. margin: 10px auto;
  454. }
  455. .messageList li .messageName {
  456. display: flex;
  457. justify-content: space-between;
  458. height: 40px;
  459. line-height: 40px;
  460. background: #D7DEE6;
  461. padding: 0 10px 0 17px;
  462. box-sizing: border-box;
  463. }
  464. .messageList li .messageName .dx-title {
  465. background: #2D7BCC;
  466. border-radius: 2px;
  467. font-size: 14px;
  468. font-family: Microsoft YaHei;
  469. font-weight: 400;
  470. color: #FFFFFF;
  471. margin: 6px 5px;
  472. height: 28px;
  473. line-height: 28px;
  474. padding: 0 13px;
  475. }
  476. .messageList li .messageName .badge {
  477. margin: 5px 5px;
  478. height: 18px;
  479. line-height: 18px;
  480. width: 18px;
  481. }
  482. .messageList .flexMessage {
  483. display: flex;
  484. }
  485. .messageList .sameMessage {
  486. font-size: 14px;
  487. font-family: Microsoft YaHei;
  488. font-weight: 400;
  489. color: #333333;
  490. padding: 10px 16px 0px 16px;
  491. }
  492. .messageList .sameMessage.sameMessagesec {
  493. padding-bottom: 10px;
  494. }
  495. /*闁告梻濮撮崳娲礆閸℃稏锟斤拷*/
  496. .dataTabSec .layui-tab-title li {
  497. width: 151px;
  498. height: 36px;
  499. background: #FFFFFF;
  500. border: 1px solid #A4A4A4;
  501. font-size: 16px;
  502. font-family: Microsoft YaHei;
  503. font-weight: 400;
  504. color: #666666 !important;
  505. }
  506. .dataTabSec .layui-tab-title .layui-this {
  507. background: #DFEDFF;
  508. border: 1px solid #2F7CD3;
  509. font-weight: bold;
  510. color: #2F7CD3;
  511. }
  512. .dataTabSec.layui-tab-brief>.layui-tab-title .layui-this:after {
  513. border-bottom: none;
  514. }
  515. .operation .layui-form-item {
  516. clear: none;
  517. width: 100%;
  518. height: 32px;
  519. }
  520. .dataTabSec .operation .layui-form-item .layui-form-label {
  521. width: auto;
  522. /*margin-left: 77px;*/
  523. }
  524. .dataTabSec .operation .unionOperation {
  525. display: flex;
  526. }
  527. .dataTabSec .operation .unionOperation .layui-form-item:nth-child(1) .layui-form-label {
  528. padding: 9px 10px;
  529. }
  530. .dataTabSec .operation .layui-form-item .layui-input-block {
  531. margin-left: 77px;
  532. width: 276px;
  533. }
  534. .dataTabSec .operation .unionOperation .layui-form-item:nth-child(1) {
  535. width: 170px;
  536. }
  537. /*.dataTab .operation .unionOperation .layui-form-item:nth-child(2) {*/
  538. /* width: 90px;*/
  539. /*}*/
  540. .dataTabSec .operation .unionOperation .layui-form-item:first-child .layui-input-block {
  541. width: 144px;
  542. }
  543. /*.dataTab .operation .unionOperation .layui-form-item:nth-child(1) {*/
  544. /* width: 170px;*/
  545. /*}*/
  546. .dataTabSec .operation .unionOperation .layui-form-item:nth-child(2) .layui-input-block {
  547. width: 125px;
  548. margin-left: 58px;
  549. }
  550. .dataTabSec .operation .layui-form-item .layui-btn {
  551. width: 100px;
  552. height: 40px;
  553. background: #2C8DEB;
  554. border-radius: 4px;
  555. margin-top: 15px;
  556. }
  557. .dataTabSec .layui-form-select dl dd.layui-this {
  558. background: #2C8DEB;
  559. }
  560. .dataTabSec .layui-table td {
  561. text-align: left;
  562. }
  563. .lay_border {
  564. border-bottom: 1px solid #ECF0F8;
  565. }
  566. .layui-nav {
  567. background-color: #FFFFFF;
  568. font-size: 20px;
  569. }
  570. .layui-nav .layui-nav-item a {
  571. color: #333333;
  572. }
  573. .layui-nav .layui-nav-item a:hover {
  574. color: #333333;
  575. }
  576. .tablebox,
  577. .tablebox2 {
  578. /*height: 376px;*/
  579. /*overflow: hidden;*/
  580. position: relative;
  581. width: 100%;
  582. }
  583. .web-assessmentde {
  584. height: 3400px;
  585. overflow-y: auto;
  586. }
  587. .score {
  588. line-height: 38px;
  589. }
  590. .rightBottomSameContent {
  591. height: 370px;
  592. overflow-y: auto;
  593. }
  594. #web_Assessment {
  595. height: 800px;
  596. }
  597. /* 閹板鎻╅崝鐐插娴滃瀵氶崡妤佸剰閸愮數绮虹拋鈽呯礄婢堆呯埠鐠佲槄绱� */
  598. ./* city_box {
  599. width: 800px;
  600. height: 60px;
  601. margin: 25px 0px;
  602. }
  603. .city_box .happy_headbox {
  604. float: left;
  605. width: 40%;
  606. background-color: #1E9FFF;
  607. margin-right: 20px;
  608. height: 100%;
  609. }
  610. .happy_headbox p {
  611. text-align: center;
  612. color: #fff;
  613. font-weight: bold;
  614. margin: 10px 0px;
  615. font-size: 18px;
  616. }
  617. .city_box .happy_headbox:nth-child(2) {
  618. background: #E3E3E3;
  619. } */
  620. /* 閹板鎻╅崝鐐插娴滃瀵氶崡妤冪埠鐠侊拷 */
  621. .content-wrap>div>div>div>div>div>div.layui-tab-item.layui-show>div>div>div.layui-tab.update-tab>div.layui-tab.layui-tab-brief>ul {
  622. border: none;
  623. }
  624. .layui-tab-brief>.layui-tab-more li.layui-this:after,
  625. .layui-tab-brief>.layui-tab-title .layui-this:after {
  626. border: none;
  627. }
  628. .content-wrap>div>div>div>div>div>div.layui-tab-item.layui-show>div>div>div.layui-tab.update-tab>div.layui-tab.layui-tab-brief>ul>li {
  629. width: 200px;
  630. height: 64px;
  631. background-color: red;
  632. margin-right: 20px;
  633. padding: 0px;
  634. }
  635. .min_box {
  636. width: 200px;
  637. height: 70px;
  638. display: flex;
  639. font-size: 16px;
  640. background: linear-gradient(30deg, #F78E49, #F6A46C );
  641. }
  642. .min_box .min_img{
  643. height: 50px; width:50px; margin: 10px 5px;
  644. }
  645. .min_box .right{
  646. width: 100px;
  647. color: #FFFFFF;
  648. font-weight: bold;
  649. }
  650. li .min_color {
  651. background: linear-gradient(30deg, #37B37D, #43DC99 );
  652. }
  653. /* 瀵湱鐛� */
  654. .xq{
  655. border-left: 4px solid #333333;
  656. width: 105px;
  657. padding-left: 10px;
  658. margin: 30px 0px;
  659. font-size: 20px;
  660. font-weight: bold;
  661. }
  662. .xq_box{
  663. width: 500px;
  664. height: 100%;
  665. }
  666. .xq_box .xq_minbox{
  667. margin: 20px 0px;
  668. }
  669. .xq_box .xq_minbox .xq_font{
  670. color: #999999;
  671. }
  672. .w-sms-tab {
  673. display: flex;
  674. margin-top: 20px;
  675. float: left;
  676. }
  677. .w-sms-tab li {
  678. width: 120px;
  679. border: 1px solid #333;
  680. text-align: center;
  681. height: 36px;
  682. line-height: 36px;
  683. cursor: pointer;
  684. }
  685. .w-sms-tab li:first-child {
  686. border-right: 0px;
  687. }
  688. .w-sms-tab li:last-child{
  689. border-left: 0px;
  690. }
  691. .w-sms-tab .w-sms-tab-this {
  692. border: 1px solid #1276ff;
  693. border-left: 1px solid #1276ff !important;
  694. border-right: 1px solid #1276ff !important;
  695. color: #1276ff;
  696. }