12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /**app.wxss**/
- page {
- width: 100%;
- /* min-height: 100%; */
- color: #333;
- 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;
- font-family: PingFang SC, Microsoft Yahei, Source Han Sans CN, SimHei;
- }
- #share {
- width: 375px;
- height: 300px;
- position: absolute;
- left: -999rpx;
- top: -9999rpx;
- }
- .textOver {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .resetBtn {
- padding: 0px;
- margin: 0;
- line-height: normal;
- background-color: transparent;
- }
- .resetBtn::after {
- border: none;
- }
|