orders.wxss 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. @import '../../common/common.wxss';
  2. .orders-address{
  3. position: relative;
  4. padding: 20rpx 50rpx 20rpx 35rpx;
  5. font-size: 14px;
  6. line-height: 25px;
  7. border-bottom: 20rpx solid #ededed;
  8. color: #adadad;
  9. }
  10. .orders-address::after{
  11. position: absolute;
  12. right: 30rpx;
  13. top: 60rpx;
  14. content: '';
  15. width: 8px;
  16. height: 8px;
  17. border-top: 4rpx solid #7f7f7f;
  18. border-right: 4rpx solid #7f7f7f;
  19. -webkit-transform: rotate(45deg);
  20. transform: rotate(45deg);
  21. }
  22. .orders-address-name{
  23. display: inline-block;
  24. width: 300rpx;
  25. }
  26. .orders-no-address{
  27. position: relative;
  28. height: 90rpx;
  29. line-height: 90rpx;
  30. color: #adadad;
  31. border-bottom: 20rpx solid #ededed;
  32. text-align: center;
  33. }
  34. .orders-no-address::after{
  35. position: absolute;
  36. right: 30rpx;
  37. top: 34rpx;
  38. content: '';
  39. width: 16rpx;
  40. height: 16rpx;
  41. border-top: 4rpx solid #7f7f7f;
  42. border-right: 4rpx solid #7f7f7f;
  43. -webkit-transform: rotate(45deg);
  44. transform: rotate(45deg);
  45. }
  46. .orders-box{
  47. padding-bottom: 105rpx;
  48. }
  49. .orders-list{
  50. position: relative;
  51. padding:20rpx 20rpx 20rpx 220rpx;
  52. height: 180rpx;
  53. border-bottom: 1rpx solid #ededed;
  54. }
  55. .orders-thumb{
  56. position: absolute;
  57. top: 20rpx;
  58. left: 20rpx;
  59. width: 180rpx;
  60. height: 180rpx;
  61. }
  62. .orders-list view{
  63. line-height: 60rpx;
  64. }
  65. .orders-footer{
  66. position: fixed;
  67. bottom: 0;
  68. left: 0;
  69. width: 100%;
  70. height: 95rpx;
  71. line-height: 95rpx;
  72. border-top: 1rpx solid #ededed;
  73. }
  74. .orders-footer .orders-footer-total{
  75. display: inline-block;
  76. width: 510rpx;
  77. padding-left: 30rpx;
  78. box-sizing: border-box;
  79. color: #a55350;
  80. }
  81. .orders-footer .orders-footer-btn{
  82. display: inline-block;
  83. width: 240rpx;
  84. text-align: center;
  85. color: #fff;
  86. background: #AB956D;
  87. }