control.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. .scroll-view {
  2. overflow-x: scroll;
  3. white-space: nowrap;
  4. }
  5. .contril-item,
  6. .more-item{
  7. display: inline-flex;
  8. flex-direction: column;
  9. align-items: center;
  10. justify-content: center;
  11. /* width: 60px;
  12. height: 60px; */
  13. /* background-color: #fff; */
  14. /* border-radius: 50%; */
  15. /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  16. margin: 20rpx;
  17. }
  18. .contril-item-img{
  19. width: 112rpx;
  20. height: 112rpx;
  21. }
  22. .contril-item text{
  23. margin-top: 20rpx;
  24. font-weight: 400;
  25. font-size: 28rpx;
  26. color: #060809;
  27. opacity: 0.8;
  28. }
  29. .popup-title{
  30. font-weight: 600;
  31. font-size: 36rpx;
  32. color: #060809;
  33. text-align: center;
  34. margin-bottom:32rpx;
  35. }
  36. .popup-content{
  37. text-align: center;
  38. font-weight: 400;
  39. font-size: 28rpx;
  40. color: #828384;
  41. margin-bottom: 48rpx;
  42. }
  43. .sure-btn{
  44. margin-right: 10rpx;
  45. text-align: center;
  46. border-radius: 32rpx;
  47. display: flex;
  48. flex-grow: 1;
  49. justify-content: center;
  50. align-items: center;
  51. }
  52. .show-more {
  53. position: fixed;
  54. bottom: 0;
  55. left: 0;
  56. z-index: 10;
  57. width: 100%;
  58. height: 100vh;
  59. background-color: rgba(0, 0, 0, 0.4);
  60. }
  61. .more-info {
  62. border-radius: 40rpx 40rpx 0rpx 0rpx;
  63. overflow: hidden;
  64. z-index: 100;
  65. position: fixed;
  66. bottom: 0;
  67. width: 100%;
  68. background: #F1F3F4;
  69. height: 600rpx;
  70. }
  71. .model-title{
  72. margin-bottom: 46rpx;
  73. padding: 40rpx 32rpx 0rpx 32rpx;
  74. font-weight: 600;
  75. font-size: 40rpx;
  76. color: #060809;
  77. }
  78. .pay-money {
  79. background-color: #ffffff;
  80. padding: 40rpx 32rpx 0rpx 32rpx;
  81. }
  82. .more-img{
  83. width: 30rpx;
  84. height: 30rpx;
  85. }
  86. .lift-btn-view{
  87. display: flex;
  88. justify-content: center;
  89. align-items: center;
  90. padding: 32rpx;
  91. width: 100%;
  92. height: 148rpx;
  93. position: relative;
  94. margin-bottom: 40rpx;
  95. }
  96. .lift-btn{
  97. height: 80rpx;
  98. display: flex;
  99. flex: 1;
  100. font-weight: 600;
  101. font-size: 32rpx;
  102. color: #060809;
  103. font-family: PingFangSC, PingFang SC;
  104. background: #E4E7EC;
  105. border-radius: 40rpx;
  106. justify-content: center;
  107. align-items: center;
  108. }
  109. .show-modal{
  110. position: fixed;
  111. top: 0;
  112. left: 0;
  113. width: 100%;
  114. height: 100%;
  115. background-color: rgba(0, 0, 0, 0.5);
  116. display: flex;
  117. justify-content: center;
  118. align-items: center;
  119. z-index: 9999;
  120. }
  121. .modal-info{
  122. background-color: #fff;
  123. padding: 20px;
  124. border-radius: 20px;
  125. width: 80%;
  126. max-width: 300px;
  127. }
  128. .modal-footer{
  129. width: 100%;
  130. align-items: center;
  131. }
  132. .show-btn{
  133. border-radius: 40rpx;
  134. width: 50%;
  135. /* width: 230rpx; */
  136. text-align: center;
  137. font-weight: 600;
  138. font-size: 32rpx;
  139. border-radius: 40rpx;
  140. height: 80rpx;
  141. line-height: 80rpx;
  142. }
  143. .cencel-btn-pop{
  144. color: #060809;
  145. background: #EBECEC;
  146. margin-right: 12rpx;
  147. }
  148. .ok-btn-pop{
  149. color: #FFFFFF;
  150. background: #060809;
  151. }