.banner{
    background:url(https://www.51cube.com/wp-content/uploads/2021/07/1625730572-online-store-banner.png) no-repeat center;
    background-size: cover;
    height: 270px;
    position: relative;
}
.banner .title{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.title{
    color: #fff;
    text-align: center;
}
.title h2{
    margin: 0 0 20px;
    font-size: 42px;
}
.title p{
    margin: 0;
    font-size: 20px;
}
@media(max-width: 768px){
    .banner {
        height: 150px;
    }
    .title h2{
        font-size: 26px;
    }
    .title p{
        font-size: 14px;
    }
}
.bottom{
    background: #fff;
}
.channel-wrap{
    padding: 100px;
}
.channel{
    display: flex;
    margin-bottom: 100px;
}
.channel:last-of-type{
    margin-bottom: 0;
}
.channel .c-icon{
    margin-right: 50px;
}
.channel .link-wrap a{
    margin-bottom: 20px;
    margin-right: 20px;
    display: inline-block;
    font-size: 20px;
    color: #333;
    text-decoration: underline;
}
.channel .link-wrap a:hover{
    color: #008cd6;
}
@media(max-width: 768px){
    .channel-wrap{
        padding: 2vw;
        background: #f1f1f1;
    }
    .channel{
        display: block;
        margin-bottom: 2vw;
        padding: 10vw 6vw;
        background: #fff;
        border-radius: 5vw;
    }
    .channel .c-icon{
        margin-bottom: 6vw;
        text-align: center;
        margin-right: 0;
    }
    .channel .c-icon img{
        width: 15vw;
        height: auto;
    }
    .channel .search-icon img{
        width: 100%;
        height: auto;
    }
    .channel:nth-of-type(1) .search-icon img{
        max-width: 267px;
    }
    .channel .link-wrap a{
        font-size: 4.5vw;
        margin-top: 20px;
        margin-bottom: 0;
    }
}