/* CSS Reset */
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-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box; /* Ensure padding and borders are included in element sizes */
    font-weight: normal;
    text-align: left;
    line-height: 1.5;
}
 
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
 
body {
    line-height: 1;
}
 
ol, ul {
    list-style: none;
}
 
blockquote, q {
    quotes: none;
}
 
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
 
table {
    border-collapse: collapse;
    border-spacing: 0;
}
 
/* Custom styles */
body {
    background: white;
    color: black;
    /* Add additional custom styles here */
}

a, a:hover, a:focus {
    text-decoration: none;
}

.flex {
	display: flex;
}
.itemCenter {
	display: flex;
	align-items: center;
}
.textIndent {
	text-indent: 2em;
}
.lineHeight-15 {
	line-height: 1.5;
}
.lineHeight-20 {
	line-height: 2;
}
.bold {
	font-weight: bold;
}
.center {
	text-align: center;
}
.mainColor {
	color: #2B51A4;
}
.mainBgColor {
	background: #2B51A4;
}
.marginTop20 {
	margin-top: 20px;
}
.marginTop40 {
	margin-top: 40px;
}
.marginTop60 {
	margin-top: 60px;
}
.marginBottom20 {
	margin-bottom: 20px;
}
.marginBottom40 {
	margin-bottom: 40px;
}
.marginBottom60 {
	margin-bottom: 60px;
}
.font-12 {
	font-size: 12px;
}
.font-14 {
	font-size: 14px;
}
.font-16 {
	font-size: 16px;
}
.font-18 {
	font-size: 18px;
}
.font-19 {
	font-size: 19px;
}
.font-20 {
	font-size: 20px;
}
.font-21 {
	font-size: 21px;
}
.font-25 {
	font-size: 25px;
}
.font-26 {
	font-size: 26px;
}


.navbar-fixed-top {
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}
.nav-logo-block {
	padding: 0;
	margin: 12.5px 0 0;
}
.nav-logo {
	padding: 0;
}
.nav-logo img {
	height: 25px!important;
}

/* .navbar-nav .open .dropdown-menu {
	background-color: #333;
} */

.navbar-nav .open .dropdown-menu > li > a.active,
.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover {
	background: #3E63B3;
	color: #fff;
}

.navbar-inverse {
	background: rgba(0, 0, 0, 0.7)!important;
	border-color: #080808;
}
.navbar-nav > li {
	/* border: 1px solid transparent;
	border-top-width: 4px; */
}
.navbar-nav > li.active {
	/* border: 1px solid #3E63B3;
	border-top-width: 4px; */
	animation-name: fadeEffect;
	animation-duration: 0.5s;
	animation-timing-function: linear;
}
.navbar-nav > li.active > a,
.navbar-nav > li.active:hover > a,
.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
	background: #3E63B3;
	color: #fff;
}

.navbar-nav a {
	color: #333;
	font-size: 16px;
}
@keyframes fadeEffect {
  from { opacity: 0; }
  to { opacity: 1; }
}

