﻿.brand-container {
    padding: 15px 0 0 0;
    color: #ffffff;
}

.brand-container h2 {
    margin: 0 0 42px 0;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
}

.brand-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.brand-list li {
    height: 96px;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
}

.brand-list li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-list li img {
    display: block;
    max-width: 78%;
    max-height: 88px;
    transition: all .25s ease;
}

.brand-list li:hover img {
    transform: scale(1.05);
}


.brand-show-page {
    color: #ffffff;
}

.brand-show-top {
    display: flex;
    align-items: center;
    gap: 42px;
    padding: 38px 40px;
    box-sizing: border-box;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    margin-bottom: 42px;
}

.brand-show-logo {
    width: 220px;
    min-height: 92px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 8px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 220px;
}

.brand-show-logo img {
    display: block;
    max-width: 100%;
    max-height: 80px;
}

.brand-show-info {
    flex: 1;
    min-width: 0;
}

.brand-show-info h1 {
    margin: 0 0 24px 0;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 1px;
}

.brand-show-content {
    color: rgba(255,255,255,.95);
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: .3px;
}

.brand-show-content p {
    margin: 0 0 18px 0;
}

.brand-show-content p:last-child {
    margin-bottom: 0;
}

.brand-show-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.brand-show-category {
    padding: 34px 36px 38px 36px;
    box-sizing: border-box;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}

.brand-show-category-title {
    padding-bottom: 24px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,.16);
}

.brand-show-category-title span {
    display: block;
    margin-bottom: 8px;
    color: #00CFA9;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: .6px;
}

.brand-show-category-title h2 {
    margin: 0;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 1px;
}

.brand-show-category-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.brand-show-category-group {
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
}

.brand-show-category-parent {
    min-height: 56px;
    padding: 0 22px;
    box-sizing: border-box;
    background: linear-gradient(90deg, #00A4FD 0%, #00CFA9 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-show-category-parent span {
    display: block;
    padding-right: 14px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: .3px;
}

.brand-show-category-parent i {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    color: #00A4FD;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.brand-show-category-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 22px;
    padding: 16px 22px 18px 22px;
    box-sizing: border-box;
}

.brand-show-category-child a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    color: rgba(255,255,255,.92);
    font-size: 14px;
    line-height: 1.35;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
    transition: all .25s ease;
}

.brand-show-category-child a span {
    display: block;
    padding-right: 12px;
}

.brand-show-category-child a i {
    color: #00CFA9;
    font-size: 15px;
    transition: all .25s ease;
}

.brand-show-category-child a:hover {
    color: #00CFA9;
    padding-left: 8px;
}

.brand-show-category-child a:hover i {
    transform: translateX(4px);
}
/* mobile */
@media screen and (max-width: 768px) {
    .brand-container {
        padding: 10px 15px 0 15px;
        box-sizing: border-box;
    }

    .brand-container h2 {
        margin-bottom: 24px;
        font-size: 1.7rem;
        line-height: 1.35;
    }

    .brand-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .brand-list li {
        height: 78px;
        border-radius: 6px;
    }

    .brand-list li img {
        max-width: 80%;
        max-height: 44px;
    }
    .brand-show-page {
        padding: 0 15px;
        box-sizing: border-box;
    }

    .brand-show-top {
        display: block;
        padding: 26px 18px 30px 18px;
        margin-bottom: 28px;
    }

    .brand-show-logo {
        width: 180px;
        min-height: 78px;
        padding: 16px;
        margin-bottom: 24px;
        flex: none;
    }

    .brand-show-info h1 {
        margin-bottom: 18px;
        font-size: 1.7rem;
        line-height: 1.4;
    }

    .brand-show-content {
        font-size: 14px;
        line-height: 1.75;
    }

    .brand-show-category {
        padding: 24px 18px 28px 18px;
    }

    .brand-show-category-title {
        padding-bottom: 18px;
        margin-bottom: 22px;
    }

        .brand-show-category-title h2 {
            font-size: 1.65rem;
            line-height: 1.4;
        }

    .brand-show-category-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .brand-show-category-parent {
        min-height: 50px;
        padding: 0 16px;
    }

        .brand-show-category-parent span {
            font-size: 15px;
        }

    .brand-show-category-child {
        grid-template-columns: 1fr;
        padding: 12px 16px 14px 16px;
        gap: 0;
    }

        .brand-show-category-child a {
            min-height: 40px;
            font-size: 14px;
        }
}