.footer{
    padding: 100px 0;
    box-sizing: border-box;
}
.section1 .category{
    position: absolute;
    top: 180px;
    left: 180px;
    width: 200px;
}
.category .category-list {
    position: relative;
    background-color: #f2f2f2;
    box-shadow: 0px 0px 15px 0px 
        rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    opacity: 0.9;
    display: table;
    cursor: pointer;
    z-index: 9999;
}
.category .category-list.active {
    border-radius: 10px 0 0 10px
}

.category .category-item {
    display: table-row
}

.category .category-item .category-item-bg {
    display: table-cell;
    vertical-align: middle
}

.category .category-item.active:first-child .category-item-bg {
    border-radius: 10px 0 0 0
}

.category .category-item.active:last-child .category-item-bg {
    border-radius: 0 0 0 10px
}

.category .category-item.active .category-item-bg {
    background: #fff;
    box-shadow: 0 0 28px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden
}

.category .category-item.active .category-item-bg:after {
    content: "";
    width: 60px;
    height: 75px;
    background: #fff;
    position: absolute;
    top: 0;
    right: -10px;
    z-index: 999;
    display: block
}

.category .category-item.active .category-title {
    position: relative;
    z-index: 998
}

.category .category-item.active .category-info a:hover {
    color: #28166f
}
.category .category-list .category-item {
    display: table-row;
}
.category .category-item .category-item-bg {
    display: table-cell;
    vertical-align: middle;
    padding: 10px 0;
}
.category .category-info {
    padding-left: 16px;
    width: 184px;
    position: relative;
    cursor: pointer;
}
.category .category-info a {
    font-size: 16px;
    color: #848484;
}
.category .category-panels {
    position: absolute;
    left: 95%;
    height: 100%;
    max-width: 1050px;
    background: #FFF;
    padding: 20px 0 0 32px;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 0 46px rgba(0,0,0,0.1);
    top: 0;
    z-index: 1;
    overflow: hidden;
    width: 1050px;
}
.category .category-panels.none {
    display: none
}
.category .category-panels .subcate-item{
    float: left;
    margin-bottom: 25px
}
.category .category-panels .subcate-item a{
    display: table-cell;
    width: 230px;
    height: 60px;
    font-size: 14px;
    border-radius: 10px;
    margin-right: 0;
    vertical-align: middle
}
.category .category-panels .subcate-item a img{
    width: 48px;
    height: 48px;
    float: left;
    margin: 0 8px 0 12px;
}
.category .category-panels .subcate-item a p{
    display: table-cell;
    height: 34px;
    line-height: 17px;
    position: relative;
    top: 7px;
    vertical-align: middle;
    color: #666;
    font-size: 14px;
    width: 150px;
    overflow: hidden;
}
.category .category-panels .subcate-item a p span{
    max-height: 34px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.category .subcate-btn {
    float: left
}
.category .subcate-btn a {
    width: 112px;
    height: 42px;
    line-height: 42px;
    margin-top: 8px;
    margin-left: 36px;
    border: 1px solid #f2f2f2;
    border-radius: 0 22px 22px 0;
    font-size: 13px;
    color: #999;
    display: block;
    position: relative;
    text-indent: 34px
}

.category .subcate-btn a:before {
    content: "";
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid #f2f2f2;
    display: block;
    border-radius: 22px;
    position: absolute;
    top: -1px;
    left: -22px
}

.category .subcate-btn a:after {
    content: "";
    width: 0;
    height: 0;
    display: block;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    border-left: 5px solid #c0c0c0;
    position: absolute;
    top: 16px;
    left: -1px
}
.category .subcate-item a:hover{
    background: #f6f6f6;
}
@media only screen and (max-width:991px ) {
    .category{
        display: none;
    }
}