info.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. .layer {
  2. position: fixed;
  3. top: 0;
  4. right: 0;
  5. left: 0;
  6. bottom: 0;
  7. background: rgb(247,247,247);
  8. }
  9. .content {
  10. padding: 24rpx 30rpx 40rpx;
  11. background-color: #fff;
  12. text-align: center;
  13. }
  14. .title {
  15. font-size: 30rpx;
  16. color: #131D34;
  17. font-weight: bold;
  18. margin-bottom: 10rpx;
  19. }
  20. .desc {
  21. color: #999;
  22. font-size: 22rpx;
  23. margin-bottom: 10rpx;
  24. }
  25. .ctrl {
  26. height: 176rpx;
  27. background-color: #EF9B3A;
  28. border-radius: 4px;
  29. position: relative;display: flex;
  30. flex-direction: column;
  31. align-items: center;
  32. justify-content: center;
  33. }
  34. .ctrl::after,
  35. .ctrl::before {
  36. content: '';
  37. border-radius: 50%;
  38. background:rgba(255,255,255,0.16);
  39. position: absolute;
  40. }
  41. .ctrl::before {
  42. width:44px;
  43. height:53px;
  44. top: 0;
  45. left: 0;
  46. transform: translate(-50%, -50%);
  47. }
  48. .ctrl::after {
  49. width:70px;
  50. height:93px;
  51. right: 0;
  52. bottom: 0;
  53. transform: translate(50%, 50%);
  54. }
  55. .ctrl .money {
  56. line-height: 90rpx;
  57. height: 90rpx;
  58. font-size: 90rpx;
  59. color: #fff;
  60. font-weight: bold;
  61. }
  62. .ctrl .money text {
  63. color: inherit;
  64. font-size: 34rpx;
  65. }
  66. .ctrl .btn {
  67. font-size: 22rpx;
  68. background-color: #fff;
  69. padding: 8rpx 50rpx;
  70. color: #EF9B3A;
  71. border-radius: 24rpx;
  72. display: inline-block;
  73. }
  74. .explain {
  75. padding: 34rpx;
  76. background: #fff;
  77. margin-top: 20rpx;
  78. }
  79. .explain .title {
  80. padding: 0;
  81. text-align: center;
  82. margin: 7rpx 0 44rpx;
  83. font-size: 30rpx;
  84. font-weight: normal;
  85. position: relative;
  86. font-weight: 400;
  87. }
  88. .explain .title text {
  89. background-color: #fff;
  90. z-index: 1;
  91. position: relative;
  92. padding: 0 20rpx;
  93. }
  94. .explain .title::after {
  95. content: '';
  96. position: absolute;
  97. top: 50%;
  98. left: 10%;
  99. right: 10%;
  100. transform: translateY(-50%);
  101. height:1px;
  102. background:rgba(233,233,233,1);
  103. z-index: 0;
  104. }
  105. .explain .desc {
  106. font-size: 24rpx;
  107. color: #999;
  108. line-height: 40rpx;
  109. }