.div_box {
	background: rgba(0, 0, 0, .5);
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
	display: none;
}

.box {
	width: 800px;
	height: calc(100vh - 60px);
	box-sizing: border-box;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	/* padding: 40px 20px; */
	background: #fff;
	/* display: none; */
}

.left {
	float: left;
	width: 290px;
	height: 100%;
	background: #f0f0f1;
	color: #333;
	padding: 50% 30px 0;
}

.right {
	overflow-y: scroll;
	padding: 20px;
	float: left;
	height: 100%;
}

.right::-webkit-scrollbar {
	display: block;
}

.right::-webkit-scrollbar {
	width: 8px;
	height: 6px;
	background: #ccc !important;
	display: block;
}

.right::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background: #565656;
	box-shadow: none;
	-webkit-box-shadow: none;
}

.btn {
	color: #fff;
	background-color: transparent !important;
	border: 1px solid #fff;
	font-size: 14px !important;
	padding: 7px 30px 6px !important;
	margin-top: 6px !important;
	margin-right: 4px !important;
	width: inherit !important;
	height: inherit !important;
	border-radius: 4px;
	cursor: pointer;
	transition: all .3s;
}

.btn:hover {
	background: #4A86FF !important;
	border: 1px solid #4A86FF;
}

.close {
	background: url(../img/close.png) center no-repeat;
	width: 20px;
	height: 20px;
	position: absolute;
	right: 5%;
	top: 20px;
	background-size: 80% auto;
	cursor: pointer;
	transition: all .3s;
	z-index: 999;
}

.close:hover {
	transform: rotate(90deg);
}

body {
	/* background-image: url(../img/bg.png);
	background-position: top center;
	background-repeat: no-repeat; */
	background-color: #fbfbfb;
}

.header {
	padding-top: 80px;
}

.header img {
	width: 100%;
}

.section,
.footer_box {
	width: 1200px;
	margin: 0 auto;
}

.nav {
	background: #fff;
	padding-top: 15px;
	padding-bottom: 10px;
	width: 100%;
	/* margin-bottom:12%; */
	/* width: 1200px; */
	/* margin: 0 auto; */
	height: 80px;
	z-index: 9999;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	border-bottom: 1px solid #0028A0;
}

.nav>div {
	width: 1200px;
	margin: 0 auto;
}

.nav .logo {
	float: left;
	width: 128px;
}

.nav .logo img {
	width: 100%;
}

.nav nav {
	float: right;
}

.nav nav ul li {
	float: left;
	margin-left: 20px;
	font-size: 16px;
}

.nav nav ul li a {
	display: block;
	color: #333;
	padding: 10px 10px;
	position: relative;
	transition: all .3s;
}

.nav nav ul li a:hover {
	background-color: #f0f0f1;
}

.nav nav ul>a {
	/* display: inline-block; */
	float: left;
	padding: 6px 10px;
	border-radius: 4px;
	border: 1px solid #0028a0;
	color: #0028a0;
	margin-left: 20px;
	background: #fff;
	/* font-size: 18px; */
	transform: translateY(4px);
	transition: all .3s;
}

.nav nav ul>a:hover {
	box-shadow: 0 2px 8px 1px rgba(0, 0, 0, .2);
}

/* .nav nav ul li a:after{
	content: "";
	position: absolute;
	bottom: 0;
	left: -10%;
	width: 120%;
	height: 4px;
	background: transparent;
	transition: all .3s;
}
.nav nav ul li a.active:after{
	background: #0028a0;
}
.nav nav ul li a:hover:after{
	background: #0028a0;
} */


/* 新增用户按钮 */
.nav .nav-user {
	float: left;
	color: #333;
	position: relative;
	margin-left: 50px;
	font-size: 16px;
}

.nav .user-register {
	padding: 7px 30px;
	cursor: pointer;
	background: #0028a0;
	color: #fff;
	border-radius: 4px;
	transform: translateY(4px);
	font-size: 14px;
}

.nav .user-user {
	position: relative;
	cursor: pointer;
}

.nav .user-name {
	padding: 8px 0 8px 10px;
}

