index.wxss 996 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* pages/advancerecord/index.wxss */
  2. .time_information {
  3. background: #fff;
  4. height: auto;
  5. border-radius: 15rpx;
  6. }
  7. .ul .li {
  8. width: 100%;
  9. line-height: 70rpx;
  10. height: 70rpx;
  11. border-bottom: 3rpx solid #efeff7;
  12. }
  13. .details {
  14. width: 95%;
  15. margin: 0 auto;
  16. font-size: 30rpx;
  17. color: #969696;
  18. }
  19. .details text:nth-of-type(1){
  20. float: left
  21. }
  22. .details text:nth-of-type(2){
  23. float: right;
  24. text-align: right;
  25. }
  26. .red{
  27. color: red;
  28. }
  29. .ul .li:nth-last-of-type(1){
  30. border: none;
  31. }
  32. .delivery{
  33. width: 300rpx;
  34. height: 70rpx;
  35. line-height: 70rpx;
  36. background: #63576c;
  37. margin: 0 auto;
  38. text-align: center;
  39. color: #fff;
  40. position: relative;
  41. top: 50rpx;
  42. }
  43. .alreadydelivered{
  44. width: 300rpx;
  45. height: 70rpx;
  46. line-height: 70rpx;
  47. background: #DBD7D7;
  48. margin: 0 auto;
  49. text-align: center;
  50. color: #A9A8A8;
  51. position: relative;
  52. top: 50rpx;
  53. }
  54. .time{
  55. margin:0 auto;
  56. width:94%;
  57. font-size: 25rpx;
  58. position: relative;
  59. top: 30rpx;
  60. text-align: right;
  61. color: #ccc;
  62. }