* {
	margin: 0;
	padding: 0;
}

body {
	overflow: scroll;
	overflow-x: hidden;
}

.header-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	transition: all 0.3s ease;
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-wrapper.transparent {
	background-color: transparent;
	box-shadow: none;
}

.header-wrapper.white-bg {
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 轮播图样式 */
.lunbo {
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}

.banner {
	width: 100%;
	height: 800px;
	position: relative;
	overflow: hidden;
}

/* 轮播图容器改为相对定位，让图片可以叠放 */
#b05 {
	position: relative;
}

/* 取消ul的滚动宽度和left过渡，改为相对定位 */
#b05 ul {
	list-style: none;
	width: 100%; /* 宽度100%即可，不需要适配多图 */
	height: 100%;
	position: relative;
	margin: 0;
	padding: 0;
}

/* 所有图片叠在一起（绝对定位），默认隐藏 */
#b05 ul li {
	position: absolute; /* 叠放 */
	top: 0;
	left: 0;
	width: 100%; /* 占满容器 */
	height: 100%;
	opacity: 0; /* 默认隐藏 */
	transition: opacity 0.3s ease; /* 可选：淡入淡出过渡，不加就是瞬间切换 */
}

/* 激活的图片显示 */
#b05 ul li.active {
	opacity: 1; /* 显示当前图 */
	z-index: 1; /* 确保在最上层 */
}

/* 移除原来的left过渡（如果有） */
#b05 ul {
	transition: none; /* 取消滚动动画 */
}

.banner-image {
	/*height: 800px; !* 占满父容器高度 *!*/
	height: 100%; /* 占满父容器高度 */
	width: auto;   /* 宽度自适应 */
	object-fit: contain; /* 保证完整显示，不裁剪 */
	display: block;
	margin: 0 auto;
	max-width: 100%; /* 防止图片超出容器 */
}

/* 新增标题样式 */
.banner-title {
	position: absolute;
	bottom: 30px;
	left: 0;
	right: 0;
	text-align: center;
	color: white;
	font-size: 24px;
	font-weight: bold;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	opacity: 0;
	transition: opacity 0.3s ease;
}

#b05 ul li.active .banner-title {
	opacity: 1;
}

/* 箭头样式 */
.prev-arrow, .next-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px; /* 调整宽度 */
	height: 80px; /* 调整高度 */
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	font-size: 24px;
	line-height: 80px;
	text-align: center;
	border-radius: 0; /* 移除圆角 */
	cursor: pointer;
	z-index: 10;
	transition: background-color 0.3s;
}

.prev-arrow {
	left: 20px;
}

.next-arrow {
	right: 20px;
}

.prev-arrow:hover, .next-arrow:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

/* 指示点 */
.dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background-color 0.3s;
}

.dot.active {
	background-color: #000000;
}

/* 中部整体模块 */
.section {
	position: relative;
	z-index: 1;
}

ul {
	list-style: none
}

a {
	text-decoration: none
}

input {
	outline: none
}

img {
	border-style: none
}

.iconfont {
	font-family: "iconfont" !important;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke-width: 0.2px;
	-moz-osx-font-smoothing: grayscale
}

i:hover {
	cursor: pointer
}

.none {
	display: none
}

.img-scale {
	transition: all 0.2s;
}

.img-scale:hover {
	transform: scale(1.05);
	transition-duration: 400ms;
}

.more {
	float: right;
	margin-top: 10px;
}

.more .search {
	color: #999;
	font-size: 16px;
}

.more:hover a {
	color: #E30B20
}

.more:hover i {
	color: #E30B20
}

.more a {
	font-size: 14px;
	font-weight: 300;
	color: #666;
}

.section .typeArea {
	width: 1500px;
	margin: 0 auto;
	position: relative
}

/* 服务项目模块 */
.service-section {
	padding: 60px 0;
	background-color: transparent;
	text-align: center;
}

.service-title h2 {
	font-size: 28px;
	font-weight: bold;
	color: #333;
	margin-bottom: 10px;
}

.service-title span {
	color: #000;
	font-weight: normal;
	margin-left: 10px;
}

.service-title p {
	color: #666;
	font-size: 14px;
	margin-bottom: 40px;
}

.service-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 1500px;
	margin: 0 auto;
}

