body{
	width: 100%;
	height: 100%;
}
*{
	margin: 0;padding: 0;
}
.bar{
	height: 100vh;
	position: relative;
}
.bar .left{
	width: 60%;
	position: absolute;
	left: 0;
	bottom: 0;
}
.bar .left img{
	width: 100%;
	display: block;
}
.bar .right p{
	font-size: 16px;
	color: #1a1a1a;
	line-height: 2.2;
	text-indent: 2em;
	width: 40%;
	position: absolute;
	right: 0;
	top: 46%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	padding:0 5%;
	box-sizing: border-box;
}
.bar .right p span{
	display: block;
	margin: 2.5% 0;
}
ul{
	display: flex;
	justify-content: space-between;
	position: absolute;
	right: 5%;
	bottom: 2%;
	width: 30%;
}
ul li{
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #333;
	margin: 20px 0;
	opacity: 0.8;
}
ul li img{
	width: 22px;
	margin-right: 10px;
}
ul li a{
	color: #333;
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #333;
}
ul li:hover a{
	border-color: #fff;
}
@media(max-width: 1550px) {
.bar ul{
	width: 35%;
}
}
@media(max-width: 767px) {
.bar .right p{
	position: static;
	width: 100%;
	-webkit-transform: translateY(-0%);
    transform: translateY(-0%);
	padding-top: 10%;
	font-size: 14px;
	line-height: 2;
}
.bar .left{
	width: 100%;
}
.bar ul{
	position: static;
	width: 100%;
	padding:0 5%;
	box-sizing: border-box;
	display: block;
}
.bar ul li img{
	width: 20px;
}
}