.nav .user-name>span {
	max-width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: inline-block;
}

.nav .user-name img {
	float: right;
	width: 16px;
	transform: translateY(20%);
	margin-left: 5px;
}

.nav .user-user-box {
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 100%;
	background: #fff;
	padding: ;
	text-align: center;
	font-size: 14px;
	border: 8px;
	box-shadow: 0 0 6px 0 rgba(0, 0, 0, .2);
	padding: 5px 10px;
	box-sizing: content-box;
	display: none;
}

.nav .user-user-box p:nth-of-type(2) {
	padding: 5px 0;
	cursor: pointer;
	color: #c00;
}

.nav .user-user-box p a {
	display: block;
	padding: 5px 0;
	color: #333;
}

.nav .user-name:hover .user-user-box {
	display: block;
}

.hasLogin {
	display: none;
}

/* 新增用户按钮 END */

/* 登录注册框 */
.dialog_div {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999;
	display: none;
}

.dialog_bg {
	background: rgba(0, 0, 0, .5);
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
}

.dialog_box {
	position: absolute;
	top: 58%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 600px;
	max-height: 80%;
	box-sizing: border-box;
	padding: 30px 60px;
	background: #fff;
	border-radius: 8px;
	z-index: 4;
	color: #333;
	overflow-y: scroll;
}

.dialog_box::-webkit-scrollbar {
	width: 4px;
	height: 0px;
	background: #ccc !important;
	display: block
}

.dialog_box::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background: #565656;
	box-shadow: none;
	-webkit-box-shadow: none
}

.dialog_box h4 {
	font-size: 20px;
	text-align: center;
	font-weight: 200;
	margin-bottom: 20px;
}

.dialog_box h4 span {
	cursor: pointer;
	margin: 0 12px;
	padding: 0 3px;
}

.dialog_box h4 span.active {
	font-size: 24px;
	border-bottom: 2px solid #246ad2;
	padding-bottom: 4px;
	color: #246ad2;
}

.dialog_item_zhuce {
	display: none;
}

.dialog_item {
	width: 100%;
	margin-bottom: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	flex-wrap: wrap;
}

.dialog_item>p {
	margin-bottom: 1%;
	line-height: 40px;
	margin-right: 30px;
	color: #666;
	white-space: nowrap;
}

.dialog_item input {
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	height: 35px;
	line-height: 35px;
	border: none;
	border-bottom: 1px solid #999;
	background: none;
	padding: 0 15px;
	box-sizing: border-box;
	display: block;
	font-size: 14px;
	color: #333;
	width: 80%;
}

.dialog_item input::-webkit-input-placeholder {
	/* WebKit browsers */
	color: #aaa;
}

.dialog_item input:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #aaa;
}

.dialog_item input::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #aaa;
}

.dialog_item input:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: #aaa;
}

select::-ms-expand {
	display: none;
}

#countryCode {
	display: block;
	width: 100%;
	border: none;
	border-bottom: 1px solid #999;
	background: none;
	height: 35px;
	line-height: 35px;
	padding: 0 15px;
	/* text-align: center; */
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	background-image: url(../img/icon-xiala.png);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: auto 60%;
}

#countryCode:focus {
	background-image: url(../img/icon-xiala2.png);
	border-bottom: 2px solid #0028A0;
}

.dialog_item input:focus {
	border-bottom: 1px solid #0028A0;
	color: #0028A0;
}

.dialog_item_denglu .dialog_item a {
	float: right;
	color: #eb9433;
}

.password-eye {
	position: absolute;
	right: 0;
	top: 0;
	height: 35px;
	width: 35px;
	background-size: 18px auto;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}

.dialog_item_zhuce .password-eye {
	right: 20px;
}

.userinfo-password .password-eye {
	width: 40px;
	height: 40px;
	background-size: 20px auto;
}

.password-eye.eye-open {
	background-image: url(../img/eye-open.png);
}

.password-eye.eye-close {
	background-image: url(../img/eye-close.png);
}


.dialog_btn {
	text-align: center;
}

