index.css 846 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .MainBg{
  2. width: 1920px;
  3. height: 1080px;
  4. background: #08071f url(./bg.png) no-repeat center center;
  5. background-size: 100% 100%;
  6. position: relative;
  7. display: flex;
  8. flex-direction: column;
  9. }
  10. .MainBg * {
  11. box-sizing: border-box;
  12. }
  13. .MainBg .Title{
  14. height: 60px;
  15. color:#0b9cdf;
  16. line-height: 70px;
  17. text-align: center;
  18. overflow: hidden;
  19. font-size:24px;
  20. font-weight:400;
  21. }
  22. .MainBg .FullScreen{
  23. position: absolute;
  24. right: 15px;
  25. top: 15px;
  26. }
  27. .MainBg .subTitle{
  28. display: flex;
  29. margin-top: 25px;
  30. }
  31. .MainBg .subTitle .subLeft,
  32. .MainBg .subTitle .subRight{
  33. width: 460px;
  34. display: flex;
  35. }
  36. .MainBg .subTitle .subCenter{
  37. flex: 1;
  38. }
  39. .MainBg .content{
  40. margin: 20px 40px 0;
  41. /* flex: 1; */
  42. display: flex;
  43. height: 897px;
  44. }
  45. .MainBg .foot{
  46. min-height: 40px;
  47. }