html,
body,
.container {
	height: 100%;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	margin: 0;
	background-color: #FFF;
}

.container {
	display: flex;
	align-items: center;
	background-color: #FFF;
	flex-direction: column;
}

.timeline {
	width: 100%;
	background-color: #FFF;
}

.timeline .swiper-container {
	height: 900px;
	width: 100%;
	position: relative;
}

.timeline .swiper-wrapper {
	transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
}

.timeline .swiper-slide {
	position: relative;
	color: #fff;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.timeline .swiper-slide::after {
	content: "";
	position: absolute;
	z-index: 1;
	right: -115%;
	bottom: -10%;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	box-shadow: -230px 0 150px 60vw rgba(0, 0, 0, 0.7);
	border-radius: 100%;
}

.timeline .swiper-slide-content {
	position: absolute;
	text-align: center;
	width: 80%;
	max-width: 450px;
	right: 50%;
	top: 13%;
	-webkit-transform: translate(50%, 0);
	transform: translate(50%, 0);
	font-size: 12px;
	z-index: 2;
}

.timeline .swiper-slide .timeline-year {
	display: block;
	font-style: italic;
	font-size: 42px;
	margin-bottom: 50px;
	-webkit-transform: translate3d(20px, 0, 0);
	transform: translate3d(20px, 0, 0);
	color: #faeddd;
	font-weight: 300;
	opacity: 0;
	transition: .2s ease .4s;
}

.timeline .swiper-slide .timeline-title {
	font-weight: 800;
	font-size: 34px;
	margin: 0 0 30px;
	opacity: 0;
	-webkit-transform: translate3d(20px, 0, 0);
	transform: translate3d(20px, 0, 0);
	transition: .2s ease .5s;
}

.timeline .swiper-slide .timeline-text {
	line-height: 1.5;
	opacity: 0;
	-webkit-transform: translate3d(20px, 0, 0);
	transform: translate3d(20px, 0, 0);
	transition: .2s ease .6s;
}

.timeline .swiper-slide-active .timeline-year {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	transition: .4s ease 1.6s;
}

.timeline .swiper-slide-active .timeline-title {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	transition: .4s ease 1.7s;
}

.timeline .swiper-slide-active .timeline-text {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	transition: .4s ease 1.8s;
}

.timeline .swiper-pagination {
	right: 15% !important;
	height: 100%;
	display: none;
	flex-direction: column;
	justify-content: center;
	font-style: italic;
	font-weight: 300;
	font-size: 18px;
	z-index: 1;
}

.timeline .swiper-pagination::before {
	content: "";
	position: absolute;
	left: -10px;
	top: 0;
	height: 100%;
	width: 1px;
	background-color: rgba(255, 255, 255, 0.2);
}

.timeline .swiper-pagination-bullet {
	width: auto;
	height: auto;
	text-align: center;
	opacity: 1;
	background: transparent;
	color: #faeddd;
	margin: 15px 0 !important;
	position: relative;
}

.timeline .swiper-pagination-bullet::before {
	content: "";
	position: absolute;
	top: 8px;
	left: -12.5px;
	width: 6px;
	height: 6px;
	border-radius: 100%;
	background-color: #faeddd;
	-webkit-transform: scale(0);
	transform: scale(0);
	transition: .2s;
}

.timeline .swiper-pagination-bullet-active {
	color: #faeddd;
}

