.swiper-linkage-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    height: 44px;
    font-weight: normal;
    color: #313335;
    line-height: 44px;
    background-color: white;
    border-bottom: 1px solid #ddd;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.swiper-linkage-nav .swiper-slide {
    position: relative;
    display: inline-block;
    width: auto;
}

.swiper-linkage-nav .swiper-slide:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: 0;
    height: 2px;
    margin-left: 0;
    background-color: #0e90ec;
    border-radius: 1px;
}

.swiper-linkage-nav .swiper-slide a {
    display: inline-block;
    margin: 0 10px;
    font-size: 15px;
    color: inherit;
    text-align: center;
    text-decoration: none;
}

.swiper-linkage-nav .swiper-slide-thumb-active {
    color: #0e90ec;
}

.swiper-linkage-nav .swiper-slide-thumb-active:after {
    width: 40px;
    margin-left: -20px;
}

.swiper-linkage-body {
    position: fixed;
    width: 100%;
    /* top: 44px; */
    top: 0;
    bottom: 0;
}

.swiper-linkage-body .swiper-slide {
    /* overflow-y: auto; */
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 200px;
}

/* 
#swiper-scrollbar1{
    height:.4rem;
    background:#ccc;
    width:20%;
    overflow: hidden;
    margin-top:.4rem;
    opacity: .4;
    transform: translateX(-50%);
    left:50%;
} */


/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #F5F5F5;
}


/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #888;
}