body {
	margin: 0;
}
#app {
	background: #F7FBFF;
	min-height: 100vh;
	padding-top: 1px;
}

/* navigationbox */
.navigationbox {
	position: fixed;
	width: 100%;
	height: 74px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #ffffff;
	top: 0;
	left: 0;
	box-shadow: 0px 8px 8px 0px rgba(235, 232, 254, 0.25);
	z-index: 1888;
}
.navigationbox_l {
	display: flex;
	justify-content: start;
	align-items: center;
	margin-left: 108px;
}
.navigationbox_l_1 {
	display: flex;
	justify-content: start;
	align-items: center;
	cursor: pointer;
}
.navigationbox_l_1_logo {
	width: 48px;
	height: 48px;
	margin-right: 12px;
}
.navigationbox_l_1_title {
	font-size: 16px;
	font-style: normal;
	font-weight: bold;
	color: #000;
}
.navigationbox_l_2 {
	margin-left: 48px;
	display: flex;
	justify-content: start;
	align-items: center;
}
.navigationbox_l_2_item {
	color: #000;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	cursor: pointer;
	margin-right: 40px;
}
.navigationbox_l_2_item:hover {
	color: #024BF0;
}
.boxisok {
	color: #024BF0;
	font-weight: 700;
}
.navigationbox_r {
	width: 24px;
	height: 24px;
	display: none;
}
.dyc_trall05 {
	transition: all 0.5s linear;
}
.navigationbox_r_img {
	width: 100%;
	height: 100%;
}

