| 123456789101112131415161718192021222324252627282930313233343536373839404142 | .address {    background-color: #fff;    margin: 0 auto;    padding: 10rpx;    display: flex;    align-items: center;    justify-content: space-between;    width: 94%;    height: 240rpx;    border-radius: 16rpx;    .address_info {        margin-left: 6rpx;        .info_top {            display: flex;            align-items: center;            justify-content: start;            margin-bottom: 10rpx;            .name {                font-size: 32rpx;                font-weight: 700;            }            .mobile {                font-size: 28rpx;                color: #B0ADAD;                margin-left: 12rpx;            }        }        .info_content {            font-size: 30rpx;            margin-bottom: 10rpx;        }        .tips {            font-size: 30rpx;            color: #ee0a24;        }    }    .address_select {        font-size: 36rpx;        font-weight: 700;        color: #ffca28;    }}
 |