html {
    --cursor-default: url('/资源/光标/默认.cur'), default;
    --cursor-pointer: url('/资源/光标/指针.cur'), pointer;
    --cursor-crosshair: url('/资源/光标/十字.cur'), crosshair;
}
html:active {
    --cursor-default: url('/资源/光标/指针.cur'), pointer;
    --cursor-pointer: url('/资源/光标/默认.cur'), default;
    --cursor-crosshair: url('/资源/光标/十字.cur'), crosshair;
}

#transition-container {
    position: absolute;
    z-index: 1000;
    width: 200vw;
    bottom: -100%;
    transform: rotate(20deg);
    left: -40%;
    pointer-events: none;
}
#transition-wave-svg {
    transform: translateY(20px);
}
#transition-wave-svg-bottom {
    transform: rotate(180deg) translateY(20px);
}
.hideTopTransition {
    animation: hideTopTransition ease-in 0.7s;
    animation-fill-mode: forwards;
}
@keyframes hideTopTransition {
    0% {
        bottom: -120%;
        left: -40%;
    }
    to {
        bottom: 100%;
        left: 40%;
    }
}
.showTransition {
    animation: showTransition ease-in 0.7s;
    animation-fill-mode: forwards;
}
@keyframes showTransition {
    0% {
        bottom: -450%;
        left: -60%;
    }
    to {
        bottom: -120%;
        left: -40%;
    }
}
#transition-push {
    height: 200vh;
    background: #ff923e;
}
@media (max-aspect-ratio: 12/10) {
    #transition-container {
        transform: translateY(-20%) scale(1.2) rotate(10deg);
    }
}
#overlay-container {
    position: absolute;
    height: calc(100% - 30px);
    padding: 15px 0;
    margin: 0 auto;
    right: 0;
    left: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
}
#header-container {
    position: absolute;
    top: 0;
    width: 100%;
    transition: 0.25s;
    padding-top: 15px;
    pointer-events: none;
}
.overlay-button {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    cursor: var(--cursor-pointer);
    pointer-events: auto;
}
#header-logo-svg {
    position: absolute;
    transform-origin: center center;
}
#logo-dark-background {
    background: #091434;
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 15px;
    clip-path: url(#logo-clip-path);
}
#logo-white-background {
    background: white;
    width: 200px;
}
#logo-click-container {
    height: 53px;
    width: 49px;
    position: absolute;
    cursor: var(--cursor-pointer);
    pointer-events: auto;
    transform-origin: top left;
}
#sound-button {
    right: 62px;
}
#header-sound-svg {
    height: 48px;
    width: 48px;
    transform: translate(12px) scale(1.2);
}
#sound-button-scale-container {
    transform-origin: top right;
    position: relative;
}
#menu-button {
    right: 0;
}
.menu-button-bar {
    width: 26px;
    height: 4px;
    background: white;
    margin: 2.5px;
    border-radius: 2px;
}
#menu-button-scale-container {
    transform-origin: top right;
}
.scroll-container {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.scroll-border-container {
    width: 24px;
    height: 38px;
    border: 3px solid #091434;
    border-radius: 12px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}
.scroll-wheel {
    background: #091434;
    width: 4px;
    height: 11px;
    border-radius: 2px;
    margin-top: 4px;
}
.scroll-touch-icon {
    height: 38px;
    width: 38px;
}
@media (max-width: 800px), (max-height: 800px) {
    #scroll-icon,
    #menu-button-scale-container,
    #sound-button-scale-container,
    .scroll-container,
    #logo-clip-path,
    #logo-click-container {
        transform: scale(0.9);
    }
    #sound-button {
        right: 64px;
    }
}
@media (max-width: 550px), (max-height: 550px) {
    #scroll-icon,
    #menu-button-scale-container,
    #sound-button-scale-container,
    .scroll-container,
    #logo-clip-path,
    #logo-click-container {
        transform: scale(0.8);
    }
    #sound-button {
        right: 60px;
    }
}
#landing-page {
    height: 100%;
    width: 100%;
    top: 0;
    position: absolute;
}
#landing-page-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: calc(100% - 30px);
    left: 0;
    position: relative;
}
#landing-content-svg {
    width: 550px;
    max-width: 45%;
    max-height: 53%;
    position: relative;
}
.landing-headline {
    transform-origin: left;
    font-size: 64px;
    font-weight: 600;
    fill: #091434;
    letter-spacing: -0.5px;
}
.landing-subheading {
    font-size: 17px;
    fill: #7c8594;
    transform-origin: left;
}
@media (max-aspect-ratio: 12/10) {
    #landing-content-svg {
        max-width: 94%;
        max-height: 80%;
    }
    #landing-page {
        align-items: flex-start;
        padding-top: 45px;
        background-image: linear-gradient(180deg, #f5efe6 45%, transparent 50%);
    }
    #landing-page-section {
        max-height: 40vh;
        justify-content: center;
        align-items: center;
        position: unset;
    }
}
#scroll-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
}
.scroll-container-transitions {
    transition: left 0.9s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.7s cubic-bezier(0.6, 0, 0.4, 1);
}
#hover-icon-color-switch {
    position: absolute;
    width: 300%;
    height: 50%;
    top: 0;
}
#about-section {
    justify-content: flex-start;
    align-items: center;
    font-family: 像素字体, sans-serif;
    color: #34bfff;
    min-height: 100vh;
    padding-bottom: 90px;
}
#about-content-container {
    width: 580px;
    max-width: 45%;
    display: flex;
    flex-direction: column;
}
#about-content-container span {
    color: #34bfff;
}
#skills-svg {
    margin-top: 120px;
    width: 100%;
}
.about-box-line {
    fill: none;
    stroke: #00b7ff;
    stroke-width: 2;
}
.about-up-animation-line,
.about-down-animation-line {
    fill: none;
    stroke: #00b7ff;
    opacity: 0;
    stroke-width: 2;
}
.about-box-background {
    stroke-width: 0;
    fill: url(#about-background-gradient);
}
.about-header {
    font-weight: 700;
    font-size: 18px;
    fill: #34bfff;
}
.about-text {
    font-weight: 700;
    font-size: 15px;
    fill: #34bfff;
}
#about-skills-container {
    padding: 10px 0;
    font-weight: 700;
    font-size: 16px;
}
#about-skills-render-container :nth-child(even),
#about-others-render-container :nth-child(odd) {
    background: #2d88dd18;
}
.about-skill-container {
    height: 100%;
    box-sizing: border-box;
    padding: 6px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-skill-container span {
    width: 250px;
    background: transparent !important;
}
.about-skill-bar-container {
    width: 100%;
    height: 11px;
    background: #00b7ff33 !important;
    overflow: auto;
}
.about-skill-bar {
    height: 100%;
    background: linear-gradient(to right, #2d88dd, #34bfff) !important;
    width: 30%;
}
#about-svg-about image {
    image-rendering: pixelated;
    opacity: 0.9;
}
.about-pixel-mask-rect {
    fill: #fff;
}
@media (max-aspect-ratio: 12/10) {
    #about-section {
        justify-content: center;
        padding-bottom: 3vh;
    }
    #about-content-container {
        max-width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
    }
    #skills-svg {
        margin-top: 63vh;
        margin-bottom: 90px;
    }
}
.landing-slow-transition {
    transition: top 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.slide-out-left-transition {
    transition: left 0.9s cubic-bezier(0.6, 0, 0.4, 1), right 0.9s cubic-bezier(0.6, 0, 0.4, 1);
}
#work-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 3vh;
    position: relative;
    min-height: 100vh;
    width: 100%;
}
#work-content {
    position: relative;
    padding: 90px 0;
    box-sizing: border-box;
    margin-top: 20px;
    justify-content: flex-start;
}
#work-background {
    box-shadow: 0 30px 70px #93683310;
    background: #f5efe6;
    width: 300%;
    height: 100%;
    position: absolute;
    z-index: -1;
}
#work-render-container {
    position: relative;
    width: 350px;
    height: 570px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    margin: 80px auto 0;
}
.work-item-container {
    background: white;
    height: 100%;
    position: absolute;
    padding: 2px;
    border-radius: 20px;
    width: 100%;
    overflow: hidden;
}
.work-item-container-transition {
    transition: transform 0.4s ease-in-out, opacity 0.35s ease-in-out, filter 0.35s ease-in-out;
}
.work-inactive-item-container {
    opacity: 0.7 !important;
    filter: grayscale(0.5) !important;
    cursor: var(--cursor-pointer);
}
.work-inactive-item-container * {
    cursor: var(--cursor-default) !important;
    pointer-events: none;
}
.work-inactive-item-container:hover {
    border: 2px solid #7c8594;
    padding: 0;
}
.work-item-image {
    width: calc(100% - 16px);
    margin: 8px 8px 5px;
    object-fit: cover;
    min-height: 300px;
    border-radius: 13px;
}
.work-item-content-container {
    padding: 8px 16px;
    box-sizing: border-box;
    flex: 1;
}
.work-item-content-container a {
    text-decoration: underline;
}
.work-item-tag-container {
    margin-top: 5px;
    margin-bottom: 15px;
    max-width: 100%;
    flex-wrap: wrap;
}
.work-item-tag {
    font-size: 0.65rem;
    padding: 1px 7px;
    margin-right: 5px;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}
