| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- /**app.wxss**/
- @import '/static/font/iconfont.wxss';
- @import '/static/css/animate.wxss';
- view,
- image,
- text,
- navigator {
- box-sizing: border-box;
- padding: 0;
- margin: 0;
- }
- page {
- background-color: #f5f5f5;
- font-size: 28rpx;
- font-family: HarmonyOS Sans SC-Regular, HarmonyOS Sans SC;
- font-weight: 400;
- color: #333;
- }
- .jhx_bg0 {
- background: #fff;
- }
- .acea-row {
- display: flex;
- flex-wrap: wrap;
- }
- .acea-row.row-top {
- align-items: flex-start;
- }
- .acea-row.row-middle {
- align-items: center;
- }
- .acea-row.row-bottom {
- align-items: flex-end;
- }
- .acea-row.row-left {
- justify-content: flex-start;
- }
- .acea-row.row-center {
- justify-content: center;
- }
- .acea-row.row-right {
- justify-content: flex-end;
- }
- .acea-row.row-between {
- justify-content: space-between;
- }
- .acea-row.row-around {
- justify-content: space-around;
- }
- .acea-row.row-evenly {
- justify-content: space-evenly;
- }
- .acea-row.row-column {
- flex-direction: column;
- }
- .acea-row.row-column-between {
- flex-direction: column;
- justify-content: space-between;
- }
- .acea-row.row-column-around {
- flex-direction: column;
- justify-content: space-around;
- }
- .acea-row.row-center-wrapper {
- align-items: center;
- justify-content: center;
- }
- .acea-row.row-between-wrapper {
- align-items: center;
- justify-content: space-between;
- }
- .line1 {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .line2 {
- word-break: break-all;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- white-space: normal;
- }
- @keyframes load {
- from {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(360deg);
- }
- }
- @keyframes show {
- 0% { opacity: 0; }
- 100% { opacity: 1; }
- }
- @keyframes hide {
- 0% { opacity: 1; }
- 100% { opacity: 0; }
- }
- @keyframes left-open {
- from { transform: rotateY(0deg); }
- to { transform: rotateY(-130deg); }
- }
- @keyframes right-open {
- from { transform: rotateY(0deg); }
- to { transform: rotateY(130deg); }
- }
- @keyframes left-close {
- from { transform: rotateY(-130deg); }
- to { transform: rotateY(0deg); }
- }
- @keyframes right-close {
- from { transform: rotateY(130deg); }
- to { transform: rotateY(0deg); }
- }
- @keyframes signInBtn {
- 0% { transform: scale(1); }
- 50% { transform: scale(1.2); }
- 100% { transform: scale(1); }
- }
- .share-btn {
- margin: 0;
- padding: 0;
- background-color: transparent;
- }
- .share-btn::after {
- border: 0;
- }
- .van-popup {
- width: 80%;
- height: 50%;
- border-radius: 12rpx;
- line-height: 40rpx;
- }
- .van-popup.van-popup--bottom {
- border-radius: 12rpx 12rpx 0 0;
- }
- .van-popup .title {
- padding: 30rpx 0;
- border-bottom: 2rpx solid rgba(110, 123, 143, 0.16);
- text-align: center;
- font-size: 32rpx;
- font-weight: 500;
- font-family: HarmonyOS Sans SC-Medium, HarmonyOS Sans SC;
- color: #060606;
- }
- .van-popup .scroll-y {
- height: calc(100% - 102rpx);
- }
- .van-popup .btn {
- width: calc(100% - 48rpx);
- position: fixed;
- bottom: 56rpx;
- background: #D32D2F;
- border-radius: 90rpx;
- text-align: center;
- line-height: 80rpx;
- font-size: 28rpx;
- color: #fff;
- }
- .van-empty {
- min-height: 960rpx;
- }
|