<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* reset.css  閲嶇疆鏍峰紡 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	
	font: inherit;
	font-size:12px;
	vertical-align: baseline;
	font-weight: normal;
    /* font-family: "寰蒋闆呴粦"; */
    font-family: 'Source Han Sans CN';
    font-style: normal;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color:transparent;
    -webkit-user-select:none;
    user-select:none; 
}
img{
    width: 100%;
	display: block;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	position: relative;
	line-height: 1;
}
ol, ul {
	list-style: none;
}
a{text-decoration:none;color:#000;}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
strong{
    font-weight: bold;
}


/* 娴姩 */
.pull-left{float: left;}
.pull-right{float: right;}
.clearfix:after,.clearfix:before{content: '';display: block;clear: both;}

/* 灞呬腑 */
.center{position:absolute;left:50%;top:50%;transform: translate(-50%,-50%);-webkit-transform: translate(-50%,-50%);}

/* flex瀹氫綅 */
.flex{ display: flex;display: -webkit-flex;width:100%;}

/* 閲嶇疆鎸夐挳銆佽緭鍏ユ鐨勬牱寮� */
button,input,textarea,select{border: 0;background: none;outline: none;cursor: pointer;resize:none;}

/* 閬僵灞� */
.mask{display: none;position: fixed;top: 0;left: 0;width:100vw;height: 100vh;background: rgba(0,0,0,.8);z-index: 100;}

/* 妯睆鎻愮ず */
.remind-box {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 100;
}
.remind-box .remind {
    width: 50%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.remind-box .remind span {
    font-size: .16rem;
    color: #fff;
    white-space: nowrap;
}

.remind-box .remind .iphone {
    display: block;
    margin: 0 auto;
    width: .3rem;
    height: 1.2rem;
    background-size: contain;
    animation: remind 1.5s infinite linear;
    -webkit-animation: remind 1.5s infinite linear;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

@keyframes remind {
    0% {
        transform: rotate(0deg)
    }
    50% {
        transform: rotate(100deg)
    }
    100% {
        transform: rotate(0deg)
    }
}
@-webkit-keyframes remind {
    0% {
        transform: rotate(0deg)
    }
    50% {
        transform: rotate(100deg)
    }
    100% {
        transform: rotate(0deg)
    }
}

/* 闊充箰鎾斁 */
.music-box{
    position: fixed;
    top: 0.15rem;
    right: 0.15rem;
    width: 0.25rem;
    height: 0.25rem;
    background: url(../img/off.png) no-repeat center;
    background-size: contain;
    z-index: 100;
    transition: transform 0.3s;
}
.music-box.on{
    background: url(../img/on.png) no-repeat center;
    background-size: contain;
    animation: musicRotate 1.5s infinite linear;
}
/* .music-box.stop{
    background: url(../img/m2.png) no-repeat center;
    background-size: contain;
    animation-play-state:paused;
    -webkit-animation-play-state:paused;
} */
@keyframes musicRotate{
    100%{
        transform: rotate(360deg);
    }
}

/* 鍥剧墖閬僵灞� */
.cover{position: relative;}
.cover::before{
    content:'';
    position: absolute;
    top: 0;left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}


/* 鎻愪氦涓� */
.uping{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100;
}
.uping p{
    font-size:.14rem;
    color: #fff;
}
.uping p::before{
    content:'';
    display: inline-block;
    width: 0.25rem;
    height: 0.25rem;
    margin-bottom:-0.07rem;
    margin-right:0.1rem;
    background: url(../img/loading.png) no-repeat center / contain;
    transition: 0.3s rotate;
    animation: uping 1s linear infinite;
}
@keyframes uping{
    to{
        transform:rotate(360deg);
    }
}</pre></body></html>