扩展链接高佣版

index.wxss 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. }
  16. .topHeader .headHint{
  17. color: #333;
  18. font-size: 28rpx;
  19. line-height: 50rpx;
  20. }
  21. .topHeader .refresh,.goWarrant{
  22. color: #2662FF;
  23. font-size: 28rpx;
  24. line-height: 50rpx;
  25. text-decoration: underline;
  26. }
  27. .container{
  28. margin-top: 80rpx;
  29. padding-bottom: 100rpx;
  30. }
  31. .cardList{
  32. display: flex;
  33. align-items: center;
  34. justify-content: space-between;
  35. background: #ffffff;
  36. border-radius: 10rpx;
  37. margin-top: 26rpx;
  38. padding: 20rpx;
  39. }
  40. .cardList .infoBox{
  41. display: flex;
  42. align-items: center;
  43. }
  44. .cardList .infoBox image{
  45. width: 100rpx;
  46. height: 100rpx;
  47. background: #f4f4f4;
  48. border-radius: 50%;
  49. margin-right: 20rpx;
  50. }
  51. .cardList .infoBox .name{
  52. color: #333;
  53. font-size: 32rpx;
  54. line-height: 40rpx;
  55. width: 400rpx;
  56. overflow: hidden;
  57. text-overflow:ellipsis;
  58. white-space: nowrap;
  59. }
  60. .cardList .infoBox .infoHint{
  61. color: #aaa;
  62. font-size: 24rpx;
  63. line-height: 30rpx;
  64. margin-top:10rpx;
  65. width: 400rpx;
  66. overflow: hidden;
  67. text-overflow:ellipsis;
  68. white-space: nowrap;
  69. }
  70. .cardList .status{
  71. font-size: 26rpx;
  72. color: #aaa;
  73. line-height: 40rpx;
  74. }
  75. .cardList .right_jt{
  76. width: 40rpx;
  77. }
  78. .goWarrant{
  79. margin-top: 20rpx;
  80. text-align: center;
  81. }