*{
	margin:0;
	padding:0;
}

html,body{
	width:100%;
	font-family: "微软雅黑";
}

ul{
	list-style:none;
}

a{
	text-decoration: none;
}

input{
	border:none;
	outline:none;
}

.clear{
	clear:both;
}

.wrapperBox{
	width:100%;
}

/*导航条*/
.navBox {
	width:100%;
	height:40px;
	background-color: #00848a;
}
/* css3 */
.navBox nav ul li:hover a{
	/*设置相对定位是为了设置a的显示层级，否则会被hover时的背景色遮住*/
	position: relative;
	z-index: 2;
	color: #00848A;
}
.navBax nav ul li .btnbg-x{
	position: absolute;
	left:-1px;
	width:0;
	top:-1px;
	bottom:-1px;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

/*设置当鼠标滑过或者是悬停在导航项上时的hover样式效果*/
.navBax nav ul li:hover .btnbg-x{
    width: 100%;
    width: calc(100% + 2px);
    background: #fff;
    color: #00848A;
}

.navBar {
	width: 1400px;
	min-width: 1400px;
/* 	height: 30px; */
	margin: 0 auto;
}
.navBar .logo {
	width:34px;
	height:31px;
	float:left
}
.logo img{
	margin-top:5px;	
}
.navBar nav {
	float: right;
}
.navBar nav ul li{
	float:left;
}
.navBar nav li a {
	display: inline-block;
	height: 40px;
	line-height: 40px;
	color:#fff;
	padding:0 10px;
}
.navBar nav li a:hover {
	color:#008484;
	background-color: #fff;
}

/*banner条*/
/*修改了bannerBox的高度height元640px*/
.bannerBox {
	width: 100%;
	height: 490px;
	overflow: hidden;
	position: relative;
}

.bannerBox li .img {
	display: none;
	width: 100%;
}

.bannerBox li .current {
	display: block;
}

/*dots*/
.bannerBox .dots{
	position: absolute;
	width:100px;
	left:50%;
	margin-left: -50px;
	margin-top:-50px;
}
.bannerBox .dots>span{
	display: inline-block;
	width: 11px;
	height: 11px;
	background:#fff;
	border-radius: 15px;
	cursor: pointer;
	box-sizing: border-box;
}
/* 5个点,除了最后一个,其他拉开5个px距离,css3写法newone */
.bannerBox .dots>span:not(:last-child){
	margin-right: 5px;
}
.bannerBox .dots>span.square {
	background:#00848a;
}

/*搜索框*/
.searchBox {
	width: 975px;
	height: 68px;
	margin:0 auto;
	background: #fff;
	position: relative;
	margin-top: -30px;
	border-radius: 5px;
	box-shadow: 0 0 2px .5 #ccc;
}
.searchBox form input{
	width:907px;
	height:68px;
	float:left;
/* 	文本框文字输入的距离 */
	text-indent: 20px;
	border-radius: 5px;
}
/* css3属性选择器,不用多定义一个class去控制 */
.searchBox form input[type="submit"]{
/* 	转成行内元素inline-block */
	display: inline-block;
	width:68px;
	height: 68px;
	background: url(../img/icon/searchicon.png) no-repeat center;
	animation: bounce 0.75s infinite alternate;
}
/* bounce跳动,1申明，2调用,transform不需要触发一直动，transition需要触发才会动 */
@keyframes bounce{
	0%{
/* 		上下移动的位置 ,begin位置*/
	transform: translate3d(0,0,0);
	}
	100%{
	/* 		上下移动的位置 ,begin位置*/
		transform: translate3d(0,-8px,0);
		}
}

/*特惠房源*/
.oddsBox {
/* 	元width:1400px; */
	width: 1100px;
	margin: 30px auto 100px auto;
}
/*标题,子元素定义height没作用，那一定是父元素没定义高度，曲线救国用padding也可以*/
/* .title{
	height: 40px;
} */

.oddsBox .title p,.wantgoBox .title p, .ensureBox .title p{
	width:200px;
	height:40px;
	line-height: 40px;
	background:#00848A;
	color:#fff;
	font-size:22px;
	text-align: center;
	float: left;
}
.oddsBox .title span, .wantgoBox .title span, .ensureBox .title span{
	font-size: 22px;
	display: inline-block;
	float: left;
	height: 40px;
	line-height: 40px;
	padding-left: 10px;
	color:#00848A;
}
.oddsBox .title span i{
	display: inline-block;
	font-style: normal;
	padding:0 5px;
	animation: bounce 0.75s infinite alternate;
}

.content {
/* 	清除⬅️left浮动 */
	clear:left;
	height:760px;
	padding-top:40px;
	box-sizing: border-box;
}

.content .list .list_nav{
	display: inline-block;
	width:100px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	border-radius: 5px;
	box-shadow: 0 0 4px 0 #ccc;
	box-sizing: border-box;
	margin-right: 80px;
	cursor: pointer;
}
.content .list .list_nav:last-child{
	margin-right: 0;
}
.content .list .current_option{
	background:#00848A;
	color:#fff;
}

/* 城市对应的房源信息,切换 */
.productBox{
	width:100%;
/* 	height: 350px;
	background:green; */
	margin:20px 0;
	clear:both;
/* 	默认隐藏其他,display:none,显示第一个 */
	display: none;
}
.on {
	display: block;
}
.infoBox {
	width:340px;
	float:left;
	margin:20px 13.3px 0 0;
}
.infoBox:nth-child(4){
	margin-right:0;
}
.infoBox p:first-child {
	width:334px;
	height:222px;
	border:1px solid #fff;
	overflow: hidden;
	border-radius: 10px;
}
.infoBox p:first-child img{
	width:100%;
	height:100%;
	cursor:pointer;
	transition: transform 0.5s ease-in-out;
}
/* 图片放大效果 */
.infoBox p:first-child img:hover{
	transform: scale(1.2);
	-ms-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-webkit-transition:scale(1.2);
}

.title{
	font-size: 16px;
	margin:10px 0;
}
.infoBox span{
	font-size: 12px;
}
.infoBox p s{
	margin: 0 5px;
}
.infoBox ul {
	margin:10px 0;
}
.infoBox ul li{
	float:left;
	font-size: 12px;
}
.infoBox ul li img{
	margin-right: 15px;
}


/* 你可能想去 */
.wantgoBox{
	width:1100px;
	height: 303px;
	margin:0 auto;
}
.wantgoBox ul{
	clear:both;
	padding-top:20px;
}
.wantgoBox ul li{
	width: 193px;
	float:left;
	height: 241px;
	margin-right: 30px;
	position: relative;
}
.wantgoBox ul li:last-child{
	margin-right: 0;
}
.wantgoBox ul li img{
	width:193px;
	height: 241px;
}
/* 遮罩层,设置z-index的权限， */
.wantgoBox ul li .mark{
	width:100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	position: absolute;
	left:0;
	top:0;
	border-radius: 10px;
	z-index: 1;
	opacity: 0;
	transition: opacity ease-in-out 0.5s;
	-ms-transition: opacity ease-in-out 0.5s;
}
/* 为什么定义在li上呢？因为鼠标划过li,mark的变化,要定义在li:hover */
.wantgoBox ul li:hover .mark{
	opacity: 1;
}

.wantgoBox ul li p{
	position: absolute;
	top:144px;
	left:50%;
	margin-left: -59px;
	z-index: 2;
}
.wantgoBox ul li span{
	display: block;
	color:#fff;
	text-align: center;
}

/* 页尾,保障 */
.ensureBox {
	width:1100px;
	height:50px;
	margin: 20px auto;
}
.ensureList dl{
	float:left;
	width:350px;
	margin: 20px 25px 0 0;
}
.ensureList dl:last-child{
	margin-right: 0;
}
.ensureList dl dt,.ensureList dl dd{
	float: left;
}
.ensureList dl dt{
	margin-right: 15px;
	animation: bounce 0.75s infinite alternate;
}
.ensureList dl dd{
	font-size: 18px;
	line-height: 1.6;
}

/* 友情链接 */
.listlinkBox{
	width:1100px;
	height:280px;
	margin:30px auto 50px auto;
}
.listlinkBox dl{
	float: left;
	width:260px;
	line-height: 1.6;
}
.listlinkBox dl dt{
	margin: 0 0 20px 0;
	color:#00848a;
}
.copyBox{
	text-align: center;
}