You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

127 lines
2.0 KiB

  1. /*垂直居中­*/
  2. .verticalAlign {
  3. vertical-align: middle;
  4. display: inline-block;
  5. height: 100%;
  6. margin-left: -1px;
  7. }
  8. .xcConfirm .xc_layer {
  9. position: fixed;
  10. top: 0;
  11. left: 0;
  12. width: 100%;
  13. height: 100%;
  14. background-color: #666666;
  15. opacity: 0.5;
  16. z-index: 2147000000;
  17. }
  18. .xcConfirm .popBox {
  19. position: fixed;
  20. left: 50%;
  21. top: 25%;
  22. background-color: #ffffff;
  23. z-index: 2147000001;
  24. width: 570px;
  25. height: 300px;
  26. margin-left: -285px;
  27. margin-top: -150px;
  28. border-radius: 5px;
  29. font-weight: bold;
  30. color: #535e66;
  31. }
  32. .xcConfirm .popBox .ttBox {
  33. height: 60px;
  34. padding: 14px 30px;
  35. border-bottom: solid 1px #eef0f1;
  36. }
  37. .xcConfirm .popBox .ttBox .tt {
  38. font-size: 18px;
  39. display: block;
  40. float: left;
  41. height: 30px;
  42. position: relative;
  43. }
  44. .xcConfirm .popBox .ttBox .clsBtn {
  45. display: block;
  46. cursor: pointer;
  47. width: 12px;
  48. height: 12px;
  49. position: absolute;
  50. top: 22px;
  51. right: 30px;
  52. background: url(../images/icons.png) -48px -96px no-repeat;
  53. }
  54. .xcConfirm .popBox .txtBox {
  55. margin: 40px 100px;
  56. height: 100px;
  57. overflow: hidden;
  58. }
  59. .xcConfirm .popBox .txtBox .bigIcon {
  60. float: left;
  61. margin-right: 20px;
  62. width: 48px;
  63. height: 48px;
  64. background-image: url(../images/icons.png);
  65. background-repeat: no-repeat;
  66. background-position: 48px 0;
  67. }
  68. .xcConfirm .popBox .txtBox p {
  69. height: 84px;
  70. margin-top: 16px;
  71. line-height: 26px;
  72. overflow-x: hidden;
  73. overflow-y: auto;
  74. font-size: 17px;
  75. }
  76. .xcConfirm .popBox .txtBox p input {
  77. width: 364px;
  78. height: 30px;
  79. border: solid 1px #eef0f1;
  80. font-size: 18px;
  81. margin-top: 6px;
  82. }
  83. .xcConfirm .popBox .btnArea {
  84. border-top: solid 1px #eef0f1;
  85. }
  86. .xcConfirm .popBox .btnGroup {
  87. float: right;
  88. }
  89. .xcConfirm .popBox .btnGroup .sgBtn {
  90. margin-top: 14px;
  91. margin-right: 10px;
  92. }
  93. .xcConfirm .popBox .sgBtn {
  94. display: block;
  95. cursor: pointer;
  96. float: left;
  97. width: 95px;
  98. height: 35px;
  99. line-height: 35px;
  100. text-align: center;
  101. color: #FFFFFF;
  102. border-radius: 5px;
  103. }
  104. .xcConfirm .popBox .sgBtn.ok {
  105. background-color: #0095d9;
  106. color: #FFFFFF;
  107. }
  108. .xcConfirm .popBox .sgBtn.cancel {
  109. background-color: #546a79;
  110. color: #FFFFFF;
  111. }