扩展链接高佣版

applet.wxss 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /* pages/applet/applet.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: 0;
  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. margin-top: 20rpx;
  28. text-align: center;}
  29. .container {
  30. margin-top: 60rpx;
  31. padding-bottom: 100rpx;
  32. }
  33. .cardList{
  34. display: flex;
  35. align-items: center;
  36. justify-content: space-between;
  37. background: #ffffff;
  38. border-radius: 10rpx;
  39. margin-bottom: 26rpx;
  40. padding: 20rpx;
  41. }
  42. .cardList .infoBox{
  43. display: flex;
  44. align-items: center;
  45. }
  46. .cardList .infoBox image{
  47. width: 100rpx;
  48. height: 100rpx;
  49. background: #f4f4f4;
  50. border-radius: 50%;
  51. margin-right: 20rpx;
  52. }
  53. .cardList .infoBox .name{
  54. color: #333;
  55. font-size: 32rpx;
  56. line-height: 40rpx;
  57. width: 400rpx;
  58. overflow: hidden;
  59. text-overflow:ellipsis;
  60. white-space: nowrap;
  61. }
  62. .cardList .status{
  63. font-size: 26rpx;
  64. color: #2662FF;
  65. line-height: 40rpx;
  66. }
  67. /* 授权弹框 */
  68. .showModal {
  69. position: fixed;
  70. top: 0;
  71. left: 0;
  72. width: 100%;
  73. height: 100vh;
  74. background: rgba(0, 0, 0, 0.4);
  75. z-index: 99;
  76. }
  77. .showModal .showModalCon {
  78. width: 550rpx!important;
  79. min-height: 200rpx;
  80. background: #ffffff;
  81. border-radius: 8rpx;
  82. position: absolute;
  83. top: 50%;
  84. left: 0;
  85. right: 0;
  86. transform: translateY(-50%);
  87. margin: auto;
  88. padding: 10rpx 0 0rpx;
  89. box-sizing: border-box;
  90. border-radius: 12rpx;
  91. overflow: hidden;
  92. }
  93. .showModalCon .title {
  94. font-size: 32rpx;
  95. text-align: center;
  96. padding: 20rpx;
  97. border-bottom: 2rpx solid #f4f4f4;
  98. }
  99. .showModalCon .con {
  100. font-size: 28rpx;
  101. color: #D6D6D6;
  102. line-height: 40rpx;
  103. padding: 0 40rpx;
  104. margin: 30rpx 0;
  105. min-height: 150rpx;
  106. }
  107. .showModalCon input {
  108. border-bottom: 2rpx solid #f4f4f4;
  109. line-height: 50rpx;
  110. padding: 16rpx 0;
  111. color: #333;
  112. }
  113. .showModalCon .button {
  114. position: absolute;
  115. bottom: 0;
  116. width: 100%;
  117. height: 100rpx;
  118. line-height: 100rpx;
  119. text-align: center;
  120. font-size: 28rpx;
  121. color: #2662FF;
  122. border-top: 2rpx solid #f4f4f4;
  123. background: transparent;
  124. padding: 0;
  125. }
  126. .con text {
  127. display: inline-block;
  128. font-size: 26rpx;
  129. margin: 30rpx auto;
  130. }
  131. .btn {
  132. display: flex;
  133. align-items: center;
  134. border: 2rpx solid #f4f4f4;
  135. padding: 26rpx 0;
  136. }
  137. .btn text {
  138. flex: 1;
  139. text-align: center;
  140. }
  141. /* 文章内容 */
  142. .item {
  143. margin-top: 20rpx;
  144. display: flex;
  145. justify-content: space-between;
  146. align-items: center;
  147. background: #fff;
  148. padding: 20rpx;
  149. font-size: 30rpx;
  150. border-bottom: 2rpx solid #EDEDED;
  151. }
  152. .info {
  153. color: #999;
  154. }
  155. .info image {
  156. width: 40rpx;
  157. height: 40rpx;
  158. vertical-align: middle;
  159. }