145 lines
2.8 KiB
SCSS
145 lines
2.8 KiB
SCSS
.addressBox {
|
|
margin-right: 24px;
|
|
// width: 702px;
|
|
min-height: 223px;
|
|
background: #ffffff;
|
|
border-radius: 16px;
|
|
margin-top: 24px;
|
|
margin-left: 24px;
|
|
|
|
.topBox {
|
|
padding-top: 28px;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.cirle {
|
|
border-radius: 50%;
|
|
margin-left: 32px;
|
|
width: 64px;
|
|
height: 64px;
|
|
background: #4a7fff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
.dingwei {
|
|
color: #ffffff;
|
|
font-size: 26px;
|
|
}
|
|
}
|
|
|
|
.address {
|
|
margin-left: 24px;
|
|
width: 461px;
|
|
height: 78px;
|
|
font-size: 28px;
|
|
font-weight: 500;
|
|
color: #000000;
|
|
margin-right: 41px;
|
|
display: flex;
|
|
align-items: center;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2; /*这里设置几行*/
|
|
overflow: hidden;
|
|
}
|
|
|
|
.icon_more {
|
|
font-size: 50px;
|
|
}
|
|
}
|
|
|
|
.line {
|
|
margin-top: 16px;
|
|
float: right;
|
|
margin-right: 32px;
|
|
width: 550px;
|
|
height: 1px;
|
|
background: #000000;
|
|
opacity: 0.1;
|
|
}
|
|
|
|
.bottom {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-top: 44px;
|
|
.reatName {
|
|
font-size: 28px;
|
|
font-weight: 500;
|
|
color: #337fff;
|
|
margin-right: 32px;
|
|
}
|
|
.leftbottom {
|
|
margin-left: 120px;
|
|
display: flex;
|
|
align-items: center;
|
|
.name {
|
|
line-height: 34px;
|
|
width: 84px;
|
|
height: 34px;
|
|
@include common_ellipsis();
|
|
font-size: 28px;
|
|
font-weight: 400;
|
|
color: #343434;
|
|
margin-right: 16px;
|
|
}
|
|
|
|
.phone {
|
|
height: 34px;
|
|
font-size: 28px;
|
|
font-weight: 400;
|
|
color: #343434;
|
|
// margin-right: 70px;
|
|
}
|
|
}
|
|
|
|
.reatBox {
|
|
position: relative;
|
|
margin-right: 32px;
|
|
|
|
.updateBtn {
|
|
width: 200px;
|
|
font-size: $font_size_min;
|
|
background-color: #f0f0f0;
|
|
height: 64px;
|
|
border-radius: 16px;
|
|
color: $color_font_two;
|
|
// position: absolute;
|
|
bottom: 10px;
|
|
// right: -10px;
|
|
text-align: center;
|
|
z-index: 999;
|
|
|
|
.updateBtn_list {
|
|
position: absolute;
|
|
display: flex;
|
|
z-index: 5;
|
|
width: 100%;
|
|
|
|
.updateBtn_item_select {
|
|
color: #fff;
|
|
}
|
|
}
|
|
|
|
.updateBtn_item {
|
|
flex: 1;
|
|
text-align: center;
|
|
line-height: 64px;
|
|
}
|
|
|
|
.updateBtn_select {
|
|
color: #fff;
|
|
background-color: $color_main;
|
|
border-radius: 16px;
|
|
position: absolute;
|
|
width: 100px;
|
|
height: 61px;
|
|
z-index: 1;
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|