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