| 12345678910111213141516171819202122232425262728293031 |
- /* pages/index/index.wxss */
- .main {
- display: block;
- width: 80vw;
- height: 60vh;
- margin: 10vh auto;
- }
- .go {
- width: 70vw;
- height: 12vw;
- line-height: 12vw;
- font-size: 5vw;
- text-align: center;
- background: #3e94f6;
- color: #fff;
- border-radius: 6vw;
- margin: 0 auto;
- margin-top: 60rpx;
- }
- .has-account {
- width: 300rpx;
- height: 70rpx;
- line-height: 70rpx;
- color: #888;
- text-decoration: underline;
- font-size: 32rpx;
- text-align: center;
- margin: 30rpx auto;
- }
|