
.banner-wrap {
    width: 100%;
    height: 250px;
    background: #fff;
    position: relative;
}

.banner-wrapBox {
    position: absolute;
    bottom: 30%;
    left: 10%;
}

.banner-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-wrap .register, .banner-wrap .login {
    width: 260px;
    height: auto;
    margin-top: 30px;
    border-radius: 200px;
}

.member-content .interests {
    /* width: 100%;
    height: 585px; */
    width: 100%;
    background: #ECF9EE;
    border-radius: 150px 0 0 0;
    padding: 94px 0 300px;
}

.member-content .interests .title, .member-content .activity .title {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.member-content .interests ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0 160px;
    max-width: 1200px;
    justify-content: space-between;
    margin: auto;
    width: 85%;
    box-shadow: 0 0 29px rgba(207,207,207,.32);
}

.member-content .interests ul li {
    width: 48%;
    display: flex;
    align-items: center;
}

.member-content .interests ul li img {
    width: 15%;
    height: auto;
    margin-right: 20px;
}

.activityBox {
    width: 100%;
    position: relative;
    top: -190px;
    background: #fff;
    border-radius: 0 80px 0 0;
    padding: 94px 0 0;
}

.member-content .activity {
    /* width: 100%;
    height: 585px; */
    width: 100%;
    max-width: 1200px;
    position: relative;
    margin: auto;
}

.member-content .activity ul {
    display: flex;
    justify-content: space-around;
    /* padding: 0 160px; */
    margin-top: 60px;
}

.member-content .activity ul li {
    width: 367px;
    height: 534px;
    background: #FFFFFF;
    box-shadow: 0px -2px 41px 8px rgba(84, 84, 84, 0.22);
    border-radius: 15px;
    box-sizing: border-box;
    padding: 22px 10px 24px;
    position: relative;
    cursor: pointer;
    border: 2px solid #fff;
    transition: .5s;
}

.member-content .activity ul li:nth-child(2) {
    margin: 0 34px;
}

.member-content .activity ul li:hover {
    animation: doorin .5s linear forwards;
    -webkit-animation: doorin .5s linear forwards;
    border: 2px solid #5DBD60;
}

.member-content .activity ul li .desc-img {
    width: 344px;
    height: 324px;
    object-fit: contain;
}

.member-content .activity ul li p {
    font-size: 18px;
    color: #333333;
    padding: 20px 30px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    box-sizing: border-box;
}

.member-content .activity ul li .num-img {
    width: 76px;
    height: auto;
    position: absolute;
    right: 18px;
    bottom: 24px;
}

.member-content .activity .check-more {
    position: absolute;
    right: 0;
    bottom: -100px;
    width: 92px;
    height: 14px;
}

.member-content .activity .check-more img {
    width: 100%;
    height: auto;
}

.footer {
    /* position: relative;
    top: -300px;
    z-index: 1; */
    margin-top: 50px;
}

@keyframes doorin {
    0% {
        transform: none;
    }
    100% {
        transform: translateY(-8px) scale(1.02);
    }
}

@-webkit-keyframes doorin {
    0% {
        -webkit-transform: none;
    }
    100% {
        -webkit-transform: translateY(-8px) scale(1.02);
    }
}

@-moz-keyframes doorin {
    0% {
        -moz-transform: none;
    }
    100% {
        -moz-transform: translateY(-8px) scale(1.02);
    }
}

@-o-keyframes doorin {
    0% {
        -o-transform: none;
    }
    100% {
        -o-transform: translateY(-8px) scale(1.02);
    }
}

@-ms-keyframes doorin {
    0% {
        -ms-transform: none;
    }
    100% {
        -ms-transform: translateY(-8px) scale(1.02);
    }
}

@media screen and (max-width: 800px) {
    .member-content .interests {
        padding: 0 30px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .banner-wrapBox {
        position: absolute;
        bottom: 20%;
        left: 6%;
    }

    .banner-wrap .register, .banner-wrap .login {
        width: 170px;
        height: auto;
        margin-top: 20px;
        border-radius: 200px;
    }
}
