@charset "UTF-8";

/* ========== 头部 start ========== */
.top {
	height: 2.25rem;
	line-height: 2.25rem;
	position: relative;
	z-index: 5;
	background: #FFF;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	margin-left: 0.5rem;
	overflow: hidden;
}

.logo img {
	display: block;
	width: 5rem;
}

.topLine {
	width: 1px;
	height: 0.9rem;
	background-color: #ebebeb;
	margin: 0 0.45rem;
}

.topTextBox .topTextext1 {
	font-size: 0.5rem;
	line-height: 0.55rem;
	color: #666666;
}

.topTextBox .topTextext2 {
	font-size: 0.55rem;
	line-height: 0.55rem;
	color: var(--mainColor);
	font-family: 'DINPro';
}

.searchBtn {
	width: 2.25rem;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 1rem;
	background-image: url('../images/common/search.svg');
	margin-left: auto;
	cursor: pointer;
}

.menuBtn {
	width: 2.25rem;
	cursor: pointer;
	text-align: center;
	z-index: 6;
	position: relative;
}

.menuBtn:before {
	display: block;
	content: '';
	width: 0px;
	height: 100%;
	border-left: 1px solid #dedede;
	position: absolute;
	left: 0px;
	top: 0px;
	transform: scaleX(0.5);
	-webkit-transform: scaleX(0.5)
}

.menuBtn span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.menuBtn .line {
	width: 26px;
	height: 1px;
	background-color: #333333;
	display: block;
	margin: 8px auto;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	transform: scaleY(.5)
}

.menuBtn .line:nth-child(2) {
	background: #333333;
}

.menuBtn.active .line {
	background: #333333;
}

.menuBtn.active .line:nth-child(2) {
	opacity: 0;
}

.menuBtn.active .line:nth-child(1) {
	-webkit-transform: translateY(9px) rotate(45deg) scaleY(.5);
	transform: translateY(9px) rotate(45deg) scaleY(.5);
}

.menuBtn.active .line:nth-child(3) {
	-webkit-transform: translateY(-10px) rotate(-45deg) scaleY(.5);
	transform: translateY(-10px) rotate(-45deg) scaleY(.5);
}

/* ========== 头部 end ========== */
/* ========== 搜索 start ========== */
.searchBox {
	height: 1.75rem;
	padding: .5rem;
	padding-right: 0;
	background: #FFF;
	margin-top: -2.75rem;
	transition: all .5s;
	-webkit-transition: all .5s;
	visibility: hidden;
}

.searchBox.show {
	margin-top: 0;
	visibility: visible;
}

.searchBox input {
	height: 1.75rem;
	line-height: 1.75rem;
	vertical-align: middle;
	border: none;
	width: 100%;
	background: #f5f5f5;
	border-radius: .35rem;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 0 .5rem;
}

.searchBox span {
	display: block;
	width: 1.75rem;
	height: 1.75rem;
	text-align: center;
	line-height: 1.75rem;
	color: #0169a6;
	font-size: .7rem;
	padding: 0 .5rem;
}

/* ========== 搜索 end ========== */
/* ========== 导航菜单 start ========== */
.menuBg {
	position: fixed;
	width: 100%;
	height: 100%;
	right: 0px;
	top: 0px;
	background: rgba(0, 0, 0, 0.5);
	z-index: 5;
	visibility: hidden;
	opacity: 0;
	transition: all 300ms linear;
	-webkit-transition: all 300ms linear;
}

.menuBg.active {
	visibility: visible;
	opacity: 1;
}

.menuPage {
	position: fixed;
	width: 100%;
	height: 100%;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
	background: #fff;
	right: 0px;
	top: 0px;
	z-index: 6;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	visibility: hidden;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 0;
	transform: translateX(100%);
	-webkit-transform: translateX(100%);
}

.menuHead {
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 2;
}

.menuHead .mobileTop.active {
	transform: translateX(0);
	-webkit-transform: translateX(0);
}

.menuHead .searchBox,
.menuHead .searchBtn {
	display: none;
}

.menuHead .menuBtn {
	margin-left: auto;
}

