/* 针对大屏幕的样式 */
@media screen and (min-width: 1024px) {
	.newsContent{
		width: 75%;
		padding-right: 30px;
		box-sizing: border-box;
	}
	.tabs-container {
	    width: 100%;
	    margin: 0 auto;
	}
	
	.tabs {
	    display: flex;
	    /* border-bottom: 2px solid #ccc; */
		align-items: center;
	}
	.tabsub{
		font-size: 16px;
		font-weight: bold;
		color: #333;
		margin: 0 15px;
		padding-bottom: 10px;
	}
	.tab {
	    /* padding: 0px 8px; */
	    cursor: pointer;
	    position: relative;
		font-size: 24px;
		font-weight: bold;
		padding-bottom: 5px;
	}
	
	.tab.active {
	 /*   border-bottom: solid #c33;
	    border-bottom: 2px solid #c33; */
	    
	}
	.tab span {
		width: 16px;
		height: 3px;
		background-color: #c33;
		display: block;
	}
	
	.content-box {
	    display: none;
	}
	
	.content-box.active {
	    display: block;
	}
	.newsList{
		display: flex;
		margin-top: 26px;
	}
	.newsListImg{
		width: 356px;
		height: 200px;
	}
	.newsListImg img{
		width: 100%;
		height: 100%;
	}
	.newsListTxt{
		flex: 1;
		padding-left: 20px;
		box-sizing: border-box;
	}
	.newsListTitle{
		font-size: 18px;
		font-weight: bold;
	}
	.newsListAbstract{
		font-size: 15px;
        margin: 10px 0px 10px 0px;
        color: #a19191;
	}
	.newsListDate{
		font-size: 15px;
		height: 73px;
	}
	.newsListReported{
		display: flex;
		justify-content: space-between;
		font-size: 16px;
	}
	.newsListReported a{
		font-weight: bold;
		font-size: 16px;
	}
	.title {
		width: 100%;
		margin-bottom: 10px;
		display: flex;
		flex-direction: column;
		font-weight: bold;
	}

	.title b {
		font-size: 24px;
		line-height: 1.5em;
		color: #000;
	}
	.title-b {
		font-size: 18px !important; 
		line-height: 1.5em !important;
		color: #000 !important;
	}
	
	.title span {
		width: 16px;
		height: 3px;
		background-color: #000;
		display: block;
	}
}

/* 针对中等屏幕的样式 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
	.newsContent{
		width: 100%;
		box-sizing: border-box;
	}
	.tabs-container {
	    width: 100%;
	    margin: 0 auto;
	}
	
	.tabs {
	    display: flex;
	    border-bottom: 2px solid #ccc;
	    margin-bottom: 20px;
		align-items: center;
	}
	.tabsub{
		font-size: 16px;
		font-weight: bold;
		color: #333;
		margin: 0 15px;
		padding-bottom: 10px;
	}
	.tab {
	    padding: 0px 8px;
	    cursor: pointer;
	    position: relative;
		font-size: 18px;
		font-weight: bold;
		padding-bottom: 10px;
	}
	
	.tab.active {
	    border-bottom: 2px solid #c33;
	}
	
	.content-box {
	    display: none;
	}
	
	.content-box.active {
	    display: block;
	}
	.newsList{
		display: flex;
		margin-top: 15px;
	}
	.newsListImg{
		width: 200px;
	}
	.newsListImg img{
		width: 100%;
		height: 100%;
	}
	.newsListTxt{
		flex: 1;
		padding-left: 20px;
		box-sizing: border-box;
	}
	.newsListTitle{
		font-size: 18px;
		font-weight: bold;
	}
	.newsListAbstract{
		font-size: 14px;
		margin: 20px 0px;
	}
	.newsListDate{
		font-size: 14px;
	}
	.newsListReported{
		display: flex;
		justify-content: space-between;
		font-size: 14px;
	}
	.newsListReported a{
		font-weight: bold;
		font-size: 16px;
	}
}

/* 针对小屏幕的样式 */
@media screen and (max-width: 767px) {
	.newsContent{
		width: 100%;
		box-sizing: border-box;
	}
	.tabs-container {
	    width: 100%;
	    margin: 0 auto;
	}
	
	.tabs {
	    display: flex;
	    border-bottom: 1px solid #ccc;
	    margin-bottom: 20px;
		align-items: center;
	}
	.tabsub{
		font-size: 16px;
		font-weight: bold;
		color: #333;
		margin: 0 15px;
		padding-bottom: 10px;
		display: none;
	}
	.tab {
		width: 50%;
	    padding: 0px 8px;
	    cursor: pointer;
	    position: relative;
		font-size: 20px;
		font-weight: bold;
		padding-bottom: 10px;
		box-sizing: border-box;
	}
	
	.tab.active {
	    border-bottom: 2px solid #c33;
	}
	
	.content-box {
	    display: none;
	}
	
	.content-box.active {
	    display: block;
	}
	.newsList{
		display: flex;
		flex-direction: column;
		margin-top: 15px;
	}
	.newsListImg{
		width: 100%;
	}
	.newsListImg img{
		width: 100%;
	}
	.newsListTxt{
		margin-top: 15px;
		width: 100%;
		box-sizing: border-box;
	}
	.newsListTitle{
		font-size: 14px;
		font-weight: bold;
	}
	.newsListAbstract{
		font-size: 12px;
		margin: 10px 0px;
	}
	.newsListDate{
		font-size: 14px;
	}
	.newsListReported{
		display: flex;
		justify-content: space-between;
		font-size: 14px;
	}
	.newsListReported a{
		font-weight: bold;
		font-size: 16px;
	}
	.hr{
		height: 50px;
		display: block !important;
	}
}