user.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. @import '../../common/common.wxss';
  2. .header{
  3. position: relative;
  4. height: 160rpx;
  5. line-height: 100rpx;
  6. padding:30rpx 30rpx 30rpx 150rpx;
  7. box-sizing: border-box;
  8. background: #AB956D;
  9. font-size: 28rpx;
  10. color: #fff;
  11. }
  12. .header .thumb{
  13. position: absolute;
  14. left: 30rpx;
  15. top: 30rpx;
  16. width: 100rpx;
  17. height: 100rpx;
  18. border-radius: 50%;
  19. }
  20. .header .about{
  21. float: right;
  22. }
  23. .address-box{
  24. border-bottom: 20rpx solid #ededed;
  25. color: #999;
  26. line-height: 90rpx;
  27. font-size: 28rpx;
  28. }
  29. .address-box .address-manage{
  30. position: relative;
  31. height: 90rpx;
  32. border-bottom: 1rpx solid #e9e9e9;
  33. text-align: center;
  34. }
  35. .address-box .address-manage::after{
  36. position: absolute;
  37. right: 30rpx;
  38. top: 34rpx;
  39. content: '';
  40. width: 16rpx;
  41. height: 16rpx;
  42. border-top: 4rpx solid #7f7f7f;
  43. border-right: 4rpx solid #7f7f7f;
  44. -webkit-transform: rotate(45deg);
  45. transform: rotate(45deg);
  46. }
  47. .address-box .address-list{
  48. padding-left: 30rpx;
  49. }
  50. .address-box .address-list view{
  51. height: 90rpx;
  52. border-bottom: 1rpx solid #e9e9e9;
  53. }
  54. .address-box .address-list view:last-child{
  55. border-bottom: 0;
  56. }
  57. .orders-box{
  58. color: #999;
  59. font-size: 28rpx;
  60. }
  61. .orders{
  62. height: 90rpx;
  63. line-height: 90rpx;
  64. border-bottom: 1rpx solid #e9e9e9;
  65. text-align: center;
  66. }
  67. .orders-list{
  68. padding-left: 30rpx;
  69. border-bottom: 20rpx solid #ededed;
  70. }
  71. .orders-list:last-child{
  72. border-bottom: 0;
  73. }
  74. .orders-number{
  75. height: 90rpx;
  76. line-height: 90rpx;
  77. border-bottom: 1rpx solid #e9e9e9;
  78. }
  79. .orders-detail{
  80. position: relative;
  81. height: 120rpx;
  82. padding: 35rpx 20rpx 35rpx 170rpx;
  83. border-bottom: 1rpx solid #e9e9e9;
  84. }
  85. .orders-detail image{
  86. position: absolute;
  87. left: 0;
  88. top: 20rpx;
  89. width: 150rpx;
  90. height: 150rpx;
  91. }
  92. .orders-detail view{
  93. line-height: 60rpx;
  94. }
  95. .orders-detail .orders-status{
  96. position: absolute;
  97. right: 20rpx;
  98. top: 35rpx;
  99. height: 120rpx;
  100. line-height: 120rpx;
  101. color: #b42f2d;
  102. }
  103. .orders-footer{
  104. height: 60rpx;
  105. line-height: 60rpx;
  106. color: #2f2f2f;
  107. padding:15rpx 30rpx 15rpx 0;
  108. }
  109. .orders-footer .orders-btn{
  110. float: right;
  111. width: 170rpx;
  112. height: 60rpx;
  113. line-height:60rpx;
  114. border-radius: 6rpx;
  115. background: #b42f2d;
  116. color: #fff;
  117. }