.dropdown-submenu { position: relative; }
.dropdown-submenu>.dropdown-menu { 
	top: 0;
	left: 100%;
	margin-top: -6px;
	margin-left: -1px;
	-webkit-border-radius: 0 6px 6px 6px;
	-moz-border-radius: 0 6px 6px;
	border-radius: 0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu { display: block; }
.dropdown-submenu>a:after {
	display: block;
	content: " ";
	float: right;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-left-color: #ccc;
	margin-top: 5px;
	margin-right: -10px;
}
.navbar-nav .open .dropdown-menu > li > a.active:after {
	border-left-color: #fff;
}
.dropdown-submenu:hover>a:after {
	border-left-color: #fff;
}
.dropdown-submenu.pull-left {
	float: none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
	left: -100%;
	margin-left: 10px;
	-webkit-border-radius: 6px 0 6px 6px;
	-moz-border-radius: 6px 0 6px 6px;
	border-radius: 6px 0 6px 6px;
}

body {
	color: #333;
}
.content {
	margin-top: 50px;
	margin-bottom: 120px;
}
.footer {
	background: #0C0C0C;
	padding: 30px 0;
	color: #fff;
}
.footer .title {
	/* font-family: "AlimamaShuHeiTi-Bold"; */
	margin-bottom: 20px;
}
.footer .footerMain > ul > li > a {
	color: #fff;
	text-decoration: none;
}
.footer .footerMain > ul > li:not(:nth-child(1)),
.footer .footerMain > div > div:not(:nth-child(1)) {
	margin-top: 10px;
}
.footer ul > li:nth-child(1) > a,
.footer .footerMain > div > div:nth-child(2),
.footer .bqBlock {
	color: #666666;
}
.footer .dhhmBlock > * {
	display: inline-block;
}
.footer .dhhmBlock img {
	width: 24px;
}
.footer .dhhm {
	vertical-align: sub;
	margin-left: 5px;
}
.footer .bqBlock {
	border-top: 1px solid #4D4D4D;
	margin-top: 15px;
	padding-top: 6px;
}


/* 超小屏幕（手机，小于 768px） */
@media (max-width: 767px) {
	.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a, .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover {
	    color: #fff;
	    background: #3E63B3;
	}
	.nav-logo-block {
		margin: 0 !important;
	}
	.consultBlock input {
		width: 55% !important;
	}
	.consultBlock button {
		width: calc(45% - 20px) !important;
	}
	.introduction {
		padding: 20px 20px !important;
		margin-top: 30px !important;
	}
	.aboutUsContent .introduction {
		margin-top: 0 !important;
	}
	.introduction img {
		width: 100% !important;
	}
	.introduction > div {
		display: block;
	}
	.introduction > div > div.col-xs-12 {
		margin-top: 10px;
	}
	.subTitleBlock .leftBorder,
	.subTitleBlock .rightBorder {
		width: 32% !important;
	}
	.subTitleBlock .text {
		width: 36% !important;
	}
	.serveMain .borderBotteom {
		margin-top: 6px !important;
	}
	.serveMain .borderBotteom:before {
		top: 6px !important;
		margin-left: -5px !important;
		width: 10px !important;
	}
	.serveMain .borderBotteom:after {
		top: 10px !important;
		border-left: 5px solid transparent !important;
		border-right: 5px solid transparent !important;
		border-top: 8px solid #2B51A4 !important;
	}
	.tabBlock {
		width: calc(100% - 30px);
		margin: 40px auto;
		transform: translate(0, 0) !important;
	}
	.tabBlock ul li:not(:nth-child(1)) {
		margin-top: 10px;
	}
	.tabBlock ul li a {
		display: block;
		width: 58% !important;
		margin: 0 auto;
	}
	.tabBlock {
		margin-top: 40px !important;
	}
	.qyszhzxBlock .qyszhzxMain,
	.qyszhzxBlock-2 .qyszhzxMain-2 {
		width: 100% !important;
	}
	.qyszhzxBlock-2 .qyszhzxMain-2:not(:nth-child(3n + 1)) {
		margin-left: 0 !important;
	}
	.gsxxBlock {
		padding: 0 15px !important;
	}
	.header .container,
	.indexContent .introduction,
	.indexContent .serveImg > .container,
	.serveContent .container {
		width: calc(100% - 30px);
	}
	.consultBlock {
		top: 66% !important;
	}
	.zzzsBox {
		width: 98%;
	}
}

/* 小屏幕（平板，大于等于 768px） */
@media (min-width: 768px) {
	.introduction {
		padding: 20px 40px !important;
	}
	.introduction img {
		width: 90% !important;
	}
}

/* 中等屏幕（桌面显示器，大于等于 992px） */
@media (min-width: 992px) {
	
}

/* 大屏幕（大桌面显示器，大于等于 1200px） */
@media (min-width: 1200px) {
	
}