12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /* pages/checkAddress/handleAddCheck.wxss */
- .address-content {
- width: 100%;
- height: 100%;
- background-color: #f7f7f7;
- position: relative;
- }
- .main-content {
- width: 690rpx;
- height: calc(100% - 150rpx);
- padding-top: 1rpx;
- margin: 0 auto;
- overflow-y:auto;
- }
- .outrang-text {
- font-size: 30rpx;
- font-weight: bold;
- color: #333333;
- margin: 40rpx 0 20rpx 0;
- }
- .addrss-item {
- width: 100%;
- min-height: 232rpx;
- border-radius: 20rpx;
- background-color: #fff;
- margin-top: 20rpx;
- }
- .top {
- width: 100%;
- min-height: 156rpx;
- border-bottom: 1rpx solid #eee;
- }
- .username {
- width: 100%;
- height: 92rpx;
- }
- .name {
- font-size: 30rpx;
- font-weight: bold;
- color: #333333;
- margin: 0 20rpx 0 30rpx;
- }
- .phone {
- font-size: 26rpx;
- font-weight: 400;
- color: #999999;
- }
- .address-detail {
- font-size: 26rpx;
- font-weight: 400;
- color: #333333;
- padding: 0 30rpx;
- }
- .button {
- height: 72rpx;
- justify-content: flex-end;
- }
- .btn {
- height: 100%;
- font-size: 24rpx;
- font-weight: 400;
- color: #999999;
- }
- .edit-btn {
- margin-right: 58rpx;
- }
- .delete-btn {
- margin-right: 30rpx;
- }
- .btn-icon {
- width: 30rpx;
- height: 30rpx;
- margin-right: 10rpx;
- }
- .add-address-btn {
- position: fixed;
- bottom: 60rpx;
- left: 4%;
- width: 690rpx;
- height: 80rpx;
- border-radius: 10rpx;
- margin: 0 auto;
- }
- .addrss-item-disabled .name {
- color: #999999;
- }
- .addrss-item-disabled .address-detail {
- color: #999999;
- }
- .nodate {
- width: 100%;
- height: calc(100% - 88rpx);
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- }
|