style.scss 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507
  1. $borderColor: #DCDFE6;
  2. $bgColor: #548FF0;
  3. $errorColor: #F56C6C;
  4. $warningColor:#E6A23C;
  5. $color: #409EFF;
  6. $bg2: #fff;
  7. $larger:16px; //小标题
  8. h3 {
  9. font-style: normal;
  10. font-weight: 400;
  11. -webkit-font-smoothing: antialiased;
  12. }
  13. #app {
  14. .left-main {
  15. // width: calc(100% - 251px);
  16. display: inline-block;
  17. position: absolute;
  18. left: 0;
  19. top: 63px;
  20. bottom: 0;
  21. right: 261px;
  22. }
  23. .right-main {
  24. // height: 100%;
  25. width: 250px;
  26. position: absolute;
  27. top: 63px;
  28. right: 0;
  29. bottom: 0;
  30. border: 1px solid $borderColor;
  31. box-sizing: border-box;
  32. }
  33. }
  34. .build_header {
  35. height: 53px;
  36. border: 1px solid #dfe6ec;
  37. background-color: $bg2;
  38. padding: 10px 10px 10px 20px;
  39. box-sizing: border-box;
  40. margin-bottom: 10px;
  41. }
  42. #buildData {
  43. overflow: hidden;
  44. height: 100%;
  45. width: 100%;
  46. padding: 20px;
  47. box-sizing: border-box;
  48. border-radius: 4px;
  49. flex-direction: column;
  50. display: flex;
  51. background-color: $bg2;
  52. .icon {
  53. position: absolute;
  54. z-index: 99;
  55. bottom: 20px;
  56. left: 20px;
  57. }
  58. img::after {
  59. content: "";
  60. // font-family: "iconfont" !important;
  61. font-style: normal;
  62. -webkit-font-smoothing: antialiased;
  63. -moz-osx-font-smoothing: grayscale;
  64. color: #F56C6C;
  65. // display: flex;
  66. // justify-content: center;
  67. // align-items: center;
  68. position: absolute;
  69. text-align: center;
  70. font-size: 12px;
  71. z-index: 2;
  72. top: 0;
  73. left: 0;
  74. width: 100%;
  75. height: 100%;
  76. line-height: 140px;
  77. background-color: #EBEEF5;
  78. }
  79. .Blue {
  80. color: #409eff;
  81. }
  82. .img_view {
  83. position: relative;
  84. video {
  85. width: 100%;
  86. height: 100%;
  87. border: 1px solid $borderColor;
  88. }
  89. }
  90. .active_swiper {
  91. border: 2px solid #409eff !important;
  92. }
  93. .point_view {
  94. position: absolute;
  95. width: 100%;
  96. overflow: hidden;
  97. top: 0;
  98. left: 0;
  99. right: 0;
  100. z-index: 500;
  101. background-color: #fff;
  102. }
  103. .build_label {
  104. height: 180px;
  105. width: 100%;
  106. position: relative;
  107. font-size: 0.8rem;
  108. border-bottom: 1px solid $borderColor;
  109. .turn_left,
  110. .turn_right {
  111. position: absolute;
  112. top: 0;
  113. bottom: 0;
  114. height: 100%;
  115. line-height: 180px;
  116. width: 4rem;
  117. z-index: 90;
  118. // flex: 1;
  119. i {
  120. cursor: pointer;
  121. font-size: 4rem;
  122. }
  123. }
  124. .turn_left {
  125. left: 0;
  126. }
  127. .turn_right {
  128. right: 0;
  129. }
  130. .label_view {
  131. width: 100%;
  132. overflow-x: auto;
  133. .swiper-container {
  134. width: 100%;
  135. }
  136. .active_swiper {
  137. width: 100%;
  138. }
  139. .swiper-slide {
  140. background: #fff;
  141. border: 1px solid $borderColor;
  142. height: 150px;
  143. width: 150px;
  144. margin: 20px;
  145. display: inline-block;
  146. box-sizing: border-box;
  147. h3 {
  148. font-size: $larger;
  149. }
  150. .all_view {
  151. margin-top: 50px;
  152. text-align: center;
  153. }
  154. .msg_view {
  155. margin-top: 35px;
  156. text-align: center;
  157. height: 5.5rem;
  158. }
  159. // .msg_view:first-child{
  160. // margin-top: 2rem;
  161. // }
  162. .img_view {
  163. height: 100%;
  164. width: 100%;
  165. overflow: hidden;
  166. position: relative;
  167. .title_view {
  168. width: 100%;
  169. height: 100%;
  170. position: absolute;
  171. left: 0px;
  172. top: 0px;
  173. // background: url("./../../static/property-grad.png") top left
  174. // repeat-x;
  175. // width: 100%;
  176. // position: absolute;
  177. // opacity: 0.9;
  178. color: #303133;
  179. // background: rgba(0,0,0,0.1);
  180. z-index: 88;
  181. padding-left: 6px;
  182. box-sizing: border-box;
  183. }
  184. .btn {
  185. position: absolute;
  186. right: 10px;
  187. bottom: 10px;
  188. cursor: pointer;
  189. z-index: 599;
  190. }
  191. }
  192. }
  193. .first_tag {
  194. padding: 4rem 0;
  195. text-align: center;
  196. h3 {
  197. line-height: 4rem;
  198. }
  199. }
  200. }
  201. }
  202. .label_show {
  203. height: 44px;
  204. margin-top: 0;
  205. text-align: center;
  206. border: 1px solid #DCDFE6;
  207. border-right: none;
  208. border-left: none;
  209. }
  210. .build_operate {
  211. height: 3rem;
  212. line-height: 3rem;
  213. margin-top: 30px;
  214. margin-bottom: 10px;
  215. width: 100%;
  216. // border: 1px solid #DCDFE6;
  217. // padding-left: 20px;
  218. // box-sizing: border-box;
  219. .build_msg {
  220. float: right;
  221. font-size: 12px;
  222. height: 1.5rem;
  223. line-height: 1.5rem;
  224. margin-top: 0.75rem;
  225. padding: 0 1rem;
  226. margin-right: 2rem;
  227. background-color: #f3c0c0;
  228. color: #000;
  229. border-radius: 5px;
  230. }
  231. /* 定义keyframe动画,命名为blink */
  232. @keyframes blink {
  233. 0% {
  234. background-color: $errorColor;
  235. }
  236. 100% {
  237. background-color: $warningColor;
  238. }
  239. }
  240. /* 定义blink类*/
  241. .blink {
  242. color: #fff;
  243. background-color: $errorColor;
  244. animation: blink 3s linear infinite;
  245. }
  246. span {
  247. margin-left: 1rem;
  248. display: inline-block;
  249. cursor: pointer;
  250. }
  251. span:first-child::after {
  252. content: "|";
  253. color: #000;
  254. margin-left: 1rem;
  255. }
  256. .undo_btn {
  257. cursor: pointer;
  258. float: right;
  259. margin-right: 1rem;
  260. }
  261. }
  262. .build_table {
  263. flex: 1;
  264. overflow: hidden;
  265. width: 100%;
  266. display: flex;
  267. min-height: 400px;
  268. // height: 400px;
  269. .el-tabs {
  270. flex: 1;
  271. width: 100%;
  272. display: flex;
  273. flex-direction: column;
  274. }
  275. .el-tabs__content {
  276. height: 100%;
  277. }
  278. .data_page {
  279. position: absolute;
  280. width: 100%;
  281. bottom: 0;
  282. background-color: #fff;
  283. }
  284. }
  285. .build_pic {
  286. width: 100%;
  287. height: 200px;
  288. position: relative;
  289. background-color: #fff;
  290. left: 0;
  291. bottom: 0;
  292. right: 0;
  293. padding: 0.4rem 4rem;
  294. box-sizing: border-box;
  295. border-top: 1px solid $borderColor;
  296. .pic_show {
  297. position: absolute;
  298. top: -2.3rem;
  299. right: 2rem;
  300. padding: 0.4rem 1rem;
  301. border: 1px solid $borderColor;
  302. margin-bottom: 3rem;
  303. color: #606266;
  304. background: #fff;
  305. border-radius: 4px;
  306. cursor: pointer;
  307. }
  308. .turn_left,
  309. .turn_right {
  310. position: absolute;
  311. top: 0;
  312. bottom: 0;
  313. height: 100%;
  314. width: 4rem;
  315. z-index: 90;
  316. flex: 1;
  317. i {
  318. cursor: pointer;
  319. font-size: 4rem;
  320. }
  321. }
  322. .turn_left {
  323. left: 0;
  324. }
  325. .turn_right {
  326. right: 117px;
  327. }
  328. .pic_view {
  329. width: 100%;
  330. height: 100%;
  331. }
  332. .swiper-container {
  333. width: 100%;
  334. height: 100%;
  335. }
  336. #swiperPic {
  337. padding-top: 10px;
  338. box-sizing: border-box;
  339. .swiper-slide {
  340. padding: 10px;
  341. box-sizing: border-box;
  342. background: #fff;
  343. border: 1px solid $borderColor;
  344. .img_view {
  345. height: 100%;
  346. width: 100%;
  347. overflow: hidden;
  348. position: relative;
  349. p {
  350. position: absolute;
  351. bottom: 0;
  352. right: 0;
  353. left: 0;
  354. background-color: rgba(175, 175, 175, 0.4);
  355. text-align: center;
  356. }
  357. }
  358. }
  359. .pic_view {
  360. width: 100%;
  361. height: 100%;
  362. padding-left: 1rem 4rem;
  363. }
  364. }
  365. }
  366. .modification {
  367. .el-dialog__body {
  368. height: 100%;
  369. .mod_title {
  370. // max-height: 8rem;
  371. height: 300px;
  372. .qr_code,
  373. .msg_main {
  374. float: left;
  375. }
  376. .qr_code {
  377. width: 35%;
  378. height: 100%;
  379. padding: 0 0.6rem 0.3rem;
  380. img {
  381. width: 100%;
  382. display: block;
  383. height: 100%;
  384. }
  385. }
  386. .msg_main {
  387. width: 55%;
  388. p {
  389. overflow: hidden;
  390. text-overflow: ellipsis;
  391. display: -webkit-box;
  392. -webkit-line-clamp: 2;
  393. -webkit-box-orient: vertical;
  394. }
  395. .input_view {
  396. margin-top: 0.5rem;
  397. position: relative;
  398. input {
  399. width: 100%;
  400. height: 1.5rem;
  401. padding-left: 0.5rem;
  402. box-sizing: border-box;
  403. }
  404. i {
  405. position: absolute;
  406. right: 10px;
  407. font-size: 18px;
  408. top: 2px;
  409. color: #409eff;
  410. display: inline-block;
  411. width: 20px;
  412. cursor: pointer;
  413. transition: all 0.4s;
  414. }
  415. }
  416. }
  417. }
  418. .cant_mod {
  419. width: 100%;
  420. .table_header {
  421. // border: 1px solid $borderColor;
  422. // border-bottom: none;
  423. font-weight: 900;
  424. margin-top: 5px;
  425. // padding-left: 0.5rem;
  426. }
  427. table {
  428. width: 100%;
  429. border-color: #b6ff00;
  430. border-collapse: collapse;
  431. border: 1px solid $borderColor;
  432. tr {
  433. line-height: 1.5rem;
  434. td {
  435. border: 1px solid $borderColor;
  436. padding-left: 1rem;
  437. }
  438. }
  439. }
  440. .locale_pic {
  441. p {
  442. line-height: 1.8rem;
  443. font-weight: 900;
  444. margin-top: 0.5rem;
  445. border-bottom: 1px solid $borderColor;
  446. }
  447. div {
  448. ul {
  449. padding-left: 5px;
  450. li {
  451. width: 45%;
  452. float: left;
  453. margin: 10px;
  454. height: 12rem;
  455. overflow: hidden;
  456. position: relative;
  457. img {
  458. width: 100%;
  459. height: 193px;
  460. display: block;
  461. border: 1px solid $borderColor;
  462. }
  463. }
  464. }
  465. }
  466. }
  467. }
  468. }
  469. }
  470. .iframe_view {
  471. position: fixed;
  472. z-index: 99999;
  473. top: 0;
  474. bottom: 0;
  475. left: 0;
  476. right: 0;
  477. background-color: rgba(0, 0, 0, 0.5);
  478. .iframe_no {
  479. position: fixed;
  480. z-index: 99999;
  481. border-radius: 50%;
  482. cursor: pointer;
  483. height: 80px;
  484. overflow: hidden;
  485. right: -40px;
  486. top: -40px;
  487. transition: background-color 0.15s;
  488. width: 80px;
  489. background-color: rgba(0, 0, 0, 0.6);
  490. // background-color: #b6ff00;
  491. .iconfont {
  492. margin-top: 48px;
  493. display: inline-block;
  494. margin-left: 16px;
  495. font-size: 16px;
  496. color: #fff;
  497. }
  498. }
  499. iframe {
  500. width: 100%;
  501. height: 100%;
  502. }
  503. }
  504. }