.doublehundred-banner {
    background: url(../img/index/banner.png) no-repeat;
    height: 314px;
    background-size: 100% 100%;
    background-position: center;
    width: 100%;
}
@media (max-width: 1366px) {
    .doublehundred-banner {
        background: url(../img/index/banner.png) no-repeat;
        height: 224px;
        background-size: auto 100%;
        background-position: center;
    }
}

.doublehundred-tabType {
    position: relative;
    display: flex;
    align-items: center;
    margin: 40px auto;
}
.doublehundred-tabType .doublehundred-tabType-wrap {
    position: relative;
    display: inline-block;
    width: 699px;
    height: 60px;
    border: 1px solid #e4e4e4;
    margin: auto;
    border-radius: 50px;
    display: flex;
    overflow: hidden;
    user-select: none;
}
.doublehundred-tabType .doublehundred-tabType-wrap .tabType-tab {
    display: inline-block;
    width: 233px;
    text-align: center;
    line-height: 60px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}
.doublehundred-tabType .doublehundred-tabType-wrap .tabType-tab.active {
    color: #fff;
}
.doublehundred-tabType .doublehundred-tabType-wrap .tabType-back-panle {
    position: absolute;
    background: #0084C2;
    left: 0;
    top: 0;
    width: 233px;
    height: 60px;
    border-radius: 50px;
    z-index: -1;
    transition: 0.2s ease-in-out;
}
.doublehundred-tabType .doublehundred-tabType-wrap .tabType-back-panle.active {
    left: 33%;
}
.doublehundred-tabType .doublehundred-tabType-wrap .tabType-back-panle.active1 {
    left: 466px;
}
.doublehundred-tabType .doublehundred-search {
    position: absolute;
    right: 20px;
    border: 1px solid #e4e4e4;
    border-radius: 50px;
    padding: 6px 14px;
}
.doublehundred-tabType .doublehundred-search input {
    border: none;
    outline: none;
}
.doublehundred-tabType .doublehundred-search img {
    cursor: pointer;
    user-select: none;
}

.categories {
    display: none;
    margin-bottom: 40px;
}
.categories.active {
    display: flex;
}
.categories .item {
    padding: 10px;
    width: 100%;
    position: relative;
}
.categories .item .info-wrap {
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    text-align: center;
    padding: 10px 0;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}
.categories .item .info-wrap img {
    user-select: none;
}
.categories .item .info-wrap .text {
    user-select: none;
}
.categories .item .icon-wrap {
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    user-select: none;
    background-image: url(../img/index/arrow-right.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
    background-color: #CCCCCC;
    left: calc(50% - 20px/2);
    bottom: calc(-10px - 20px/2);
    transition: 0.2s ease-in-out;
}
.categories .item + .item::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #999;
    position: absolute;
    left: -50%;
    bottom: -10px;
    z-index: -1;
}
.categories .item:hover .info-wrap {
    transform: translateY(-10px);
    box-shadow: 0px 3px 12px 0px #e1e6ee;
}
.categories .item.active .info-wrap {
    background: #0084C2;
}
.categories .item.active .info-wrap img {
    filter: invert(1) brightness(10);
}
.categories .item.active .info-wrap .text {
    color: #fff;
}
.categories .item.active .icon-wrap {
    transform: rotate(90deg);
    background-color: #0084C2;
}
.category-name {
    color: #0084C2;
    font-weight: bold;
    margin: 20px 0;
    font-size: 17px;
    border-bottom: 1px solid #0084C2;
}
.list-wrap {
    display: flex;
    /*justify-content: space-between;*/
    flex-wrap: wrap;
    margin: 20px auto 0;
    max-height: 185px;
    overflow-y: scroll;
}
.list-wrap::-webkit-scrollbar {
    width: 3px;
}

.list-wrap::-webkit-scrollbar-track {
    background-color: #eee;
}

.list-wrap::-webkit-scrollbar-thumb {
    background: #0084C2;
}

.list-wrap .item {
    width: 30%;
    height: auto;
    min-height: 46px;
    line-height: 2;
    background-color: #F1F5F8;
    background-image: url(../img/index/mask-group.png);
    background-repeat: no-repeat;
    background-position: 100% center;
    margin-bottom: 16px;
    margin-right: 43px;
    padding: 9px 0;
}
.list-wrap .item:nth-child(3n) {
    margin-right: 0;
}
.list-wrap .item::before {
    content: '';
    display: inline-block;
    margin: 0 10px;
    transform: translateY(2px);
    width: 3px;
    height: 14px;
    border-radius: 3px;
    font-size: 16px;
    background: #0084C2;
}
.list-wrap .item:hover {
    color: #0085c3;
}