﻿@charset "utf-8";

/* ----- fixTag ----- */
.fixTag {
	display:inline-block;
	vertical-align:middle;
	font-family:Arial, Helvetica, sans-serif;
	font-size:0.9rem;
	font-style:normal;
	font-weight:normal;
	line-height:24px;	
	text-transform:uppercase;
	color:#ffffff;
	padding:0 10px;
	background:#000;
	border-radius:10px;
	margin-left:0.5em;
	margin-top:-3px;
}
.fixTag.podcasts {
	text-transform:capitalize;
	background-color:#c62f00;
	margin-top:10px;
	margin-left:0;
}
.fixTag.pdf,
.fixTag.PDF {
	background:#a40000;
}
.fixTag.odt,
.fixTag.doc,
.fixTag.docx,
.fixTag.ODT,
.fixTag.DOC,
.fixTag.DOCX {
	background:#0068b7;
}
.fixTag.ods,
.fixTag.xls,
.fixTag.xlsx,
.fixTag.ODS,
.fixTag.XLS,
.fixTag.XLSX {
	background:#378837;
}
.fixTag.odp,
.fixTag.ppt,
.fixTag.pptx,
.fixTag.ODP,
.fixTag.PPT,
.fixTag.PPTX {
	background:#FF6600;
}
.fixTag.rar,
.fixTag.RAR {
	background:#67005E;
}
.fixTag.zip,
.fixTag.ZIP {
	background:#6a3906;
}


/* ----- infoWrap ----- */
.infoWrap {
	display:inline-flex;
	flex-direction:column;
	gap:5px;
	width:100%;
}
.txtList .infoWrap {
	width:calc(100% - 60px);
	margin-right:15px;
}
.txtList.picTxt .infoWrap {
	width:calc(100% - 260px);
}
.infoWrap time {
	color:#666;
	font-size:1.5em;
	line-height:135%;
}
.infoWrap p {
	position:relative;
	font-family:"Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
	color:#333333;
	font-size:2.1em;
    font-weight:bold;
	line-height:135%;
}
a:hover .infoWrap p,
a:focus .infoWrap p {
	color:#0e872a;
}
@media screen and (max-width:768px) {
	.txtList .infoWrap {
		width:calc(100% - 55px);
	}
	.txtList.picTxt .infoWrap {
		width:calc(100% - 195px);
	}
}
@media screen and (max-width:480px) {
	.txtList .infoWrap {
		width:calc(100% - 50px);
	}
	.txtList.picTxt .infoWrap {
		width:calc(100% - 170px);
	}
}
@media screen and (min-width:1260px) {
}
@media screen and (min-width:1680px) {
	.infoWrap p { font-size:2.3em; }
}


/* ----- txtList ----- */
.txtList {
	position:relative;
	width:100%;
	margin:0 auto;
}
.txtList ul {
	list-style:none;
}
.txtList ul li {
	width:100%;
	border-bottom:1px dashed #ccc;
}
.txtList ul li a {
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	width:100%;
	padding:15px;
	box-sizing:border-box;
}
.txtList ul li a:hover,
.txtList ul li a:focus {
	background-color:#e9f4ea;
}
.txtList ul li a .icon {
	width:45px;
	height:45px;
	text-indent:-999px;
	overflow:hidden;
	display:block;
	text-align:center;
	border-radius:100%;
	background:#0a5a3c url(../images/icoList1.svg) 50% 50% no-repeat;
	transition:all 0.5s ease;
}
.txtList ul li a.btn_Link .icon { background-image:url(../images/icoList2.svg) ;}
.txtList ul li a.btn_Down .icon { background-image:url(../images/icoList3.svg) ;}
.txtList ul li a.btn_Category .icon { background-image:url(../images/icoList4.svg) ;}
.txtList ul li a:hover .icon,
.txtList ul li a:focus .icon {
	background-color:#0e872a;
	transform:rotate(360deg);
}
.txtList.picTxt ul li a .photo {
	position:relative;
	width:180px;
	height:0;
	padding-bottom:120px;
	background-color:#8ad5dd;
	overflow:hidden;	
	border-radius:clamp(0.5rem, 2vw, 1.5rem);
	margin-right:20px
}
.txtList.picTxt ul li a .photo .img {
	position:absolute;
	width:100%;
	height:100%;
	display:block;
	background:#fff url(../images/nopic.jpg) 50% 50% no-repeat;
    background-size:cover;
	transition:0.5s;								
}
.txtList.picTxt ul li a:hover .photo .img,
.txtList.picTxt ul li a:focus .photo .img {
    transform:scale(1.1);			
}
@media screen and (max-width:768px) {
	.txtList.picTxt ul li a .photo {
		width:120px;
		padding-bottom:80px;
	}
	.txtList ul li a .icon {
		width:40px;
		height:40px;
		background-size:55% auto;
	}
}
@media screen and (max-width:480px) {
	.txtList ul li a {
		padding:15px 10px;
	}
	.txtList.picTxt ul li a .photo {
		width:90px;
		padding-bottom:60px;
	}
	.txtList ul li a .icon {
		width:35px;
		height:35px;
	}
}
@media screen and (min-width:1260px) {
	.txtList ul li a { padding:20px; }
}


