123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- /* pages/address/index.wxss */
- .container {
- height: 100vh;
- display: flex;
- flex-direction: column;
- background: #F5F6F7;
- --popup-round-border-radius: 20rpx !important;
- position: relative;
- &::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- height: 254rpx;
- background: linear-gradient(180deg, #FDEC00 0%, #FAD400 100%);
- }
- }
- .record-list {
- flex: 1;
- overflow-y: scroll;
- box-sizing: border-box;
- }
- .address-list {
- padding: 24rpx 26rpx;
- }
- .address-item {
- padding: 28rpx 24rpx 16rpx;
- background: #fff;
- border-radius: 20rpx;
- border: 2rpx solid #fff;
- margin-bottom: 22rpx;
- &:last-child {
- margin-bottom: 0;
- }
- // &.active {
- // border: 2rpx solid rgba(254, 36, 81, 0.7);
- // background: #FFF4F6;
- // }
- .item-title {
- font-size: 26rpx;
- color: rgba(0, 0, 0, 0.5);
- line-height: 36rpx;
- }
- .detailAddress {
- padding-top: 16rpx;
- font-size: 28rpx;
- color: #131415;
- line-height: 40rpx;
- word-break: break-all;
- }
- .item-users {
- display: flex;
- align-items: center;
- // justify-content: space-between;
- .iconChecked {
- width: 32rpx;
- height: 32rpx;
- margin-right: 8rpx;
- flex-shrink: 0;
- }
- .item-user {
- font-size: 28rpx;
- color: #333;
- line-height: 36rpx;
- font-weight: bold;
- display: flex;
- align-items: center;
- .username {
- max-width: 200rpx;
- white-space: nowrap;
- overflow: hidden;
- display: block;
- text-overflow: ellipsis;
- }
- text {
- padding-right: 8rpx;
- &:last-child {
- font-weight: 400;
- color: #777777;
- }
- }
- }
- }
- .item-btn-group {
- display: flex;
- flex: 1;
- justify-content: flex-end;
- margin-top: 24rpx;
- // border-top: 2rpx solid rgba(0, 0, 0, 0.06);
- .btn {
- width: 104rpx;
- padding: 0 !important;
- margin: 0 0 0 16rpx !important;
- line-height: 46rpx;
- border-radius: 46rpx;
- font-weight: 400;
- font-size: 24rpx;
- color: #333333;
- background-color: transparent;
- border-radius: 12rpx;
- border: 2rpx solid #DCDCDC;
- }
- }
- }
- .dialog-section {
- width: 532rpx;
- // background: linear-gradient(180deg, #FFDEE7 0%, #FFFFFF 19%, #FFFFFF 100%);
- // border-radius: 20rpx;
- box-sizing: border-box;
- // .dialog-title {
- // text-align: center;
- // font-weight: 600;
- // font-size: 36rpx;
- // color: #000000;
- // line-height: 50rpx;
- // }
- .dialog-content {
- padding: 48rpx 0;
- font-size: 32rpx;
- color: #131415;
- font-weight: 600;
- line-height: 44rpx;
- text-align: center;
- }
- .dialog-btn-group {
- display: flex;
- align-items: center;
- border-top: 2rpx solid #F2F2F2;
- .btn {
- flex: 1;
- text-align: center;
- line-height: 80rpx;
- font-size: 28rpx;
- color: #777777;
- }
- .del-btn {
- border-left: 2rpx solid #F2F2F2;
- color: #FE4600;
- }
- }
- }
- .empty-box {
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -80%);
- font-size: 32rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #999999;
- image {
- width: 384rpx;
- height: 198rpx;
- }
- .empty-text {
- font-size: 28rpx;
- color: #777777;
- line-height: 40rpx;
- text-align: center;
- padding-top: 24rpx;
- }
- }
- .pop-btn-list {
- padding: 12rpx 32rpx 50rpx 32rpx;
- // box-shadow: inset 0rpx 2rpx 0rpx 0rpx #F0F0F0;
- background-color: #fff;
- .submit-btn {
- width: 100% !important;
- margin: 0 !important;
- padding: 0 !important;
- background: linear-gradient(90deg, #544F4A 0%, #302F2B 100%);
- box-shadow: 0rpx 14rpx 14rpx 0rpx rgba(0, 0, 0, 0.18);
- border-radius: 36rpx;
- border: 8rpx solid #FFFFFF;
- color: #FEFFCA;
- font-size: 36rpx;
- font-weight: 600;
- line-height: 94rpx;
- }
- }
|