123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- .wrap {
- width: 100%;
- display: flex;
- flex-direction: column;
- padding: 20rpx 24rpx;
- box-sizing: border-box;
- }
- .radio-row {
- display: flex;
- align-items: center;
- }
- .circle {
- width: 30rpx;
- height: 30rpx;
- }
- .default {
- color: #919191;
- font-size: 26rpx;
- line-height: 26rpx;
- margin-left: 20rpx;
- }
- .list {
- width: 100%;
- display: flex;
- flex-direction: column;
- }
- .item {
- width: 100%;
- display: flex;
- flex-direction: column;
- border-radius: 16rpx;
- background-color: #fff;
- margin-bottom: 20rpx;
- }
- .item:last-child {
- margin-bottom: 0;
- }
- .item-top {
- width: 100%;
- display: flex;
- align-items: center;
- padding: 28rpx 22rpx 32rpx 16rpx;
- box-sizing: border-box;
- }
- .item-top-sidebar {
- flex: 1;
- display: flex;
- flex-direction: column;
- }
- .address-icon {
- width: 70rpx;
- height: 70rpx;
- margin-right: 16rpx;
- }
- .item-bottom {
- width: 100%;
- height: 93rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-top: 1px dashed #E2E6E9;
- box-sizing: border-box;
- padding: 0 28rpx;
- }
- .name {
- width: 100%;
- display: flex;
- align-items: center;
- color: #000000;
- font-size: 34rpx;
- font-weight: bold;
- }
- .number {
- color: #A7A7A7;
- font-size: 28rpx;
- margin-left: 24rpx;
- font-weight: normal;
- }
- .default-tag {
- width: 72rpx;
- height: 38rpx;
- line-height: 38rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- border: 1px solid #F2501A;
- border-radius: 100rpx;
- color: #F2501A;
- font-size: 20rpx;
- margin-left: 16rpx;
- }
- .msg {
- width: 100%;
- color: #919191;
- font-size: 26rpx;
- margin-top: 8rpx;
- }
- .btn-box {
- display: flex;
- align-items: center;
- }
- .btn-box button {
- display: flex;
- align-items: center;
- font-size: 26rpx;
- color: #919191;
- margin: 0 30rpx 0 0;
- background-color: initial;
- padding: 0;
- }
- .btn-box button:last-child {
- margin-right: 0;
- }
- .btn-box button image {
- width: 40rpx;
- height: 40rpx;
- margin-right: 9rpx;
- }
- .footer {
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 74rpx 25rpx;
- box-sizing: border-box;
- }
- .footer button {
- width: 100%;
- height: 90rpx;
- line-height: 90rpx;
- border-radius: 100rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: #F2501A;
- box-sizing: border-box;
- color: #fff;
- font-size: 28rpx;
- }
- .footer button image {
- width: 38rpx;
- height: 38rpx;
- margin-right: 14rpx;
- }
- button::after {
- border: none;
- }
- .circle-box {
- width: 70rpx;
- height: 70rpx;
- border-radius: 50%;
- display: flex;
- justify-content: center;
- align-items: center;
- color: #F2501A;
- font-size: 26rpx;
- background: linear-gradient(40deg, rgba(242, 80, 26, 0.5), rgba(247, 148, 116, 0.5));
- border-radius: 50%;
- margin-right: 16rpx;
- }
- .edit-btn {
- background: initial;
- border-radius: initial;
- margin-left: 60rpx;
- }
- .edit-btn image {
- width: 27rpx;
- }
|