* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-size: 10px;
}
.content {
    width: 100%;
    height: 100%;
    position: relative;
}
.bg-img {
    width: 100%;
    height: auto;
}
.ic-logo {
    width: 38%;
    position: absolute;
    top: 5%;
    left: 30%;
    animation: float 2s ease-in-out infinite;
}
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
.go-btn {
    position: absolute;
    bottom: 5.9%;
    left: 75%;
    transform: translateX(-50%);
    width: 13%;
    height: 3%;
}
.footer-label {
    color: #636C78;
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 2.2rem;
    white-space: nowrap;
    bottom: 10px;
}
.click-list {
    width: 100%;
    height: 34%;
    position: absolute;
    left: 0;
    top: 43%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-gap: 8% 11%;
    padding: 0 7%;
}
.click-item {
    width: 100%;
    height: 100%;
}
.dialog {
    display: none;
    position: fixed;

    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    z-index: 1;
}
.dialog-info {
    width: 80%;
    height: auto;
    max-height: 90%;
    position: absolute;
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation: showDialog .5s linear;
}
.add-wx-btn {
    top: 69%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 74%;
    position: absolute;
    height: 8%;
}
.close-dialog {
    width: 5%;
    height: 5%;
    position: absolute;
    top: 20%;
    left: 90%;
    transform: translate(-50%,-50%);
}
@keyframes showDialog {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
