54 lines
954 B
Plaintext
54 lines
954 B
Plaintext
/* pages/chat/chat.wxss */
|
|
.chat{
|
|
width: 100%;
|
|
height: 100vh;
|
|
background-color: #faf9fa;
|
|
}
|
|
.list{
|
|
margin:20rpx 30rpx 0;
|
|
height: 710rpx;
|
|
background-color: #fff;
|
|
font-size: 28rpx;
|
|
padding:60rpx 40rpx 0;
|
|
box-sizing: border-box;
|
|
color:#000;
|
|
border-radius: 8rpx;
|
|
}
|
|
.center{
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-bottom: 60rpx;
|
|
}
|
|
.money{
|
|
margin-top: 60rpx;
|
|
font-size: 48rpx !important;
|
|
font-weight: 600;
|
|
}
|
|
.btn{
|
|
width: 280rpx;
|
|
height: 70rpx;
|
|
background-color: #7bc27e;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: 8rpx;
|
|
color:#fff;
|
|
margin-top: 30rpx;
|
|
}
|
|
.flex{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
height: 80rpx;
|
|
align-items: center;
|
|
color:#000;
|
|
}
|
|
.second{
|
|
margin-top: 30rpx;
|
|
border-top:1px solid #eee;
|
|
height: 110rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
} |