common.scss 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893
  1. // scroll
  2. ::-webkit-scrollbar {
  3. width: .5rem;
  4. height: .5rem;
  5. background: hsla(0, 0%, 100%, 0.6);
  6. }
  7. ::-webkit-scrollbar-track {
  8. border-radius: 0;
  9. }
  10. ::-webkit-scrollbar-thumb {
  11. border-radius: 0;
  12. background-color: rgba(95,95,95,.4);
  13. transition: background-color .15s;
  14. &:hover {
  15. background-color: rgba(95,95,95, .7);
  16. }
  17. }
  18. #cnzz_stat_icon_1267002346 {
  19. display: none;
  20. }
  21. // common style
  22. .clearfix {
  23. &:before, &:after {
  24. display: table;
  25. content: " ";
  26. }
  27. &:after {
  28. clear: both;
  29. }
  30. }
  31. .list-unstyled {
  32. padding-left: 0;
  33. list-style: none;
  34. }
  35. .list-inline li {
  36. display: inline-block;
  37. padding-left: 5px;
  38. padding-right: 5px;
  39. }
  40. .hide {
  41. opacity: 0;
  42. visibility: hidden;
  43. pointer-events: none;
  44. }
  45. .pull-left {
  46. float: left;
  47. }
  48. .pull-right {
  49. float: right;
  50. }
  51. .container {
  52. width: $container-width;
  53. margin: 0 auto;
  54. }
  55. .dl-horizontal dt {
  56. float: left;
  57. width: 160px;
  58. overflow: hidden;
  59. clear: left;
  60. text-align: right;
  61. text-overflow: ellipsis;
  62. white-space: nowrap;
  63. }
  64. .dl-horizontal dd {
  65. display: block;
  66. margin-left: 180px;
  67. &:before, &:after {
  68. display: table;
  69. content: " ";
  70. }
  71. &:after {
  72. clear: both;
  73. }
  74. }
  75. .dropdown {
  76. position: relative;
  77. .dropdown-toggle {
  78. cursor: pointer;
  79. }
  80. .dropdown-menu {
  81. position: absolute;
  82. left: 0;
  83. top: 100%;
  84. min-width: 100%;
  85. display: none;
  86. background-color: $white;
  87. z-index: 100;
  88. }
  89. &:hover {
  90. .dropdown-menu {
  91. display: block;
  92. }
  93. }
  94. }
  95. // button
  96. .btn {
  97. display: inline-block;
  98. height: 36px;
  99. line-height: 1;
  100. padding: 3px 12px;
  101. margin: 0;
  102. border: 1px solid transparent;
  103. text-align: center;
  104. white-space: nowrap;
  105. vertical-align: middle;
  106. -ms-touch-action: manipulation;
  107. touch-action: manipulation;
  108. cursor: pointer;
  109. -webkit-user-select: none;
  110. -moz-user-select: none;
  111. -ms-user-select: none;
  112. &.btn-default {
  113. color: $text;
  114. background-color: $white;
  115. border-color: $dividers;
  116. }
  117. &.btn-primary {
  118. color: $white;
  119. background-color: $primary;
  120. border-color: $primary;
  121. }
  122. }
  123. // form
  124. .form-control {
  125. -webkit-appearance: none;
  126. -moz-appearance: none;
  127. appearance: none;
  128. background-color: $white;
  129. background-image: none;
  130. border: $border;
  131. color: #999;
  132. display: inline-block;
  133. font-size: inherit;
  134. height: 36px;
  135. line-height: 1;
  136. outline: none;
  137. padding: 3px 10px;
  138. width: 100%;
  139. &.input-primary {
  140. border-color: $primary;
  141. }
  142. }
  143. .input-group {
  144. position: relative;
  145. display: inline-table;
  146. width: 100%;
  147. border-collapse: separate;
  148. .form-control, .input-group-btn {
  149. display: table-cell;
  150. }
  151. .input-group-addon, .input-group-btn {
  152. position: relative;
  153. width: 1px;
  154. white-space: nowrap;
  155. vertical-align: middle;
  156. }
  157. .form-control {
  158. position: relative;
  159. z-index: 2;
  160. float: left;
  161. width: 100%;
  162. }
  163. .input-group-btn {
  164. .btn {
  165. position: relative;
  166. }
  167. }
  168. }
  169. // vue animate
  170. .slide-down-enter-active, .slide-down-leave-active {
  171. transition: all .4s cubic-bezier(0, 1.2, 1, 0.5);
  172. opacity: .7;
  173. transform: translate3d(0, 4em, 0);
  174. }
  175. .slide-down-enter, .slide-down-leave-active {
  176. opacity: .3;
  177. transform: translate3d(0, 4em, 0);
  178. }
  179. .slide-left-enter-active, .slide-left-leave-active {
  180. transition: all .2s cubic-bezier(0, 1.2, 1, 0.5);
  181. opacity: .5;
  182. transform: translate3d(2em, 0, 0);
  183. }
  184. .slide-left-enter, .slide-left-leave-active {
  185. opacity: .3;
  186. transform: translate3d(2em, 0, 0);
  187. }
  188. .slide-right-enter-active, .slide-right-leave-active {
  189. transition: all .4s cubic-bezier(0, 1.2, 1, 0.5);
  190. opacity: .5;
  191. transform: translate3d(5em, 0, 0);
  192. }
  193. .slide-right-enter, .slide-right-leave-active {
  194. opacity: .3;
  195. transform: translate3d(5em, 0, 0);
  196. }
  197. .fade-enter-active, .fade-leave-active {
  198. transition: opacity .25s
  199. }
  200. .fade-enter, .fade-leave-active {
  201. opacity: 0
  202. }
  203. .fade-move {
  204. transition: transform .25s;
  205. }
  206. .page-enter-active, .page-leave-active {
  207. transition: opacity .25s
  208. }
  209. .page-enter, .page-leave-active {
  210. opacity: 0
  211. }
  212. .module-enter-active, .module-leave-active {
  213. transition: opacity .25s
  214. }
  215. .module-enter, .module-leave-active {
  216. opacity: 0
  217. }
  218. .aside-enter-active {
  219. transition: opacity .25s cubic-bezier(1, -1.17, 1, -1.17);
  220. }
  221. .aside-leave-active {
  222. transition: opacity 0s
  223. }
  224. .aside-enter, .aside-leave-active {
  225. opacity: 0
  226. }
  227. a {
  228. color: #2d8cf0;
  229. background: 0 0;
  230. text-decoration: none;
  231. outline: 0;
  232. cursor: pointer;
  233. transition: color .2s ease;
  234. }
  235. .select-adder {
  236. background:url("../../static/images/all/xiala.png") right no-repeat #fff !important;
  237. background-position-x: 100% !important;
  238. /*将默认的select选择框样式清除*/
  239. appearance:none;
  240. -moz-appearance:none;
  241. -webkit-appearance:none;
  242. -ms-appearance:none;
  243. }
  244. .select-adder::-ms-expand {
  245. display: none;
  246. }
  247. //按钮不可点击状态
  248. .el-button.is-disabled, .el-button.is-disabled:focus, .el-button.is-disabled:hover {
  249. color: #bfcbd9 !important ;
  250. cursor: not-allowed !important ;
  251. background-image: none !important ;
  252. background-color: #eef1f6 !important ;
  253. border-color: #d1dbe5 !important ;
  254. }
  255. //每项最后一步按钮不可点击状态
  256. .el-button.finish.is-disabled, .el-button.finish.is-disabled:focus, .el-button.finish.is-disabled:hover {
  257. color: #fff !important;
  258. background-color: #0076AD !important;
  259. border: none !important;
  260. opacity: .7;
  261. cursor: not-allowed !important;
  262. }
  263. //隐藏加载数据状态
  264. .el-input__icon{
  265. display: none;
  266. }
  267. //表单样式
  268. form .el-form-item {
  269. margin: 0 auto 16px;
  270. width: 360px;
  271. }
  272. form .el-form-item:last-child {
  273. margin: -8px auto 0!important;
  274. }
  275. form .el-form-item .el-form-item__content {
  276. margin-left: 0 !important;
  277. }
  278. form .el-form-item .el-form-item__content .el-input__inner{
  279. padding: 0 0 0 18px;
  280. width: 360px;
  281. height: 44px;
  282. line-height: 44px;
  283. font-size: 14px;
  284. color: #000;
  285. border-radius: 0;
  286. }
  287. form .el-form-item .el-form-item__content .msg{
  288. float: left;
  289. width: 210px;
  290. }
  291. form .el-form-item .el-form-item__content .msg .el-input__inner{
  292. width: 210px;
  293. }
  294. form .el-form-item .el-form-item__content .code{
  295. float: right;
  296. width: 130px;
  297. height: 44px;
  298. font-size: 14px;
  299. color: #5a5a5a;
  300. background: #f4f4f4;
  301. border: 1px solid #dcdcdc;
  302. border-radius: 0;
  303. cursor: pointer;
  304. }
  305. form .el-form-item .el-form-item__content .el-form-item__error {
  306. position: absolute;
  307. top: 15px;
  308. left: 380px;
  309. padding-top: 0;
  310. width: 100%;
  311. text-align: left;
  312. }
  313. form .el-form-item .el-form-item__content .finish{
  314. display: inline-block;
  315. margin-top: 34px;
  316. width: 360px;
  317. height: 44px;
  318. line-height: 44px;
  319. font-size: 16px;
  320. color: #fff;
  321. background: #0076AD;
  322. border-radius: 3px;
  323. border: none;
  324. }
  325. form .el-form-item .el-form-item__content .el-checkbox{
  326. float: left;
  327. margin-left: 50px;
  328. }
  329. form .el-form-item .el-form-item__content .el-checkbox .el-checkbox__inner{
  330. width: 16px;
  331. height: 16px;
  332. border: 1px solid #ccc;
  333. border-radius: 0;
  334. }
  335. form .el-form-item .el-form-item__content .el-textarea .el-textarea__inner{
  336. width: 360px;
  337. height: 120px;
  338. border-radius: 0;
  339. }
  340. //我同意按钮
  341. .el-checkbox__input.is-checked .el-checkbox__inner{
  342. background: transparent !important;
  343. border-color: #bfbfbf !important;
  344. }
  345. .el-checkbox__input.is-focus .el-checkbox__inner{
  346. border-color: #bfbfbf !important;
  347. }
  348. .el-checkbox__inner{
  349. border-color: #bfbfbf !important;
  350. }
  351. .el-checkbox__inner::after{
  352. border: 2px solid #0076AD !important;
  353. border-top: 0 !important;
  354. border-left: 0 !important;
  355. }
  356. form .text-position .el-form-item__content{
  357. line-height: 20px;
  358. }
  359. form .text-position .el-form-item__content .el-checkbox .el-checkbox__inner{
  360. margin-top: -1px;
  361. width: 14px;
  362. height: 14px;
  363. border: 1px solid #ccc;
  364. }
  365. form .text-position .el-form-item__content .el-checkbox .el-checkbox__label{
  366. padding-left: 8px;
  367. font-size: 12px;
  368. color: #606266;
  369. }
  370. form .text-position .el-form-item__content .el-checkbox .el-checkbox__input.is-checked+.el-checkbox__label {
  371. color: #2d8cf0;
  372. }
  373. form .text-position .el-checkbox__input.is-checked .el-checkbox__inner{
  374. background-color: #5078cb!important;
  375. border-color: transparent!important;
  376. }
  377. form .text-position .el-checkbox__inner::after {
  378. border: 2px solid #fff !important;
  379. border-top: 0 !important;
  380. border-left: 0 !important;
  381. }
  382. //登录页面样式
  383. //错误提示框变红隐藏
  384. .login-form .el-form-item.is-error .el-input__inner, .login-form .el-form-item.is-error .el-input__inner:focus, .login-form .el-form-item.is-error .el-textarea__inner, .login-form .el-form-item.is-error .el-textarea__inner:focus, .login-form .el-message-box__input input.invalid, .login-form .el-message-box__input input.invalid:focus {
  385. border-color: #ccc!important;
  386. }
  387. .login-form .el-input__inner{
  388. padding-left: 30px !important;
  389. width: 306px !important;
  390. height: 34px !important;
  391. line-height: 34px !important;
  392. }
  393. .login-form .el-form-item{
  394. position: relative;
  395. width: 306px !important;
  396. }
  397. .login-form .el-form-item i.fa{
  398. position: absolute;
  399. top: 4px;
  400. left: 0;
  401. z-index: 2;
  402. display: block;
  403. width: 30px;
  404. height: 34px;
  405. line-height: 34px;
  406. text-align: center;
  407. pointer-events: none;
  408. color: #999;
  409. font-size: 18px;
  410. }
  411. .login-form .captcha{
  412. overflow: hidden;
  413. }
  414. .login-form .code-input{
  415. float: left;
  416. width: 150px !important;
  417. }
  418. .login-form .code-input .el-input__inner{
  419. padding: 0 !important;
  420. height: 34px !important;
  421. line-height: 34px !important;
  422. width: 150px !important;
  423. }
  424. .login-form img.code-img{
  425. margin-top: 5px;
  426. float: left;
  427. height: 30px;
  428. width: 108px;
  429. }
  430. .login-form a.code-click{
  431. float: right;
  432. display: inline-block;
  433. margin-top: 5px;
  434. width: 45px;
  435. line-height: 15px;
  436. text-align: right;
  437. font-size: 12px;
  438. color: #666;
  439. vertical-align: middle;
  440. cursor: pointer;
  441. }
  442. .login-form a.code-click:hover{
  443. color: #5078cb;
  444. text-decoration: none;
  445. outline: 0;
  446. }
  447. .login-form .el-form-item a.forget{
  448. color: #5078cb;
  449. font-size: 12px;
  450. }
  451. .login-form .el-form-item.text-right{
  452. }
  453. .login-form .text-right .el-form-item__content{
  454. height: 20px;
  455. line-height: 16px;
  456. }
  457. .login-form .el-form-item .login{
  458. width: 306px;
  459. height: 34px;
  460. line-height: 30px;
  461. }
  462. //短信便捷登录
  463. .loginForm .el-input__inner{
  464. padding-left: 12px !important;
  465. }
  466. .login-form .fastMsg .el-button.fastCode{
  467. position: absolute;
  468. top: 2px;
  469. right: 0;
  470. padding: 0;
  471. width: 93px;
  472. height: 34px;
  473. font-size: 12px;
  474. text-align: center;
  475. border: none;
  476. color: #fff;
  477. background: #5078cb;
  478. }
  479. .login-form .fastMsg .el-button.code-send{
  480. background: #cccccc;
  481. }
  482. //个人注册错误框颜色
  483. form .el-form-item .el-form-item__content div.active .el-input__inner{
  484. border-color: #f56c6c !important;
  485. }
  486. //个人注册正确框颜色
  487. form .el-form-item .el-form-item__content div.correct .el-input__inner{
  488. border-color: #67c23a !important;
  489. }
  490. //登录选择企业弹出框
  491. .dialog .el-dialog__header{
  492. display: none;
  493. }
  494. .dialog .el-dialog__body{
  495. padding: 0;
  496. }
  497. //企业认证
  498. form .el-form-item.padding55 .el-form-item__content .el-input__inner{
  499. //padding-left: 55px;
  500. }
  501. form .el-form-item.padding45 .el-form-item__content .el-input__inner{
  502. padding-left: 45px;
  503. border: 1px solid #dcdfe6;
  504. }
  505. //上传图片
  506. .x-btn-blank{
  507. position: relative;
  508. display: inline-block;
  509. width: 360px;
  510. height: 44px;
  511. text-align: left;
  512. border: 1px solid #dcdcdc;
  513. overflow: hidden;
  514. cursor: pointer;
  515. }
  516. .x-btn-blank span.upload {
  517. margin-left: 50px;
  518. line-height: 44px;
  519. font-size: 14px;
  520. color: #c9c9c9;
  521. }
  522. .x-btn-blank input[type='file']{
  523. position: absolute;
  524. top: 0;
  525. left: 0;
  526. width: 360px;
  527. height: 44px;
  528. opacity: 0;
  529. border: none;
  530. }
  531. .x-btn-blank:hover, .x-btn-blank[disabled] {
  532. border-color: #c0c4cc;
  533. background: #e6e6e6;
  534. color: #333;
  535. }
  536. .x-btn-blank:hover span.upload{
  537. color: #000;
  538. }
  539. form .el-form-item.padding55 .el-form-item__content{
  540. text-align: left;
  541. line-height: 1;
  542. }
  543. form .el-form-item.padding55 a.thumbnail {
  544. margin-bottom: 0;
  545. width: 120px;
  546. line-height: 70px;
  547. border-radius: 0;
  548. }
  549. form .el-form-item.padding55 a.thumbnail:hover{
  550. border: 1px solid #ddd;
  551. }
  552. form .el-form-item.padding55 img.previewImg {
  553. max-width: 120px;
  554. max-height: 70px;
  555. }
  556. //地址选择
  557. .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  558. background-color: transparent;
  559. }
  560. .x-union-menu {
  561. width: 600px;
  562. }
  563. .x-form .dropdown-menu {
  564. left: 15px;
  565. margin-top: -1px;
  566. border-color: #e4ecf3;
  567. border-radius: 0;
  568. padding: 0;
  569. }
  570. .x-union-header>div {
  571. background: #f5f8fa;
  572. font-weight: 700;
  573. border-bottom: 1px solid #e4ecf3;
  574. }
  575. .x-union-header{
  576. overflow: hidden;
  577. height: 28px;
  578. line-height: 28px;
  579. background: #f5f8fa;
  580. }
  581. .x-union-header>div:last-child {
  582. border-right-width: 0;
  583. }
  584. .x-union-menu .x-item-ext {
  585. float: left;
  586. width: 235px;
  587. }
  588. .x-union-header>div, .x-union-list>ul {
  589. float: left;
  590. width: 121px;
  591. border-right: 1px solid #e4ecf3;
  592. }
  593. .x-union-list>ul {
  594. height: 200px;
  595. margin: 0;
  596. overflow-y: auto;
  597. }
  598. .x-union-list .x-item-ext {
  599. padding: 10px;
  600. }
  601. .x-union-header>div, .x-union-list>ul>li {
  602. padding: 2px 10px;
  603. cursor: pointer;
  604. font-size: 14px;
  605. color: #505050;
  606. height: 28px;
  607. line-height: 28px;
  608. }
  609. .x-union-list>ul>li:hover, .x-union-list>ul>li.active {
  610. background: #fee9c7;
  611. }
  612. .x-input, .x-input-blank {
  613. border-color: #ccc;
  614. border-radius: 0;
  615. box-shadow: none;
  616. }
  617. .text-right a.register-btn {
  618. display: inline-block;
  619. border-radius: 0;
  620. width: 45px;
  621. height: 30px;
  622. line-height: 30px;
  623. text-align: center;
  624. font-size: 14px;
  625. }
  626. .text-right a.register-btn:first-child{
  627. margin-right: 10px;
  628. background: #5078cb;
  629. color: #fff;
  630. }
  631. .text-right a.register-btn:last-child{
  632. background: #e6e6e6;
  633. color: #333;
  634. }
  635. #street {
  636. width: 200px !important;
  637. height: 94px !important;
  638. font-size: 14px;
  639. color: #555;
  640. }
  641. form .el-form-item.padding45 .el-form-item__content input.active{
  642. border-color: #f56c6c !important;
  643. }
  644. form .el-form-item.padding45 .el-form-item__content input.correct{
  645. border-color: #67c23a !important;
  646. }
  647. form .el-form-item.padding55 .el-form-item__content a.active{
  648. border-color: #f56c6c !important;
  649. }
  650. form .el-form-item.padding55 .el-form-item__content a.correct {
  651. border-color: #67c23a !important;
  652. }
  653. //密保问题
  654. form .questions .el-form-item__content{
  655. text-align: left;
  656. }
  657. form .questions .el-form-item__content span.question {
  658. font-size: 14px;
  659. color: #000;
  660. }
  661. //未设置邮箱弹出框
  662. .valid-phone .el-dialog {
  663. position: absolute;
  664. width: 300px;
  665. height: 150px;
  666. margin: 0 auto;
  667. left: 50%;
  668. top: 50%;
  669. margin-left: -150px;
  670. margin-top: -75px !important;
  671. }
  672. .valid-phone .el-dialog .el-dialog__header {
  673. display: none;
  674. }
  675. .valid-phone .el-dialog .el-dialog__body .set-tip{
  676. width: 100%;
  677. height: 100%;
  678. }
  679. .valid-phone .el-dialog .el-dialog__body .set-tip p{
  680. margin-top: 10px;
  681. margin-bottom: 30px;
  682. font-size: 14px;
  683. color: #000;
  684. }
  685. .valid-phone .el-dialog .el-dialog__body .set-tip a{
  686. display: inline-block;
  687. width: 60px;
  688. height: 30px;
  689. line-height: 30px;
  690. text-align: center;
  691. font-size: 14px;
  692. color: #fff;
  693. background: #00a0e9;
  694. border-radius: 3px;
  695. }
  696. // 模态框样式处理
  697. .center .el-dialog__wrapper{
  698. z-index:10000;
  699. }
  700. .center .el-dialog__body{
  701. text-align: center!important;
  702. border-top:1px solid #d2d2d2!important;
  703. }
  704. .center .el-dialog__footer{
  705. text-align: center!important;
  706. padding: 60px 15px 40px;
  707. }
  708. .center .el-dialog__footer .el-button{
  709. width:180px;
  710. height:30px;
  711. line-height: 30px;
  712. text-align: center;
  713. padding:0;
  714. border-radius:15px;
  715. }
  716. //查看大图
  717. #image-box .x-floating-wrap,.image-box .x-floating-wrap {
  718. position: fixed;
  719. z-index: 99998;
  720. background: #000;
  721. top: 0;
  722. left: 0;
  723. width: 100%;
  724. height: 100%;
  725. opacity: 0.5;
  726. }
  727. #image-box,.image-box{
  728. display:table; overflow:hidden; margin-left:50px; _position:relative; width: 1200px;height: 700px;
  729. position: fixed;
  730. top: 50%;
  731. margin-top: -350px;
  732. left: 50%;
  733. margin-left: -600px;
  734. z-index: 2020;
  735. }
  736. #image-box .x-floating,.image-box .x-floating {
  737. vertical-align:middle !important;
  738. display:table-cell;
  739. text-align:center;
  740. _position:absolute;
  741. _top:50%; _left:50%;
  742. top: inherit !important;
  743. left: inherit !important;
  744. }
  745. #image-box .x-floating img ,.image-box .x-floating img {
  746. margin: auto auto;
  747. max-width: 970px !important;
  748. max-height: 600px !important;
  749. -webkit-user-select: none;
  750. -moz-user-select: none;
  751. -ms-user-select: none;
  752. user-select: none;
  753. }
  754. #image-box .x-floating-wrap,.image-box .x-floating-wrap{
  755. z-index: 1000000 !important;
  756. }
  757. #item-content{
  758. color:#fff; display:inline-block; _position:relative; _top:-50%; _left:-50%;
  759. position: relative;
  760. z-index: 10000000;
  761. }
  762. #item-content div.x-close-wrap{
  763. position: absolute;
  764. right: -15px;
  765. line-height: 30px;
  766. top: -13px;
  767. color: #fff;
  768. width: 35px;
  769. height: 35px;
  770. background: rgba(0, 0, 0, 0.5);
  771. border-radius: 100%;
  772. opacity: 1;
  773. margin: 0;
  774. z-index: 100000;
  775. min-height: initial;
  776. text-align: center;
  777. }
  778. #item-content div.x-close-wrap a{
  779. position: relative;
  780. left: 0;
  781. bottom: 0;
  782. font-size: 34px;
  783. color: #fff;
  784. }
  785. #item-content div.x-close-wrap a:hover{
  786. color: #fff !important;
  787. }
  788. #item-content div.x-close-wrap:hover{
  789. cursor: pointer;
  790. opacity: .9;
  791. }
  792. #item-content div.x-close-wrap img{
  793. width: 30px !important;
  794. height: 30px !important;
  795. }
  796. #item-content .img{
  797. position: relative;
  798. z-index: 10;
  799. }
  800. //ie9及以下提示框
  801. .com-result{
  802. display: none;
  803. position: relative;
  804. height: 30px;
  805. width: 100%;
  806. line-height: 30px;
  807. text-align: center;
  808. background: #fef6f2;
  809. border: 1px solid #ec854d;
  810. overflow: hidden ;
  811. }
  812. .com-result .text{
  813. width: 100%;
  814. text-align: center;
  815. font-size: 14px;
  816. color: #f15601;
  817. }
  818. .com-result .text em{
  819. margin-right: 3px;
  820. font-style: normal;
  821. }
  822. .com-result .text a {
  823. color: #5078cb;
  824. }
  825. .com-result .close-tip{
  826. position: absolute;
  827. right: 0;
  828. padding-right: 10px;
  829. font-size: 20px;
  830. font-weight: bold;
  831. color: #ef1d1d;
  832. line-height: 28px;
  833. }
  834. .clear-float {
  835. clear: both;
  836. }