/* 针对大屏幕的样式 */
@media screen and (min-width: 1024px) {
	.publication-module {
	  /* 根据需要添加样式 */
	}
	.content {
	  overflow: hidden;
	  transition: max-height 0.5s ease-out;
	  max-height: 0; /* 初始状态折叠 */
	}
	
	.content.collapsed {
	  max-height: 0; /* 折叠状态，与.content的初始状态相同，但用于明确标识 */
	}
	
	.publication-module.expanded .content {
	  max-height: 1000px; /* 展开状态的最大高度，根据实际内容调整 */
	}
	
	.licationTitle {
	  cursor: pointer; /* 指示标题是可点击的 */
	}
	.publicationsContent{
		width: 75%;
		padding-right: 30px;
		box-sizing: border-box;
	}
	
	.publication-module {
		width: 100%;
		margin: 0 0;
		padding: 16px 24px;
		box-sizing: border-box;
		cursor: pointer;
		overflow: hidden;
	}
	.publicationTop{
		width: 100%;
		height: auto;
	}
	.licationTime{
		margin-bottom: 10px;
		font-size: 18px;
	/*	font-weight: bold; */
	}
	.licationTitle{
		display: flex;
		align-items: center;
		width: 100%;
		margin-bottom: 15px;
	}
	.licationTitle b{
		font-size: 18px;
		font-weight: bold;
		line-height: 1.5em;
		flex: 1;
		padding-left: 10px;
		box-sizing: border-box;
	}
	.arrow {
		margin-right: 10px;
		transition: transform 0.3s ease;
		display: block;
		font-weight: bold;
		font-family: sans-serif,'Open Sans';
		font-size: 24px;
		color: rgb(204, 51, 51);
	}
	
	.publication-module.expanded .arrow {
		transform: rotate(90deg);
	}
	
	.publicationTxt {
		flex-grow: 1;
	}
	
	.content {
		
		overflow: hidden;
		max-height: 0;
		transition: max-height 0.5s ease-out;
	}
	.licationText{
		border-radius: 15px;
		width: 96%;
		height: 100%;
		padding: 20px;
		box-sizing: border-box;
		background-color: #efefef;
		margin-left: 4%;
		margin-top: 15px;
	}
	.licationText h3{
		font-size: 16px;
		font-weight: bold;
		margin-bottom: 5px;
		line-height: 1.5em;
	}
	.licationText a{
		color: #047;
	}
	.licationText a:hover{
		color: rgb(204, 51, 51);
	}
	.licationText p{
		font-size: 15px;
		line-height: 1.7em;
		text-align: justify;
	}
	.publication-module.expanded .content {
		max-height: 100%;
		/* 或者其他足够大的值 */
	}
	.licationName{
		padding-left: 34px;
		box-sizing: border-box;
		color: #999;
		font-size: 17px;
		line-height: 1.0em;
	}
	.licationRed{
		font-size: 16px;
		padding-left: 34px;
		line-height: 2.0em;
	}
	.licationRed span{
		color: rgb(204, 51, 51);
	}
	
	
	
	.licationTitleChild{
		display: flex;
		align-items: center;
		width: 100%;
		margin-bottom: 15px;
		border-bottom: 1px solid #333;
		padding-bottom: 15px;
	}
	.licationTitleChild b{
		font-size: 24px;
		font-weight: bold;
		line-height: 1.5em;
		flex: 1;
		padding-left: 10px;
		box-sizing: border-box;
	}
	.arrowChild {
		margin-right: 10px;
		transition: transform 0.3s ease;
		display: block;
		font-weight: bold;
		font-family: 'Open Sans', sans-serif;
		font-size: 32px;
		color: #333;
	}
	
	.publication-module.expanded .arrow {
		transform: rotate(90deg);
	}
	
	.publicationTxt {
		flex-grow: 1;
	}
	.content {
		margin: 0;
		max-height: 0;
		transition: max-height 0.5s ease-out;
	}
	
	.publicationsChildList{
		padding-bottom: 20px;
		border-bottom: 1px solid #999;
		margin-top: 20px;
	}
	.childListTitle{
		display: flex;
		align-items: start;
	}
	.childListTitle span{
		width: 26px;
		font-weight: bold;
		font-size: 18px;
		color: rgb(204, 51, 51);
	}
	.childListTitle b{
		font-size: 18px;
		font-weight: bold;
		line-height: 1.5em;
	}
	.childListName{
		padding-left: 26px;
		color: #999;
		font-size:16px;
		line-height: 1.5em;
		box-sizing: border-box;
	}
	.childListLink{
		padding-left: 26px;
		color: #333;
		font-size:16px;
		line-height: 1.5em;
		box-sizing: border-box;
	}
	.childListLink span{
		color: #c33
	}
	.childListLink b{
		font-weight: bold;
		color: #333;
	}
	.childListLink a{
		color: #047;
	}
	.accotdionList{
		margin-top: 15vh;
	}
	
}

