| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /* pages/user/ecc/ecc.wxss */
- page {
- height: auto !important;
- }
- .search {
- padding: 24rpx;
- border-bottom: 1rpx solid #EEEEEE;
- height: 68rpx;
- position: sticky;
- top: 0;
- background: #ffffff;
- display: flex;
- flex-flow: row;
- }
- input {
- flex: 1;
- font-weight: 400;
- font-size: 28rpx;
- color: #A2A2A2;
- height: 68rpx;
- line-height: 68rpx;
- background: #F8F8F8;
- border-radius: 8rpx 8rpx 8rpx 8rpx;
- padding: 0 20rpx;
- padding-left: 68rpx;
- }
- .search icon {
- position: absolute;
- left: 40rpx;
- top: 38rpx;
- font-size: 28rpx;
- }
- .search .text {
- font-weight: 500;
- font-size: 32rpx;
- color: #000000;
- line-height: 68rpx;
- margin-left: 44rpx;
- }
- .eccItem {
- display: flex;
- justify-content: space-between;
- padding: 10rpx 24rpx;
- }
- .eccItem.active {
- color: #00BC8A;
- }
- .eccList {}
- .eccItem view {
- font-size: 28rpx;
- line-height: 36rpx;
- }
- .eccItem view:last-child {
- flex: 1;
- padding-left: 40rpx;
- box-sizing: border-box;
- text-align: right;
- }
- .addAddress {
- position: fixed;
- left: 0;
- bottom: 0;
- text-align: center;
- background: #FFFFFF;
- width: 100%;
- padding: 20rpx 58rpx;
- box-sizing: border-box;
- text-align: center;
- border-top: 1px solid #EEEEEE;
- }
- .addAddress view {
- width: 140rpx;
- height: 60rpx;
- background: #00BC8A;
- border-radius: 8rpx 8rpx 8rpx 8rpx;
- font-weight: 500;
- font-size: 28rpx;
- color: #FFFFFF;
- line-height: 60rpx;
- text-align: center;
- margin: 0 auto;
- }
|