.menuPageBody {
	clear: both;
	flex-grow: 1;
	flex-basis: 0;
	overflow: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	margin: 0 1.5rem;
}

.menuPage.active {
	visibility: visible;
	transform: translateX(0);
	-webkit-transform: translateX(0)
}

.menuPageList {
	overflow: hidden;
}

.menuPageList dd {
	overflow: hidden;
	position: relative;
	padding: 0.3rem 0;
}

.menuPageList dd:before {
	display: block;
	content: '';
	width: 100%;
	height: 0;
	border-bottom: 1px solid #dbdbdb;
	position: absolute;
	left: 0px;
	bottom: 0px;
	transform: scaleY(0.5);
	-webkit-transform: scaleY(0.5)
}

.menuPageList dd span {
	display: block;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}

.menuPageList dd span a {
	display: block;
	overflow: hidden;
	height: 2rem;
	line-height: 2rem;
	text-align: left;
	font-size: 0.75rem;
	color: #666666;
	position: relative;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	flex: 1;
	font-family: 'phtL';
}

.menuPageList dd span .icon {
	display: block;
	width: 1.25rem;
	height: 2rem;
	text-align: center;
	line-height: 2rem;
	color: #666666;
	font-style: normal;
	display: none;
	z-index: 1;
	font-size: 0.75rem;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('../images/arrowRight.png');
	background-size: auto .8rem;
}

.menuPageList dd span .icon.active {
	display: block;
}

.menuPageList dd.hover span a,
.menuPageList dd.hover span .icon {
	color: var(--mainColor);
}

.menuPageList dd.hover span .icon {
	background-image: url('../images/arrowBottom.png');
	background-size: auto 1rem;
}

.menuPageList dd .ejBox {
	display: none;
	background: #FFF;
}

.menuPageList dd .ejBox .ejdd {
	overflow: hidden;
	margin-bottom: .5rem;
}

.menuPageList dd .ejBox .ejdd .ej {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	padding-left: 0.75rem;
}

.menuPageList dd .ejBox .ejdd .ej .icon {
	width: 1.25rem;
	height: 1.25rem;
	text-align: center;
	line-height: 1.25rem;
	font-size: .7rem;
	display: none;
	z-index: 20;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('../images/arrowRight.png');
	background-size: auto .8rem;
}

.menuPageList dd .ejBox .ejdd .ej .icon.active {
	display: block;
}

.menuPageList dd .ejBox .ejdd.on .ej .icon {
	background-image: url('../images/arrowBottom.png');
	background-size: auto 1rem;
}

.menuPageList dd .ejBox .ejdd .ej a {
	display: block;
	height: 1.25rem;
	line-height: 1.25rem;
	overflow: hidden;
	color: #666666;
	font-size: .65rem;
	padding-left: .5rem;
	position: relative;
	flex: 1;
	font-family: 'phtL';
}

.menuPageList dd .ejBox .ejdd .ej a:before {
	display: block;
	content: '';
	position: absolute;
	left: 0px;
	top: 50%;
	margin-top: -.1rem;
	width: .15rem;
	height: .15rem;
	background: #666666;
}

.menuPageList dd .ejBox .ejdd .sj {
	overflow: hidden;
	padding: .25rem .75rem;
	display: none;
}

.menuPageList dd .ejBox .ejdd .sj a {
	display: block;
	height: 1.25rem;
	line-height: 1.25rem;
	overflow: hidden;
	color: #666666;
	font-size: .6rem;
	padding-left: 1rem;
	position: relative font-family: 'phtL';
}

.menuPageList dd .ejBox .ejdd .sj a:before {
	display: block;
	content: '';
	position: absolute;
	left: .5rem;
	top: 50%;
	margin-top: 0;
	width: .25rem;
	height: 1px;
	background: #666666;
}

.topLinkDl {
	padding: 2.25rem 0;
	display: flex;
	flex-wrap: wrap;
	margin-right: -0.5rem;
	overflow: hidden;
}

.topLinkDl dd {
	margin-bottom: 0.5rem;
}

