/**app.wxss**/ page { background: #F9F9F9; /* background: linear-gradient(180deg, #FFCAE0 0%, rgba(255, 202, 224, 0) 100%); */ /* background-repeat: no-repeat; */ } .container { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 200rpx 0; box-sizing: border-box; } .flex { display: flex; } .flex-start { align-items: flex-start; justify-content: flex-start; } .flex-align-center { display: flex; align-items: center; } .flex-justify-center { display: flex; justify-content: center; } .flex-justify-space-around { display: flex; justify-content: space-around; } .flex-justify-space-between { display: flex; justify-content: space-between; } .flex-center { display: flex; align-items: center; justify-content: center; } .flex-column { display: flex; flex-direction: column; /* align-items: flex-start; justify-content: flex-start; */ } .flex1 { flex: 1; } .radius { border-radius: 8rpx; box-sizing: border-box; overflow: hidden; } .popup-radius .wux-popup__content { border-top-left-radius: 40rpx; border-top-right-radius: 40rpx; } .ellipsis { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .ellipsis2 { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } .ellipsis3 { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; } text { font-size: 32rpx; color: #333333; /* color: #FFFFFF; */ font-family: PingFangSC-Regular; } .btm-text { font-size: 28rpx; color: #999999; text-align: center; margin: 42rpx 0; } .no-data { text-align: center; margin-top: 400rpx; color: #666; } .no-more-data { text-align: center; margin-top: 28rpx; color: #666; } rich-text .richImg{ max-width: 100%; max-height: 100%; vertical-align: middle; height: auto!important; width: auto!important; }