.new {
	box-sizing: border-box;
	padding: 100px 50px;
	background-color: #fff;
	position: relative;
	z-index: 1;
	margin-top: -250px;
	display: flex;
	justify-content: space-between;
}

.newLeft {
	width: 30%;
}

.newLeft>img {
	display: block;
	width: 100%;
}

.scan{
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .8);
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9;
}

.scan span{
	font-size: 30px;
	font-weight: 600;
	color: #fff;
	position: absolute;
	top: 10%;
	right: 5%;
	cursor:pointer;
}

.scan img{
	display: block;
	max-width: 100%;
}

.return {
	display: flex;
	width: 132px;
	height: 132px;
	border-radius: 50%;
	background-color: #3ac4cc;
	justify-content: center;
	align-items: center;
	margin: 60px auto;
	position: relative;
}

.return::after {
	content: '';
	width: 60%;
	height: 60%;
	border: 1px solid #fff;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	border-radius: 50%;
	opacity: 0;
}

.return:hover::after {
	animation: light 1.2s infinite linear;
}

@keyframes light {
	0 {
		transform: scale(1);
		opacity: 0;
	}

	50% {
		transform: scale(1.4);
		opacity: 1;
	}

	100% {
		transform: scale(1.8);
		opacity: 0;
	}
}

.return span {
	display: block;
	width: 80%;
	height: 80%;
	border-radius: 50%;
	border: 1px solid #fff;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	box-sizing: border-box;
	padding: 25px 0;
	text-align: center;
	position: relative;
}

.return span .iconfont {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 22px;
}

.newRight {
	width: 68%;
	box-sizing: border-box;
	border: solid 1px #eeeeee;
}

.news {
	padding: 50px 30px;
}

.news>a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 25px 0 20px;
	border-bottom: 1px solid #e5e5e5;
}

.news a:first-child {
	padding-bottom: 50px;
}

.newTime {
	width: 70px;
}

.newTime p {
	text-align: center;
	font-size: 12px;
	color: #ffffff;
	background-color: #d9d9d9;
	padding: 10px 5px;
}

.news a .newCont {
	width: calc(100% - 90px);
	box-sizing: border-box;
	padding-right: 30px;
}

