48 lines
657 B
Plaintext
48 lines
657 B
Plaintext
.contact{
|
|
padding: 0 20rpx;
|
|
background-color: #fff;
|
|
}
|
|
.contact-box{
|
|
padding: 20rpx 0;
|
|
border-bottom: 1px solid #DDD;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.contact-box:last-child{
|
|
border-bottom: none;
|
|
}
|
|
.contact-info{
|
|
display: flex;
|
|
}
|
|
.contact-info image{
|
|
width: 120rpx;
|
|
height: 120rpx;
|
|
margin-right: 10rpx;
|
|
border-radius: 50%;
|
|
}
|
|
.name{
|
|
font-size: 34rpx;
|
|
margin: 15rpx 0 10rpx;
|
|
}
|
|
.type{
|
|
font-size: 28rpx;
|
|
color: #A6A6A6;
|
|
}
|
|
.contact-btn{
|
|
font-size: 32rpx;
|
|
color: #fff;
|
|
background-color: #FF4949;
|
|
border-radius: 40rpx;
|
|
padding: 0 15rpx;
|
|
height: 50rpx;
|
|
line-height: 50rpx;
|
|
margin-top: 25rpx;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|