common.scss 745 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. // 设置页面属性
  2. page{
  3. background-color: #fff;
  4. color: #000;
  5. padding: 0 24rpx;
  6. height: 100vh;
  7. }
  8. // 居中
  9. .text_center{
  10. text-align: center;
  11. }
  12. // 居左
  13. .text_left{
  14. text-align: left;
  15. }
  16. // 两端对齐
  17. .text_justify{
  18. text-align: justify;
  19. }
  20. // 按钮
  21. .primaryButton{
  22. color: #fff!important;
  23. background-color: $uni-primary!important;
  24. border-color: $uni-primary!important;
  25. }
  26. // 必填标识
  27. .required{
  28. color: #f00;
  29. font-size: 20rpx;
  30. }
  31. // flex:1
  32. .flex1{
  33. flex: 1;
  34. }
  35. // lable
  36. .label{
  37. margin-right: 35rpx;
  38. display: flex;
  39. align-items: center;
  40. font-size: 26rpx;
  41. }
  42. // easyinput边框选中色
  43. .is-focused{
  44. border-color: $uni-primary!important;
  45. }
  46. // 弹窗两端对齐
  47. .uni-modal__bd{
  48. text-align: justify;
  49. }