:root {
	--cm-primary-color: #8d2410;
	--cm-white-color: #ffffff;
	--cm-black-color: #000000;
	--cm-paragraph-color: #848587;
	--cm-title-color: #303334;
	--cm-titleh-color: #363636;
	--cm-section-bg: #e0dfdd;
	--cm-border-color: #c8c2c2;
	--cm-bg-color: #e1e4e6;
	--cm-bgh-color: #f7f7f7;
	--cm-brown-color: #956729;
	--cm-yellow-color:#e9bd61;
}
*, *::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html{
    font-size: 14px;
    -webkit-text-size-adjust:none;
}
@media (min-width: 576px) {
    html{
		font-size: 15px;
	}
}
@media (min-width: 768px) {
  html{
		font-size: 16px;
	}
}
@media (min-width: 992px) {
  html{
		font-size: 16px;
	}
}
@media (min-width: 1200px) {
  html{
		font-size: 18px;
	}
}
@media (min-width: 1600px) {
  html{
		font-size: 20px;
	}
}
body{
	font-size: 1rem;
	line-height: 1.6;
    font-family: system-ui,-apple-system, BlinkMacSystemFont, "PingFang SC","Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Microsoft YaHei", sans-serif;
    font-weight: normal;
    font-style: normal;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
	background:url(../images/bg2.jpg) no-repeat center/cover;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,button{
	margin:0;
	padding:0;
}
a{
    outline:none;
    text-decoration:none !important;
    color:inherit; 
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
}
a:hover{
	color: var(--cm-primary-color);
} 
a:focus,
a:hover{
    outline: none;
    text-decoration: none;
}
a,
.button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
a,
button {
	color: inherit;
	outline: none;
	border: none;
	background: transparent;
}

button:hover{
	cursor: pointer;
}

button:focus{
    outline: 0; 
}

a:focus,
.button:focus {
	text-decoration: none;
	outline: none;
}
a:focus,
a:hover,
.portfolio-cat a:hover,
.footer -menu li a:hover {
 	text-decoration: none;
}
a,
button {
 	outline: medium none;
}
button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  	outline: 0;
}
[type="button"], [type="reset"], [type="submit"], button {
  -webkit-appearance: button;
}
img{
	max-width: 100%;
}
h1,h2,h3,h4,h5,h6{
	font-size: 100%;
	font-weight: normal;
}
li{
	list-style: none;
}
.grid{
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	letter-spacing: normal;
	word-spacing: normal;
}
.x-small-text{
	font-size: 0.75rem;
}
.small-text {
  	font-size: 0.875rem;
}
.small-text-2{
	font-size: 0.875rem;
}
.normal-text{
	font-size: 1rem;
}
.large-text{
	font-size: 1.125rem;
}
.x-large-text{
	font-size: 1.5rem;
}
.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--cm-primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}
.loading-container,
.loading{
	height: 5rem;
	position: relative;
	width: 5rem;
	border-radius: 100%;
}
.loading-container{
	margin: 2rem auto;
}
.loading{
	border: 0.05rem solid transparent;
	border-color: transparent var(--cm-white-color) transparent var(--cm-white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}
.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}
#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 5rem;
	transform: translate(-50%, -50%);
}
@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}
.back-to-top-wrapper{
	position: fixed;
	right: 1rem;
	bottom: 0;
	height: 2.2rem;
	width: 2.2rem;
	cursor: pointer;
	display: block;
	border-radius: 50%;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
}
.back-to-top-wrapper.back-to-top-btn-show{
	visibility: visible;
	opacity: 1;
	bottom: 2.5rem;
}
.back-to-top-btn{
	display: inline-block;
	width: 2.2rem;
	height: 2.2rem;
	line-height: 2.2rem;
	text-align: center;
	background: var(--cm-primary-color);
	box-shadow: 0 0.4rem 0.8rem rgba(3, 4, 28, 0.3);
	color: var(--cm-white-color);
	border-radius: 50%;
	-webkit-transition: transform 0.3s 0s ease-out;
	-moz-transition: transform 0.3s 0s ease-out;
	-ms-transition: transform 0.3s 0s ease-out;
	-o-transition: transform 0.3s 0s ease-out;
	transition: transform 0.3s 0s ease-out;
}
.back-to-top-btn svg{
	vertical-align: middle;
  	transform: translateY(-0.1rem);
}
.back-to-top-btn:hover{
  	transform: translateY(-0.2rem);
}
.erpage3 .list h5,.hpage2 .rts li h3 {
	width:calc(100% - 6.5rem);
}
header{
	position: relative;
}
.header-top{
	position: absolute;
	z-index: 12;
	width: 100%;
}
.header-top .logo{
	margin-top: 1.5rem;
}
.header-top .logo img {
	display:block;
}
.header-top .tps {
	display:flex;
	justify-content:flex-end;
	align-items:center;
	height: 2.5rem;
	margin-top: 0.5rem;
}
.header-top .tps ul {
	display:flex;
	align-items:center;
}
.header-top .search {
	width:15rem;
	height:2rem;
	background:var(--cm-white-color);
	border-radius:1.25rem;
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin-left:0.75rem;
	box-shadow:0 0.25rem 0.5rem 0 rgba(80,80,80,0.1);
}
.header-top .search .t1 {
	width:calc(100% - 2.4rem);
	height:100%;
	background:none;
	border:none;
	padding:0 0.75rem;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;
	color:var(--cm-black-color);
}
.header-top .search .sub {
	width:2.4rem;
	height:100%;
	background:url(../images/qw5.png) no-repeat center;
	background-size:0.9rem auto;
	border:none;
	cursor:pointer;
}
.header-top .naver {
	margin-top:0.75rem;
}
.header-top .naver ul {
	display:flex;
	justify-content:flex-end;
	align-items:center;
}
.header-top .naver h3 a {
	color:var(--cm-titleh-color);
	display:block;
}
.header-top .naver li {
	margin-right:2rem;
	position:relative;
}
.header-top .naver li:last-child {
	margin-right:0;
}
.hnli {
	position:absolute;
	left:-70%;
	right:-70%;
	top:100%;
	z-index:1;
	background:url(../images/qw6.png) no-repeat center top;
	background-size:100% auto !important;
	width:8rem;
	margin:0 auto;
	height:11.5rem;
	display:none;
}
.hnli dl {
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	height: 100%;
}
.hnli dd {
	margin-left: auto;
	margin-right: auto;
	margin-bottom:0.8rem;
}
.hnli dd a {
	color:var(--cm-titleh-color);
	display:block;
	text-align:center;
	position: relative;
	height: 100%;
	width: 100%;
}
.header-top .naver li.on h3 a,.header-top .naver li:hover h3 a {
	color:var(--cm-primary-color);
	font-weight:bold;
}
.hnli dd a:hover {
	color:var(--cm-primary-color);
	font-weight:bold;
}
.hbanner {
	width: 100%;
	aspect-ratio: 2.064516;
	overflow:hidden;
	position:relative;
}
.hbanner .spots {
	position:absolute;
	left:5rem;
	right:0;
	bottom:1.75rem;
	z-index:1;
}
.hbanner .swipera .swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hbanner .swipera .swiper-slide-active img{
	transform: scale(1.1);
	transition: all 10s linear 0s;
}
.hbanner .spots .swiper-slide{
	width: auto;
	padding: 0 0.7rem;
}
.hbanner .spots .ico{
	width: 1.7rem;
	height: 1.7rem;
	overflow: hidden;
	cursor: pointer;
	position: relative;
}
.hbanner .spots .ico img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}
.hbanner .spots .swiper-slide-thumb-active img{
	transform:translateY(-100%);
}
.hbanner .spots .swiper-slide-thumb-active{
	background: url(../images/line1.png) no-repeat center/contain;
}
.hpage1 {
	position:absolute;
	right:0;
	bottom:-0.05rem;
	z-index:1;
	width:55rem;
	height:3.5rem;
	display:flex;
	justify-content:center;
	align-items:center;
}
.hpage1 dl {
	display:flex;
	justify-content:flex-end;
	align-items:center;
}
.hpage1 dd {
	line-height:1.8;
	color:var(--cm-title-color);
}
.hpage1 dd img {
	max-width:100%;
	height:auto;
	display:inline-block;
	object-fit:contain;
	margin-right:0.25rem;
	position:relative;
	top:0.1rem;
}
.hpage1 dd span {
	width:0.05rem;
	background:var(--cm-section-bg);
	height:0.6rem;
	display:block;
	margin:0 1.1rem;
}
.hpage1 dd.on {
	margin-left:2rem;
	background:var(--cm-bgh-color);
	padding:0 1.35rem;
	border-radius:1.25rem;
}
.hpage1 dd i {
	margin-left:0.7rem;
}
.hpage2 {
	padding:4rem 0 0;
}
.hpage2 .swipban {
	width:100%;
	aspect-ratio: 1.6;
	overflow:hidden;
	position:relative;
}
.hpage2 .rts {
	width:100%;
	height:100%;
	padding-left: 1rem;
}
.hpage2 .swipban p {
	color:var(--cm-white-color);
	max-width:60%;
	word-break:keep-all;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	padding:0 1.5rem;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;
}
.hpage2 .swipban .msk {
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	z-index:1;
	padding:1.2rem 0;
}
.hpage2 .swipban .pic img {
	width:100%;
	height:100%;
	display:block;
	object-fit:cover;
}
.hpage2 .swipban .pic {
	width:100%;
	height:100%;
	overflow:hidden;
}
.hpage2 .swipban .spot {
	position:absolute;
	right:1rem;
	bottom:1rem;
	z-index:2;
	left:auto;
	width:100%;
	text-align:right;
}
.hpage2 .swipban .spot span {
	width:0.4rem;
	height:0.4rem;
	opacity:1;
	margin:0 0.4rem !important;
	background:rgba(255,255,255,0.5);
}
.hpage2 .swipban .spot .swiper-pagination-bullet-active {
	background:url(../images/hy8.png) no-repeat center/cover;
	background-size:0.9rem auto;
	width:0.9rem;
	height:0.9rem;
}
.hpage2 .tps {
	padding-bottom:1rem;
	border-bottom:1px solid #f2f2f2;
}
.hpage2 .tps:hover h3,.hpage2 .rts li:hover h3{
	color: var(--cm-primary-color);
}
.hpage2 .tps h6 {
	color:var(--cm-primary-color);
	background:url(../images/qw55.png) no-repeat left center;
	background-size:0.7rem auto;
	padding-left:0.9rem;
}
.hpage2 .tps h3 {
	color:var(--cm-title-color);
	word-break:keep-all;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	margin:0.5rem 0;
}
.hpage2 .tps p {
	color:var(--cm-paragraph-color);
	height:2.7rem;
	overflow:hidden;
	margin-bottom:0.7rem;
}
.hpage2 .tps .btn {
	text-align:center;
	line-height: 2.2;
	display:block;
	color:var(--cm-white-color);
	background:url(../images/qw16.png) no-repeat center/100% auto;
	width:5.3rem;
}
.hpage2 .rts ul {
	margin-top:1rem;
}
.hpage2 .rts li a {
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin-bottom:1.1rem;
}
.hpage2 .rts li h3 {
	color:var(--cm-title-color);
	padding-left:1.3rem;
	background:url(../images/qw13.png) no-repeat left center;
	background-size:1rem auto;
	max-width:80%;
	word-break:keep-all;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}
