123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- /**app.wxss**/
- page {
- /* background: #F9F9F9; */
- background: #F7F8FA;
- /* background: linear-gradient(180deg, #FA7D22 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-align-baseline {
- display: flex;
- align-items: baseline;
- }
- .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; */
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- display: -moz-box;
- -moz-line-clamp: 2;
- -moz-box-orient: vertical;
- word-wrap: break-word;
- word-break: break-all;
- white-space: normal !important;
- overflow: hidden;
- }
- .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;
- }
|