123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- /* pages/message/message.wxss */
- page{
- padding: 30rpx 30rpx 160rpx;
- }
- .list{
- position: relative;
- padding-left: 80rpx;
- margin-bottom: 24rpx;
- }
- .list>image{
- width: 64rpx;
- height: 64rpx;
- position: absolute;
- left: 0;
- top: 0;
- border-radius: 100%;
- }
- .content,.name{
- font-size: 30rpx;
- line-height: 48rpx;
- }
- .answer{
- background: rgba(247, 247, 247, 1);
- padding: 20rpx;
- color: #666;
- margin: 20rpx 0;
- font-size: 28rpx;
- line-height: 36rpx;
- }
- .answer text{
- color: #2383e5;
- }
- .addr{
- position: relative;
- padding-bottom: 16px;
- border-bottom: 1px solid rgba(245, 245, 245, 1);
- }
- .addr text{
- font-size: 28rpx;
- margin-right: 24rpx;
- color: #666666;
- }
- .addr image{
- width: 34rpx;
- position: absolute;
- right: 0;
- top: 12rpx;
- }
- .post{
- position: fixed;
- padding: 24rpx 30rpx 80rpx;
- bottom: 0;
- left: 0;
- background: #fff;
- z-index: 9;
- border-top: 1px solid rgba(245, 245, 245, 1);
- display: flex;
- justify-content: space-between;
- width: 100%;
- }
- .post input{
- width: 75%;
- height: 64rpx;
- border: 1px solid rgba(224, 224, 224, 1);
- border-radius: 9rpx;
- font-size: 30rpx;
- color: #CBCBCB;
- padding: 0 16rpx;
- }
- .post button:not([size='mini']){
- height: 64rpx;
- width: 124rpx !important;
- background: #D94B24;
- border-radius: 8rpx;
- line-height: 64rpx;
- font-size: 30rpx;
- color: #fff;
- padding: 0;
- font-weight: 400;
- margin: 0;
- }
|