.property-details-container .container-header{
	height: 1380px;
}
.property-details-container .container-header .header-top{
	width: 100%;
	height: 700px;
	position: relative;
}
.container-header .header-top .header-top-desc{
	position: absolute;
	right: 80px;
	bottom: 80px;
	background: rgba(255,255,255,0.8);
	width: 480px;
	height: 350px;
	border-radius: 30px;
	box-sizing: border-box;
	padding: 35px;
	padding-right: 20px;
	color: #171717;
}
.container-header .header-top .header-top-desc .desc-title{
	font-size: 30px;
	height: 2em;
	font-weight: 500;
}
.container-header .header-top .header-top-desc .desc-content{
	font-size: 20px;
	line-height: 1.5em;
	overflow: hidden;
}

/*内容块头部*/
.header-bottom .header-bottom-title{
	text-align: center;
	padding: 30px 0;
	height: 130px;
}
.header-bottom .header-bottom-title .main-title{
	height: 70px;
	line-height: 70px;
	color: #171717;
	font-size: 36px;
	letter-spacing: 2px;
}
.header-bottom .header-bottom-title .subtitle{
	height: 25px;
	line-height: 25px;
	color: #919191;
	font-size: 16px;
	position: relative;
}
.header-bottom-title .subtitle:before, .header-bottom-title .subtitle:after{
	content: "";
	width: 160px;
	height: 1px;
	background: #626262;
}
.header-bottom-title .subtitle:before{
	position: absolute;
	top: 12px;
	left: -178px;
}
.header-bottom-title .subtitle:after{
	position: absolute;
	top: 12px;
	right: -178px;
}
.header-bottom-title .title-desc{
	height: 40px;
	line-height: 40px;
	color: #171717;
	font-size: 18px;
}
.header-bottom  .header-bottom-content{
	height: 490px;
	position: relative;
}
.header-bottom  .header-bottom-content .content-desc{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
	line-height: 50px;
	background: rgba(0,0,0,0.6);
	text-align: center;
	color: #fff;
	font-size: 18px;
}

