todayNews.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. @import '@css/mixin.scss';
  2. Page {
  3. background: #5271ff;
  4. height: 100%;
  5. }
  6. .scoped-box {
  7. .sb-top {
  8. width: 100%;
  9. height: 350px;
  10. position: relative;
  11. .bg {
  12. width: 100%;
  13. height: 350px;
  14. position: absolute;
  15. top: 0;
  16. left: 0;
  17. z-index: 1;
  18. }
  19. .date {
  20. position: absolute;
  21. top: 112px;
  22. left: 52px;
  23. z-index: 2;
  24. width: 100px;
  25. .d1 {
  26. color: #3758eb;
  27. font-size: 30px;
  28. text-align: center;
  29. }
  30. .d2 {
  31. color: #3758eb;
  32. font-size: 24px;
  33. text-align: center;
  34. }
  35. .d3 {
  36. color: #3758eb;
  37. font-size: 20px;
  38. text-align: center;
  39. }
  40. }
  41. .weather {
  42. position: absolute;
  43. top: 246px;
  44. left: 60px;
  45. z-index: 2;
  46. font-size: 24px;
  47. color: #0e47c8;
  48. }
  49. }
  50. .sb-footer {
  51. width: 100%;
  52. height: 456px;
  53. position: relative;
  54. .bg {
  55. width: 100%;
  56. height: 456px;
  57. position: absolute;
  58. top: 0;
  59. left: 0;
  60. z-index: 1;
  61. }
  62. .t {
  63. position: absolute;
  64. top: 180px;
  65. left: 100px;
  66. right: 100px;
  67. z-index: 2;
  68. color: #5f5f5f;
  69. font-weight: bold;
  70. font-size: 26px;
  71. }
  72. }
  73. .sb-content {
  74. margin: 0 50px;
  75. background: #fff;
  76. padding: 20px 20px 0;
  77. box-sizing: border-box;
  78. .op {
  79. display: flex;
  80. padding-bottom: 30px;
  81. }
  82. .n {
  83. width: 36px;
  84. height: 36px;
  85. line-height: 36px;
  86. background: #fc5f5b;
  87. color: #fff;
  88. text-align: center;
  89. font-size: 24px;
  90. border-radius: 50%;
  91. margin-top: 4px;
  92. }
  93. .t {
  94. padding-left: 10px;
  95. flex: 1;
  96. font-size: 28px;
  97. color: #5f5f5f;
  98. }
  99. }
  100. }