Blame view

src/styles/element-variables.scss 1.17 KB
simon committed
1
/* 改变主题色变量 */
simon committed
2
$--color-primary: #f05a23;
simon committed
3 4

/* 改变 icon 字体路径变量,必需 */
simon committed
5
$--font-path: "~element-ui/lib/theme-chalk/fonts";
simon committed
6 7

@import "~element-ui/packages/theme-chalk/src/index";
simon committed
8

simon committed
9
@import "@/styles/_var.scss";
simon committed
10

simon committed
11
// 类过滤组件
simon committed
12
.filter-comp {
simon committed
13 14 15 16 17 18
  .el-checkbox-group {
    display: flex;
    flex-wrap: wrap;

    .el-checkbox {
      margin-bottom: 24px;
simon committed
19 20
      display: flex;
      align-items: center;
simon committed
21 22 23
    }

    .el-checkbox__label {
simon committed
24
      font-size: 24px;
simon committed
25 26
    }
  }
simon committed
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
}

.el-select .el-input.is-focus .el-input__inner {
  border-color: transparent !important;
}

.ipt .el-input__inner {
  border: none !important;
  background-color: transparent !important;
  padding: 0 !important;
}

.el-select-dropdown__item.selected {
  color: $cOrange !important;
}

.el-input__suffix {
  display: none;
}

.page-index .el-input__inner,
.clarms .el-input__inner {
  font-size: 22px;
  border: none;
}

.page-index .contact .el-input__inner {
  text-align: center;
}
simon committed
56

simon committed
57 58 59 60 61
.page-index .quote .el-input__inner {
  text-align: center;
  color: $cOrange2;
  font-size: 22px;
  font-weight: bold;
simon committed
62
}
63 64 65 66 67

.policy-change-contact .el-input__inner {
  font-size: 18px;
  color: $cFontGray2;
}