/** ----- picList ----- **/
.picList {
	width:100%;
	margin:30px auto 0;
}
.picList ul {
  	display:flex;
    flex-wrap:wrap;
 	gap:30px 20px;
	list-style:none;
}
.picList ul li {
	width:calc((100% - 40px) / 3);
	box-sizing:border-box;	
	vertical-align:top;
	transition:all 0.5s ease;	
}
.picList ul li a {
	position:relative;	
	display:flex;
	flex-direction:column;
	gap:15px;
	width:100%;	
}
.picList ul li a .picBox {
	position:relative;	
	box-sizing:border-box;
}
.picList ul li a .icon {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
	background:rgba(10,90,60,.9);
	backdrop-filter:blur(2px);
	border-radius:clamp(1.5rem, 5vw, 2.5rem);
    z-index:1;
	transition:all 0.5s ease;
	opacity:0;
}
.picList ul li a:hover .icon,
.picList ul li a:focus .icon {
	opacity:1;			
}
.picList ul li a .icon span {
	position:relative;
	padding-top:55px;
	color:#fff;
	font-size:1.7em;
	font-weight:400;
	letter-spacing:0.1em;
}
.picList ul li a .icon span:before {
	content:"";
	display:block;    
	position:absolute;
	top:0;
	left:50%;
	width:45px;
	height:45px;
	margin-left:-22.5px;
	border-radius:100%;
	z-index:1;
	background-position:50% 50%;
	background-repeat:no-repeat;
	background-size:cover;
	background-color:#0a5a3c;
	-webkit-mask-position:50% 50%;
			mask-position:50% 50%;
	-webkit-mask-repeat:no-repeat;
			mask-repeat:no-repeat;
	-webkit-mask-size:24px 24px;
			mask-size:24px 24px;
	-webkit-mask-image:url(../images/icoList1.svg);
			mask-image:url(../images/icoList1.svg);
}
.picList ul li a.btn_Link .icon span:before {
	-webkit-mask-image:url(../images/icoList2.svg);
			mask-image:url(../images/icoList2.svg);
}
.picList ul li a.btn_Down .icon span:before {
	-webkit-mask-image:url(../images/icoList3.svg);
			mask-image:url(../images/icoList3.svg);
}
.picList ul li a.btn_Category .icon span:before {
	-webkit-mask-image:url(../images/icoList4.svg);
			mask-image:url(../images/icoList4.svg);
}
.picList ul li a .icon span:after {
	content:"";
	display:block;    
	position:absolute;
	top:0;
	left:50%;
	width:45px;
	height:45px;
	display:block;
	margin-left:-22.5px;
	border-radius:100%;
	background-color:#fff;
}
.picList ul li a .photo {
	position:relative;
	width:100%;
	height:0;
	padding-bottom:66.7%;
	background-color:#8ad5dd;
	overflow:hidden;	
	border-radius:clamp(1.5rem, 5vw, 2.5rem);
}
.picList ul li a .photo .img {
	position:absolute;
	width:100%;
	height:100%;
	display:block;
	background:#fff url(../images/nopic.jpg) 50% 50% no-repeat;
    background-size:cover;
	transition:0.5s;								
}
.picList ul li a:hover .photo .img,
.picList ul li a:focus .photo .img {
	border-radius:clamp(1.5rem, 5vw, 2.5rem);
    transform:scale(1.1);			
}
@media screen and (max-width:768px) {
	.picList ul {
		gap:25px;
	}
	.picList ul li {
		width:calc((100% - 25px) / 2);
	}
	.picList ul li a .icon span {
		font-size:1.5em;
		padding-top:50px;
	}
	.picList ul li a .icon span:before,
	.picList ul li a .icon span:after {
		width:40px;
		height:40px;
		margin-left:-20px;
	}
}
@media screen and (max-width:480px) {
	.picList ul {
		gap:25px;
	}
	.picList ul li {
		width:100%;
	}
}
@media screen and (min-width:991px) {
	.picList ul {
		gap:35px 25px;
	}
	.picList ul li {
		width:calc((100% - 25px) / 2);
	}
}
@media screen and (min-width:1260px) {
	.picList ul {
		gap:40px 30px;
	}
	.picList ul li {
		width:calc(33.333% - 20px);
	}
	.picList ul li a .icon span {
		padding-top:60px;
	}
	.picList ul li a .icon span:before,
	.picList ul li a .icon span:after {
		width:50px;
		height:50px;
		margin-left:-25px;
	}
}


