index.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. .bindingCard {
  2. width: 100vw;
  3. min-height: 100vh;
  4. background-color: rgb(247, 247, 247);
  5. .detail-top {
  6. width: 100%;
  7. height: 100%;
  8. position: relative;
  9. z-index: 999;
  10. @include flex(center);
  11. .back-icon {
  12. position: absolute;
  13. left: 0;
  14. top: 50%;
  15. transform: translateY(-50%);
  16. }
  17. .shop-name {
  18. color: #000;
  19. font-size: 28rpx;
  20. }
  21. }
  22. .seize {
  23. width: 100%;
  24. height: 16rpx;
  25. background-color: #ffffff;
  26. }
  27. .binding-box {
  28. width: 100%;
  29. padding: 32rpx;
  30. box-sizing: border-box;
  31. .binding-title {
  32. font-size: 32rpx;
  33. color: rgba(0, 0, 0, 0.9);
  34. font-weight: 500;
  35. margin-bottom: 16rpx;
  36. }
  37. .binding-container {
  38. width: 100%;
  39. padding: 0 32rpx;
  40. box-sizing: border-box;
  41. background-color: #ffffff;
  42. border-radius: 16rpx;
  43. position: relative;
  44. .change-box {
  45. width: 100%;
  46. padding: 32rpx 0;
  47. border-bottom: 2rpx solid #e7e7e7;
  48. .change-title {
  49. margin-bottom: 16rpx;
  50. font-size: 28rpx;
  51. color: rgba(0, 0, 0, 0.9);
  52. }
  53. .ipt-left {
  54. padding-right: 32rpx;
  55. position: relative;
  56. font-size: 28rpx;
  57. color: rgba(0, 0, 0, 0.9);
  58. &::after {
  59. content: "";
  60. position: absolute;
  61. top: 0;
  62. right: 16rpx;
  63. width: 4rpx;
  64. border-radius: 8rpx;
  65. background-color: #e7e7e7;
  66. height: 100%;
  67. }
  68. }
  69. .right-text{
  70. font-size: 28rpx;
  71. color: #EA5C1E;
  72. }
  73. .ipt-right{
  74. width: 168rpx;
  75. height: 60rpx;
  76. text-align: center;
  77. line-height: 60rpx;
  78. font-size: 28rpx;
  79. color: rgba(0, 0, 0, 0.6);
  80. border: 2rpx solid #E7E7E7;
  81. border-radius: 8rpx;
  82. }
  83. }
  84. .inconsis {
  85. position: absolute;
  86. right: 32rpx;
  87. bottom: 28rpx;
  88. font-size: 24rpx;
  89. color: #d40f0f;
  90. @include flex(center, null, 8rpx);
  91. }
  92. }
  93. }
  94. .btn-list{
  95. width: 100%;
  96. padding: 0 32rpx;
  97. margin-top: 38rpx;
  98. box-sizing: border-box;
  99. @include flex(center,null,19rpx);
  100. .btn{
  101. width: 335rpx;
  102. height: 96rpx;
  103. text-align: center;
  104. line-height: 96rpx;
  105. border-radius: 16rpx;
  106. &:nth-of-type(1){
  107. background-color: #FFFFFF;
  108. border: 2rpx solid #E7E7E7;
  109. color: rgba(0, 0, 0, 0.6);
  110. }
  111. &:nth-of-type(2){
  112. background-color: #FE4B1E;
  113. color: #FFFFFF;
  114. }
  115. }
  116. }
  117. }