.content-header {
    padding: 70px 0;
    text-align: center;
}

.content-header img {
    display: block;
    margin: auto;
}

.shop-list {
    display: flex;
    justify-content: space-between;
    padding-bottom: 300px;
    max-width: 1200px;
    margin: auto;
}

.shop-list-item {
    width: 31.6%;
    border: 1px solid #e1c094;
    padding: 75px 0;
    color: #e3b774;
    text-align: center;
    position: relative;
}

.shop-list-item p:nth-child(1) {
    font-size: 35px;
    padding-bottom: 14px;
}

.shop-list-item p:nth-child(2) a {
    display: inline-block;
    padding: 5px 30px;
    color: #e3b774;
    border: 1px solid #e1c094;
    font-size: 20px;
    transition: color .5s, border-color .5s;
}

.shop-list-item p:nth-child(2) a:hover {
    color: #b26f4d;
    border-color: #b26f4d;
}

.shop-list-item::before,
.shop-list-item::after {
    content: '';
    position: absolute;
    width: 45px;
    height: 13px;
    background-image: url(../image/icon-hua.png);
    background-size: 100% 100%;
    left: 50%;
    margin-left: -25px;
    background-color: #FFF;
}

.shop-list-item::before {
    top: -7px;
}

.shop-list-item::after {
    bottom: -7px;
}

@media screen and (max-width: 1240px) {
    .shop-list {
        padding-bottom: 100px;
        margin: auto 15px;
    }
}

@media screen and (max-width: 750px) {
    .content-header {
        padding: 20px 0 0 0;
        text-align: center;
    }

    .content-header img {
        height: 25px;
    }

    .content-header-en img {
        height: auto;
        width: 65%;
    }

    .shop-list {
        flex-direction: column;
        padding-bottom: 20px;
        margin: 0 25px;
    }

    .shop-list-item {
        width: 100%;
        padding: 40px 0;
        margin-top: 40px;
    }

    .shop-list-item::after {
        display: none;
    }

    .shop-list-item p:nth-child(1) {
        font-size: 20px;
        padding-bottom: 12px;
    }

    .shop-list-item p:nth-child(2) a {
        padding: 5px 0;
        width: 140px;
        text-align: center;
        font-size: 16px;
    }
}
@media screen and (min-width:750px) and (max-width:1000px){
    .content-header {
        padding: 50px 0;
    }
    .content-header img{ height: 28px;}
    .shop-list-item p:nth-child(1) {
        font-size: 28px;
        padding-bottom: 14px;
    }
    .shop-list-item p:nth-child(2) a {
        font-size: 18px;

    }
}