/* 未经允许，请勿盗用！ */
/* by zgcwkj */
* {
    margin: 0;
}

html {
    background-image: url(background.jpg?v1);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    scroll-behavior: smooth;
}

body {
    height: 100vh;
    overflow: hidden;
}

body>div {
    height: 100vh;
    min-height: 100vh;
    background-color: rgba(48, 47, 75, 0.7);
    display: flex;
    flex-direction: column;
}

body>div:first-child {
    background-color: rgba(48, 47, 75, 0.6);
}

/*page1*/

#page1 {
    justify-content: center;
    align-items: center;
}

#page1 a {
    color: ghostwhite;
    text-decoration: none;
    display: inline-block;
    margin: 5px 10px;
}

#page1 hr {
    width: 100%;
    height: 1px;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#page1 .welcome {
    width: 110px;
    height: 110px;
    background: url(./zgcwkj.png) no-repeat scroll center #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 5px rgb(255 255 255 / 40%);
    backdrop-filter: blur(10px);
}

#page1 .content {
    width: 25vw;
    margin: 30px 0;
    font-size: 18px;
    text-align: left;
    line-height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#page1 .synopsis {
    width: 90%;
    margin: 10px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #ffffff;
}

#page1 .button {
    color: #fff;
    font-size: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

#page1 .button-more {
    margin-top: 20px;
    font-size: 15px;
}

#page1 .parting {
    display: initial;
    border-left: 1px dashed rgba(255, 255, 255, 0.2);
}

#page1 .beian {
    position: absolute;
    bottom: 5px;
    z-index: 99;
}

@media(max-width:768px) {
    #page1 .content {
        width: 55vw;
    }
}

@media(max-width:426px) {
    #page1 .content {
        width: 85vw;
    }
}

/*page2*/

#page2 {
    padding: 10px;
    overflow: auto;
}

#page2 .title {
    margin: 10px;
    color: white;
}

#page2 .content {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

#page2 .content>a {
    padding: 20px;
    color: white;
    text-decoration: none;
    display: inline-block;
    background: #ffffff40;
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

#page2 .content>a:hover {
    box-shadow: 0 2px 30px 0px rgb(0 0 0/ 0.1);
    transform: translate3d(0, -2px, 0);
}

#page2 .content>a>p {
    font-weight: bold;
}

#page2 .content>a>span {
    font-size: 12px;
    color: burlywood;
}

@media(max-width:426px) {
    #page2 .content {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    #page2 .content>a>p {
        font-size: 12px;
    }

    #page2 .content>a>span {
        font-size: 10px;
    }
}