/* ----- postInfo ----- */
.postInfo {
	width:100%;
	margin:20px auto;
}
.postInfo > ul {
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	gap:10px 30px;
	list-style:none;
}
.postInfo > ul > li {
	display:inline-flex;
	align-items:center;
	font-size:1.5em;
	line-height:21px;
}
.postInfo > ul > li > span {
	position:relative;
	display:inline-flex;
	align-items:center;
	font-weight:bold;
	gap:5px;
}
.postInfo > ul > li > span:before {
	content:"";
	display:inline-block;
	width:21px;
	height:21px;
	background-position:50% 50%;
	background-repeat:no-repeat;
	background-size:cover;
}
.postInfo > ul > li span.pf1:before {
	background-image:url(../images/icon-date.svg);
}
.postInfo > ul > li span.pf2:before {
	background-image:url(../images/icon-source.svg);
}
.postInfo > ul > li span.pf3:before {
	background-image:url(../images/icon-view.svg);
}
@media screen and (min-width:991px) {
	.postInfo > ul > li {
		font-size:1.7em;
		line-height:25px;
	}
	.postInfo > ul > li > span:before {
		width:25px;
		height:25px;
	}
}
@media screen and (min-width:1260px) {
	.postInfo {
		margin-top:40px;
	}
}


/* ----- eventInfo ----- */
.eventInfo {
	width:100%;
	padding:5px 15px;
	margin:20px auto;
	border:6px solid #e0ebe6;
	box-sizing:border-box;
	border-radius:clamp(0.5rem, 3vw, 1.5rem);
}
.eventInfo > dl {
	width:100%;
	display:flex;
	flex-wrap:wrap;
	padding:10px 0;
}
.eventInfo > dl + dl {
	border-top:1px dashed #CCC;
}
.eventInfo > dl > dt,
.eventInfo > dl > dd {
	font-size:1.7em;
	line-height:165%;
	word-wrap:break-word;
	box-sizing:border-box;
}
.eventInfo > dl > dt {
	width:130px;
	font-weight:bold;
	padding-left:15px;
}
.eventInfo > dl > dt span {
	position:relative;
	padding-left:20px;
}
.eventInfo > dl > dt span:before {
    content:"";
    display:block;
    position:absolute;
    left:0;
	top:7px;
    width:8px;
    height:8px;
    z-index:1;
	background:#0a5233;
	border-radius:30px;
}
.eventInfo > dl > dd {
	padding-left:15px;
}
@media screen and (max-width:420px) {
	.eventInfo > dl {
		flex-direction:column;
	}
	.eventInfo > dl > dt {
		padding-left:10px;
	}
	.eventInfo > dl > dd {
		padding-left:30px;
	}
}
@media screen and (min-width:991px) {
}
@media screen and (min-width:1260px) {
	.eventInfo {
		padding:10px 20px;
		margin-top:40px;
	}
	.eventInfo > dl > dt {
		width:150px;
		padding-left:20px;
	}
	.eventInfo > dl > dd {
		width:calc(100% - 160px);
		padding-left:20px;
	}
	.eventInfo > dl > dt,
	.eventInfo > dl > dd {
		font-size:1.9em;
	}
	.eventInfo > dl > dt span:before {
		top:9px;
	}
}