/* topbox */
.topbox {
	display: flex;
	justify-content: center;
	margin-top: 100px;
	height: 406px;
}
.topbox_l {
	width: 815px;
	height: 406px;
	border-radius: 8px;
	overflow: hidden;
}
.topbox_l_item {
	position: relative;
	width: 100%;
	height: 406px;
	cursor: pointer;
}
.topbox_r_item_img {
	width: 100%;
	height: 100%;
}
.topbox_r_item_title {
	position: absolute;
	left: 28px;
	bottom: 28px;
	color: #FFF;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.topbox_r {
	margin-left: 15px;
	display: flex;
	flex-direction: column; /* 设置主轴为垂直方向，即上下排列 */
	justify-content: space-between; /* 在主轴上对子项进行空间分配 */
	align-items: stretch; /* 使子项在交叉轴上拉伸以填充容器 */
	height: 100%; /* 容器的高度设置为100%，确保它填满父容器的高度 */
}
.topbox_r_item {
	width: 394px;
	height: 198px;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.topbox_r_item_img {
	width: 100%;
	height: 100%;
}
.topbox_r_item_title {
	position: absolute;
	left: 15px;
	bottom: 15px;
	color: #FFF;
	font-size: 16px;
	font-weight: 700;
}

/* tabbox */
.tabbox {
	display: flex;
	justify-content: start;
	overflow-x: auto; /* 启用横向滚动 */
	white-space: nowrap; /* 防止子元素换行 */
	width: 1230px; /* 或者具体的宽度 */
	margin: 28px auto; 
}
.tabbox_item {
	display: inline-block; /* 使子元素横向排列 */
	  /* 可以设置具体的宽度、边距等样式 */
	margin-right: 16px; /* 子元素之间的间隔 */
	padding: 4px 8px;
	border-radius: 2px;
	color: rgba(0, 0, 0, 0.60);
	font-size: 16px;
	background: #ECF0F4;
	cursor: pointer;
}
.tabbox_item_ok {
	color: #FFF;
	background: #024BF0;
}

/* contentbox */
.contentbox {
	margin: 0px auto 28px;
	width: 1230px; /* 或者具体的宽度 */
}
.contentbox_item {
	margin-bottom: 40px;
	cursor: pointer;
}
.contentbox_item_box {
	display: flex;
	justify-content: start;
}
.contentbox_item_l {
	position: relative;
	width: 248px;
	height: 148px;
	overflow: hidden;
	border-radius: 8px;
}
.contentbox_item_l_img {
	width: 100%;
	height: 100%;
}
.contentbox_item_l_tag {
	padding: 4px;
	border-radius: 2px;
	position: absolute;
	top: 8px;
	left: 6px;
	color: #FFF;
	font-size: 12px;
}
.contentbox_item_l_tag_color1 {
	background: #024BF0;
}
.contentbox_item_l_tag_color2 {
	background: #0DC267;
}
.contentbox_item_l_tag_color3 {
	background: #ACAC04;
}
.contentbox_item_r {
	width: 60vw;
	margin-left: 20px;
	padding: 14px 0;
}
.contentbox_item_r_1 {
	color: #000;
	font-size: 18px;
	font-weight: 700;
}
.contentbox_item_r_2 {
	color: #000;
	font-size: 14px;
	font-weight: 500;
	margin-top: 10px;
	margin-bottom: 40px;
}
.contentbox_item_r_3 {
	display: flex;
	justify-content: start;
	align-items: center;
}
.contentbox_item_r_3_name {
	color: #000;
	font-size: 14px;
	font-weight: 600;
}
.contentbox_item_r_3_date {
	color: #000;
	font-size: 12px;
	font-weight: 600;
	margin-left: 26px;
}
.contentbox_item_r_3_hour {
	color: rgba(0, 0, 0, 0.60);
	font-size: 12px;
	font-weight: 500;
	margin-left: 8px;
}
.contentbox_item_r_3m_name {
	display: none;
}
.contentbox_item_r_3m {
	display: none;
}
.contentbox_item_r_2m {
	display: none;
}

/* btmbox */
.btmbox {
	padding: 55px 118px;
	background: #02091B;
}
.btmbox_b {
	margin: 0px auto;
	width: 1230px; /* 或者具体的宽度 */
	display: flex;
	justify-content: start;
}
.btmbox_l {
	text-align: left;
}
.btmbox_l_title {
	color: #FFF;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 12px;
}
.btmbox_l_cont {
	color: rgba(255, 255, 255, 0.60);
	font-size: 12px;
	font-weight: 500;
}
.btmbox_r {
	text-align: left;
	margin-left: 74px;
}
.btmbox_r_iconbox {
	margin-top: 12px;
	display: flex;
	justify-content: start;
}
.btmbox_r_iconbox_img {
	width: 48px;
	height: 48px;
	margin-right: 16px;
}

/* hotbox */
.hotbox {
	background: linear-gradient(180deg, #C6D8FF 0%, #F7FBFF 100%);
	padding: 100px 0 0 0 ;
	margin-bottom: 30px;
}
.hotbox_main {
	margin: 0px auto;
	width: 1230px; /* 或者具体的宽度 */
}
.hotbox_1 {
	display: flex;
	justify-content: start;
	align-items: center;
}
.hotbox_1_img {
	width: 24px;
	height: 24px;
}
.hotbox_1_title {
	color: #000;
	font-size: 16px;
	font-weight: 700;
	margin-left: 4px;
}
.hotbox_2 {
	margin-top: 26px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.hotbox_2_item {
	width: 392px;
	cursor: pointer;
	margin-bottom: 30px;
}
.hotbox_2_item_top {
	width: 392px;
	height: 220.12px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}
.hotbox_2_item_top_img {
	width: 392px;
	height: 220.12px;
}
.hotbox_2_item_top_link {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 2;
}
.hotbox_2_item_title {
	margin-top: 16px;
	color: #000;
	font-size: 16px;
	font-weight: 700;
	text-align: left;
}
.hotbox_2_item_btmbox {
	display: flex;
	justify-content: start;
	margin-top: 10px;
}
.hotbox_2_item_btmbox_text {
	color: rgba(0, 0, 0, 0.60);
	font-size: 12px;
	font-weight: 500;
	margin-right: 8px;
}

/* videospagebox */
.videospagebox {
	width: 1230px; /* 或者具体的宽度 */
	margin: 30px auto 100px;
}

/* toolsmainbox */
.toolsmainbox {
	width: 1230px; /* 或者具体的宽度 */
	margin: 100px auto;
}
.toolsmainbox_i {
	margin-bottom: 48px;
}
.toolsmainbox_title {
	text-align: left;
	color: #000;
	font-size: 18px;
	font-weight: 500;
}
.toolsmainbox_itembox {
	margin-top: 20px;
	display: flex;
	justify-content: start;
	flex-wrap: wrap;
}
.toolsmainbox_itembox_item {
	min-width: 250px;
	max-width: 250px;
	height: 92px;
	border-radius: 8px;
	background: #FFF;
	box-shadow: 0px 8px 8px 0px rgba(219, 229, 242, 0.40);
	padding: 0px 14px;
	display: flex;
	align-items: center;
	justify-content: start;
	margin-bottom: 22px;
	margin-right: 12px;
	cursor: pointer;
}
.toolsmainbox_itembox_item_img {
	border-radius: 100%;
	width: 50px;
	min-width: 50px;
	height: 50px;
	overflow: hidden;
	background: #F4F4F4;
}
.toolsmainbox_itembox_item_r {
	margin-left: 6px;
	min-width: 134px;
}
.toolsmainbox_itembox_item_r_name {
	color: #000;
	font-size: 16px;
	font-weight: 600;
	text-align: left;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
.toolsmainbox_itembox_item_r_cont {
	color: rgba(0, 0, 0, 0.60);
	font-size: 12px;
	font-weight: 500;
	margin-top: 6px;
	text-align: left;
}

body {
  font-family: 'Poppins', sans-serif !important;
}

/* richbox */
.richbox {
	width: 1230px; /* 或者具体的宽度 */
	margin: 30px auto;
	line-height: 30px;
}
.webviewtopbox {
	width: 1230px; /* 或者具体的宽度 */
	margin: 100px auto 50px;
	padding-bottom: 30px;
	border-bottom: 1px solid #e6e6e6;
}
.webviewtopbox_1 {
	position: relative;
}
.webviewtopbox_1:before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 56.98%, #FFFFFF 100%);
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
.webviewtopbox_1_img {
	width: 100%;
}
.webviewtopbox_2 {
	position: relative;
	z-index: 2;
	padding: 0 30px;
}
.webviewtopbox_2_l {
	margin-top: 14px;
	font-size: 30px;
	line-height: 45px;
	padding-right: 220px;
	font-weight: bold;
}
.webviewtopbox_2_r {
	position: relative;
}
.webviewtopbox_2_r_ok {
	font-size: 14px;
	line-height: 17px;
	margin-top: 43px;
}
.webviewtopbox_2_r_ok i {
	font-size: 12px;
	opacity: .5;
}
.webviewcontbox {
	width: 1230px; /* 或者具体的宽度 */
	margin: 30px auto;
}
.webviewcontbox_1 {
	background: #e6ebf1;
	padding: 20px 20px 20px 70px;
	color: rgba(0, 0, 0, .6);
	border-radius: 5px;
	margin-bottom: 30px;
}
.webviewcontbox_2 {
	margin-bottom: 30px;
	color: #7f8c8d;
}
.viewbtmbox {
	width: 1230px; /* 或者具体的宽度 */
	margin: 30px auto;
	display: flex;
	justify-content: space-between;
	font-size: 17px;
	font-weight: 600;
}
.viewbtmbox_l {
	cursor: pointer;
	padding: 20px 0;
}
.viewbtmbox_l_no {
	opacity: 0.6;
	cursor: default;
}