.dialog_btn span {
	display: inline-block;
	background: #246ad2;
	border-radius: 4px;
	color: #fff;
	padding: 8px 0;
	width: 150px;
	cursor: pointer;
	margin: 0 8px;
}

.dialog_btn span.dialog_close {
	background: #c1c1c1;
}

.dialog_div>.dialog_close {
	cursor: pointer;
	position: absolute;
	right: 0;
	width: 25px;
	z-index: 9;
}

.dialog_item_zhuce .dialog_item {
	float: left;
	width: 50%;
	padding: 0 20px;
	margin-bottom: 10px;
	position: relative;
}

.dialog_item_zhuce .dialog_item em {
	position: absolute;
	left: 20px;
	top: 0;
	width: 15px;
	height: 100%;
	line-height: 35px;
	color: red;
	font-weight: bold;
	font-size: 16px;
}

.zhuce_title {
	font-size: 12px;
	padding: 0 20px 20px;
}

.zhuce_title a {
	color: #246ad2;
}

.dialog_loading {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0 !important;
	background: rgba(255, 255, 255, .5);
}

.dialog_loading img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* 20220725新增 begin */
.mima {
	padding-bottom: 20px !important;
}

.mima p {
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 12px;
	line-height: initial;
	margin-right: 0;
	margin-bottom: 0;
	color: #666;
	white-space: nowrap;
	padding-left: 20px;
}

.tishi {
	font-size: 12px;
	padding: 0 20px;
}

/* 20220725新增 end */