.service-item {
	flex: 1;
	min-width: 300px;
	padding: 10px;
	text-align: center;
	background: white;
	border-radius: 0px;
	margin: 10px;
	transition: transform 0.3s ease;
}

.service-item:hover {
	transform: translateY(-5px);
}

.service-item img {
	width: 280px;
	height: 420px;
	object-fit: cover;
	border-radius: 0px;
	margin-bottom: 15px;
}

.service-item h3 {
	font-size: 18px;
	color: #333;
	margin-bottom: 10px;
}

.service-item p {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

/* 产品系列模块 */
.product-container {
	padding: 40px 0;
	text-align: center;
}

.product-header {
	margin-bottom: 40px;
}

.product-title {
	font-size: 32px;
	color: #333;
	margin-bottom: 10px;
}

.product-subtitle {
	font-size: 16px;
	color: #666;
}

.product-grid {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.product-item {
	width: 280px;
	text-decoration: none;
	color: #333;
}

.product-item img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 15px;
	transition: transform 0.3s ease;
}

.product-item:hover img {
	transform: scale(1.05);
}

.product-item h3 {
	font-size: 18px;
}

/* 热点要闻模块 */
.hot {
	width: 1200px;
	height: 460px;
	margin: 56px auto 0;
}

.hot .nav {
	width: 785px;
	height: 40px;
	border-bottom: 1px solid #E5E5E5;
}

.hot .nav .title {
	float: left;
	width: 48px;
	height: 25px
}

.hot .nav .title a {
	font-size: 24px;
	font-weight: 450;
	color: #333;
	padding-bottom: 4px;
	border-bottom: 4px solid #000;
}

.hot .new-list {
	float: left;
	height: 424px;
	width: 785px;
}

.hot .new-list .new-left {
	float: left;
	width: 370px;
	margin-right: 20px;
}

.hot .new-list .new-left dl dt {
	padding-top: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
	height: 64px;
}

.hot .new-list .new-left dl dt a {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	line-height: 50px;
}

.hot .new-list .new-left dl dt a:hover {
	color: #E30B20
}

.hot .new-list .new-left dl dd {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
	height: 45px;
}

.hot .new-list .new-left dl dd a {
	font-size: 16px;
	color: #333;
	line-height: 45px;
}

.hot .new-list .new-left dl dd a:hover {
	color: #E30B20
}

.hot .new-list .new-right {
	float: right;
	width: 370px;
}

.hot .new-list .new-right dl dt a {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	line-height: 50px
}

.hot .new-list .new-right dl dt a:hover {
	color: #E30B20
}

.hot .new-list .new-right dl dd {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
	height: 45px;
}

.hot .new-list .new-right dl dd a {
	font-size: 16px;
	color: #333;
	line-height: 45px;
}

.hot .new-list .new-right dl dd a:hover {
	color: #E30B20
}

.hot .ranking {
	float: right;
	text-align: center;
	position: relative;
	width: 370px;
	height: 448px;
	border: 1px solid #E5E5E5;
	border-radius: 4px;
	margin-top: -20px
}

.hot .ranking .box {
	width: 168px;
	height: 35px;
	position: absolute;
	top: -18px;
	left: 50%;
	margin-left: -84px;
	background-color: #fff
}

.hot .ranking .box .logo {
	width: 138px;
	height: 35px;
	position: absolute;
	left: 50%;
	margin-left: -69px;
	font-size: 20px;
	font-weight: 400;
	color: #fff;
	background-color: #000;
	border-radius: 4px;
	line-height: 35px
}

.hot .ranking ul {
	overflow: hidden;
	height: 330px;
	margin-top: 49px;
}

.hot .ranking ul li {
	position: relative;
	width: 370px;
	height: 110px
}

.hot .ranking ul li .rank-img {
	margin-left: 20px;
	width: 155px;
	height: 90px;
	overflow: hidden;
	margin-top: 5px;
	border-radius: 4px;
}

.hot .ranking ul li .rank-img img {
	width: 100%;
	height: 100%;
}

.hot .ranking ul li .num {
	font-size: 24px;
	width: 32px;
	font-style: italic;
	color: #000;
	float: left;
	text-align: right;
	height: 110px;
	font-family: Arial;
}

.hot .ranking ul li .text {
	margin-top: 5px;
	float: left;
	width: 163px;
	height: 45px;
	padding-left: 20px;
	text-align: left;
	font-size: 16px;
	color: #333;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.hot .ranking ul li .text:hover {
	color: #E30B20;
}

.hot .ranking ul li .read {
	color: #999;
	font-size: 14px;
	position: absolute;
	top: 78px;
	left: 224px;
}

.hot .ranking .slide {
	width: 368px;
	height: 43px;
	background-color: #fff;
	border-radius: 0px 0px 0px 4px;
	margin-top: 24px;
}

.hot .ranking .slide .left {
	width: 183px;
	height: 43px;
	float: left;
	line-height: 43px;
	background-color: #F5F5F5;
	display: block
}

.hot .ranking .slide .hoverED:hover {
	background-color: #EDEDED !important;
}

.hot .ranking .slide .hoverED:hover i {
	color: #CC0000 !important;
	cursor: pointer;
}

.hot .ranking .slide .left i {
	color: #999;
}

.hot .ranking .slide .right {
	width: 183px;
	height: 43px;
	float: right;
	line-height: 43px;
	background-color: #F5F5F5;
}

/* 国内模块 */
.inland {
	width: 1200px;
	height: 230px;
	margin-top: 55px;
}

.inland .nav {
	width: 1200px;
	height: 40px
}

.inland .nav .title {
	float: left;
	width: 48px;
	height: 25px
}

.inland .nav .title a {
	font-size: 24px;
	font-weight: 450;
	color: #333
}

.inland .nav .navbar {
	float: right;
}

.inland .nav .navbar ul {
	margin-right: -30px;
}

.inland .nav .navbar ul li {
	float: left;
	margin-left: 30px
}

.inland .nav .navbar ul li a {
	font-size: 14px;
	color: #333;
	line-height: 41px
}

.inland .nav .navbar ul li a:hover {
	color: #E30B20
}

.inland .imgbox {
	background: #F5F5F5;
	width: 1200px;
	height: 180px;
	position: relative;
	border-radius: 4px;
	margin-top: 7px;
	padding-top: 30px;
}

.inland .imgbox .text {
	width: 50px;
	height: 180px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #E30B20;
	border-radius: 4px 0px 0px 4px;
}

.inland .imgbox .text .wenzi {
	font-size: 24px;
	color: #fff;
	width: 24px;
	height: 116px;
	margin: 0 auto;
	margin-top: 25px
}

.inland .imgbox ul {
	margin-left: 50px;
}

.inland .imgbox ul li {
	float: left;
	margin-left: 18px
}

.inland .imgbox ul li a {
	width: 208px;
	height: 115px;
	display: block;
	border-radius: 4px;
	overflow: hidden
}

.inland .imgbox ul li a img {
	width: 208px;
	height: 115px
}

/* 分类主题模块 */
.module-box {
	width: 1200px;
	margin-top: 55px;
	margin-bottom: 48px;
}

.module-box .module-inland {
	width: 370px;
	height: 510px;
	float: left
}

.module-box .module-inland .nav {
	width: 370px;
	height: 40px;
	border-bottom: 1px solid #E5E5E5
}

.module-box .module-inland .nav .title {
	float: left;
	width: 48px;
	height: 25px
}

.module-box .module-inland .nav .title a {
	font-size: 24px;
	font-weight: 400;
	color: #333;
	padding-bottom: 4px;
	border-bottom: 4px solid #E30B20;
}

.module-box .module-inland .subject {
	width: 370px;
	height: 204px;
	margin-top: 30px;
	position: relative;
}

.module-box .module-inland .subject .image {
	margin-bottom: 13px;
}

.module-box .module-inland .subject .image .img {
	width: 370px;
	height: 204px;
	overflow: hidden;
	display: block;
	position: relative;
	border-radius: 4px;
}

.module-box .module-inland .subject .image .img img {
	width: 370px;
	height: 204px;
	position: absolute;
	left: 50%;
	margin-left: -185px;
	top: 50%;
	margin-top: -102px;
}

.module-box .module-inland .subject .image .text {
	position: absolute;
	left: 0;
	bottom: 0;
	text-align: center;
	background: rgba(0, 0, 0, 0.5);
	width: 370px;
	height: 40px
}

.module-box .module-inland .subject .image .text a {
	color: #fff;
	font-size: 16px;
	line-height: 40px
}

.module-box .module-inland .subject .image .text a:hover {
	color: #E30B20
}

.module-box .module-inland .subject ul li {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}

.module-box .module-inland .subject ul li a {
	font-size: 16px;
	color: #333;
	line-height: 45px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}

.module-box .module-inland .subject ul li a:hover {
	color: #E30B20
}

.module-box .module-international {
	width: 370px;
	height: 510px;
	float: left;
	margin-left: 45px;
}

.module-box .module-international .nav {
	width: 370px;
	height: 40px;
	border-bottom: 1px solid #E5E5E5
}

.module-box .module-international .nav .title a {
	font-size: 24px;
	font-weight: 400;
	color: #333;
	padding-bottom: 4px;
	border-bottom: 4px solid #E30B20
}

.module-box .module-international .subject {
	width: 370px;
	height: 204px;
	margin-top: 30px;
	position: relative
}

.module-box .module-international .subject ul li a {
	font-size: 16px;
	color: #333;
	line-height: 45px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}

.module-box .module-international .subject ul li a:hover {
	color: #E30B20
}

.module-box .module-financeAndEconomics {
	width: 370px;
	height: 510px;
	float: left;
	margin-left: 45px
}

.module-box .module-financeAndEconomics .nav {
	width: 370px;
	height: 40px;
	border-bottom: 1px solid #E5E5E5
}

.module-box .module-financeAndEconomics .nav .title a {
	font-size: 24px;
	font-weight: 400;
	color: #333;
	padding-bottom: 4px;
	border-bottom: 4px solid #E30B20
}

.module-box .module-financeAndEconomics .subject ul li a {
	font-size: 16px;
	color: #333;
	line-height: 45px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}

.module-box .module-financeAndEconomics .subject ul li a:hover {
	color: #E30B20
}

.module-box .module-sports {
	width: 370px;
	height: 500px;
	float: left
}

.module-box .module-sports .nav {
	width: 370px;
	height: 40px;
	border-bottom: 1px solid #E5E5E5
}

.module-box .module-sports .nav .title a {
	font-size: 24px;
	font-weight: 400;
	color: #333;
	padding-bottom: 4px;
	border-bottom: 4px solid #E30B20;
}

.module-box .module-sports .subject ul li a {
	font-size: 16px;
	color: #333;
	line-height: 45px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}

.module-box .module-sports .subject ul li a:hover {
	color: #E30B20
}

.clearfix {
	clear: both;
}

/* 时尚风向模块整体容器 */
.sy_news {
	margin: 40px auto;
	padding: 0 20px;
	font-family: "Microsoft Yahei", sans-serif;
	/* 删掉这行：transform: translateX(-100px); （核心！这行导致整体偏移，标题视觉不居中） */
	max-width: 1400px; /* 新增：限制最大宽度，让标题在页面中更居中 */
}

/* 标题区域 */
.sy_tit {
	text-align: center;
	margin-bottom: 30px;
}
.sy_tit h1 {
	font-size: 28px;
	font-weight: 700;
	color: #333;
	margin: 0 0 10px;
}

.sy_tit_zy {
	font-size: 14px;
	color: #666;
	margin-bottom: 50px;
	line-height: 1.6;
}

/* 新闻区块整体样式 */
.sy_news_row {
	display: flex;
	gap: 40px;
	margin: 0 auto;
	padding: 60px 20px;
	background-color: #f8f9fa;
	font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
	align-items: flex-start; /* 改为顶部对齐 */
}

/* 左侧大图区域 - 固定尺寸 */
.sy_news_le {
	flex: 0 0 300px; /* 固定宽度 */
	width: 300px;
	height: 640px;
	overflow: hidden; /* 确保图片不会溢出容器 */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sy_news_le img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.sy_news_le img:hover {
	transform: scale(1.05);
}

/* 右侧文章列表容器 - 更长一些 */
.sy_news_rt {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
}

/* 单个新闻卡片 - 增加高度 */
.sy_news_card {
	background: white;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid #eaeaea;
	height: 200px; /* 增加卡片高度 */
}

.sy_news_card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
	border-color: #d0d0d0;
}

.sy_news_card a {
	display: flex;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

/* 卡片图片区域 - 调整大小 */
.sy_news_img {
	flex: 0 0 300px; /* 图片区域宽度 */
	height: 100%; /* 占满卡片高度 */
	overflow: hidden;
}

.sy_news_img img {
	width: 300px;
	height: 200px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.sy_news_card:hover .sy_news_img img {
	transform: scale(1.05);
}

/* 卡片文本区域 - 增加高度 */
.sy_news_text {
	flex: 1;
	padding: 20px 25px;
	display: flex;
	flex-direction: column;
	justify-content: space-between; /* 内容在垂直方向均匀分布 */
	min-width: 0;
	height: 100%;
}

.sy_news_text h3 {
	margin: 0 0 12px 0;
	font-size: 18px;
	font-weight: 600;
	color: #333;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: color 0.2s ease;
}

.sy_news_card:hover h3 {
	color: #000000;
}

/* 新闻时间样式 */
.news-time {
	font-size: 13px;
	color: #666;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
}

.news-time span:first-child {
	color: #888;
	background: #f0f0f0;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 12px;
}

#views {
	color: #666;
	font-weight: 500;
}

/* 摘要样式 - 增加显示行数 */
.sy_news_zy {
	margin: 0 0 15px 0;
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3; /* 显示3行 */
	-webkit-box-orient: vertical;
	flex-grow: 1;
}

/* MORE按钮样式 */
.news-more {
	align-self: flex-start;
	font-size: 13px;
	color: #000000;
	font-weight: 500;
	padding: 6px 15px;
	border: 1px solid #000000;
	border-radius: 20px;
	transition: all 0.3s ease;
	background-color: white;
	margin-top: auto; /* 自动推到底部 */
}

.sy_news_card:hover .news-more {
	background-color: #000000;
	color: white;
	transform: translateX(5px);
}

/* 响应式设计 */
@media (max-width: 1100px) {
	.sy_news_row {
		gap: 30px;
	}

	.sy_news_le {
		flex: 0 0 350px;
		width: 350px;
		height: 175px; /* 按比例缩小 */
	}

	.sy_news_img {
		flex: 0 0 180px; /* 缩小图片区域 */
	}
}

@media (max-width: 992px) {
	.sy_news_row {
		flex-direction: column;
		gap: 30px;
		padding: 40px 20px;
	}

	.sy_news_le {
		flex: 0 0 auto;
		width: 100%;
		max-width: 400px;
		height: 200px;
		margin: 0 auto;
	}

	.sy_news_card {
		height: auto; /* 在小屏上恢复自适应高度 */
	}

	.sy_news_img {
		flex: 0 0 150px;
		height: 150px;
	}
}

@media (max-width: 768px) {
	.sy_news_card a {
		flex-direction: column;
	}

	.sy_news_img {
		flex: 0 0 auto;
		height: 180px;
		width: 100%;
	}

	.sy_news_text {
		padding: 15px;
	}

	.sy_news_text h3 {
		font-size: 16px;
	}

	.sy_news_zy {
		font-size: 13px;
		-webkit-line-clamp: 2; /* 在小屏上只显示2行 */
	}
}

@media (max-width: 480px) {
	.sy_news_row {
		padding: 30px 15px;
	}

	.sy_news_le {
		height: 160px;
	}

	.sy_news_img {
		height: 140px;
	}

	.news-time {
		font-size: 12px;
	}
}

/* 添加分隔线（可选，美化卡片之间的间隔） */
.sy_news_card:not(:last-child)::after {
	content: '';
	display: block;
	height: 1px;
	background: linear-gradient(to right, transparent, #eaeaea, transparent);
	margin: 0 15px;
}

/* 加载动画效果 */
.sy_news_img img,
.sy_news_text h3,
.sy_news_zy {
	animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


.clearfix::after {
	content: "";
	display: table;
	clear: both;
}
/* 响应式适配（移动端） */
@media (max-width: 768px) {
	.sy_news_row {
		flex-direction: column;
	}
	.sy_news_le, .sy_news_rt {
		flex: 1 1 100%;
	}
	.sy_news_le {
		margin-bottom: 20px;
	}
	.sy_news_img {
		width: 40%;
	}
}