.topLinkDl dd a {
	display: block;
	padding: 0 1.25rem 0 2.375rem;
	background-position: left 0.95rem center;
	background-repeat: no-repeat;
	background-size: auto 0.75rem;
	background-image: url(../images/link1.png);
	border-radius: 0.875rem;
	border: 1px solid #dfdfe5;
	height: 1.75rem;
	line-height: 1.75rem;
	overflow: hidden;
	margin-right: 0.5rem;
	font-family: 'phtL';
}

/* ========== 导航菜单 end ========== */
/* ========== 底部 start ========== */
.footerList {
	overflow: hidden;
	height: 2.5rem;
	display: flex;
	background: #FFF;
	align-items: center;
}

.footerList .item {
	flex: 1;
}

.footerList .item a {
	display: block;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	color: #333;
}

.footerList .icon {
	height: 1rem;
	line-height: 1rem;
	font-size: .9rem;
	text-align: center;
	margin-bottom: .2rem;
}

.footerList .icon img {
	height: 1rem;
	object-fit: contain;
}

.footerList .text {
	height: 1rem;
	line-height: 1rem;
	text-align: center;
	font-size: .65rem;
}

/* ========== 底部 end ========== */
/* ========== 电话弹窗 start ========== */
.windowPhoneBg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0);
	transition: all 300ms linear;
	-webkit-transition: all 300ms linear;
	z-index: 10;
	visibility: hidden;
}

.windowPhoneBg.show {
	background: rgba(0, 0, 0, .2);
	visibility: visible;
}

.windowPhone {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: .25rem;
	z-index: 11;
	transition: all 300ms linear;
	-webkit-transition: all 300ms linear;
	transform: translateY(100%);
	-webkit-transform: translateY(100%);
	visibility: hidden;
}

.windowPhone .item {
	margin-bottom: .5rem
}

.windowPhone a {
	display: flex;
	align-items: center;
	background: #FFF;
	border-radius: .6rem;
}

.windowPhone a .icn {
	width: 3rem;
	height: 2.5rem;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 1rem;
	background-image: url('../images/common/phone.svg');
}

.windowPhone a span {
	flex: 1;
	height: 2.5rem;
	line-height: 2.4rem;
	color: #125fc8;
	padding-right: 1rem;
	font-size: 1rem;
	letter-spacing: 1px;
}

.windowPhone .btn a {
	text-align: center;
	font-size: .8rem;
	;
	padding: 0;
}

.windowPhone .btn a span {
	line-height: 2.7rem;
	font-weight: bold;
}

.windowPhone.show {
	transform: translateY(0);
	-webkit-transform: translateY(0);
	visibility: visible;
}

/* ========== 电话弹窗 end ========== */
/* ========== 详情弹窗 start ========== */
.windowView {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	transform: translateY(100%);
	-webkit-transform: translateY(100%);
	opacity: 0;
	visibility: hidden;
	transition: all .8s cubic-bezier(.77, 0, .175, 1) 0s;
	-webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0s;
	z-index: 999;
	overflow: hidden;
}

