@font-face {
	/* 方正兰亭纤黑简体 */
	font-family: MyFontNameA;
	src: url('/uiFramework/commonResource/zip/font/FZLTXHJW.ttf');
	/* IE9 Compat Modes */
	src:
		url('/uiFramework/commonResource/zip/font/FZLTXHJW.eot'),
		/* IE6-IE8 */
		url('/uiFramework/commonResource/zip/font/FZLTXHJW.eot?#iefix') format('embedded-opentype'),
		/* Modern Browsers */
		url('/uiFramework/commonResource/zip/font/FZLTXHJW.woff') format('woff'),
		/* Safari, Android, iOS */
		url('/uiFramework/commonResource/zip/font/FZLTXHJW.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	/* 方正兰亭粗黑简体 */
	font-family: MyFontNameB;
	src: url('/uiFramework/commonResource/zip/font/FZLTCHJW.ttf');
	/* IE9 Compat Modes */
	src:
		url('/uiFramework/commonResource/zip/font/FZLTCHJW.eot'),
		/* IE6-IE8 */
		url('/uiFramework/commonResource/zip/font/FZLTCHJW.eot?#iefix') format('embedded-opentype'),
		/* Modern Browsers */
		url('/uiFramework/commonResource/zip/font/FZLTCHJW.woff') format('woff'),
		/* Safari, Android, iOS */
		url('/uiFramework/commonResource/zip/font/FZLTCHJW.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	/* 方正兰亭黑简体 */
	font-family: MyFontNameC;
	src: url('/uiFramework/commonResource/zip/font/FZLTHJW.ttf');
	/* IE9 Compat Modes */
	src:
		url('/uiFramework/commonResource/zip/font/FZLTHJW.eot'),
		/* IE6-IE8 */
		url('/uiFramework/commonResource/zip/font/FZLTHJW.eot?#iefix') format('embedded-opentype'),
		/* Modern Browsers */
		url('/uiFramework/commonResource/zip/font/FZLTHJW.woff') format('woff'),
		/* Safari, Android, iOS */
		url('/uiFramework/commonResource/zip/font/FZLTHJW.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

/* 禁用iPhone中Safari的字号自动调整 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  -webkit-overflow-scrolling: touch;
}

table{
    width:100% !important;
}

table td{
padding:2%;
text-align:center;
line-height:1.5;
}

/* 禁止缩放表单 */
input[type="submit"],
input[type="reset"],
input[type="button"],
input {
  resize: none;
  border: none;
}

/* 取消链接高亮  */
body,div,ul,li,ol,h1,h2,h3,h4,h5,h6,input,textarea,p,dl,dt,dd,a,img,button,form,table,th,td,tbody,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 设置HTML5元素为块 */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}

em,i {
  font-style: normal;
}

strong {
  font-weight: normal;
}

.clearfix:after {
  content: "";
  display: block;
  visibility: hidden;
  height: 0;
  clear: both;
}

.clearfix {
  zoom: 1;
}

a {
  text-decoration: none;
  color: #969696;
	background-color: transparent;
}

a:hover {
  text-decoration: none;
}

ul,ol {
  list-style: none;
}

img {
  border: none;
}

/*单行溢出*/
.one-txt-cut {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*多行溢出 手机端使用*/
.txt-cut {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /* -webkit-line-clamp: 2; */
  -webkit-box-orient: vertical;
}

/* 移动端点击a链接出现蓝色背景问题解决 */
a:link,
a:active,
a:visited,
a:hover {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

.w50 {
  width: 50%;
}

.w25 {
  width: 25%;
}

.w20 {
  width: 20%;
}

.w33 {
  width: 33.333333%;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.db {
  display: block !important;
}

.dn {
  display: none;
}

main {
	display: block;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

hr {
	box-sizing: content-box;
	/* 1 */
	height: 0;
	/* 1 */
	overflow: visible;
	/* 2 */
}

pre {
	/* 1 */
	font-size: 1em;
	/* 2 */
}

abbr[title] {
	border-bottom: none;
	/* 1 */
	text-decoration: underline;
	/* 2 */
	text-decoration: underline dotted;
	/* 2 */
}

b,strong {
	font-weight: bolder;
}

code,kbd,samp {
	/* 1 */
	font-size: 1em;
	/* 2 */
}

small {
	font-size: 80%;
}

sub,sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

img {
	border-style: none;
}

button,input,optgroup,select,textarea {
	/* 1 */
	font-size: 100%;
	/* 1 */
	line-height: 1.15;
	/* 1 */
	margin: 0;
	/* 2 */
}

button,input {
	/* 1 */
	overflow: visible;
}

button,select {
	/* 1 */
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

legend {
	box-sizing: border-box;
	/* 1 */
	color: inherit;
	/* 2 */
	display: table;
	/* 1 */
	max-width: 100%;
	/* 1 */
	padding: 0;
	/* 3 */
	white-space: normal;
	/* 1 */
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	/* 1 */
	font: inherit;
	/* 2 */
}

details {
	display: block;
}

summary {
	display: list-item;
}

template {
	display: none;
}

[hidden] {
	display: none;
}

* {
	margin: 0;
	padding: 0;
        font-family: 'MyFontNameA' !important;
}

html {
	width: 100%;
	height: 100%;
	font-size: 100px;
}

ul {
	padding-left: 0;
	margin: 0;
	list-style: none;
}

.w1400 {
	width: 14rem;
	margin: 0 auto;
}

.clearfix:after {
	content: '';
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	/*IE6 7*/
	*zoom: 1
}

.ui-sortable .portlet .eps-portlet-header .eps-module-menu img {
	width: auto !important;
	height: auto !important;
}

.ui-sortable .portlet {
	position: relative !important;
}

.ui-sortable .portlet .eps-shadow {
	top: 0 !important;
	left: 30px !important;
}

.banner {
	width: 100%;
	height: 6rem;
}

.banner img {
	width: 100%;
	height: 6rem;
}

.nav-wrapper .nav-line {
	background: rgba(38, 38, 38, .1);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#19262626, endColorstr=#19262626);
}

.xilanBox .bread {
	overflow: hidden;
}

.erjiList .fenye,
.erjiList_pic .fenye {
	width: 8rem !important;
}

.fujianList a {
	display: block;
	margin-top: 0.1rem;
}

.erjiInfo .listBox .titleBox {
	border-bottom: 1px solid #979797;
}

.banner1 {
	position: relative;
	height: 3rem;
	overflow: hidden;
}

.banner1 img {
	height: 100%;
	width: 100%;

}

.xilanBox .mainText td {
	font-size: 0.18rem;
}

.erjiList .list_box .listBox {
	min-height: 11.5rem;
}

.erjiList .rightList .articleList .article_item {
	height: 0.66rem;
	margin-bottom: 0.25rem;
	border-bottom: 1px dashed #ccc;
	box-sizing: border-box;
	padding-top: 0.1rem;
}

.erjiList .articleList .article_title a {
	font-size: 0.2rem;
}

.erjiList .articleList .article_title .article_time {
	font-size: 0.2rem;
}

.erjiList .list_fenye .fenye {
	font-size: 0.2rem;
}

.erjiList .list_fenye .fenye a:hover {
	color: #cc3333;
}

.tzzgx .qygz_bg {
	background-size: 100%;
}

.tzzgx .shzr_bg {
	background-size: 100%;
}

.tzzgx .qzzrz_bg {
	background-size: 100%;
}

/* 公用头部 */
/* top部分 */
.top {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 1.387rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
}

.logo {
	width: 2.8rem;
	height: 0.733rem;
}

.hamburger {
	position: absolute;
	top: 0.475rem;
	right: 0.52rem;
	width: 0.547rem;
	height: 0.44rem;
}

/* 左侧导航 */
.left-nav {
	position: absolute;
	z-index: 99999;
	top: 0;
	left: -4.293rem;
	height: 100%;
	width: 4.293rem;
	background: rgba(0, 51, 102, 0.8);
	transition: all 0.5s;
	box-sizing: border-box;
	padding-top: 2.133rem;
	padding-bottom: 0.8rem;
}

.show {
	left: 0 !important;
}

.left-nav .nav li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 0.8rem;
}

.left-nav .nav li.active {
	background-color: rgba(0, 51, 102, 1);
}

.left-nav .nav li.active>p {
	border-left: 0.053rem solid #cc3333;
}

.left-nav .nav li>p {
	width: 3.307rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.38rem;
	border-left: 0.053rem solid transparent;
}

.left-nav .nav li p a {
	font-size: 0.38rem;
	color: #fff;
	text-indent: 0.133rem;
}

.left-nav .nav li p img {
	width: 0.133rem;
	height: 0.267rem;
}

.nav-three {
	position: absolute;
	display: none;
	top: 0;
	left: 4.293rem;
	width: 3.733rem;
	height: 100%;
	z-index: 99;
	background-color: rgba(255, 255, 255, 0.85);
	box-sizing: border-box;
	padding-top: 1.853rem;
	padding-bottom: 0.8rem;
}

.nav-three .scrollbox {
	overflow: hidden;
	height: 100%;
}

.nav-three .scrollbar {
	padding-left: 0.533rem;
	height: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: auto;
}

.nav-three .scrollbar::-webkit-scrollbar {
	display: none;
}

.nav-three .scrollbar dl {
	margin-bottom: 0.4rem;
}

.nav-three .scrollbar dt,
.nav-three .scrollbar dd {
	display: flex;
	align-items: center;
}

.nav-three .scrollbar dt a {
	font-size: 0.38rem;
	font-weight: 600;
	color: #cc3333;
	margin-bottom: 0.2rem;
}

.nav-three .scrollbar dd a {
	margin: 0.107rem 0;
	font-size: 0.36rem;
	color: #262626;
}

.othersLink {
	margin-top: 2.2rem;
	margin-left: 0.5333333rem;
}

.othersLink a {
	display: block;
	font-size: 0.3rem;
	color: #fff;
	margin-bottom: 0.4266666rem;
}

.othersLink a:last-child {
	margin-bottom: 0;
}

/* 右侧小图标 */
.right-icon {
	position: fixed;
	z-index: 9;
	top: 60%;
	right: 0.28rem;
	transform: translateY(-50%);
}

.right-icon li {
	position: relative;
	margin: 0.133rem 0;
}

.right-icon .icon {
	width: 1.067rem;
	height: 1.067rem;
}

.right-icon .icon:first-child:hover+.code {
	display: block;
}

.right-icon .code {
	display: none;
	position: absolute;
	left: -2.267rem;
	top: 0;
	width: 2rem;
	height: 2rem;
	transform: translateY(-30%);
}

/* 底部 */
.bottom-info {
	width: 100%;
	background: #000;
        position: relative;
        height: calc( 50% - 1.387rem);
}

.info-ewm {
	width: 93%;
	background: #001D3C;
	padding: 3.5%;
	overflow: hidden;
}

.info-ewm>div {
	width: 25%;
	float: left;
	text-align: center;
	font-size: 0.2rem;
	color: #fff;
	margin-top: 0.4rem;
}

.info-ewm>div img {
	width: 1.2rem;
	height: 1.2rem;
}

.info-m{
	padding: 0.35rem 0;
}

.bottom-info .alinks {
	width: 90%;
	padding: 0.1rem 5%;
	overflow: hidden;
}

.bottom-info .alinks a {
	font-size: 0.2rem;
	height: 0.2rem;
	line-height: 1;
	padding-left: 0.2rem;
	color: #FFFFFF;
	margin-right: 0.2rem;
	float: left;
	border-left: 1px solid #fff;
}

.bottom-info .alinks a:first-child {
	padding-left: 0;
	border-left: 0;
}

.bottom-info .alinks span {
	font-size: 0.2rem;
	color: #FFFFFF;
	float: right;
}

.bottom-info .guanzhu {
	width: 90%;
	line-height: 1.5;
	color: #fff;
	font-size: 0.2rem;
	margin: 0 auto;
}

.aInfo {
	width: 100%;
	line-height: 0.8rem;
	display: flex;
	box-sizing: border-box;
	color: #FFFFFF;
	font-size: 0.19rem;
	justify-content: center;
}

.aInfo span {
	margin-right: 0.1rem;
}

.aInfo a {
	color: #FFFFFF;
	font-size: 0.19rem;
}

@media (max-width: 991px) {

	.jiuyin-top,
	.jiuyin-bottom {
		margin-top: 0.5rem;
	}

	.jiuyin-bottom {
		font-size: 0.32rem;
	}

	.info-ewm>div {
		line-height: 0.6rem;
	}

}

@media (max-width: 560px) {
/*	.jiuyin-txt {
		height: 41% !important;
	}
*/

	.jiuyin-top,
	.jiuyin-bottom {
		margin-top: 1.5rem;
	}

	.jiuyin-bottom {
		font-size: 0.42rem;
	}

	.bottom-info .alinks {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.bottom-info .alinks a,
	.bottom-info .alinks span {
		border: 0;
		height: 0.6rem;
		line-height: 0.6rem;
	}

	.aInfo {
		display: block;
		padding-bottom: 10px;
	}

	.aInfo span {
		display: block;
		width: 100%;
		text-align: center;
		height: 0.6rem;
		line-height: 0.6rem;
	}

	.aInfo a {
		display: initial;
	}

	.wangbei {
		width: 100%;
	}

	.bottom-info .guanzhu {
		text-align: center;
		line-height: 0.6rem;
	}
}

@media (width: 1024px) {
	.right-line hr {
		width: 4.25rem;
	}

	.info-ewm p {
		line-height: 0.8rem;
	}

	.jiuyin-txt {
		height: 50%;
		padding-top: 1.5rem;
	}

	.jiuyin-bottom {
		top: 1.788rem;
	}

	.jiuyin-bottom p {
		font-size: 0.42rem;
	}

	.guanzhu {
		line-height: 1rem !important;
	}
}

.banner_warp_gryw {
	background: url(/ydapp/template/page/gryw/gryw21.png) 0 0 no-repeat;
	background-size: 100%;
}

.banner_warp_xyk {
	background: url(/uiFramework/commonResource/image/2022112516513837601.png) 0 0 no-repeat;
	background-size: 100%;
}

.banner_warp_gsyw {
	background: url(/ydapp/template/page/gsyw/gsyw35.png) 0 0 no-repeat;
	background-size: 100%;
}

.banner_warp_myjr {
	background: url(/ydapp/template/page/myjr/myjr2.png) 0 0 no-repeat;
	background-size: 100%;
}

.banner_warp_pjyw {
	background: url(/ydapp/template/page/pjyw/pjyw7.png) 0 0 no-repeat;
	background-size: 100%;
}

.banner_warp_xczx {
	background: url(/ydapp/template/page/xczx/list_banner_img.png) 0 0 no-repeat;
	background-size: 100%;
}

.banner_warp_lsjr {
	background: url(/uiFramework/commonResource/image/2022101311065271442.png) 0 0 no-repeat;
	background-size: 100%;
}

.banner_warp_qcjr {
	background: url(/ydapp/template/page/qcjr/carpp.png) 0 0 no-repeat;
	background-size: 100%;
}

.banner_warp_dzyh {
	background: url(/ydapp/template/page/dzyh/banner.png) 0 0 no-repeat;
	background-size: 100%;
}

.banner_warp_tzzgx {
	background: url(/ydapp/template/page/tzzgx/tzyBanner.png) center center no-repeat;
	background-size: 100%;
}

.banner_warp_gyjy {
	background: url(/ydapp/template/page/gyjy/gyjybann.png) center center no-repeat;
	background-size: 100%;
}