/*内容*/
.list-container .list-item-header{
	padding-bottom: 20px;
	box-sizing: border-box;
	height: 120px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.list-container .list-item-header .title{
	font-size: 24px;
}
.list-container .list-item-header .title-btn{
	cursor: pointer;
	display: inline-block;
	margin-left: 25px;
	padding: 0 35px;
	height: 2em;
	line-height: 2em;
	border: 1px solid #d21111;
	font-size: 16px;
	font-weight: 100;
	border-radius: 5px;
}
.list-container .list-item-header .more{
	font-size: 16px;
	cursor: pointer;
}	
.list-container .list-item-content{
	overflow: hidden;
	clear: both;
	width: 100%;
}
.list-container .list-item-content .item-li{
	height: 244px;
	width: 390px;
	position: relative;
	float: left;
	margin-right: 15px;
}
.list-container .list-item-content .item-li:last-child{
	margin-right: 0;
}
.list-container .list-item-content .item-li .item-li-desc{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	background: rgba(0,0,0,0.6);
}

/*表单*/
.form-container{
	margin-top: 60px;
	height: 580px;
	border: 1px solid #d6d6d6;
	box-sizing: border-box;
}
.form-container .form-header{
	height: 190px;
	box-sizing: border-box;
	padding: 58px 0 52px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-flow: column;
}
.form-container .form-header h3{
	font-size: 36px;
	line-height: 1em;
}
.form-container .form-header p{
	color: #5f5f5f;
	font-size: 18px;
	line-height: 1em;
}
.form-container .form-content{
	width: 1075px;
	background: #f5f5f5;
	height: 300px;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 8px 60px 67px;
}
.form-container .form-content ul{
	height: 113px;
	display: flex;
	justify-content: space-between;
	padding-top: 40px;
	box-sizing: border-box;
}
.form-container .form-content ul li{
	height: 100%;
	display: flex;
	justify-content: space-between;
	flex-flow: column;
	width: 290px;
}
.form-container .form-content ul li .title{
	font-size: 18px;
	line-height: 1em;
}
.form-container .form-content ul li .title sup{
	font-size: 12px;
	line-height: 1em;
}
.form-container .form-content ul li .info-box{
	box-sizing: border-box;
	width: 100%;
	height: 45px;
	border: 2px solid #e7e7e7;
	border-radius: 7px;
	outline: none;
	font-size: 16px;
	padding: 0 13px;
}
.form-container .form-content ul li div{
	width: 100%;
	height: 45px;
	display: flex;
	justify-content: space-between;
}
.form-container .form-content ul li div select{
	width: 31%;
	height: 100%;
	box-sizing: border-box;
	border: 2px solid #e7e7e7;
	font-size: 16px;
	border-radius: 6px;
	padding-left: 5px;
	outline: none;
}
.form-container .form-content ul li .submit-btn{
	width: 100%;
	height: 45px;
	border-radius: 5px;
	border: 0;
	background: #d21111;
	color: #fff;
	font-size: 20px;
	outline: none;
	cursor: pointer;
}
.form-container .form-footer{
	height: 88px;
	line-height: 1em;
	box-sizing: border-box;
	padding: 35px 0;
	color: #5f5f5f;
	font-size: 18px;
	text-align: center;
}

/*弹窗*/
.property-popup{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.2);
	z-index: 999;
	display: none;
}
/*参观在建工地弹窗*/
.site-popup{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 660px;
	height: 460px;
	background: #fff;
}
.site-popup h2{
	height: 110px;
	box-sizing: border-box;
	padding: 53px 0 27px;
	text-align: center;
	line-height: 1em;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 2px;
}
.site-popup .site-popup-content{
	height: 320px;
	padding: 0 75px 40px 100px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
}
.site-popup .site-popup-content .roll-box{
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	height: 100%;
	width: 210px;
}
.site-popup .site-popup-content .roll-box h3, .site-popup .site-popup-content .form-box h3{
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	font-weight: 100;
	font-size: 15px;
	color: #7e7e7e;
}
.site-popup .site-popup-content .roll-box h3 em{
	font-style: normal;
	font-size: 20px;
	line-height: 1em;
	color: #d21111;
	text-decoration: underline;
}
.site-popup .site-popup-content .roll-box-list{
	height: 210px;
	overflow: hidden;
}
.site-popup .site-popup-content .roll-box-list ul li{
	height: 38px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	color: #5f5f5f;
	font-size: 15px;
}
.site-popup .site-popup-content .roll-box-list ul li .village-name{
	width: 60%;
}
.site-popup .site-popup-tips{
	font-size: 14px;
	text-align: center;
	line-height: 1em;
	color: #999;
}
.site-popup .site-popup-content .form-box{
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	height: 100%;
	width: 220px;
}
.site-popup .site-popup-content .form-box .form-box-content{
	height: 210px;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
}
.site-popup .site-popup-content .form-box .form-box-content input{
	height: 38px;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #d6d6d6;
    font-size: 15px;
    border-radius: 5px;
    padding: 0 10px;
    outline: none;
}
.site-popup .site-popup-content .form-box .form-box-content button{
	height: 38px;
	border: 0;
	border-radius: 5px;
	line-height: 38px;
	font-size: 18px;
	text-align: center;
	outline: none;
	color: #fff;
	background: #d21111;
	cursor: pointer;
}
/*预约设计师弹窗*/
.scheme-popup{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 420px;
	height: 500px;
	box-sizing: border-box;
	background: #fff;
	background: url("https://www.werkstatt-kollerschlag.com/static/images/important/schemeBg.png");

}
.scheme-popup h3{
	font-weight: 500;
	height: 105px;
	box-sizing: border-box;
	padding: 45px 0 30px;
	font-size: 28px;
	line-height: 1em;
	text-align: center;
}
.scheme-popup .form-content{
	padding: 0 74px;
	height: 280px;
}
.scheme-popup .form-content li{
	width: 100%;
	height: 47px;
	margin-bottom: 23px;
	border: 1px solid #b5b5b5;
	border-radius: 3px;
	box-sizing: border-box;
}
.scheme-popup .form-content li input{
	width: 100%;
	height: 100%;
	border: 0;
	box-sizing: border-box;
	border-radius: 3px;
	outline: none;
	padding: 0 10px;
	font-size: 16px;
}
.scheme-popup .form-content li input[name="userArea"]{
	width: 80%;
	float: left;
	padding-right: 0;
}
.scheme-popup .form-content li input[name="userPhone"]{
	text-align: center;
}
/*.scheme-popup .form-content li input[name="userPhone"]::-webkit-input-placeholder {
	text-align: center;
}*/
.scheme-popup .form-content li span{
	display: inline-block;
	width: 20%;
	line-height: 44px;
	float: left;
	text-align: center;
}
.scheme-popup .form-content li span sup{
	font-size: 12px;
	line-height: 1em;
}
.scheme-popup .form-submit-btn{
	width: 272px;
	height: 50px;
	line-height: 50px;
	border: 0;
	outline: none;
	text-align: center;
	margin: 5px 74px 25px;
	background: #d21111;
	border-radius: 3px;
	color: #fff;
	font-size: 23px;
	cursor: pointer;
}
.scheme-popup .form-tips{
	text-align: center;
	color: #b3b3b3;
	font-size: 14px;
	line-height: 1em;
}