123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- .userInfor {
- height: 100rpx;
- display: flex;
- align-items: center;
- position: relative;
- padding: 20rpx 0;
- justify-content: space-between;
- }
- .userBox {
- flex-shrink: 0;
- text-align: right;
- }
- .headerBox {
- flex-shrink: 1;
- width: 100%;
- }
- .headerBox>text {
- white-space: nowrap;
- max-width: 180rpx;
- vertical-align: middle;
- font-size: 28rpx;
- display: inline-block;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .headerBox .headerImgB {
- width: 76rpx;
- height: 76rpx;
- border-radius: 50%;
- vertical-align: middle;
- margin-right: 10rpx;
- }
- .score {
- font-size: 28rpx;
- color: #595757;
- line-height: 40rpx;
- }
- .starBlank {
- width: 194rpx;
- height: 40rpx;
- background-size: contain;
- margin-left: 20rpx;
- }
- .mini-starBlank {
- width: 120rpx;
- height: 25rpx;
- margin-left: 10rpx;
- }
- .scoreBG {
- background-size: contain;
- }
- .score text:not(:first-child) {
- color: var(--subtitleColor);
- }
- .scoreImg {
- width: 100%;
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- }
- .scoreImg image {
- width: 157rpx;
- height: 157rpx;
- margin-right: 20rpx;
- margin-bottom: 20rpx;
- border-radius: 10rpx;
- }
- .addScore {
- width: 100%;
- font-size: 26rpx;
- color: var(--subtitleColor);
- margin-top: 20rpx;
- border-top: 1px solid #E9E9E9;
- }
- .comment {
- padding: 20rpx;
- margin-bottom: 20rpx;
- border-radius: 20rpx;
- }
- .comment:last-child {
- margin-bottom: 0;
- }
- .scoreBox {
- font-size: 28rpx;
- color: #595757;
- display: flex;
- justify-content: center;
- }
- .scoreTit {
- color: #000;
- font-size: 26rpx;
- vertical-align: middle
- }
- .addTitle {
- font-size: 28rpx;
- color: var(--subtitleColor);
- padding: 10rpx 0;
- }
- .reply {
- background-color: #f9f9f9;
- border-radius: 14rpx;
- padding: 0 20rpx;
- box-sizing: border-box;
- margin-top: 30rpx;
- position: relative;
- }
- .reply::before {
- content: '';
- width: 0;
- height: 0;
- border-width: 0 16rpx 20rpx;
- border-style: solid;
- border-color: transparent transparent #f9f9f9;
- position: absolute;
- top: -20rpx;
- }
- .replyTitle {
- display: flex;
- align-items: center;
- padding-left: 20rpx;
- border-bottom: 1px solid #ebebeb;
- }
- .replyTitle text {
- margin-right: 14rpx;
- font-size: 34rpx;
- }
- .tag-list {
- margin-left: -2%;
- overflow: hidden;
- white-space: nowrap;
- }
- .tag-list>.text {
- border: 2rpx solid #c8c9cb;
- border-radius: 20rpx;
- width: 23%;
- margin-left: 2%;
- padding: 10rpx 0;
- font-size: 24rpx;
- text-align: center;
- float: left;
- box-sizing: border-box;
- margin-bottom: 3%;
- }
- .tag-list>.text.active {
- background: var(--subtitleColor);
- color: #fff;
- border: 2rpx solid var(--subtitleColor);
- }
- .comment-box {
- padding: 20rpx;
- margin: 20rpx 0;
- border-radius: 20rpx;
- }
|