.v-tabs-header {
    background: #f3f3f3;
    position: relative;
    overflow: hidden;
    zoom: 1;
    margin-bottom: 1px;
}

.v-tabs-nav:after {
    content: "";
    background-color: #e1e1e1;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 1px;
}

.v-tabs-nav>span:first-child {
    width: 15px;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    z-index: 2;
}

.v-tabs-nav__left {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent #fd5100 transparent transparent;
    border-width: 4px 6px 4px 4px;
}

.v-tabs-nav__right {
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #fd5100;
    border-width: 4px 4px 4px 6px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
}

.v-tabs-nav__content {
    overflow: hidden;
    white-space: nowrap;
}

.v-tabs-nav__content-if {
    padding: 0px 15px;
}

.v-tabs-nav__slide {
    position: relative;
    transition: left .5s;
}

.v-tabs-nav__slide>div {
    position: relative;
    display: inline-block;
    border-top: none;
    border-left: solid 1px #e1e1e1;
    border-right: solid 1px #e1e1e1;
    padding: 10px 15px;
    cursor: pointer;
    color: #6b6b6b;
    text-align: center;
}

.v-tabs-nav__slide>div:first-child {
    border-left: none;
}

.v-tabs-nav__slide>div:last-child {
    border-right: none;
}

.v-tabs-nav .v-tabs-nav-active {
    border-right: none;
    color: #333333;
    font-weight: bold;
    background: #fff;
}

.v-tabs-nav .v-tabs-nav-active:after {
    content: "";
    background-color: #fff;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 1px;
    z-index: 2;
}

.v-tabs-content {
    overflow: auto;
}

.v-tabs-pane {
    height: 100%;
}

.slide-move-enter-active {
    transition: all .3s ease;
}