.gg-block {
    padding: 5.5vw 2.6vw 2.8vw 2.6vw;
}

.gg-block .gg {
    display: flex;
    height: 7.2vw;
    background-color: #fff;
    border-radius: 3.6vw;
    overflow: hidden;
}

.gg-block .gg .iconfont {
    display: inline-flex;
    align-items: center;
    padding: 0 2.5vw;
    border-radius: 3.6vw;
    background-color: #ef3e3d;
    color: #fff;
    font-size: 3.3vw;
}

.gg-block .gg .iconfont::before {
    font-size: 4vw;
    margin-right: 1vw;
}

.gg-block .gg .scrolling-notice {
    width: 0;
    flex-grow: 1;
    overflow: hidden;
    margin: 0 2.5vw;
    float: left;
    white-space: nowrap;
}

.gg-block .gg .scrolling-notice ul {
    white-space: nowrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
    animation: scroll-notice 15s linear infinite;
    float: left;
}

.gg-block .gg .scrolling-notice li {
    display: inline-block;
    line-height: 7.2vw;
    font-size: 3.3vw;
    margin-left: 2vw;
}

.gg-block .gg .scrolling-notice li:first {
    margin-left: 0;
}

@keyframes scroll-notice {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hot-brands {
    padding: 3.3vw;
    background-color: #fff;
    border-radius: 2vw;
    margin-top: 2.8vw;
}

.hot-brands h2 {
    line-height: 6.4vw;
    font-size: 4.2vw;
}

.hot-brands .brands {
    overflow: hidden;
    overflow-x: scroll;
    margin-top: 2vw;
    -webkit-overflow-scrolling: touch;
}

.hot-brands .brands>ul {
    float: left;
    white-space: nowrap;
    line-height: 0;
    padding-right: .9vw;
}

.hot-brands .brands>ul>li {
    display: inline-block;
    height: 26vw;
    margin-left: 4vw;
}

.hot-brands .brands>ul>li:nth-child(1) {
    margin-left: 0;
}

.hot-brands .brands>ul>li>a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hot-brands .brands>ul>li>a .thumb {
    width: 16.4vw;
    height: 16.4vw;
    border-radius: 4.2vw;
    background-color: #f7f7f7;
    box-shadow: .4vw .4vw .9vw rgba(0, 0, 0, .18);
}

.hot-brands .brands>ul>li>a .name {
    line-height: 4.2vw;
    margin-top: 2vw;
    font-size: 2.5vw;
    text-align: center;
}