123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- .commentBox {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 999;
- overflow: hidden;
- }
- .commentBox .commentBg {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.3);
- }
- .commentBox .comment {
- position: absolute;
- left: 0;
- bottom: 0px;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- width: 100%;
- height: 900rpx;
- background-color: white;
- border-top-left-radius: 25rpx;
- border-top-right-radius: 25rpx;
- }
- .commentBox .comment .header {
- position: relative;
- padding: 24rpx;
- }
- .commentBox .comment .header .hr {
- position: absolute;
- right: 26rpx;
- top: -4rpx;
- font-size: 54rpx;
- color: #333333;
- }
- .commentBox .comment .body {
- flex: 1;
- overflow-y: auto;
- }
- .commentBox .comment .body .body-box {
- padding: 0rpx 22rpx;
- }
- .commentBox .comment .body .body-box .content {
- padding: 34rpx 0rpx;
- display: flex;
- border-bottom: 1px solid #97979783;
- }
- .commentBox .comment .body .body-box .content .c-avatar {
- width: 96rpx;
- height: 96rpx;
- border-radius: 50%;
- margin-right: 20rpx;
- background: #d8d8d8;
- }
- .commentBox .comment .body .body-box .content .c-right {
- flex: 1;
- }
- .commentBox .comment .body .body-box .content .c-right .nickName {
- font-size: 30rpx;
- color: rgba(0, 0, 0, 0.6);
- }
- .commentBox .comment .body .body-box .content .c-right .detailDesc {
- letter-spacing: 2rpx;
- padding: 24rpx 0rpx;
- font-size: 30rpx;
- color: rgba(0, 0, 0, 0.7);
- }
- .commentBox .comment .body .body-box .content .c-right .replyList {
- width: 100%;
- padding: 14rpx;
- box-sizing: border-box;
- background-color: #F7F7F7;
- margin-bottom: 20rpx;
- }
- .commentBox .comment .body .body-box .content .c-right .replyList .reply {
- font-size: 28rpx;
- }
- .commentBox .comment .body .body-box .content .c-right .replyList .reply .replyTitle {
- color: #0d93c9;
- }
- .commentBox .comment .body .body-box .content .c-right .replyList .reply .replyContent {
- color: rgba(0, 0, 0, 0.7);
- }
- .commentBox .comment .body .body-box .content .c-right .record {
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 26rpx;
- }
- .commentBox .comment .body .body-box .content .c-right .record .record-right {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .commentBox .comment .body .body-box .content .c-right .record .record-right text {
- margin-left: 6rpx;
- }
- .commentBox .comment .body .body-box .content .c-right .record .record-right .icon {
- width: 30rpx;
- height: 28rpx;
- }
- .commentBox .comment .body .body-box .content .c-right .record .record-right .iconBox {
- display: flex;
- align-items: center;
- margin-left: 24rpx;
- }
- .commentBox .comment .body .body-box .content:last-child {
- border: none;
- }
- .commentBox .comment .footer {
- display: flex;
- align-items: center;
- justify-content: space-between;
- background-color: #EEEDED;
- padding: 20rpx 24rpx;
- }
- .commentBox .comment .footer .input {
- height: 80rpx;
- flex: 1;
- padding-left: 20rpx;
- border-radius: 10rpx;
- background-color: white;
- }
- .commentBox .comment .footer .submit {
- margin-left: 40rpx;
- width: 76rpx;
- color: #0091FF;
- font-size: 32rpx;
- }
|