familyCard.scss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .page {
  2. min-height: 100vh;
  3. }
  4. .icon {
  5. width: 84rpx;
  6. height: 84rpx;
  7. border-radius: 42rpx;
  8. text-align: center;
  9. line-height: 84rpx;
  10. font-size: 24rpx;
  11. margin: 0 10rpx;
  12. background-color: #ED569F;
  13. color: white;
  14. }
  15. .recharge-me {
  16. .wallet-content {
  17. background-image: linear-gradient(#FFE05C 0, #FFE05C 160px, #ffffff 0, #ffffff);
  18. padding: 12px;
  19. .h-balance-wrap {
  20. background-image: url("../../../static/familyCard/detailCard.png");
  21. background-size: 100% 100%;
  22. height: 304rpx;
  23. border-radius: 6px;
  24. text-align: center;
  25. padding: 24rpx 34rpx;
  26. margin: 24rpx 0;
  27. //overflow: hidden;
  28. .h-balance {
  29. display: flex;
  30. justify-content: space-between;
  31. align-items: center;
  32. height: 100px;
  33. position: relative;
  34. .recharge-balance {
  35. width: 150rpx;
  36. margin: 0 auto;
  37. .h-nav-img {
  38. image {
  39. height: 18px;
  40. width: 18px;
  41. }
  42. }
  43. .name {
  44. font-size: 14px;
  45. font-weight: 400;
  46. color: #666666;
  47. line-height: 22px;
  48. }
  49. .balance-value {
  50. font-size: 18px;
  51. font-weight: bold;
  52. color: #333333;
  53. line-height: 26px;
  54. }
  55. }
  56. }
  57. }
  58. }
  59. }
  60. .useList {
  61. display: flex;
  62. justify-content: space-between;
  63. align-items: center;
  64. border-bottom: 1px solid #afa6a6;
  65. padding: 20rpx;
  66. margin: 24rpx;
  67. }