.v-carousel {

  position: relative;
  width: 100%;
  height: 300px;

  .v-content-part {

    width: 100%;
    height: 100%;
    white-space: nowrap;
    overflow: hidden;

    .v-content {

      position: relative;
      left: 0;
      width: 100% !important;
      height: 100%;
      font-size: 0;
    }
  }

  .v-arrow-part {
    position: absolute;
    width: 100%;
    top: 50%;
    height: 35px;
    transform: translateY(-50%);

    .v-before {
      position: absolute;
      left: 10px;
      width: 35px;
      height: 35px;
      line-height: 35px;
      border-radius: 50%;
      text-align: center;
      background-color: rgba(31, 45, 61, 0.11);
      color: #fff;
      cursor: pointer;
      user-select: none;

      &:hover {
        background-color: rgba(31, 45, 61, 0.23);
      }
    }

    .v-next {
      position: absolute;
      right: 10px;
      width: 35px;
      height: 35px;
      line-height: 35px;
      border-radius: 50%;
      text-align: center;
      background-color: rgba(31, 45, 61, 0.11);
      color: #fff;
      cursor: pointer;
      user-select: none;

      &:hover {
        background-color: rgba(31, 45, 61, 0.23);
      }
    }
  }

  .v-indicator-part {

    &.v-inside {

      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);

      .v-item {

        display: inline-block;
        width: 40px;
        height: 30px;
        text-align: center;
        line-height: 30px;
        cursor: pointer;

        i {
          display: inline-block;
          margin: 0 5px;
          width: 30px;
          height: 2px;
          opacity: .5;
          background-color: rgb(192, 196, 204);

          &.is-active {
            opacity: 1;
          }
        }

        &:hover {
          i {
            opacity: 1;
          }
        }
      }
    }

    &.v-outside {

      width: 100%;
      height: 30px;
      cursor: pointer;
      text-align: center;

      .v-item {

        display: inline-block;
        width: 40px;
        height: 30px;
        text-align: center;
        line-height: 30px;
        cursor: pointer;

        i {
          display: inline-block;
          margin: 0 5px;
          width: 30px;
          height: 2px;
          opacity: .5;
          background-color: rgb(192, 196, 204);

          &.is-active {
            opacity: 1;
          }
        }

        &:hover {
          i {
            opacity: 1;
          }
        }
      }
    }
  }
}
