main.wxss 430 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*每个页面公共css */
  2. page {
  3. /* 定义根节点的最小高度为整个窗口的高度 */
  4. min-height: 100vh;
  5. background-color: #eee;
  6. font-size: 28rpx;
  7. color: #333;
  8. }
  9. .box {
  10. background-color: #fff;
  11. padding: 20rpx;
  12. border-radius: 10rpx;
  13. box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, .1);
  14. }
  15. .my-button-primary{
  16. height: 70rpx;
  17. line-height: 70rpx;
  18. background-color: #006eff !important;
  19. font-size: 28rpx;
  20. }