.work-item-button-container {
    margin: 8px;
}
.work-item-orange-button {
    width: 100%;
    padding: 9px !important;
    margin-left: 8px;
}
.work-item-gray-button {
    padding: 8px 14px;
    color: #fff;
    border-radius: 13px;
    font-weight: 600;
    font-size: 1rem;
    cursor: var(--cursor-pointer);
}
.work-item-gray-button .code-icon {
    fill: #fff;
    height: 28px;
    width: 28px;
}
.work-item-gray-button span {
    color: #fff;
    margin-left: 10px;
}
.work-banner-container {
    height: 50px;
    width: 300px;
    background-color: #ffcb00;
    position: absolute;
    transform: rotate(-45deg) translate(-92px, -30px);
}
.work-banner-container span {
    color: #091434;
    font-weight: 500;
    line-height: 1.3;
    font-size: 15px;
}
.work-banner-container img {
    height: 30px;
    width: 30px;
    margin-right: 12px;
}
#work-navigation-container {
    margin-top: 50px;
    margin-bottom: 20px;
}
.work-navigation-button {
    height: 54px;
    width: 54px;
    border-radius: 50%;
    margin: 20px 20px 0;
    cursor: var(--cursor-pointer);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s !important;
}
.work-disabled-navigation-button {
    background: #a7adb8 !important;
    cursor: var(--cursor-default) !important;
}
.work-disabled-navigation-button:hover {
    background: #a7adb8 !important;
}
@media (max-aspect-ratio: 12/10) {
    #work-content {
        align-items: center;
        justify-content: center;
    }
    #work-header-container {
        width: 580px;
        max-width: 100%;
    }
}
@media (max-width: 480px) {
    .work-inactive-item-container {
        opacity: 0;
    }
}
#contact-section {
    align-items: flex-start;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 0;
    box-sizing: border-box;
}
#contact-container {
    margin-top: 40px;
    padding: 10px;
    border-radius: 20px;
    background: white;
    width: 540px;
    max-width: 45%;
    height: 560px;
    max-height: 90vh;
    box-sizing: border-box;
}
#contact-container input,
textarea {
    border: none;
    font-size: 1.1rem;
    font-family: cursive, sans-serif;
    background: transparent !important;
    font-weight: 500;
    color: #111029;
    resize: none;
    cursor: var(--cursor-crosshair);
}
#contact-container input:focus,
textarea:focus {
    outline: none;
    border: none;
}
#contact-message-input {
    flex: 1;
}
#contact-container textarea,
.contact-container {
    height: 100%;
}
.input-container {
    width: 100%;
    box-sizing: border-box;
    background: #f5f5f5;
    color: #acacac;
    border-radius: 13px;
    padding: 7px 7px 7px 15px;
    border: 2px solid #f5f5f5;
}
.input-container:focus-within {
    border: 2px solid #c7c7c7;
}
.input-container label,
.input-container span {
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 10px;
}
#contact-name-input,
#contact-email-input {
    margin-bottom: 20px;
}
#contact-email-input-field {
    outline: 0;
    border: none;
    font-size: 1.1rem;
    font-family: cursive, sans-serif;
    background: transparent !important;
    font-weight: 500;
    color: #111029;
    resize: none;
    cursor: var(--cursor-crosshair);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
