
* {
	padding: 0;
	margin: 0;
}
img {
	display: block;
}
/* 顶部header */
.header {
	height: 78px;
	display: flex;
	justify-content: space-between;
	background: #fff;
	border-bottom: solid 1px #F0F1F3;

	position: sticky;
	top: 0;
	z-index: 10;
}

.logo {
	height: 48px;
	margin: 15px 0 15px 50px;
}

.btn-regist {
	display: block;
	width: 170px;
	height: 78px;
	line-height: 78px;
	background: #0165E5;
	font-family: "PingFang SC-Regular";
	
	font-weight: 400;
	font-size: 18px;
	color: #FFFFFF;
	text-align: center;
	text-decoration: none;
}


.content {
	background: url(../images/bg.png) no-repeat top center;
	padding: 116px 100px;
	background-size: cover;
}
.grid-box {
	max-width: 1500px;
	padding: 0 20px;
	margin: 0 auto;
}
/* banner */
.banner {
	display: flex;
	justify-content: space-between;
	margin-bottom: 110px;
	gap: 10px;
}
.banner .left {
	width: 50%;
}
.banner .left h3 {
	font-weight: 600;
	font-size: 48px;
	color: #000000;
	text-align: left;
	font-style: normal;
	text-transform: none;
	line-height: 67px;
        margin-bottom: 20px;
}

.banner .left .detail {
	font-weight: 400;
	font-size: 18px;
	color: #292929;
	line-height: 28px;
	text-align: left;
	font-style: normal;
	text-transform: none;
	margin-bottom: 25px;
}


.banner .left .btn-download {
	width: 198px;
	line-height: 64px;
	background-color: #0165E5;
	border-radius: 14px 14px 14px 14px;

	font-weight: 600;
	font-size: 20px;
	color: #FFFFFF;
	text-align: left;
	font-style: normal;
	text-transform: none;
	text-indent: 72px;
	background-image: url(../images/vector.svg);
	background-repeat: no-repeat;
	background-position: 46px center;
	margin-bottom: 12px;
}

.banner .left .btn-download a{
	color: #FFFFFF;
    text-decoration:none;
}


.banner .left .tips {
	font-weight: 400;
	font-size: 18px;
	color: #405064;
	text-align: left;
	font-style: normal;
	text-transform: none;
}
.banner .right {
	width: 50%;
}
.banner .right img {
	max-width: 100%;
}
/* 模块列表 */
.modules {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	gap: 24px;
	margin-bottom: 100px;
	flex-wrap: wrap;
}
.modules .item {
	flex: 1 1 calc(25% - 24px);
	background: #f00;
	box-sizing: border-box;
	padding: 24px 30px;
	background: #FFFFFF;
	box-shadow: 0px 4px 8px 0px rgba(123, 140, 159, 0.12);
	border-radius: 12px 12px 12px 12px;
}

.modules .item img {
	width: 44px;
	margin-bottom: 26px;
}
.modules .item dd {
	font-weight: 400;
	font-size: 18px;
	color: #666666;
	line-height: 30px;
	text-align: left;
	font-style: normal;
	text-transform: none;
}
.modules .item .title {
	font-weight: 600;
	font-size: 26px;
	color: #000000;
	line-height: 34px;
	margin-bottom: 16px;

}

/* 日志 */
.logs .title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 39px;
	padding-bottom: 13px;
	border-bottom: 1px #e7edf4 solid;
	margin-bottom: 22px;
}
.logs .title h3 {
	position: relative;
	height: 39px;
	line-height: 39px;
	padding-left: 11px;
}
.logs .title h3::before {
	content: "";
	display: block;
	position: absolute;
	width: 4px;
	height: 22px;
	background: #0165E5;
	top: 8.5px;
	left: 0;
}

.logs .title .more {
	font-weight: 400;
	font-size: 16px;
	color: #0165E5;
	text-align: center;
	font-style: normal;
	text-transform: none;
	text-decoration: none;
}

.list .item {
	display: flex;
	justify-content: flex-start;
	gap: 26px;
}
.list .left {
	width: 110px;
	text-align: right;
	padding-top: 20px;
}

.list .item .left .release {
	font-weight: 600;
	font-size: 24px;
	color: #333333;
}
.list .item .left .date {
	font-weight: 400;
	font-size: 16px;
	color: #9BA1A8;
}

.list .right {
	border-left: #3B6FA6 1px dashed;
	padding: 20px 0 0 26px;
	position: relative;
}
.list .right::before {
	content: "";
	display: block;
	width: 19px;
	height: 19px;
	background: url(../images/group7.png) no-repeat left center;
	position: absolute;
	left: -10px;
	top: 26px;
}

.list .right .sub-title {
	font-weight: 500;
	font-size: 22px;
	color: #333333;
	line-height: 30px;
	margin-bottom: 15px;
}
.list .right .instruction {
	font-weight: 500;
	font-size: 16px;
	color: #333333;
	margin-bottom: 10px;
}
.list .right .description {
	font-weight: 400;
	font-size: 16px;
	color: #343434;
	margin-bottom: 10px;
	position: relative;
	padding-left: 11px;
}
.list .right .description::before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	position: absolute;
	width: 6px;
	height: 6px;
	background: #343434;
	border-radius: 50%;
	left: 0;
	top: 8px;

}

@media (max-width:  1200px) {
	.banner .left {
		width: 70%;
	}
	.banner .right {
		width: 30%;
	}
}

@media (max-width: 1100px) {
	.banner .left {
		width: 100%;
	}

	.banner .right {
		display: none;
	}
	.modules .item {
		flex: 1 0 calc(50% - 80px);
	}
}

@media (max-width: 769px) {
	.banner .left {
		width: 100%;
	}

	.banner .right {
		display: none;
	}
}

@media (max-width: 620px) {
	.modules .item {
		flex: 1 0 100%;
	}
}