1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /**index.wxss**/
- /* 不加page无法全屏 */
- page {
- height: 100%;
- }
-
- .view {
- width: 100%;
- height: 100%;
- }
-
- map {
- margin: 0 20rpx;
- width: calc(100% - 40rpx);
- height: 70%;
- background-color: red;
- }
-
- .login_button {
- width: calc(100% - 270rpx);
- font-size: 32rpx;
- /* margin: 0rpx 32rpx; */
- font-family: 'Lucida Sans',
- 'Lucida Sans Regular',
- 'Lucida Grande',
- 'Lucida Sans Unicode',
- Geneva,
- Verdana,
- sans-serif;
- color: #fff;
- text-overflow: ellipsis;
- white-space: nowrap;
- background-color: #00a8dc;
- border-radius: 40rpx;
- height: 80rpx;
- border: none;
- margin: 50rpx auto;
- }
-
- .login_button_disable {
- width: calc(100% - 270rpx);
- font-size: 32rpx;
- /* margin: 0rpx 32rpx; */
- font-family: 'Lucida Sans',
- 'Lucida Sans Regular',
- 'Lucida Grande',
- 'Lucida Sans Unicode',
- Geneva,
- Verdana,
- sans-serif;
- color: #fff;
- text-overflow: ellipsis;
- white-space: nowrap;
- background-color: #c9c9c9;
- border-radius: 40rpx;
- height: 80rpx;
- border: none;
- margin: 125rpx 135rpx 0 135rpx;
- }
-
- .login_button.button-hover {
- background-color: #36a9a6;
- }
|