<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**********移动版页面**********/

@charset"utf-8";

/*全局导航*/
nav{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 10rem;
	height: 60px;
	background-color: #fff;
	box-shadow: 0 -1px 2px rgba(0,0,0,0.25);
	z-index: 1;
}
.m-nav{overflow: hidden;}
.m-navs{
	float: left;
	text-align: center;
	width: 2rem;
}
.m-navs a{
	display: block;
	height: 60px;
	margin: 0 auto;
	padding: 5px 0;
}
.m-navs a p{
	font-size: 10px;
	color: #666;
}
.m-navs a.active p{
	color: #15A5FE;
}
.nav-photo{
	height: 30px;
	width: 30px;
	background-color: #666;
}
.m-navs a.active .nav-photo{
	background-color: #15A5FE;
}


/*固定头部*/
header{
	position: fixed;
	top: 0;
	left: 0;
	width: 10rem;
	height: 60px;
	background-color: #15A5FE;
	box-shadow: 0 1px 2px rgba(0,0,0,0.25);
	overflow: hidden;
	z-index: 99;
}
    header div {
	    height: 60px;
        position:relative;
    }
header span.logo{
	display: block;
	float: left;
	width: 80px;
	height: 40px;
	background: url("images/logo.png") center center no-repeat;
	background-size: 85px;
	text-indent: -999999px;
}
    header span.logo2 {
        display: block;
        float: left;
        width: 80px;
        height: 40px;
        background: url("images/logo2.png") center center no-repeat;
        background-size: 85px;
        text-indent: -999999px;
    }
header a.search{
	position: absolute;
	left: 80px;
	right: 10px;
	height: 30px;
	margin: 5px 0;
	font-size: 12px;
	color: #FFF;
	background: rgba(255,255,255,0.5) url("images/search.png") left center no-repeat;
	background-size: 25px;
	line-height: 30px;
	padding: 0 0.1rem 0 25px;
	border-radius: 4px;
}
header a.message{
	display: none;
	float: right;
	width: 50px;
	height: 40px;
	background: url("images/message-wait.png") center center no-repeat;
	background-size: 60px;
}
header a.message.active{
	background-image: url("images/message-active.png");
}
    header .titleLeft {
        position:relative;
        left:-75px;
        top:35px;
        float:left;
        color:white;
        font-weight:bold;
    }
    header .titleRight {
        position:absolute;
        top:35px;
        right:5px;
        float:right;
        color:white;
        font-weight:bold;
    }


/*回到顶部按钮*/
.top{
	position: fixed;
	bottom: 80px;
	right: 10px;
	height: 40px;
	width: 40px;
	background: rgba(255,255,255,0.8) url("images/top.png") center center no-repeat;
	background-size: 50%;
	border-radius: 50%;
	box-shadow: 0 0 1px rgba(0,0,0,0.25);
	text-indent: -999999px;
}

/*内部容器*/
.container{
	width: 100%;
	padding: 60px 0 50px 0;
}

/*内部容器模块*/
.section{
	background-color: #FFF;
	box-shadow: 0 0 1px rgba(0,0,0,0.5);
	overflow: hidden;
	margin-bottom: 0.13rem;
}

/*内部容器最底部的提示*/
.bottom-message{
	width: 10rem;
	height: 60px;
	text-align: center;
	color: #999;
}</pre></body></html>