.windowView.on {
	transform: translateY(0);
	-webkit-transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.contentView {
	overflow: hidden;
	height: 100%;
	box-sizing: border-box;
}

.windowView.on .contentView {
	overflow-y: auto;
}

.viewClose {
	position: absolute;
	width: 3rem;
	height: 3rem;
	line-height: 3.8rem;
	top: -1rem;
	right: -1rem;
	background-color: #1eacf6;
	background-repeat: no-repeat;
	background-position: top 1.2rem right 1.2rem;
	background-image: url('../images/common/closeBai.svg');
	background-size: auto 1.2rem;
	border-radius: 50%;
	transform: scale(0);
	opacity: 0;
	transition: 0.8s;
	-webkit-transition: 0.8s;
}

.windowView.on .viewClose {
	transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
}

.maskBg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: 100;
	background-color: rgba(0, 0, 0, .6);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.maskBg.show {
	opacity: 1;
	visibility: visible;
}

/* ========== 详情弹窗 end ========== */
/* ========== 图片弹窗 start ========== */
.picSwiperhtml {
	display: none;
}

.mainPic {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: 1000;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear
}

.mainPic.show {
	visibility: visible;
	opacity: 1;
}

.mainPicClose {
	position: absolute;
	z-index: 1;
	right: 1rem;
	top: 0.5rem;
	width: 1.9rem;
	height: 1.9rem;
	background: url(../images/closeIcon.png) no-repeat center center;
	background-size: auto 1.4rem;
	text-align: center;
	line-height: 1.9rem;
}

.mainPicClose span {
	font-size: 1.2rem;
	color: #FFF;
	display: inline-block;
}

.mainPicBox {
	position: absolute;
	left: 0px;
	width: 100%;
	height: 100%;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.mainPicBox .swiper-container {
	width: 100%;
	height: 100%;
}

.mainPicBox .swiper-slide {
	overflow: hidden;
}

.photePage {
	position: absolute;
	left: 0px;
	width: 100%;
	top: 0px;
	height: 2.0rem;
	line-height: 2.5rem;
	text-align: center;
	color: #FFF;
	font-size: 0.7rem
}

/* ========== 图片弹窗 end ========== */
/* ========== 版权信息 start ========== */
.copyRight {
	padding: 0 .75rem;
	background: #4152ab;
	line-height: 1rem;
	font-size: 0.6rem;
	color: #dbe2e8;
	text-align: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url('../images/copyRightBg.png');
}

.copyRight a {
	color: #dbe2e8;
}

.copyRightTop {
	border-bottom: 1px solid rgba(219, 226, 232, .1);
	padding: 1rem 0 0.5rem;
}

.copyRightList1Dl {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -0.9rem;
	overflow: hidden;
	justify-content: center;
}

.copyRightList1Dl dd {
	margin-bottom: 0.5rem;
	position: relative;
}

.copyRightList1Dl dd+dd::before {
	content: '';
	display: block;
	width: 1px;
	height: 0.6rem;
	background-color: rgba(219, 226, 232, .5);
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.copyRightList1Dl dd .con {
	display: block;
	margin: 0 0.9rem;
	font-size: 0.7rem;
}

.copyRightBottom {
	padding: 0.75rem 0 0.6rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	font-family: 'phtL';
}

.copyRightBeian img {
	height: 0.5rem;
	margin: 0 0.5rem;
}

/* ========== 版权信息 end ========== */
/* ========== 文章详情+单篇 start ========== */
.articleHeader {
	padding: .5rem 1.75rem .25rem;
}

.articleBody {
	padding: 0 0.75rem;
}

.articlePublish {
	overflow: hidden;
	text-align: center;
	font-size: 0;
	padding: 0 0 0.75rem;
	background-repeat: repeat-x;
	background-size: auto 0.25rem;
	background-image: url("../images/lin2.png");
	background-position: left bottom;
	margin: 0 0.75rem 0.75rem;
	font-family: 'phtL';
}

.articlePublish .item {
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
	text-align: center;
	overflow: hidden;
	margin: 0 0.25rem;
}

.articlePublish .item span {
	display: inline-block;
	vertical-align: middle;
	color: #999;
	font-size: 0.65rem;
}

.articlePublish .item.artFontSize .span1 {
	width: 1rem;
	height: 1rem;
	line-height: 1rem;
	border-radius: 50%;
	text-align: center;
	margin: 0 0.3rem;
}

.articlePublish .item.artFontSize .span1.hover {
	background-color: #e6eaf3;
}

/* 文章标题 start */
.articleTitle {
	font-size: 0.75rem;
	color: #333333;
	text-align: center;
	line-height: 1.2rem;
}

/* 文章标题 end */
/* 分享 start */
.articlePublish .articleShare {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 5px 15px 0px rgba(128, 128, 128, 0.2);
	-webkit-box-shadow: 0px 5px 15px 0px rgba(128, 128, 128, 0.2);
	position: fixed;
	bottom: 4.5rem;
	right: 1rem;
	z-index: 15;
	display: flex;
	align-items: center;
	justify-content: center;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 0.8rem;
	background-image: url("../images/share.png");
}

.articlePublish .articleShare span {
	display: flex;
	align-items: center;
	justify-content: center;
}

.articlePublish .sharejs_btn:before {
	display: none;
}

/* 分享 end */
/* 音频 start */
.articleAudio {
	padding: 0 0 .5rem;
}

.audio-tips {
	margin-top: 10px;
	color: #b1b1b1;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.articleAudio .info {
	-webkit-box-flex: 1;
	-ms-flex: 1 0;
	flex: 1 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
	line-height: 45px;
}

.articleAudio .info p {
	margin: 0;
	font-size: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #666;
	text-indent: 0;
}

.articleAudio .info .audio-title {
	-webkit-box-flex: 1.5;
	-ms-flex: 1.5;
	flex: 1.5;
	line-height: 24px;
	font-size: 14px;
}

.articleAudio .info .audio-desc {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	line-height: 16px;
	color: #999 !important;
	font-size: 12px !important;
}

.articleAudio .info .audio-desc span {
	padding: 0 15px 0 0;
	color: var(--mainColor);
}

.articleAudio .audiojs .pause {
	color: var(--mainColor);
	background-image: url("../images/common/speaker.svg");
}

/* 音频 end */
/* 视频 start */
.articleVideo {
	margin: 0 0 .5rem;
	background: #000;
	position: relative;
}

.articleVideo::before {
	display: block;
	content: '';
	padding-top: 56.25%;
}

#newViewPlayer {
	position: absolute;
	left: 0;
	top: 0;
}

.artVideoView {
	background: #000;
	position: relative;
}

.artVideoView::before {
	display: block;
	content: '';
	padding-top: 56.25%;
}

.videoDownLoad {
	text-align: center;
	padding: .5rem;
}

.articleVideo .progress-play {
	background-color: var(--mainColor) !important;
}

/* 视频 end */
/* 大图 start */
.articelImgSlide {
	overflow: hidden;
	position: relative;
}

#articelImgSlide img {
	display: block;
	max-width: 100%;
}

#articelImgSlide {
	overflow: hidden;
	position: relative;
}