#contact-email-input-field option {
    cursor: var(--cursor-pointer);
    background-color: #e5e5e5;
    color: #515151;
}
#contact-button-container {
    margin-top: 20px;
    display: flex;
    align-items: center;
}
#contact-button-container .small-button {
    margin-left: auto;
    font-size: 1rem;
}
#contact-button-container .social-icon {
    margin: 0 8px;
}
.error-label {
    color: #d85454;
}
.error-container {
    background: #ffdbdb;
    border-color: #f0caca;
}
#contact-result-message-container {
    margin-bottom: auto;
}
#contact-result-message-container h4 {
    text-align: center;
    margin: 3px;
}
#contact-result-message-container span {
    font-size: 1rem;
    text-align: center;
    margin: 3px;
}
#contact-result-container svg {
    margin-top: auto;
    margin-bottom: 50px;
    height: 90px;
    min-height: 90px;
}
#contact-result-container polyline,
line {
    fill: none;
    stroke-width: 15;
}
#contact-result-button {
    font-size: 1rem;
}
@media (max-aspect-ratio: 12/10) {
    #contact-section {
        margin-top: 10vh;
        align-items: center;
        justify-content: flex-start;
        height: fit-content;
        margin-bottom: 80vh;
        padding: 0;
        min-height: unset;
    }
    #contact-header-container {
        width: 580px;
        max-width: 100%;
    }
    #contact-container {
        max-width: 100%;
        width: 580px;
    }
}
@media (max-width: 360px), (max-width: 800px) and (min-aspect-ratio: 12/10) {
    #contact-button-container .social-icon {
        margin: 0 4px;
        width: 24px;
        height: 24px;
    }
}
@media (max-width: 360px), (max-width: 700px) and (min-aspect-ratio: 12/10) {
    #contact-button-container .social-icon {
        display: none;
    }
}
#hover-icon {
    position: absolute;
    border-radius: 50%;
    border-style: solid;
    top: 0;
    left: 0;
    z-index: 999;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: height 0.2s, width 0.2s, border-color 0.2s, border-width 0.2s;
    opacity: 0;
}
.clickCTA:after {
    content: '点击启动声音';
    line-height: 17px;
    white-space: pre-wrap;
    text-align: center;
    min-width: 200px;
    position: relative;
    top: 50px;
    color: #7c8594;
    font-size: 0.8rem;
}
.hover-spread {
    height: 16px;
    min-width: 16px;
    background: #ff923e;
    position: absolute;
    opacity: 0.1;
    border-radius: 50%;
}
#menu-container {
    position: absolute;
    right: 0;
    width: calc(300px + (100vw - 90rem) / 2);
    height: 100%;
    background: white;
    z-index: 2;
    max-width: 45vw;
    box-sizing: border-box;
    padding: 50px 50px 70px;
}
#menu-content-container {
    position: relative;
    height: 100%;
    width: 240px;
}
#dzly-content-container {
    width: 100%;
    height: 100%;
    padding-top: 1rem;
    display: none;
    flex-direction: column;
}
#dzly-content-container .dzly-container-header {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
}
#dzly-content-container .dzly-container-header span {
    font-weight: bold;
    color: #67bafd;
}
#dzly-content-container .dzly-container-header img {
    user-select: none;
    background-color: transparent;
    margin-left: 0.2rem;
    transform: scaleX(-1);
    position: relative;
    top: -0.25rem;
}
#dzly-content-container .dzly-container-body {
    /* background-color: #f9f9f980; */
    color: #444;
    border-radius: 8px;
    padding: 0.5rem 0.4rem;
    overflow: hidden;
    overflow-y: auto;
    flex: 1;
    height: 300px;
    font-family: cursive, sans-serif;
}
#dzly-content-container .dzly-container-body > div {
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    border: 1px solid #f1f5f9;
    border-radius: 0.5rem;
    transition: all;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}
