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