common.scss 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892
  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. text-align: center;
  474. border: none;
  475. color: #000;
  476. background: #ccc;
  477. }
  478. .login-form .fastMsg .el-button.code-send{
  479. background: #ddd;
  480. }
  481. //个人注册错误框颜色
  482. form .el-form-item .el-form-item__content div.active .el-input__inner{
  483. border-color: #f56c6c !important;
  484. }
  485. //个人注册正确框颜色
  486. form .el-form-item .el-form-item__content div.correct .el-input__inner{
  487. border-color: #67c23a !important;
  488. }
  489. //登录选择企业弹出框
  490. .dialog .el-dialog__header{
  491. display: none;
  492. }
  493. .dialog .el-dialog__body{
  494. padding: 0;
  495. }
  496. //企业认证
  497. form .el-form-item.padding55 .el-form-item__content .el-input__inner{
  498. //padding-left: 55px;
  499. }
  500. form .el-form-item.padding45 .el-form-item__content .el-input__inner{
  501. padding-left: 45px;
  502. border: 1px solid #dcdfe6;
  503. }
  504. //上传图片
  505. .x-btn-blank{
  506. position: relative;
  507. display: inline-block;
  508. width: 360px;
  509. height: 44px;
  510. text-align: left;
  511. border: 1px solid #dcdcdc;
  512. overflow: hidden;
  513. cursor: pointer;
  514. }
  515. .x-btn-blank span.upload {
  516. margin-left: 50px;
  517. line-height: 44px;
  518. font-size: 14px;
  519. color: #c9c9c9;
  520. }
  521. .x-btn-blank input[type='file']{
  522. position: absolute;
  523. top: 0;
  524. left: 0;
  525. width: 360px;
  526. height: 44px;
  527. opacity: 0;
  528. border: none;
  529. }
  530. .x-btn-blank:hover, .x-btn-blank[disabled] {
  531. border-color: #c0c4cc;
  532. background: #e6e6e6;
  533. color: #333;
  534. }
  535. .x-btn-blank:hover span.upload{
  536. color: #000;
  537. }
  538. form .el-form-item.padding55 .el-form-item__content{
  539. text-align: left;
  540. line-height: 1;
  541. }
  542. form .el-form-item.padding55 a.thumbnail {
  543. margin-bottom: 0;
  544. width: 120px;
  545. line-height: 70px;
  546. border-radius: 0;
  547. }
  548. form .el-form-item.padding55 a.thumbnail:hover{
  549. border: 1px solid #ddd;
  550. }
  551. form .el-form-item.padding55 img.previewImg {
  552. max-width: 120px;
  553. max-height: 70px;
  554. }
  555. //地址选择
  556. .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  557. background-color: transparent;
  558. }
  559. .x-union-menu {
  560. width: 600px;
  561. }
  562. .x-form .dropdown-menu {
  563. left: 15px;
  564. margin-top: -1px;
  565. border-color: #e4ecf3;
  566. border-radius: 0;
  567. padding: 0;
  568. }
  569. .x-union-header>div {
  570. background: #f5f8fa;
  571. font-weight: 700;
  572. border-bottom: 1px solid #e4ecf3;
  573. }
  574. .x-union-header{
  575. overflow: hidden;
  576. height: 28px;
  577. line-height: 28px;
  578. background: #f5f8fa;
  579. }
  580. .x-union-header>div:last-child {
  581. border-right-width: 0;
  582. }
  583. .x-union-menu .x-item-ext {
  584. float: left;
  585. width: 235px;
  586. }
  587. .x-union-header>div, .x-union-list>ul {
  588. float: left;
  589. width: 121px;
  590. border-right: 1px solid #e4ecf3;
  591. }
  592. .x-union-list>ul {
  593. height: 200px;
  594. margin: 0;
  595. overflow-y: auto;
  596. }
  597. .x-union-list .x-item-ext {
  598. padding: 10px;
  599. }
  600. .x-union-header>div, .x-union-list>ul>li {
  601. padding: 2px 10px;
  602. cursor: pointer;
  603. font-size: 14px;
  604. color: #505050;
  605. height: 28px;
  606. line-height: 28px;
  607. }
  608. .x-union-list>ul>li:hover, .x-union-list>ul>li.active {
  609. background: #fee9c7;
  610. }
  611. .x-input, .x-input-blank {
  612. border-color: #ccc;
  613. border-radius: 0;
  614. box-shadow: none;
  615. }
  616. .text-right a.register-btn {
  617. display: inline-block;
  618. border-radius: 0;
  619. width: 45px;
  620. height: 30px;
  621. line-height: 30px;
  622. text-align: center;
  623. font-size: 14px;
  624. }
  625. .text-right a.register-btn:first-child{
  626. margin-right: 10px;
  627. background: #5078cb;
  628. color: #fff;
  629. }
  630. .text-right a.register-btn:last-child{
  631. background: #e6e6e6;
  632. color: #333;
  633. }
  634. #street {
  635. width: 200px !important;
  636. height: 94px !important;
  637. font-size: 14px;
  638. color: #555;
  639. }
  640. form .el-form-item.padding45 .el-form-item__content input.active{
  641. border-color: #f56c6c !important;
  642. }
  643. form .el-form-item.padding45 .el-form-item__content input.correct{
  644. border-color: #67c23a !important;
  645. }
  646. form .el-form-item.padding55 .el-form-item__content a.active{
  647. border-color: #f56c6c !important;
  648. }
  649. form .el-form-item.padding55 .el-form-item__content a.correct {
  650. border-color: #67c23a !important;
  651. }
  652. //密保问题
  653. form .questions .el-form-item__content{
  654. text-align: left;
  655. }
  656. form .questions .el-form-item__content span.question {
  657. font-size: 14px;
  658. color: #000;
  659. }
  660. //未设置邮箱弹出框
  661. .valid-phone .el-dialog {
  662. position: absolute;
  663. width: 300px;
  664. height: 150px;
  665. margin: 0 auto;
  666. left: 50%;
  667. top: 50%;
  668. margin-left: -150px;
  669. margin-top: -75px !important;
  670. }
  671. .valid-phone .el-dialog .el-dialog__header {
  672. display: none;
  673. }
  674. .valid-phone .el-dialog .el-dialog__body .set-tip{
  675. width: 100%;
  676. height: 100%;
  677. }
  678. .valid-phone .el-dialog .el-dialog__body .set-tip p{
  679. margin-top: 10px;
  680. margin-bottom: 30px;
  681. font-size: 14px;
  682. color: #000;
  683. }
  684. .valid-phone .el-dialog .el-dialog__body .set-tip a{
  685. display: inline-block;
  686. width: 60px;
  687. height: 30px;
  688. line-height: 30px;
  689. text-align: center;
  690. font-size: 14px;
  691. color: #fff;
  692. background: #00a0e9;
  693. border-radius: 3px;
  694. }
  695. // 模态框样式处理
  696. .center .el-dialog__wrapper{
  697. z-index:10000;
  698. }
  699. .center .el-dialog__body{
  700. text-align: center!important;
  701. border-top:1px solid #d2d2d2!important;
  702. }
  703. .center .el-dialog__footer{
  704. text-align: center!important;
  705. padding: 60px 15px 40px;
  706. }
  707. .center .el-dialog__footer .el-button{
  708. width:180px;
  709. height:30px;
  710. line-height: 30px;
  711. text-align: center;
  712. padding:0;
  713. border-radius:15px;
  714. }
  715. //查看大图
  716. #image-box .x-floating-wrap,.image-box .x-floating-wrap {
  717. position: fixed;
  718. z-index: 99998;
  719. background: #000;
  720. top: 0;
  721. left: 0;
  722. width: 100%;
  723. height: 100%;
  724. opacity: 0.5;
  725. }
  726. #image-box,.image-box{
  727. display:table; overflow:hidden; margin-left:50px; _position:relative; width: 1200px;height: 700px;
  728. position: fixed;
  729. top: 50%;
  730. margin-top: -350px;
  731. left: 50%;
  732. margin-left: -600px;
  733. z-index: 2020;
  734. }
  735. #image-box .x-floating,.image-box .x-floating {
  736. vertical-align:middle !important;
  737. display:table-cell;
  738. text-align:center;
  739. _position:absolute;
  740. _top:50%; _left:50%;
  741. top: inherit !important;
  742. left: inherit !important;
  743. }
  744. #image-box .x-floating img ,.image-box .x-floating img {
  745. margin: auto auto;
  746. max-width: 970px !important;
  747. max-height: 600px !important;
  748. -webkit-user-select: none;
  749. -moz-user-select: none;
  750. -ms-user-select: none;
  751. user-select: none;
  752. }
  753. #image-box .x-floating-wrap,.image-box .x-floating-wrap{
  754. z-index: 1000000 !important;
  755. }
  756. #item-content{
  757. color:#fff; display:inline-block; _position:relative; _top:-50%; _left:-50%;
  758. position: relative;
  759. z-index: 10000000;
  760. }
  761. #item-content div.x-close-wrap{
  762. position: absolute;
  763. right: -15px;
  764. line-height: 30px;
  765. top: -13px;
  766. color: #fff;
  767. width: 35px;
  768. height: 35px;
  769. background: rgba(0, 0, 0, 0.5);
  770. border-radius: 100%;
  771. opacity: 1;
  772. margin: 0;
  773. z-index: 100000;
  774. min-height: initial;
  775. text-align: center;
  776. }
  777. #item-content div.x-close-wrap a{
  778. position: relative;
  779. left: 0;
  780. bottom: 0;
  781. font-size: 34px;
  782. color: #fff;
  783. }
  784. #item-content div.x-close-wrap a:hover{
  785. color: #fff !important;
  786. }
  787. #item-content div.x-close-wrap:hover{
  788. cursor: pointer;
  789. opacity: .9;
  790. }
  791. #item-content div.x-close-wrap img{
  792. width: 30px !important;
  793. height: 30px !important;
  794. }
  795. #item-content .img{
  796. position: relative;
  797. z-index: 10;
  798. }
  799. //ie9及以下提示框
  800. .com-result{
  801. display: none;
  802. position: relative;
  803. height: 30px;
  804. width: 100%;
  805. line-height: 30px;
  806. text-align: center;
  807. background: #fef6f2;
  808. border: 1px solid #ec854d;
  809. overflow: hidden ;
  810. }
  811. .com-result .text{
  812. width: 100%;
  813. text-align: center;
  814. font-size: 14px;
  815. color: #f15601;
  816. }
  817. .com-result .text em{
  818. margin-right: 3px;
  819. font-style: normal;
  820. }
  821. .com-result .text a {
  822. color: #5078cb;
  823. }
  824. .com-result .close-tip{
  825. position: absolute;
  826. right: 0;
  827. padding-right: 10px;
  828. font-size: 20px;
  829. font-weight: bold;
  830. color: #ef1d1d;
  831. line-height: 28px;
  832. }
  833. .clear-float {
  834. clear: both;
  835. }