/* 针对中等屏幕的样式 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
	.publicationsContent{
		width: 100%;
		padding-right: 30px;
		box-sizing: border-box;
	}
	
	.publication-module {
		width: 100%;
		margin: 0 0;
		padding: 16px 10px;
		box-sizing: border-box;
		cursor: pointer;
		overflow: hidden;
	}
	.publicationTop{
		width: 100%;
		height: auto;
	}
	.licationTime{
		margin-bottom: 10px;
		font-size: 18px;
		font-weight: bold;
	}
	.licationTitle{
		display: flex;
		align-items: center;
		width: 100%;
		margin-bottom: 15px;
	}
	.licationTitle b{
		font-size: 18px;
		font-weight: bold;
		line-height: 1.5em;
		flex: 1;
		padding-left: 10px;
		box-sizing: border-box;
	}
	.arrow {
		margin-right: 10px;
		transition: transform 0.3s ease;
		display: block;
		font-weight: bold;
		font-family: 'Open Sans', sans-serif;
		font-size: 24px;
		color: rgb(204, 51, 51);
	}
	
	.publication-module.expanded .arrow {
		transform: rotate(90deg);
	}
	
	.publicationTxt {
		flex-grow: 1;
	}
	
	.content {
		
		overflow: hidden;
		max-height: 0;
		transition: max-height 0.5s ease-out;
	}
	.licationText{
		border-radius: 15px;
		width: 96%;
		height: 100%;
		padding: 20px;
		box-sizing: border-box;
		background-color: #efefef;
		margin-left: 4%;
		margin-top: 15px;
	}
	.licationText h3{
		font-size: 16px;
		font-weight: bold;
		margin-bottom: 5px;
		line-height: 1.5em;
	}
	.licationText a{
		color: #047;
	}
	.licationText a:hover{
		color: rgb(204, 51, 51);
	}
	.licationText p{
		font-size: 14px;
		line-height: 1.5em;
	}
	.publication-module.expanded .content {
		max-height: 200vh;
		/* 或者其他足够大的值 */
	}
	.licationName{
		padding-left: 34px;
		box-sizing: border-box;
		color: #999;
		font-size: 18px;
		line-height: 1.5em;
	}
	.licationRed{
		font-size: 18px;
		padding-left: 34px;
		line-height: 1.5em;
	}
	.licationRed span{
		color: rgb(204, 51, 51);
	}
	.licationTitleChild{
		display: flex;
		align-items: center;
		width: 100%;
		margin-bottom: 15px;
		border-bottom: 1px solid #333;
		padding-bottom: 15px;
	}
	.licationTitleChild b{
		font-size: 24px;
		font-weight: bold;
		line-height: 1.5em;
		flex: 1;
		padding-left: 10px;
		box-sizing: border-box;
	}
	.arrowChild {
		margin-right: 10px;
		transition: transform 0.3s ease;
		display: block;
		font-weight: bold;
		font-family: 'Open Sans', sans-serif;
		font-size: 32px;
		color: #333;
	}
	
	.publication-module.expanded .arrow {
		transform: rotate(90deg);
	}
	
	.publicationTxt {
		flex-grow: 1;
	}
	.content {
		margin: 0;
		max-height: 0;
		transition: max-height 0.5s ease-out;
	}
	
	.publicationsChildList{
		padding-bottom: 20px;
		border-bottom: 1px solid #999;
		margin-top: 20px;
	}
	.childListTitle{
		display: flex;
		align-items: start;
	}
	.childListTitle span{
		width: 26px;
		font-weight: bold;
		font-size: 18px;
		color: rgb(204, 51, 51);
	}
	.childListTitle b{
		font-size: 18px;
		font-weight: bold;
		line-height: 1.5em;
	}
	.childListName{
		padding-left: 26px;
		color: #999;
		font-size:16px;
		line-height: 1.5em;
		box-sizing: border-box;
	}
	.childListLink{
		padding-left: 26px;
		color: #333;
		font-size:16px;
		line-height: 1.5em;
		box-sizing: border-box;
	}
	.childListLink span{
		color: #c33
	}
	.childListLink b{
		font-weight: bold;
		color: #333;
	}
	.childListLink a{
		color: #047;
	}
	.accotdionList{
		margin-top: 10vh;
	}
}

