body, 
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dd {
	margin: 0;
	-webkit-text-size-adjust: 100%;
	font-family: Helvetica;
}
ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
div{
	box-sizing: border-box;
}
img {
	display: block;
}
a {
	text-decoration: none;
}
a,
input,
button {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-appearance: none;
	outline:none;
	border: none;
}
html,
body {
	position: relative;
	overflow-x: hidden;
}

.min-box {
    width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	border-radius: 4px;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-wrap{
	display: flex;
	flex-wrap: wrap;
}

.justify-start {
  display: flex;
  justify-content: flex-start;
}
.justify-center {
  display: flex;
  justify-content: center;
}

.justify-end {
  display: flex;
  justify-content: flex-end;
}
.justify-evenly {
  display: flex;
  justify-content: space-evenly;
}
.justify-around {
  display: flex;
  justify-content: space-around;
}
.justify-between {
  display: flex;
  justify-content: space-between;
}
.align-start {
  display: flex;
  align-items: flex-start;
}
.align-center {
  display: flex;
  align-items: center;
}
.align-end {
  display: flex;
  align-items: flex-end;
}


/* 底部 */
.footer {
  text-align: center;
  padding: 20px;
  background: #f1f1f1;
  font-size: 16px;
  color: #555;
  margin-top: 40px;
}
.footer a { margin: 0 8px; color: #555; }

.content{
    width: 100%;
	max-width: 1200px;
      padding: 0 15px;
	height: auto;
	overflow: hidden;
	margin: 10px auto 30px;
}

.top{
	/*height: 100px;*/
	border-bottom: 2px solid #1788E0;
	overflow: hidden;
	display: flex;
}

.top .logo-box:after{
	content: "";
	display: block;
	width: 1px;
	height: 50%;
	background: #1788E0;
	position: absolute;
	right: 0;
	top:50%;
	transform: translateY(-50%);
}
.top .logo-box .logo{
    width: 180px;
    margin: 0 auto;
}
.top .logo-box,.top .title{
	width: 50%;
	padding: 10px;
}

.top .logo-box{
	text-align: right;
	position: relative;
	overflow: hidden;
    display: flex;
    justify-content: flex-end;
}

.top .title{
	color: #1788E0;
	display: flex;
	align-items: center;
}
.top .title h1 a{
	font-size: 44px;
}


.content-intro{
	margin:15px 0;
	font-size: 14px;
	color:#666;
}
.top .title h1 a{
    font-size: 44px;
    color:#1788E0 !important;
}

.related_query{
	clear: both;
	height: auto;
	overflow: hidden;
}

.related_query_title{
	font-size: 20px;
    line-height: 1.1;
    margin-bottom: 10px;
    margin-top: 20px;
    color: #666;
    font-weight: bold;
}

.related_query  a{
	display: block;
	float: left;
	color: #333;
    background-color: #ebe8e8;
    border-color: #8c8c8c;
    padding: 5px 10px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
    margin-right: 5px;
    margin-bottom: 10px;
}
.related_query  a:hover{
	color: #1787e0;
}

.content-bottom{
	margin:10px 0;
}

/**/
.search-type{
	border: 1px solid #eee;
	text-align: center;
	/*height: 50px;*/
	line-height: 50px;
	font-size: 16px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}
.search-wrap{
	display: flex;
	margin: 0 auto;
}
.search-wrap>div,.search-wrap>a,.search-wrap>span{
	float: left;
}

.search-type a{
	color:#333;
	line-height: 50px;
}
.search-box{
	/*display: inline-block;*/
	width: 200px;
	height: 34px;
	overflow: hidden;
	margin-top: 8px;
	border: 1px solid #1788E0;
}
.search-type input{
	border: none;
	float: left;
	width: 82%;
	height: 34px;
}

.search-box .search-btn{
	display: block;
	float: right;
	width: 15%;
	height: 34px;
	background: #1788E0;
	cursor: pointer;
	border: none;
	outline: none;
	
}
.search-box .search-btn img{
	width: 95%;
}

.connect-tool{
    height: auto !important;
}
.connect-tool-item{
    display: flex;
    flex-wrap: wrap;
}
.connect-tool-item a {
    margin:0 5px 5px 0;
}

@media (max-width: 768px) {
    .top {
        /*height: auto;*/
    }
    .top .logo-box .logo{
        width: 120px;
    }
    .top .title h1 a{
        font-size: 30px !important;
        line-height: 100%;
    }
    .search-wrap{
        flex-direction: column;
        align-items: center;
    }
}


