/* footer */
.footer {
    background-color: #333;
    padding-top: 101px;
    padding-bottom: 101px;
}
.ft_wrap {
    border-top: 1px solid#fff;
    padding-top: 19px;
    border-bottom: 1px solid#fff;
    padding-bottom: 73px;
}
.ft_text {
    padding-top: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ft_text span {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}
.ft_line {
    width: 1px;
    height: 14px;
    margin: 0px 20px;
    background-color: #fff;
}

/* quick_menu */
.quick_menu {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 101;
}
.quick_menu_wrap {
    display: flex;
    flex-direction: column;
    border-radius: 43px;
    background-color: rgba(255, 255, 255, 0.6);
    width: 86px;
    padding-top: 20px;
    margin-bottom: 18px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.quick_menu_wrap > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
    transition: all 0.2s;
}
.quick_menu_wrap > a > img {
    margin-bottom: 6px;
}
.quick_menu > a {
    margin-top: 18px;
    border-radius: 50%;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: all 0.2s;
}
.quick_menu_wrap > a:hover {
    transform: translateY(-5px);
}
.quick_menu > a:hover {
    opacity: 0.7;
}
