123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- .top_boxs {
- width: calc(100% - 60rpx);
- padding: 20rpx 30rpx;
- background-color: #fff;
- display: flex;
- justify-content: space-between;
- align-content: center;
- }
- .diz {
- width: 25%;
- padding: 16rpx 0rpx;
- }
- .search-bar {
- width: 75%;
- position: relative;
- display: flex;
- align-items: center;
- background-color: #fff;
- border: 1rpx solid #dcdfe6;
- border-radius: 12rpx;
- padding: 16rpx 20rpx;
- }
- .search-bar input {
- flex: 1;
- height: 100%;
- padding-right: 60rpx;
- font-size: 32rpx;
- border: none;
- background: transparent;
- }
- .search-icon {
- position: absolute;
- right: 20rpx;
- width: 45rpx;
- height: 45rpx;
- }
- .container {
- background-color: #f5f5f5;
- padding: 20rpx 30rpx;
- }
- .address_list {
- width: 100%;
- margin-bottom: 20rpx;
- }
- .address_item {
- background-color: #fff;
- border-radius: 10rpx;
- padding: 20rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 10rpx;
- }
- .location_icon {
- width: 30rpx;
- height: 30rpx;
- margin-right: 10rpx;
- }
- .address_text {
- font-size: 28rpx;
- color: #333;
- flex: 1;
- margin-left: 10rpx;
- }
- .action_buttons {
- width: 15%;
- display: flex;
- /* align-items: center; */
- }
- .search-icons {
- width: 35rpx;
- height: 35rpx;
- }
- .edit_button, .delete_button {
- width: 40rpx;
- height: 40rpx;
- background-color: #f5f5f5;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 28rpx;
- color: #333;
- margin-left: 10rpx;
- }
- .add_address_button {
- width: calc(100% - 40rpx) !important;
- height: 80rpx;
- background-color: #3b8cff;
- color: #fff;
- font-size: 32rpx;
- border-radius: 40rpx;
- margin-top: 20rpx;
- }
- .buttons_boxs {
- position: fixed;
- bottom: 40rpx;
- left: 0;
- width: 100%;
- }
|