rotation.less 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510
  1. .overview {
  2. background: #f2f5f7;
  3. padding: 16px 20px 20px 20px;
  4. height: 100%;
  5. width: 100%;
  6. .view-title {
  7. display: flex;
  8. justify-content: space-between;
  9. align-items: center;
  10. nav {
  11. display: flex;
  12. align-items: center;
  13. span:nth-of-type(1) {
  14. width: 3px;
  15. height: 16px;
  16. background: linear-gradient(180deg, rgba(54, 156, 247, 1) 0%, rgba(2, 91, 170, 1) 100%);
  17. border-radius: 2px;
  18. margin-right: 4px;
  19. display: inline-block;
  20. }
  21. span:nth-of-type(2) {
  22. height: 24px;
  23. font-size: 16px;
  24. font-family: MicrosoftYaHeiSemibold;
  25. color: #1f2429;
  26. line-height: 21px;
  27. }
  28. }
  29. .view-button {
  30. font-family: PingFangSC-Regular, PingFang SC;
  31. font-weight: 400;
  32. line-height: 22px;
  33. width: 106px;
  34. height: 32px;
  35. background: linear-gradient(180deg, rgba(54, 156, 247, 1) 0%, rgba(2, 91, 170, 1) 100%);
  36. font-size: 14px;
  37. color: #ffffff;
  38. display: flex;
  39. align-items: center;
  40. justify-content: center;
  41. img {
  42. display: inline-block;
  43. height: 16px;
  44. width: 16px;
  45. margin-right: 6px;
  46. }
  47. }
  48. }
  49. .view-box {
  50. height: calc(100% - 45px);
  51. display: flex;
  52. justify-content: space-between;
  53. .view-left {
  54. width: 58.7%;
  55. margin-right: 10px;
  56. display: flex;
  57. flex-direction: column;
  58. .lb-left {
  59. width: 100%;
  60. flex: 1;
  61. margin-top: 12px;
  62. margin-bottom: 10px;
  63. position: relative;
  64. .lb-icon {
  65. z-index: 99999;
  66. position: absolute;
  67. top: 0;
  68. right: 2px;
  69. width: 32px;
  70. height: 32px;
  71. background: rgba(0, 0, 0, 0.6);
  72. border-radius: 0px 4px 0px 4px;
  73. }
  74. .lb-img {
  75. z-index: 999999;
  76. width: 16px;
  77. height: 16px;
  78. position: absolute;
  79. top: 8px;
  80. right: 10px;
  81. }
  82. }
  83. .lb-bottom {
  84. height: 34%;
  85. background: #ffffff;
  86. padding: 16px;
  87. nav {
  88. width: 161px;
  89. height: 32px;
  90. display: flex;
  91. align-items: center;
  92. background: linear-gradient(270deg, rgba(54, 156, 247, 0) 0%, rgba(2, 91, 170, 0.2) 100%);
  93. margin-bottom: 12px;
  94. span:nth-of-type(1) {
  95. width: 2px;
  96. height: 16px;
  97. background: #025baa;
  98. margin-right: 6px;
  99. display: inline-block;
  100. }
  101. span:nth-of-type(2) {
  102. width: 107px;
  103. height: 22px;
  104. font-size: 14px;
  105. font-family: MicrosoftYaHeiSemibold;
  106. color: #025baa;
  107. line-height: 19px;
  108. }
  109. }
  110. .place-p1 {
  111. height: 24px;
  112. font-size: 16px;
  113. font-family: MicrosoftYaHeiSemibold;
  114. color: rgba(31, 36, 41, 1);
  115. line-height: 21px;
  116. margin-bottom: 8px;
  117. }
  118. .place-p2 {
  119. margin: 16px 0;
  120. height: 22px;
  121. font-size: 14px;
  122. font-family: MicrosoftYaHei;
  123. color: rgba(31, 36, 41, 1);
  124. line-height: 19px;
  125. display: flex;
  126. align-items: center;
  127. margin-bottom: 12px;
  128. margin-top: 0px;
  129. img {
  130. margin-right: 3px;
  131. }
  132. }
  133. .place-bottom {
  134. display: flex;
  135. .place-box {
  136. width: 50%;
  137. display: flex;
  138. .place-left {
  139. display: flex;
  140. align-items: center;
  141. flex-direction: column;
  142. span {
  143. display: inline-block;
  144. width: 56px;
  145. margin-right: 8px;
  146. font-size: 12px;
  147. font-family: MicrosoftYaHei;
  148. color: rgba(100, 108, 115, 1);
  149. line-height: 22px;
  150. }
  151. }
  152. .place-right {
  153. display: flex;
  154. flex-direction: column;
  155. justify-content: flex-start;
  156. span {
  157. display: inline-block;
  158. font-size: 12px;
  159. font-family: MicrosoftYaHei;
  160. color: rgba(31, 36, 41, 1);
  161. line-height: 22px;
  162. }
  163. }
  164. }
  165. }
  166. }
  167. }
  168. .view-right {
  169. flex: 1;
  170. .view-right-box {
  171. height: 100%;
  172. display: flex;
  173. flex-direction: column;
  174. .lb-right {
  175. height: 46%;
  176. margin-top: 12px;
  177. margin-bottom: 10px;
  178. position: relative;
  179. .lb-icon {
  180. z-index: 99999;
  181. position: absolute;
  182. top: 0;
  183. right: 2px;
  184. width: 32px;
  185. height: 32px;
  186. background: rgba(0, 0, 0, 0.6);
  187. border-radius: 0px 4px 0px 4px;
  188. }
  189. .lb-img {
  190. z-index: 999999;
  191. width: 16px;
  192. height: 16px;
  193. position: absolute;
  194. top: 8px;
  195. right: 10px;
  196. }
  197. }
  198. .lb-right-bottom {
  199. flex: 1;
  200. background: #ffffff;
  201. padding: 20px 16px;
  202. nav {
  203. width: 161px;
  204. height: 32px;
  205. display: flex;
  206. align-items: center;
  207. background: linear-gradient(270deg, rgba(54, 156, 247, 0) 0%, rgba(2, 91, 170, 0.2) 100%);
  208. margin-bottom: 16px;
  209. span:nth-of-type(1) {
  210. width: 2px;
  211. height: 16px;
  212. background: #025baa;
  213. margin-right: 6px;
  214. display: inline-block;
  215. }
  216. span:nth-of-type(2) {
  217. width: 107px;
  218. height: 22px;
  219. font-size: 14px;
  220. font-family: MicrosoftYaHeiSemibold;
  221. color: #025baa;
  222. line-height: 19px;
  223. }
  224. }
  225. .view-right-bottom {
  226. overflow: auto;
  227. }
  228. }
  229. }
  230. }
  231. }
  232. }
  233. // 自适应1366*768 和1920*1080 的 暂时不用
  234. @media only screen and (min-width: 768px) and (max-width: 1366px) {
  235. // .view-left {
  236. // flex: 1;
  237. // margin-right: 16px;
  238. // .view-left-box {
  239. // display: flex;
  240. // flex-direction: column;
  241. // .view-left-top {
  242. // height: 336px;
  243. // margin-bottom: 16px;
  244. // display: flex;
  245. // justify-content: space-between;
  246. // .view-top-imgL {
  247. // margin-right: 16px;
  248. // width: 504px;
  249. // height: 336px;
  250. // }
  251. // .view-top-imgR {
  252. // width: 336px;
  253. // height: 336px;
  254. // }
  255. // }
  256. // .view-left-bottom {
  257. // background: #ffffff;
  258. // padding: 16px;
  259. // nav {
  260. // width: 161px;
  261. // height: 32px;
  262. // display: flex;
  263. // align-items: center;
  264. // background: linear-gradient(270deg, rgba(54, 156, 247, 0) 0%, rgba(2, 91, 170, 0.2) 100%);
  265. // margin-bottom: 16px;
  266. // span:nth-of-type(1) {
  267. // width: 2px;
  268. // height: 16px;
  269. // background: #025baa;
  270. // margin-right: 6px;
  271. // display: inline-block;
  272. // }
  273. // span:nth-of-type(2) {
  274. // width: 107px;
  275. // height: 22px;
  276. // font-size: 14px;
  277. // font-family: MicrosoftYaHeiSemibold;
  278. // color: #025baa;
  279. // line-height: 19px;
  280. // }
  281. // }
  282. // .place-p {
  283. // margin: 16px 0;
  284. // height: 22px;
  285. // font-size: 14px;
  286. // font-family: MicrosoftYaHei;
  287. // color: rgba(31, 36, 41, 1);
  288. // line-height: 19px;
  289. // display: flex;
  290. // align-items: center;
  291. // img {
  292. // margin-right: 3px;
  293. // }
  294. // }
  295. // .place-bottom {
  296. // display: flex;
  297. // .place-bottom-row {
  298. // display: flex;
  299. // justify-content: space-around;
  300. // div {
  301. // span {
  302. // display: block;
  303. // }
  304. // }
  305. // div:nth-of-type(1) {
  306. // margin-right: 16px;
  307. // span {
  308. // width: 56px;
  309. // font-size: 14px;
  310. // font-family: MicrosoftYaHei;
  311. // color: rgba(100, 108, 115, 1);
  312. // line-height: 32px;
  313. // }
  314. // }
  315. // div:nth-of-type(2) {
  316. // margin-right: 16px;
  317. // span {
  318. // font-size: 14px;
  319. // font-family: MicrosoftYaHei;
  320. // color: rgba(31, 36, 41, 1);
  321. // line-height: 32px;
  322. // }
  323. // }
  324. // }
  325. // }
  326. // }
  327. // }
  328. // }
  329. // .view-right {
  330. // padding: 16px;
  331. // max-width: 424px;
  332. // nav {
  333. // width: 161px;
  334. // height: 32px;
  335. // display: flex;
  336. // align-items: center;
  337. // background: linear-gradient(270deg, rgba(54, 156, 247, 0) 0%, rgba(2, 91, 170, 0.2) 100%);
  338. // margin-bottom: 16px;
  339. // span:nth-of-type(1) {
  340. // width: 2px;
  341. // height: 16px;
  342. // background: #025baa;
  343. // margin-right: 6px;
  344. // display: inline-block;
  345. // }
  346. // span:nth-of-type(2) {
  347. // width: 107px;
  348. // height: 22px;
  349. // font-size: 14px;
  350. // font-family: MicrosoftYaHeiSemibold;
  351. // color: #025baa;
  352. // line-height: 19px;
  353. // }
  354. // }
  355. // .view-right-bottom {
  356. // display: flex;
  357. // font-size: 14px;
  358. // font-family: MicrosoftYaHei;
  359. // line-height: 40px;
  360. // .view-right-bottom-l {
  361. // min-width: 42px;
  362. // margin-right: 16px;
  363. // color: #646c73;
  364. // }
  365. // .view-right-bottom-r {
  366. // color: #1f2429;
  367. // }
  368. // }
  369. // }
  370. }
  371. @media only screen and (min-width: 1367px) {
  372. // .view-left {
  373. // flex: 1;
  374. // margin-right: 20px;
  375. // .view-left-box {
  376. // display: flex;
  377. // flex-direction: column;
  378. // background: #fff2f5f7;
  379. // .view-left-top {
  380. // height: 498px;
  381. // margin-bottom: 20px;
  382. // display: flex;
  383. // justify-content: space-between;
  384. // .view-top-imgL {
  385. // margin-right: 20px;
  386. // max-width: 748px;
  387. // max-height: 498px;
  388. // }
  389. // .view-top-imgR {
  390. // max-width: 498px;
  391. // max-height: 498px;
  392. // }
  393. // }
  394. // .view-left-bottom {
  395. // background: #ffffff;
  396. // padding: 20px;
  397. // nav {
  398. // width: 181px;
  399. // height: 40px;
  400. // display: flex;
  401. // align-items: center;
  402. // background: linear-gradient(270deg, rgba(54, 156, 247, 0) 0%, rgba(2, 91, 170, 0.2) 100%);
  403. // margin-bottom: 24px;
  404. // span:nth-of-type(1) {
  405. // width: 2px;
  406. // height: 24px;
  407. // background: #025baa;
  408. // margin-right: 12px;
  409. // display: inline-block;
  410. // }
  411. // span:nth-of-type(2) {
  412. // width: 135px;
  413. // height: 22px;
  414. // font-size: 18px;
  415. // font-family: MicrosoftYaHeiSemibold;
  416. // color: #025baa;
  417. // line-height: 24px;
  418. // }
  419. // }
  420. // .place-p {
  421. // margin: 20px 0;
  422. // height: 24px;
  423. // font-size: 16px;
  424. // font-family: MicrosoftYaHei;
  425. // color: rgba(31, 36, 41, 1);
  426. // line-height: 21px;
  427. // display: flex;
  428. // align-items: center;
  429. // img {
  430. // margin-right: 3px;
  431. // }
  432. // }
  433. // .place-bottom {
  434. // display: flex;
  435. // .place-bottom-row {
  436. // display: flex;
  437. // justify-content: space-around;
  438. // div {
  439. // span {
  440. // display: block;
  441. // }
  442. // }
  443. // div:nth-of-type(1) {
  444. // margin-right: 16px;
  445. // span {
  446. // width: 76px;
  447. // font-size: 16px;
  448. // font-family: MicrosoftYaHei;
  449. // color: rgba(100, 108, 115, 1);
  450. // line-height: 40px;
  451. // }
  452. // }
  453. // div:nth-of-type(2) {
  454. // margin-right: 20px;
  455. // span {
  456. // font-size: 16px;
  457. // font-family: MicrosoftYaHei;
  458. // color: rgba(31, 36, 41, 1);
  459. // line-height: 40px;
  460. // }
  461. // }
  462. // }
  463. // }
  464. // }
  465. // }
  466. // }
  467. // .view-right {
  468. // padding: 20px;
  469. // min-width: 555px;
  470. // nav {
  471. // width: 181px;
  472. // height: 40px;
  473. // display: flex;
  474. // align-items: center;
  475. // background: linear-gradient(270deg, rgba(54, 156, 247, 0) 0%, rgba(2, 91, 170, 0.2) 100%);
  476. // margin-bottom: 24px;
  477. // span:nth-of-type(1) {
  478. // width: 2px;
  479. // height: 24px;
  480. // background: #025baa;
  481. // margin-right: 12px;
  482. // display: inline-block;
  483. // }
  484. // span:nth-of-type(2) {
  485. // width: 135px;
  486. // height: 22px;
  487. // font-size: 18px;
  488. // font-family: MicrosoftYaHeiSemibold;
  489. // color: #025baa;
  490. // line-height: 24px;
  491. // }
  492. // }
  493. // .view-right-bottom {
  494. // display: flex;
  495. // font-size: 16px;
  496. // font-family: MicrosoftYaHei;
  497. // line-height: 40px;
  498. // padding-left: 4px;
  499. // .view-right-bottom-l {
  500. // min-width: 42px;
  501. // margin-right: 30px;
  502. // color: #646c73;
  503. // }
  504. // .view-right-bottom-r {
  505. // color: #1f2429;
  506. // }
  507. // }
  508. // }
  509. }