@charset "UTF-8";
@-webkit-keyframes vicp_progress {
  0% {
    background-position-y: 0;
  }
  100% {
    background-position-y: 40px;
  }
}

@keyframes vicp_progress {
  0% {
    background-position-y: 0;
  }
  100% {
    background-position-y: 40px;
  }
}

@-webkit-keyframes vicp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) translatey(-60px);
    transform: scale(0) translatey(-60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translatey(0);
    transform: scale(1) translatey(0);
  }
}

@keyframes vicp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) translatey(-60px);
    transform: scale(0) translatey(-60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translatey(0);
    transform: scale(1) translatey(0);
  }
}

.vue-image-crop {
  position: fixed;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  -webkit-tap-highlight-color: transparent;
  -moz-tap-highlight-color: transparent;
  .vicp-wrap {
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.23);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.23);
    position: fixed;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    // width: 600px;
    // height: 330px;
    width: 100%;
    height: 100%;
    padding: 0px;
    background-color: rgba(8, 8, 8, 0.8);
    border-radius: 2px;
    -webkit-animation: vicp 0.12s ease-in;
    animation: vicp 0.12s ease-in;
    .vicp-crop {
      overflow: hidden;
      text-align: center;
      position: absolute;
      width: 100%;
      bottom: 10%;
      .vicp-crop-left {
        float: none;
        display: inline-block;
        .vicp-img-container {
          position: relative;
          display: block;
          // width: 240px;
          // height: 180px;
          margin: 0 auto;
          border: 2px solid #fff;/*no*/
          background-color: #e5e5e0;
          overflow: hidden;
        }
        .vicp-img-container .vicp-img {
          position: absolute;
          display: block;
          cursor: move;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          user-select: none;
          border-radius: initial;
          border: initial;
          background: initial;
          width: initial;
          height: initial;
          max-width: inherit;
        }
        .vicp-range {
          position: relative;
          margin: 30px 0;
          width: 100%;
          height: 18px;
        }
        .vicp-range .vicp-icon5,
        .vicp-range .vicp-icon6 {
          position: absolute;
          top: 0;
          width: 18px;
          height: 18px;
          border-radius: 100%;
          background-color: rgba(0, 0, 0, 0.08);
        }
        .vicp-range .vicp-icon5:hover,
        .vicp-range .vicp-icon6:hover {
          -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12);
          cursor: pointer;
          background-color: rgba(0, 0, 0, 0.14);
        }
        .vicp-range .vicp-icon5 {
          left: 3%;
        }
        .vicp-range .vicp-icon5::before {
          position: absolute;
          content: '';
          display: block;
          left: 3px;
          top: 8px;
          width: 12px;
          height: 2px;
          background-color: #fff;
        }
        .vicp-range .vicp-icon6 {
          right: 3%;
        }
        .vicp-range .vicp-icon6::before {
          position: absolute;
          content: '';
          display: block;
          left: 3px;
          top: 8px;
          width: 12px;
          height: 2px;
          background-color: #fff;
        }
        .vicp-range .vicp-icon6::after {
          position: absolute;
          content: '';
          display: block;
          top: 3px;
          left: 8px;
          width: 2px;
          height: 12px;
          background-color: #fff;
        }
        .vicp-range input[type=range] {
          display: block;
          padding-top: 5px;
          margin: 0 auto;
          width: 80%;
          height: 8px;
          vertical-align: top;
          background: transparent;
          -webkit-appearance: none;
          -moz-appearance: none;
          appearance: none;
          cursor: pointer;
          /* 滑块
               ---------------------------------------------------------------*/
          /* 轨道
               ---------------------------------------------------------------*/
        }
        .vicp-range input[type=range]:focus {
          outline: none;
        }
        .vicp-range input[type=range]::-webkit-slider-thumb {
          -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.18);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.18);
          -webkit-appearance: none;
          appearance: none;
          margin-top: -3px;
          width: 12px;
          height: 12px;
          background-color: #61c091;
          border-radius: 100%;
          border: none;
          -webkit-transition: 0.2s;
          transition: 0.2s;
        }
        .vicp-range input[type=range]::-moz-range-thumb {
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.18);
          -moz-appearance: none;
          appearance: none;
          width: 12px;
          height: 12px;
          background-color: #61c091;
          border-radius: 100%;
          border: none;
          -webkit-transition: 0.2s;
          transition: 0.2s;
        }
        .vicp-range input[type=range]::-ms-thumb {
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.18);
          appearance: none;
          width: 12px;
          height: 12px;
          background-color: #61c091;
          border: none;
          border-radius: 100%;
          -webkit-transition: 0.2s;
          transition: 0.2s;
        }
        .vicp-range input[type=range]:active::-moz-range-thumb {
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.23);
          width: 14px;
          height: 14px;
        }
        .vicp-range input[type=range]:active::-ms-thumb {
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.23);
          width: 14px;
          height: 14px;
        }
        .vicp-range input[type=range]:active::-webkit-slider-thumb {
          -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.23);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.23);
          margin-top: -4px;
          width: 14px;
          height: 14px;
        }
        .vicp-range input[type=range]::-webkit-slider-runnable-track {
          -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12);
          width: 100%;
          height: 6px;
          cursor: pointer;
          border-radius: 2px;
          border: none;
          background-color: rgba(68, 170, 119, 0.3);
        }
        .vicp-range input[type=range]::-moz-range-track {
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12);
          width: 100%;
          height: 6px;
          cursor: pointer;
          border-radius: 2px;
          border: none;
          background-color: rgba(68, 170, 119, 0.3);
        }
        .vicp-range input[type=range]::-ms-track {
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12);
          width: 100%;
          cursor: pointer;
          background: transparent;
          border-color: transparent;
          color: transparent;
          height: 6px;
          border-radius: 2px;
          border: none;
        }
        .vicp-range input[type=range]::-ms-fill-lower {
          background-color: rgba(68, 170, 119, 0.3);
        }
        .vicp-range input[type=range]::-ms-fill-upper {
          background-color: rgba(68, 170, 119, 0.15);
        }
        .vicp-range input[type=range]:focus::-webkit-slider-runnable-track {
          background-color: rgba(68, 170, 119, 0.5);
        }
        .vicp-range input[type=range]:focus::-moz-range-track {
          background-color: rgba(68, 170, 119, 0.5);
        }
        .vicp-range input[type=range]:focus::-ms-fill-lower {
          background-color: rgba(68, 170, 119, 0.45);
        }
        .vicp-range input[type=range]:focus::-ms-fill-upper {
          background-color: rgba(68, 170, 119, 0.25);
        }
      }
    }
    .vicp-operate {
      position: absolute;
      text-align: center;
      width: 100%;
      bottom: 0;
      .vicp-button {
        display: inline-block;
        overflow: hidden;
        width: 100%;
      }
    }
    .vicp-operate a {
      position: relative;
      float: left;
      display: block;
      // margin-left: 10px;
      // width: 100px;
      height: 36px;
      line-height: 36px;
      text-align: center;
      cursor: pointer;
      font-size: @font-size-base;/*px*/
      color: #4a7;
      border-radius: 2px;
      overflow: hidden;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      width: 50%;
    }
    .vicp-operate a:hover {
      background-color: rgba(0, 0, 0, 0.03);
    }
    .vicp-error,
    .vicp-success {
      display: block;
      font-size: @font-size-base;/*px*/
      line-height: 24px;
      height: 24px;
      color: #d10;
      text-align: center;
      vertical-align: top;
    }
    .vicp-success {
      color: #4a7;
    }
    .vicp-icon3 {
      position: relative;
      display: inline-block;
      width: 20px;
      height: 20px;
      top: 4px;
    }
    .vicp-icon3::after {
      position: absolute;
      top: 3px;
      left: 6px;
      width: 6px;
      height: 10px;
      border-width: 0 2px 2px 0;
      border-color: #4a7;
      border-style: solid;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
      content: '';
    }
    .vicp-icon2 {
      position: relative;
      display: inline-block;
      width: 20px;
      height: 20px;
      top: 4px;
    }
    .vicp-icon2::after,
    .vicp-icon2::before {
      content: '';
      position: absolute;
      top: 9px;
      left: 4px;
      width: 13px;
      height: 2px;
      background-color: #d10;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    .vicp-icon2::after {
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
  }
}

