* {
	margin: 0;
	padding: 0;
}



.news_body {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.news_box {
	width: calc(100% - 3.6rem);
	flex-shrink: 0;
}



/* 新闻列表 */
.news_group {
	width: 100%;
	margin-top: 0.3rem;
	padding-bottom: 0.15rem;
	border-bottom: 0.01rem solid #ccc;
}
.news_group ul {
	list-style: none;
}
.news_group li {
	padding-bottom: 0.15rem;
	display: flex;
	align-items: flex-start;
	font-size: 0.16rem;
	line-height: 1.5;
	color: #333;
}
.news_group a {
	width: calc(100% - 1rem);
	padding-left: 0.16rem;
	position: relative;
}
.news_group a::before {
	content: "";
	width: 0.04rem;
	height: 0.04rem;
	border-radius: 50%;
	background: #333;
	position: absolute;
	left: 0.03rem;
	top: 50%;
	transform: translateY(-50%);
}
.news_group a:hover {
	color: #0063c4;
}
.news_group a:hover::before {
	background: #0063c4;
}
.news_group span {
	flex-shrink: 0;
	margin: 0 0 0 auto;
	font-size: 0.14rem;
	line-height: 1.5;
	color: #999;
	text-align: right;
	white-space: nowrap;
}



/* 排行榜列表 */
.ranking_group {
	width: 100%;
	margin-top: 0.3rem;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.ranking_item {
	width: 100%;
	padding-bottom: 0.2rem;
	border-bottom: 0.01rem solid #EAEAEA;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.ranking_item .rank_badge {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ranking_item:nth-child(1) .rank_badge {
	background: url(../img/ranking_one.png) no-repeat center center;
	background-size: contain;
}
.ranking_item:nth-child(2) .rank_badge {
	background: url(../img/ranking_tow.png) no-repeat center center;
	background-size: contain;
}
.ranking_item:nth-child(3) .rank_badge {
	background: url(../img/ranking_three.png) no-repeat center center;
	background-size: contain;
}
.ranking_item:nth-child(1) .rank_badge span,
.ranking_item:nth-child(2) .rank_badge span,
.ranking_item:nth-child(3) .rank_badge span {
	display: none;
}
.ranking_item .rank_badge span{
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #B4B4B4;
	border: 3px solid #D6D6D6;
	font-family: "Open Sans";
	font-size: 0.11rem;
	color: #fff;
}
.ranking_item .rank_cont {
	width: calc(100% - 40px);
	display: flex;
	flex-direction: column;
	gap: 0.05rem;
}
.ranking_item .rank_title {
	display: block;
	width: 100%;
	font-size: 0.18rem;
	line-height: 1.45;
	color: #333;
}

.rank_title:hover {
	color: #0063c4;
}

.rank_meta {
	display: flex;
	align-items: center;
	gap: 0.2rem;
	font-size: 0.14rem;
	line-height: 1.45;
	color: #999;
	white-space: nowrap;
}

.rank_intro {
	width: 100%;
	margin-top: 0.05rem;
	font-size: 0.14rem;
	line-height: 1.71;
	color: #666;
}




/* 视频列表 */
.news_body:has(.video_list) {
	display: block;
}
.video_top {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.video_top .video_search {
	width: 3.5rem;
	display: flex;
	align-items: center;
	border-radius: 0.03rem;
	border: 0.01rem solid #EAEAEA;
	background: #F7F7F7;
	overflow: hidden;
}
.video_top .video_search input {
	width: calc(100% - 0.35rem);
	height: 100%;
	background: none;
	font-size: 0.12rem;
	padding:0 0.1rem;
	line-height: 1.5;
	color: #333;
	border: none;
	outline: none;
}
.video_top .video_search input::placeholder {
	color: #9F9F9F;
}
.video_top .video_search button{
	width: 0.35rem;
	height: 0.35rem;
	border: none;
	background: url(../img/search2.png) no-repeat center center;
	background-size: contain;
	cursor: pointer;
}


.video_list {
	width: 100%;
	margin-top: 0.3rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.2rem;
}
.video_item {
	width: calc(25% - 0.15rem);
	background: #f5f5f5;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: var(--s_tran);
}

.video_item:hover {
	background: #fff;
	box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.25);
}

.video_pic {
	width: 100%;
	aspect-ratio: 305 / 171;
	flex-shrink: 0;
	overflow: hidden;
}

.video_pic img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.video_info {
	width: 100%;
    min-height: 1.43rem;
    height: 100%;
    padding: 0.12rem 0.15rem 0.16rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.2rem;
}

.video_title {
	width: 100%;
	font-size: 0.16rem;
	line-height: 1.5;
	color: #333;
}

.video_title:hover {
	color: #0063c4;
}

.video_btn {
	padding: 0.05rem 0.1rem;
	border-radius: 0.03rem;
	background: linear-gradient(90deg, #0063c4 0%, #00c27f 100%);
	font-size: 0.14rem;
	line-height: 1.5;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
}





/* 企业列表 */
.org_list {
	width: 100%;
	margin-top: 0.3rem;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.org_item {
	width: 100%;
	min-height: 1rem;
	padding-bottom: 0.2rem;
	border-bottom: 0.01rem solid #EAEAEA;
	display: flex;
	align-items: flex-start;
	gap: 0.1rem;
}

.org_item + .org_item {
	padding-top: 0.2rem;
}

.org_logo {
	width: 0.8rem;
	height: auto;
	aspect-ratio: 1/1;
	display: block;
	flex-shrink: 0;
	overflow: hidden;
	background: #fff;
}

.org_logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.org_cont {
	width: calc(100% - 0.9rem);
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.06rem;
}

.org_title {
	width: 100%;
	font-family: "SourceHanSansCN";
	font-size: 0.18rem;
	line-height: 1.5;
	color: #333;
}

.org_title:hover {
	color: #0063c4;
}

.org_intro {
	width: 100%;
	display: block;
	font-family: "SourceHanSansCN";
	font-size: 0.14rem;
	line-height: 1.71;
	color: #666;
}

.org_intro a {
	color: #666;
	text-decoration: underline;
	text-underline-offset: 0.02rem;
}

.org_intro a:hover {
	color: #0063c4;
}

.org_date {
	font-family: "SourceHanSansCN";
	font-size: 0.14rem;
	line-height: 1.45;
	color: #999;
	white-space: nowrap;
}


/* 培训信息列表 */
.Training .org_item .org_logo{
	width: 1.2rem;
	height: auto;
	aspect-ratio: 4/3;
	overflow: hidden;
}
.Training .org_item .org_logo img{
	object-fit: cover;
}
.Training .org_item .org_cont{
	gap: 0.1rem;
}





/* 资源下载列表 */
.down_fl{
	width: calc(100% - 3.6rem);
}
.download_list{
	margin-top: 0.3rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.2rem;
}
.download_list .down_item{
	width: 100%;
	height: auto;
	padding: 0.15rem 0.2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 0.03rem;
	background: #F7F7F7;
	color: #333;
	font-family: "SourceHanSansCN";
	font-size: 0.16rem;
	font-weight: 400;
	cursor: pointer;
}
.download_list .down_item span{
	font-size: 0.14rem;
	border-radius: 0.03rem;
	background: var(--Color, #0063C4);
	color: #fff;
	padding: 0.05rem 0.12rem;
}
.download_list .down_item:hover{
	color: #0063C4;
}
.download_list .down_item p {
	min-width: 0;
	margin: 0;
}
.topic_empty {
	width: 100%;
	margin: 0.3rem 0;
	padding: 0.24rem;
	background: #f7f7f7;
	color: #999;
	font-size: 0.16rem;
	line-height: 1.5;
	text-align: center;
}




/* 下载弹窗 */
.download_popup{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 9;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 0.2rem;
}

.download_dialog {
	width: 94%;
	max-width: 5rem;
	min-height: 3.33rem;
	padding: 0.45rem 0.5rem 0.4rem;
	border: 0.01rem solid #0063c4;
	border-radius: 0.1rem;
	background: linear-gradient(167deg, #bfdbff 11%, #fff 56%);
	position: relative;
	font-family: "SourceHanSansCN";
	color: #333;
}

.download_close {
	width: 0.16rem;
	height: 0.16rem;
	border: none;
	background: none;
	position: absolute;
	right: 0.14rem;
	top: 0.14rem;
	cursor: pointer;
}

.download_close::before,
.download_close::after {
	content: "";
	width: 0.18rem;
	height: 0.02rem;
	background: #666;
	position: absolute;
	left: 50%;
	top: 50%;
	transform-origin: center;
}

.download_close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.download_close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.download_dialog h2 {
	font-size: 0.18rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	color: #333;
}

.download_tips {
	margin-top: 0.1rem;
	font-size: 0.14rem;
	line-height: 1.5;
	text-align: center;
	color: #666;
}

.download_form {
	margin-top: 0.2rem;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 0.2rem 0.04rem;
	font-size: 0.16rem;
	line-height: 1.5;
	color: #000;
}

.download_form label {
	white-space: nowrap;
}

.download_form input {
	width: 100%;
	height: 0.36rem;
	padding: 0 0.1rem;
	border: 0.01rem solid #dadada;
	border-radius: 0.05rem;
	background: rgba(255, 255, 255, 0.5);
	font-family: "SourceHanSansCN";
	font-size: 0.14rem;
	color: #333;
}

.download_form input::placeholder {
	color: #999;
}

.download_submit {
	grid-column: 1 / -1;
	justify-self: center;
	width: 0.8rem;
	height: 0.31rem;
	border: none;
	border-radius: 0.03rem;
	background: #0063c4;
	font-family: "SourceHanSansCN";
	font-size: 0.14rem;
	line-height: 1.5;
	text-align: center;
	color: #fff;
	cursor: pointer;
}
.download_submit:hover {
	background: #00529b;
}
.download_contact {
	margin-top: 0.2rem;
	padding-top: 0.2rem;
	border-top: 0.01rem solid #E5E5E5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.2rem;
	font-size: 0.14rem;
	line-height: 1.5;
	color: #666;
	white-space: nowrap;
	font-weight: 400;
}

.download_contact p {
	display: flex;
	align-items: center;
}

.download_contact strong {
	font-weight: 500;
	color: #333;
}





/* 新闻详情 */
.news_view {
	display: flex;
	flex-direction: column;
}

.news_title {
	width: 100%;
	margin-top: 0.3rem;
	margin-bottom: 0.2rem;
	font-family: "SourceHanSansCN";
	font-size: 0.32rem;
	line-height: 1.25;
	font-weight: bold;
	color: #333;
}

.news_key {
	width: 100%;
	padding-bottom: 0.2rem;
	border-bottom: 0.01rem solid #EAEAEA;
	display: flex;
	align-items: center;
	gap: 0.2rem;
	font-family: "SourceHanSansCN";
	font-size: 0.14rem;
	line-height: 1.5;
	color: #999;
}

.news_key .key_item {
	display: flex;
	align-items: center;
	white-space: nowrap;
}

.news_key .key_item a {
	width: 0.22rem;
	height: 0.22rem;
	display: block;
	margin-right: 0.1rem;
}

.news_key .key_item img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.view_box {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.4rem;
	margin-top: 0.3rem;
}

.view_left {
	width: calc(100% - 3.6rem);
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.view_detail {
	width: 100%;
	font-family: "SourceHanSansCN";
	font-size: 0.16rem;
	/*line-height: 2.12;*/
	color: #333;
}

/*.view_detail *{*/
/*    font-size: 0.16rem!important;*/
/*	line-height: 1.75 !important;*/
/*	color: #333!important;*/
/*}*/

strong,
strong *{
    font-weight: bold!important;
}

.view_detail img {
    width: revert-layer;
    height: auto;
    max-width: 100%;
    display: inline-block;
}
.view_detail p {
	/*margin-bottom: 0.1rem;*/
}
.view_detail strong {
	font-weight: 500;
}



.view_tags {
	width: 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.1rem;
	font-family: "SourceHanSansCN";
	font-size: 0.14rem;
	line-height: 1.6;
	color: #333;
}
.view_tags span {
	white-space: nowrap;
}
.view_tags a {
	padding: 0.03rem 0.1rem 0.04rem;
	border: 0.01rem solid rgba(0, 99, 196, 0.4);
	border-radius: 0.2rem;
	color: #333;
	white-space: nowrap;
}

.view_tags a:hover {
	border-color: #0063c4;
	color: #0063c4;
}

.view_page {
	width: calc(100% - 0.3rem);
	padding: 0.2rem 0 0;
	border-top: 0.01rem solid #EAEAEA;
	display: flex;
	flex-direction: column;
	font-size: 0.16rem;
	line-height: 1.5;
	color: #777;
}
.view_page a{
	margin-bottom: 0.1rem;
}
.view_page a:hover {
	color: #333;
}


.view_related {
	width: 100%;
	padding: 0.15rem;
	background: rgba(172, 195, 208, 0.11);
}

.rel_head {
	width: 100%;
	padding-bottom: 0.1rem;
	border-bottom: 0.01rem solid #CCC;
}

.rel_head strong {
	width: fit-content;
	height: 0.4rem;
	padding: 0.05rem 0.15rem;
	border-radius: 0.03rem;
	background: linear-gradient(90deg, #0063c4 0%, #00c27f 100%);
	display: flex;
	align-items: center;
	font-family: "SourceHanSansCN";
	font-size: 0.2rem;
	line-height: 1.5;
	font-weight: 500;
	color: #fff;
}

.view_related ul {
	width: 100%;
	padding-top: 0.12rem;
	list-style: none;
}

.view_related li {
	width: 100%;
	padding-bottom: 0.15rem;
	display: flex;
	align-items: flex-start;
	gap: 0.2rem;
	font-family: "SourceHanSansCN";
	font-size: 0.16rem;
	line-height: 1.5;
	color: #333;
}
.view_related a {
	width: calc(100% - 1.1rem);
	padding-left: 0.18rem;
	position: relative;
}

.view_related a::before {
	content: "";
	width: 0.04rem;
	height: 0.04rem;
	border-radius: 50%;
	background: currentColor;
	position: absolute;
	left: 0.04rem;
	top: 0.1rem;
}
.view_related a:hover {
	color: #0063c4;
}
.view_related span {
	flex-shrink: 0;
	margin-left: auto;
	font-size: 0.14rem;
	line-height: 1.5;
	color: #999;
	text-align: right;
	white-space: nowrap;
}



/* 关于我们 */
.about_us{
	width: 100%;
	margin-top: 0.3rem;
}
.about_us .about_title{
	font-size: 0.2rem;
	line-height: 1.5;
	font-weight: 700;
	color: #0063C4;
	margin-bottom: 0.2rem;
}
.about_us .about_title.center{
	text-align: center;
}
.about_us .about_content{
	color: #333;
	font-family: "SourceHanSansCN";
	font-size: 0.16rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2;
	margin-bottom: 0.5rem;
}
.about_us .about_content img {
    width: revert-layer;
    height: auto;
    max-width: 100%;
    display: inline-block;
}



/* 联系我们 */
.contact_us {
	width: 100%;
	margin-top: 0.5rem;
}

.contact_top {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.3rem;
}

.contact_info {
	width: 7rem;
	padding-top: 1.3rem;
	flex-shrink: 0;
}

.contact_info h2 {
	font-family: "SourceHanSansCN";
	font-size: 0.28rem;
	line-height: 1.5;
	font-weight: 700;
	color: #0063c4;
}

.contact_addr {
	margin-top: 0.2rem;
	font-family: "SourceHanSansCN";
	font-size: 0.16rem;
	line-height: 1.5;
	color: #333;
}

.contact_line {
	width: 100%;
	height: 0.01rem;
	margin-top: 0.2rem;
	background: #EAEAEA;
}

.tzxhInfo{
    margin-top: 0.4rem;
}

.tzxhInfo h2{
    font-family: "SourceHanSansCN";
    font-size: 0.28rem;
    line-height: 1.5;
    font-weight: 700;
    color: #0063c4;
}

.contact_methods {
	width: 100%;
	margin-top: 0.2rem;

}

.contact_method+.contact_method{
    margin-top: 0.15rem;
}


.contact_method {

	font-family: "SourceHanSansCN";
	color: #333;
}

.contact_method span {
	font-size: 0.16rem;
	line-height: 1.5;
}

.contact_method strong {
    font-weight: 400 !important;
	color: #333;
	white-space: nowrap;
}

.contact_pic {
	width: 4.5rem;
	height: 5rem;
	flex-shrink: 0;
	overflow: hidden;
}

.contact_pic img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.contact_form_box {
	width: 100%;
	margin-top: 0.5rem;
	padding: 0.6rem 0.5rem;
	background: #f6f6f6;
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.contact_form_intro {
	width: 3.8rem;
	flex-shrink: 0;
}

.contact_form_intro img {
	width: 0.8rem;
	height: 0.8rem;
	display: block;
	object-fit: contain;
}

.contact_form_intro h3 {
	margin-top: 0.27rem;
	font-family: "SourceHanSansCN";
	font-size: 0.28rem;
	line-height: 1.5;
	font-weight: 700;
	color: #0063c4;
}

.contact_form_intro p {
	margin-top: 0.18rem;
	font-family: "SourceHanSansCN";
	font-size: 0.16rem;
	line-height: 1.875;
	color: #666;
}

.contact_form {
	flex: 1;
	min-width: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.2rem;
}

.contact_field {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	font-family: "SourceHanSansCN";
	font-size: 0.16rem;
	line-height: 1.5;
	color: #333;
}

.contact_field label {
	white-space: nowrap;
}

.contact_field em {
	margin-right: 0.02rem;
	font-style: normal;
	color: #f00;
}

.contact_field input,
.contact_field textarea {
	width: 100%;
	border: 0.01rem solid #dedede;
	border-radius: 0.03rem;
	background: #fff;
	font-family: "SourceHanSansCN";
	font-size: 0.14rem;
	color: #333;
}

.contact_field input {
	height: 0.5rem;
	padding: 0 0.15rem;
}

.contact_field textarea {
	height: 1.8rem;
	padding: 0.11rem 0.15rem;
	resize: none;
}

.contact_field input::placeholder,
.contact_field textarea::placeholder {
	color: #a6a6a6;
}

.contact_code .code_inner {
	width: 100%;
	position: relative;
}

.contact_code input {
	padding-right: 1.12rem;
}

.contact_code button {
	width: 0.9rem;
	height: 0.31rem;
	border: none;
	border-radius: 0.03rem;
	background: #0063c4;
	position: absolute;
	right: 0.04rem;
	top: 50%;
	transform: translateY(-50%);
	font-family: "SourceHanSansCN";
	font-size: 0.14rem;
	color: #fff;
	cursor: pointer;
}

.contact_message {
	grid-column: 1 / -1;
}

.contact_submit {
	width: fit-content;
	min-width: 0.8rem;
	height: 0.4rem;
	padding: 0.05rem 0.2rem;
	border: none;
	border-radius: 0.03rem;
	background: linear-gradient(90deg, #0063c4 0%, #00c27f 100%);
	font-family: "SourceHanSansCN";
	font-size: 0.16rem;
	font-weight: 500;
	line-height: 1.5;
	color: #fff;
	cursor: pointer;
}

.class-wrap{
    display: flex;
    gap:0.2rem;
    flex-wrap: wrap;
     margin-top: 0.3rem;
}

.class-wrap .item{
    width: 3.05rem;
    height: 1.9rem;
    padding:0.2rem;
    background: #FFF;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
    transition: all 0.6s;
    
}

.imgBox{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.class-wrap .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.class-wrap .item:hover{
    background: linear-gradient(180deg, #0063C4 0%, #00C27F 100%);
}

.class-wrap .item:hover img{
    transform: scale(1.1) rotate(3deg);
}
.f-panzoom__viewport>.f-panzoom__content {
    width: 80% !important;
    height: 80% !important;
    margin: 10% auto;
}

@media (max-width: 1042px) {
    .class-wrap .item{
        width: calc(50% - 0.1rem);
    }
	/* 新闻列表 */
	.news_group {
		margin-top: 0.2rem;
	}
	.news_body {
		display: block;
	}
	.news_box,
	.news_group {
		width: 100%;
	}
	.news_group li {
		height: auto;
		min-height: 0.39rem;
		gap: 0.2rem;
	}
	.news_group a {
		width: auto;
		flex: 1;
	}



	/* 排行榜列表 */
	.ranking_group {
		margin-top: 0.2rem;
	}

	.ranking_item {
		gap: 0.1rem;
	}

	.rank_cont {
		width: calc(100% - 0.4rem);
	}



	/* 视频列表 */
	.video_item{
		width: calc(50% - 0.1rem);
	}

	.video_info {
		min-height: 1.35rem;
		gap: 0.28rem;
	}




	/* 企业列表 */
	.org_list {
		margin-top: 0.2rem;
	}

	.org_item + .org_item {
		padding-top: 0.18rem;
	}



	/* 下载弹窗 */
	.download_dialog {
		width: min(5rem, 100%);
	}





	/* 新闻详情 */
	.news_view {
		gap: 0.2rem;
	}

	.news_title {
		font-size: 0.26rem;
		line-height: 1.35;
	}

	.news_key {
		flex-wrap: wrap;
		gap: 0.08rem 0.18rem;
	}

	.view_box {
		display: block;
	}

	.view_left {
		width: 100%;
	}

	.view_page {
		width: 100%;
	}



	/* 联系我们 */
	.contact_us {
		margin-top: 0.3rem;
	}

	.contact_top {
		gap: 0.4rem;
	}

	.contact_info {
		width: calc(100% - 4.9rem);
		padding-top: 0;
	}

	.contact_line {
		margin-top: 0.5rem;
	}

	.contact_methods {
		margin-top: 0.5rem;
		flex-direction: column;
		gap: 0.2rem;
	}

	.contact_form_box {
		margin-top: 0.4rem;
		padding: 0.4rem 0.3rem;
		display: block;
	}

	.contact_form_intro {
		width: 100%;
		margin-bottom: 0.3rem;
	}


	.contact_info{
		width: calc(100% - 3.9rem);
	}
	.contact_pic{
		width: 3.5rem;
		height: auto;
		aspect-ratio: 9 / 10;
		overflow: hidden;
	}






	.down_fl{
		width: 100%;
	}
}



@media (max-width: 768px) {
	body{
		padding-top: 90px;
	}


	/* 新闻列表 */
	.news_group{
		margin-top: 20px;
		border-bottom: 2px solid #0063C4;
	}
	.news_group li{
		font-size: 14px;
		flex-direction: column;
		gap: 0px;
		margin-bottom: 12px;
		border-bottom: 1px dashed #d7d7d7;
		padding-bottom: 12px;
	}
	.news_group a{
		width: 100%;
		white-space: initial;
	}
	.news_group a::before{
		width: 4px;
		height: 4px;
		top: 8px;
		transform: none;
	}
	.news_group span{
		font-size: 12px;
	}
	.news_group li:last-child{
		border-bottom: none;
	}




	/* 排行榜列表 */
	.rank_title {
		font-size: 0.17rem;
		white-space: normal;
	}
	.ranking_group{
		gap: 20px;
		margin-top: 30px;
	}
	.ranking_item{
		padding-bottom: 16px;
	}
	.ranking_item .rank_cont{
		gap: 6px;
	}
	.ranking_item .rank_title{
		font-size: 14px;
	}
	.rank_meta {
		flex-wrap: wrap;
		gap: 0.04rem 0.16rem;
		white-space: normal;
		font-size: 12px;
	}
	.rank_intro{
		font-size: 12px;
	}
	.ranking_item .rank_badge span{
		font-size: 10px;
	}




	/* 视频列表 */
	.video_top {
		display: block;
	}
	.video_top .video_search{
		width: 100%;
        margin: 30px 0 0;
	}
	.video_top .video_search input{
		width: calc(100% - 32px);
		font-size: 14px;
	}
	.video_top .video_search button{
		width: 32px;
		height: 32px;
	}
	.video_item{
		width: 100%;
	}
	.video_info{
		padding: 12px 15px 16px;
	}
	.video_title {
		font-size: 16px;
	}
	.video_btn{
		font-size: 14px;
        padding: 5px 10px;
        border-radius: 3px;
	}



	/* 企业列表 */
	.org_list{
		margin-top: 30px;
	}
	.org_item {
		min-height: 0.88rem;
		padding-bottom: 0.16rem;
		gap: 0.1rem;
	}
	.Training .org_item .org_logo{
		width: 80px;
		height: auto;
	}
	.org_cont {
		width: calc(100% - 80px);
		gap: 0.04rem;
	}
	.org_title {
		font-size: 14px;
	}
	.org_intro,
	.org_date{
		font-size: 12px;
	}





	/* 下载弹窗 */
	.download_popup {
		padding: 0.15rem;
	}

	.download_dialog {
		min-height: auto;
		padding: 0.42rem 0.22rem 0.28rem;
	}

	.download_form {
		gap: 0.08rem;
		font-size: 14px;
		padding: 0 20px;
	}
	.download_form input{
		height: 32px;
		font-size: 14px;
	}

	.download_submit {
		font-size: 14px;
		width: auto;
		height: auto;
		padding: 4px 12px;
		border-radius: 3px;
		margin: 16px auto 0;
	}

	.download_contact {
		margin-top: 20px;
		padding-top: 16px;
		flex-wrap: wrap;
		gap: 0.08rem 0.18rem;
		white-space: normal;
		font-size: 14px;
	}




	/* 新闻详情 */
	.news_title {
		font-size: 20px;
	}
	.news_key .key_item {
		white-space: normal;
		font-size: 14px;
	}
	.news_key .key_item a{
		width: 20px;
		height: 20px;
	}
	.view_detail {
		font-size: 14px;
	}
	.view_page,
	.view_tags{
		font-size: 14px;
	}
	.view_tags a{
		font-size: 12px;
		border-radius: 20px;
	}
	.rel_head strong{
		height: auto;
		font-size: 16px;
	}
	.view_related li {
		gap: 0.1rem;
		font-size: 0.15rem;
	}
	.view_related a {
		width: auto;
		flex: 1;
	}
	.view_related a::before{
		width: 4px;
		height: 4px;
		left: 0;
		top: 8px;
	}
	.view_related li{
		font-size: 14px;
		padding: 5px 0;
	}
	.view_related span {
		font-size: 12px;
	}



	/* 关于我们 */
	.about_us{
		margin-top: 30px;
	}
	.about_us .about_title{
		font-size: 18px;
	}
	.about_us .about_content{
		font-size:14px;
	}




	/* 联系我们 */
	.contact_us{
		margin-top: 30px;
	}
	.contact_top {
		display: block;
	}

	.contact_info {
		width: 100%;
	}

	.contact_info h2,
	.contact_form_intro h3 {
		font-size: 20px;
	}

	.contact_addr,
	.contact_method span,
	.contact_form_intro p,
	.contact_field {
		font-size: 14px;
	}

	.contact_line {
		margin-top: 0.35rem;
	}

	.contact_methods {
		margin-top: 0.35rem;
	}

	.contact_method strong {
		font-size: 18px;
		white-space: normal;
	}
	.contact_pic {
		margin-top: 20px;
		width: 100%;
		height: auto;
	}


	.contact_form_box {
		padding: 0.28rem 0.18rem;
	}

	.contact_form_intro img {
		width: 0.64rem;
		height: 0.64rem;
	}

	.contact_form {
		grid-template-columns: 1fr;
	}
	.contact_field input{
		height: 34px;
		font-size: 14px;
	}
	.contact_message {
		grid-column: auto;
	}
	.contact_code button,
	.contact_submit{
		font-size: 14px;
        width: fit-content;
        height: 100%;
        padding: 0 8px;
	}
	.contact_field textarea {
		height: 120px;
		font-size: 14px;
	}
	.contact_submit{
		height: auto;
		padding: 4px 10px;
	}







	.download_list .down_item{
		font-size: 14px;
	}
	.download_list .down_item span{
		font-size: 12px;
	}





	.download_dialog{
		max-width: 94%;
		width: 94%;
		height: auto;
	}
	.download_close{
		width: 18px;
		height: 18px;
	}
	.download_close::before, .download_close::after{
		width: 18px;
	}
	.download_dialog h2{
		font-size: 18px;
	}
	.download_tips{
		font-size: 14px;
		margin: 20px 0;
	}

}