#dzly-content-container .dzly-container-body > div:hover {
    scale: 1.02;
}
#dzly-content-container .dzly-container-body > div:hover > div:nth-child(2) {
    color: #5590ff99;
}
#dzly-content-container .dzly-container-body > div:hover > div:nth-child(3) {
    color: #7a55ff99;
}
#dzly-content-container .dzly-container-body > div > div:nth-child(1) {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0.25rem;
}
#dzly-content-container .dzly-container-body > div > div:nth-child(1) > img {
    margin-right: 0.5rem;
}
.rainbow-text1 {
    background-image: linear-gradient(
        to right,
        rgba(255, 0, 0, 0.6),
        rgba(255, 165, 0, 0.6),
        rgba(255, 191, 0, 0.6),
        rgba(0, 128, 0, 0.6),
        rgba(0, 0, 255, 0.6),
        rgba(75, 0, 130, 0.6),
        rgba(238, 130, 238, 0.6)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.rainbow-text2 {
    background-image: linear-gradient(to right, rgba(0, 253, 255, 0.6), rgba(0, 128, 0, 0.6), rgba(0, 159, 255, 0.6));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
#dzly-content-container .dzly-container-body > div > div:nth-child(2) {
    color: #44444499;
    font-size: 0.8rem;
    user-select: text;
}
#dzly-content-container .dzly-container-body > div > div:nth-child(3) {
    color: #66666666;
    font-size: 0.6rem;
    text-align: end;
}
#dzly-content-container .dzly-container-footer {
    position: relative;
    top: 1rem;
    padding: 0.5rem;
    outline: 1px solid #6366f1;
    border-radius: 0.5rem;
}
#dzly-content-container .dzly-container-footer:focus,
#dzly-content-container .dzly-container-footer:hover {
    outline: 2px solid #6366f1;
}
#dzly-content-container .dzly-container-footer textarea {
    appearance: none;
    user-select: none;
    width: 100%;
    resize: none;
    font-size: 0.875rem;
    line-height: 1.125rem;
    color: #111827;
}
#dzly-content-container .dzly-container-footer img {
    position: absolute;
    bottom: 0.2rem;
    right: 0.2rem;
    border-radius: 50%;
    cursor: var(--cursor-pointer);
    opacity: 1;
}
#dzly-content-container .dzly-container-footer img.disabled {
    cursor: not-allowed;
    opacity: 0.8;
}
#menu-items-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.menu-items-column-container {
    width: 100%;
}
.menu-item {
    border-radius: 15px;
    margin: 15px 0;
    font-weight: 600;
    font-size: 1.8rem;
    width: fit-content;
    color: #091434;
    cursor: var(--cursor-pointer);
}
.active-menu-item {
    position: relative;
}
.active-menu-item {
    cursor: var(--cursor-default) !important;
    transform: translate(28px);
}
.active-menu-item:after {
    position: absolute;
    height: 14px;
    width: 14px;
    display: flex;
    border-radius: 50%;
    content: '';
    color: #fff;
    background: #ff923e;
    left: -10px;
    top: 50%;
    transform: translate(-16px, -50%);
}
#menu-container .social-icon {
    margin-right: 15px;
}
#music-credit-container {
    margin-bottom: 10px;
}
#music-credit-container a,
#music-credit-container span {
    font-size: 0.9rem;
    color: #7c8594;
}
#music-credit-container a:hover {
    text-decoration: underline;
}
@media (max-aspect-ratio: 12/10) {
    #menu-container {
        right: -100%;
        width: 100% !important;
        max-width: unset;
        align-items: center;
    }
    .menu-items-column-container {
        align-items: center;
    }
    #menu-social-container,
    #music-credit-container {
        justify-content: center;
    }
    .active-menu-item:after {
        position: absolute;
        height: 3px;
        margin: 0 auto;
        content: '';
        background: #ff923e;
        width: 100%;
        bottom: -2px;
        left: 0;
        transform: translateY(16px);
        border-radius: 0;
    }
    .active-menu-item {
        transform: unset;
    }
}
@media (max-height: 600px) {
    .menu-item {
        font-size: 1.3rem;
        margin: 10px 0;
    }
    #menu-container .social-icon {
        height: 24px;
        width: 24px;
    }
    #menu-container hr {
        margin: 15px 0;
    }
    #music-credit-container a,
    #music-credit-container span {
        font-size: 12px;
    }
    .menu-items-column-container {
        justify-content: center;
    }
}
@media (max-height: 450px) {
    #menu-items-container {
        flex-direction: row;
    }
    #menu-container {
        padding: 30px 30px 45px;
    }
}
#intro-container {
    z-index: 998;
    background: #f5efe6;
    height: 100%;
    width: 100%;
    position: absolute;
    cursor: wait;
}
footer {
    margin-bottom: 20px;
    letter-spacing: 1px;
}

