123456789101112131415161718192021222324252627282930313233343536 |
- /* pages/Instructions/Instructions.wxss */
- .Instructions-container {
- height: 100%;
- width: 100%;
- background:#eaeaea;
- }
- .Instructions-container scroll-view {
- height: 100%;
- width: 100%;
- padding: 20rpx 25rpx 0 25rpx;
- box-sizing: border-box;
- }
- .Explain {
- font-size: 36rpx;
- }
- .Explain view {
- margin: 56rpx 0 34rpx 0;
- }
- .Explain view text {
- width: 40rpx;
- height: 40rpx;
- border-radius: 100%;
- text-align: center;
- line-height: 40rpx;
- border: 2rpx solid #000;
- display: inline-block;
- }
- .Explain image {
- width: 100%;
- }
|