person.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. .person_info {
  2. position: relative;
  3. padding: 30rpx 40rpx;
  4. background: #fff;
  5. margin-top: 22rpx;
  6. font-size: 30rpx;
  7. }
  8. .person_info::after,.order_list::after {
  9. content: "";
  10. position: absolute;
  11. bottom: 0;
  12. left: 0;
  13. right: 0;
  14. height: 2rpx;
  15. background: #d9d9d9;
  16. -webkit-transform: scaleY(0.5);
  17. transform: scaleY(0.5);
  18. }
  19. .person_info .person_avatar_image {
  20. width: 122rpx;
  21. height: 118rpx;
  22. margin-right: 32rpx;
  23. border-radius: 10rpx;
  24. vertical-align: middle;
  25. }
  26. .order_list {
  27. position: relative;
  28. margin-top: 22rpx;
  29. font-size: 30rpx;
  30. background: #ffffff;
  31. }
  32. .order_list .order_title {
  33. position: relative;
  34. display: flex;
  35. height: 104rpx;
  36. box-sizing: border-box;
  37. line-height: 104rpx;
  38. padding: 0 40rpx;
  39. }
  40. .order_list .order_title text {
  41. flex: 1;
  42. }
  43. .order_list .order_title .look_all_order {
  44. text-align: right;
  45. color: #999;
  46. }
  47. .order_list .order_info {
  48. display: flex;
  49. padding: 40rpx;
  50. }
  51. .order_list .order_info>view {
  52. flex: 1;
  53. text-align: center;
  54. font-size: 20rpx;
  55. color: #999;
  56. }
  57. .order_list .order_info image {
  58. vertical-align: middle;
  59. }
  60. .order_list .order_info text {
  61. display: inline-block;
  62. height: 30rpx;
  63. margin-top: 10rpx;
  64. }
  65. .person_info_cell {
  66. margin-top: 22rpx;
  67. background: #ffffff;
  68. position: relative;
  69. }
  70. .person_info_cell::after {
  71. content: "";
  72. position: absolute;
  73. bottom: 0;
  74. left: 0;
  75. right: 0;
  76. height: 2rpx;
  77. background: #d9d9d9;
  78. -webkit-transform: scaleY(0.5);
  79. transform: scaleY(0.5);
  80. }
  81. .person_info_cell .item {
  82. padding: 40rpx;
  83. font-size: 30rpx;
  84. }
  85. .person_info_cell .item image {
  86. margin-right: 25rpx;
  87. }
  88. .person_info_cell .item text {
  89. display: inline-block;
  90. width: 615rpx;
  91. }
  92. .bonus_item {
  93. font-size: 30rpx;
  94. padding: 10rpx 40rpx;
  95. }
  96. .bonus_item text {
  97. display: inline-block;
  98. width: 50%;
  99. }
  100. .bonus_item text.total {
  101. color: #eb4e4f;
  102. text-align: right;
  103. }
  104. .bonus_list {
  105. overflow: hidden;
  106. }
  107. .show {
  108. max-height: 999rpx;
  109. -webkit-transition: max-height .5s;
  110. transition: max-height .5s;
  111. }
  112. .hide {
  113. max-height: 0;
  114. -webkit-transition: max-height .5s;
  115. transition: max-height .5s;
  116. }
  117. .arrow_down {
  118. -webkit-transform: rotate(45deg);
  119. transform: rotate(45deg);
  120. }