body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td { margin:0; padding:0; }
body, button, input, select, textarea { font:12px/1.5tahoma, arial, \5b8b\4f53;  }
h1, h2, h3, h4, h5, h6{ font-size:100%;  }
address, cite, dfn, em, var { font-style:normal; }
code, kbd, pre, samp { font-family:couriernew, courier, monospace; }
small{ font-size:12px; }
ul, ol { list-style:none;  }
a { text-decoration:none;color: #333333; }
a:hover { text-decoration:none;  }
sup { vertical-align:text-top; }
sub{ vertical-align:text-bottom; }
legend { color:#000; }
fieldset, img { border:0; }
button, input, select, textarea { font-size:100%; }
table { border-collapse:collapse; border-spacing:0; }
*{box-sizing: border-box; }

.innerbox::-webkit-scrollbar {/*滚动条整体样式*/
    width: 10px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 10px;
    border-radius: 10px;
}
.innerbox::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px #6dbeff;
    background: #6dbeff;
}
.innerbox::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px #e6e6e6;
    background: #e6e6e6;
    border-radius: 10px;
}
.innerboxmin::-webkit-scrollbar {/*滚动条整体样式*/
    width: 5px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 5px;
    border-radius: 5px;
}
.innerboxmin::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px #6dbeff;
    background: #6dbeff;
}
.innerboxmin::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px #e6e6e6;
    background: #e6e6e6;
    border-radius: 5px;
}
.innerboxnone::-webkit-scrollbar {/*滚动条整体样式*/
    width: 0px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 0px;
    border-radius: 0px;
}
.innerboxnone::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 0px;
    -webkit-box-shadow: inset 0 0 0px #6dbeff;
    background: #6dbeff;
}
.innerboxnone::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 0px #e6e6e6;
    background: #e6e6e6;
    border-radius: 0px;
}
html,body,section{
    height: 100%;
}
html,body{
	min-width: 1200px;
	margin: 0 auto;
}



/* ------------------头部导航---------------------- */
#vueDemo nav {
	height: 60px;
	width: 100%;
	margin: 0 auto;
	font-size: 0px;
	position: fixed;
	top: 0;
	background: #fff;
	background-image: linear-gradient(to right, #0984ff , #5345f1);
	font-family: 思源黑体 CN;
	z-index: 999;
}

#vueDemo nav>.navigation_all {
	height: 60px;
	width: 1200px;
	margin: 0 auto;
	font-size: 0px;
}
#vueDemo nav>.navigation_all:after {
	content: '';
	width: 100%;
	min-width: 1200px;
	height: 1px;
	background: #E6E6E6;
	position: absolute;
	left: 0px;
	top: 60px;
}

#vueDemo .navigation_all>div {
	display: inline-block;
	font-size: 18px;
	vertical-align: middle;
}

#vueDemo nav .logo {
	width: 10%;
}

#vueDemo nav .logo img {
	height: 50px;
	cursor: pointer;
	margin: 5px 0px;
}

#vueDemo nav .header {
	width: 80%;
	font-size: 0px;
	height: 100%;
}

#vueDemo nav .header span {
	font-size: 16px;
	font-family: 黑体;
	display: inline-block;
	padding: 0px 17px;
	height: 100%;
	line-height: 60px;
}
#vueDemo nav .header span  a{
	color: #fff;
}

#vueDemo nav .header .active a {
	color: #9FCAFC;
	position: relative;
}

#vueDemo nav .header span a:hover {
	color: #6dbeff;
}

#vueDemo nav .header .active a:hover {
	color: #9FCAFC;
}

#vueDemo nav .header .active a:after {
	content: '';
	position: absolute;
	width: 110%;
	/* height: 3px; */
	/* background: #9FCAFC; */
	bottom: -15px;
	left: -5%;
}

#vueDemo nav .login {
	width: 10%;
	text-align: center;
	height: 100%;
	line-height: 60px;
}

#vueDemo nav .login a {
	font-size: 12px;
	color: #fff;
	border-radius: 5px;
	border: 1px solid #fff;
	padding: 8px 16px;
}
/* ------------------头部导航---------------------- */








/* 右侧悬浮窗 */
#vueDemo aside {
  position: fixed;
  right: 20px;
  top: 30%;
  z-index: 999;
}
#vueDemo aside .asideList {
  cursor: pointer;
}
#vueDemo aside .asideList img {
  height: 100px;
}
#vueDemo .aside_second {
  position: fixed;
  right: 120px;
  top: 42%;
  z-index: 999;
  background: #ffffff;
  color: #777777;
  line-height: 24px;
  padding: 10px;
  border-radius: 14px;
  box-shadow: 0px 0px 3px #ddd;
}
#vueDemo .aside_third {
  position: fixed;
  right: 120px;
  top: 53%;
  z-index: 999;
  box-shadow: 0px 0px 3px #ddd;
  padding: 10px;
  text-align: center;
  background: #fff;
}
#vueDemo .aside_third img {
  height: 100px;
}
/* 右侧悬浮窗 */