/** ----- articlesPart ----- **/
.articlesPart {
	width:100%;
	margin:30px auto 0 auto;
}
.articlesPart + .articlesPart {
	margin-top:40px;
}
.articlesPart .leftPic,
.articlesPart .rightPic {
	display:flex;
	flex-direction:row;
	gap:40px 30px;
}
.articlesPart .bottomPic,
.articlesPart .topPic {
	display:flex;
	flex-direction:column;
	gap:40px 30px;
}
.articlesPart figure {
	max-width:100%;
}
.articlesPart .leftPic figure,
.articlesPart .rightPic figure {
	max-width:40%;
}
.articlesPart .bottomPic figure,
.articlesPart .topPic figure {
	text-align:center;
}
.articlesPart figure .pic {
	width:fit-content;
    margin:0 auto;
    border-radius:clamp(0.5rem, 3vw, 1.5rem);
    overflow:hidden;
}
.articlesPart figure img {
	max-width:100%;
	height:auto !important;
	margin:0 auto;
}
.articlesPart figure figcaption {
	color:#666;
	font-size:1.7em;
	line-height:175%;
	text-align:center;
	word-wrap:break-word;
	margin-top:15px;
}
@media screen and (max-width:520px) {
	.articlesPart .leftPic,
	.articlesPart .rightPic {
		flex-direction:column;
	}
	.articlesPart .leftPic figure,
	.articlesPart .rightPic figure {
		max-width:100%;
	}
}
@media screen and (min-width:1260px) {
	.articlesPart {
		margin-top:40px;
	}
	.articlesPart + .articlesPart {
		margin-top:50px;
	}
	.articlesPart figure figcaption {
		font-size:1.9em;
	}
}


/** ----- articlesPart ----- **/
.atcTitle {
	position:relative;
	width:100%;
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	padding-bottom:clamp(1em, 2vw, 2em);
	border-bottom:1px solid #9fa3a6;
	margin-bottom:20px;
}
.atcTitle::after {
	content:"";
	width:10%;
	height:5px;
	background-color:#0a5a3c;
	position:absolute;
	left:0;
	bottom:-1px;
}
.atcTitle h3 {
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	gap:10px;
	color:#0a5a3c;
	font-family:"Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
	font-size:clamp(1.5rem, 2.5vw, 2.4375rem);
	line-height:135%;
	font-weight:bold;
	margin:0;
}
.atcTitle h3::before {
	content:"";
	display:inline-block;
	width:clamp(1.5rem, 2.5vw, 2.4375rem);
	height:clamp(1.5rem, 2.5vw, 2.4375rem);
	background-position:50% 50%;
	background-repeat:no-repeat;
	background-size:cover;
	background-color:#0a5a3c;
	-webkit-mask-position:50% 50%;
			mask-position:50% 50%;
	-webkit-mask-repeat:no-repeat;
			mask-repeat:no-repeat;
	-webkit-mask-size:100% 100%;
			mask-size:100% 100%;
	-webkit-mask-image:url(../images/ico_flag.svg);
			mask-image:url(../images/ico_flag.svg);
}
@media screen and (max-width:480px) {
	.atcTitle::after {
		width:20%;
	}
}
@media screen and (min-width:991px) {
	.atcTitle {
		margin-bottom:2vw;
	}
}


