@font-face {
    font-family: 'zcool';
    src: url('./../fonts/zcool-gdh_Regular.ttf') format('truetype');
    /* 可选：添加其他字体格式，如 woff、woff2 */
}

html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    height: 100%;
    font-family: 'zcool', sans-serif;
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    color: #5a5a5a;
}

.mainbg {
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    transform: translateY(-50%);
    z-index: 0;
}


/* 移动端的样式 */

@media only screen and (max-width: 768px) {
    /* 在这里写移动端的CSS样式 */
    .mainmask {
        position: absolute;
        width: 100%;
        height: 100%;
        /* backdrop-filter: blur(1px); */
        background: radial-gradient(circle at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%);
        z-index: 1000;
    }
}


/* PC端的样式 */

@media only screen and (min-width: 769px) {
    /* 在这里写PC端的CSS样式 */
    .mainmask {
        position: absolute;
        width: 100%;
        height: 100%;
        /* backdrop-filter: blur(1px); */
        background: radial-gradient(circle at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%);
        z-index: 1000;
    }
}

h1 strong {
    font-weight: 900;
    font-style: normal;
}

p {
    font-weight: 500;
    line-height: 30px;
    font-style: normal;
    font-size: 16px;
}

p.intro {
    font-size: 18px;
    margin: 12px 0 0;
}

a {
    color: #FCAC45;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #FCAC45;
}

.wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    z-index: 100000;
}

.wrapper .logo {
    width: 150px;
    background: radial-gradient(circle at center, rgba(30, 92, 169, 1) 0%, rgba(30, 92, 169, 0.8) 80%, rgba(30, 92, 169, 0) 100%);
    border-radius: 30%;
}

.wrapper .logo:hover {
    background: rgba(30, 92, 169, 0.1);
    cursor: pointer;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.wrapper .content {
    color: #cfcfcf;
}

.wrapper .content>h1 {
    text-transform: uppercase;
    font-style: normal;
    font-size: 45px;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}

.wrapper .content>h1 .color {
    color: #fcac45;
}

.wrapper .content>p {
    color: #fff;
    font-size: 28px;
    text-align: center;
}

@media (max-width: 500px) {
    .wrapper .content>h1 {
        font-size: 37px !important;
    }
    .wrapper .content>p {
        font-size: 20px !important;
    }
}

.wrapper .entry {
    position: relative;
    height: auto;
    width: 50%;
    display: block;
    box-sizing: content-box;
    font-size: 38px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(3px);
}

.wrapper .entry:hover {
    backdrop-filter: blur(0px);
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100%);
}