footer .puzzle-guzzle {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.8;
    scale: 0.5;
    position: relative;
    opacity: 0;
    transition: opacity 1.6s linear;
    /* top: -2rem; */
}

footer .footer-enjoy-today {
    color: white;
    text-align: center;
    font-family: initial;
    text-shadow: 1px 0 0 #9ca3af, -1px 0 0 #9ca3af, 0 1px 0 #9ca3af, 0 -1px 0 #9ca3af, 1px 1px 0 #9ca3af, -1px 1px 0 #9ca3af, 1px -1px 0 #9ca3af, -1px -1px 0 #9ca3af;
}
footer .footer-info {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 0.6rem;
    margin-top: 1.25rem;
    text-shadow: 1px 0 0 #9ca3af, -1px 0 0 #9ca3af, 0 1px 0 #9ca3af, 0 -1px 0 #9ca3af, 1px 1px 0 #9ca3af, -1px 1px 0 #9ca3af, 1px -1px 0 #9ca3af, -1px -1px 0 #9ca3af;
}
footer .footer-info > div:first-child {
    margin-right: 0.4rem;
}
footer .footer-info > div:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0rem;
}
footer .footer-info > div:last-child a {
    color: white;
    padding: 0.1rem 0.5rem;
    border-radius: 0.5rem;
}
footer .footer-info > div:last-child a:hover {
    color: #ffbb00;
    background-color: #004cbd33;
}

