@charset "utf-8";
/*Author: BeiYue*/
/*QQ: 964214970*/
/*Telegram: BeiYue88*/
/*==============================================================*/

/* CSS Dl */

/*登录地址----开始--------------------------------------------------------*/
.dlbt_box {
	width: 1200px;
	height: 50px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 100px;
	padding: 0 20px;
	padding-top: 30px;
	box-sizing: border-box;
}

.dlbt_box dt {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.dlbt_box dt img {
	width: 30px;
	height: 30px;
	margin-right: 5px;
}

.dlbt_box dt p {
	color: var(--sc01);
	font-size: 22px;
	font-weight: bold;
}

.dl_box {
	width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 50px;
	padding-top: 10px;
}

.dl_box .dl_list {
	flex: 0 0 calc(50% - 20px);
	background: var(--bai);
	box-shadow: 0 6px 14px rgba(205, 136, 136, 0.2);
	margin: 10px;
	padding: 20px;
	border-radius: 8px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	box-sizing: border-box;
}

.dl_box .highlight {
	flex: 0 0 calc(100% - 20px);
}

.dl_list .dl_list_bt {
	font-size: 20px;
	font-weight: bold;
}

.dl_list .dl_cs_box {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: 10px;
}

.dl_cs_box .dl_cs_list {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 5px auto;
}

.dl_cs_list .dl_cs_ms {
	min-width: 50px;
}

.dl_cs_list .dl_cs_wz {
	width: 100%;
	padding: 5px;
	margin: 0 10px;
	box-sizing: border-box;
	border: solid 1px #e0e0e0;
}

.dl_cs_list .dl_cs_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px 10px;
	border-radius: 4px;
	background: var(--sc01);
	color: var(--bai);
	/* 禁止伸缩 */
	flex-shrink: 0;
	flex-grow: 0;
}

.dl_list .dl_btn_cs {
	width: 100%;
	min-height: 40px;
	border-radius: 6px;
	background: var(--sc01);
	color: var(--bai);
	display: flex;
	justify-content: center;
	align-items: center;
}

.speed-fast {
	color: var(--an01);
}

.speed-medium {
	color: var(--an03);
}

.speed-slow {
	color: var(--sc01);
}

.speed-testing {
	color: var(--an02);
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0% {
		opacity: 0.6;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0.6;
	}
}

/*登录地址----结束--------------------------------------------------------*/

/*媒体查询样式--开始------------------------------------------------------*/
@media only screen and (max-width: 1200px) {
	.dlbt_box {
		width: 100%;
	}

	.dl_box {
		width: 100%;
	}
}

@media only screen and (max-width: 780px) {
    .dlbt_box {
        margin-top: 0;
    }
	.dl_box .dl_list {
		flex: 0 0 calc(100% - 20px);
	}
}