#articelImgSlide .swiper-pagination {
	bottom: .25rem;
}

.articelImgSlide .swiper-button-prev {
	left: 0px;
}

.articelImgSlide .swiper-button-next {
	right: 0px;
}

.articelImgSlide .swiper-pagination-bullet {
	background: #eee;
	opacity: 1;
}

.articelImgSlide .swiper-pagination-bullet-active {
	background: var(--mainColor);
}

.articelImgSlide .swiper-button-next:after,
.articelImgSlide .swiper-button-prev:after {
	color: var(--mainColor);
}

/* 大图 end */
/* 内容区 start */
.articleBox {
	line-height: 1.5rem;
	color: #595959;
	padding: 0.5rem 0;
	font-size: 0.65rem;
	background: #fff;
	font-family: "phtL";
}

.articleBox img {
	max-width: 100%;
}

/* 内容区 end */
/* 页码 start */

/* 页码 end */
/* 附件 start */
.articleAnnex {
	clear: both;
	font-size: 0.75rem;
	padding: 0 0 1rem;
	overflow: hidden;
}

.articleAnnex a {
	display: block;
	line-height: 1.6rem;
	padding: 0 .75rem 0 1.2rem;
	color: #666;
	font-family: 'phtL';
	background-position: left center;
	background-repeat: no-repeat;
	background-size: auto 1rem;
	background-image: url('../images/common/file/file.png');
}

.articleAnnex a.word {
	color: #37a6ff !important;
	background-image: url('../images/common/file/word.png');
}

.articleAnnex a.ppt {
	color: #ff7735 !important;
	background-image: url('../images/common/file/ppt.png');
}

.articleAnnex a.excel {
	color: #15bf44 !important;
	background-image: url('../images/common/file/excel.png');
}

.articleAnnex a.pdf {
	color: #1369c0 !important;
	background-image: url('../images/common/file/pdf.png');
}

.articleAnnex a.zip {
	color: #ff9779 !important;
	background-image: url('../images/common/file/zip.png');
	background-size: auto 0.7rem;
	background-position: left 3px center;
}

/* 附件 end */
/* 上一篇/下一篇 start */
.articlePage {
	height: 2rem;
	line-height: 2rem;
	background: #FFF;
	display: flex;
}

