123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- /* pages/index/evaluate/evaluate.wxss */
- .page-content {
- padding-bottom: 48rpx;
- }
- .view-evaluate .content {
- padding: 40rpx 70rpx 40rpx;
- }
- .view-evaluate .content .cont {}
- .view-evaluate .evaluate_name {
- font-size: 36rpx;
- font-weight: 500;
- color: #484848;
- line-height: 36rpx;
- }
- .view-evaluate .evaluate_date {
- font-size: 24rpx;
- color: #8C8C8C;
- line-height: 24rpx;
- margin: 8rpx 0 16rpx;
- }
- .view-evaluate .evaluate_score {
- font-size: 24rpx;
- font-weight: 500;
- color: #484848;
- line-height: 24rpx;
- height: 24rpx;
- position: relative;
- }
- .view-evaluate .evaluate_score>view {
- position: absolute;
- left: 60rpx;
- top: 0;
- }
- .view-evaluate .evaluate_score .light {
- z-index: 3;
- }
- .view-evaluate .evaluate_score .grey {
- z-index: 2;
- }
- .view-evaluate .evaluate_score image {
- margin-right: 4rpx;
- width: 24rpx;
- height: 24rpx;
- vertical-align: bottom;
- }
- .view-evaluate .evaluate_txt {
- font-size: 28rpx;
- font-weight: 400;
- color: #484848;
- line-height: 42rpx;
- margin: 24rpx 0;
- height: 116rpx;
- overflow: hidden;
- /* text-overflow: ellipsis;
- white-space: nowrap; */
- }
- .allarticle{
- color: #00C7C6;
- }
- .view-evaluate .heightauto {
- height: auto;
- }
- .view-evaluate .evaluate_imgs {
- display: flex;
- justify-content: space-between;
- margin-bottom: 40rpx;
- flex-wrap: wrap;
- }
- .view-evaluate .evaluate_imgs image {
- width: 192rpx;
- height: 192rpx;
- /* background: #00C7C6; */
- margin-bottom: 12rpx;
- }
- .view-evaluate .evaluate_imgs:after {
- width: 192rpx;
- height: 0;
- display: block;
- content: '';
- }
- .botbutton {
- position: relative;
- bottom: 0;
- }
- .openImg {
- position: fixed;
- top: 0;
- left: 0;
- height: 100%;
- width: 750rpx;
- z-index: 99;
- background: rgba(0, 0, 0, 0.5);
- display: flex;
- align-items: center;
- }
- .openImg swiper {
- width: 100%;
- height: 100%;
- }
- .openImg .slide-image {
- border-radius: 0;
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- width: 100%;
- }
|