东风启辰小程序端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

138 line
2.2KB

  1. /* pages/star/star.wxss */
  2. .home {
  3. position: relative;
  4. height: 100%;
  5. overflow: hidden;
  6. }
  7. .home>.bg {
  8. position: absolute;
  9. bottom: 0;
  10. width: 750rpx;
  11. height: 1353rpx;
  12. }
  13. .home>.logo1 {
  14. position: absolute;
  15. top: 0;
  16. left: 60rpx;
  17. width: 175rpx;
  18. height: 150rpx;
  19. }
  20. .home>.logo2 {
  21. position: absolute;
  22. top: 46rpx;
  23. right: 34rpx;
  24. width: 204rpx;
  25. height: 40rpx;
  26. }
  27. .ruleBtn {
  28. position: absolute;
  29. width: 153rpx;
  30. height: 46rpx;
  31. line-height: 46rpx;
  32. font-size: 24rpx;
  33. right: 0;
  34. top: 196rpx;
  35. color: #fff;
  36. background-color: rgba(35, 24, 21, 0.63);
  37. border-top-left-radius: 20rpx;
  38. border-bottom-left-radius: 20rpx;
  39. padding-left: 20rpx;
  40. box-sizing: border-box;
  41. }
  42. .propagandaBox {
  43. position: absolute;
  44. width: 100%;
  45. height: 76rpx;
  46. bottom: 457rpx;
  47. left: 0;
  48. display: flex;
  49. justify-content: center;
  50. align-items: center;
  51. background-color: rgba(11, 40, 109, 0.79);
  52. }
  53. .propagandaBox>.text{
  54. color: #ffffff;
  55. font-size: 28rpx;
  56. }
  57. .numBox{
  58. display: inline-block;
  59. height: 55rpx;
  60. padding: 0 15rpx;
  61. }
  62. .numBox>.numFrame{
  63. width: 42rpx;
  64. height: 100%;
  65. display: inline-block;
  66. }
  67. .home>.btnBox {
  68. position: absolute;
  69. width: 100%;
  70. text-align: center;
  71. left: 0;
  72. bottom: 15rpx;
  73. }
  74. .home>.btnBox>.btn {
  75. width: 278rpx;
  76. height: 47rpx;
  77. line-height: 47rpx;
  78. display: inline-block;
  79. background-color: #345489;
  80. margin: 0 10rpx;
  81. color: #fff;
  82. font-size: 21rpx;
  83. border-radius: 15rpx;
  84. }
  85. .mask {
  86. position: absolute;
  87. left: 0;
  88. top: 0;
  89. width: 100%;
  90. height: 100%;
  91. display: flex;
  92. align-items: center;
  93. justify-content: center;
  94. background-color: rgba(0, 0, 0, 0.5);
  95. }
  96. .mask>.ruleContent {
  97. position: relative;
  98. width: 562rpx;
  99. height: 971rpx;
  100. border-radius: 20rpx;
  101. background-color: #ffffff;
  102. }
  103. .mask>.ruleContent>.rule {
  104. position: relative;
  105. width: 100%;
  106. height: 100%;
  107. }
  108. .closeBtn {
  109. color: #ffffff;
  110. border-radius: 50%;
  111. text-align: center;
  112. height: 40rpx;
  113. line-height: 40rpx;
  114. width: 40rpx;
  115. font-size: 30rpx;
  116. padding: 2rpx;
  117. position: absolute;
  118. border: 2rpx solid #fff;
  119. }
  120. /* use cross as close button */
  121. .closeBtn::before {
  122. content: "\2716";
  123. }