store-detail.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. page {
  2. background: #f4f4f4;
  3. }
  4. .banner-bg {
  5. width: 100%;
  6. }
  7. .card {
  8. width: 670rpx;
  9. margin: 0 40rpx;
  10. background: #fff;
  11. z-index: 3;
  12. box-shadow: 0px 6rpx 33rpx 0px rgba(107, 107, 107, 0.31);
  13. border-radius: 8rpx;
  14. margin-bottom: 37rpx;
  15. }
  16. .card.marginT {
  17. position: relative;
  18. top: -120rpx;
  19. }
  20. .card .logo {
  21. width: 100rpx;
  22. height: 100rpx;
  23. }
  24. .card .store-title {
  25. display: flex;
  26. font-size: 30rpx;
  27. color: #323232;
  28. font-weight: 700;
  29. }
  30. .card .info {
  31. display: flex;
  32. flex-direction: column;
  33. justify-content: space-around;
  34. margin-left: 40rpx;
  35. }
  36. .card .work-hour {
  37. font-size: 22rpx;
  38. color: #909090;
  39. }
  40. .card .list {
  41. padding-top: 30rpx;
  42. }
  43. .card .li {
  44. display: flex;
  45. align-items: center;
  46. font-size: 26rpx;
  47. padding: 15rpx 0;
  48. }
  49. .card .li .icon-address {
  50. width: 26rpx;
  51. height: 33rpx;
  52. margin-right: 25rpx;
  53. }
  54. .card .li .icon-phone {
  55. width: 31rpx;
  56. height: 26rpx;
  57. margin-right: 23rpx;
  58. }
  59. .card .li .lable {
  60. color: #323232;
  61. white-space: nowrap;
  62. }
  63. .card .li .content {
  64. color: #909090;
  65. margin-left: 40rpx;
  66. overflow: hidden;
  67. text-overflow: ellipsis;
  68. white-space: nowrap;
  69. }
  70. .card .li .map {
  71. width: 46rpx;
  72. height: 46rpx;
  73. flex: 0 0 auto;
  74. }
  75. .card-header {
  76. font-size: 30rpx;
  77. color: #323232;
  78. padding: 33rpx 36rpx;
  79. box-sizing: border-box;
  80. font-weight: 700;
  81. font-family: 'MicrosoftYaHei-Bold';
  82. border-bottom: 1px solid #daeaea;
  83. }
  84. .card-body {
  85. font-size: 26rpx;
  86. padding: 30rpx 40rpx 0;
  87. }
  88. .card .route {
  89. line-height: 50rpx;
  90. }
  91. .card .pd80 {
  92. padding-bottom: 80rpx;
  93. }
  94. .card .pd46 {
  95. padding-bottom: 46rpx;
  96. }
  97. .auth-mask {
  98. position: fixed;
  99. top: 0;
  100. left: 0;
  101. width: 100%;
  102. height: 100%;
  103. background: transparent;
  104. z-index: 99;
  105. }
  106. .auth-modal {
  107. position: absolute;
  108. top: 20%;
  109. left: 50%;
  110. width: 520rpx;
  111. box-shadow: 0px 12px 59px 3px rgba(0, 0, 0, 0.09);
  112. border-radius: 10px;
  113. border: 1px solid #17a9ff;
  114. background: #fff;
  115. transform: translateX(-50%);
  116. box-sizing: border-box;
  117. z-index: 99;
  118. overflow: hidden;
  119. }
  120. .auth-modal .title {
  121. font-size: 34rpx;
  122. color: #333;
  123. text-align: center;
  124. padding: 40rpx;
  125. }
  126. .auth-modal .content {
  127. font-size: 28rpx;
  128. color: #999;
  129. text-align: center;
  130. padding: 0 40rpx 40rpx;
  131. }
  132. .auth-modal .footer {
  133. display: flex;
  134. border-top: 1px solid #eaeaea;
  135. height: 80rpx;
  136. line-height: 80rpx;
  137. text-align: center;
  138. font-size: 28rpx;
  139. }
  140. .auth-modal .footer .btn {
  141. width: 50%;
  142. flex: 0 0 auto;
  143. color: #999;
  144. background: #fff;
  145. border-right: 1px solid #eaeaea;
  146. }
  147. .auth-modal .footer .btn:last-child {
  148. border-right: 0;
  149. }
  150. .auth-modal .footer button {
  151. font-size: 28rpx;
  152. padding: 0;
  153. line-height: 80rpx;
  154. border-radius: 0;
  155. }
  156. .auth-modal .footer button::after {
  157. border: 0;
  158. }