center.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /* pointExchange/index.wxss */
  2. .top-bg{
  3. width: 770rpx;
  4. height: 404rpx;
  5. background-position: bottom;
  6. padding-top: 24px;
  7. background-size: 100%,100%;
  8. margin-left: -20rpx;
  9. }
  10. .title-box{
  11. width: 80%;
  12. height: 38px;
  13. }
  14. .title-box .left{
  15. display: inline-block;
  16. vertical-align: middle;
  17. width: 50%;
  18. color: white;
  19. font-size: 30rpx;
  20. padding-left: 30rpx;
  21. }
  22. .title-box .right{
  23. display: inline-block;
  24. vertical-align: middle;
  25. width: 30%;
  26. color: white;
  27. line-height: 38px;
  28. }
  29. .title-box .left image{
  30. width: 40rpx;
  31. }
  32. .point{
  33. font-size: 80rpx;
  34. font-weight: 700;
  35. text-align: center;
  36. color: #ffffff;
  37. margin-bottom: 12rpx;
  38. }
  39. .tip{
  40. font-size: 32rpx;
  41. font-weight: 400;
  42. text-align: center;
  43. color: #ffffff;
  44. margin-bottom: 38rpx;
  45. }
  46. .content{
  47. background: white;
  48. width: 100%;
  49. height: calc(100vh - 355rpx);
  50. box-sizing: border-box;
  51. position: absolute;
  52. top: 355rpx;
  53. left: 0;
  54. border-radius: 40rpx 40rpx 0px 0px;
  55. overflow: auto;
  56. }
  57. .content scroll-view{
  58. height: 100%;
  59. }
  60. .card{
  61. box-sizing: border-box;
  62. background: white;
  63. padding: 0 51rpx;
  64. border-radius: 40rpx 40rpx 0px 0px;
  65. }
  66. .item {
  67. padding: 28rpx 0;
  68. display: flex;
  69. justify-content: space-between;
  70. align-items: center;
  71. border-bottom: 1px solid #f0f0f0;
  72. }
  73. .item image {
  74. width: 71rpx;
  75. height: 71rpx;
  76. vertical-align: middle;
  77. margin-right: 23rpx;
  78. background: white;
  79. border-radius: 50%;
  80. }
  81. .item .title {
  82. font-size: 30rpx;
  83. text-align: left;
  84. color: #1a1a1a;
  85. margin-bottom: 7rpx;
  86. }
  87. .item .time {
  88. font-size: 26rpx;
  89. font-weight: 400;
  90. text-align: left;
  91. color: #808080;
  92. }
  93. .item .num {
  94. font-size: 34rpx;
  95. font-weight: 400;
  96. color: #ff0000;
  97. }
  98. /* .item .num.green{
  99. color: #8fcd4d;
  100. } */
  101. .left{
  102. display: inline-block;
  103. vertical-align: middle;
  104. }