/* 去掉共有样式 */
@charset "utf-8";

* {
	margin: 0;
	padding: 0;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
	font-family: "微软雅黑";
}

fieldset,
img {
	border: 0;
}

ul,
ol,
li {
	list-style: none;
	font-family: 'Microsoft YaHei';
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var,
optgroup {
	font-style: normal;
	font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

abbr,
acronym {
	border: 0;
	font-variant: normal;
}

input,
button,
textarea,
select,
optgroup,
option {
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	background-color: #fff;
	border: none;
}

code,
kbd,
samp,
tt {
	font-size: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

/*@purpose To enable resizing for IE */
/*@branch For IE6-Win, IE7-Win */
input,
button,
textarea {
	*font-size: 100%;
}

ol,
ul {
	list-style: none;
}

/* tables still need 'cellspacing="0"' in the markup */
table,
tr,
td {
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0;
	padding: 0;
}

caption,
th {
	text-align: left;
}

sup,
sub {
	font-size: 100%;
	vertical-align: baseline;
}

/* remember to highlight anchors and inserts somehow! */
blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

/**Common Css**/
.fr {
	float: right;
	*display: inline;
}

.fl {
	float: left;
	*display: inline;
}

/*文本超出显示省略号*/
.ehn,
.otw,
.tow {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

/*清除浮动*/
.clearfix {
	clear: both;
	*zoom: 1;
}

.clearfix:after {
	display: block;
	clear: both;
	content: "\0020";
	visibility: hidden;
	height: 0;
}

body{
	width: 100%;
	overflow-x: hidden;
}
/* 头部 */
header{
	height: 7vw;
	overflow: hidden;
}
header .logo{
	width: 30vw;
	line-height: 7vw;
}
header .logo img{
	height: 4.5vw;
}

header .title{
	height: 7vw;
	width: 30vw;
	text-align: center;
}
header .title p:nth-of-type(1){
	/*font-size: 2vw;*/
    font-size: 20px;
	color: #0065b8;
	position: relative;
	top: 1vw;
}
header .title p:nth-of-type(2){
	/*font-size: 1.1vw;*/
    font-size: 14px;
	color: #666;
	position: relative;
	top: 1vw;
}
header .contact{
	width: 26vw;
	height: 7vw;
	padding-left: 1vw;
	overflow: hidden;
}
header .contact>img.qrcode{
	height: 4.4vw;
	position: relative;
	top: 1.3vw;
	left: 0;
}
header .contact>img.phone{
	height: 4.4vw;
	position: relative;
	top: 1.3vw;
	left: 4vw;
}
header .contact .tel{
	display: inline-block;
	width: 11vw;
	height: 7vw;
	/*font-size: 1.5vw;*/
    font-size: 20px;
	color: #333;
}
header .contact .tel>p:nth-of-type(1){
	position: relative;
	top: 1.3vw;
	right: 0;
}
header .contact .tel>p:nth-of-type(2){
	position: relative;
	top: 1.3vw;
	right: 0;
}


/* 导航栏 */
.navbar-default {
	background-color: #0073ff;
}
.navbar-default .navbar-nav>li>a {
	color: #fff;
}
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
	background-color: #005bff;
	color: #fff !important;
}

.navbar-default .navbar-nav>li>a:hover{
	background-color: #005bff;
	color: #fff !important;
}

.navbar-default .navbar-toggle{
	background-color: #0073ff
}
.navbar{
	margin-bottom: 0;
}

/* 轮播 */
#banner{
	width: 100%;
}
#banner img{
	width: 100%;
}

/* 右侧菜单 */
#aside{
	position: fixed;
	right: 0.5vw;
	bottom: 5vw;
	z-index: 111;
}
#aside .list{
	text-align: center;
	margin-bottom: 10px;
	background-color: #fff;
	box-shadow: 1px 1px 15px #aaa;
	padding: 0.25vw;
	position: relative;
}
#aside .list:hover{
	background-color: #F2F2F2;
}
#aside .list img{
	width: 2vw;
	padding: 0.3vw 0;
}
#aside .list p{
	text-align: center;
	color: #999;
	font-size: 0.8vw;
}
/* 对话框 */
#aside .dialog{
    width:150px;
	text-align: center;
    padding: 10px;
    /* border:5px solid #beceeb; */
    position:absolute;
	top: -15px;
	right: 125%;
	background-color: #1D9BFA;
}
#aside .dialog p{
	color: #fff;
}
#aside .dialog span{
    width:0; 
	height:0; 
	font-size:0;
    position:absolute;
}

