| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /* pages/moreReply/moreReply.wxss */
- @import "/pages/moreReply/moreReplyItem/moreReplyItem.wxss";
- .viewBox {
- position: fixed;
- width: 100%;
- height: 100%;
- background-color: white;
- overflow: hidden;
- }
- .replyListBox {
- height: 90%;
- width: 100%;
- }
- .replyBox {
- height: 10%;
- width: 100%;
- display: flex;
- flex-direction: row;
- white-space: nowrap;
- margin-bottom: 15rpx;
- }
- .inputBox {
- width: 70%;
- height: 100%;
- display: inline-flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- padding-left: 20rpx;
- }
- .input {
- width: 100%;
- height: 60rpx;
- background-color: transparent;
- font-size: 30rpx;
- border-bottom: 1px gray solid;
- }
- .replyButton {
- width: 30%;
- height: 100%;
- display: inline-flex;
- flex-direction: row;
- justify-content: flex-end;
- align-items: center;
- }
- .scroll-box {
- width: 100%;
- height: 100%;
- }
- .scroll-list {
- width: 100%;
- display: flex;
- flex-direction: column;
- white-space: nowrap;
- }
|