.timeline .swiper-pagination-bullet-active::before {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.timeline .swiper-button-next,
.timeline .swiper-button-prev {
	background-size: 20px 20px;
	top: 15%;
	width: 20px;
	height: 20px;
	margin-top: 0;
	z-index: 2;
	transition: .2s;
}

.timeline .swiper-button-prev {
	left: 8%;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23faeddd'%2F%3E%3C%2Fsvg%3E");
}

.timeline .swiper-button-prev:hover {
	-webkit-transform: translateX(-3px);
	transform: translateX(-3px);
}

.timeline .swiper-button-next {
	right: 8%;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23faeddd'%2F%3E%3C%2Fsvg%3E");
}

.timeline .swiper-button-next:hover {
	-webkit-transform: translateX(3px);
	transform: translateX(3px);
}

.swiper-container {
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

@media screen and (min-width: 768px) {
	.timeline .swiper-slide::after {
		right: -30%;
		bottom: -8%;
		width: 240px;
		height: 50%;
		box-shadow: -230px 0 150px 50vw rgba(0, 0, 0, 0.7);
	}

	.timeline .swiper-slide-content {
		right: 30%;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		width: 450px;
		font-size: 11px;
		text-align: right;
	}

	.timeline .swiper-slide .timeline-year {
		margin-bottom: 0;
		font-size: 32px;
	}

	.timeline .swiper-slide .timeline-title {
		font-size: 46px;
		margin: 0;
	}

	.timeline .swiper-pagination {
		display: flex;
	}

	.timeline .swiper-button-prev {
		top: 15%;
		left: auto;
		right: 18%;
		-webkit-transform: rotate(90deg) translate(0, 10px);
		transform: rotate(90deg) translate(0, 10px);
	}

	.timeline .swiper-button-prev:hover {
		-webkit-transform: rotate(90deg) translate(-3px, 10px);
		transform: rotate(90deg) translate(-3px, 10px);
	}

	.timeline .swiper-button-next {
		top: auto;
		bottom: 15%;
		right: 18%;
		-webkit-transform: rotate(90deg) translate(0, 10px);
		transform: rotate(90deg) translate(0, 10px);
	}

	.timeline .swiper-button-next:hover {
		-webkit-transform: rotate(90deg) translate(3px, 10px);
		transform: rotate(90deg) translate(3px, 10px);
	}
}

@media screen and (min-width: 1024px) {
	.timeline .swiper-slide::after {
		right: -20%;
		bottom: -12%;
		width: 240px;
		height: 50%;
		box-shadow: -230px 0 150px 39vw rgba(0, 0, 0, 0.7);
	}

	.timeline .swiper-slide-content {}
}

.clearfix {
	clear: both;
}

nav {
	font-family: Helvetica;
	text-align: right;
	text-transform: uppercase;
	background-color: #FFF;
	height: 68px;
}

nav .menu_list {
	width: 90%;
	max-width: 1024px;
	display: inline;
	float: right;
	list-style-type: none;
}

nav .menu_list.hidden {

	position: absolute;
	top: 68px;
	right: 0;
}

nav .menu_list li {
	display: inline-block;
}

nav .menu_list li a {
	color: #9d9d9d;
	font-weight: bold;
	text-decoration: none;
	display: inline-block;
	padding: 1em;
	box-sizing: border-box;
}

nav .menu_list li a:hover {
	color: #333333;
}

.index-logo {
	display: inline;
	float: left;
	width: 10%;

}

.index-logo img {
	width: 64px;
	padding-top: 6px;

}

.current_page {
	background-color: #2b241a;
}

.current_page a {
	color: #FFF;
}

.current_page a:hover {
	color: #FFF;
}

#menu_button_wrapper {
	display: none;
}

.hidden {
	display: none;
}

.footer {
	color: #000;
	text-align: center;
	font-size: 14px;
	padding: 60px 0;
	background: #FFF;
}

.footer__btn {
	margin-top: 20px
}

.footer__btn a {
	display: inline-block;
	font-size: 18px;
	border: solid 2px #777777;
	border-radius: 1000px;
	padding: 15px 90px;
}



.foot_menu {
	margin: 0 auto;
}

.foot_menu ul {
	margin: 0 auto;
	overflow: hidden;
	max-width: 1100px;
}

.foot_menu li {
	width: 94px;
	float: left;
	margin: 0 20px 50px 20px;
	text-align: center;
}

.foot_menu li p {
	text-align: center;
	float: left;
}

.foot_menu li a {
	float: left;
	text-align: center;
	display: block;
	color: #555;
	font-size: 14px;
	line-height: 24px;
}

.low-main {
	margin-bottom: 80px
}


.silderbox {
	flex-direction: column;
	line-height: 1.5;
}

.silderbox_name {
	margin: 0 auto;
	font-size: 22px;
		font-weight: bold;
	width: 1200px;
	height: 50px;
	color: #FFF;
	overflow: hidden;
	display: inline-block;

}

.vipbg {
	width: 1200px;
	height: 540px;
	margin: 0 auto;
	background: rgba(0, 0, 0, 0);
	color: #FFF;
	overflow: hidden;
	display: inline-block;


}

.vip_1 h2 {
	font-size: 24px;

}

.vip_1 p {
	font-size: 14px;

}

.vip_1 {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}

.vipcard {
	width: 600px;
	text-align: center;
	padding: 10px;
	line-height: 1.5;
}

.vip_2 {
	padding: 60px;
}

.vip_2 p {
	font-size: 14px;
	text-align: left;
}

.vip_3 {
	padding: 20px;
}

.vipicon {
	margin: 0 auto;
	width: 920px;
	display: flex;
	flex-flow: wrap;
	justify-content: flex-start;
}

.vipicon .qy {
	padding: 25px;
}

.vipicon img {
	width: 40px;
}

.vipicon p {
	font-size: 14px;line-height: 6px;
}

.vip_4 {
	width: 920px;
	height: 420px;
	font-size: 14px;
	text-align: left;
	padding: 60px;
}

.vip_4 p{
	margin-left: 20px;
}




.newslist .top {
	position: absolute;
	z-index: 1;
	height: 5px;
	width: 0px;
	top: 0px;
	width: 0px;
}

.newslist .bottom {
	position: absolute;
	z-index: 1;
	height: 5px;
	width: 0%;
	bottom: 0px;
	right: 0px;
}

.newslist .left {
	height: 0;
	position: absolute;
	left: 0px;
	width: 5px;
}

.newslist .right {
	height: 0;
	position: absolute;
	right: 0px;
	width: 5px;
	bottom: 0px;
}



.joinlistmane {

	width: 1200px;
	margin: 0 auto;
	color: #2b241a;
	font-size: 20px;
	padding-left: 60px;
	padding-top: 30px;
	text-align: left;

}

.joinlist {
	width: 100%;
	height: auto;
	margin-top: 350px;
	background: #FFF;
	overflow: hidden;
}

.newslistmore {
	width: 1200px;
	margin: 0 auto;
	color: #aeaeae;
	text-align: center;
}
.newslistmore  a{
	padding: 20px;
	color: #aeaeae;
}.newslistmore  a:hover{
	color: #666;
}

.about_wrapper {
	width: 100%;
	height: 660px;
	overflow: hidden;
}

.about_wrapper section {
	width: calc(100% / 3);
	height: 100%;
	float: left;
	-webkit-filter: grayscale(50%);
	filter: grayscale(50%);
	transition-duration: 0.5s;
	position: relative;
}

.about_wrapper section::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0.6), transparent);
	opacity: 1;
	transition: 0.3s;
}

