investHome2compound.css 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. *,
  2. *:before,
  3. *:after {
  4. padding: 0;
  5. margin: 0;
  6. box-sizing: border-box;
  7. }
  8. html,
  9. body {
  10. height: 100%;
  11. font-size: 14px;
  12. background-color: #ECFFFF;
  13. font-family: 'Microsoft YaHei', 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', Arial, sans-serif;
  14. }
  15. .flex {
  16. display: flex;
  17. }
  18. .flex1 {
  19. flex: 1;
  20. }
  21. .flex2 {
  22. flex: 2;
  23. }
  24. .flex-around {
  25. display: flex;
  26. justify-content: space-around;
  27. }
  28. .flex-between {
  29. display: flex;
  30. justify-content: space-between;
  31. align-items: center;
  32. }
  33. .flex-end {
  34. display: flex;
  35. justify-content: flex-end;
  36. }
  37. .flex-align-center {
  38. display: flex;
  39. align-items: center;
  40. }
  41. .text-center {
  42. text-align: center;
  43. }
  44. .font12 {
  45. font-size: 12px;
  46. }
  47. .main-color {
  48. color: #0bf1ff;
  49. }
  50. .danger-color {
  51. color: #f15450 !important;
  52. }
  53. .error-color {
  54. color: #ffc704 !important;
  55. }
  56. .btm10 {
  57. margin-bottom: 10px;
  58. }
  59. .btm20 {
  60. margin-bottom: 20px;
  61. }
  62. a {
  63. text-decoration: none;
  64. cursor: pointer;
  65. }
  66. [v-cloak] {
  67. display: none;
  68. }
  69. #app {
  70. background: url('../images/page-bg.png') center center no-repeat;
  71. background-size: 100% 100%;
  72. padding-top: 10px;
  73. height: 100vh;
  74. overflow: hidden;
  75. color: #fff;
  76. }
  77. .my-header {
  78. position: relative;
  79. height: 70px;
  80. line-height: 70px;
  81. background: url('../images/header-bg.png') center center no-repeat;
  82. background-size: 100% 100%;
  83. text-align: center;
  84. font-weight: bold;
  85. font-size: 32px;
  86. font-weight: 600;
  87. }
  88. .my-header span {
  89. background: linear-gradient(-3deg, #99EEFF 0%, #99EEFF 30%, #FFFFFF 91%);
  90. -webkit-background-clip: text;
  91. -webkit-text-fill-color: transparent;
  92. }
  93. .my-header span.right {
  94. position: absolute;
  95. right: 60px;
  96. top: 0px;
  97. font-size: 16px;
  98. }
  99. .main {
  100. padding: 15px;
  101. display: flex;
  102. height: calc(100vh - 25px);
  103. background: url('../images/content-bg2.png') no-repeat center bottom;
  104. display: flex;
  105. padding-bottom: 65px;
  106. }
  107. .left {
  108. margin-right: 10px;
  109. }
  110. .left,
  111. .right {
  112. flex: 1;
  113. display: flex;
  114. flex-direction: column;
  115. }
  116. .dv-border-box-8 {
  117. background: url('../images/left-border2.png') no-repeat;
  118. background-size: 100% 100%;
  119. }
  120. .left .title {
  121. position: relative;
  122. text-align: center;
  123. height: 50px;
  124. line-height: 50px;
  125. }
  126. .left .title .text {
  127. font-size: 20px;
  128. font-weight: 600;
  129. color: #05fbfe;
  130. text-shadow: 0px 2px 10px rgba(10, 30, 52, 0.48);
  131. background: linear-gradient(0deg, #ffffff 0%, #63dcff 0%, #e0f3ff 100%);
  132. -webkit-background-clip: text;
  133. -webkit-text-fill-color: transparent;
  134. position: relative;
  135. }
  136. .left .title .text::before {
  137. position: absolute;
  138. content: ' ';
  139. top: 10px;
  140. left: -40px;
  141. width: 30px;
  142. height: 10px;
  143. background: url('../images/title-left.png') no-repeat;
  144. }
  145. .left .title .text::after {
  146. position: absolute;
  147. content: ' ';
  148. top: 10px;
  149. right: -40px;
  150. width: 30px;
  151. height: 10px;
  152. background: url('../images/title-right.png') no-repeat;
  153. }
  154. .left .content {
  155. height: calc(100% - 60px);
  156. padding: 0 17px 14px;
  157. display: flex;
  158. }
  159. .left .content .content-left {
  160. margin-right: 10px;
  161. display: flex;
  162. align-items: center;
  163. justify-content: space-evenly;
  164. }
  165. .item {
  166. display: flex;
  167. align-items: center;
  168. flex-direction: column;
  169. }
  170. .item .item-title {
  171. color: #69C0FF;
  172. font-size: 28px;
  173. font-weight: bold;
  174. }
  175. .item .item-title span {
  176. font-weight: 500;
  177. font-size: 14px;
  178. }
  179. .item .item-img {
  180. width: 106px;
  181. height: 106px;
  182. margin-bottom: 9px;
  183. }
  184. .item .item-text {
  185. color: rgba(255,255,255,0.6);
  186. font-size: 14px;
  187. }
  188. .item2 {
  189. width: 50%;
  190. display: flex;
  191. flex-direction: column;
  192. align-items: center;
  193. }
  194. .item2 .item2-title {
  195. font-weight: bold;
  196. font-size: 18px;
  197. }
  198. .item2 .item2-title span {
  199. font-weight: 500;
  200. font-size: 12px;
  201. }
  202. .item2 .item2-img {
  203. width: 67px;
  204. height: 66px;
  205. margin-top: -20px;
  206. }
  207. .item2 .item2-text {
  208. color: rgba(255,255,255,0.6);
  209. font-size: 12px;
  210. }
  211. .item3 {
  212. display: flex;
  213. flex-direction: column;
  214. align-items: center;
  215. }
  216. .item3 .item3-title {
  217. font-weight: bold;
  218. font-size: 24px;
  219. color: #69C0FF;
  220. }
  221. .item3 .item3-title span {
  222. font-size: 14px;
  223. font-weight: 500;
  224. }
  225. .item3 .item3-img {
  226. margin-top: -20px;
  227. width: 100px;
  228. height: 102px;
  229. margin-bottom: 18px;
  230. }
  231. .item3 .item3-text {
  232. font-size: 14px;
  233. color: rgba(255,255,255,0.6);
  234. }
  235. .item4 .item4-title {
  236. position: relative;
  237. padding-left: 10px;
  238. color: #69C0FF;
  239. margin-left: 10px;
  240. margin-top: 10px;
  241. }
  242. .item4 .item4-title::before {
  243. content: '';
  244. position: absolute;
  245. left: 0;
  246. top: 50%;
  247. transform: translate(0, -50%);
  248. width: 5px;
  249. height: 5px;
  250. border-radius: 50%;
  251. background-color: #69C0FF;
  252. }
  253. .item4 .item4-con {
  254. display: flex;
  255. align-items: center;
  256. justify-content: space-around;
  257. height: 100%;
  258. }
  259. .item4 .item4-con .item{
  260. display: flex;
  261. flex-direction: column;
  262. align-items: center;
  263. justify-content: center;
  264. }
  265. .item4 .item4-con .item .title {
  266. color: #69C0FF;
  267. font-weight: bold;
  268. font-size: 28px;
  269. }
  270. .item4 .item4-con .item .title span {
  271. font-weight: 500;
  272. font-size: 14px;
  273. }
  274. .item4 .item4-con .item .text {
  275. font-size: 14px;
  276. color: rgba(255,255,255,0.6);
  277. }
  278. .item5 {
  279. padding: 14px;
  280. height: 100%;
  281. }
  282. .item5 .title {
  283. height: 30px;
  284. color: #69C0FF;
  285. border: 1px solid #40A9FF;
  286. border-radius: 5px;
  287. display: flex;
  288. align-items: center;
  289. justify-content: end;
  290. padding: 0 6px;
  291. }
  292. .left .content .content-con {
  293. margin-right: 10px;
  294. }
  295. .left .content .content-left, .left .content .content-right, .left .content .content-con {
  296. background-color: rgb(18 81 128 / 22%);
  297. flex: 1;
  298. }
  299. .right .title {
  300. position: relative;
  301. text-align: center;
  302. height: 50px;
  303. line-height: 50px;
  304. }
  305. .right .title .text {
  306. font-size: 20px;
  307. font-weight: 600;
  308. color: #05fbfe;
  309. text-shadow: 0px 2px 10px rgba(10, 30, 52, 0.48);
  310. background: linear-gradient(0deg, #ffffff 0%, #63dcff 0%, #e0f3ff 100%);
  311. -webkit-background-clip: text;
  312. -webkit-text-fill-color: transparent;
  313. position: relative;
  314. }
  315. .right .title .text::before {
  316. position: absolute;
  317. content: ' ';
  318. top: 10px;
  319. left: -40px;
  320. width: 30px;
  321. height: 10px;
  322. background: url('../images/title-left.png') no-repeat;
  323. }
  324. .right .title .text::after {
  325. position: absolute;
  326. content: ' ';
  327. top: 10px;
  328. right: -40px;
  329. width: 30px;
  330. height: 10px;
  331. background: url('../images/title-right.png') no-repeat;
  332. }
  333. .right .content {
  334. height: calc(100% - 60px);
  335. padding: 0 17px 14px;
  336. display: flex;
  337. }
  338. .right .content .content-left {
  339. margin-right: 10px;
  340. }
  341. .right .content .content-left, .right .content .content-right {
  342. display: flex;
  343. flex: 1;
  344. }
  345. .right .content .content-top {
  346. margin-bottom: 10px;
  347. }
  348. .right .content .content-top, .right .content .content-bot {
  349. background-color: rgb(18 81 128 / 22%);
  350. flex: 1;
  351. }
  352. .right .content .content-left .content-left-l {
  353. background-color: rgb(18 81 128 / 22%);
  354. flex: 1;
  355. margin-right: 10px;
  356. display: flex;
  357. align-items: center;
  358. justify-content: center;
  359. }
  360. .right .content .content-left .content-left-r {
  361. flex: 2;
  362. display: flex;
  363. flex-direction: column;
  364. }
  365. .right .content .content-left .content-left-r .content-left-r-t {
  366. margin-bottom: 10px;
  367. }
  368. .right .content .content-left .content-left-r .content-left-r-t, .right .content .content-left .content-left-r .content-left-r-b{
  369. background-color: rgb(18 81 128 / 22%);
  370. flex: 1;
  371. }
  372. .right .content .content-right .content-right-l {
  373. margin-right: 10px;
  374. }
  375. .right .content .content-right .content-right-l, .right .content .content-right .content-right-r{
  376. background-color: rgb(18 81 128 / 22%);
  377. flex: 1;
  378. }
  379. .tip-window {
  380. display: inline-flex;
  381. align-items: center;
  382. justify-content: center;
  383. position: absolute;
  384. right: 15px;
  385. top: 10px;
  386. height: 30px;
  387. padding: 0 10px;
  388. color: #69c0ff;
  389. background-color: rgba(64, 169, 255, 0.12);
  390. border: 2px solid #40a9ff;
  391. border-radius: 5px;
  392. border-top-right-radius: 10px;
  393. cursor: pointer;
  394. box-sizing: border-box;
  395. }