Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

258 linhas
4.2 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: 420px;
  25. height: 185px;
  26. margin-left: -210px;
  27. /* margin-top: -51px; */
  28. border-radius: 4px;
  29. font-weight: bold;
  30. color: #535e66;
  31. box-shadow: 0 0 10px 0 rgba(62, 67, 85, 0.5), 0 2px 8px 0 rgba(62, 67, 85, 0.15);
  32. }
  33. .xcConfirm .popBox .ttBox {
  34. height: 49px;
  35. padding: 14px 19px;
  36. /* border-bottom: solid 1px #eef0f1; */
  37. vertical-align: top;
  38. }
  39. .xcConfirm .popBox .ttBox .tt {
  40. font-size: 16px;
  41. display: block;
  42. float: left;
  43. height: 30px;
  44. position: relative;
  45. }
  46. .xcConfirm .popBox .ttBox .clsBtn {
  47. display: block;
  48. cursor: pointer;
  49. vertical-align: top;
  50. width: 34px;
  51. height: 34px;
  52. position: absolute;
  53. top: 6px;
  54. right: 12px;
  55. background-image: url(../images/close.png);
  56. background-position: center;
  57. background-size: 100%;
  58. background-repeat: no-repeat;
  59. }
  60. .xcConfirm .popBox .txtBox {
  61. height: 70px;
  62. overflow: hidden;
  63. }
  64. .xcConfirm .popBox .txtBox .bigIcon {
  65. }
  66. .xcConfirm .popBox .txtBox p {
  67. line-height: 26px;
  68. overflow-x: hidden;
  69. overflow-y: auto;
  70. font-size: 15px;
  71. padding-left: 20px;
  72. margin-top: 6px;
  73. font-weight: normal;
  74. color: #3e4355;
  75. }
  76. .xcConfirm .popBox .txtBox p input {
  77. width: 381px;
  78. height: 36px;
  79. /*border: solid 1px #bfcbd9;*/
  80. font-size: 14px;
  81. font-weight: normal;
  82. padding: 6px;
  83. border-radius: 4px;
  84. outline: none;
  85. }
  86. .xcConfirm .popBox .btnArea {
  87. /*border-top: solid 1px #eef0f1;*/
  88. }
  89. .xcConfirm .popBox .btnGroup {
  90. float: right;
  91. }
  92. .xcConfirm .popBox .btnGroup .sgBtn {
  93. margin-top: 17px;
  94. margin-right: 20px;
  95. }
  96. .xcConfirm .popBox .sgBtn {
  97. display: block;
  98. cursor: pointer;
  99. float: left;
  100. /*width: 76px;
  101. height: 35px;
  102. line-height: 35px;*/
  103. text-align: center;
  104. /*color: #FFFFFF;*/
  105. border-radius: 4px;
  106. font-size: 14px;
  107. font-weight: normal;
  108. }
  109. .xcConfirm .popBox .sgBtn.ok {
  110. /*background-color: #4191ff;*/
  111. /*color: #FFFFFF;*/
  112. }
  113. .xcConfirm .popBox .sgBtn.cancel {
  114. /*background-color: #546a79;
  115. color: #FFFFFF;*/
  116. }
  117. .animated {
  118. -webkit-animation-duration: 600ms;
  119. animation-duration: 600ms;
  120. -webkit-animation-fill-mode: both;
  121. animation-fill-mode: both
  122. }
  123. .animated.infinite {
  124. -webkit-animation-iteration-count: infinite;
  125. animation-iteration-count: infinite
  126. }
  127. .animated.hinge {
  128. -webkit-animation-duration: 2s;
  129. animation-duration: 2s
  130. }
  131. @-webkit-keyframes fadeIn {
  132. 0% {
  133. opacity: 0
  134. }
  135. 100% {
  136. opacity: 0.5
  137. }
  138. }
  139. @keyframes fadeIn {
  140. 0% {
  141. opacity: 0
  142. }
  143. 100% {
  144. opacity: 0.5
  145. }
  146. }
  147. .inFade {
  148. -webkit-animation-name: inFade;
  149. animation-name: inFade
  150. }
  151. @-webkit-keyframes inFade {
  152. 0% {
  153. opacity: 0.5
  154. }
  155. 100% {
  156. opacity: 0
  157. }
  158. }
  159. @keyframes inFade {
  160. 0% {
  161. opacity: 0.5
  162. }
  163. 100% {
  164. opacity: 0
  165. }
  166. }
  167. .inFade {
  168. -webkit-animation-name: inFade;
  169. animation-name: inFade
  170. }
  171. @-webkit-keyframes bounceInDown {
  172. 0% {
  173. opacity: 0;
  174. -webkit-transform: translateY(-200px);
  175. transform: translateY(-200px)
  176. }
  177. 100% {
  178. -webkit-transform: translateY(0);
  179. transform: translateY(0)
  180. }
  181. }
  182. @keyframes bounceInDown {
  183. 0% {
  184. opacity: 0;
  185. -webkit-transform: translateY(-200px);
  186. -ms-transform: translateY(-200px);
  187. transform: translateY(-200px)
  188. }
  189. 100% {
  190. -webkit-transform: translateY(0);
  191. -ms-transform: translateY(0);
  192. transform: translateY(0)
  193. }
  194. }
  195. .bounceInDown {
  196. -webkit-animation-name: bounceInDown;
  197. animation-name: bounceInDown
  198. }
  199. @-webkit-keyframes bounceDownIn {
  200. 0% {
  201. opacity: 1;
  202. -webkit-transform: translateY(0);
  203. transform: translateY(0)
  204. }
  205. 100% {
  206. opacity: 0;
  207. -webkit-transform: translateY(-200px);
  208. transform: translateY(-200px)
  209. }
  210. }
  211. @keyframes bounceDownIn {
  212. 0% {
  213. opacity: 1;
  214. -webkit-transform: translateY(0);
  215. transform: translateY(0)
  216. }
  217. 100% {
  218. opacity: 0;
  219. -webkit-transform: translateY(-200px);
  220. transform: translateY(-200px)
  221. }
  222. }
  223. .bounceDownIn {
  224. -webkit-animation-name: bounceDownIn;
  225. animation-name: bounceDownIn
  226. }