@charset "utf-8";

.page_brand .main {
    background-color: #fff;
    padding: 32px 16px;
}


/*
 * brand_list
 * */
.brand_list_title {
    margin-bottom: 20px;
    padding-left: 20px;
}

.brand_list_title .pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F56C6C;
    background-color: #FDF6EC;
    font-size: 20px;
}

.brand_list_group {
    padding: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #ddd;
}

.brand_list .items {
    display: flex;
    flex-wrap: wrap;
}

.brand_list .item {
    width: 14.27%;

}

.brand_list .item .pic {
    position: relative;
    overflow: hidden;

    width: 100%;
    padding-bottom: 62.5%;

    border: 1px solid #ccc;
    border-radius: 5px;
}

.brand_list .item .pic_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand_list .item img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.brand_list .dl {
    margin: 10px;
    padding: 10px;
    -webkit-transition: transform .5s ease;
    transition: transform .5s ease;
}

.brand_list .dl:hover {
    color: #AC8241;
    transform: translateY(-10px);
}

.brand_list .dl:hover .link {
    color: #AC8241;
}

.brand_list .dt {
    height: 40px;
    margin: 10px 0;
    font-size: 15px;
    text-align: center;
    overflow: hidden;
    word-break: break-all;
}

@media (max-width: 1200px) {
    .brand_list .item {
        width: 16.65%;
    }
}

@media (max-width: 992px) {
    .brand_list .item {
        width: 20%;
    }
}

@media (max-width: 800px) {
    .brand_list .item {
        width: 25%;
    }
}

@media (max-width: 600px) {
    .brand_list .item {
        width: 33.333%;
    }

    .brand_list_group {
        padding: 0;
    }
}

@media (max-width: 400px) {
    .brand_list .item {
        width: 50%;
    }
}


/*
.brand_sidebar
*/

.brand_sidebar {
    position: fixed;
    top: 50px;
    right: 10px;
    background-color: #f0f0f0;
    border-radius: 20px;
    text-align: center;
    width: 30px;
    padding: 5px 0;
}

.brand_sidebar .brand_sidebar_item {
    font-size: 15px;
    color: #999;
    overflow: hidden;
    cursor: pointer;
}

.brand_sidebar .brand_sidebar_item.active,
.brand_sidebar .brand_sidebar_item:hover {
    color: #AC8241;
}

/*
brand_sidebar_index
*/
.brand_sidebar_index {
    right: inherit;
    top: 15vh;
    left: 10vw;
}

@media (max-width: 1700px) {
    .brand_sidebar_index {
        left: 5vw;
    }
}

@media (max-width: 1500px) {
    .brand_sidebar_index {
        left: 10px;
    }
}

@media (max-width: 600px) {
    .brand_sidebar_index {
        top: 55px;
        left: 5px;
    }

    .brand_list_group {
        padding-left: 10px;
    }
}

/*
brand_info
*/
.brand_info {
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
}

.brand_info .dl {
    display: flex;
}

.brand_info .pic {
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    padding: 5px;
}

.brand_info .pic img {
    max-width: 300px;
    width: 100%;
}

.brand_info .con {
    flex: 1;
    margin-left: 40px;
    font-size: 15px;
    line-height: 1.8;
}

.brand_info .dt {
    margin-bottom: 20px;
    border-bottom: 1px dashed #ddd;
    font-size: 30px;
    padding: 10px 0;
}


@media (max-width: 600px) {
    .brand_info  {
        padding: 20px;
    }

    .brand_info .dl {
        display: block;
    }

    .brand_info .pic {
        width: 100%;
        margin-bottom: 10px;
        padding-right: 0;
    }

    .brand_info .con {
        margin-left: 0;
    }
}