.e-ripple {
  position: absolute;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  background-clip: padding-box;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 1;
}

.e-ripple.z-active {
  opacity: 0;
  -webkit-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
  -webkit-transition: opacity 1.2s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 1.2s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 1.2s ease-out, transform 0.6s ease-out;
  transition: opacity 1.2s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

.vue-image-choose {
  overflow: hidden;
  position: relative;
  .input-file {
    position: absolute;
    top: -500px;
    width: 3000px;
    height: 2000px;
    left: 0px;
  }
}

.vue-image-upload {
  position: fixed;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  -webkit-tap-highlight-color: transparent;
  -moz-tap-highlight-color: transparent;
  .vicp-wrap {
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.23);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.23);
    position: fixed;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    // width: 600px;
    // height: 330px;
    width: 100%;
    height: 100%;
    padding: 0px;
    background-color: rgba(8, 8, 8, 0.8);
    border-radius: 2px;
    -webkit-animation: vicp 0.12s ease-in;
    animation: vicp 0.12s ease-in;
    .vicp-upload {
      position: relative;
      padding: 35px;
      height: 100px;
      top: 30%;
      background-color: rgba(0, 0, 0, 0.03);
      text-align: center;
      border: 1px dashed #ddd;
      .vicp-loading {
        display: block;
        padding: 15px;
        font-size: @font-size-base;/*px*/
        color: #999;
        line-height: 30px;
      }
      .vicp-progress-wrap {
        margin-top: 12px;
        background-color: rgba(0, 0, 0, 0.08);
        border-radius: 3px;
        .vicp-progress {
          position: relative;
          display: block;
          height: 5px;
          border-radius: 3px;
          background-color: #4a7;
          -webkit-box-shadow: 0 2px 6px 0 rgba(68, 170, 119, 0.3);
          box-shadow: 0 2px 6px 0 rgba(68, 170, 119, 0.3);
          -webkit-transition: width 0.15s linear;
          transition: width 0.15s linear;
          background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
          background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
          background-size: 40px 40px;
          -webkit-animation: vicp_progress 0.5s linear infinite;
          animation: vicp_progress 0.5s linear infinite;
          &::after {
            content: '';
            position: absolute;
            display: block;
            top: -3px;
            right: -3px;
            width: 9px;
            height: 9px;
            border: 1px solid rgba(245, 246, 247, 0.7);
            -webkit-box-shadow: 0 1px 4px 0 rgba(68, 170, 119, 0.7);
            box-shadow: 0 1px 4px 0 rgba(68, 170, 119, 0.7);
            border-radius: 100%;
            background-color: #4a7;
          }
        }
        .vicp-error,
        .vicp-success {
          height: 100px;
          line-height: 100px;
        }
      }
    }
    .vicp-operate {
      position: absolute;
      text-align: center;
      width: 100%;
      bottom: 0;
      a {
        position: relative;
        float: left;
        display: block;
        height: 36px;
        line-height: 36px;
        text-align: center;
        cursor: pointer;
        font-size: 14px;
        color: #4a7;
        border-radius: 2px;
        overflow: hidden;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        width: 50%;
      }
      a:hover {
        background-color: rgba(0, 0, 0, 0.03);
      }
    }
    .vicp-error,
    .vicp-success {
      display: block;
      font-size: @font-size-base;/*px*/
      line-height: 24px;
      height: 24px;
      color: #d10;
      text-align: center;
      vertical-align: top;
    }
    .vicp-success {
      color: #4a7;
    }
    .vicp-icon3 {
      position: relative;
      display: inline-block;
      width: 20px;
      height: 20px;
      top: 4px;
      &::after {
        position: absolute;
        top: 3px;
        left: 6px;
        width: 6px;
        height: 10px;
        border-width: 0 2px 2px 0;
        border-color: #4a7;
        border-style: solid;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        content: '';
      }
    }
    .vicp-icon2 {
      position: relative;
      display: inline-block;
      width: 20px;
      height: 20px;
      top: 4px;
      &::after,
      &::before {
        content: '';
        position: absolute;
        top: 9px;
        left: 4px;
        width: 13px;
        height: 2px;
        background-color: #d10;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
      }
      &::after {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
      }
    }
  }
}

.uploadHeadImg {
  img {
    border-radius: 50%;
    height: 100%;
    width: 100%;
  }
}