.articlePage .item {
	flex: 1;
	color: #666666;
	text-align: center;
}

/* 上一篇/下一篇 end */
/* ========== 文章详情+单篇 end ========== */
/* ========== subBanner start ========== */
.subBanner {
	position: relative;
	overflow: hidden;
	width: 100%;
	background-color: var(--mainColor);
}

.subBanner:before {
	display: block;
	content: '';
	padding-top: 42.6667%;
}

.subBanner.subBanner2:before {
	padding-top: 66.6667%;
}

.subBanner img {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
	object-position: center center;
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transition: all 3s ease;
	-webkit-transition: all 3s ease;
}

.subBanner.on img {
	transform: scale(1);
	-webkit-transform: scale(1);
}

.subBanner .text {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--mainColorRgba2);
}

.subBanner .wrap {
	height: 100%;
}

.subBanner .tableCell {
	vertical-align: bottom;
}

.subBanner .textC {
	position: relative;
	width: 52.2667%;
}

.subBanner .textC .cnTitle {
	font-size: 1.05rem;
	color: #ffffff;
	line-height: 1.5rem;
	margin-bottom: 0.5rem;
}

.subBanner .textC .enTitle {
	font-size: 0.9rem;
	color: #ebebeb;
	font-family: 'phtL';
	line-height: 1rem;
	margin-bottom: 0.875rem;
}

/* ========== subBanner end ========== */
/* ========== 二级菜单 start ========== */
.mobileSubMenu {
	height: 2rem;
	position: sticky;
	top: 0;
	z-index: 50;
	margin: 0 auto;
	width: 100%;
	transition: 0.5s;
	background: #FFF;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.subMenu .swiper-slide {
	font-size: 0.6rem;
	width: auto;
}

.subMenu a {
	display: block;
	color: #333333;
	position: relative;
	margin: 0 0.75rem;
	height: 2rem;
	font-size: 0.65rem;
	line-height: 2rem;
	position: relative;
	font-family: "phtL";
	padding-left: 0.85rem;
	background-repeat: no-repeat;
	background-size: auto 0.5rem;
	background-position: left top;
}
.subMenu a .icon{
	position: absolute;
	width: 0.85rem;
	height: 0.625rem;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background-repeat: no-repeat;
	background-size: 0.65rem auto;
	background-position: left top;
}
.subMenu a img {
	position: absolute;
	width: 0.85rem;
	height: 0.625rem;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	transition: .3s linear;
	-webkit-transition: .3s linear;
}

.subMenu .swiper-slide.hover a {
	color: var(--mainColor);
	background-position: left bottom;
}
.subMenu .swiper-slide.hover .icon{
	background-position: left bottom;
}
.subMenu a .img2,
.subMenu .swiper-slide.hover a .img1 {
	opacity: 0;
	z-index: -1;
}

.subMenu a .img1,
.subMenu .swiper-slide.hover a .img2 {
	opacity: 1;
	z-index: 5;
}

/* ========== 二级菜单 end ========== */

/* ========== 三级菜单 start ========== */
.navigationList1Dl {
	font-size: 0;
	margin: 0 0.5rem;
	text-align: center;
	overflow: hidden;
	overflow-y: auto;
}

.navigationList1Dl dd {
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 0.5rem;
}

.navigationList1Dl dd .con {
	display: block;
	margin: 0 0.5rem;
	height: 1.5rem;
	line-height: 1.5rem;
	overflow: hidden;
	font-family: 'pthL';
	-webkit-transition: .3s linear;
	transition: .3s linear;
	text-align: center;
	padding: 0 0.5rem;
	font-size: 0.6rem;
	color: #333333;
}

.navigationList1Dl dd.hover .con,
.navigationList1Dl dd .con:hover {
	color: var(--mainColor);
}

/* ========== 三级菜单 end ========== */
/* ========== 四级菜单 start ========== */
.sjMenuList1Dl {
	font-size: 0;
	margin: 0 0.5rem;
	text-align: center;
	overflow: hidden;
	overflow-y: auto;
}