/* ------------------底部结尾---------------------- */
#vueDemo footer{
	width: 100%;
	color: #FFFFFF;
}
/* 试用下载 */
#vueDemo footer  .footer_img{
	margin:  0 auto;
	color: #f0f;
	position: relative;
	height: 435px;
}
#vueDemo footer  .footer_img>img{
	width: 100%;
}
#vueDemo footer  .footer_img>.footer_news{
	position: absolute;
	top: 30%;
	left: 55%;
	width: 300px;
	color: #fff;
	font-size: 30px;
	text-align: center;
	line-height: 50px;
}
#vueDemo footer  .footer_img .footer_news  p:nth-of-type(3) {
	margin-top: 50px;
}
#vueDemo footer  .footer_img .footer_news  p:nth-of-type(4) {
	color: #4C42F3;
	font-size: 18px;
	line-height: 20px;
	background-color: #fff;
	border-radius: 50px;
	width: 180px;           
	padding: 10px 20px;
	font-weight: bold;
	margin: 0 auto;
	cursor: pointer;
}
#vueDemo footer  .footer_img .footer_news  p:nth-of-type(4):hover {
	color: #fff;
	background-color:#a9a9f8;
}



/* 基础信息 */
#vueDemo footer  .footer_content{
	margin:  0 auto;
	padding: 100px 0  50px 0;
	background: #0c1d3a;
	text-align: center;
	color: #FFFFFF;
}
#vueDemo footer  .footer_content  .footer_content_all{
	width: 1200px;
	margin:  0 auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
#vueDemo footer  .footer_content  .footer_content_all .footer_qrcode{
	flex-basis : 500px;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

#vueDemo footer  .footer_content  .footer_content_all .footer_qrcode  .public ,
#vueDemo footer  .footer_content  .footer_content_all .footer_qrcode  .star_game ,
#vueDemo footer  .footer_content  .footer_content_all .footer_qrcode  .housekeeper{
	flex-basis : 150px;
	text-align: center;
}

#vueDemo footer  .footer_content  .footer_content_all .footer_qrcode  .footer_qrcode_one >img{
	width: 121px;
	height: 123px;
}
#vueDemo footer  .footer_content  .footer_content_all .footer_qrcode  .footer_qrcode_one >p{
	font-size:16px ;
	font-weight: bold;
	color: #fff;
	line-height: 50px;
}

/* 地址 */
#vueDemo footer  .footer_content  .footer_content_all .footer_address{
	flex-basis : 300px;
	text-align: left;
	padding-left: 50px;
}
#vueDemo footer  .footer_content  .footer_content_all .footer_address>p>img{
	vertical-align:middle; 
	margin: 5px 10px;
}

#vueDemo footer  .footer_content  .footer_content_all .footer_address>p:nth-of-type(4) {
	font-size: 16px;
	color: #818488;
	margin-top: 20px;
	margin-left: 10px;
}
#vueDemo footer  .footer_content  .footer_content_all .footer_address>p:nth-of-type(5) {
	font-size: 16px;
	color: #4C3EF2;
	margin-top: 5px;
	margin-left: 10px;
}



/* 试用 */
#vueDemo footer  .footer_content  .footer_content_all .footer_button{
	flex-basis : 200px;
	border:  1px solid #D5DDFB;
	margin:  0 auto;
	background-color:#FAF8FF ;
	color: #2476E2;
	font-weight: bold;
	padding: 10px 0 ;
	border-radius: 50px;
	cursor: pointer;
}
#vueDemo footer  .footer_content  .footer_content_all .footer_button:hover {
	color: #fff;
	border:  1px solid #4C3EF2;
	background-color:#569ae2;
}



#vueDemo footer  .footer_content  .footer_content_href {
	margin-top: 20px;
}
#vueDemo footer  .footer_content  .footer_content_href>a{
	color: #fff;
}



/* ------------------底部结尾---------------------- */

@font-face{
  font-family: 苹方啊啊;
  src:  url("https://tupian.xingyunol.com/PingFang%20Bold.ttf"),
		url("https://tupian.xingyunol.com/PingFang%20ExtraLight.ttf"),
		url("https://tupian.xingyunol.com/PingFang%20Heavy.ttf"),
		url("https://tupian.xingyunol.com/PingFang%20Light.ttf"),
		url("https://tupian.xingyunol.com/PingFang%20Medium.ttf"),
		url("https://tupian.xingyunol.com/PingFang%20Regular.ttf");
}
