41 lines
631 B
Plaintext
41 lines
631 B
Plaintext
.customer_service {
|
|
display: flex;
|
|
flex-flow: wrap;
|
|
padding: 10px 8px 0;
|
|
font-size: 12px;
|
|
color: #333;
|
|
}
|
|
|
|
.service-item {
|
|
display: flex;
|
|
flex: 0 0 30%;
|
|
flex-direction: column;
|
|
justify-content: space-evenly;
|
|
align-items: center;
|
|
padding: 10px 5px;
|
|
background-color: #fff;
|
|
border-radius: 10px;
|
|
margin: 0 4px 10px;
|
|
}
|
|
|
|
.avatar {
|
|
width: 100px;
|
|
height: 100px;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.avatar .img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.btn-session {
|
|
color: #3b98f7;
|
|
margin-top: 10px;
|
|
padding: 2px 8px;
|
|
border-radius: 15px;
|
|
background-color: #f5f5f5;
|
|
}
|