<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS code in style.css file */

.STYLE1 {
font-size: 18px;
font-family: 鍗庢枃妤蜂綋;
font-weight: bold;
text-indent: 2em;
text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
.STYLE2 {
font-size: 20px;
font-family: 鍗庢枃琛屾シ;
font-weight: bold;
text-indent: 2em;
color: #B000FF;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.STYLE4 {
font-size: 18px;
font-family: 鍗庢枃妤蜂綋;
text-indent: 2em;
color: #000000;
font-weight: bold;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.STYLE5 {
font-size: 18px;
font-family: 鍗庢枃妤蜂綋;
text-indent: 2em;
color: #0000FF;
font-weight: bold;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.STYLE3 {font-size: small}
.hr3 {
    width: 80%;
    margin: 0 auto;
    border: 1;
    height: 4px;	
    background: #0000FF;
    background-image: linear-gradient(to right, red, #333, rgb(9, 206, 91));
}
.hr4  {
     windth:80%;
     margin:0 auto;
    border:0;
    height:4px;	
    background-image: linear-gradient(to right,rgba(0,0,0,0),rgba(0,0,0,75),rgba(0,0,0,0),);
	}
.hr2 {
    position: relative;
    width: 80%;
    margin: 0 auto;
    border: 0;
    height: 4px;
    overflow: hidden;
}

.hr2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background-image: linear-gradient(to right, #FF00ff 0%, #FF00ff 10%, transparent 10%, transparent 20%);
    background-size: 20px 100%;
    background-repeat: repeat-x;
    animation: slide 2s infinite linear;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}
.hr6 {
    position: relative;
    width: 80%;
    margin: 0 auto;
    border: 0;
    height: 4px;
    overflow: hidden;
}

.hr6::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #FF00FF 0%, #FFC857 50%, transparent 50%, transparent 100%);
    background-size: 20px 100%;
    background-repeat: repeat-x;
    animation: blink 3s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.hr1 {
    position: relative;
    width: 80%;
    margin: 0 auto;
    border: 0;
    height: 4px;
    overflow: hidden;
}

.hr1::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background-image: linear-gradient(to right, #FF00ff 0%, #FF00ff 10%, transparent 10%, transparent 20%);
    background-size: 20px 100%;
    background-repeat: repeat-x;
    animation: slide 3s infinite linear, blink 1s infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
--&gt;
        &lt;/style&gt;</pre></body></html>