|
@@ -1,297 +1,300 @@
|
|
|
.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);
|
|
|
- }
|
|
|
+ z-index: 999;
|
|
|
+ overflow: hidden;
|
|
|
|
|
|
- .comment {
|
|
|
- position: absolute;
|
|
|
- left: 0;
|
|
|
- bottom: 0px;
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- justify-content: space-between;
|
|
|
- width: 100%;
|
|
|
- background-color: white;
|
|
|
- border-top-left-radius: 25rpx;
|
|
|
- border-top-right-radius: 25rpx;
|
|
|
-
|
|
|
- .header {
|
|
|
- position: relative;
|
|
|
- padding: 24rpx;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
-
|
|
|
- .hl {
|
|
|
- position: relative;
|
|
|
- padding-bottom: 10rpx;
|
|
|
- margin-right: 120rpx;
|
|
|
- }
|
|
|
-
|
|
|
- .currentH::after {
|
|
|
- position: absolute;
|
|
|
- bottom: 0rpx;
|
|
|
- left: 50%;
|
|
|
- transform: translateX(-50%);
|
|
|
- content: '';
|
|
|
- width: 50rpx;
|
|
|
- height: 4rpx;
|
|
|
- background-color: #333;
|
|
|
- }
|
|
|
-
|
|
|
- .hr {
|
|
|
- position: absolute;
|
|
|
- right: 26rpx;
|
|
|
- top: -4rpx;
|
|
|
- font-size: 54rpx;
|
|
|
- color: #333333;
|
|
|
- }
|
|
|
+ .commentBg {
|
|
|
+ position: fixed;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ background: rgba(0, 0, 0, .3);
|
|
|
}
|
|
|
|
|
|
- .body {
|
|
|
- height: 40vh;
|
|
|
-
|
|
|
- .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);
|
|
|
- }
|
|
|
+ .comment {
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ bottom: 0px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: space-between;
|
|
|
+ width: 100%;
|
|
|
+ background-color: white;
|
|
|
+ border-top-left-radius: 25rpx;
|
|
|
+ border-top-right-radius: 25rpx;
|
|
|
|
|
|
- .c-right {
|
|
|
- flex: 1;
|
|
|
+ .header {
|
|
|
+ position: relative;
|
|
|
+ padding: 24rpx;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
|
|
|
- .nickName {
|
|
|
- font-size: 30rpx;
|
|
|
- color: rgba(0, 0, 0, 0.60);
|
|
|
+ .hl {
|
|
|
+ position: relative;
|
|
|
+ padding-bottom: 10rpx;
|
|
|
+ margin-right: 120rpx;
|
|
|
+ color: black;
|
|
|
}
|
|
|
|
|
|
- .detailDesc {
|
|
|
- letter-spacing: 2rpx;
|
|
|
- margin: 12rpx 0rpx;
|
|
|
- padding: 12rpx 0rpx;
|
|
|
- border-radius: 10rpx;
|
|
|
- font-size: 30rpx;
|
|
|
- word-break: break-all;
|
|
|
- color: rgba(0, 0, 0, 0.7);
|
|
|
+ .currentH::after {
|
|
|
+ position: absolute;
|
|
|
+ bottom: 0rpx;
|
|
|
+ left: 50%;
|
|
|
+ transform: translateX(-50%);
|
|
|
+ content: '';
|
|
|
+ width: 50rpx;
|
|
|
+ height: 4rpx;
|
|
|
+ background-color: #333;
|
|
|
}
|
|
|
|
|
|
- .hoverClass {
|
|
|
- background-color: #F7F7F7;
|
|
|
+ .hr {
|
|
|
+ position: absolute;
|
|
|
+ right: 26rpx;
|
|
|
+ top: -4rpx;
|
|
|
+ font-size: 54rpx;
|
|
|
+ color: #333333;
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- .replyList {
|
|
|
- width: 100%;
|
|
|
- padding: 14rpx;
|
|
|
- box-sizing: border-box;
|
|
|
- background-color: #fafafa93;
|
|
|
- margin-bottom: 20rpx;
|
|
|
-
|
|
|
- .reply {
|
|
|
- font-size: 28rpx;
|
|
|
- margin-bottom: 8rpx;
|
|
|
- .replyTitle {
|
|
|
- color: rgb(13, 147, 201);
|
|
|
+ .body {
|
|
|
+ height: 40vh;
|
|
|
+
|
|
|
+ .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: black;
|
|
|
+ }
|
|
|
+
|
|
|
+ .detailDesc {
|
|
|
+ letter-spacing: 2rpx;
|
|
|
+ margin: 12rpx 0rpx;
|
|
|
+ padding: 12rpx 0rpx;
|
|
|
+ border-radius: 10rpx;
|
|
|
+ font-size: 26rpx;
|
|
|
+ line-height: 40rpx;
|
|
|
+ word-break: break-all;
|
|
|
+ color: rgba(0, 0, 0, 0.7);
|
|
|
+ }
|
|
|
+
|
|
|
+ .hoverClass {
|
|
|
+ background-color: #F7F7F7;
|
|
|
+ }
|
|
|
+
|
|
|
+ .replyList {
|
|
|
+ width: 100%;
|
|
|
+ padding: 14rpx;
|
|
|
+ box-sizing: border-box;
|
|
|
+ background-color: #fafafa93;
|
|
|
+ margin-bottom: 20rpx;
|
|
|
+
|
|
|
+ .reply {
|
|
|
+ font-size: 28rpx;
|
|
|
+ margin-bottom: 8rpx;
|
|
|
+
|
|
|
+ .replyTitle {
|
|
|
+ color: rgb(13, 147, 201);
|
|
|
+ }
|
|
|
+
|
|
|
+ .replyContent {
|
|
|
+ color: rgba(0, 0, 0, 0.7);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .hoverClass2 {
|
|
|
+ background-color: #F7F7F7;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .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;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .c-like {
|
|
|
+ flex: 1;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+
|
|
|
+ .left {
|
|
|
+ height: 90rpx;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: space-between;
|
|
|
+
|
|
|
+ .nickName {
|
|
|
+ font-size: 36rpx;
|
|
|
+ color: black;
|
|
|
+ }
|
|
|
+
|
|
|
+ .time {
|
|
|
+ font-size: 24rpx;
|
|
|
+ color: #666666;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .follow {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ width: 140rpx;
|
|
|
+ font-size: 24rpx;
|
|
|
+ padding: 8rpx 0rpx;
|
|
|
+ border-radius: 50rpx;
|
|
|
+ border: 1rpx solid #1BC665;
|
|
|
+ color: #1BC665;
|
|
|
+
|
|
|
+ .character {
|
|
|
+ width: 22rpx;
|
|
|
+ height: 22rpx;
|
|
|
+ margin-right: 6rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .isFans {
|
|
|
+ border: 1rpx solid #E2ECFB;
|
|
|
+ background-color: #E2ECFB;
|
|
|
+ color: #333;
|
|
|
+ }
|
|
|
+
|
|
|
+ .pkNum {
|
|
|
+ color: #30C866;
|
|
|
+ font-size: 44rpx;
|
|
|
+ margin-right: 20rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
- .replyContent {
|
|
|
- color: rgba(0, 0, 0, 0.7);
|
|
|
+ .content:last-child {
|
|
|
+ border: none;
|
|
|
}
|
|
|
- }
|
|
|
-
|
|
|
- .hoverClass2 {
|
|
|
- background-color: #F7F7F7;
|
|
|
- }
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- .record {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-between;
|
|
|
- font-size: 26rpx;
|
|
|
+ .quick {
|
|
|
+ width: 100%;
|
|
|
+ background-color: #EEEDED;
|
|
|
|
|
|
- .record-right {
|
|
|
+ .close {
|
|
|
+ text-align: right;
|
|
|
+ font-size: 54rpx;
|
|
|
+ line-height: 54rpx;
|
|
|
+ padding: 0rpx 20rpx 10rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .quickTop {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: space-between;
|
|
|
+ padding: 0rpx 20rpx;
|
|
|
+ font-size: 28rpx;
|
|
|
|
|
|
- text {
|
|
|
- margin-left: 6rpx;
|
|
|
+ .left {
|
|
|
+ color: #00000060;
|
|
|
}
|
|
|
|
|
|
- .icon {
|
|
|
- width: 30rpx;
|
|
|
- height: 28rpx;
|
|
|
+ .right {
|
|
|
+ padding: 4rpx 20rpx;
|
|
|
+ background-color: #FFC86D;
|
|
|
+ color: #484848;
|
|
|
+ border-radius: 50rpx;
|
|
|
+
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- .iconBox {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- margin-left: 24rpx;
|
|
|
+ .contents {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ padding: 30rpx 0rpx 30rpx 20rpx;
|
|
|
+ width: 100%;
|
|
|
+ box-sizing: border-box;
|
|
|
+ white-space: nowrap;
|
|
|
+ border-bottom: 2rpx solid #9797976e;
|
|
|
+
|
|
|
+ .remark {
|
|
|
+ display: inline-block;
|
|
|
+ font-size: 26rpx;
|
|
|
+ padding: 8rpx 22rpx;
|
|
|
+ margin-right: 20rpx;
|
|
|
+ border-radius: 50rpx;
|
|
|
+ color: white;
|
|
|
+ background-color: #FF9B55;
|
|
|
}
|
|
|
- }
|
|
|
}
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
- .c-like {
|
|
|
- flex: 1;
|
|
|
+ .footer {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: space-between;
|
|
|
-
|
|
|
- .left {
|
|
|
- height: 90rpx;
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- justify-content: space-between;
|
|
|
-
|
|
|
- .nickName {
|
|
|
- font-size: 36rpx;
|
|
|
- color: rgba(0, 0, 0, 0.60);
|
|
|
- }
|
|
|
-
|
|
|
- .time {
|
|
|
- font-size: 24rpx;
|
|
|
- color: #666666;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .follow {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- width: 140rpx;
|
|
|
- font-size: 24rpx;
|
|
|
- padding: 8rpx 0rpx;
|
|
|
- border-radius: 50rpx;
|
|
|
- border: 1rpx solid #1BC665;
|
|
|
- color: #1BC665;
|
|
|
-
|
|
|
- .character {
|
|
|
- width: 22rpx;
|
|
|
- height: 22rpx;
|
|
|
- margin-right: 6rpx;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .isFans {
|
|
|
- border: 1rpx solid #E2ECFB;
|
|
|
- background-color: #E2ECFB;
|
|
|
- color: #333;
|
|
|
+ background-color: #EEEDED;
|
|
|
+ padding: 20rpx 24rpx;
|
|
|
+
|
|
|
+ .input {
|
|
|
+ height: 80rpx;
|
|
|
+ flex: 1;
|
|
|
+ padding-left: 20rpx;
|
|
|
+ border-radius: 10rpx;
|
|
|
+ background-color: white;
|
|
|
}
|
|
|
|
|
|
- .pkNum {
|
|
|
- color: #30C866;
|
|
|
- font-size: 44rpx;
|
|
|
- margin-right: 20rpx;
|
|
|
+ .submit {
|
|
|
+ margin-left: 40rpx;
|
|
|
+ width: 76rpx;
|
|
|
+ color: #0091FF;
|
|
|
+ font-size: 32rpx;
|
|
|
}
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .content:last-child {
|
|
|
- border: none;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .quick {
|
|
|
- width: 100%;
|
|
|
- background-color: #EEEDED;
|
|
|
-
|
|
|
- .close {
|
|
|
- text-align: right;
|
|
|
- font-size: 54rpx;
|
|
|
- line-height: 54rpx;
|
|
|
- padding: 0rpx 20rpx 10rpx;
|
|
|
- }
|
|
|
-
|
|
|
- .quickTop {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-between;
|
|
|
- padding: 0rpx 20rpx;
|
|
|
- font-size: 28rpx;
|
|
|
-
|
|
|
- .left {
|
|
|
- color: #00000060;
|
|
|
- }
|
|
|
-
|
|
|
- .right {
|
|
|
- padding: 4rpx 20rpx;
|
|
|
- background-color: #FFC86D;
|
|
|
- color: #484848;
|
|
|
- border-radius: 50rpx;
|
|
|
-
|
|
|
}
|
|
|
- }
|
|
|
-
|
|
|
- .contents {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- padding: 30rpx 0rpx 30rpx 20rpx;
|
|
|
- width: 100%;
|
|
|
- box-sizing: border-box;
|
|
|
- white-space: nowrap;
|
|
|
- border-bottom: 2rpx solid #9797976e;
|
|
|
-
|
|
|
- .remark {
|
|
|
- display: inline-block;
|
|
|
- font-size: 26rpx;
|
|
|
- padding: 8rpx 22rpx;
|
|
|
- margin-right: 20rpx;
|
|
|
- border-radius: 50rpx;
|
|
|
- color: white;
|
|
|
- background-color: #FF9B55;
|
|
|
- }
|
|
|
- }
|
|
|
}
|
|
|
|
|
|
- .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;
|
|
|
- }
|
|
|
+ .seat2 {
|
|
|
+ padding-bottom: calc(130rpx + env(safe-area-inset-bottom)) !important;
|
|
|
}
|
|
|
- }
|
|
|
-
|
|
|
- .seat2 {
|
|
|
- padding-bottom: calc(130rpx + env(safe-area-inset-bottom)) !important;
|
|
|
- }
|
|
|
}
|