1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- // 设置页面属性
- page{
- background-color: #fff;
- color: #000;
- padding: 0 24rpx;
- height: 100vh;
- }
- // 居中
- .text_center{
- text-align: center;
- }
- // 居左
- .text_left{
- text-align: left;
- }
- // 两端对齐
- .text_justify{
- text-align: justify;
- }
- // 按钮
- .primaryButton{
- color: #fff!important;
- background-color: $uni-primary!important;
- border-color: $uni-primary!important;
- }
- // 必填标识
- .required{
- color: #f00;
- font-size: 20rpx;
- }
- // flex:1
- .flex1{
- flex: 1;
- }
- // lable
- .label{
- margin-right: 35rpx;
- display: flex;
- align-items: center;
- font-size: 26rpx;
- }
- // easyinput边框选中色
- .is-focused{
- border-color: $uni-primary!important;
- }
- // 弹窗两端对齐
- .uni-modal__bd{
- text-align: justify;
- }
|