| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- @import "../../../../themes/page.scss";
- @import "../../searc-list.scss";
- /* module/diet/pages/diet-info/diet-info.wxss */
- .diet-box{
- background: #fff;
- border-radius: 12px;
- margin-top: -30px;
- }
- .serch-input {
- background: #F3F3F3 !important;
- border-radius: 30px !important;
- padding: 8px 20px !important;
- }
- .search-bar {
- margin: 16rpx 24rpx;
- background: #F3F3F3;
- border-radius: 30px;
- overflow: hidden;
- }
- .address-list {
- height: calc(100vh - 300rpx); /* 视实际底部高度调整 */
- // padding: 0 24rpx;
- background: #F3F3F3;
- padding-bottom: 70px;
- }
- .address-item {
- background: #fff;
- // border-radius: 16rpx;
- // margin-bottom: 24rpx;
- padding: 30rpx;
- position: relative;
- border-bottom: 1px solid #eee;
- }
- .address-header {
- display: flex;
- align-items: center;
- gap: 16rpx;
- }
- .name {
- font-weight: bold;
- font-size: 32rpx;
- }
- .phone {
- margin-left: 24rpx;
- font-size: 28rpx;
- color: #333;
- margin-right: 20px;
- }
- .edit-icon {
- position: absolute;
- right: 24rpx;
- top: 24rpx;
- font-size: 36rpx;
- color: #aaa;
- }
- .address-detail {
- color: #888;
- margin-top: 8rpx;
- font-size: 28rpx;
- }
- .footer {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100vw;
- display: flex;
- justify-content: space-between;
- padding: 24rpx;
- background: #fff;
- box-shadow: 0 -2rpx 8rpx #eee;
- z-index: 10;
- }
- .wechat-btn {
- // flex: 1;
- width: 40%;
- margin-right: 16rpx;
- background-color: white !important;
- border: 1px solid #eee !important;
- font-weight: unset !important;
- }
- .add-btn {
- // flex: 1.5;
- width: 40%;
- background: #1D6FF6 !important;
- font-weight: unset !important;
- }
- .default-tag {
- background: #1D6FF6 !important;
- margin-right: 16rpx !important;
- }
- .t-icon-base {
- font-size: 15px !important;
- }
- .wechat-btn-content {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .wechat-icon {
- margin-right: 8rpx;
- font-size: 32rpx;
- color: green;
- }
- .no-result-tip{
- margin-top: 20px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
|