eleCarMap.wxss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /**index.wxss**/
  2. /* 不加page无法全屏 */
  3. page {
  4. height: 100%;
  5. }
  6. .view {
  7. width: 100%;
  8. height: 100%;
  9. }
  10. map {
  11. margin: 0 20rpx;
  12. width: calc(100% - 40rpx);
  13. height: 70%;
  14. background-color: red;
  15. }
  16. .login_button {
  17. width: calc(100% - 270rpx);
  18. font-size: 32rpx;
  19. /* margin: 0rpx 32rpx; */
  20. font-family: 'Lucida Sans',
  21. 'Lucida Sans Regular',
  22. 'Lucida Grande',
  23. 'Lucida Sans Unicode',
  24. Geneva,
  25. Verdana,
  26. sans-serif;
  27. color: #fff;
  28. text-overflow: ellipsis;
  29. white-space: nowrap;
  30. background-color: #00a8dc;
  31. border-radius: 40rpx;
  32. height: 80rpx;
  33. border: none;
  34. margin: 50rpx auto;
  35. }
  36. .login_button_disable {
  37. width: calc(100% - 270rpx);
  38. font-size: 32rpx;
  39. /* margin: 0rpx 32rpx; */
  40. font-family: 'Lucida Sans',
  41. 'Lucida Sans Regular',
  42. 'Lucida Grande',
  43. 'Lucida Sans Unicode',
  44. Geneva,
  45. Verdana,
  46. sans-serif;
  47. color: #fff;
  48. text-overflow: ellipsis;
  49. white-space: nowrap;
  50. background-color: #c9c9c9;
  51. border-radius: 40rpx;
  52. height: 80rpx;
  53. border: none;
  54. margin: 125rpx 135rpx 0 135rpx;
  55. }
  56. .login_button.button-hover {
  57. background-color: #36a9a6;
  58. }