index.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* tab */
  2. .van-tabs__scroll--line{
  3. height: auto !important;
  4. }
  5. .van-tabs{
  6. border-bottom: 1rpx solid rgba(243,244,249,1);
  7. }
  8. .van-tabs__line{
  9. width:40rpx !important;
  10. height:4rpx;
  11. background:rgba(211,68,68,1);
  12. border-radius:2rpx !important;
  13. }
  14. .van-tab,.van-tab .van-ellipsis{
  15. padding: 0 !important;
  16. font-size:30rpx;
  17. color:rgba(0,0,0,1);
  18. }
  19. .van-tab--active,.van-tab--active .van-ellipsis{
  20. color:rgba(211,68,68,1);
  21. }
  22. /* 提现记录 */
  23. .list{
  24. padding: 90rpx 30rpx 0;
  25. }
  26. .list .item{
  27. margin-top: 30rpx;
  28. font-size:30rpx;
  29. background:rgba(255,255,255,1);
  30. box-shadow:0rpx 0rpx 21rpx 0rpx rgba(0, 0, 0, 0.09);
  31. border-radius:10rpx;
  32. padding: 0 30rpx;
  33. }
  34. .list .item .item_t{
  35. display: flex;
  36. justify-content: space-between;
  37. align-items: center;
  38. padding: 10rpx 0;
  39. }
  40. .list .item .mark{
  41. display: flex;
  42. justify-content: space-between;
  43. align-items: center;
  44. padding: 10rpx 0;
  45. }
  46. .list .item .mark .mark_r{
  47. padding-left: 30rpx;
  48. }
  49. .list .item .status.refuse{
  50. color: #D54C43;
  51. }
  52. .list .item .status.pass{
  53. color:rgba(100,200,133,1);
  54. }
  55. /* 固定tab的位置 */
  56. .custom_tabs{
  57. width: 100%;
  58. position: fixed;
  59. top: 0;
  60. left: 0;
  61. }