<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --html-font-size: 100px;    
    --font-size-footer: 0.14rem; /* footer瀛椾綋澶у皬 */
    --font-size-default: 0.16rem; /* 榛樿瀛椾綋澶у皬 */
    --font-menu-lv1: 0.2rem; /* 涓€绾ц彍鍗曞瓧浣撳ぇ灏� */
    --font-menu-lv2: 0.16rem; /*  浜岀骇鑿滃崟瀛椾綋澶у皬 */
    --font-color-title: #000; /* 鏍囬瀛椾綋榛樿棰滆壊 */
    --font-color-default: #666; /* 瀛椾綋榛樿棰滆壊 */
    --header-footer-bgcolor: #075cac; /* 澶撮儴搴曢儴鑳屾櫙鑹� */
    --header-height: 1.51rem; /* 澶撮儴楂樺害 */
    --footer-height: 1.05rem; /* 搴曢儴楂樺害 */
}
@media (max-width: 1280px) {
    :root {
        --html-font-size: 13.333333333333334vw;
        --font-size-footer: 0.2rem; /* footer瀛椾綋澶у皬 */
        --font-size-default: 0.25rem; /* 榛樿瀛椾綋澶у皬 */
        --font-menu-lv1: 0.35rem; /* 涓€绾ц彍鍗曞瓧浣撳ぇ灏� */
        --font-menu-lv2: 0.26rem; /*  浜岀骇鑿滃崟瀛椾綋澶у皬 */
        --font-color-default: #444444; /* 瀛椾綋榛樿棰滆壊 */
        --header-footer-bgcolor: #075cac; /* 澶撮儴搴曢儴鑳屾櫙鑹� */
        --header-height: 1.2rem; /* 澶撮儴楂樺害 */
        --footer-height: 1.26rem; /* 搴曢儴楂樺害 */
    }
}

/* 鍔ㄧ敾寤惰繜鏃堕棿 */
.animate-delay-200 {
    animation-delay: 0.2s;
}
.animate-delay-400 {
    animation-delay: 0.4s;
}
.animate-delay-600 {
    animation-delay: 0.6s;
}
.animate-delay-800 {
    animation-delay: 0.8s;
}
.animate-delay-1000 {
    animation-delay: 1s;
}
.animate-delay-1200 {
    animation-delay: 1.2s;
}
.animate-delay-1400 {
    animation-delay: 1.4s;
}
.animate-delay-1600 {
    animation-delay: 1.6s;
}
.animate-delay-1800 {
    animation-delay: 1.8s;
}
.animate-delay-2000 {
    animation-delay: 2s;
}

/* 鍔ㄧ敾鎵ц鏃堕棿 */
.animate-duration-200 {
    animation-duration: 0.2s;
}
.animate-duration-400 {
    animation-duration: 0.4s;
}
.animate-duration-600 {
    animation-duration: 0.6s;
}
.animate-duration-800 {
    animation-duration: 0.8s;
}
.animate-duration-1000 {
    animation-duration: 1s;
}
.animate-duration-1200 {
    animation-duration: 1.2s;
}
.animate-duration-1400 {
    animation-duration: 1.4s;
}
.animate-duration-1600 {
    animation-duration: 1.6s;
}
.animate-duration-1800 {
    animation-duration: 1.8s;
}
.animate-duration-2000 {
    animation-duration: 2s;
}

/* 鍔ㄧ敾鍓嶇殑闅愯棌 */
.animate-fade-before {
    opacity: 0;
}

/* 浠庝笂娓愬叆鏁堟灉 */
.animate-fade-in-top {
    animation: fadeInTop 0.8s ease-in-out forwards;
}
@keyframes fadeInTop {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 浠庝笅娓愬叆鏁堟灉 */
.animate-fade-in-bottom {
    animation: fadeInBottom 0.5s ease-in-out forwards;
}
@keyframes fadeInBottom {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 浠庡乏娓愬叆鏁堟灉 */
.animate-fade-in-left {
    animation: fadeInLeft 0.5s ease-in-out forwards;
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 浠庡彸娓愬叆鏁堟灉 */
.animate-fade-in-right {
    animation: fadeInRight 0.5s ease-in-out forwards;
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

</pre></body></html>