#aside .dialog span.bot{
    border: 15px solid transparent;
    border-left: 15px solid #1D9BFA;
    right: -25px; 
    top: 5px;
}
#aside .dialog img{
	width: 98%;
}


/* 底部 */
footer{
	width: 100%;
	background-color: #0073ff;
	padding-bottom: 10px;
	padding-top: 30px;
}
footer div.sorts{
	width: 75%;
	margin: 0 auto;
	text-align: center;
}
footer div.sorts span{
	display: inline-block;
	height: 15px;
}
footer div.sorts a{
	color: #fff;
	padding: 0 5px;
	position: relative;
	top: -2px;
	left: 0;
}
footer div.sorts span:nth-of-type(n+2){
	border-left: 2px solid #ddd;
}
footer .copyright{
	text-align: center;
	color: #fff;
	line-height: 50px;
}
footer .logos{
	width: 75%;
	margin: 0 auto;
	text-align: center;
}
footer .logos a{
	padding-right: 5px;
}
footer .links{
	width: 75%;
	margin: 20px auto;
	text-align: center;
}

footer div.links span{
	display: inline-block;
	height: 15px;
}
footer div.links a{
	color: #ddd;
	padding: 0 10px;
	position: relative;
	top: -2px;
	left: 0;
}
footer div.links a:hover{
	color: #fff;
}
footer div.links span:nth-of-type(1){
	color: #fff;
	font-weight: bold;
}
footer div.links span:nth-of-type(n+3){
	border-left: 2px solid #ddd;
}

/* pc */
@media screen and (min-width: 768px) {
    .container {
        width: 86vw !important;
    }
	.navbar{
		min-height: 60px;
	}
	.nav>li{
		/*width: 12vw;*/
		/*width:10vw;*/
		margin-right: 2vw;
		text-align: center;
		display:block;
	}
	.navbar-nav>li>a{
		line-height: 28px;
		/*font-size: 1.3vw;*/
		font-size: 16px;
	}
	.nav>li>ul>li{
		/*width: 12vw;*/
		width:10vw;
		text-align: center;
	}
	.nav>li>ul>li>a{
		font-size: 16px;
	}
	.navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand{
		display: none;
	}
	main{
		width: 86vw;
		margin: 0 auto;
	}
	.container,.navbar-collapse{
		padding: 0;
	}
}

/* app */
@media screen and (max-width: 768px) {
    .container {
        width: 100vw !important;
    }
	.navbar.navbar-default{
		position: relative;
	}
	.navbar-default .navbar-brand{
		color: #fff;
	}
	/* 浮动导航 */
	#bs-example-navbar-collapse-1{
		width: 101%;
		position: absolute;
		left: 14px;
		top: 50px;
		z-index: 9999;
		background-color: #0073ff
	}

	main{
		width: 100%;
		overflow: hidden;
	}
	header,footer,#aside{
		display: none;
	}
}

@media (min-width: 768px){
	.bs-glyphicons {
		margin-right: 0;
		margin-left: 0;
	}
}


.bs-glyphicons {
	margin: 0 -10px 20px;
	overflow: hidden;
}

.bs-glyphicons-list {
	padding-left: 0;
	list-style: none;
}

.bs-glyphicons li {
	/*width: 12.5%;*/
	font-size: 12px;
}

.bs-glyphicons li {
	float: left;
	/*width: 25%;*/
	height: 115px;
	padding: 10px;
	font-size: 16px;
	line-height: 1.4;
	text-align: center;
	background-color:#d2ebf3;
	border: 1px solid #fff;
	cursor: pointer;
}

.bs-glyphicons .glyphicon {
	margin-top: 5px;
	margin-bottom: 10px;
	font-size: 30px;
}

.bs-glyphicons .glyphicon-class {
	display: block;
	text-align: center;
	word-wrap: break-word;
}

.bs-glyphicons li:hover {
	color: #fff;
	background-color: #789cf6;
}