/* ----- pageWord ----- */
.pageWord {
	width:100%;
	font-size:1.9em;
	line-height:185%;
}
.pageWord img {
	max-width:100%;
	height:auto !important;
	margin:0 auto;
}
.pageWord ol,
.pageWord ul {
	margin-left:1.5em;
}
.pageWord li ol,
.pageWord li ul {
	margin-left:2em;
}
.pageWord li + li {
	margin-top:0.8em;
}
.pageWord > :is(p, table, ol, ul, h3, h4, .stit) + :is(p, table, ol, ul, h3, h4, .stit) {
    margin-top:1.2em;
    margin-bottom:0;
}
.pageWord table {
	border:1px solid #c2cad6;
	border-collapse:collapse;
}
.pageWord table caption {
	margin-bottom:10px;
}
.pageWord table th {
	color:#FFF;
	text-align:center;
	vertical-align:middle;
	padding:12px;
	border:1px solid #c2cad6;
	border-collapse:collapse;
	background:#2e466b;	
	box-sizing:border-box;
}
.pageWord table td {
	color:#000;
	padding:12px;
	border:1px solid #c2cad6;
	border-collapse:collapse;
	box-sizing:border-box;
}
.pageWord table td ul,
.pageWord table td ol {
	margin-left:1em;
}
.pageWord .stit {
	position:relative;
	color:#eb6100;
	font-family:"Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
	font-size:1.6rem;
	font-weight:bold;
	line-height:135%;
	padding-left:38px;
}
.pageWord .stit:before {
    content:"";
    display:block;
    position:absolute;
    left:0;
	top:3px;
    width:30px;
    height:30px;
    z-index:1;
	background:url(../images/icon-label.svg) 60% 50% no-repeat;
	background-size:auto 70%;
	border:3px solid #eb6100;
	border-radius:30px;
	box-sizing:border-box;
}
.pageWord > *:last-child {
	margin-bottom:0;
}
@media screen and (min-width:991px) {
	.pageWord table th {
		padding:15px;
	}
	.pageWord table td {
		padding:15px;
	}
	.pageWord .stit {
		font-size:1.7rem;
		line-height:35px;
		padding-left:45px;
	}
	.pageWord .stit:before { 
		top:1px;
		width:35px;
		height:35px;
	}
}
@media screen and (min-width:1260px) {
	.pageWord {
		font-size:2.1em;
	}
}
@media screen and (min-width:1680px) {
	.pageWord {
		font-size:2.3em;
	}
}


/** pageBot **/
.pageBot {
	width:100%;
	padding:0;
	margin:30px auto 0 auto;
}
.pageBot .tit {
	display:block;
	width:100%;
	color:#000;
	font-family:"Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
	font-size:2.5em;
	font-weight:bold;
	margin-bottom:15px;
}
.pageBot .tit span {
	position:relative;
	display:flex;
    gap:10px;
}
.pageBot .tit span:before {
	content:"";
	display:inline-block;
	width:35px;
	height:35px;
	background-repeat:no-repeat;
	background-position:50% 50%;
	background-size:contain;
	z-index:1;
}
.pageBot .tit span.photo:before {
	background-image:url(../images/pageBot-photo.svg);
}
.pageBot .tit span.download:before {
	background-image:url(../images/pageBot-download.svg);
}
.pageBot .tit span.link:before {
	background-image:url(../images/pageBot-link.svg);
}
@media screen and (min-width:991px) {
	.pageBot { margin-top:50px; }
	.pageBot .tit {
		font-size:3.1em;
		margin-bottom:20px;
	}
}


/** gallery **/
#gallery {
	width:100%;
	margin:0 auto;
}
#gallery ul {
	list-style:none;
	letter-spacing:-9px;
	margin:-10px;
}
#gallery ul li {
	display:inline-block;
	width:33.3333%;
	letter-spacing:0;
	padding:10px;
	vertical-align:top;
	box-sizing:border-box;
}
#gallery ul li a {
	float:left;
    width:100%;
	height:100%;
	color:#000;
}
#gallery ul li a:hover,
#gallery ul li a:focus {
	color:#0e872a;
}
#gallery figure {
	margin:0;
}
#gallery figure .pic {
	width:100%;
	border-radius:clamp(0.5rem, 3vw, 1.5rem);
	overflow:hidden;
}
#gallery figure .pic img {
	display:block;
	width:100%;
	height:auto;
	transition:0.5s;
}
#gallery a:hover figure .pic img,
#gallery a:focus figure .pic img {
    transform:scale(1.08);
}
#gallery figure figcaption {
	font-size:1.7em;
	line-height:130%;
	font-weight:bold;
	text-align:center;
	margin-top:10px;
}
@media screen and (max-width:768px) {
	#gallery ul li { width:50%; }
}
@media screen and (min-width:991px) {	
	#gallery figure figcaption {
		font-size:1.9em;
	}
}
@media screen and (min-width:1260px) {	
	#gallery ul li {
		width:25%;
	}
}


