44 lines
857 B
SCSS
44 lines
857 B
SCSS
.carInfo{
|
||
margin-top: 10px;
|
||
box-sizing: border-box;
|
||
width: 100%;
|
||
min-height: 151px;
|
||
background: #FFFFFF;
|
||
padding:8px 23px 17px 30px ;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
.left_wrap,.right_wrap{
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: space-around;
|
||
}
|
||
.title {
|
||
font-size: 14px;
|
||
font-family: PingFangSC-Medium, PingFang SC;
|
||
font-weight: 500;
|
||
color: #323643;
|
||
.mar_left{
|
||
margin-left: 8px;
|
||
}
|
||
.star {
|
||
color: red;
|
||
margin-right: 3px;
|
||
}
|
||
}
|
||
.right_wrap{
|
||
align-items: flex-end;
|
||
.phone{
|
||
font-size: 13px;
|
||
font-weight: 500;
|
||
color: #323643;
|
||
}
|
||
input{
|
||
font-size: 12px;
|
||
text-align: right;
|
||
&::-webkit-input-placeholder { /* WebKit browsers,webkit内核浏览器 */
|
||
color: #A1A1A1;
|
||
}
|
||
}
|
||
}
|
||
}
|