index.scss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. .index {
  2. width: 100vw;
  3. min-height: 100vh;
  4. background-color: #F1F1F1;
  5. .detail-top {
  6. width: 100%;
  7. height: 100%;
  8. position: relative;
  9. z-index: 2;
  10. @include flex(center);
  11. .top-left{
  12. position: absolute;
  13. left: 28rpx;
  14. top: 50%;
  15. transform: translateY(-50%);
  16. image{
  17. width: 48rpx;
  18. height: 48rpx;
  19. display: block;
  20. }
  21. }
  22. .top-text{
  23. font-size: 32rpx;
  24. font-weight: 600;
  25. color: #000;
  26. }
  27. }
  28. .seat{
  29. width: 100%;
  30. height: 16rpx;
  31. }
  32. .box-bg{
  33. width: 100%;
  34. height: 393rpx;
  35. // background: linear-gradient(233deg, #8CCBFF 24%, #CDE9FF 71%);
  36. // background: ;
  37. background-image:linear-gradient(to bottom, #8CCBFF 0%, #CDE9FF 71%, #F1F1F1 100%);
  38. position: fixed;
  39. top: 0;
  40. left: 0;
  41. }
  42. .container{
  43. width: 100%;
  44. padding: 28rpx 32rpx 28rpx 28rpx;
  45. box-sizing: border-box;
  46. .card-list{
  47. position: relative;
  48. .card-item{
  49. position: absolute;
  50. left: 0;
  51. }
  52. }
  53. .empty-box{
  54. width: 100%;
  55. height: 649rpx;
  56. padding-top: 260rpx;
  57. box-sizing: border-box;
  58. @include flex(center,column,6rpx);
  59. image{
  60. width: 280rpx;
  61. height: 297rpx;
  62. display: block;
  63. }
  64. text{
  65. font-size: 28rpx;
  66. font-weight: 600;
  67. color: #3A495F;
  68. }
  69. }
  70. .card-btn{
  71. width: 100%;
  72. button{
  73. width: 100%;
  74. height: 98rpx;
  75. background: linear-gradient(98deg, #0E83FF 0%, #0E3EFF 100%);
  76. text-align: center;
  77. line-height: 98rpx;
  78. border-radius: 16rpx;
  79. margin-top: 24rpx;
  80. font-size: 28rpx;
  81. color: #FFFFFF;
  82. }
  83. }
  84. }
  85. // .contant {
  86. // height: calc(100vh - env(safe-area-inset-bottom));
  87. // box-sizing: border-box;
  88. // background-color: #fff;
  89. // .header {
  90. // position: relative;
  91. // width: 100%;
  92. // height: 80rpx;
  93. // .header-icon {
  94. // position: absolute;
  95. // top: 50%;
  96. // transform: translateY(-50%);
  97. // left: 30rpx;
  98. // image {
  99. // width: 50rpx;
  100. // height: 50rpx;
  101. // display: block;
  102. // }
  103. // }
  104. // .header-title {
  105. // text-align: center;
  106. // line-height: 80rpx;
  107. // font-size: 32rpx;
  108. // }
  109. // }
  110. // .main {
  111. // padding: 20rpx 30rpx;
  112. // .add-card {
  113. // width: 100%;
  114. // height: 200rpx;
  115. // border: 1px solid #a3a3a3;
  116. // border-radius: 10rpx;
  117. // display: flex;
  118. // align-items: center;
  119. // justify-content: center;
  120. // gap: 20rpx;
  121. // color: rgb(58, 143, 255);
  122. // font-size: 30rpx;
  123. // }
  124. // }
  125. // }
  126. .d-container {
  127. @extend %securityTop;
  128. box-sizing: border-box;
  129. height: 100vh;
  130. width: 350rpx;
  131. background-color: #fff;
  132. border-radius: 16rpx;
  133. .d-image {
  134. @include flex(center, column, 20rpx);
  135. padding: 35rpx 0;
  136. box-sizing: border-box;
  137. border-top: 1rpx solid #cccccc;
  138. border-bottom: 1rpx solid #cccccc;
  139. image {
  140. width: 100rpx;
  141. height: 100rpx;
  142. display: block;
  143. border-radius: 50%;
  144. }
  145. text {
  146. font-size: 28rpx;
  147. }
  148. }
  149. .quit {
  150. height: 80rpx;
  151. text-align: center;
  152. line-height: 80rpx;
  153. font-size: 26rpx;
  154. border-bottom: 1rpx solid #cccccc;
  155. }
  156. }
  157. }
  158. ::v-deep .tui-drawer-container{
  159. border-radius: 0 16rpx 16rpx 0;
  160. }