index.wxss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. .wux-cell {
  2. padding: 20rpx 30rpx;
  3. position: relative;
  4. display: -webkit-box;
  5. display: -webkit-flex;
  6. display: flex;
  7. -webkit-box-align: center;
  8. -webkit-align-items: center;
  9. align-items: center;
  10. background: #fff;
  11. }
  12. .wux-cell:after {
  13. content: " ";
  14. position: absolute;
  15. left: 0;
  16. bottom: 0;
  17. right: 0;
  18. height: 2rpx;
  19. border-bottom: 2rpx solid #D9D9D9;
  20. color: #D9D9D9;
  21. -webkit-transform-origin: 0 100%;
  22. transform-origin: 0 100%;
  23. -webkit-transform: scaleY(0.5);
  24. transform: scaleY(0.5);
  25. left: 30rpx;
  26. }
  27. .wux-cell--last:after {
  28. display: none;
  29. }
  30. .wux-cell--hover {
  31. background-color: #ECECEC;
  32. }
  33. .wux-cell__thumb {
  34. display: block;
  35. width: 40rpx;
  36. height: 40rpx;
  37. margin-right: 10rpx;
  38. }
  39. .wux-cell__bd {
  40. -webkit-box-flex: 1;
  41. -webkit-flex: 1;
  42. flex: 1;
  43. }
  44. .wux-cell__text {
  45. text-align: left;
  46. }
  47. .wux-cell__desc {
  48. text-align: left;
  49. line-height: 1.2;
  50. font-size: 24rpx;
  51. color: #808080;
  52. }
  53. .wux-cell__ft {
  54. text-align: right;
  55. color: #808080;
  56. }
  57. .wux-cell--access .wux-cell__ft {
  58. padding-right: 26rpx;
  59. position: relative;
  60. }
  61. .wux-cell--access .wux-cell__ft:after {
  62. content: " ";
  63. display: inline-block;
  64. height: 12rpx;
  65. width: 12rpx;
  66. border-width: 4rpx 4rpx 0 0;
  67. border-color: #C8C8CD;
  68. border-style: solid;
  69. -webkit-transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  70. transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  71. position: relative;
  72. top: -4rpx;
  73. position: absolute;
  74. top: 50%;
  75. margin-top: -8rpx;
  76. right: 4rpx;
  77. }