.about_wrapper section.sec01 {
	background: url(https://images.homeplus.fun/aboutmsw_banner1.png);
}

.about_wrapper section.sec02 {
	background: url(https://images.homeplus.fun/aboutmsw_banner2.png);
}

.about_wrapper section.sec03 {
	background: url(https://images.homeplus.fun/about_banner3.jpg);
}

.about_wrapper section.sec01,
.about_wrapper section.sec02,
.about_wrapper section.sec03 {
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.about_wrapper:hover section:hover {
	width: 40%;
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}

.about_wrapper:hover section:hover::before {
	opacity: 0;
}

.about_wrapper:hover section:not(:hover) {
	width: 30%;
}

.about_wrapper .name_bg {
	color: #FFF;


}

.about_wrapper .name_bg p {
	color: #FFF;
	margin: 200px 40px;
	font-size: 20px;
	padding: 20px;
	background: rgba(255, 255, 255, .3);


}

.solution-box {
	background: rgba(255, 255, 255, .7);
	margin: 0;
}

.solution-cut {
	width: 1560px;
	margin: 0 auto;
	position: relative;
}

.solution-swiper {
	width: 100%;
	overflow: hidden;
}

.solution-box button.fa {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 50px;
	color: rgba(255, 255, 255, .5);
	cursor: pointer;
	border: none;
	font-size: 40px;
	padding: 0;
	transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	-webkit-transition: .3s;
}

.solution-box button.fa:hover {
	color: #fff;
}

.solution-box .fa-back {
	background: url(../img/indexleft.png) no-repeat center;
	right: 100%;
}

.solution-box .fa-more {
	background: url(../img/indexright.png) no-repeat center;
	left: 100%;
}

.solution-box ul {
	width: 10000%;
}

.solution-box ul:after {
	display: block;
	clear: both;
	content: '';
}

.solution-box ul li {
	width: .3%;
	float: left;
	text-align: center;
	color: #fff;
	position: relative;
}

.solution-box ul li span {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .5);
	transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	-webkit-transition: .3s;
}

.solution-box ul li:nth-child(2) span,
.solution-box ul li:nth-child(4) span {
	background: rgba(0, 0, 0, .75);
	transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	-webkit-transition: .3s;
}

.solution-box ul li i {
	font-size: 50px;
	opacity: .85;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 53%;
	transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	-webkit-transition: .3s;
}

.solution-box ul li hr {
	width: 30px;
	height: 2px;
	background: #fff;
	border: none;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: 0 0 0 -15px;
	padding: 0;
	transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	-webkit-transition: .3s;
}

.solution-box ul li h3 {
	font-size: 24px;
	position: absolute;
	width: 100%;
	left: 0;
	top: 53%;
	transition: .3s;
}

.solution-box ul li p {
	width: 80%;
	position: absolute;
	font-size: 16px;
	left: 10%;
	top: 70%;
	opacity: 0;
	transition: .3s;
}

.solution-box ul li a {
	position: absolute;
	top: 85%;
	font-size: 16px;
	line-height: 32px;
	width: 120px;
	margin: 0 0 0 -60px;
	color: #fff;
	border: 2px solid #fff;
	opacity: 0;
	transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	-webkit-transition: .3s;
}

.solution-box ul li a:hover {
	background: #fff;
	color: #373d41;
}

.solution-box ul li img {
	display: block;
	width: 100%;
}

.solution-box ul li:hover span {
	background: rgba(140, 167, 52, 0.5);
}

.solution-box ul li:hover i {
	bottom: 63%;
}

.solution-box ul li:hover hr {
	top: 40%;
	opacity: 0;
}

.solution-box ul li:hover h3 {
	top: 38%;
}

.solution-box ul li:hover p {
	top: 50%;
	opacity: 1;
}

.solution-box ul li:hover a {
	top: 75%;
	opacity: 1;
}

.joinlist {
	width: 100%;
	height: auto;
	margin-top: 20px;
	background: #FFF;
	overflow: hidden;
}

.joinlistname {

	width: 1200px;
	margin: 0 auto;
	color: #2b241a;
	font-size: 20px;
	padding-left: 60px;
	padding-top: 30px;
	text-align: left;

}

.joinbg {
	width: 1200px;
	height: 580px;
	margin: 0 auto;
	background: rgba(0, 0, 0, .4);
	color: #FFF;
	overflow: hidden;
	display: inline-block;


}




.contactbg .addbg {
	width: 900px;
	margin: 0 auto;
	text-align: center;
	padding: 10px;
	font-size: 14px;
	line-height: 1.5;
}



.pro {
	width: 1200px;
	margin: 40px auto;

}

.card-infos a {
	padding-top: 4px;
	overflow: hidden;
	float: right;

}
.wrapper {
  width: 100%;
  height: 100%;
}
.wrapper section {
  width: calc(100% / 3);
  height: 100%;
  float: left;
  -webkit-filter: grayscale(50%);
          filter: grayscale(50%);
  transition-duration: 0.5s;
  position: relative;
}
.wrapper section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), transparent);
  opacity: 1;
  transition: 0.3s;
}
.wrapper section.sec01 {
  background: url(../img/about_banner1.jpg);
}
.wrapper section.sec02 {
  background: url(../img/about_banner2.jpg);
}
.wrapper section.sec03 {
  background: url(../img/about_banner3.jpg);
}
.wrapper section.sec01, .wrapper section.sec02, .wrapper section.sec03 {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.wrapper:hover section:hover {
  width: 40%;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.wrapper:hover section:hover::before {
  opacity: 0;
}
.wrapper:hover section:not(:hover) {
  width: 30%;
}

.alternative {
  display: inline-block;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Lato", Arial, sans-serif;
  letter-spacing: 0.08em;
  line-height: 1;
  font-size: 2.4rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.6em 1em;
}
.alternative a {
  margin-top: 15px;
  font-size: 1.2rem;
  display: block;
  padding: 0.6em 0;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition-duration: 0.3s;
}
.alternative a:hover {
  background: rgba(255, 255, 255, 0.6);
  color: #333;
}

/*响应式*/
@media(max-width:1680px) {
	.solution-cut {
		width: 1480px;
	}

	.solution-box ul li i {
		font-size: 46px;
	}

	.solution-box ul li h3 {
		font-size: 22px;
	}

	.solution-box ul li p {
		font-size: 14px;
	}

	.solution-box ul li a {
		font-size: 14px;
		line-height: 28px;
		width: 100px;
		margin: 0 0 0 -50px;
	}
}

@media(max-width:1600px) {
	.solution-cut {
		width: 1300px;
	}
}

@media(max-width:1440px) {
	.solution-cut {
		width: 1200px;
	}

	.solution-box ul li i {
		font-size: 40px;
	}

	.solution-box ul li h3 {
		font-size: 18px;
	}

	.solution-box ul li p {
		font-size: 12px;
	}
}

@media(max-width:767px) {
	.solution-cut {
		width: 100%;
		padding: 0;
	}

	.solution-box ul li {
		width: 290px;
	}

	.solution-box button.fa {
		display: none;
	}

	.solution-box .fa-back {
		left: 0;
		right: auto;
	}

	.solution-box .fa-more {
		left: auto;
		right: 0;
	}
}

/* Responsive for smaller screens 移动端*/

@media only screen and (max-width: 980px) {
 /* 移动端的样式*/

	.index-logo {
		display: inline;
		float: left;
		width: 10%;

	}

	.index-logo img {
		width: 60px;
		padding-top: 6px;
		padding-left: 6px;

	}

	#menu_button_wrapper {
		display: block;
		padding: 20px 0px 0px;
		color: #9d9d9d;
		-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .1);
		box-shadow: 0 1px 0 rgba(255, 255, 255, .1);
		margin-bottom: .5em;
	}

	#menu_button {
		box-sizing: border-box;
		float: right;
		padding: .4em 1em;
		color: 333;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		background-color: #FFF;
		font-size: 16px;
		line-height: 24px;
	}

	#menu_button:hover {
		cursor: pointer;
		background-color: #FFF;
	}

	#hamburger {
		float: right;
		padding-top: .15em;
	}

	#menu_button span {
		display: block;
		background-color: #aaa;
		width: 1.8em;
		height: .2em;
		border-radius: 2px;
		margin-bottom: .3em;
	}

	.menu a {
		color: #AAAAAA;
	}

	.menu_list {
		margin: 0;
		padding: 0;
		float: left;
		max-height: 0;
		position: absolute;
		top: 44px;
		overflow: hidden;
		transition: all 300ms;
		z-index: 9;
		position: absolute;
		top: 68px;
		right: 0;
	}

	.expand {
		max-height: 552px;

	}

	nav {
		font-family: Helvetica;
		text-align: right;
		text-transform: uppercase;
		background-color: #FFF;
		height: 60px;
	}

	nav .menu_list {
		width: 100%;
		margin: 0 auto;
		padding: 0;
		box-sizing: border-box;

	}

	nav .menu_list li {
		display: block;
		background-color: #333;
	}

	nav .menu_list li a {
		width: 100%;
		color: #FFF;
	}

	nav .menu_list li a:hover {
		width: 100%;
		color: #ccc;
	}

	.footer__btn {
		display: none;
	}

	.foot_menu {
		display: none;
	}

	.footer__address p {
		display: inline-block;

	}
	.swiper-container .contactbg {
		width: 86%;
		height: auto;
		margin: 0 auto;
		background: rgba(0, 0, 0, .4);
		color: #FFF;
		overflow: hidden;
		display: inline-block;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;


	}
	.silderbox_name {
		margin: 0 auto;
		font-size: 22px;
		font-weight: bold;
		width: 86%;
		height: 50px;
		color: #FFF;
		overflow: hidden;
		display: inline-block;

	}
	.about_1 {
		padding: 40px;
		height: 400px;
		color: #FFF;
	}

	.about_1 h2 {
		font-size: 18px;

	}

	.about_1 p {
		font-size: 14px;

	}
	.foot_menu{
		display: none;
	}
	.footer__address{
		width: 86%;
		margin: 0 auto;
	}
	.footer__address p{
		font-size: 12px;
		color: #666;
		line-height: 20px;
	}.footer__address a{
		font-size: 12px;
		color: #666;
		line-height: 20px;
	}
	.footer {
	color: #000;
	text-align: center;
	padding: 10px 0;
	background: #FFF;
	}
	.footer__address img{
    }
    .contactbg .addbg {
	width: 86%;
	margin: 0 auto;
	text-align: center;
	padding: 10px;
	font-size: 14px;
	line-height: 1.5;
	}
	.jobbg {
		width: 86%;
		height: 440px;
		margin: 0 auto;
		background: rgba(0, 0, 0, .4);
		color: #FFF;
		overflow: hidden;
		display: inline-block;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;


	}
	.jobbg .addbg {
		width: 86%;
		margin: 0 auto;
		text-align: left;
		padding: 10px;
		font-size: 14px;
		line-height: 1.5;
	}.joinbg {
		width: 86%;
		margin: 0 auto;
		background: rgba(0, 0, 0, .4);
		color: #FFF;
		overflow: hidden;
		display: inline-block;


	}.joinbg img {
		width: 90%;
		padding: 30px;
	}
	.newslistname {

		width:100%;
		margin: 0 auto;
		color: #2b241a;
		font-size: 20px;
		padding-top: 30px;
		text-align: center;

	}.newslist .box {
		width: 86%;
		margin: 0 auto;
		overflow: hidden;
	}
	.newslist ul{
		list-style-type: none;
		padding: 0px;
		margin: 0px;
	}
	.newslist .box li {
		width: 90%;
		height: 200px;
		overflow: hidden;
		margin: 10px;
		float: left;
		position: relative;
		cursor: pointer;
		background: #f6f6f6;
	}
	.newslist {
	width: 100%;
	height: auto;
	margin-top: 50px;
	background: rgba(255, 255, 255, .7);;
	overflow: hidden;
}
.newslist .box li img {
	width: 97%;
	height: 97%;
	position: absolute;
	z-index: 1;
	top: 5px;
	left: 5px;
	bottom:5px;
	right:5px;
}

