:root {
    --searchlist-height: 0px;
}

@keyframes Height_Hide {
    0% {
        opacity: 1;
        height: 44px;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        height: 0px;
    }
}

@keyframes Height_Show {
    0% {
        height: 0px;
        opacity: 0;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        height: 44px;
    }
}

@keyframes search_list_hide {
    0% {
        opacity: 1;
        height: var(--searchlist-height);
    }

    100% {
        height: 0px;
        opacity: 0;
    }
}

@keyframes search_list_Show {
    0% {
        height: 0px;
    }

    100% {
        height: var(--searchlist-height);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes Span_scale_in {
    from {
        height: 0px;
        width: 0px;
        opacity: 0;
        transform: rotate(0deg);
        background: rgba(219, 219, 219, 0.3);
    }

    to {
        height: 48px;
        width: 48px;
        opacity: 1;
        transform: rotate(360deg);
        background: rgba(34, 34, 34, 0.4);
    }
}

@keyframes Span_scale_out {
    from {
        height: 48px;
        width: 48px;
        opacity: 1;
        transform: rotate(360deg);
        background: rgba(34, 34, 34, 0.4);
    }

    to {
        height: 0px;
        width: 0px;
        opacity: 0;
        transform: rotate(0deg);
        background: rgba(219, 219, 219, 0.3);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "PingFang SC", "Microsoft Yahei", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.root {
    width: 100%;
    height: 100%;
    background: url('https://file.izuiyou.com/img/png/id/2155233193') center center/ cover no-repeat;
    /*background: url('wallpaper3.jpg') center center/ cover no-repeat;*/
}

.container {
    position: absolute;
    top: 45%;
    left: 50%;
    padding-bottom: 20px;
    transform: translate(-50%, -50%);

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    /* background-color: rgba(153, 153, 153, 0.486); */
}

.time {
    width: 220px;
    height: 110px;
    border-radius: 20px;
    margin-bottom: 6px;
    /* backdrop-filter: blur(0px); */
    color: #f2f2f2;
    font-weight: 600;
    letter-spacing: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    box-shadow: rgb(0 0 0 / 0%) 0px 2px 3px -1px, rgb(0 0 0 / 0%) 0px 1px 3px 0px, rgb(0 0 0 / 0%) 0px 1px 5px 0px;
    transition: 0.6s;

    animation: fadeInUp 0.9s both;
}

.minute {
    font-size: 46px;
    text-shadow: 2px 3px 4px #444;
}

.year {
    font-size: 20px;
    color: #f2f2f2b9;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
    transition: 0.6s;
}

.time:hover {
    background: rgba(61, 61, 61, 0.1);
    /* backdrop-filter: blur(5px); */
    box-shadow: rgb(0 0 0 / 20%) 0px 2px 3px -1px, rgb(0 0 0 / 14%) 0px 1px 3px 0px, rgb(0 0 0 / 12%) 0px 1px 5px 0px;
}

.time:hover .year {
    color: #f2f2f2e3;
    text-shadow: 2px 3px 4px #444;
}

.saying {
    width: min-content;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.6s;
    background: rgba(153, 153, 153, 0.1);

    animation: fadeInUp 0.9s both 0.5s;
}

.line_saying {
    margin: 10px 20px;
    overflow: hidden;
    color: #dbdbdb9f;
    font-size: 18px;
    letter-spacing: 2px;
    white-space: nowrap;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    transition: 0.6s;
}

.saying:hover {
    /* backdrop-filter: blur(5px); */
    background: rgba(190, 190, 190, 0.3);
}

.saying:hover .line_saying {
    color: #dbdbdbe3;
}



.search {
    width: min-content;
    height: min-content;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    animation: fadeInUp 0.9s both 0.9s;
}

.search>.search_fun {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search>.search_fun>span {
    height: 0px;
    width: 0px;
    border-radius: 100px;
    background: rgba(219, 219, 219, 0.3);
    box-shadow: 2px 2px 6px rgba(51, 51, 51, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.search_box {
    border: none;
    outline: none;
    width: 180px;
    height: 50px;
    padding: 20px 28px;
    margin: 0 6px;
    border-radius: 100px;
    background: rgba(219, 219, 219, 0.3);
    /* backdrop-filter: blur(2px); */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #222;
    font-size: 18px;
    font-weight: 600;
    transition: 0.6s;
}

.search_box::placeholder {
    color: rgba(34, 34, 34, 0.8);
    transition: color 0.5s;
}

.search_box:focus {
    width: 430px;
    height: 48px;
    padding: 15px 20px;
    background: rgba(34, 34, 34, 0.4);
    /* backdrop-filter: blur(5px); */
    color: rgba(238, 238, 238, 0.8);
    font-size: 16px;
    box-shadow: 2px 2px 6px rgba(51, 51, 51, 0.2);
}

.search_box:focus::placeholder {
    color: rgba(238, 238, 238, 0.6);
}

.search_box_focus {
    position: relative;
    border: none;
    outline: none;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-weight: 600;
    transition: 0.6s;
    width: 430px;
    height: 48px;
    padding: 15px 20px;
    margin: 0 6px;
    background: rgba(34, 34, 34, 0.4);
    /* backdrop-filter: blur(5px); */
    color: rgba(238, 238, 238, 0.8);
    font-size: 16px;
    box-shadow: 2px 2px 6px rgba(51, 51, 51, 0.2);
}

.search_list {
    width: 96%;
    margin-top: 8px;
    border-radius: 8px;
    overflow: hidden;
    /* backdrop-filter: blur(5px); */
    background: rgba(226, 226, 226, 0.1);

}

/* .search_list>div {
    width: 98%;
    margin-top: 8px;
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(5px);
    background: rgba(226, 226, 226, 0.1);
} */

.search_list>a {
    width: 100%;
    height: 34px;
    padding-left: 16px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    color: #ebe9e9b2;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.4s;

    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;

    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.search_list>a:hover {
    padding-left: 26px;
    color: #f2f2f2d3;
    background: rgba(226, 226, 226, 0.1);
}


.foot {
    position: absolute;
    left: calc(50% - 175px);
    bottom: 0px;
    margin: 8px;
    width: 350px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #eee;
    font-size: 15px;
    font-weight: 600;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    background: rgba(255, 255, 255, 0.0);
    /* backdrop-filter: blur(5px); */
    transition: background 0.6s, backdrop-filter 0.6s, color 0.8s;

    animation: fadeIn 0.6s both 0.8s;
}

.foot:hover {
    background: rgba(225, 225, 225, 0.4);
    /* backdrop-filter: blur(15px);  */
    color: #222;
}