扩展链接高佣版

index.wxss 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. page{
  2. padding: 30rpx;
  3. box-sizing: border-box;
  4. }
  5. .topHeader{
  6. display: flex;
  7. align-items: center;
  8. justify-content: space-between;
  9. position: fixed;
  10. top: 0;
  11. left: 0;
  12. width: 100%;
  13. padding: 20rpx 30rpx;
  14. background: #f3f3f3;
  15. z-index: 9999;
  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 .infoBox .infoHint{
  62. color: #aaa;
  63. font-size: 24rpx;
  64. line-height: 30rpx;
  65. margin-top:10rpx;
  66. width: 400rpx;
  67. overflow: hidden;
  68. text-overflow:ellipsis;
  69. white-space: nowrap;
  70. }
  71. .cardList .status{
  72. font-size: 26rpx;
  73. color: #aaa;
  74. line-height: 40rpx;
  75. }
  76. .cardList .active {
  77. color: #2662FF;
  78. }
  79. .goWarrant{
  80. margin-top: 20rpx;
  81. text-align: center;
  82. }
  83. /* 授权弹框 */
  84. .showModal {
  85. position: fixed;
  86. top: 0;
  87. left: 0;
  88. width: 100%;
  89. height: 100vh;
  90. background: rgba(0, 0, 0, 0.4);
  91. z-index: 99;
  92. }
  93. .showModal .showModalCon {
  94. width: 550rpx!important;
  95. min-height: 200rpx;
  96. background: #ffffff;
  97. border-radius: 8rpx;
  98. position: absolute;
  99. top: 50%;
  100. left: 0;
  101. right: 0;
  102. transform: translateY(-50%);
  103. margin: auto;
  104. padding: 10rpx 0 40rpx;
  105. box-sizing: border-box;
  106. }
  107. .showModal .showModalCon .title {
  108. font-size: 32rpx;
  109. text-align: center;
  110. padding: 20rpx;
  111. border-bottom: 2rpx solid #f4f4f4;
  112. }
  113. .showModal .showModalCon .con {
  114. font-size: 28rpx;
  115. color: #666666;
  116. line-height: 40rpx;
  117. padding: 0 60rpx 20rpx;
  118. margin: 30rpx 0;
  119. min-height: 150rpx;
  120. }
  121. .showModal .showModalCon .button {
  122. position: absolute;
  123. bottom: 0;
  124. width: 100%;
  125. height: 100rpx;
  126. line-height: 100rpx;
  127. text-align: center;
  128. font-size: 28rpx;
  129. color: #2662FF;
  130. border-top: 2rpx solid #f4f4f4;
  131. background: transparent;
  132. padding: 0;
  133. }