@media (max-width: 796px) {
	.dialog_box {
		width: 90%;
		padding: 20px !important;
	}

	.dialog_box h4 {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.dialog_item>p {
		margin-right: 15px;
	}

	.dialog_btn span {
		width: 40%;
		font-size: 14px;
		padding: 10px 0;
		border-radius: 4px;
	}

	.dialog_item_zhuce .dialog_item {
		float: none;
		width: 100%;
		padding: 0;
	}

	.dialog_item_zhuce .dialog_item em {
		left: 0;
	}

	/* 20220725新增 begin */
	.mima p {
		margin-right: 0;
		padding-left: 0;
	}

	.tishi {
		padding: 0;
	}

	/* 20220725新增 end */
}

/* 登录注册框 END */


.wenan {
	border-radius: 10px;
	/* box-shadow: 0 20px 20px -15px #ccc; */
	margin: 0 auto 20px;
	width: 1200px;
	/* transform: translateY(-30%); */
}

.miaoshu {
	float: right;
	width: 323px;
	height: 340px;
	background: #0f1f7d;
	padding: 45px 35px 0;
	color: #fff;
	position: relative;
	border-radius: 0 8px 8px 0;
}

.miaoshu h4 {
	font-size: 26px;
	font-weight: normal;
	padding-bottom: 25px;
	margin-bottom: 20px;
	position: relative;
}

.miaoshu h4:after {
	content: "";
	width: 28px;
	height: 3px;
	background: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
}

.miaoshu p {
	margin-bottom: 80px;
	line-height: 1.8;
	letter-spacing: .15em;
}

.miaoshu a {
	text-align: center;
	display: block;
}

.wenzi {
	background: #fff;
	padding: 50px;
	width: 877px;
	height: 340px;
	font-size: 16px;
	line-height: 2;
	text-indent: 2em;
	color: #333;
	border-radius: 8px 0 0 8px;
}

.wenzi p {
	margin-bottom: 25px;
}

.info {
	/* text-indent: 2em; */
	font-size: 20px;
	font-weight: 200 !important;
}

.info p {
	margin-bottom: 1em;
	text-align: justify;
}

.column_title {
	font-size: 28px;
	color: #2f2f2f;
	margin-bottom: 30px;
}

.column_title a {
	float: right;
	font-size: 16px;
	color: #666;
	transform: translateY(80%);
}

.column_title a img {
	display: inline-block;
	width: 13px;
	margin-left: 5px;
}

.activity_box {
	margin-bottom: 40px;
}

.activity {
	border-radius: 10px;
	box-shadow: 0 2px 10px 0 #ddd;
	margin-bottom: 20px;
	padding: 25px 15px;
	display: flex;
	align-items: center;
	background: #fff;
}

.activity_time {
	float: left;
	/* width: 128px; */
	width: 350px;
	align-self: stretch;
	display: flex;
	text-align: left;
	align-items: center;
	/* justify-content: center; */
	background-position: center;
	background-size: cover;
	border-radius: 8px;
	margin-right: 40px;
	min-height: 150px;
}

.activity_time div {
	background: rgba(254, 244, 189, 0.25);
	border-radius: 8px;
	padding: 8px 10px;
	/* color: #0f1f7d; */
	color: #fff;
	/* font-weight: bold; */
	margin-left: 20px;
	line-height: 1.2;
}

.activity_time2 {
	display: none;
}

.activity_time p:nth-of-type(1) {
	font-size: 36px;
	font-weight: bold;
}

.activity_time p:nth-of-type(2) {
	font-size: 20px;
}

.activity_info {
	float: left;
	width: 942px;
	padding: 0 40px 0 0;
	/* border-left: 2px solid #0f1f7d; */
}

.activity_info p {
	margin-bottom: 8px;
}

.activity_info .title {
	font-size: 20px;
	color: #343434;
}

.activity_info .time {
	font-size: 16px;
	color: #0F1F7D;
}

.activity_info .lang {
	color: #666;
	font-size: 16px;
	padding-left: 20px;
	background: url(../img/biao.png) left center no-repeat;
	background-size: auto 60%;
	padding-top: 3px;
}

.activity_info .des {
	color: #666;
	font-size: 16px;
	margin-bottom: 0;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
}

.activity_btn {
	float: left;
	width: 170px;
	text-align: center;
}

.activity_btn a {
	padding: 10px 25px;
	background: #0f1f7d;
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	border-radius: 8px;
}

.meeting_box {
	margin-bottom: 100px;
}

.meeting_box ul {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: stretch;
}

.meeting_box ul li {
	float: left;
	width: 390px;
	margin-left: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 10px 0 #ddd;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
}

.meeting_box ul li:nth-child(3n+1) {
	margin-left: 0;
}

.meeting_box ul li>a {
	display: block;
	padding-top: 31%;
	background-size: cover;
	background-position: center;
}

.meeting_box ul li img {
	display: block;
	width: 100%;
}

.meeting_box ul li div {
	padding: 25px 20px 15px;
	display: -webkit-flex;
	display: -ms-flexbox;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.meeting_wenan .title {
	display: block;
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 10px;
	/* 	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis; */
	/* text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2; //行数需设置
	line-clamp: 2; */
	/* autoprefixer: ignore next */
	-webkit-box-orient: vertical;
	/* height: 56px; */
	color: #333;
}

.meeting_wenan .des {
	font-size: 14px;
	color: #999;
	line-height: 1.6;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #ccc;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	height: 3.5em;
	display: none;
}

.meeting_wenan .time span:nth-child(1) {
	float: left;
	color: #666;
}

.meeting_wenan .time span:nth-child(2) {
	background: url(../img/biao.png) left center no-repeat;
	background-size: auto 65%;
	float: right;
	color: #666;
	padding-left: 18px;
}

.footer {
	background: #333;
	padding: 35px 0;
}

.footer_top {
	text-align: center;
	margin-bottom: 35px;
}

.footer_top ul {
	display: inline-block;
}

.footer_top ul li {
	float: left;
	margin: 0 40px;
}

.footer_top ul li p {
	font-size: 16px;
	color: #a1a1a1;
	margin-bottom: 15px;
}

.footer_top ul li img {
	display: block;
	margin: 0 auto;
}

.footer_footer {
	font-size: 14px;
	text-align: center;
	color: #d3d3d3;
	font-weight: 100;
}

.footer_footer p:nth-child(1) {
	margin-bottom: 5px;
}

.footer_footer a {
	font-size: 12px;
	color: #d3d3d3;
	margin: 0 8px;
	text-decoration: underline;
}

.footer_mid {
	margin-bottom: 50px;
}

.footer_mid .logo {
	float: left;
	width: 150px;
}

.footer_mid .phone {
	float: right;
}

.footer_mid .phone ul {
	float: left;
	margin-left: 200px;
}

.footer_mid .phone ul li {
	margin-bottom: 5px;
	font-size: 16px;
	color: #d3d3d3;
}

.footer_mid .phone ul li:nth-child(1) {
	font-size: 14px;
}

.footer_mid .phone ul li a {
	color: #d3d3d3;
}

.wap_logo {
	display: none;
}

.wap_mune {
	display: none;
}

.wap_nav {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 999;
}

.wap_nav .model {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
}

.wap_nav .wap_nav_list {
	position: absolute;
	top: 12%;
	right: 15px;
	min-width: 150px;
	background: #fff;
	border-radius: 4px;
	padding: 10px;
}

.wap_nav .wap_nav_list li {
	border-bottom: 1px dashed #333;
	position: relative;
}

.wap_nav .wap_nav_list li.active:after {
	content: "";
	position: absolute;
	right: -10px;
	top: 15%;
	width: 4px;
	height: 70%;
	background: #0F1F7D;
}

.wap_nav .wap_nav_list li:last-child {
	border-bottom: none;
}

.wap_nav .wap_nav_list li a {
	display: block;
	padding: 10px 3px;
	text-align: right;
	color: #333333;
}

.wap_nav .wap_nav_list li.active a {
	font-weight: bold;
	color: #0F1F7D;
}

.quesheng {
	font-size: 16px;
}

.loading {
	padding: 0 0 5%;
}

.loading img {
	display: block;
	margin: 0 auto;
	width: 35px;
	animation: loading 1s linear infinite;
	opacity: .8;
}

@keyframes loading {
	from {
		transform: rotateZ(0);
	}

	to {
		transform: rotateZ(360deg)
	}
}

.wap {
	display: none;
}

.banner {
	position: relative;
	width: 100%;
	height: 300px;
	background: url(../img/banner.png) center no-repeat;
	background-size: cover;
	margin-bottom: 40px;
}

.banner:before {
	content: "";
	/* background: rgba(0,0,0,0.3); */
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.banner-text {
	position: absolute;
	z-index: 2;
	width: 1200px;
	left: 50%;
	top: 45%;
	transform: translate(-50%, -50%);

	display: -webkit-box;
	/* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
	display: -moz-box;
	/* 老版本语法: Firefox (buggy) */
	display: -ms-flexbox;
	/* 混合版本语法: IE 10 */
	display: -webkit-flex;
	/* 新版本语法: Chrome 21+ */
	display: flex;
	/* 新版本语法: Opera 12.1, Firefox 22+ */

	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	-o-align-items: flex-start;
	align-items: flex-start;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

.banner-left {
	/* float: left; */
}

.banner-left h4 {
	font-size: 42px;
	color: #FEF4BD;
	line-height: 1.8;
	font-weight: 400;
}

.banner-left p {
	font-size: 18px;
	color: #fff;
}

.banner-right {
	/* float: right; */
	width: 200px;
	padding-top: 0.3%;
}



/* 新增banner轮播 */
.banner {
	background: #fff;
	height: auto;
}

.swiper-pagination-bullet {
	background: #fff;
	opacity: .5;
}

.swiper-pagination-bullet-active {
	opacity: 1;
}

.banner img {
	width: 100%;
}

.banner a {
	display: block;
}


#jinqi,
#wangqi {
	position: relative;
	top: -100px;
}

/* 系列会议 */
.xilie_box {
	margin-bottom: 40px;
}

.xilie_box ul li {
	border-radius: 20px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: flex-start;
	color: #fff;
	padding: 15px 2%;
	margin-bottom: 15px;
}

/* .xilie_box ul li:last-of-type{
	margin-bottom: 0;
} */
.xilie-time {
	background: rgba(255, 255, 255, .4);
	border-radius: 8px;
	margin-right: 2%;
	padding: 3px 1%;
}

.xilie-time span {
	font-weight: bold;
	display: block;
	text-align: center;
	font-size: 14px;
	line-height: 1.2;
}

.xilie-time span:nth-of-type(1) {
	font-size: 24px;
	letter-spacing: .1em;
}

.xilie-info {
	flex: 1;
	line-height: 1.7;
}

.xilie-info p {
	font-size: 16px;
}

.xilie-info p:last-of-type {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.xilie-info p span {
	float: left;
	max-width: 80%;
}

.xilie-info p a {
	float: right;
	padding-right: 1.3%;
	color: #fff;
	background: url(../img/xilie-more.png) right center no-repeat;
	background-size: auto 50%;
	font-size: 14px;
	line-height: 2;
}

.xilie-info h6 {
	color: #FEF4BD;
	font-weight: bold;
	font-size: 20px;
	height: 50px;
	line-height: 50px;
}

/* 系列会议 END */

/* 2022-06-20新增修改 */
.xilie_box ul {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

.xilie_box ul li {
	width: calc(50% - 10px);
	float: left;
	margin-left: 20px;
}

.xilie_box ul li h6 img {
	height: 50px;
	width: initial;
	max-width: initial;
}

.xilie_box ul li:nth-child(2n+1) {
	margin-left: 0;
}

.xilie-info p a {
	padding-right: 15px;
}

.xilie-info {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* 2022-06-20新增修改结束 */

@media (max-width: 960px) {
	.pc {
		display: none;
	}

	.wap {
		display: block;
	}

	body {
		background-color: #fbfbfb;
	}

	.header {
		width: 100%;
		padding-top: 60px;
	}

	.section,
	.footer_box {
		width: calc(100% - 30px);
		margin: 0 auto;
	}

	.miaoshu,
	.wenzi {
		float: none;
		width: 100%;
		height: auto;
	}

	.miaoshu {
		padding: 20px;
		border-radius: 8px 8px 0 0;
	}

	.miaoshu h4 {
		margin-bottom: 10px;
		padding-bottom: 10px;
		font-size: 20px;
	}

	.miaoshu p {
		margin-bottom: 30px;
	}

	.miaoshu a {
		text-align: right;
	}

	.wenzi {
		padding: 20px;
		border-radius: 0 0 8px 8px;
	}

	.wenzi p {
		margin-bottom: 8px;
	}

	.wenan {
		margin-bottom: 10px;
		width: calc(100% - 20px);
		transform: translateY(-5%);
	}

	.column_title {
		text-align: center;
		font-size: 20px;
	}

	.activity_time {
		display: none;
	}

	.activity_time2 {
		display: block;
		/* color: #0f1f7d; */
		/* padding-bottom: 5px; */
		padding-top: 30%;
		background-position: center;
		background-size: cover;
	}

	.activity {
		padding: 0;
		display: block;
		overflow: hidden;
	}

	.activity_info {
		padding: 5px 10px 0;
		float: none;
		width: 100%;
		border-left: none;
		/* border-top: 1px solid #0F1F7D; */
		margin-bottom: 15px;
	}

	.activity_info p {
		margin-bottom: 5px;
	}

	.activity_info .title {
		font-size: 18px;
	}

	.activity_info .time,
	.activity_info .lang,
	.activity_info .des {
		font-size: 14px;
	}

	.activity_info .lang {
		padding-top: 2px;
	}

	.activity_btn {
		float: none;
		width: 100%;
		padding: 10px 15px 20px 0;
		text-align: right;
	}

	.activity_btn a {
		font-size: 16px;
		border-radius: 4px;
	}

	.meeting_box ul li {
		margin-left: 10px !important;
		margin-bottom: 15px;
		width: calc(50% - 5px);
	}

	.meeting_box ul li:nth-child(3n+1) {
		margin-left: auto;
	}

	.meeting_box ul li:nth-child(2n+1) {
		margin-left: 0 !important;
	}

	.meeting_box ul li div {
		padding: 10px;
	}

	.meeting_wenan .title {
		font-size: 16px;
		/* overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		text-overflow: ellipsis;
		-webkit-box-orient: vertical;
		height: 2.6em; */
		white-space: normal;
	}

	.meeting_wenan .des {
		display: none;
	}

	.meeting_wenan .time {
		padding-top: 10px;
		border-top: 1px solid #ccc;
	}

	.meeting_box {
		margin-bottom: 20px;
	}

	.wap_logo {
		display: block;
		text-align: center;
		margin-bottom: 20px;
	}

	.wap_logo img {
		width: 100px;
		margin: 0 auto;
	}

	.footer_top ul li {
		float: none;
		margin: 0;
		margin-bottom: 10px;
	}

	.footer_top ul li p {
		margin-bottom: 5px;
	}

	.footer_mid .logo {
		display: none;
	}

	.footer_mid .phone {
		float: none;
	}

	.footer_mid .phone ul {
		float: none;
		margin-left: 0;
		padding: 0 30px 30px;
	}

	.footer_mid .phone ul li:nth-child(1) {
		margin-bottom: 15px;
	}

	.footer_mid {
		margin-bottom: 20px;
	}

	.nav {
		/* margin-bottom: 15%; */
		width: 100%;
		padding: 10px 15px 0 !important;
		height: 60px;
	}

	.nav div {
		width: 100%;
	}

	.nav nav {
		display: none;
	}

	.nav .logo {
		width: 90px;
	}

	.nav .logo img {
		display: block;
		width: 100%;
	}

	.wap_mune {
		display: block;
		float: right;
		width: 38px;
		height: 38px;
		background: url(../img/mune.png) right center no-repeat;
		background-size: 64%;
	}

	.box {
		width: 100%;
		height: 100vh;
	}

	.left {
		display: none;
	}

	.more {
		text-align: center;
	}

	.more a {
		display: inline-block;
		padding: 8px 20px;
		border-radius: 5px;
		border: 1px solid #333333;
		font-size: 14px;
		color: #333333;
	}

	.more a img {
		width: 12px;
		display: inline-block;
	}

	.banner-text {
		width: calc(100% - 30px);
		left: 15px;
		top: 55%;
		transform: translate(0, -50%);
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}

	.banner-left,
	.banner-right {
		float: none;
		margin-bottom: 5%;
	}

	.banner-left h4 {
		font-size: 30px;
	}

	.banner-left p {
		font-size: 16px;
	}

	.banner-right {
		width: 35%;
	}

	.info {
		font-size: 18px;
		margin-bottom: 0;
	}

	/* 系列会议 */
	.xilie_box ul li {
		flex-direction: column;
		align-items: stretch;
		border-radius: 6px;
	}

	.xilie-time {
		border-radius: 4px;
		margin-right: 0;
		padding: 2%;
		text-align: center;
		margin-bottom: 5px;
	}

	.xilie-time span {
		display: inline-block;
		font-size: 14px;
	}

	.xilie-time span:nth-of-type(1) {
		font-size: 16px;
	}

	.xilie-info p {
		font-size: 16px;
	}

	.xilie-info p:last-of-type {
		align-items: flex-end;
		justify-content: space-between;
		flex-direction: column;
	}

	.xilie-info p span {
		float: none;
		display: block;
		max-width: 100%;
	}

	.xilie-info p a {
		float: none;
		text-align: right;
		display: block;
		padding-right: 4%;
	}

	.dialog_box h4 span.active {
		font-size: 20px;
		padding-bottom: 3px;
		border-bottom: 1px solid #0028a0;
	}

	.dialog_item_zhuce .password-eye {
		right: 0;
	}

	.userinfo-password .password-eye {
		top: auto;
		bottom: 0;
	}

	.zhuce_title {
		padding: 0 0 10px;
	}

	/* 系列会议 END */


	/* 2022-06-20新增修改 */
	.xilie_box ul {
		align-items: center;
		flex-direction: column;
	}

	.xilie_box ul li {
		width: 100%;
		margin-left: 0;
	}

	.xilie_box ul li h6 {
		max-width: 60%;
	}

	.xilie-info p a {
		padding-right: 15px;
	}

	/* 2022-06-20新增修改结束 */
}

@media only screen and (max-width: 480px),
only screen and (max-device-width: 480px),
only screen and (max-device-height: 480px) {

	.right,
	.mktoFormRow,
	#mktoForm_10334 {
		width: 100% !important;
	}
}