@media (max-width: 767px) {
    footer .footer-info {
        display: block;
    }
    footer .footer-info > div:last-child {
        margin-top: 0.2rem;
    }
}

* {
    margin: 0;
    padding: 0;
}
html,
body {
    height: 100%;
    overflow: hidden;
}
#main-canvas {
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
    max-width: 100%;
    max-height: 100%;
    pointer-events: all;
}
body {
    font-family: 字体, sans-serif;
    color: #091434;
    position: relative;
    display: flex;
    justify-content: center;
    cursor: var(--cursor-default);
}
.content-width {
    width: 92rem;
    max-width: calc(100% - 60px);
}
.hide {
    display: none !important;
}
.pointer {
    cursor: var(--cursor-pointer);
}
.center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.row {
    display: flex;
    flex-direction: row;
}
.column {
    display: flex;
    flex-direction: column;
}
.width-100 {
    width: 100%;
}
.height-100 {
    height: 100%;
}
.no-transition {
    transition: none !important;
}
h1 {
    font-size: 4.3rem;
    font-family: 字体, sans-serif;
    line-height: 1.16667;
    font-weight: 600;
    letter-spacing: -0.5px;
}
h3 {
    font-size: 1.6rem;
    font-weight: 600;
}
h4 {
    font-size: 1.4rem;
    font-weight: 600;
}
h5 {
    color: #ff923e;
    font-size: 1.2rem;
    font-weight: 500;
}
span {
    color: #7c8594;
    font-size: 1rem;
}
a {
    cursor: var(--cursor-pointer) !important;
    text-decoration: none;
    color: inherit;
}
hr {
    height: 2px;
    width: 100%;
    background-color: #f0f0f0;
    margin: 25px 0;
    border: none;
}
.section-subheader-container {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.section-subheader-container hr {
    width: 40px;
    background-color: #ff923e;
    margin: 0 20px 0 0;
}
::-moz-selection {
    color: #343352;
    background: #93683327;
}
::selection {
    color: #343352;
    background: #9368332a;
}
.big-button {
    padding: 13px 34px;
    border-radius: 26px;
    cursor: var(--cursor-pointer);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    width: max-content;
}
.small-button {
    padding: 9px 36px;
    color: #fff;
    border-radius: 13px;
    font-weight: 600;
    font-size: 1rem;
    cursor: var(--cursor-pointer);
}
.orange-hover {
    background-color: #ff923e;
    background-image: radial-gradient(circle at center, #ff9b4f 50%, transparent 50%);
    background-repeat: no-repeat;
    transition: background-size 0.3s;
    background-size: 0 0;
    background-position: 50% 50%;
}
.orange-hover:hover {
    background-size: 200% 200%;
}
.gray-hover {
    background-color: #b9bbbe;
    background-image: radial-gradient(circle at center, #caccce 50%, transparent 50%);
    background-repeat: no-repeat;
    transition: background-size 0.3s;
    background-size: 0 0;
    background-position: 50% 50%;
}
.gray-hover:hover {
    background-size: 200% 200%;
}
.social-icon {
    cursor: var(--cursor-pointer);
    filter: grayscale(1) brightness(8);
    transition: 0.125s ease-in;
}
.social-icon:hover {
    filter: unset;
    transform: scale(1.05);
}
section {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.content-container {
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-aspect-ratio: 12/10) {
    .content-width {
        max-width: calc(100% - 30px);
    }
}
@media (max-width: 800px), (max-height: 800px) {
    h1 {
        font-size: 3.8rem;
    }
}
@media (max-width: 480px), (max-height: 480px) {
    h1 {
        font-size: 3rem;
    }
}

/* 禁止复制拖动,去除蓝色背景 */
* {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    -moz-user-drag: none;
    -moz-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

@font-face {
    font-family: 像素字体;
    font-style: normal;
    font-weight: normal;
    src: url(/资源/字体/像素字体.ttf) format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 字体;
    font-style: normal;
    font-weight: normal;
    src: url(/资源/字体/字体.ttf) format('truetype');
    font-display: swap;
}

/* 点击特效样式 */
.click-heart {
    width: 10px;
    height: 10px;
    position: fixed;
    background: #f00;
    transform: rotate(45deg);
    z-index: 99999;
}

.click-heart:after,
.click-heart:before {
    content: '';
    width: inherit;
    height: inherit;
    background: inherit;
    border-radius: 50%;
    position: fixed;
}

.click-heart:after {
    top: -5px;
    left: 0;
}

.click-heart:before {
    top: 0;
    left: -5px;
}

/*滚动条 1*/
.scrollbar1::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.scrollbar1::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}
.scrollbar1::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
}
.scrollbar1-1::-webkit-scrollbar-thumb {
    background-color: rgba(85, 85, 85, 0.8);
    border-radius: 5px;
}
.scrollbar1-2::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.01);
    box-shadow: inset 0px 0px 0px 2px #ffffff;
    border-radius: 5px;
}
.scrollbar1-2::-webkit-scrollbar-thumb {
    background-color: #c8c8c899;
    box-shadow: inset 0px 0px 0px 1px #ffffff;
    border-radius: 5px;
}

/*滚动条 2*/
.scrollbar2::-webkit-scrollbar {
    width: 1px;
    height: 1px;
}
.scrollbar2::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.25);
}
.scrollbar2::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.8);
}