.hpage2 .rts li h6 {
	color:var(--cm-paragraph-color);
}
.hpage3 {
	padding-top:4rem;
	overflow: hidden;
}
.hpage3 .ovs {
	margin-top:1.75rem;
}
.hpage3 .swiptongz {
	width:100%;
	height: auto;
}
.hpage3 .swiptongz .swiper-slide {
	background:url(../images/hy12.png);
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
	height:11.9rem;
	display:flex;
	justify-content:center;
	align-items:center;
	padding:0 2rem;
}
.hpage3 .swiptongz h6 {
	line-height:1.8;
	color:var(--cm-primary-color);
	background:url(../images/qw55.png) no-repeat left center;
	background-size:0.7rem auto;
	padding-left:0.9rem;
}
.hpage3 .swiptongz h3 {
	color:var(--cm-title-color);
	height:3rem;
	overflow:hidden;
	margin:0.6rem 0;
}
.hpage3 .swiptongz p {
	color:var(--cm-paragraph-color);
	height:3rem;
	line-height: 1.5rem;
	overflow:hidden;
}
.hpage3 .swiptongz .swiper-slide:hover {
	background:url(../images/hy14.png);
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
}
.hpage3 .swiptongz .swiper-slide:hover h3 {
	color:var(--cm-white-color);
}
.hpage3 .swiptongz .swiper-slide:hover p {
	color:rgba(255,255,255,0.6);
}
.hpage3 .swiptongz .swiper-slide:hover h6 {
	color:var(--cm-white-color);
	background:url(../images/hy13.png) no-repeat left center;
	background-size:0.7rem auto;
}
.hpage3 .utbns {
	position:static;
	margin-top:2.5rem;
}
.utbns {
	display:flex;
	justify-content:center;
	align-items:center;
}
.utbns .prev,.utbns .next {
	background:url(../images/prev-2.png) no-repeat center/cover;
	width:2.8rem;
	height:2.8rem;
	background-size:1.25rem auto;
	cursor:pointer;
}
.utbns .next {
	transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	/* IE 9*/
	-moz-transform:rotate(180deg);
	/* Firefox*/
	-webkit-transform:rotate(180deg);
	/* Safari 和 Chrome*/
	-o-transform:rotate(180deg);
}
.utbns .spot {
	margin:0 1.25rem;
	position:static;
	text-align:center;
	width:auto;
}
.utbns .spot span {
	width:0.4rem;
	height:0.4rem;
	opacity:1;
	margin:0 0.4rem !important;
	background:var(--cm-border-color);
}
.utbns .spot .swiper-pagination-bullet-active {
	background:url(../images/hy15.png) no-repeat center/cover;
	background-size:0.9rem auto;
	width:0.9rem;
	height:0.9rem;
}
.utbns .prev:hover,.utbns .next:hover {
	background:url(../images/prev-3.png) no-repeat center/cover;
	background-size:1.25rem auto;
}
.hpage4 {
	position: relative;
	padding-top:11rem;
	background: url(../images/hy18.png) no-repeat center top;
	background-size: 100% 65.5rem;
	z-index: 3;
}
.hpage4 .lts{
	margin-right:0.75rem;
}
.hpage4 .rts{
	margin-left:0.75rem;
}
.hpage4 .ertit{
	text-align: left;
}
.hpage4 ul {
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content:flex-start;
	margin-top:1.5rem;
}
.hpage4 .lts li a,.hpage4 .rts li a {
	background:url(../images/qw73.png) no-repeat center/100% 100%;
	line-height:2.5rem;
	color:var(--cm-white-color);
	display:block;
	text-align:center;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;
	width:100%;
}
.hpage4 .lts li a:hover,.hpage4 .rts li a:hover {
	background:url(../images/qw73-1.png) no-repeat center/100% 100%;
	color:var(--cm-yellow-color);
}
.hpage4 .tbs {
	margin-top:1.775rem;
	width: 100%;
	overflow: hidden;
}
.hpage4 .tbs .ts{
	display: flex;
    align-items: center;
	justify-content: center;
	height: 12.05rem;
	width: 100%;
	font-size: 1.3rem;
}
.hpage4 .tbs .ts.two{
	height: 14.1rem;
}
.hpage4 .tbs .ico {
	height:auto;
	max-width:60%;
	display:block;
	object-fit:contain;
	margin:0 auto;
}
.hpage4 .tbs h5 {
	color:rgba(255,255,255,0.6);
	text-align:center;
	font-size: 0.8rem;
	line-height: 1.5;
}
.hpage4 .tbs h4 {
	color:var(--cm-white-color);
	text-align:center;
	margin:0.8rem 0 0.25rem;
	font-size: 1.3rem;
	line-height: 1.5;
}
.hbgs{
	margin-top: -29.9rem;
	padding-top: 35rem;
	padding-bottom: 4rem;
	overflow: hidden;
}
.hpage5 .txt{
	margin-right: 0.75rem;
}
.hpage5 .pic{
	margin-left: 0.75rem;
}
.hpage5 .pic img{
	display: block;
	width: 100%;
	height: 100%;
}
.hpage5 .txt h3 {
	color:var(--cm-title-color);
	margin-bottom:0.8rem;
}
.hpage5 .txt p {
	line-height: 2.2;
	color:var(--cm-paragraph-color);
	height:16rem;
}
.hpage5 .txt .btn {
	position:absolute;
	line-height:2.1rem;
	text-align:center;
	display:block;
	color:var(--cm-white-color);
	background:url(../images/qw65.png) no-repeat center/100% auto;
	width:7.5rem;
	left:1rem;
	bottom: 1.2rem;
}
.hpage5 .txt .utbns {
	position:absolute;
	right: 1.5rem;
	bottom:0.9rem;
	z-index:1;
	width: 15rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.hpage5 .txt .utbns .spot{
	position: absolute;
	left: 5.5rem;
	bottom: 1.15rem;
	transform: translateX(-50%);
	flex-shrink: 0;
}
.hpage5 .list {
	margin-top:1.5rem;
	overflow: hidden;
}
.hpage5 .list .swiper-slide {
	background:url(../images/qw74.png);
	background-size: 100% 100%;
	height:18.5rem;
	padding:0.5rem;
	position: relative;
}
.hpage5 .list .pic {
	overflow:hidden;
	width:100%;
	height:100%;
	margin: 0;
}
.hpage5 .list .pic img {
	overflow:hidden;
	width:100%;
	height:100%;
	object-fit:cover;
	object-position: top;
	display:block;
}
.hpage5 .list h3 {
	line-height:1.4;
	color:var(--cm-title-color);
}
.hpage5 .list p {
	line-height:1.4;
	color:var(--cm-paragraph-color);
}
.hpage5 .list .ts {
	background:url(../images/hy35.png) no-repeat;
	background-size: 100% 100%;
	width:10.7rem;
	height:3.6rem;
	display:flex;
	justify-content:center;
	align-items:center;
	position:absolute;
	left:0;
	right:0;
	margin:0 auto;
	bottom:0.8rem;
	z-index:1;
}
.hpage6 {
	margin: 5rem 0 2.5rem 0;
	height: 35.05rem;
}
.hpage6 ul {
	display:flex;
	align-items:flex-start;
}
.hpage6 li {
	margin-left:-3rem;
	padding:1.5rem 0 1.3rem;
	width:28.15rem;
}
.hpage6 li .tit{
	text-align: center;
}
.hpage6 li:nth-child(1) {
	margin-left:0;
}
.hpage6 li .btn {
	display:block;
	margin:1.4rem auto 0;
	width:7.5rem;
}
.hpage6 li dl {
	margin: 1rem 4.2rem 0 1.2rem;
	overflow: hidden;
}
.hpage6 li:nth-child(3) dl{
	margin-right:1.2rem ;
}
.hpage6 li dd {
	padding:0.2rem 0;
	border-bottom:1px solid rgba(255,255,255,0.1);
}
.hpage6 li .ddpic{
	width: 100%;
	height: 10.7rem;
	border-bottom: 0;
	overflow: hidden;
	padding: 0;
}
.hpage6 li .ddpic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hpage6 li:nth-child(1) dd:last-child,
.hpage6 li:nth-child(2) dd:last-child{
	border-bottom: 0;
}
.hpage6 li:nth-child(1) dd h3,
.hpage6 li:nth-child(2) dd h3{
	white-space:nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.hpage6 li dd h3 {
	line-height:1.8;
	color:var(--cm-white-color);
}
.hpage6 li dd h6 {
	line-height:1.8;
	color:#ece3db;
	padding-left:0.9rem;
	background:url(../images/hy39.png) no-repeat left center;
	background-size:0.65rem auto;
	margin-top:0.25rem;
}
.hpage6 li:nth-child(2) {
	margin-top:2.7rem;
}
.hpage6 li dd .flax {
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.hpage6 li dd .time {
	width:3.7rem;
}
.hpage6 li dd h5 {
	width:3.75rem;
	padding:0.3rem 0;
	line-height:1.8;
	color:var(--cm-white-color);
	text-align:center;
	background:rgba(255,255,255,0.19);
}
.hpage6 li dd h5 span {
	font-weight:bold;
	display:block;
}
.hpage6 li dd h4 {
	color:var(--cm-white-color);
	height:3rem;
	overflow:hidden;
	width:calc(100% - 4.5rem);
}
.hpage6 li:nth-child(3) {
	margin-top:1.25rem;
}
.hpage6 li dd h3,.hpage6 li dd h4{
	transition:all 0.3s;
	-ms-transition:all 0.3s;
	/* IE 9*/
	-moz-transition:all 0.3s;
	/* Firefox*/
	-webkit-transition:all 0.3s;
	/* Safari 和 Chrome*/
	-o-transition:all 0.3s;
}
.hpage6 li dd:hover h3,.hpage6 li dd:hover h4{
	color: var(--cm-primary-color);
}
.footer {
	padding:2.5rem 0 2.5rem;
}
.footer .nav,
.footer .tbs,
.footer .copyright{
	width: 100%;
}
.footer .nav ul {
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding: 0 2.5rem;
	padding-bottom:1rem;
	border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer .nav li a {
	color:var(--cm-white-color);
}
.copyright {
	padding-top:1.5rem;
	border-top:1px solid rgba(255,255,255,0.1);
	text-align:center;
	line-height:2;
	color:var(--cm-section-bg);
}
.copyright li{
	display: inline-block;
	margin-right: 2rem;
}
.copyright a {
	color:var(--cm-section-bg);
}
.footer .flax {
	display:flex;
	align-items:center;
	justify-content:space-between;
	flex:1;
}
.footer .tbs {
	padding:1.4rem 0 1.4rem;
	display:flex;
	align-items:center;
}
.footer .logo {
	border-right:1px solid rgba(255,255,255,0.06);
	width:14rem;
	margin-right:4rem;
}
.footer .logo img {
	width:8.8rem;
	display:block;
}
.footer .txt h3 {
	color:var(--cm-white-color);
	margin-bottom:0.8rem;
}
.footer .txt p {
	color:var(--cm-section-bg);
	margin-bottom:0.5rem;
}
.footer .rts ul {
	display:flex;
	justify-content:flex-end;
	align-items:center;
}
.footer .rts li {
	margin-left:1rem;
	width:6.4rem;
}
.footer .rts li .wx {
	width:100%;
}
.footer .rts li img {
	width:100%;
	display:block;
}
.footer .rts li p {
	margin-top:0.4rem;
	text-align:center;
	color:var(--cm-section-bg);
}
/**********************/
.swiptongz .swiper-slide,
.hpage4 .tbs .ts,
.hpage5 .list .swiper-slide .pic img,
.hpage6 li,
.hpage6 li .ddpic img,
.docchannel .list li .pic img,
.erpage3 .list li.pic img,
.swipzhuanj .swiper-slide {
	transition:all 0.3s;
	-ms-transition:all 0.3s;
	/* IE 9*/
	-moz-transition:all 0.3s;
	/* Firefox*/
	-webkit-transition:all 0.3s;
	/* Safari 和 Chrome*/
	-o-transition:all 0.3s;
}
.swiptongz .swiper-slide:hover,
.swipzhuanj .swiper-slide:hover{
	transform: translateY(-0.25rem);
}
.hpage4 .tbs .ts:hover,
.hpage5 .list .swiper-slide:hover .pic img,
.hpage6 li .ddpic:hover img,
.docchannel .list li .pic:hover img,
.erpage3 .list li.pic:hover img {
	transform:scale(1.1);
	-ms-transform:scale(1.1);
	/* IE 9*/
	-moz-transform:scale(1.1);
	/* Firefox*/
	-webkit-transform:scale(1.1);
	/* Safari 和 Chrome*/
	-o-transform:scale(1.1);
}
.hpage6 li:nth-child(1):hover{
	margin-top: -0.5rem;
}
.hpage6 li:nth-child(2):hover{
	margin-top:2.2rem;
}
.hpage6 li:nth-child(3):hover{
	margin-top:0.75rem;
}

/*************/
.banner {
	position:relative;
	z-index:2;
	width: 100%;
	background: url(../images/ban.png) no-repeat center/cover;
	aspect-ratio: 3.85;
}
.banner-search{
	background-image: url(../images/mban.png);
}
.banner img {
	width:100%;
	height:100%;
	display:block;
}
.bannav {
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	z-index:2;
}
.bannav ul {
	display:flex;
	justify-content:flex-end;
	align-items:center;
}
.bannav li {
	margin-left:1rem;
}
.bannav li a {
	background:url(../images/qw7.png) no-repeat center/cover;
	width:9.4rem;
	font-size:1rem;
	line-height:2.5rem;
	color:var(--cm-brown-color);
	display:block;
	text-align:center;
}
.bannav li:hover a,
.bannav li.on a {
	background:url(../images/qw8.png) no-repeat center/cover;
	color:var(--cm-primary-color);
}
.umbg1 {
	background:url(../images/qw24.png) no-repeat right top;
	margin-top:-7.5rem;
}
.umbg2 {
	background:url(../images/qw25.png) no-repeat center/cover;
	min-height:15rem;
	padding:10rem 0 5rem;
}
.tit img {
	display:block;
	margin:0 auto;
	object-fit:contain;
	max-width:100%;
	aspect-ratio: auto;
	height:auto;
}
.tit.on img {
	margin:initial;
}
.content{
	line-height: 2;
}
.pages dl {
	display:flex;
	justify-content:center;
	align-items:center;
}
.pages dd {
	margin:0 0.5rem;
	color: var(--cm-paragraph-color);
}
.pages dd a {
	min-width:1.5rem;
	text-align:center;
	display:block;
	border-radius:0.25rem;
	padding:0 0.5rem;
	color:var(--cm-titleh-color);
	line-height:1.5rem;
	transition:all 0s;
}
.pages dd a:hover,.pages dd.on a {
	background:var(--cm-primary-color);
	color:var(--cm-white-color);
}
.nchannel .list li h3 {
	width:calc(100% - 7rem);
}
.nchannel .list {
	margin-top:1.5rem;
}
.nchannel .list ul {
	margin-bottom:2.5rem;
}
.nchannel .list li {
	padding:0.75rem 0;
	border-bottom:0.05rem solid var(--cm-bg-color);
}
.nchannel .list li a {
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-direction: row;
}
.nchannel .list li h3 {
	line-height:1.6;
	color:var(--cm-titleh-color);
	padding-left:1.3rem;
	max-width:80%;
	background:url(../images/qw13.png) no-repeat left center;
	background-size:1rem auto;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nchannel .list li a:hover h3{
	color: var(--cm-primary-color);
}
.nchannel .list li h6 {
	line-height:1.6;
	color:var(--cm-paragraph-color);
}
.searchre .results{
	width: 100%;
}
.searchre .results .result{
	margin-bottom: 1.5rem;
}
.searchre .results .result .date{
	color: var(--cm-paragraph-color);
}
.uture {
	background:url(../images/qw27.png) no-repeat center/100% auto;
	width:5.8rem;
	height:auto;
	text-align:center;
	display:block;
	margin-top:-1.5rem;
}
.uture span {
	background:url(../images/qw26.png) no-repeat left center;
	background-size:0.35rem auto !important;
	font-size:0.7rem;
	line-height:1.8rem;
	color:var(--cm-paragraph-color);
	display:inline-block;
	padding-left:0.7rem;
}
.uture:hover {
	background:url(../images/qw27-2.png) no-repeat center / 100% auto;
}
.uture:hover span {
	background:url(../images/qw26-1.png) no-repeat left center;
	color:var(--cm-primary-color);
}
.ncontent .hds {
	padding-bottom:1.25rem;
	border-bottom:0.05rem solid var(--cm-bg-color);
	text-align:center;
}
.ncontent .hds h1 {
	line-height:1.5;
	color:var(--cm-title-color);
}
.ncontent .hds h6 span {
	margin:0 0.75rem;
	display:inline-block;
}
.ncontent .hds h6 {
	line-height:1.6;
	color:var(--cm-paragraph-color);
	margin-top:0.9rem;
}
.ncontent .content {
	margin:1.5rem 0;
}
.ncontent .content img {
	display:block;
	margin:0 auto;
	height:auto;
}
.ncontent .fts,
.dcontent .fts,
.doccontent .fts {
	background:var(--cm-white-color);
	display:flex;
	justify-content:space-between;
	align-content:center;
	margin: 0 15px;
	width: 100%;
}
.ncontent .fts a,
.dcontent .fts a,
.doccontent .fts a {
	line-height:1.6;
	color:var(--cm-titleh-color);
	display:block;
}
.ncontent .fts a:hover,
.dcontent .fts a:hover,
.doccontent .fts a:hover {
	color: var(--cm-primary-color);
}
.ncontent .fts .prev span,
.dcontent .fts .prev span,
.doccontent .fts .prev span {
	color:var(--cm-paragraph-color);
	background:url(../images/qw26.png) no-repeat left center;
	background-size:0.4rem auto !important;
	padding-left:0.7rem;
	margin-right:1.4rem;
}
.ncontent .fts .next span,
.dcontent .fts .next span,
.doccontent .fts .next span {
	color:var(--cm-paragraph-color);
	background:url(../images/qw28.png) no-repeat right center;
	background-size:0.4rem auto !important;
	padding-left:1.4;
	padding-right:0.7rem;
}

.ncontent .prev,.ncontent .next,.dcontent .prev,.dcontent .next,.doccontent .prev,.doccontent .next{
	background-color: var(--cm-white-color);
}
.ncontent .next,.dcontent .next,.doccontent .next{
	text-align: right;
}
.depchannel .tps {
	margin-top:2.5rem;
}
.depchannel .tps h3 img {
	display:block;
	object-fit:contain;
	max-width:100%;
	height:auto;
}
.depchannel .tps ul {
	display:flex;
	align-items:center;
	margin-top:1rem;
	flex-wrap:wrap;
	justify-content:flex-start;
}
.depchannel .tps li {
		margin-bottom:1rem;
		margin-right:1rem;
		width:calc((100% - 2rem) / 3);
	}
.depchannel .tps li a {
	background:url(../images/qw9.png) no-repeat center/100% 100%;
	line-height:2.5rem;
	color:var(--cm-titleh-color);
	display:block;
	text-align:center;
	width:100%;
}
.depchannel .tps li a:hover {
	background:url(../images/qw9-1.png) no-repeat center/100% 100%;
	color:var(--cm-primary-color);
}
.utlist {
	margin:2rem 0;
}
.utlist li {
	margin-bottom:0.5rem;
	padding:1rem;
	background:url(../images/qw63.png) no-repeat center/100% 100%;
}
.utlist li a {
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.utlist li .pic {
	width:12.7rem;
	align-self: stretch;
	overflow:hidden;
}
.utlist li .pic img {
	width:100%;
	height:100%;
	display:block;
	object-fit:cover;
	transition:all 0.3s;
	-ms-transition:all 0.3s;
	/* IE 9*/
	-moz-transition:all 0.3s;
	/* Firefox*/
	-webkit-transition:all 0.3s;
	/* Safari 和 Chrome*/
	-o-transition:all 0.3s;
}
.utlist li .txt {
	width:calc(100% - 14.2rem);
}
.utlist li .txt h6 {
	color:var(--cm-paragraph-color);
	padding-left:0.9rem;
	background:url(../images/qw17.png) no-repeat left center;
	background-size:0.75rem auto;
}
.utlist li .txt h3 {
	color:var(--cm-title-color);
	word-break:keep-all;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	margin:0.3rem 0;
}
.utlist li .txt p {
	color:var(--cm-paragraph-color);
	line-height: 1.6rem;
	height:3.5rem;
	overflow:hidden;
}
.utlist li .txt .btn {
	line-height:1.5625rem;
	text-align:center;
	color:var(--cm-white-color);
	background:url(../images/qw16.png) no-repeat center/100% 100%;
	width:5.35rem;
	margin:0.5rem 0;
}
.utlist li:hover .pic img {
	transform:scale(1.1);
	-ms-transform:scale(1.1);
	/* IE 9*/
	-moz-transform:scale(1.1);
	/* Firefox*/
	-webkit-transform:scale(1.1);
	/* Safari 和 Chrome*/
	-o-transform:scale(1.1);
}
.docchannel .list ul {
	display:flex;
	flex-wrap:wrap;
}
.docchannel .list {
	margin:2rem 0;
}
.docchannel .list li .pic {
	width:100%;
	aspect-ratio: 0.75;
	overflow:hidden;
}
.docchannel .list li .pic img {
	width:100%;
	height: 100%;
	display:block;
}
.docchannel .list li h3 {
	margin:0.75rem 0 0.25rem;
	text-align:center;
	color:var(--cm-title-color);
}
.docchannel .list li p {
	color:var(--cm-paragraph-color);
	text-align:center;
}
.docchannel .list li:hover h3 {
	color:var(--cm-primary-color) ;
}
.doccontent .detailed{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 1.5rem 0;
}
.doccontent .detailed .leftpic{
	width: 18rem;
	padding: 0.75rem;
	text-align: center;
	background-image: linear-gradient(var(--cm-primary-color), var(--cm-primary-color)), linear-gradient(var(--cm-primary-color), var(--cm-primary-color));  
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right bottom;
    background-size: 10rem 10rem , 10rem  10rem;  
}
.doccontent .detailed .leftpic .pic{
	width: 100%;
	aspect-ratio: 0.76;
}
.doccontent .detailed .leftpic .pic img{
	display: block;
	width: 100%;
	height: 100%;
}
.doccontent .detailed .info-section{
	width: calc(100% - 21.5rem);
}
.doccontent .detailed .info-section > div{
	margin: 1.5rem 0;
	padding-bottom: 1rem;
	border-bottom:0.05rem solid var(--cm-bg-color);
}
.doccontent .detailed .info-section .intro{
	border-bottom: 0;
}
.doccontent .detailed .info-section h1{
	font-weight: 500;
	border-left: 0.25rem solid var(--cm-brown-color);
	padding-left: 0.5rem;
	line-height: 1.5;
	margin-bottom: 0.5rem;
}
.doccontent .detailed .info-section .name span{
	display: inline-block;
	margin-left: 0.5rem;
}
.erheader {
	height:10.2rem;
	padding-top:1.5rem;
	position:relative;
	z-index:2;
}
.wuban {
	margin-top:-20.2rem; 
	width: 100%;
	aspect-ratio: 1.92;
}
.muban2 {
	margin-top:-10.625rem;
	height:23.4375rem;
	display:flex;
	justify-content:center;
	align-items:flex-end;
	padding-bottom:5.625rem;
}
.erheader .logo {
	width:35rem;
	margin:0 auto;
}
.erheader .logo img {
	width:100%;
	display:block;
}
.erheader .naver {
	margin-top:1.25rem;
}
.erheader .naver ul {
	display:flex;
	align-items:center;
	justify-content:space-between;
	margin:0 2.15rem;
}
.erheader .naver li {
	position:relative;
	width:7rem;
}
.erheader .naver li.on,.erheader .naver li:hover {
	background:url(../images/qw31.png) no-repeat left 0.4rem center/100% auto;
}
.erheader .naver li a {
	line-height:3.3rem;
	color:var(--cm-white-color);
	display:block;
	transition:all 0s;
	text-align:center;
}
.erheader .naver li a:hover,.erheader .naver li.on a {
	color:var(--cm-primary-color);
	font-weight:bold;
}
.ertit {
	position:relative;
	text-align:center;
	width: 100%;
}
.ertit h3 {
	position:relative;
	z-index:1;
}
.ertit h3 span{
	font-size: 1.9rem;
	color:var(--cm-titleh-color);
	background:url(../images/qw33.png) no-repeat right top 0.1rem;
	background-size:1.2rem auto;
	display:inline-block;
}
.ertit .btn {
	width:6.5rem;
	display:block;
	position:absolute;
	right:0;
	top:0;
	z-index:1;
}
.ertit .btn img {
	width:100%;
	display:block;
}
.ertit.on h3 span {
	color:var(--cm-white-color);
	background:url(../images/qw67.png) no-repeat right top 0.1rem;
	background-size:1.2rem auto;
}
.erpage1,.erpage2  {
	padding:5rem 0;
}
.erpage1 .ertit {
	width:16.5rem;
	text-align:left;
}
.erpage1 .txt {
	width:100%;
}
.erpage1 .txt h3 {
	font-size:1.25rem;
	line-height:1.6;
	color:var(--cm-titleh-color);
}
.erpage1 .txt p {
	line-height:2;
	color:var(--cm-titleh-color);
	margin:0.8rem 0;
}
.erpage1 .txt .btn {
	line-height:2.2rem;
	text-align:center;
	display:block;
	color:var(--cm-white-color);
	background:url(../images/qw65.png) no-repeat center/100% auto;
	width:7.8125rem;
	margin-bottom:2.5rem;
}
.erpage1 .txt img {
	width:100%;
	height:auto;
	display:block;
}
.erpage2 .wrapzj{
	position: relative;
}
.swipzhuanj {
	overflow:hidden;
	margin-top:2rem;
	padding-top: 0.5rem;
}
.utprev,.utnext {
	position:absolute;
	left:-3rem;
	top:48%;
	z-index:1;
	background:url(../images/prev.png) no-repeat center/cover;
	width:2.2rem;
	height:2.2rem;
	background-size:1.2rem auto;
	opacity:0.3;
	cursor:pointer;
}
.utnext {
	transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	/* IE 9*/
	-moz-transform:rotate(180deg);
	/* Firefox*/
	-webkit-transform:rotate(180deg);
	/* Safari 和 Chrome*/
	-o-transform:rotate(180deg);
	left:auto;
	right:-3rem;
}
.utprev:hover,.utnext:hover {
	background:url(../images/prev-1.png) no-repeat center/cover;
	background-size:1.2rem auto;
}
.swipzhuanj .pic {
	margin:0 auto;
	width:100%;
	height:15rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.swipzhuanj .pic img {
	max-width:100%;
	max-height:100%;
	display:block;
	object-fit:contain;
}
.swipzhuanj h3 {
	line-height:1.6;
	color:var(--cm-white-color);
	text-align:center;
	margin-top: 1rem;
}
.swipzhuanj p {
	line-height:1.6;
	color:var(--cm-white-color);
	opacity:0.5;
	text-align:center;
	margin:0.5rem 0 0.75rem;
}
.swipzhuanj .btn {
	line-height:1.875rem;
	text-align:center;
	display:block;
	color:var(--cm-white-color);
	background:url(../images/qw68.png) no-repeat center/100% auto;
	width:6.25rem;
	margin:0 auto;
}
.erpage3 {
	padding:3.5rem 0 4.5rem;
}
.erpage3 .list{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 30px;
	align-items: flex-start; 
}
.erpage3 .list > *{
	flex: 1;
	min-width: 0;
	box-shadow: 0 1rem 1.6rem -0.6rem rgba(0, 0, 0, 0.08), 0 0.05rem 0.1px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.erpage3 .list > *:hover {
	transform: translateY(-0.2rem);
	box-shadow: 0 1.4rem 2rem -0.8rem rgba(0, 0, 0, 0.18);
}
.erpage3 .list-l,
.erpage3 .list-c,
.erpage3 .list-r{
	padding: 1.6rem 1.8rem;
	height: auto; 
}
.erpage3 .list-l{
	background: url(/images/mlzybg1.png) no-repeat top/cover;
}
.erpage3 .list-c{
	background: url(/images/mlzybg3.png) no-repeat top/cover;
}
.erpage3 .list-r{
	background: url(/images/mlzybg2.png) no-repeat top/cover;
}
.erpage3 .list li{
	margin: 0.75rem 0;
}
.erpage3 .list li h6{
	line-height:1.8;
	color:var(--cm-brown-color);
	padding-left:0.9rem;
	background:url(../images/qw55.png) no-repeat left center;
	background-size:0.65rem auto;
	margin-top:0.25rem;
}
.erpage3 li.tit{
	width: 100%;
	display: flex;
    justify-content: space-between;
	align-items: center;
	margin-top: 0.5rem;
	margin-bottom: 1.5rem;
}
.erpage3 .ltit{
	font-size: 1.5rem;
	color: var(--cm-primary-color);
}
.erpage3 .tit .rmore{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 1.8rem;
	width: 1.8rem;
	font-size: 1.5rem;
	line-height: 1.5rem;
	background: var(--cm-primary-color);
	color: var(--cm-white-color);
}
.erpage3 .list li.pic{
	width: 100%;
	aspect-ratio: 1.92;
	overflow: hidden;
}
.erpage3 .list li.pic img{
	display: block;
	width: 100%;
	height: 100%;
}
.erfooter {
	padding:4.166666666666667rem 0 3.125rem;
}
.erfooter .logo {
	width:28.28125rem;
	margin:0 auto;
}
.erfooter .logo img {
	width:100%;
	display:block;
}
.erfooter .nav {
	margin:2.604166666666667rem 0 2.0833333333333335rem;
}
.erfooter .nav dl {
	display:flex;
	align-items:center;
	justify-content:center;
}
.erfooter .nav dd a {
	font-size:0.8333333333333334rem;
	line-height:1.6;
	color:#fff;
	display:block;
}
.erfooter .nav dd span {
	width:0.052083333333333336rem;
	height:0.7291666666666667rem;
	background:rgba(255,255,255,0.15);
	display:block;
	margin:0 3.125rem;
}
.erfooter .text {
	font-size:0.78125rem;
	line-height:2;
	color:rgba(255,255,255,0.7);
	text-align:center;
}
.erfooter .text span {
	margin:0 1.5625rem;
}
.erfooter .text a {
	color:rgba(255,255,255,0.7);
}
.erfooter .text p {
	margin-bottom:0.3125rem;
}
.muban2 {
	margin-top:-10.625rem;
	height:23.4375rem;
	display:flex;
	justify-content:center;
	align-items:flex-end;
	padding-bottom:5.625rem;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;
}
.doctors-list{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -5rem;
}
.doctors-list .doctor-card{
	margin-right: 3rem;
	margin-bottom: 3rem;
	width: calc((100% - 6rem)/3);
	overflow: hidden;
	background: var(--cm-white-color);
	border: 1px solid #f0e3cf;
	box-shadow: 0 20px 30px -12px rgba(60, 40, 20, 0.12);
    transition: all 0.35s ease;
}
.doctors-list .doctor-card:nth-child(3n){
	margin-right: 0;
}
.doctors-list .doctor-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 30px 40px -16px rgba(70, 45, 20, 0.2);
	border-color: #dfcbaa;
	background: var(--cm-primary-color);
}
.doctors-list .doctor-card a .pro-title,
.doctors-list .doctor-card a .tag,
.doctors-list .doctor-card a .doctor-bio{
	opacity: 0.8;
}
.doctors-list .doctor-card:hover a{
	color: var(--cm-white-color);
}
.doctors-list .card-top {
	display: flex;
	padding: 1rem 1rem 0.4rem 1rem;
	justify-content: space-between;
}
.doctors-list .card-top .pic{
	width: 9rem;
	aspect-ratio: 0.76;
	padding: 0 0.5rem 0.5rem 0.5rem;
	background-image: linear-gradient(var(--cm-yellow-color), var(--cm-yellow-color));  
    background-repeat: no-repeat;
    background-position:left bottom;
    background-size: 6rem 8rem;  
}
.doctors-list .card-top .pic img{
	display: block;
	width: 100%;
	height: 100%;
}
.doctors-list .card-top .top-info{
	width: calc(100% - 9.5rem);
}
.doctors-list .card-top .top-info div{
	padding-left: 0.5rem;
}
.doctors-list .card-top .top-info .specialty{
	padding-left: 0;
}
.doctors-list .card-top  .pro-title{
	margin-bottom: 0.5rem;
}
.doctors-list .card-top .name,
.doctors-list .card-top .label{
	border-left: 0.15rem solid var(--cm-yellow-color);
	margin-bottom: 0.5rem;
}
.doctors-list .doctor-bio {
	padding-top: 0.8rem;
	margin: 0.6rem 1rem 1rem 1rem;
	border-top: 1px dashed #e7dac8;
	line-height: 1.55;
	text-align: justify;
	flex: 1;
}
.doctors-list .doctor-bio .quote-icon {
	font-family: serif;
	font-size: 1.1rem;
	color: var(--cm-yellow-color);
	vertical-align: middle;
}