@charset "utf-8";
/* CSS Document */

:root{
  --mid-gap: clamp(12px, 2.6vw, 32px);
  --mid-pad: clamp(6px, 1.2vw, 12px);
  --mid-height: clamp(36px, 5.6vh, 56px);
}

* { margin:0; padding:0; list-style-image: none;list-style-type: none;}
html{
    background-color: #000000;
    background-image: linear-gradient(to bottom, rgb(0 0 0 / 20%) 0%, rgb(0 0 0 / 70%) 100%),var(--bg);/*url(./65401b0737526.webp);*/
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

img { border:none;}
.fix {clear:both;height: 1px;font-size: 0px;}

/* 标题动画 */
@-webkit-keyframes title {
    0% {opacity: 0;-webkit-transform: translateX(60px);}
    100% {opacity: 1;-webkit-transform: translateX(0);}
}
@keyframes title {
    0% {opacity: 0;transform: translateX(60px);}
    100% {opacity: 1;transform: translateX(0);}
} 
.main {
    position: absolute;
    bottom: 8%;
    z-index: 100;
    left: 4%;
    overflow:hidden;
}
.title {
    font-weight: bold;
    font-size: 80px;
    color: #FFFFFF;
    padding-bottom: 15px;
    -webkit-animation:'title' 1.5s 1;
}

.content {
    font-size: 24px;
    color: #FFFFFF;
    padding-bottom: 15px;
    -webkit-animation:'title' 3s 1;
}

.email {
    font-size: 24px;
    color: #FFFFFF;
    padding-bottom: 15px;
    -webkit-animation:'title' 3s 1;
}
.email a,
.email a:link,
.email a:visited,
.email a:hover,
.email a:active,
.email a:focus {
    text-decoration: none !important;
    -webkit-text-decoration: none;
    outline: none;
    color: inherit;
}
.email a { -webkit-tap-highlight-color: transparent; }


.copyright {
    position: absolute;
    font-size: 20px;
    color: #FFFFFF;
    left: 4%;
    bottom: 5%;
}

.midlinks{
    position: fixed;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 150;

    display: flex;
    align-items: center;
    gap: var(--mid-gap);
    width: auto;

    padding: var(--mid-pad);
    border-radius: 0px;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(10px) saturate(120%);
    border: 1px solid rgba(255,255,255,.14);
}

.midlinks a,
.midlinks .oops{
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;

    height: var(--mid-height);
    border-radius: 10px;
    text-decoration: none;
    color: #00e09e;
    font-weight: 700;
    letter-spacing: .2px;
    font-size: clamp(14px, 1.6vw, 18px);

    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
}

.midlinks a:hover{ opacity: .92; }
.midlinks a:active{ transform: translateY(1px); }
.midlinks a:focus-visible{ outline: 2px solid rgba(255,255,255,.65); outline-offset: 2px; }

.midlinks .oops{
    flex-direction: column;
    gap: 4px;
    line-height: 1.05;
}

.midlinks .oops span{
    color: #ffb3a7;
    font-size: clamp(12px, 1.2vw, 16px);
}

.notify{
    position: fixed;
    left: 0; right: 0;
    height: 40px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(6px);
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
}

.notify--top{
    top: max(0px, env(safe-area-inset-top));
    border-bottom: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.notify--bottom{
    bottom: max(0px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 -8px 20px rgba(0,0,0,.25);
}

.notify__viewport{
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 6px 8px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.notify__track{
    display: inline-flex;
    align-items: center;
    gap: 48px;
    will-change: transform;
}

.notify__item{
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .2px;
    white-space: nowrap;
    cursor: pointer;
}

.notify__item,
.notify__item:link,
.notify__item:visited,
.notify__item:hover,
.notify__item:active,
.notify__item:focus {
    text-decoration: none;
}

.notify__item:hover { opacity: .9; }
.notify__item:focus-visible { outline: 2px solid rgba(255,255,255,.6); outline-offset: 2px; }


@media screen and (max-width: 1200px) {
    .title {
        font-size: 60px;
    }

    .content {
        font-size: 22px;
    }

    .email {
        font-size: 22px;
    }

    .copyright {
        font-size: 15px;
        bottom: 6%;
    }
    
    .midlinks{
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: clamp(10px, 2.5vw, 16px);
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,.1);
    }

    .midlinks > a,
    .midlinks > .oops{
        flex: none;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .midlinks .oops{
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
}

@media screen and (max-width: 600px) {
    html{
        background-position: 40% center;
        background-attachment: fixed;
    }

    .main {
        left: 6%;
        right: 6%;
        bottom: 7%;
    }

    .title {
        font-size: 54px;
        padding-bottom: 5px;
        font-family: PingFangSC-bold;
    }

    .content {
        font-size: 18px;
        line-height: 26px;
        font-family: PingFangSC-Light;
    }

    .email {
        font-size: 18px;
        line-height: 26px;
        font-family: PingFangSC-Light;
    }

    .copyright {
        font-size: 20px;
        left: 6%;
        bottom: 4%;
    }
}