share.wxss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. .wrap {
  2. padding-bottom: 250rpx;
  3. }
  4. .swipe {
  5. width: 100%;
  6. }
  7. .swiper-content {
  8. height: auto;
  9. }
  10. .banner-img {
  11. width: 100%;
  12. }
  13. .share-foot {
  14. padding: 20rpx 30rpx;
  15. text-align: center;
  16. box-shadow: 0 0 5rpx rgba(0, 0, 0, .3);
  17. }
  18. .share-tip {
  19. font-size: 32rpx;
  20. color: #000;
  21. font-weight: bold;
  22. margin-bottom: 20rpx;
  23. }
  24. .tot {
  25. color: #CE3C39;
  26. }
  27. .foot-btn button {
  28. background-color: #f75451;
  29. }
  30. button.primary-btn {
  31. background-color: #ff673f;
  32. color: #fff;
  33. margin-left: 40rpx;
  34. }
  35. /*分享begin*/
  36. .ui-mask {
  37. position: fixed;
  38. display: block;
  39. top: 0;
  40. left: 0;
  41. width: 100%;
  42. height: 100%;
  43. z-index: 999;
  44. background: rgba(0, 0, 0, 0.6);
  45. }
  46. .model-services {
  47. width: 100%;
  48. position: fixed;
  49. background-color: #fff;
  50. bottom: 0;
  51. z-index: 1000;
  52. color: #333;
  53. -webkit-transition: all 0.3s;
  54. transition: all 0.3s;
  55. -webkit-transform: translate(0, 100%);
  56. transform: translate(0, 100%);
  57. }
  58. .model-services.show {
  59. -webkit-transform: translate(0);
  60. transform: translate(0);
  61. }
  62. .model-services .model-services-title {
  63. font-size: 36rpx;
  64. text-align: center;
  65. height: 80rpx;
  66. line-height: 80rpx;
  67. border-bottom: 1px solid #f2f5f8;
  68. }
  69. .model-services .model-services-content {
  70. padding: 40rpx;
  71. }
  72. .model-services .model-services-content .service-item {
  73. margin-bottom: 20rpx;
  74. width: 50%;
  75. float: left;
  76. text-align: center;
  77. }
  78. .model-services .model-services-content .service-icon {
  79. font-size: 80rpx;
  80. color: #50b674;
  81. }
  82. .service-name {
  83. padding-left: 10rpx;
  84. }
  85. .cube-text {
  86. position: relative;
  87. width: 100%;
  88. height: 32rpx;
  89. line-height: 32rpx;
  90. color: #777;
  91. margin-top: 5rpx;
  92. font-size: 24rpx;
  93. }
  94. .none_btn {
  95. border: none;
  96. line-height: 1.1;
  97. padding: 0px;
  98. }
  99. button[plain] {
  100. border: none;
  101. }
  102. .share-modal {
  103. position: fixed;
  104. left: 0;
  105. right: 0;
  106. top: 0;
  107. bottom: 0;
  108. background: rgba(0, 0, 0, 0.6);
  109. z-index: 101;
  110. transition: all 400ms ease-in;
  111. }
  112. .share-modal-content {
  113. position: relative;
  114. width: 70%;
  115. top: 50%;
  116. left: 15%;
  117. transform: translateY(-50%);
  118. z-index: 110;
  119. }
  120. .share-modal-img {
  121. width: 100%;
  122. height: 956rpx;
  123. background: #f7f7f7;
  124. }
  125. .share-modal-img image {
  126. width: 100%;
  127. }
  128. .share-modal-btn-list {
  129. display: flex;
  130. margin-top: 30rpx;
  131. }
  132. .share-modal-btn-item {
  133. text-align: center;
  134. flex: 1;
  135. }
  136. .share-modal .btn-icon {
  137. width: 70rpx;
  138. margin: 0 auto;
  139. }
  140. .share-modal .btn-text {
  141. position: relative;
  142. width: 100%;
  143. height: 32rpx;
  144. line-height: 32rpx;
  145. color: #fff;
  146. margin-top: 5rpx;
  147. font-size: 24rpx;
  148. }
  149. /*分享end*/