index.css 18 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138
  1. header {
  2. width: 100%;
  3. padding: 15px 50px 15px 15px;
  4. background-color: #005395;
  5. line-height: 66px;
  6. color: #fff;
  7. font-size: 18px;
  8. position: relative;
  9. z-index: 1;
  10. }
  11. .logo .line {
  12. margin: 0 16px;
  13. }
  14. .logo img {
  15. height: 36px;
  16. }
  17. .logOut {
  18. line-height: 36px;
  19. cursor: pointer;
  20. position: relative;
  21. }
  22. .logOut .down {
  23. display: inline-block;
  24. width: 14px;
  25. height: 9px;
  26. background: url(../imgs/icon_xiala.png) center no-repeat;
  27. -ms-behavior: url(backgroundsize.min.htc);
  28. behavior: url(backgroundsize.min.htc);
  29. background-size: cover;
  30. }
  31. .logOut .up {
  32. display: inline-block;
  33. width: 14px;
  34. height: 9px;
  35. background: url(../imgs/icon_shangla.png) center no-repeat;
  36. -ms-behavior: url(backgroundsize.min.htc);
  37. behavior: url(backgroundsize.min.htc);
  38. background-size: cover;
  39. }
  40. .logOut .logOutWrap {
  41. display: none;
  42. width: 100%;
  43. position: absolute;
  44. top: 40px;
  45. left: 0;
  46. height: 34px;
  47. text-align: center;
  48. z-index: 9;
  49. overflow: hidden;
  50. border-radius: 6px;
  51. behavior: url(PIE.htc);
  52. font-size: 14px;
  53. }
  54. .logOut .logOutWrap li {
  55. height: 34px;
  56. line-height: 34px;
  57. background-color: #fff;
  58. color: #333;
  59. padding-left: 16px;
  60. }
  61. .logOut .logOutWrap li:hover {
  62. background-color: #e6eef4;
  63. }
  64. .bg {
  65. position: absolute;
  66. left: 0;
  67. bottom: 0;
  68. width: 100%;
  69. min-width: 1300px;
  70. }
  71. article {
  72. width: 100%;
  73. position: absolute;
  74. top: 66px;
  75. left: 0;
  76. right: 0;
  77. bottom: 0;
  78. background: url(../imgs/BG_web.png) center no-repeat;
  79. -ms-behavior: url(backgroundsize.min.htc);
  80. behavior: url(backgroundsize.min.htc);
  81. background-size: cover;
  82. padding: 16px 0;
  83. }
  84. article > .content {
  85. width: 1020px;
  86. height: 100%;
  87. margin: 0 auto;
  88. }
  89. article > .content .left,
  90. article > .content .right {
  91. width: 300px;
  92. height: 100%;
  93. display: inline-block;
  94. overflow: hidden;
  95. }
  96. article > .content .center {
  97. width: 400px;
  98. height: 100%;
  99. margin: 0 10px;
  100. position: relative;
  101. }
  102. article > .content .left {
  103. position: relative;
  104. }
  105. .left .top {
  106. width: 100%;
  107. height: 216px;
  108. position: absolute;
  109. overflow: hidden;
  110. }
  111. .left .bottom {
  112. width: 100%;
  113. height: 100%;
  114. padding-top: 226px;
  115. }
  116. .left .bottom .con {
  117. width: 100%;
  118. height: 100%;
  119. position: relative;
  120. }
  121. .left .bottom .con .con-wrap {
  122. width: 100%;
  123. overflow-y: auto;
  124. position: absolute;
  125. top: 41px;
  126. left: 0;
  127. right: 0;
  128. bottom: 0;
  129. }
  130. .opcBg {
  131. border-radius: 8px;
  132. background: #fff;
  133. background: rgba(255, 255, 255, 0.85);
  134. filter: alpha(opacity=85);
  135. }
  136. .title {
  137. font-size: 16px;
  138. line-height: 40px;
  139. padding-left: 16px;
  140. border-bottom: 1px solid #f9f9f9;
  141. position: relative;
  142. color: #333;
  143. }
  144. .infoItem {
  145. padding: 8px 16px;
  146. border-bottom: 1px solid #f3f3f3;
  147. }
  148. .infoItem .time {
  149. font-size: 12px;
  150. color: #999;
  151. }
  152. .infoItem .time .fr {
  153. color: #666;
  154. }
  155. .infoItem .content {
  156. position: relative;
  157. height: 21px;
  158. overflow: hidden;
  159. }
  160. .infoItem .content.second {
  161. height: 42px;
  162. }
  163. .infoItem .content p {
  164. width: 85%;
  165. height: 100%;
  166. }
  167. .infoItem .detail {
  168. color: #005395;
  169. position: absolute;
  170. top: 0;
  171. right: 0;
  172. }
  173. .infoItem .detail:hover {
  174. text-decoration: underline;
  175. cursor: pointer;
  176. }
  177. .searchBox {
  178. width: 170px;
  179. height: 22px;
  180. border: 1px solid #d1d1d1;
  181. background: #fff;
  182. position: absolute;
  183. top: 50%;
  184. right: 8px;
  185. margin-top: -12px;
  186. }
  187. .searchBox input {
  188. width: 100%;
  189. height: 100%;
  190. border: none;
  191. padding-left: 10px;
  192. padding-right: 30px;
  193. vertical-align: top;
  194. }
  195. .searchBox input:focus {
  196. border: none;
  197. outline: none;
  198. }
  199. .searchBox .icon {
  200. display: inline-block;
  201. width: 30px;
  202. position: absolute;
  203. top: -1px;
  204. right: 0;
  205. color: #999;
  206. text-align: center;
  207. cursor: pointer;
  208. }
  209. .center .centerTitle {
  210. text-align: center;
  211. font-size: 18px;
  212. color: #333;
  213. font-weight: 800;
  214. padding-left: 18px;
  215. padding-right: 18px;
  216. }
  217. .form {
  218. padding-left: 18px;
  219. padding-right: 18px;
  220. overflow-y: auto;
  221. position: absolute;
  222. top: 41px;
  223. left: 0;
  224. right: 0;
  225. bottom: 27px;
  226. }
  227. .form .formItem {
  228. margin-bottom: 5px;
  229. }
  230. .form .formItem input,
  231. .form .formItem textarea {
  232. color: #999;
  233. }
  234. .form .formItem .label {
  235. line-height: 34px;
  236. }
  237. .form .formItem .label strong {
  238. line-height: 34px;
  239. color: #999;
  240. font-size: 12px;
  241. }
  242. .form .formItem .inpBox {
  243. width: 100%;
  244. height: 34px;
  245. padding: 5px 16px;
  246. background: #fff;
  247. border: 1px solid #d1d1d1;
  248. border-radius: 2px;
  249. }
  250. .form .formItem .inpBox input {
  251. width: 100%;
  252. height: 100%;
  253. vertical-align: top;
  254. border: none;
  255. font-size: 12px;
  256. }
  257. /* 区域地点 */
  258. .form .formItem .areaplace {
  259. width: 100%;
  260. height: 34px;
  261. }
  262. .form .formItem .areaplace .areaBox {
  263. width: 100%;
  264. height: 100%;
  265. }
  266. .form .formItem .areaplace .areaBox select {
  267. width: 173px;
  268. height: 100%;
  269. padding-bottom: 5px\9;
  270. }
  271. /* 详细地址&&报修内容 */
  272. .form .formItem .address textarea,
  273. .form .formItem .repair textarea {
  274. width: 100%;
  275. resize: none;
  276. height: 64px;
  277. padding: 9px 20px;
  278. font-size: 12px;
  279. }
  280. /* 报修图片 */
  281. .form .formItem .f-images-list .f-images-item {
  282. float: left;
  283. width: 50px;
  284. height: 51px;
  285. background-color: #fff;
  286. margin-left: 98px;
  287. position: relative;
  288. background: url(./../imgs/image_tiantjiatupian.png) no-repeat 0 0;
  289. z-index: 9;
  290. }
  291. .form .formItem .f-images-list .f-images-item .form-file {
  292. width: 100%;
  293. height: 100%;
  294. }
  295. .form .formItem .f-images-list .f-images-item:first-child {
  296. margin-left: 0;
  297. }
  298. .form .formItem .f-images-list .f-images-item input {
  299. width: 100%;
  300. height: 100%;
  301. opacity: 0;
  302. filter: alpha(opacity=0);
  303. }
  304. .form .formItem .f-images-list .f-images-item .f-thumb-wrap {
  305. width: 100%;
  306. height: 100%;
  307. position: absolute;
  308. left: 0;
  309. top: 0;
  310. }
  311. .form .formItem .f-images-list .f-images-item .f-thumb-wrap .f-thumb {
  312. width: 100%;
  313. height: 100%;
  314. display: inline-block;
  315. }
  316. .form .formItem .f-images-list .f-images-item .f-thumb-close {
  317. font-size: 22px;
  318. position: absolute;
  319. right: -7px;
  320. top: -13px;
  321. cursor: pointer;
  322. color: #991f00;
  323. z-index: 99999;
  324. }
  325. /* 提交 */
  326. .form .f-submit {
  327. display: block;
  328. width: 128px;
  329. height: 34px;
  330. background-color: #005395;
  331. border-radius: 2px;
  332. text-align: center;
  333. line-height: 34px;
  334. margin: 40px auto 0;
  335. cursor: pointer;
  336. color: #fff;
  337. border: 0 none;
  338. }
  339. .form .f-submit.f-submit--disable {
  340. cursor: not-allowed;
  341. }
  342. .form .f-submit:hover {
  343. background-color: #00437a;
  344. }
  345. .form .f-submit.f-submit--disable:hover {
  346. background-color: #005395;
  347. }
  348. /* 最新报修 */
  349. .right {
  350. position: relative;
  351. }
  352. .right .r-list {
  353. padding-right: 6px;
  354. position: absolute;
  355. top: 41px;
  356. left: 0;
  357. right: 0;
  358. bottom: 0;
  359. overflow-y: auto;
  360. }
  361. .right .r-list .r-item {
  362. height: 165px;
  363. padding-left: 16px;
  364. overflow: hidden;
  365. color: #333;
  366. margin-top: 1px;
  367. }
  368. .right .r-list .r-item .r-item-title {
  369. font-weight: bold;
  370. height: 20px;
  371. line-height: 20px;
  372. margin-top: 16px;
  373. }
  374. .right .r-list .r-item .r-item-content {
  375. line-height: 20px;
  376. height: 40px;
  377. margin-top: 4px;
  378. }
  379. .right .r-list .r-item .r-item-info {
  380. margin-top: 4px;
  381. }
  382. .right .r-list .r-item .r-item-info strong {
  383. font-size: 12px;
  384. color: #999;
  385. line-height: 22px;
  386. }
  387. .right .r-list .r-item .r-item-info a {
  388. color: #005395;
  389. margin-right: 8px;
  390. line-height: 22px;
  391. }
  392. .right .r-list .r-item .r-item-process {
  393. margin-top: 10px;
  394. margin-left: 7px;
  395. }
  396. .right .r-list .r-item .r-item-process .r-item-processitem {
  397. width: 61px;
  398. height: 40px;
  399. border-top: 2px solid #ddd;
  400. position: relative;
  401. }
  402. .right .r-list .r-item .r-item-process .r-item-processitem.active {
  403. border-top: 2px solid #005395;
  404. }
  405. .right .r-list .r-item .r-item-process .r-item-processitem .outerCircleEnd {
  406. display: none;
  407. }
  408. .right .r-list .r-item .r-item-process .r-item-processitem.end .outerCircleEnd {
  409. display: block;
  410. position: absolute;
  411. left: 0px;
  412. top: -12px;
  413. width: 20px;
  414. height: 20px;
  415. background-color: #fff;
  416. border-radius: 50%;
  417. behavior: url(PIE.htc);
  418. overflow: hidden;
  419. }
  420. .right .r-list .r-item .r-item-process .r-item-processitem.end .innerCircleEnd {
  421. width: 20px;
  422. height: 20px;
  423. position: relative;
  424. left: 0;
  425. top: -4px;
  426. top: -6px\9;
  427. color: #67a52a;
  428. font-size: 20px;
  429. background-color: #fff;
  430. border-radius: 50%;
  431. behavior: url(PIE.htc);
  432. }
  433. .right
  434. .r-list
  435. .r-item
  436. .r-item-process
  437. .r-item-processitem.r-item-processitem__last {
  438. width: 14px;
  439. }
  440. .right .r-list .r-item .r-item-process .r-item-processitem .outerCircle {
  441. position: absolute;
  442. left: 0px;
  443. top: -9px;
  444. width: 14px;
  445. height: 14px;
  446. border-radius: 50%;
  447. behavior: url(PIE.htc);
  448. border: 1px solid #ddd;
  449. background-color: #fff;
  450. }
  451. .right .r-list .r-item .r-item-process .r-item-processitem .innerCircle {
  452. width: 8px;
  453. height: 8px;
  454. background-color: #ddd;
  455. border-radius: 50%;
  456. behavior: url(PIE.htc);
  457. position: absolute;
  458. left: 2px;
  459. top: 2px;
  460. }
  461. .right .r-list .r-item .r-item-process .r-item-processitem.active .outerCircle {
  462. border: 1px solid #005395;
  463. background-color: #fff;
  464. }
  465. .right .r-list .r-item .r-item-process .r-item-processitem.active .innerCircle {
  466. background-color: #005395;
  467. }
  468. .right .r-list .r-item .r-item-process .r-item-processitem h3 {
  469. font-size: 12px;
  470. margin-top: 10px;
  471. position: relative;
  472. left: -7px;
  473. display: inline-block;
  474. }
  475. .right
  476. .r-list
  477. .r-item
  478. .r-item-process
  479. .r-item-processitem.r-item-processitem__last
  480. h3 {
  481. width: 30px;
  482. }
  483. /* pop1 */
  484. #pop1 {
  485. display: none;
  486. width: 600px;
  487. height: 730px;
  488. max-height: 100%;
  489. max-height: none\9;
  490. border-radius: 2px;
  491. background-color: #fff;
  492. position: absolute;
  493. top: 0;
  494. right: 0;
  495. bottom: 0;
  496. left: 0;
  497. margin: auto;
  498. z-index: 999;
  499. overflow: hidden;
  500. }
  501. #pop1 .pop1-title {
  502. font-size: 16px;
  503. color: #333;
  504. height: 40px;
  505. line-height: 40px;
  506. text-align: center;
  507. border-bottom: 2px solid #eee;
  508. position: relative;
  509. }
  510. #pop1 .pop1-title .pop1-title-icon {
  511. font-size: 16px;
  512. color: #666;
  513. position: absolute;
  514. top: 8px;
  515. right: 12px;
  516. cursor: pointer;
  517. }
  518. #pop1 .pop1-hd {
  519. margin-left: 16px;
  520. margin-right: 16px;
  521. height: 80%;
  522. background-color: #f5f5f5;
  523. border-radius: 2px;
  524. border: 1px solid #d1d1d1;
  525. margin-top: 16px;
  526. overflow-y: auto;
  527. }
  528. #pop1 .pop1-hd .pop1-hd__item {
  529. padding-top: 16px;
  530. padding-bottom: 18px;
  531. margin-left: 16px;
  532. margin-right: 16px;
  533. color: #333;
  534. border-top: 2px solid #ddd;
  535. }
  536. #pop1 .pop1-hd .pop1-hd__item:first-child {
  537. border-top: none;
  538. }
  539. #pop1 .pop1-hd .pop1-hd__item .pop1-hd__itemBlock {
  540. padding-top: 16px;
  541. }
  542. #pop1 .pop1-hd h3 {
  543. font-size: 16px;
  544. font-weight: bold;
  545. }
  546. #pop1 .pop1-hd .pop1-hd__itemList {
  547. width: 100%;
  548. float: left;
  549. margin-top: 4px;
  550. }
  551. #pop1 .pop1-hd .pop1-hd__itemList.pop1-hd__itemList--five {
  552. width: 50%;
  553. }
  554. #pop1
  555. .pop1-hd
  556. .pop1-hd__itemList.pop1-hd__itemList--five.pop1-hd__itemList--tag {
  557. padding-left: 125px;
  558. }
  559. #pop1 .pop1-hd .pop1-hd__itemList .pop1-hd__itemListImgs {
  560. display: inline-block;
  561. vertical-align: top;
  562. }
  563. #pop1 .pop1-hd .pop1-hd__itemList .pop1-hd__itemListImgs img {
  564. width: 50px;
  565. height: 51px;
  566. float: left;
  567. margin-left: 16px;
  568. }
  569. #pop1 .pop1-hd .pop1-hd__itemList .pop1-hd__itemListImgs img:first-child {
  570. margin-left: 0;
  571. }
  572. #pop1 .pop1-hd .pop1-hd__itemList .pop1-hd__itemListProcess {
  573. font-size: 12px;
  574. color: #999;
  575. }
  576. #pop1
  577. .pop1-hd
  578. .pop1-hd__itemList
  579. .pop1-hd__itemListProcess
  580. .pop1-hd__processRight {
  581. width: 460px;
  582. }
  583. #pop1
  584. .pop1-hd
  585. .pop1-hd__itemList
  586. .pop1-hd__itemListProcess
  587. .pop1-hd__processRight
  588. .pop1-hd__processRightItem {
  589. margin-top: 8px;
  590. position: relative;
  591. }
  592. #pop1
  593. .pop1-hd
  594. .pop1-hd__itemList
  595. .pop1-hd__itemListProcess
  596. .pop1-hd__processRight
  597. .pop1-hd__processRightItem
  598. span {
  599. display: inline-block;
  600. height: 16px;
  601. }
  602. #pop1
  603. .pop1-hd
  604. .pop1-hd__itemList
  605. .pop1-hd__itemListProcess
  606. .pop1-hd__processRight
  607. .pop1-hd__processRightItem
  608. h4 {
  609. position: absolute;
  610. left: -74px;
  611. top: 8px;
  612. width: 76px;
  613. }
  614. #pop1
  615. .pop1-hd
  616. .pop1-hd__itemList
  617. .pop1-hd__itemListProcess
  618. .pop1-hd__processRight
  619. .pop1-hd__processRightItem
  620. h4.end {
  621. color: #333;
  622. }
  623. #pop1
  624. .pop1-hd
  625. .pop1-hd__itemList
  626. .pop1-hd__itemListProcess
  627. .pop1-hd__processRight
  628. .pop1-hd__processRightItem
  629. .pop1-hd__processCircle {
  630. position: absolute;
  631. left: -30px;
  632. top: 12px;
  633. width: 8px;
  634. height: 8px;
  635. background-color: #79a3c4;
  636. border-radius: 50%;
  637. behavior: url(PIE.htc);
  638. z-index: 9;
  639. }
  640. #pop1
  641. .pop1-hd
  642. .pop1-hd__itemList
  643. .pop1-hd__itemListProcess
  644. .pop1-hd__processRight
  645. .pop1-hd__processRightItem
  646. .pop1-hd__processCircle.end {
  647. background-color: #00437a;
  648. }
  649. #pop1
  650. .pop1-hd
  651. .pop1-hd__itemList
  652. .pop1-hd__itemListProcess
  653. .pop1-hd__processRight
  654. .pop1-hd__processRightItem
  655. .pop1-hd__processCircle:before {
  656. content: "";
  657. height: 38px;
  658. width: 0;
  659. border-left: 2px dashed #ddd;
  660. position: absolute;
  661. left: 50%;
  662. bottom: 8px;
  663. margin-left: -1px;
  664. }
  665. #pop1
  666. .pop1-hd
  667. .pop1-hd__itemList
  668. .pop1-hd__itemListProcess
  669. .pop1-hd__processRight
  670. .pop1-hd__processRightItem:first-child
  671. .pop1-hd__processCircle:before {
  672. display: none;
  673. }
  674. #pop1
  675. .pop1-hd
  676. .pop1-hd__itemList
  677. .pop1-hd__itemListProcess
  678. .pop1-hd__processRight
  679. .pop1-hd__processRightItem
  680. .pop1-hd__processCircle:after {
  681. content: "";
  682. height: 0;
  683. width: 12px;
  684. border-top: 1px dashed #ddd;
  685. position: absolute;
  686. left: 8px;
  687. top: 50%;
  688. }
  689. #pop1
  690. .pop1-hd
  691. .pop1-hd__itemList
  692. .pop1-hd__itemListProcess
  693. .pop1-hd__processRight
  694. .pop1-hd__processRightItem
  695. p {
  696. word-break: break-all;
  697. line-height: 18px;
  698. margin-top: 4px;
  699. }
  700. #pop1 .pop1-tips .pop1-tipsBd {
  701. font-size: 12px;
  702. color: #666;
  703. margin-top: 8px;
  704. text-align: left;
  705. }
  706. /* 评价 start */
  707. #pop1 .pop1-evaluate .pop1-evaluateWrap {
  708. margin-top: 16px;
  709. }
  710. #pop1 .pop1-evaluate .pop1-evaluateOperate #evaluate .star-text {
  711. color: #79a3c4;
  712. }
  713. #pop1 .pop1-evaluate .pop1-evaluateOperate .star {
  714. font-size: 0;
  715. }
  716. #pop1 .pop1-evaluate .pop1-evaluateOperate .star i {
  717. font-size: 14px;
  718. color: #eaeaea;
  719. cursor: pointer;
  720. margin-right: 8px;
  721. }
  722. #pop1 .pop1-evaluate .pop1-evaluateOperate .star i.active {
  723. color: #005395;
  724. }
  725. #pop1 .pop1-evaluate .evaluate-textareaWrap {
  726. margin-top: 8px;
  727. }
  728. #pop1 .pop1-evaluate .evaluate-textarea {
  729. height: 216px;
  730. width: 100%;
  731. resize: none;
  732. padding: 16px;
  733. }
  734. /* 评价 end */
  735. /* 撤回 start */
  736. #pop1 .pop1-back {
  737. padding-top: 0 !important;
  738. padding-bottom: 8px !important;
  739. }
  740. #pop1 .pop1-back h3 {
  741. color: #333;
  742. font-size: 14px;
  743. font-weight: normal;
  744. margin: 3px 0;
  745. }
  746. #pop1 .pop1-back h3 span {
  747. color: #fd3d55;
  748. }
  749. #pop1 .pop1-back .back-textarea {
  750. width: 100%;
  751. height: 80px;
  752. border: 1px solid #d1d1d1;
  753. resize: none;
  754. padding-left: 16px;
  755. padding-top: 16px;
  756. }
  757. /* 撤回 end */
  758. /* 提示 start */
  759. #pop1 .pop1-tips {
  760. text-align: center;
  761. }
  762. #pop1 .pop1-tips i {
  763. font-size: 26px;
  764. color: #a2d516;
  765. }
  766. #pop1 .pop1-tips p {
  767. color: #333;
  768. text-align: center;
  769. }
  770. /* 提示 end */
  771. /* 公告详情 start */
  772. #pop1 .notice .notice-dept {
  773. margin-top: 16px;
  774. }
  775. #pop1 .notice .notice-content {
  776. margin-top: 16px;
  777. }
  778. #pop1 .notice .notice-content img {
  779. margin-top: 16px;
  780. margin-bottom: 16px;
  781. width: 100%;
  782. }
  783. /* 公告详情 end */
  784. /* 常见问题详情 start */
  785. #pop1 .solution .solution-createUser {
  786. margin-top: 16px;
  787. }
  788. #pop1 .solution .solution-content {
  789. margin-top: 16px;
  790. }
  791. #pop1 .solution .solution-content img {
  792. margin-top: 16px;
  793. margin-bottom: 16px;
  794. width: 100%;
  795. }
  796. /* 常见问题详情 end */
  797. #pop1 .pop1-operate {
  798. margin-top: 14px;
  799. }
  800. #pop1 .pop1-operate .pop1-oneBtn,
  801. #pop1 .pop1-operate .pop1-twoBtn {
  802. text-align: center;
  803. font-size: 0;
  804. }
  805. #pop1 .pop1-operate .pop1-twoBtn {
  806. display: none;
  807. }
  808. #pop1 .pop1-operate .pop1-oneBtn .pop1-operateBtn {
  809. width: 120px;
  810. height: 34px;
  811. text-align: center;
  812. line-height: 32px;
  813. border-radius: 2px;
  814. display: inline-block;
  815. cursor: pointer;
  816. border: 1px solid #005395;
  817. }
  818. #pop1 .pop1-operate .pop1-twoBtn .pop1-operateBtn {
  819. width: 80px;
  820. height: 34px;
  821. text-align: center;
  822. line-height: 34px;
  823. border-radius: 2px;
  824. display: inline-block;
  825. cursor: pointer;
  826. }
  827. #pop1 .pop1-operate .pop1-operateBtn.oneConfirm {
  828. background-color: #e6eef4;
  829. font-size: 14px;
  830. color: #005395;
  831. }
  832. #pop1 .pop1-operate .pop1-operateBtn.oneConfirm:hover {
  833. background-color: #79a3c4;
  834. border-color: #79a3c4;
  835. }
  836. #pop1 .pop1-operate .pop1-operateBtn.twoConfirm {
  837. background-color: #005395;
  838. color: #fff;
  839. font-size: 14px;
  840. }
  841. #pop1 .pop1-operate .pop1-operateBtn.twoConfirm:hover {
  842. background-color: #00437a;
  843. }
  844. #pop1 .pop1-operate .pop1-operateBtn.twoCancel {
  845. background-color: #fff;
  846. color: #666;
  847. border: 1px solid #ddd;
  848. font-size: 14px;
  849. margin-left: 8px;
  850. line-height: 32px;
  851. }
  852. #pop1 .pop1-operate .pop1-operateBtn.twoCancel:hover {
  853. border: 1px solid #999;
  854. }
  855. /* 遮罩 */
  856. #mask {
  857. display: none;
  858. position: absolute;
  859. top: 0;
  860. right: 0;
  861. bottom: 0;
  862. left: 0;
  863. background: rgba(0, 0, 0, 0.5);
  864. -pie-background: rgba(0, 0, 0, 0.5);
  865. behavior: url(PIE.htc);
  866. z-index: 998;
  867. }
  868. /* 无内容 */
  869. #notice_list {
  870. position: relative;
  871. height: 175px;
  872. }
  873. .noContent {
  874. width: 156px;
  875. height: 110px;
  876. position: absolute;
  877. left: 50%;
  878. top: 50%;
  879. margin-left: -78px;
  880. margin-top: -55px;
  881. }
  882. .noContent p {
  883. text-align: center;
  884. font-size: 12px;
  885. color: #666;
  886. }
  887. /* loading */
  888. .loading {
  889. width: 35px;
  890. height: 35px;
  891. background: url(./../imgs/loading.gif) no-repeat;
  892. position: absolute;
  893. left: 0;
  894. top: 0;
  895. right: 0;
  896. bottom: 0;
  897. margin: auto;
  898. display: none;
  899. }
  900. /* 图片点击放大预览 */
  901. .pop1-hd__itemBxImgsMask {
  902. position: fixed;
  903. left: 0;
  904. top: 0;
  905. right: 0;
  906. bottom: 0;
  907. background: rgba(0, 0, 0, 0.5);
  908. -pie-background: rgba(0, 0, 0, 0.5);
  909. behavior: url(PIE.htc);
  910. z-index: 99999;
  911. }
  912. .pop1-hd__itemBxImgsMask img {
  913. width: 500px;
  914. position: absolute;
  915. left: 0;
  916. top: 0;
  917. right: 0;
  918. bottom: 0;
  919. margin: auto;
  920. background: #000;
  921. }
  922. /* 故障地点 */
  923. .address,
  924. .ks {
  925. position: relative;
  926. }
  927. #bx_address,
  928. #bx_ks {
  929. width: 100%;
  930. height: 34px;
  931. padding: 5px 16px;
  932. background: #fff;
  933. border: 1px solid #d1d1d1;
  934. border-radius: 2px;
  935. }
  936. #bx_address_ul,
  937. #bx_ks_ul {
  938. position: absolute;
  939. top: 34px;
  940. left: 0;
  941. width: 100%;
  942. max-height: 136px;
  943. overflow-y: auto;
  944. background-color: #fff;
  945. border: 1px solid #d1d1d1;
  946. border-top: none;
  947. z-index: 9999;
  948. display: none;
  949. }
  950. #bx_address_ul li,
  951. #bx_ks_ul li {
  952. height: 34px;
  953. border-bottom: 1px solid #d1d1d1;
  954. line-height: 32px;
  955. padding: 0 16px;
  956. cursor: pointer;
  957. }
  958. #bx_address_ul li:hover,
  959. #bx_ks_ul li:hover {
  960. /* background-color: #005395; */
  961. /* color: #fff; */
  962. }
  963. #bx_address_ul li:last-child,
  964. #bx_ks_ul li:last-child {
  965. border-bottom: none;
  966. }
  967. /* 自动建单 */
  968. #bx_eventClass{
  969. width:100%;
  970. height: 100%;
  971. border: 0 none;
  972. padding: 5px 16px;
  973. color: #999;
  974. }
  975. .bx_eventClass{
  976. padding:0!important;
  977. }