/*滚动条 3*/
.scrollbar3::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.scrollbar3::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 5px;
}
.scrollbar3::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}

/*滚动条 4*/
.scrollbar4::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.scrollbar4::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: inset 0px 0px 0px 2px #78addf;
    border-radius: 5px;
}
.scrollbar4::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 5px;
}
.scrollbar4-1::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: inset 0px 0px 0px 2px #ffffff;
    border-radius: 5px;
}
.scrollbar4-1::-webkit-scrollbar-thumb {
    background-color: rgb(200, 200, 200);
    border-radius: 5px;
}

/*滚动条 5*/
.scrollbar5::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.scrollbar5::-webkit-scrollbar-track {
    background-color: #4f4f4f;
    border-radius: 5px;
}
.scrollbar5::-webkit-scrollbar-thumb {
    background-color: #ba605e;
    border-radius: 5px;
}

/* 猫对话样式 */
.yyl-widget-dialog-container {
    width: 300px;
    height: 120px;
    position: absolute;
    bottom: 65%;
    right: 0;
    transform-origin: right;
    padding: 12px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

.yyl-widget-dialog {
    width: 100%;
    height: 100%;
    color: #917159;
    font-size: 16px;
    padding: 12px;
    border: 2px solid rgb(236, 203, 180);
    background: rgb(252, 248, 244);
    box-sizing: border-box;
    border-radius: 10px;
    transform: rotate(-2deg);
    opacity: 0;
    transition: 200ms opacity;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 6px, rgba(0, 0, 0, 0.12) 0px 1px 4px;
    animation: yyl-widget-dialog-tingle 4s ease-in-out infinite alternate;
}

@keyframes yyl-widget-dialog-tingle {
    0% {
        transform: translate(-1px, 1.5px) rotate(-2deg);
    }
    100% {
        transform: translate(1px, -1.5px) rotate(2deg);
    }
}

/* 转动方块 */
.puzzle-guzzle-box {
    width: 200px;
    height: 200px;
    /* position: absolute;
    top: calc(50% - 100px);
    left: calc(50% - 100px); */
    transform-style: preserve-3d;
    transform: rotateX(13deg);
    animation: puzzle_guzzle_move 5s linear infinite;
    -webkit-transform-style: preserve-3d;
    -webkit-transform: rotateX(13deg);
    -webkit-animation: puzzle_guzzle_move 5s linear infinite;
    animation-play-state: paused;
}
.puzzle-guzzle-box li {
    list-style: none;
}
.puzzle-guzzle-box .puzzle-guzzle-minbox {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50px;
    top: 50px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}
.puzzle-guzzle-box .puzzle-guzzle-minbox li {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 0;
    top: 0;
}
.puzzle-guzzle-box .puzzle-guzzle-minbox li:nth-child(1) {
    background: url('/资源/图像/佚名程序员/01.png') no-repeat 0 0;
    transform: translateZ(50px);
    -webkit-transform: translateZ(50px);
}
.puzzle-guzzle-box .puzzle-guzzle-minbox li:nth-child(2) {
    background: url('/资源/图像/佚名程序员/03.png') no-repeat 0 0;
    transform: rotateX(180deg) translateZ(50px);
    -webkit-transform: rotateX(180deg) rotateZ(180deg) translateZ(50px);
}
.puzzle-guzzle-box .puzzle-guzzle-minbox li:nth-child(3) {
    background: url('/资源/图像/佚名程序员/05.png') no-repeat 0 0;
    transform: rotateX(0deg) translateZ(0px);
    -webkit-transform: rotateX(-90deg) rotateZ(90deg) translateZ(50px);
}
.puzzle-guzzle-box .puzzle-guzzle-minbox li:nth-child(4) {
    background: url('/资源/图像/佚名程序员/06.png') no-repeat 0 0;
    transform: rotateX(90deg) translateZ(50px);
    -webkit-transform: rotateX(90deg) translateZ(50px);
}
.puzzle-guzzle-box .puzzle-guzzle-minbox li:nth-child(5) {
    background: url('/资源/图像/佚名程序员/02.png') no-repeat 0 0;
    transform: rotateY(-90deg) translateZ(50px);
    -webkit-transform: rotateY(-90deg) translateZ(50px);
}
.puzzle-guzzle-box .puzzle-guzzle-minbox li:nth-child(6) {
    background: url('/资源/图像/佚名程序员/04.png') no-repeat 0 0;
    transform: rotateY(90deg) translateZ(50px);
    -webkit-transform: rotateY(90deg) translateZ(50px);
}
.puzzle-guzzle-box .puzzle-guzzle-maxbox {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 0;
    top: 0;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}
.puzzle-guzzle-box .puzzle-guzzle-maxbox li {
    width: 200px;
    height: 200px;
    /* background: #ffffff80;
    border: 1px solid #999; */
    background: #ffffffcc;
    border: 1px solid #888888;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.2;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
}
.puzzle-guzzle-box .puzzle-guzzle-maxbox li:nth-child(1) {
    transform: translateZ(100px);
    -webkit-transform: translateZ(100px);
}
.puzzle-guzzle-box .puzzle-guzzle-maxbox li:nth-child(2) {
    transform: rotateX(180deg) translateZ(100px);
    -webkit-transform: rotateX(180deg) translateZ(100px);
}
.puzzle-guzzle-box .puzzle-guzzle-maxbox li:nth-child(3) {
    transform: rotateX(-90deg) translateZ(100px);
    -webkit-transform: rotateX(-90deg) translateZ(100px);
}
.puzzle-guzzle-box .puzzle-guzzle-maxbox li:nth-child(4) {
    transform: rotateX(90deg) translateZ(100px);
    -webkit-transform: rotateX(90deg) translateZ(100px);
}
.puzzle-guzzle-box .puzzle-guzzle-maxbox li:nth-child(5) {
    transform: rotateY(-90deg) translateZ(100px);
    -webkit-transform: rotateY(-90deg) translateZ(100px);
}
.puzzle-guzzle-box .puzzle-guzzle-maxbox li:nth-child(6) {
    transform: rotateY(90deg) translateZ(100px);
    -webkit-transform: rotateY(90deg) translateZ(100px);
}
.puzzle-guzzle-box:hover ol li {
    transform: translateZ(300px);
    -webkit-transform: translateZ(300px);
}
.puzzle-guzzle-box:hover ol li:nth-child(1) {
    transform: translateZ(300px);
    -webkit-transform: translateZ(300px);
}
.puzzle-guzzle-box:hover ol li:nth-child(2) {
    transform: rotateX(180deg) translateZ(300px);
    -webkit-transform: rotateX(180deg) translateZ(300px);
}
.puzzle-guzzle-box:hover ol li:nth-child(3) {
    transform: rotateX(-90deg) translateZ(300px);
    -webkit-transform: rotateX(-90deg) translateZ(300px);
}
.puzzle-guzzle-box:hover ol li:nth-child(4) {
    transform: rotateX(90deg) translateZ(300px);
    -webkit-transform: rotateX(90deg) translateZ(300px);
}
.puzzle-guzzle-box:hover ol li:nth-child(5) {
    transform: rotateY(-90deg) translateZ(300px);
    -webkit-transform: rotateY(-90deg) translateZ(300px);
}
.puzzle-guzzle-box:hover ol li:nth-child(6) {
    transform: rotateY(90deg) translateZ(300px);
    -webkit-transform: rotateY(90deg) translateZ(300px);
}
@keyframes puzzle_guzzle_move {
    0% {
        transform: rotateX(13deg) rotateY(0deg);
        -webkit-transform: rotateX(13deg) rotateY(0deg);
    }
    100% {
        transform: rotateX(13deg) rotateY(360deg);
        -webkit-transform: rotateX(13deg) rotateY(360deg);
    }
}
