styles.css 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  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 .control-yt, .videoPlay .control-yt-close {
  175. position: absolute;
  176. right: 15px;
  177. top: 15px;
  178. z-index: 100000;
  179. width: 32px;
  180. height: 32px;
  181. background: url(../static/icons/kz-mini.png) no-repeat center center;
  182. background-size: contain;
  183. }
  184. .videoPlay .control-yt-close {
  185. background: url(../static/icons/close.png) no-repeat center center;
  186. background-size: contain;
  187. }
  188. .videoPlay .ytBtns {
  189. position: absolute;
  190. width: 40px;
  191. height: 40px;
  192. z-index: 10000;
  193. opacity: 50%;
  194. }
  195. .videoPlay .yt-left {
  196. left: 20%;
  197. top: 100px;
  198. background: url(../static/icons/left.png) no-repeat center center;
  199. background-size: contain;
  200. }
  201. .videoPlay .yt-right {
  202. right: 20%;
  203. top: 100px;
  204. background: url(../static/icons/right.png) no-repeat center center;
  205. background-size: contain;
  206. }
  207. .videoPlay .yt-top {
  208. left: 50%;
  209. top: 20px;
  210. margin-left: -20px;
  211. background: url(../static/icons/up.png) no-repeat center center;
  212. background-size: contain;
  213. }
  214. .videoPlay .yt-bottom {
  215. left: 50%;
  216. bottom: 20px;
  217. margin-left: -20px;
  218. background: url(../static/icons/down.png) no-repeat center center;
  219. background-size: contain;
  220. }
  221. .videoPlay .prism-player .prism-controlbar {
  222. background: rgba(0, 0, 0, 0.5);
  223. }
  224. .pzPopus .pz-pinglun {
  225. display: flex;
  226. align-items: center;
  227. }
  228. .pzPopus .pz-pinglun .remarks {
  229. flex-grow: 1;
  230. padding-right: 15px;
  231. }
  232. .pzPopus .pz-pinglun .icons {
  233. border: 1px solid #aaa;
  234. padding: 10px;
  235. border-radius: 100%;
  236. width: 60px;
  237. height: 60px;
  238. display: flex;
  239. align-items: center;
  240. justify-content: center;
  241. }
  242. .pzPopus .pz-pinglun .icons .aicon {
  243. font-size: 30px;
  244. color: #999;
  245. }
  246. .pzPopus .imglist {
  247. display: flex;
  248. align-items: center;
  249. flex-wrap: wrap;
  250. padding: 30px 0 20px;
  251. }
  252. .pzPopus .imglist > div {
  253. position: relative;
  254. padding: 3px;
  255. border: 1px solid #eee;
  256. border-radius: 5px;
  257. margin-right: 10px;
  258. }
  259. .pzPopus .imglist > div img {
  260. width: 45px;
  261. height: 45px;
  262. }
  263. .pzPopus .imglist > div .aicon {
  264. color: #fff;
  265. position: absolute;
  266. font-size: 12px;
  267. right: -6px;
  268. top: -8px;
  269. background: #FF0000;
  270. padding: 2px;
  271. border-radius: 100%;
  272. }
  273. .pzPopus .f-btns {
  274. padding: 10px 0;
  275. }