.sjMenuList1Dl dd {
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 0.5rem;
}

.sjMenuList1Dl dd .con {
	display: block;
	margin: 0 0.5rem;
	-webkit-box-shadow: 0px 3px 6px 0px rgba(42, 50, 48, 0.1);
	box-shadow: 0px 3px 6px 0px rgba(42, 50, 48, 0.1);
	height: 1.5rem;
	line-height: 1.5rem;
	overflow: hidden;
	background-color: #fff;
	font-family: 'pthL';
	border-radius: 1rem;
	-webkit-transition: .3s linear;
	transition: .3s linear;
	min-width: 2rem;
	text-align: center;
	padding: 0 0.5rem;
	font-size: 0.6rem;
	color: #333333;
}

.sjMenuList1Dl dd.hover .con,
.sjMenuList1Dl dd .con:hover {
	color: #fff;
	background-color: var(--mainColor);
}

/* ========== 四级菜单 end ========== */
/* ========== 滑动分页 start ========== */
.ajaxLoad {
	color: #666;
	height: 2rem;
	line-height: 2rem;
	text-align: center;
	clear: both;
	position: relative;
	margin: 5px 0 0 0;
	font-size: 0.7rem;
	font-family: 'phtL';
}

.mobilePageLoading {
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../images/common/loading2.svg);
	display: inline-block;
	vertical-align: top;
	width: 1.5rem;
	height: 2rem;
	background-size: auto 1rem;
}

/* ========== 滑动分页 end ========== */
/* ========== 全文列表 start ========== */
.textList1Dl dd {
	margin-bottom: 0.5rem;
}

.textList1Dl dd .con {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	padding: 0.75rem;
}

.textList1Dl dd .date {
	margin-right: 1.25rem;
	position: relative;
	padding-right: 1.45rem;
	text-align: right;
	font-family: 'pthL';
}

.textList1Dl dd .date::before {
	content: '';
	display: block;
	width: 1px;
	height: 1.25rem;
	background-color: #e5e5e5;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.textList1Dl dd .time1 {
	font-size: 0.9rem;
	color: var(--mainColor);
}

.textList1Dl dd .time2 {
	font-size: 0.6rem;
	color: #999999;
}

.textList1Dl dd .title {
	flex: 1;
	font-size: 0.65rem;
	color: #333333;
}

/* ========== 全文列表 end ========== */
/* ========== 图文列表 start ========== */
.imgText2Dl dd {
	margin-bottom: 0.5rem;
}

.imgText2Dl dd .con {
	background-color: #fff;
	display: flex;
	align-items: center;
	padding: 0.5rem;
}

.imgText2Dl dd .pic {
	background-color: #f5f5f5;
	width: 7.125rem;
	margin-right: 0.75rem;
}

.imgText2Dl dd .pic::before {
	padding-top: 56.1404%;
}

.imgText2Dl dd .text {
	flex: 1;
}

.imgText2Dl dd .title {
	font-size: 0.65rem;
	color: #333333;
	line-height: 0.8rem;
	overflow: hidden;
	margin-bottom: 0.75rem;
}

.imgText2Dl dd .date {
	line-height: .75rem;
	height: .75rem;
	overflow: hidden;
	font-size: 0.6rem;
	color: #999999;
	font-family: "phtL";
}

/* ========== 图文列表 end ========== */
/* ========== 全图列表 start ========== */
.imgList {
	overflow: hidden;
	margin-right: -.75rem;
}

.imgList dd {
	float: left;
	width: 50%;
	overflow: hidden;
	margin-bottom: .75rem;
}

.imgList dd .con {
	display: block;
	margin-right: .75rem;
	background-color: #fff;
}

.imgList dd .pic:before {
	padding-top: 55.8696%;
}

.imgList dd .text {
	height: 1.75rem;
	line-height: 1.75rem;
	text-align: center;
	color: #333;
	font-size: .65rem;
}

.imgList dd .photoIcon {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 5;
	background-color: rgba(0, 0, 0, 0.5);
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url('../images/photoIcon1.png');
	background-size: auto 1.5rem;
}

