ecc.wxss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /* pages/user/ecc/ecc.wxss */
  2. page {
  3. height: auto !important;
  4. }
  5. .search {
  6. padding: 24rpx;
  7. border-bottom: 1rpx solid #EEEEEE;
  8. height: 68rpx;
  9. position: sticky;
  10. top: 0;
  11. background: #ffffff;
  12. display: flex;
  13. flex-flow: row;
  14. }
  15. input {
  16. flex: 1;
  17. font-weight: 400;
  18. font-size: 28rpx;
  19. color: #A2A2A2;
  20. height: 68rpx;
  21. line-height: 68rpx;
  22. background: #F8F8F8;
  23. border-radius: 8rpx 8rpx 8rpx 8rpx;
  24. padding: 0 20rpx;
  25. padding-left: 68rpx;
  26. }
  27. .search icon {
  28. position: absolute;
  29. left: 40rpx;
  30. top: 38rpx;
  31. font-size: 28rpx;
  32. }
  33. .search .text {
  34. font-weight: 500;
  35. font-size: 32rpx;
  36. color: #000000;
  37. line-height: 68rpx;
  38. margin-left: 44rpx;
  39. }
  40. .eccItem {
  41. display: flex;
  42. justify-content: space-between;
  43. padding: 10rpx 24rpx;
  44. }
  45. .eccItem.active {
  46. color: #00BC8A;
  47. }
  48. .eccList {}
  49. .eccItem view {
  50. font-size: 28rpx;
  51. line-height: 36rpx;
  52. }
  53. .eccItem view:last-child {
  54. flex: 1;
  55. padding-left: 40rpx;
  56. box-sizing: border-box;
  57. text-align: right;
  58. }
  59. .addAddress {
  60. position: fixed;
  61. left: 0;
  62. bottom: 0;
  63. text-align: center;
  64. background: #FFFFFF;
  65. width: 100%;
  66. padding: 20rpx 58rpx;
  67. box-sizing: border-box;
  68. text-align: center;
  69. border-top: 1px solid #EEEEEE;
  70. }
  71. .addAddress view {
  72. width: 140rpx;
  73. height: 60rpx;
  74. background: #00BC8A;
  75. border-radius: 8rpx 8rpx 8rpx 8rpx;
  76. font-weight: 500;
  77. font-size: 28rpx;
  78. color: #FFFFFF;
  79. line-height: 60rpx;
  80. text-align: center;
  81. margin: 0 auto;
  82. }