12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- @import '@/uni_modules/uni-scss/theme.scss';
- @import '@/uni.scss';
- //修改uni-ui样式
- .form-box {
- .uni-forms {
- background: #fff;
- border-radius: 16rpx;
- padding: 30rpx;
- .uni-forms-item__label {
- color: $uni-main-color;
- padding-bottom: 0 !important;
- }
- .uni-easyinput__content {
- border-radius: 84rpx;
- }
- .uni-easyinput__content-input {
- height: 80rpx;
- }
- .uni-easyinput__placeholder-class {
- color: $uni-secondary-color !important;
- font-size: 28rpx !important;
- font-weight: 300 !important;
- }
- .uni-forms-item{
- margin-bottom: 20rpx;
- }
- }
- //选择框样式
- .select-box {
- height: 84rpx;
- border-radius: 84rpx;
- border: 1px solid $uni-border-1;
- position: relative;
- line-height: 82rpx;
- box-sizing: border-box;
- padding-left: 10px;
- .select-label {
- color: $uni-secondary-color;
- font-weight: 300;
- }
-
- .form-icon {
- position: absolute;
- right: 30rpx;
- top: 0rpx;
- }
- }
-
- }
- //底部按钮
- .hui-button-box {
- position: absolute;
- height: 100rpx;
- background-color: #ffffff;
- box-shadow: 0px 2px 10px rgba(3, 3, 3, 0.1);
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- padding: 0 30rpx;
- display: flex;
- align-items: center;
- .hui-button {
- height: 68rpx;
- border-radius: 68rpx;
- color: #ffffff;
- background: $uni-primary;
- flex: 1;
- text-align: center;
- line-height: 68rpx;
- }
- }
- button[type=primary]{
- background: $uni-primary;
- }
-
|