index.wxss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. @import '/app.wxss';
  2. .address-window {
  3. background-color: #fff;
  4. position: fixed;
  5. bottom: 0;
  6. left: 0;
  7. width: 100%;
  8. z-index: 101;
  9. transform: translate3d(0, 100%, 0);
  10. transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  11. }
  12. .address-window.on {
  13. transform: translate3d(0, 0, 0);
  14. }
  15. .address-window .title {
  16. font-size: 32rpx;
  17. font-weight: bold;
  18. text-align: center;
  19. height: 123rpx;
  20. line-height: 123rpx;
  21. position: relative;
  22. }
  23. .address-window .title .iconfont {
  24. position: absolute;
  25. right: 30rpx;
  26. color: #8a8a8a;
  27. font-size: 35rpx;
  28. }
  29. .address-window .list .item {
  30. margin-left: 30rpx;
  31. padding-right: 30rpx;
  32. border-bottom: 1px solid #eee;
  33. height: 129rpx;
  34. font-size: 25rpx;
  35. color: #333;
  36. }
  37. .address-window .list .item .iconfont {
  38. font-size: 37rpx;
  39. color: #2c2c2c;
  40. }
  41. .address-window .list .item .iconfont.icon-complete {
  42. font-size: 30rpx;
  43. color: #fff;
  44. }
  45. .address-window .list .item .address {
  46. width: 560rpx;
  47. }
  48. .address-window .list .item .address .name {
  49. font-size: 28rpx;
  50. font-weight: bold;
  51. color: #282828;
  52. margin-bottom: 4rpx;
  53. }
  54. .address-window .list .item .address .name .phone {
  55. margin-left: 18rpx;
  56. }
  57. .address-window .addressBnt {
  58. font-size: 30rpx;
  59. font-weight: bold;
  60. color: #fff;
  61. width: 690rpx;
  62. height: 86rpx;
  63. border-radius: 43rpx;
  64. text-align: center;
  65. line-height: 86rpx;
  66. margin: 85rpx auto;
  67. }
  68. .address-window .pictrue {
  69. width: 414rpx;
  70. height: 336rpx;
  71. margin: 0 auto;
  72. }
  73. .address-window .pictrue image {
  74. width: 100%;
  75. height: 100%;
  76. }