51 lines
850 B
Plaintext
51 lines
850 B
Plaintext
/* 评价盒子 */
|
|
.box {
|
|
width: 90%;
|
|
height: 150px;
|
|
border: 1px solid #de868f;
|
|
border-radius: 20rpx;
|
|
margin-top: 20rpx;
|
|
}
|
|
/* 标题部分 */
|
|
.box1{
|
|
width: 100%;
|
|
height: 50px;
|
|
display: flex;
|
|
justify-content: space-between
|
|
}
|
|
.text{
|
|
display: inline-block;
|
|
font-weight: bold;
|
|
margin: 30rpx 0rpx 0rpx 30rpx;
|
|
}
|
|
.box2{
|
|
display:inline-block;
|
|
position:relative;
|
|
|
|
}
|
|
.text1{
|
|
font-size: 12px;
|
|
color: #aea3a4
|
|
}
|
|
.image{
|
|
width: 60px;
|
|
height: 60px;
|
|
position: relative;
|
|
left: 30rpx;
|
|
border-radius: 20px;
|
|
}
|
|
.text2{
|
|
position: relative;
|
|
}
|
|
.button {
|
|
background-color: #f3bfc1; /* Light pink background color */
|
|
color: #000000; /* Text color */
|
|
border-radius: 20px; /* Rounded edges */
|
|
padding: 10px 20px;
|
|
font-size: 16px;
|
|
width: 90%;
|
|
margin-top: 50px;
|
|
display:flex;
|
|
flex-direction: column;
|
|
align-items: center
|
|
} |