东风启辰小程序端
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

91 lines
1.6KB

  1. /* pages/scout/scout.wxss */
  2. .content{
  3. position: absolute;
  4. bottom: 0;
  5. width: 100%;
  6. display: flex;
  7. flex-direction: column;
  8. justify-content: flex-end;
  9. align-items: center;
  10. }
  11. .bg{
  12. width: 100%;
  13. height: 650rpx;
  14. }
  15. .reward{
  16. width: 602rpx;
  17. height: 548rpx;
  18. margin: 43rpx auto 0 auto;
  19. }
  20. .btn{
  21. text-align: center;
  22. width: 654rpx;
  23. height: 58rpx;
  24. line-height: 58rpx;
  25. font-size: 30rpx;
  26. color: #ffffff;
  27. border-radius: 15rpx;
  28. background-color: #2a558d;
  29. margin: 20rpx auto 40rpx auto;
  30. }
  31. .btn2{
  32. text-align: center;
  33. width: 100%;
  34. height: 100%;
  35. background-color: #2a558d;
  36. margin: -58rpx auto 0rpx auto;
  37. opacity:0;
  38. }
  39. .mask {
  40. position: absolute;
  41. left: 0;
  42. top: 0;
  43. width: 100%;
  44. height: 100%;
  45. display: flex;
  46. align-items: center;
  47. justify-content: center;
  48. background-color: rgba(0, 0, 0, 0.5);
  49. }
  50. .tipContent{
  51. position: relative;
  52. width: 560rpx;
  53. height: 403rpx;
  54. border-radius: 15rpx;
  55. background-color: #ffffff;
  56. }
  57. .tipContent>.title{
  58. width: 100%;
  59. height: 78rpx;
  60. line-height: 78rpx;
  61. color: #ffffff;
  62. font-size: 33rpx;
  63. font-weight: bold;
  64. text-align: center;
  65. border-top-left-radius: 15rpx;
  66. border-top-right-radius: 15rpx;
  67. background-color: #2a558d;
  68. }
  69. .tipContent>.txt{
  70. width: 400rpx;
  71. height: 181rpx;
  72. margin: 70rpx auto 0 auto;
  73. }
  74. .closeBtn {
  75. color: #ffffff;
  76. border-radius: 50%;
  77. text-align: center;
  78. height: 40rpx;
  79. line-height: 40rpx;
  80. width: 40rpx;
  81. font-size: 30rpx;
  82. padding: 2rpx;
  83. position: absolute;
  84. border: 2rpx solid #fff;
  85. }
  86. /* use cross as close button */
  87. .closeBtn::before {
  88. content: "\2716";
  89. }