html, body{
    overflow-x: hidden;
}
html, body, * {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
header {
	width: 100%;
	position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
	overflow: hidden;
}
header img {
	width: 100%;
}
.container {
	background-color: #fff;
	background-image: url(../picture/bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 100vh!important;
    justify-content: space-between;
    align-items: center;	
}
.container-info{
	position: relative;
	flex-direction: column;
	height: auto;
}
.wrapper{
    display: flex;
    width: 75%;
    max-width: 780px;
    background-color: #e4e4e4;
}
.wrapper-info{
	width: 80%;
    max-width: 1200px;
    background-image: url(../picture/info-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 0;
    position: relative;
}
.wrapper-info .lt-zhou{
	position: absolute;
    top: -4%;
    left: -20px;
    height: 100%;
}
.wrapper-info .rt-zhou{
	position: absolute;
    top: -4%;
    right: -20px;
    height: 100%;
}
.wrapper-info .lt-zhou img, .wrapper-info .rt-zhou img{
	height: 108%;
}
.lt-content{
    background-image: url(../picture/lt-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 48%;
    padding: 50px 40px;
}
.rt-content{
    background-image: url(../picture/rt-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 52%;
}
.lt-content h1 {
	color: #c1222f!important;
	text-align: center;
	margin: 0 0 25px!important;
	font-size: 24px!important;
}
.input-group {
	margin-bottom: 20px;
}
input {
	width: 100%;
	padding: 12px;
	border: none;
	background: #d6ad77;
	border-radius: 4px;
	font-size: 16px;
}
input::placeholder{
	color: #7a0b17;
}
button {
	width: 100%;
	padding: 12px;
	background-color: #c1222f;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}
button:hover {
	background-color: #cc2d3a;
}
footer {
	width: 100%;
	text-align: center;
    color: #fff;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    overflow: hidden;
}
.container-info header{
}
.container-info header, .container-info footer{
	position: relative;
}
.container-info h1{
	font-size: 32px;
    color: #fff;
    margin: -20px 0 20px;
}

/*内容*/

.info-section {
	background-color: #f0ece7;
    background-image: url(../picture/logo-min.png);
    background-position: center;
    background-size: 240px;
    background-repeat: no-repeat;
    width: 70%;
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 25px;
}
.tp-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.tp-img{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 22%;
    max-width: 140px;
    margin-right: 4%;
    padding-top: 180px;
}
.tp-intro{
    width: 78%;
}
.info-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
.last{
	margin-bottom: 0;
}
.info-item {
	flex: 0 0 49%;
	display: flex;
	align-items: center;
	border-bottom: 2px solid #b2977c;
	padding: 5px 0;
	font-size: 18px;
	color: #b2977c;
}
.info-label {
	flex: 0 0 25%;
	font-weight: 500;
	margin-right: 10px;
}
.info-content {
	flex: 1;
	color: #7a0b17;
	text-align: center;
}
.divider {
	height: 1px;
	background: #ccc;
	margin: 25px 0;
}
.full-width {
	flex-basis: 100% !important;
}
.m-visible{
	    display: none;
	}

/* 自适应 */

@media screen and (max-width: 768px){
	.wrapper{
		flex-direction: column-reverse;
	}
	.container{
	    height: auto!important;
	}
	.container-info header{
	    width: 200%;
	}
	.wrapper-info{
	    width: 88%;
	    padding: 80px 0;
	}
	.lt-zhou{
	    margin-bottom: -10px;
        z-index: 9;
	}
	.rt-zhou{
	    margin-top: -10px;
        z-index: 9;
	}
	.lt-zhou img, .rt-zhou img{
	    width: 95%;
	    margin: 0 auto;
	}
	.info-section{
	    width: 90%;
	    padding: 40px 15px;
	}
	.lt-content, .rt-content{
		width: 100%;
	}
	.rt-content{
		padding-top: 55%;
	}
	.tp-content{
	    align-items: flex-end;
	    margin-bottom: 15px;
	}
	.tp-img{
	    width: 35%;
	    padding-top: 140px;
	    margin-right: 15px;
	}
	.tp-intro{
	    flex: 1;
	}
	.info-row{
	    flex-wrap: wrap;
	    margin-bottom: 0;
	}
	.info-item{
	    flex: 0 0 100%;
	    margin-bottom: 15px;
	    font-size: 16px;
	}
	.m-last{
	    margin-bottom: 0;
	}
	.info-label{
	    flex: 0 0 40%;
	}
	.m-hidden{
	    display: none;
	}
	.m-visible{
	    display: flex;
	}
}
@media screen and (max-width: 500px){
	.wrapper{
        width: 85%;
	}
	
	.lt-content{
		padding: 30px 20px;
	}
	.rt-content{
		padding-top: 75%;
	}
}