/**app.wxss**/ page { width: 100%; height: 100%; overflow-x: hidden; color: #444; font-family: PingFang SC, Microsoft Yahei, Source Han Sans CN, SimHei; background: #eee; } view { font-family: PingFang SC, Microsoft Yahei, Source Han Sans CN, SimHei; } text { font-family: PingFang SC, Microsoft Yahei, Source Han Sans CN, SimHei; } .container { height: auto; box-sizing: border-box; padding-top: 80rpx; /* color: #444; */ font-family: PingFang SC, Microsoft Yahei, Source Han Sans CN, SimHei; } ::-webkit-scrollbar { display: none; width: 0; height: 0; color: transparent; } .textOver { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .resetBtn { padding: 0px; margin: 0; line-height: normal; background-color: transparent; } .resetBtn::after { border: none; } #share { width: 375px; height: 300px; position: absolute; left: -9999rpx; top: -9999rpx; } /* 转圈动画 */ @keyframes identifier { 0% { transform: rotate(0deg); } 50% { transform: rotate(180deg); } 100% { transform: rotate(360deg); } }