/* ========== 全图列表 end ========== */
/* ========== 视频列表 end ========== */
.videoList {
	overflow: hidden;
	margin-right: -.75rem;
}

.videoList dd {
	float: left;
	width: 100%;
	overflow: hidden;
	margin-bottom: .75rem;
}

.videoList dd .con {
	display: block;
	margin-right: .75rem;
	background-color: #fff;
}

.videoList dd .pic:before {
	padding-top: 55.8696%;
}

.videoList dd .text {
	height: 2rem;
	line-height: 2rem;
	text-align: center;
	color: #333;
	font-size: .75rem;
}

.videoList dd .playIcon {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 5;
	background-color: rgba(0, 0, 0, 0.5);
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url('../images/playIcon1.png');
	background-size: auto 2rem;
}

/* ========== 视频列表 end ========== */
/* ========== 视频弹窗 start ========== */
.videoFloat {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 100;
}

.videoFloatBody {
	width: 100%;
	height: 100%;
	visibility: hidden;
	opacity: 1;
	transform: translateY(100%);
	-webkit-transform: translateY(100%);
	transition: all 500ms linear;
	-webkit-transition: all 500ms linear;
	background: #000;
}

.videoFloatBody.active {
	visibility: visible;
	opacity: 1;
	transform: translateY(0%);
	-webkit-transform: translateY(0%);
}

.videoFloatClose {
	position: fixed;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 2rem;
	right: .5rem;
	top: .5rem;
	background-color: var(--mainColor);
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url('../images/closeIcon.png');
	background-size: auto .9rem;
	border: .12rem solid #FFF;
	color: #FFF;
	text-align: center;
	line-height: 1.6rem;
	z-index: 1;
}

.videoFloatClose i {
	font-size: .8rem;
}

.videoFloat video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.videoFloat-video {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	left: 0;
}

.videoFloat-video::before {
	display: block;
	content: '';
	padding-top: 60%;
}

.videoFloat-video video {
	position: absolute;
	left: 0;
	top: 0;
}

/* ========== 视频弹窗 end ========== */
/* ========== 产品列表 start ========== */
.productList {
	overflow: hidden;
	margin-right: -0.5rem;
}

.productList dd {
	float: left;
	display: inline;
	width: 50%;
	margin-bottom: 0.5rem;
}

.productList dd .con {
	display: block;
	margin-right: 0.5rem;
	overflow: hidden;
	background-color: #fff;
}

.productList dd .pic {
	border-bottom: 1px solid #f5f5f5;
}

.productList dd .pic::before {
	padding-top: 106.6667%;
}

.productList dd .pic img {
	object-fit: contain;
	max-height: 90%;
	bottom: 0;
	right: 0;
	margin: auto;
}

.productList.productList2 dd .pic::before {
	padding-top: 100%;
}

.productList dd .title {
	padding: 0.625rem 0.75rem;
	height: 1rem;
	line-height: 1rem;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	text-align: center;
}

/* ========== 产品列表 end ========== */
/* ========== 产品详情 start ========== */
.productViewBox {
	padding: 1.375rem 0 1.55rem;
	position: relative;
	overflow: hidden;
	background: #f5f5f5;
}

.productViewCon {
	margin-bottom: 1.65rem;
}

.productViewCon .pic {
	width: 78.9333%;
	margin: 0 auto;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 100%;
	background-image: url('../images/productViewConBg.png');
}

.productViewCon .pic::before {
	padding-top: 95.1014%;
}

.productViewCon .pic img {
	object-fit: contain;
	width: unset;
	height: unset;
	max-width: 100%;
	max-height: 100%;
	right: 0;
	bottom: 0;
	margin: auto;
}

.productViewText .title {
	line-height: 1.3rem;
	font-size: 0.9rem;
	color: #333333;
	text-align: center;
}

.productViewText .info {
	line-height: 1.05rem;
	font-size: 0.6rem;
	color: #333333;
	font-family: "phtL";
	text-align: center;
}

.productViewText .articleBox {
	border: 1px solid rgb(230, 230, 230);
	background-color: #fff;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0.75rem;
}

/* ========== 产品详情 end ========== */