| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- page {
- background-color: #eeeeee;
- background-size: cover;
- box-sizing: border-box;
- }
- .address {
- width: 100%;
- }
- .address_content {
- width: 100%;
- background: #FFFFFF;
- margin-top: 20rpx;
- }
- .content_top {
- width: 90%;
- margin: 0 auto;
- }
- .content_part1 {
- font-size: 32rpx;
- color: #333333;
- display: flex;
- align-items: center;
- padding-top: 30rpx;
- }
- .content_name {
- font-size: 36rpx;
- font-weight: bold;
- }
- .content_number {
- margin-left: 20rpx;
- }
- .content_btn {
- padding: 4rpx 10rpx;
- border-radius: 10rpx;
- border: 1rpx solid #FCD202;
- color: #FCD202;
- margin-left: 20rpx;
- font-size: 22rpx;
- text-align: center;
- }
- .content_part2 {
- color: #999999;
- font-size: 28rpx;
- margin-top: 20rpx;
- margin-bottom: 30rpx;
- }
- .content_bottom {
- display: flex;
- width: 90%;
- margin: 0 auto;
- height: 60rpx;
- }
- .bottom_left {
- flex: 1;
- display: flex;
- justify-content: left;
- align-items: center;
- }
- .bottom_right {
- flex: 1;
- position: relative;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .write image {
- width: 35rpx;
- height: 35rpx;
- }
- .dete image {
- width: 35rpx;
- height: 35rpx;
- }
- .write {
- position: absolute;
- right: 75rpx;
- }
- .dete {
- position: absolute;
- right: 0rpx;
- }
- /* 添加收货地址 */
- .btn {
- position: fixed;
- bottom: 0rpx;
- width: 100%;
- height: 100rpx;
- line-height: 100rpx;
- background-color: white;
- padding-top: 10rpx;
- }
- .address_push {
- width: 90%;
- height: 80rpx;
- margin: 0 auto;
- background: #FCD202;
- border-radius: 20rpx;
- color: white;
- text-align: center;
- line-height: 80rpx;
- font-size: 35rpx;
- }
|