80 lines
1.2 KiB
Plaintext
80 lines
1.2 KiB
Plaintext
.container {
|
|
width: 100vw;
|
|
background-color: #ffffff;
|
|
}
|
|
.tui-navigatorbar{
|
|
position: fixed;
|
|
top: 0;
|
|
width: 750rpx;
|
|
height: 170rpx;
|
|
background-color: #bae46b;
|
|
z-index: 99;
|
|
}
|
|
.tui-navigatorbar-back{
|
|
position: absolute;
|
|
width: 48rpx;
|
|
height: 48rpx;
|
|
left: 40rpx;
|
|
bottom: 20rpx;
|
|
}
|
|
.conversation-title {
|
|
position:absolute;
|
|
width: 350rpx;
|
|
height: 88rpx;
|
|
line-height: 56rpx;
|
|
font-size: 36rpx;
|
|
color: #e68080;
|
|
bottom: 0;
|
|
left: 200rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.box{
|
|
width: 92vw;
|
|
margin: 170rpx auto 0 auto;
|
|
height: calc(100vh - 170rpx);
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.top{
|
|
flex: 3;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.logo{
|
|
display:flex;
|
|
align-items: center;
|
|
flex: 1;
|
|
align-items: flex-end;
|
|
}
|
|
.msg{
|
|
font-size: 40rpx;
|
|
color: #333333;
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
}
|
|
.btn{
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
font-size: 28rpx;
|
|
color: #666666;
|
|
}
|
|
.bottom{
|
|
flex: 3;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
}
|
|
.bottom_txt{
|
|
font-size: 30rpx;
|
|
color: #333333;
|
|
margin-bottom: 60rpx;
|
|
}
|
|
|
|
|