东风启辰小程序端
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.

83 line
1.5KB

  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. .mask {
  32. position: absolute;
  33. left: 0;
  34. top: 0;
  35. width: 100%;
  36. height: 100%;
  37. display: flex;
  38. align-items: center;
  39. justify-content: center;
  40. background-color: rgba(0, 0, 0, 0.5);
  41. }
  42. .tipContent{
  43. position: relative;
  44. width: 560rpx;
  45. height: 403rpx;
  46. border-radius: 15rpx;
  47. background-color: #ffffff;
  48. }
  49. .tipContent>.title{
  50. width: 100%;
  51. height: 78rpx;
  52. line-height: 78rpx;
  53. color: #ffffff;
  54. font-size: 33rpx;
  55. font-weight: bold;
  56. text-align: center;
  57. border-top-left-radius: 15rpx;
  58. border-top-right-radius: 15rpx;
  59. background-color: #2a558d;
  60. }
  61. .tipContent>.txt{
  62. width: 400rpx;
  63. height: 181rpx;
  64. margin: 70rpx auto 0 auto;
  65. }
  66. .closeBtn {
  67. color: #ffffff;
  68. border-radius: 50%;
  69. text-align: center;
  70. height: 40rpx;
  71. line-height: 40rpx;
  72. width: 40rpx;
  73. font-size: 30rpx;
  74. padding: 2rpx;
  75. position: absolute;
  76. border: 2rpx solid #fff;
  77. }
  78. /* use cross as close button */
  79. .closeBtn::before {
  80. content: "\2716";
  81. }