Blame view

src/views/ywbl/ywsq/ywsq.scss 3.62 KB
任超 committed
1 2
.ywsq {
  display: flex;
任超 committed
3
  height: 100%;
任超 committed
4

任超 committed
5 6 7 8
  /deep/.el-collapse-item__header {
    padding-left: 20px;
    font-weight: 700;
    font-size: 16px;
任超 committed
9 10 11 12 13 14 15
    border: 1px solid $borderColor;
    border-top: none;
  }

  .active {
    background-color: $light-blue !important;
    color: $menuText !important;
任超 committed
16 17 18
  }

  .ywsq-left {
任超 committed
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
    width: 260px;
    background-color: #fff;
    height: 100%;
    box-sizing: border-box;
    padding: 10px;

    p {
      width: 100%;
      line-height: 36px;
      border: 1px solid $borderColor;
      font-weight: 700;
      padding: 5px 0 5px 10px;
      background-color: #fff;
      margin-bottom: 5px;
      box-sizing: border-box;
      cursor: pointer;
      border-radius: 3px;

      &:hover {
        border: 1px solid $light-blue;
        color: $light-blue;
      }
    }
任超 committed
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59

    .box-card {
      margin-bottom: 20px;
      cursor: pointer;
    }

    .item-title {
      font-size: 18px;
      font-weight: 700;
      padding: 20px;

      &:hover {
        background-color: $light-blue;
        color: $menuText;
      }
    }

    .item-list {
任超 committed
60
      padding: 0 20px 0 20px;
任超 committed
61

任超 committed
62

任超 committed
63 64

      li {
任超 committed
65
        cursor: pointer;
任超 committed
66 67 68 69 70 71 72
        line-height: 36px;
        background-color: rgb(235, 235, 235);
        margin-top: 10px;
        padding-left: 10px;
        border-radius: 2px;
        box-sizing: border-box;
        border: 1px solid rgb(235, 235, 235);
任超 committed
73
        transition: all 0.3s;
任超 committed
74 75

        &:hover {
任超 committed
76 77
          border: 1px solid $light-blue;
          color: $light-blue;
任超 committed
78 79 80 81 82 83
        }
      }
    }
  }

  .ywsq-right {
任超 committed
84 85
    width: calc(100% - 265px);
    margin-left: 5px;
任超 committed
86 87 88
    height: 100%;
    display: flex;
    flex-direction: column;
任超 committed
89 90

    .right-type {
任超 committed
91
      margin-bottom: 5px;
任超 committed
92
    }
任超 committed
93 94 95 96 97 98 99

    .right-title {
      font-size: 18px;
      font-weight: 700;
      padding: 20px;
      border-bottom: 1px solid $borderColor;

任超 committed
100 101 102 103 104 105
    }

    .type-content {
      @include flex;
      justify-content: space-between;
      padding: 0 20px;
任超 committed
106
      margin: 20px 0;
任超 committed
107 108 109 110 111 112 113 114 115

      li {
        width: 23.5%;
        line-height: 50px;
        border: 1px solid $borderColor;
        border-radius: 5px;
        box-sizing: border-box;
        padding-left: 10px;
        transition: all 0.3s;
任超 committed
116 117 118 119 120 121
        cursor: pointer;

        &:hover {
          border: 1px solid $light-blue;
          color: $light-blue;
        }
任超 committed
122 123 124 125
      }
    }

    .right-situation {
任超 committed
126 127 128
      flex: 1;
      height: 100%;

任超 committed
129
      ul {
任超 committed
130 131
        padding: 20px;
        @include flex;
任超 committed
132 133
        flex-wrap: wrap;
        margin-left: -20px;
任超 committed
134
        justify-content: space-between;
任超 committed
135 136 137 138 139 140 141 142

        li {
          width: 31%;
          height: 50px;
          border: 1px solid $borderColor;
          @include flex;
          justify-content: space-between;
          margin-left: 20px;
任超 committed
143
          cursor: pointer;
任超 committed
144 145 146 147 148

          p {
            @include flex-center;
          }

任超 committed
149 150 151 152
          &:hover {
            border: 1px solid $light-blue;
            color: $light-blue;
          }
任超 committed
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170

          p:nth-child(1) {
            flex: 1;
            width: 100%;
            padding: 3px;
          }

          p:nth-child(2) {
            width: 50px;
            height: 50px;
            border-left: 1px solid $borderColor;
            cursor: pointer;
          }

          i {
            font-size: 24px;
          }
        }
任超 committed
171 172
      }
    }
任超 committed
173

任超 committed
174 175 176 177 178 179 180 181 182 183 184 185
    .registration {
      li:hover {
        border: 1px solid $borderColor !important;
        color: $light-blue;
      }

      .cactive {
        border: 1px solid $light-blue;
        color: $light-blue;
      }
    }

任超 committed
186 187 188 189 190
    .submit-button {
      padding: 15px 0;
      text-align: center;
      background-color: #fff;
    }
任超 committed
191
  }
任超 committed
192 193

  .right-btn {
1  
liangyifan committed
194 195 196
    text-align: center;
    margin-top: 20px;
  }
任超 committed
197
}