/* 修正：确保 PhotoSwipe 图片不受 max-width 限制 */
.pswp__img {
	max-width: none !important;
	max-height:none !important;
}
/* 说明文字 */
.pswp__custom-caption {
	color:#fff;
	width:100%;
	font-size:1.7em;
	line-height:1.6;
	padding:24px 20px 14px;
	position:absolute;
	bottom:80px;
	left:0;
	background:linear-gradient(to top, rgba(0,0,0,.65), transparent);
	pointer-events:none;
}
.pswp-cap-inner {
	max-width:760px;
	margin:0 auto;
	text-align:center;
}
/* 缩略图列 */
.pswp__thumbs-strip {
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	height:80px;
	background:rgba(0,0,0,.65);
	display:flex;
	align-items:center;
}
.pswp-thumbs-inner {
	display:flex;
	gap:6px;
	padding:8px 12px;
	overflow-x:auto;
	width:100%;
	justify-content:center;
	scrollbar-width:none;
	-ms-overflow-style:none;
}
.pswp-thumbs-inner::-webkit-scrollbar { display:none; }
.pswp-thumb {
	flex:0 0 auto;
	width:58px;
	height:58px;
	padding:0;
	border:2px solid transparent;
	border-radius:4px;
	overflow:hidden;
	cursor:pointer;
	background:none;
	opacity:0.5;
	transition:opacity .2s, border-color .2s;
}
.pswp-thumb:hover  { opacity:0.85; }
.pswp-thumb.active { opacity:1; border-color:#fff; }
.pswp-thumb img {
	width:100%;
	height:auto;
	object-fit:cover;
	display:block;
}


/* ----- dnLink ----- */
.dnLink {
	width:100%;
	padding:10px 20px;
	margin:0 auto;
	box-sizing:border-box;
	background:#f2f2f2;
	border-radius:clamp(0.5rem, 3vw, 1.5rem);
}
.dnLink ul {
	list-style:none;
}
.dnLink ul li {
	width:100%;
	padding:0;
}
.dnLink ul li + li { border-top:1px dashed #CCC; }
.dnLink ul li a {
	position:relative;
	display:flex;
    height:100%;
    justify-content:space-between;
	flex-wrap:wrap;
	box-sizing:border-box;
	align-content:center;
	padding:15px 10px;
}
.dnLink .labe {
	position:relative;
    width:50px;
    height:50px;
	display:flex;
	justify-content:center;
	align-items:center;
	border-radius:10px;	
}
.dnLink .labe:before {
	position:absolute;
	left:0;
	top:0;
	content:"";
	display:block;
	width:100%;
	height:100%;
	box-sizing:border-box;
	background-position:50% 50%;
	background-repeat:no-repeat;
	background-size:cover;
	background-color:#000;
	-webkit-mask-size:100% 100%;
			mask-size:100% 100%;
	-webkit-mask-image:url(../images/dnLink-icon.svg);
			mask-image:url(../images/dnLink-icon.svg);
}
.dnLink .labe.pdf:before {
	background:#a40000;
}
.dnLink .labe.odt:before,
.dnLink .labe.doc:before,
.dnLink .labe.docx:before {
	background:#0068b7;
}
.dnLink .labe.ods:before,
.dnLink .labe.xls:before,
.dnLink .labe.xlsx:before {
	background:#378837;
}
.dnLink .labe.odp:before,
.dnLink .labe.ppt:before,
.dnLink .labe.pptx:before {
	background:#FF6600;
}
.dnLink .labe.rar:before {
	background:#67005E;
}
.dnLink .labe.zip:before {
	background:#6a3906;
}
.dnLink .labe span {
	position:absolute;
	right:0;
	bottom:17px;
	width:100%;
	font-family:Arial, Helvetica, sans-serif;
	color:#FFF;
	font-size:1.2em;
	font-weight:bold;
	text-align:center;
	text-transform:uppercase;
}
.dnLink dl {
	display:flex;
    justify-content:flex-start;
	flex-wrap:wrap;
	flex-direction:column;	
	gap:5px;
	width:calc(100% - 65px);
}
.dnLink dt {
	color:#000;
	font-family:"Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
	font-size:2.1em;
	font-weight:bold;
	line-height:135%;
}
.dnLink a:hover dt,
.dnLink a:focus dt {
	color:#0e872a;
	transition:all 0.5s ease;
}
.dnLink dd {
	display:inline-flex;
	flex-wrap:wrap;
	gap:5px 20px;
	color:#666;
	font-size:1.5em;
	line-height:135%;
}
.dnLink dd span {
	position:relative;
	padding-left:10px;
}
.dnLink dd span:before {
	content:"";
	display:block;
	position:absolute;
	top:9px;
	left:0;
	width:3px;
	height:3px;
	background:#666;
}
@media screen and (max-width:480px) {	
	.dnLink dd {margin-top:0;}
	.dnLink dd span {
		display:block;
		margin:5px 0;
	}
}
@media screen and (min-width:991px) {	
	.dnLink ul li a {
		padding:20px 15px;
	}
}


/* ----- getLink ----- */
.getLink {
	width:100%;
	padding:10px 20px;
	margin:0 auto;
	box-sizing:border-box;
	background:#f2f2f2;
	border-radius:clamp(0.5rem, 3vw, 1.5rem);
}
.getLink ul {
	list-style:none;
}
.getLink ul li {
	width:100%;
	padding:0;
	box-sizing:border-box;
}
.getLink ul li + li { border-top:1px dashed #CCC; }
.getLink ul li a {
	position:relative;
	display:inline-block;
	width:100%;
	box-sizing:border-box;
	padding:15px 10px;
	transition:all 0.5s ease;
}
.getLink dl {
	position:relative;
	display:flex;
    justify-content:flex-start;
	flex-wrap:wrap;
	flex-direction:column;	
	gap:5px;
	width:100%;
	padding-left:60px;
	box-sizing:border-box;
}
.getLink dl:before {
	content:"";
	display:block;
	position:absolute;
	top:0;
	left:0;
	width:50px;
	height:50px;
	box-sizing:border-box;
	background-position:50% 50%;
	background-repeat:no-repeat;
	background-size:cover;
	background-color:#bea98b;
	transition:all 0.5s ease;
	-webkit-mask-size:50px 50px;
			mask-size:50px 50px;
	-webkit-mask-image:url(../images/getLink-icon.svg);
			mask-image:url(../images/getLink-icon.svg);
}
.getLink a:hover dl:before,
.getLink a:focus dl:before {
	background-color:#0e872a;
}
.getLink dt {
	color:#000;
	font-family:"Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
	font-size:2.1em;
	font-weight:bold;
	line-height:135%;
	transition:all 0.5s ease;
}
.getLink a:hover dt,
.getLink a:focus dt {
	color:#0e872a;
}
.getLink dd {
	color:#666;
	font-size:1.5em;
	line-height:135%;
	word-wrap:break-word;
}
@media screen and (min-width:991px) {	
	.getLink ul li a {
		padding:20px 15px;
	}
}

/** pageBack **/
#pageBack {
	width:100%;
	text-align:center;
	margin:40px auto 0 auto;	
}
#pageBack a {
	position:relative;
	display:inline-block;
	font-family:"Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
	color:#FFF;
	font-size:1.9em;
	font-weight:bold;
	line-height:25px;
	padding:12px 25px;
	margin:0 auto;
	background:#000;
	border-radius:100px;
}
#pageBack a:hover,
#pageBack a:focus {	
	background:var(--gold-chroma);
}
#pageBack a span {
	position:relative;
	display:inline-flex;
	align-items:center;
	gap:10px;
}
#pageBack a span:after {
	content:"";
	display:block;
	width:18px;
	height:18px;
	box-sizing:border-box;
	background-position:50% 50%;
	background-repeat:no-repeat;
	background-size:cover;
	background-color:#fff;
	-webkit-mask-size:100% 100%;
			mask-size:100% 100%;
	-webkit-mask-image:url(../images/pageBack-icon.svg);
			mask-image:url(../images/pageBack-icon.svg);
}
@media screen and (min-width:991px) {
	#pageBack {
		margin-top:50px;
	}	
	#pageBack a {
		font-size:2.1em;
		line-height:30px;
		padding:15px 40px;
	}
}
@media screen and (min-width:1260px) {
	#pageBack {
		margin-top:60px;
	}
}


@media print {
	
}

