body{
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	
}

/* 顶部banner图 */
.banner-box{
	width: 100%;
	min-width: 1200px;
	height: 100%;
	background-color: white;
	margin-top: 130px;
	position:relative;
}
.banner-text{
	
	color:white;
	font-size: 30px;
	font-weight: bold;
	position:absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	/* width: 100%; */
	/* height: 30%; */
	display: flex;
	align-items: center;
	justify-content: center;
	
}
.text-under-word{
	display: inline-block;
	margin: 0 auto;
	position:relative;
}
/* .text-under-word::before{
	content:"";
	position:absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom:-10px;
	width: 70%;
	height: 2px;
	background-color: white;
}
.text-under-word::after{
	content:"";
	position:absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom:-15px;
	width: 70%;
	height: 2px;
	background-color: white;
} */
.banner-box>img{
	width: 100%;
	min-width: 1200px;
	height: 100%;
}
/* 分类展示 */
.category-show{
	width:1200px;
	margin: 15px auto;
	height: 100%;
	display: flex;
	background-color: white;
	flex-wrap: wrap;
}
.category-item{
	width: 18%;
	height: 250px;
	box-shadow: 0 0 6px gainsboro;
	border-radius:5px;
	overflow: hidden;
	margin-bottom: 20px;
	margin-right: 20px;
	cursor: pointer;
}
.item-img{
	width: 100%;
	height: 170px;
}
.item-img > img{
	width: 100%;
	height: 100%;
}
.item-title{
  width: 90%;
  height: 30px;
  margin: 5px auto;
  font-size: 17px;
  font-weight: bold;
  color:#0973f9;
  text-align: center;
}
.item-title-text{
	width: 90%;
	height: 30px;
	margin: 0 auto;
	font-size: 14px;
	color:#000;
	text-align: center;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap
}
/* 搜索区域 */
.search-area{
	width: 1200px;
	height: 150px;
	margin: 0 auto;
	box-shadow: 0 0 10px lightgray;
	border-radius: 10px;
	display:flex;
	align-items: center;
	justify-content: space-between;
	background-color: white;
}
.left-title{
	width: 20%;
	height: 100%;
	line-height: 150px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	color:#999999;
}
.middle-input{
	width: 55%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.input-search{
	width: 100%;
	height: 60px;
	font-size: 16px;
	padding: 0 10px;
	background-color: #edf8ff;
	color:#999 !important;
	font-weight: bold;
	border-radius: 5px;
	border: 0;
	outline:none;
	letter-spacing: 2px;
}
.input-search::-webkit-input-placeholder { /* Chrome/Opera/Safari */ 
			color: #999;
		}
		::-moz-placeholder { /* Firefox 19+ */  
			color: #999;
		}
		:-ms-input-placeholder { /* IE 10+ */ 
		 color: #999;
		}
		:-moz-placeholder { /* Firefox 18- */ 
		 color: #999;
		}

.right-btn{
	width: 20%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.button-search{
	width: 100px;
	height: 60px;
	color:white;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 5px;
	background-color:#218fff;
	line-height: 60px;
	text-align: center;
	border-radius: 5px;
	cursor: pointer;
}
.button-search-2{
	width: 100px;
	height: 60px;
	color:white;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 5px;
	background-color:#f26522;
	line-height: 60px;
	text-align: center;
	border-radius: 5px;
	cursor: pointer;
}
/* 服务详情 */
.line-hr{
	width: 1200px;
	margin: 10px auto;
	height: 1px;
	background-color: gray;
}
.server-category-list{
	width: 1200px;
	height: 100%;
	margin: 10px auto;
	
}
.list-item{
	width: 100%;
	height: 100%;
	margin-bottom: 20px;
	box-shadow: 0 0 10px lightgrey;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.list-item-title{
	width: 100%;
	height: 60px;
	background-color: #a6dafb;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	
}
.title-div{
	width: 90%;
	margin: 0 auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.title-text{
	font-size: 20px;
	font-weight: bold;
}
.title-turn{
	font-size: 15px;
	color:#218fff;
	cursor: pointer;
	text-decoration: none;
}
.list-item-content{
	width: 100%;
	min-height: 80px;
	padding: 10px 0;
	background-color: #edf8ff;
	
}
.content-text{
	width: 90%;
	margin: 0 auto;
	padding: 10px 0;
	font-size: 16px;
	color:#666;
	cursor: pointer;
	line-height: 25px;
}