/* 针对小屏幕的样式 */
@media screen and (max-width: 767px) {
	.publicationsContent{
		width: 100%;
		padding-right: 30px;
		box-sizing: border-box;
	}
	
	.publication-module {
		width: 100%;
		margin: 0 0;
		padding: 16px 10px;
		box-sizing: border-box;
		cursor: pointer;
		overflow: hidden;
	}
	.publicationTop{
		width: 100%;
		height: auto;
	}
	.licationTime{
		margin-bottom: 10px;
		font-size: 18px;
		font-weight: bold;
	}
	.licationTitle{
		display: flex;
		align-items: center;
		width: 100%;
		margin-bottom: 15px;
	}
	.licationTitle b{
		font-size: 18px;
		font-weight: bold;
		line-height: 1.5em;
		flex: 1;
		padding-left: 10px;
		box-sizing: border-box;
		word-break: break-all;
	}
	.arrow {
		margin-right: 10px;
		transition: transform 0.3s ease;
		display: block;
		font-weight: bold;
		font-family: 'Open Sans', sans-serif;
		font-size: 24px;
		color: rgb(204, 51, 51);
	}
	
	.publication-module.expanded .arrow {
		transform: rotate(90deg);
	}
	
	.publicationTxt {
		flex-grow: 1;
	}
	
	.content {
		
		overflow: hidden;
		max-height: 0;
		transition: max-height 0.5s ease-out;
	}
	.licationText{
		border-radius: 15px;
		width: 96%;
		height: 100%;
		padding: 20px;
		box-sizing: border-box;
		background-color: #efefef;
		margin-left: 4%;
		margin-top: 15px;
	}
	.licationText h3{
		font-size: 16px;
		font-weight: bold;
		margin-bottom: 5px;
		line-height: 1.5em;
	}
	.licationText a{
		color: #047;
	}
	.licationText a:hover{
		color: rgb(204, 51, 51);
	}
	.licationText p{
		font-size: 14px;
		line-height: 1.5em;
		word-break: break-all;
	}
	.publication-module.expanded .content {
		max-height: 200vh;
		/* 或者其他足够大的值 */
	}
	.licationName{
		padding-left: 34px;
		box-sizing: border-box;
		color: #999;
		font-size: 14px;
		line-height: 1.5em;
		word-break: break-all;
	}
	.licationRed{
		font-size: 14px;
		padding-left: 34px;
		line-height: 1.5em;
	}
	.licationRed span{
		color: rgb(204, 51, 51);
	}
	.licationTitleChild{
		display: flex;
		align-items: center;
		width: 100%;
		margin-bottom: 15px;
		border-bottom: 1px solid #333;
		padding-bottom: 15px;
	}
	.licationTitleChild b{
		font-size: 24px;
		font-weight: bold;
		line-height: 1.5em;
		flex: 1;
		padding-left: 10px;
		box-sizing: border-box;
	}
	.arrowChild {
		margin-right: 10px;
		transition: transform 0.3s ease;
		display: block;
		font-weight: bold;
		font-family: 'Open Sans', sans-serif;
		font-size: 32px;
		color: #333;
	}
	
	.publication-module.expanded .arrow {
		transform: rotate(90deg);
	}
	
	.publicationTxt {
		flex-grow: 1;
	}
	.content {
		margin: 0;
		max-height: 0;
		transition: max-height 0.5s ease-out;
	}
	
	.publicationsChildList{
		padding-bottom: 20px;
		border-bottom: 1px solid #999;
		margin-top: 20px;
	}
	.childListTitle{
		display: flex;
		align-items: start;
	}
	.childListTitle span{
		width: 26px;
		font-weight: bold;
		font-size: 18px;
		color: rgb(204, 51, 51);
	}
	.childListTitle b{
		font-size: 18px;
		font-weight: bold;
		line-height: 1.5em;
	}
	.childListName{
		padding-left: 26px;
		color: #999;
		font-size:16px;
		line-height: 1.5em;
		box-sizing: border-box;
	}
	.childListLink{
		padding-left: 26px;
		color: #333;
		font-size:16px;
		line-height: 1.5em;
		box-sizing: border-box;
	}
	.childListLink span{
		color: #c33
	}
	.childListLink b{
		font-weight: bold;
		color: #333;
	}
	.childListLink a{
		color: #047;
	}
	.accotdionList{
		margin-top: 10vh;
	}
	.hr{
		height: 50px;
		display: block !important;
	}
}