.newslist .box li p {
	position: absolute;
	z-index: 2;
	background: rgba(43, 36, 26, 0.5);
	height: 0px;
	line-height: 40px;
		width: 60%;
	text-align: center;
	color: #fff;
	bottom: 5px;
	left: 5px;
}


}
@media screen and (min-width: 981px) {
	 /* PC端的样式*/ 

	.contactbg {
		width: 1000px;
		margin: 0 auto;
		background: rgba(0, 0, 0, 0);
		color: #FFF;
		overflow: hidden;
		display: inline-block;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		padding: 50px;


	}
	.about_1 {
		width: 1000px;
		height: 400px;
		color: #FFF;
		text-align: left;
	}

	.about_1 h2 {
		font-size: 18px;

	}

	.about_1 p {
		font-size: 16px;
		line-height: 34px;
		text-indent: 2em;

	}
	.footer {
	color: #000;
	text-align: center;
	font-size: 14px;
	padding: 60px 0;
	background: #FFF;
	}
	.footer__address {
	margin: 0 auto;
	max-width: 1100px;
	display: flex;
	justify-content: space-between;

	}
	.footer__address a{
		color: #666;
	}
    .footer__address img{
    	display: none;
    }.jobbg {
	width: 1000px;
	height: 480px;
	margin: 0 auto;
	background: rgba(0, 0, 0, .4);
	color: #FFF;
	overflow: hidden;
	display: inline-block;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
		padding: 50px;


	}

	.jobbg .addbg {
		width: 900px;
		margin: 0 auto;
		text-align: left;
		padding: 10px;
		font-size: 14px;
		line-height: 1.5;
	}.joinbg img {
		width: 920px;
		padding: 30px;
	}.newslistname {

		width: 1200px;
		margin: 0 auto;
		color: #2b241a;
		font-size: 20px;
		padding-left: 60px;
		padding-top: 30px;
		text-align: left;

	}.newslist .box {
		width: 1200px;
		margin: 20px auto;
		overflow: hidden;
	}.newslist .box li {
		width: 380px;
		height: 200px;
		overflow: hidden;
		margin: 10px;
		float: left;
		position: relative;
		cursor: pointer;
		background: #f6f6f6;
	}.newslist {
	width: 100%;
	height: auto;
	margin-top: 350px;
	background: #FFF;
	overflow: hidden;
}
.newslist .box li img {
	width: 370px;
	height: 190px;
	position: absolute;
	z-index: 1;
	top: 5px;
	left: 5px;
}

.newslist .box li p {
	position: absolute;
	z-index: 2;
	background: rgba(110, 100, 90, 0.8);
	height: 0px;
	line-height: 40px;
	width: 370px;
	text-align: center;
	color: #fff;
	bottom: 5px;
	left: 5px;
}
.vip_2 table{
	font-size: 12px;border-spacing:0;border-top:1px solid #666;border-left:1px solid #666;
}
.vip_2 table td{border-bottom:1px solid #666;border-right:1px solid #666;

}
.joblist{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-left:20px; 

}.jobbox{

	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 10px 24px;
}
.joblist:hover{
     cursor: pointer;
	background: url(https://images.homeplus.fun/jobicon5.png) no-repeat right;
	background-size:40px;

}
.jobbox img{
width: 40px;
padding: 10px;
}
.joblist span{
	font-size: 16px;
	font-weight: bold;
	}
	.jobnav{

padding: 10px;
	border-left: 1px solid #999;
	}
	.jobbg .addbg h3{
		text-align: center;

	}
	.newspart{

	width: 1200px;
		margin: 0 auto;
		color: #2b241a;
		padding-left: 60px;
		padding-top: 30px;
		text-align: left;
	}
	.newstitle{

	width: 1200px;
	margin: 0 auto;
	color: #333;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	}
	.addbg table{
		width: 860px;
	font-size: 12px;border-spacing:0;border-top:1px solid #666;border-left:1px solid #666;
}
.addbg table td{border-bottom:1px solid #666;border-right:1px solid #666;

}
}