styles.css 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. }
  5. body {
  6. height: 100%;
  7. overflow: hidden;
  8. }
  9. .storeCheck {
  10. height: calc(100vh);
  11. display: flex;
  12. flex-direction: column;
  13. }
  14. .storeCheck .loading {
  15. background: #fff;
  16. height: 100%;
  17. width: 100%;
  18. text-align: center;
  19. position: fixed;
  20. z-index: 10000;
  21. left: 0;
  22. top: 0;
  23. }
  24. .storeCheck .loading .ant-spin {
  25. margin-top: 50%;
  26. }
  27. .storeCheck .checkWork {
  28. flex-grow: 1;
  29. display: flex;
  30. flex-direction: column;
  31. overflow: auto;
  32. }
  33. .storeCheck .checkWork .checkWork-head {
  34. position: relative;
  35. }
  36. .storeCheck .checkWork .checkWork-head .checkWork-head-row:first-child{
  37. background: #fff;
  38. border-bottom: 1px solid #eee;
  39. }
  40. .storeCheck .checkWork .checkWork-head .checkWork-head-row:first-child > div {
  41. display: flex;
  42. align-items: center;
  43. width: 100%;
  44. }
  45. .storeCheck .checkWork .checkWork-head .checkWork-head-row:first-child > div > div:last-child {
  46. flex-grow: 1;
  47. }
  48. .storeCheck .checkWork .checkWork-head .checkWork-head-row > div {
  49. width: 100%;
  50. padding: 5px 10px;
  51. display: flex;
  52. align-items: center;
  53. }
  54. .storeCheck .checkWork .checkWork-head .checkWork-head-row > div > div {
  55. width: 33.3%;
  56. padding: 3px 0;
  57. }
  58. .storeCheck .checkWork .checkWork-head .checkWork-head-row > div .ant-dropdown-link {
  59. width: 100%;
  60. display: block;
  61. text-align: right;
  62. color: #666666;
  63. }
  64. .storeCheck .checkWork .checkWork-body {
  65. flex-grow: 1;
  66. display: flex;
  67. background: #f8f8f8;
  68. overflow: auto;
  69. }
  70. .storeCheck .checkWork .checkWork-body .checkWork-body-tabs {
  71. width: 26%;
  72. padding: 1px 0;
  73. overflow-y: scroll;
  74. box-shadow: 1px 1px 3px #eee;
  75. }
  76. .storeCheck .checkWork .checkWork-body .checkWork-body-tabs .tabs-items {
  77. text-align: center;
  78. padding: 8px 5px;
  79. position: relative;
  80. margin: 5px;
  81. background: #fff;
  82. }
  83. .storeCheck .checkWork .checkWork-body .checkWork-body-tabs .tabs-items .edit {
  84. font-size: 14px;
  85. color: #ff0000;
  86. }
  87. .storeCheck .checkWork .checkWork-body .checkWork-body-tabs .tabs-items .aicon {
  88. color: #fff;
  89. position: absolute;
  90. font-size: 12px;
  91. left: -5px;
  92. top: -6px;
  93. background: #ff0000;
  94. padding: 3px;
  95. border-radius: 100%;
  96. }
  97. .storeCheck .checkWork .checkWork-body .checkWork-body-tabs .tabs-items.active {
  98. color: #00aaff;
  99. border-right: 1px solid #00aaff;
  100. }
  101. .storeCheck .checkWork .checkWork-body .checkWork-body-tabCons {
  102. width: 74%;
  103. padding: 5px;
  104. overflow-y: scroll;
  105. }
  106. .storeCheck .checkWork .checkWork-body .checkWork-body-tabCons .tabCons-items {
  107. background: #fff;
  108. padding: 5px;
  109. margin-bottom: 10px;
  110. border-radius: 5px;
  111. box-shadow: 1px 1px 3px #eee;
  112. }
  113. .storeCheck .checkWork .checkWork-body .checkWork-body-tabCons .tabCons-items .remarks {
  114. padding: 5px;
  115. word-break: break-all;
  116. }
  117. .storeCheck .checkWork .checkWork-body .checkWork-body-tabCons .tabCons-items .photos {
  118. display: block;
  119. }
  120. .storeCheck .checkWork .checkWork-body .checkWork-body-tabCons .tabCons-items .photos span {
  121. border: 1px solid #eee;
  122. }
  123. .storeCheck .checkWork .checkWork-body .checkWork-body-tabCons .tabCons-items .photos > div {
  124. display: inline-block;
  125. }
  126. .storeCheck .checkWork .checkWork-body .checkWork-body-tabCons .tabCons-items > div {
  127. display: flex;
  128. align-items: center;
  129. }
  130. .storeCheck .checkWork .checkWork-body .checkWork-body-tabCons .tabCons-items > div > div {
  131. padding: 5px;
  132. }
  133. .storeCheck .checkWork .checkWork-body .checkWork-body-tabCons .tabCons-items > div > div:first-child {
  134. flex-grow: 1;
  135. }
  136. .storeCheck .checkWork .checkWork-body .checkWork-body-tabCons .tabCons-items > div > div .anticon {
  137. font-size: 30px;
  138. color: #aaa;
  139. margin-left: 15px;
  140. }
  141. .storeCheck .checkWork .checkWork-body .checkWork-body-tabCons .tabCons-items > div > div .choose-bsy {
  142. color: #13C2C2;
  143. }
  144. .storeCheck .checkWork .checkWork-body .checkWork-body-tabCons .tabCons-items > div > div .choose-bhg {
  145. color: #ff0000;
  146. }
  147. .storeCheck .checkWork .checkWork-body .checkWork-body-tabCons .tabCons-items > div > div .choose-hg {
  148. color: #00be00;
  149. }
  150. .storeCheck .checkWork .checkWork-button > div {
  151. padding: 10px;
  152. text-align: center;
  153. font-size: 18px;
  154. background: #55aaff;
  155. color: #fff;
  156. }
  157. .storeCheck .checkWork .checkWork-button-disabled > div {
  158. padding: 10px;
  159. text-align: center;
  160. font-size: 18px;
  161. background: #eee;
  162. color: #999;
  163. }
  164. .videoPlay {
  165. position: relative;
  166. height: 240px;
  167. }
  168. .errorVideo{
  169. background: #000;
  170. color: #fff;
  171. line-height: 240px;
  172. text-align: center;
  173. }
  174. .videoPlay .videoloading{
  175. position: absolute;
  176. width: 100px;
  177. height: 100px;
  178. margin-left: -50px;
  179. margin-top: -50px;
  180. top: 50%;
  181. left: 50%;
  182. z-index: 8888;
  183. text-align: center;
  184. }
  185. .videoPlay .control-yt, .videoPlay .control-yt-close {
  186. position: absolute;
  187. right: 15px;
  188. top: 15px;
  189. z-index: 100000;
  190. width: 32px;
  191. height: 32px;
  192. background: url(../static/icons/kz-mini.png) no-repeat center center;
  193. background-size: contain;
  194. }
  195. .videoPlay .control-yt-close {
  196. background: url(../static/icons/close.png) no-repeat center center;
  197. background-size: contain;
  198. }
  199. .videoPlay .ytBtns {
  200. position: absolute;
  201. width: 40px;
  202. height: 40px;
  203. z-index: 10000;
  204. opacity: 50%;
  205. }
  206. .videoPlay .yt-left {
  207. left: 20%;
  208. top: 100px;
  209. background: url(../static/icons/left.png) no-repeat center center;
  210. background-size: contain;
  211. }
  212. .videoPlay .yt-right {
  213. right: 20%;
  214. top: 100px;
  215. background: url(../static/icons/right.png) no-repeat center center;
  216. background-size: contain;
  217. }
  218. .videoPlay .yt-top {
  219. left: 50%;
  220. top: 20px;
  221. margin-left: -20px;
  222. background: url(../static/icons/up.png) no-repeat center center;
  223. background-size: contain;
  224. }
  225. .videoPlay .yt-bottom {
  226. left: 50%;
  227. bottom: 20px;
  228. margin-left: -20px;
  229. background: url(../static/icons/down.png) no-repeat center center;
  230. background-size: contain;
  231. }
  232. .videoPlay .prism-player .prism-controlbar {
  233. background: rgba(0, 0, 0, 0.5);
  234. }
  235. .pzPopus .pz-pinglun {
  236. display: flex;
  237. align-items: center;
  238. }
  239. .pzPopus .pz-pinglun .remarks {
  240. flex-grow: 1;
  241. padding-right: 15px;
  242. }
  243. .pzPopus .pz-pinglun .icons {
  244. border: 1px solid #aaa;
  245. padding: 10px;
  246. border-radius: 100%;
  247. width: 60px;
  248. height: 60px;
  249. display: flex;
  250. align-items: center;
  251. justify-content: center;
  252. }
  253. .pzPopus .pz-pinglun .icons .aicon {
  254. font-size: 30px;
  255. color: #999;
  256. }
  257. .pzPopus .imglist {
  258. display: flex;
  259. align-items: center;
  260. flex-wrap: wrap;
  261. padding: 30px 0 20px;
  262. }
  263. .pzPopus .imglist > div {
  264. position: relative;
  265. padding: 3px;
  266. border: 1px solid #eee;
  267. border-radius: 5px;
  268. margin-right: 10px;
  269. }
  270. .pzPopus .imglist > div img {
  271. width: 45px;
  272. height: 45px;
  273. }
  274. .pzPopus .imglist > div .aicon {
  275. color: #fff;
  276. position: absolute;
  277. font-size: 12px;
  278. right: -6px;
  279. top: -8px;
  280. background: #FF0000;
  281. padding: 2px;
  282. border-radius: 100%;
  283. }
  284. .pzPopus .f-btns {
  285. padding: 10px 0;
  286. }