扩展链接高佣版

appletEdit.wxss 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. /* pages/appletEdit/appletEdit.wxss */
  2. page{
  3. padding: 30rpx;
  4. box-sizing: border-box;
  5. }
  6. .topHeader{
  7. display: flex;
  8. align-items: center;
  9. justify-content: space-between;
  10. position: fixed;
  11. top: 180rpx;
  12. left: 0;
  13. width: 100%;
  14. padding: 20rpx 30rpx;
  15. background: #f3f3f3;
  16. }
  17. .topHeader .headHint{
  18. color: #333;
  19. font-size: 28rpx;
  20. line-height: 50rpx;
  21. }
  22. .topHeader .refresh,.goWarrant{
  23. color: #2662FF;
  24. font-size: 28rpx;
  25. line-height: 50rpx;
  26. text-decoration: underline;
  27. }
  28. .container{
  29. margin-top: 60rpx;
  30. padding-bottom: 100rpx;
  31. }
  32. .cardList{
  33. display: flex;
  34. align-items: center;
  35. justify-content: space-between;
  36. background: #ffffff;
  37. border-radius: 10rpx;
  38. margin-bottom: 26rpx;
  39. padding: 20rpx;
  40. }
  41. .cardList .infoBox{
  42. display: flex;
  43. align-items: center;
  44. }
  45. .cardList .infoBox image{
  46. width: 100rpx;
  47. height: 100rpx;
  48. background: #f4f4f4;
  49. border-radius: 50%;
  50. margin-right: 20rpx;
  51. }
  52. .cardList .infoBox .name{
  53. color: #333;
  54. font-size: 32rpx;
  55. line-height: 40rpx;
  56. width: 400rpx;
  57. overflow: hidden;
  58. text-overflow:ellipsis;
  59. white-space: nowrap;
  60. }
  61. .cardList .status{
  62. font-size: 26rpx;
  63. color: #2662FF;
  64. line-height: 40rpx;
  65. }
  66. .goWarrant{
  67. margin-top: 20rpx;
  68. text-align: center;
  69. }
  70. /* 授权弹框 */
  71. .showModal {
  72. position: fixed;
  73. top: 0;
  74. left: 0;
  75. width: 100%;
  76. height: 100vh;
  77. background: rgba(0, 0, 0, 0.4);
  78. z-index: 99;
  79. }
  80. .showModal .showModalCon {
  81. width: 550rpx!important;
  82. min-height: 200rpx;
  83. background: #ffffff;
  84. border-radius: 8rpx;
  85. position: absolute;
  86. top: 50%;
  87. left: 0;
  88. right: 0;
  89. transform: translateY(-50%);
  90. margin: auto;
  91. padding: 10rpx 0 0rpx;
  92. box-sizing: border-box;
  93. border-radius: 12rpx;
  94. overflow: hidden;
  95. }
  96. .showModalCon .title {
  97. font-size: 32rpx;
  98. text-align: center;
  99. padding: 20rpx;
  100. border-bottom: 2rpx solid #f4f4f4;
  101. }
  102. .showModalCon .con {
  103. font-size: 28rpx;
  104. color: #D6D6D6;
  105. line-height: 40rpx;
  106. padding: 0 40rpx;
  107. margin: 30rpx 0;
  108. min-height: 150rpx;
  109. }
  110. .showModalCon input {
  111. border-bottom: 2rpx solid #f4f4f4;
  112. line-height: 50rpx;
  113. padding: 16rpx 0;
  114. color: #333;
  115. }
  116. .showModalCon .button {
  117. position: absolute;
  118. bottom: 0;
  119. width: 100%;
  120. height: 100rpx;
  121. line-height: 100rpx;
  122. text-align: center;
  123. font-size: 28rpx;
  124. color: #2662FF;
  125. border-top: 2rpx solid #f4f4f4;
  126. background: transparent;
  127. padding: 0;
  128. }
  129. .con text {
  130. display: inline-block;
  131. font-size: 26rpx;
  132. margin: 30rpx auto;
  133. }
  134. .btn {
  135. display: flex;
  136. align-items: center;
  137. border: 2rpx solid #f4f4f4;
  138. padding: 26rpx 0;
  139. }
  140. .btn text {
  141. flex: 1;
  142. text-align: center;
  143. }
  144. /* 文章内容 */
  145. .box {
  146. position: relative;
  147. }
  148. .change {
  149. position: absolute;
  150. right: 30rpx;
  151. bottom: 70rpx;
  152. background: rgba(0,0,0,.4);
  153. color: #fff;
  154. padding: 16rpx 30rpx;
  155. }
  156. .base {
  157. width: 100%;
  158. display: block;
  159. margin: 0 auto 40rpx;
  160. }
  161. .item {
  162. margin-top: 20rpx;
  163. display: flex;
  164. justify-content: space-between;
  165. align-items: center;
  166. background: #fff;
  167. padding: 20rpx;
  168. font-size: 30rpx;
  169. border-bottom: 2rpx solid #EDEDED;
  170. }
  171. .info {
  172. color: #999;
  173. }
  174. .info image {
  175. width: 40rpx;
  176. height: 40rpx;
  177. vertical-align: middle;
  178. }
  179. .start {
  180. display: block;
  181. width: 80%;
  182. height: 80rpx;
  183. line-height: 80rpx;
  184. margin: 50rpx auto;
  185. background: #2662FF;
  186. color: #fff;
  187. border-radius: 50rpx;
  188. text-align: center;
  189. font-size: 32rpx;
  190. }
  191. .default {
  192. color: #D2D2D2;
  193. }
  194. .setting input {
  195. text-align: right;
  196. padding-right: 10rpx;
  197. }
  198. canvas {
  199. position: absolute;
  200. top: -999999px;
  201. left: -999999px;
  202. }