.news a .newCont h3,
.news a .newCont p {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.newActive .newTime {
	border: solid 1px #3ac4cc;
	text-align: center;
}

.newActive .newTime h3 {
	font-size: 24px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 50px;
	letter-spacing: 0px;
	color: #3ac4cc;
}

.newActive .newTime p {
	font-size: 13px;
	color: #fff;
	background-color: #3AC4CC;
}

.newActive .newCont h3 {
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 0px;
	color: #29a7ae;
}

.newActive .newCont p {
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 24px;
	color: #999999;
}

.newCont h4 {
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 30px;
	letter-spacing: 0px;
	color: #333333;
}

.news a:hover h4 {
	color: #29A7AE;
}

.news a:hover .newTime p {
	background-color: #29A7AE;
}


/* detalis */
.detalis {
	padding: 100px 70px 30px;
}

.detalis h2 {
	font-size: 24px;
	text-align: center;
	color: #222222;
}

.detalis h2 span {
	display: block;
	margin: 35px 0 60px;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 24px;
	color: #999999;
}

.detalis p {
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 26px;
	letter-spacing: 0px;
	color: #666666;
}

.detalis img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

/* screenshot */
.screen {
	padding: 40px 25px;
}

.screnUl {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.screnUl li {
	width: 31%;
	margin-bottom: 40px;
	transition: background .5s;
}

.screnUl li:hover {
	background-color: #3ac4cc;
	box-shadow: 1px 0px 23px 0px rgba(26, 159, 167, 0.25);
}

.screnUl li {
	display: block;
	box-sizing: border-box;
	padding:  10px;
}

.screnMg {
	width: 100%;
	overflow: hidden;
}

.screnMg img {
	display: block;
	width: 100%;
	transition: transform .5s;
}

.screnUl li:hover  img {
	transform: scale(1.1);
}

.screnUl li p {
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 16px;
	padding: 15px 0 0;
	color: #666666;
}

.screnUl li:hover a p {
	color: #fff;
}

/* download */
.newRight.down {
	border: none;
}

.downBox {
	border: solid 1px #eeeeee;
	padding: 60px 80px 80px;
}

.downOne {
	display: flex;
	justify-content: space-between;
}

.downOne li {
	width: 46%;
}

.downOne li p {
	font-size: 14px;
	color: #333333;
	background-color: #f6f6f6;
}

.downOne li p:first-child {
	border-bottom: 1px solid #fff;
}

.downOne li p span {
	padding: 10px 5px 10px 10px;
	display: inline-block;
}

.downOne li p span:last-child {
	border-left: 1px solid #fff;
}

.downLink {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 50px 0;
}

.downLink a {
	display: block;
	width: 177px;
	height: 63px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #ffffff;
}

.link01 {
	background-image: linear-gradient(0deg,
			#3bb132 0%,
			#93df8d 100%);
	border-radius: 10px;
	border: solid 3px #28a41e;
	box-shadow: 1px 0px 3px 0px rgba(22, 137, 13, 0.41);
	margin-right: 45px;
}

.link02 {
	background-image: linear-gradient(0deg,
			#2356d2 0%,
			#4276f6 100%);
	border-radius: 10px;
	border: solid 3px #194abf;
	box-shadow: 1px 0px 3px 0px rgba(16, 60, 167, 0.41);
}

.downLink a img {
	vertical-align: middle;
	margin-right: 5px;
}

.downTips {
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	padding: 15px 0;
	letter-spacing: 0px;
	color: #333333;
	border-top: 1px solid #f6f6f6;
	border-bottom: 1px solid #f6f6f6;
	display: flex;
	justify-content: space-between;
}

.downTips span {
	color: #f60;
}

.xiazai {
	margin-top: 40px;
}

.xiazai h3 {
	width: 100%;
	padding: 10px;
	background-color: #3ac4cc;
	font-size: 16px;
	color: #ffffff;
	box-sizing: border-box;
}

.edition,
.edition th,
.edition td {
	border: 1px solid #eee;
	padding: 10px 0;
}

.edition,
.edition th {
	border-top: none;
}

.edition {
	width: 100%;
	text-align: center;
	padding: 0;
}

.edition th {
	font-size: 14px;
	color: #333333;
}

.edition td {
	font-size: 14px;
	color: #333333;
}

.edition .speed {
	color: #38b530;
	text-decoration: underline;
}

.edition .xunlei {
	color: #2659d3;
	text-decoration: underline;
}

.xiazai ul {
	background-color: #f9f9f9;
	padding: 45px 45px 50px;
}

.xiazai ul li {
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 26px;
	color: #333333;
	margin-bottom: 25px;
}

.xiazai ul li:last-child{
	margin-bottom: 0;
}



@media screen and (max-width:1500px) {
	
	.new {
	    margin-top: -160px;
	}
	
	.screnUl li {
	    width: 33%;
	}
	
	.screnUl li a {
	    padding: 10px;
	}
	
}

@media screen and (max-width:1200px) {
	
	.new {
	    padding: 80px 40px;
	    margin-top: -120px;
	}
	
	.downBox {
	    padding: 30px;
	}
	
	.screnUl li {
		margin-bottom: 15px;
	}
	
}

@media screen and (max-width:1020px) {
	
	.new {
	    padding: 50px 10px;
	    margin-top: -80px;
	}
	
	.downBox {
	    padding: 30px 10px;
	}
	
	.screnUl li {
	    width: 49%;
	}
	
}

@media screen and (max-width:767px) {
	
	.new{
		padding: 30px 10px;
	    margin-top: -60px;
		flex-wrap: wrap;
	}
	
	.news {
		padding: 30px 10px;
	}
	
	.newLeft ,.newRight{
	    width: 100%;
	}
	
	.return {
	    width: 100px;
	    height: 100px;
	    margin: 10px auto;
	}
	
	.return span {
	    display: block;
	    width: 85%;
	    height: 85%;
	    font-size: 13px;
		padding: 20px 0;
	}
	
	.downOne{
		flex-wrap: wrap;
	}
	
	.downOne li{
		width: 100%;
	}
	
	.downOne li p span:first-child{
		width: 100px;
		box-sizing: border-box;
	}
	
	.downLink a {
		height: 50px;
	    font-size: 18px;
	}
	
	.link01 {
	    margin-right: 20px;
	}
	
	.detalis {
	    padding: 30px 10px 10px;
	}
	
	.detalis h2 span {
	    margin: 15px 0 20px;
	    font-size: 14px;
	}
	
	.newCont h4 {
	    font-size: 13px;
	    line-height: 20px;
	}
	
	.screen {
	    padding: 20px 10px;
	}
	
	.screnUl li a {
	    padding: 10px 3px;
	}
	
}