  /* 頁面指南 */
  .guide_group {
    margin-bottom: 8px;
    margin-right: 8px;
    position: relative;
    user-select: none;
}

.guide_group li+li {
    margin-left: 16px;
}

.guide_group .button {
    display: block;
    text-decoration: none;
    line-height: 1;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, .05);
    background-color: #fff;
    color: #121212;
    border: none;
    cursor: pointer;
}

.button-decor {
    position: absolute;
    inset: 0;
    background-color: #285ee4;
    transform: translateX(-100%);
    transition: transform .3s;
    z-index: 0;
}

.button-content {
    display: flex;
    align-items: center;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.button__icon {
    width: 48px;
    height: 40px;
    background-color: #285ee4;
    display: grid;
    place-items: center;
}

.button__text {
    display: inline-block;
    transition: color .2s;
    padding: 2px 1.5rem 2px;
    padding-left: .75rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 150px;
    font-size: 20px;
}

.guide_group .button:hover .button__text {
    color: #fff;
}

.guide_group .button:hover .button-decor {
    transform: translate(0);
}

.guide_nav {
    /* width: 343px; */
    height: 182px;
    background-color: #fff;
    border: 4px solid var(--main-primary-color);
    border-radius: 20px;
    position: absolute;
    z-index: 101;
    top: 48px;
    /* right: 0; */
    display: none;
    padding: 16px;
}

.guide_nav.active {
    display: block;
}

.guide_nav ul {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide_nav ul li {
    width: 150px;
    height: 150px;
    background: #fff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    border-radius: 12px;
    text-align: center;

}

.guide_nav ul li a {
    color: var(--main-primary-color);
    font-size: 20px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
}

.guide_nav ul li a>img {
    width: 100%;
    height: 100px;
}

.right_group .guide_nav {
    right: 0;
}

.right_group>.guide_group {
    margin-right: 0px;
}

@media screen and (max-width:600px) {
    .right_group {
        width: 100%;
    }

    .right_group .guide_nav {
        left: 0;
        right: auto;
    }
}

@media screen and (max-width: 400px) {
    .guide_group {
        width: 100%;
        margin-right: 0;
    }

    .guide_group .button {
        width: 100%;
    }

    .right_group {
        width: 100%;
    }
}