微信

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .inner{
  2. height: 100%;
  3. }
  4. .vip-box{
  5. width: 100%;
  6. height: 100%;
  7. padding: .25rem .2rem;
  8. box-sizing: border-box;
  9. display: flex;
  10. flex-flow: column nowrap;
  11. .vip-header{
  12. width: 100%;
  13. position: relative;
  14. margin-bottom: .4rem;
  15. box-shadow: 0 0 .05rem .05rem #eee;
  16. border-radius: .1rem;
  17. height: 1.8rem;
  18. overflow: hidden;
  19. img{
  20. position: absolute;
  21. top: 0;
  22. left: 0;
  23. }
  24. div{
  25. position: absolute;
  26. bottom: .2rem;
  27. left: .2rem;
  28. width: 80%;
  29. display: flex;
  30. flex-flow: column nowrap;
  31. justify-content: center;
  32. align-items: flex-start;
  33. .balance{
  34. color: #FC6243;
  35. padding-bottom: .1rem;
  36. font-weight: bold;
  37. span{
  38. font-size: .24rem;
  39. font-weight: bold;
  40. color: #FC6243;
  41. }
  42. }
  43. .date{
  44. color: #6D6D6D;
  45. }
  46. }
  47. }
  48. .vip-detail-list{
  49. flex: 1;
  50. display: flex;
  51. flex-flow: column nowrap;
  52. .title{
  53. font-size: .16rem;
  54. font-weight: bold;
  55. padding-bottom: .15rem;
  56. }
  57. .list-box{
  58. flex: 1;
  59. overflow-y: scroll;
  60. overflow-x: hidden;
  61. .list{
  62. display: flex;
  63. align-items: center;
  64. padding: .05rem 0 ;
  65. border-bottom: 1px solid rgba(242,242,242,1);
  66. span{
  67. width: 30%;
  68. overflow: hidden;
  69. text-overflow: ellipsis;
  70. white-space: nowrap;
  71. margin-right: .05rem;
  72. }
  73. .date{
  74. color: #999;
  75. text-align: right;
  76. flex: 1;
  77. }
  78. }
  79. }
  80. }
  81. }
  82. .swiper-pagination{
  83. bottom: .2rem;
  84. left: 50%;
  85. transform: translateX(-50%);
  86. }