东风启辰小程序端
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

122 lines
2.0KB

  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. text-align: center;
  49. background-color: rgba(11, 40, 109, 0.79);
  50. }
  51. .home>.btnBox {
  52. position: absolute;
  53. width: 100%;
  54. text-align: center;
  55. left: 0;
  56. bottom: 15rpx;
  57. }
  58. .home>.btnBox>.btn {
  59. width: 278rpx;
  60. height: 47rpx;
  61. line-height: 47rpx;
  62. display: inline-block;
  63. background-color: #345489;
  64. margin: 0 10rpx;
  65. color: #fff;
  66. font-size: 21rpx;
  67. border-radius: 15rpx;
  68. }
  69. .mask {
  70. position: absolute;
  71. left: 0;
  72. top: 0;
  73. width: 100%;
  74. height: 100%;
  75. display: flex;
  76. align-items: center;
  77. justify-content: center;
  78. background-color: rgba(0, 0, 0, 0.5);
  79. }
  80. .mask>.ruleContent {
  81. position: relative;
  82. width: 562rpx;
  83. height: 971rpx;
  84. border-radius: 20rpx;
  85. }
  86. .mask>.ruleContent>.rule {
  87. position: relative;
  88. width: 100%;
  89. height: 100%;
  90. }
  91. .closeBtn {
  92. background: none;
  93. border: 2rpx solid #fff;
  94. color: #fff;
  95. border-radius: 50%;
  96. text-align: center;
  97. height: 40rpx;
  98. line-height: 40rpx;
  99. width: 40rpx;
  100. font-size: 30rpx;
  101. padding: 2rpx;
  102. position: absolute;
  103. }
  104. /* use cross as close button */
  105. .closeBtn::before {
  106. content: "\2716";
  107. }