@charset "utf-8";
@import url('reset.css');
@import url('animate.css');
@import url('/public/plugins/font-awesome-4.7.0/css/font-awesome.min.css');

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:root {
	--common-page-width: 1380px;
	--common-font-size: 14px;
	--common-color: #666;
	--common-background-color: rgb(26,159,66);
	--common-background-hover-color: rgb(26,159,66);
	--nav-height: 90px;
	--common-p-line-height: 200%;
	--common-p-size: 18px;
	--common-p-color: rgb(51,51,51);
	--common-font-color-hover: rgb(26,159,66);
    --common-a-color:rgb(26,159,66);
    --common-font-family:"Open Sans";
}

body {
    /* font-family: "Noto Sans SC", "思源黑体", "Source Han Sans CN", sans-serif; */
    font-family: "Open Sans";
	background-color: #fff;
	overflow: hidden;
	font-size: var(--common-font-size);
	padding-top: var(--nav-height);
    color:#000;
}



a {
	background: transparent;
	text-decoration: none;
	color: var(--common-p-color)
}

a:active,
a:hover {
	outline: 0
}

a:hover {
	text-decoration: none;
	color: var(--common-background-color)
}

.textCenter {
	text-align: center;
}

.wrapper {
	max-width: var(--common-page-width);
	margin: 0 auto;
	text-align: left
}

.index .wrapper {
	width: var(--common-page-width);
}

.ov {
	overflow: hidden;
}

.ts {
	text-transform: uppercase
}

.mauto {
	margin: 0 auto
}

.pz {
	position: relative;
	z-index: 0
}

.pa {
	position: absolute;
	z-index: 0
}

.bz {
	box-sizing: border-box
}

.b {
	font-weight: bold
}

.i {
	font-style: italic
}

.hidden {
	display: none !important
}

.cb {
	clear: both
}

.tes {
	text-overflow: ellipsis;
	white-space: nowrap;
}


/*animation*/
@keyframes slideDown {
	0% {
		top: 70px;
		opacity: 0;
		transform: scale(0, 0);
	}

	to {
		top: var(--nav-height);
		opacity: 1;
		transform: scale(1, 1);
	}
}

@-webkit-keyframes slideDown {
	0% {
		top: 70px;
		opacity: 0;
		transform: scale(0, 0);
	}

	to {
		top: var(--nav-height);
		opacity: 1;
		transform: scale(1, 1);
	}
}

@keyframes headerDown {
	0% {
		transform: translateY(-70%);
	}

	to {
		transform: translateY(0);
	}
}

.img img {
	transform: scale(1);
}

a:hover .img img {
	transform: scale(1.1, 1.1);
}

.flex {
	display: flex;
	display: -webkit-flex;
}

.flexJb {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}

.flexColumn {
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
}

.flexAc {
	display: flex;
	display: -webkit-flex;
	align-items: center;
}

.flexCenter {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
}

.gap50{
    gap:50px;
}

.flexWrap {
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
}

.flexRight {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
}

.ovd {
	overflow: hidden;
}

.db {
	display: block;
}

#app {
	overflow: hidden;
}

/*header*/
header {
	width: 100%;
	background-color: #fff;
	height: 91px;
	top: 0;
	left: 0;
	z-index: 999;
	border-bottom: 1px solid rgb(210,232,197);
}

header .l {
	width: 300px;
}

header .wrapper {
	height: 90px;
}

header .logo img {
	max-width: 100%;
}

header .logo p {
	font-size: 12px;
	color: rgb(102, 102, 102);
}

header .l ul {
	margin-left: 10px;
	line-height: 130%;
}

header .l ul li:first-child {
	font-size: 14px;
	color: rgb(216, 27, 67);
	animation: bounceIn 1s;
}

header .l ul li:last-child {
	font-size: 14px;
	color: rgb(84, 84, 84);
	animation: fadeInRight 1s;
}

/*nav*/
nav {
	width: calc(100% - 300px);
	height: var(--nav-height);
}

nav.active {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	-webkit-animation: headerDown .5s 1;
	-khtml-animation: headerDown .5s 1;
	animation-direction: alternate;
	box-shadow: 0 0 5px #666;
}

nav ul {
	overflow: visible !important;
	margin: 0 auto;
	font-size: 0;
}

nav li {
	position: relative;
	z-index: 9999999;
	height: var(--nav-height);
}

nav li .a {
	display: inline-block;
	height: var(--nav-height);
	text-align: center;
	line-height: var(--nav-height);
	font-size: 20px;
	color: rgb(43, 43, 43);
	padding: 0 20px;
    text-transform: uppercase;
}


nav .active{
    border-bottom: 3px solid var(--common-a-color);
    font-weight: 600;
    color: var(--common-a-color) !important;
}



nav .dl {
	/* overflow: hidden; */
	display: none;
	position: absolute;
	z-index: 999;
	top: 80px;
	left: 0;
	width: 230px;
	text-align: center;
	-webkit-animation: slideDown 0.2s 1;
	-khtml-animation: slideDown 0.2s 1;
	animation-direction: alternate;
	padding-top: 6px;
    
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background-color: rgb(50,136,71);
    padding: 5px;
}

nav li:hover .dl {
	display: block;
}

/* nav li .dl::before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	margin-left: 50%;
	transform: translateX(-50%);
	border-bottom: 6px solid red;
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
} */

nav dt {
	/* overflow: hidden; */
	width: 100%;
	background: var(--common-background-color);
    background:rgb(50,136,71);
    position: relative;
    padding: 2px 0px;
}

nav dt a {
	overflow: hidden;
	display: block;
	width: 100%;
	text-align: left;
	padding: 5px 10px;
	line-height: 25px;
    color:white;
}



nav .dl2 {
	overflow: hidden;
	display: none;
	position: absolute;
	z-index: 999;
	top: 0px;
	left: 180px;
	width: 280px;
	text-align: center;
	animation-direction: alternate;
    
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background-color: rgb(50,136,71);
    padding: 5px;
}

nav li .dt:hover .dl2{
    display: block;
}

nav dt a:link,
nav dt a:visited {
	font-size: var(--common-font-size);
	color: white;
}

nav dt a:hover {
	text-decoration: none;
}


.language_list{
    font-size: 26px;
    width: 220px;
    color: rgb(40,163,200);
    display: flex;
}

.language_list a{
    color: rgb(40,163,200);
}

.language_list div:first-child{
    margin-right: 20px;
}
.line1{
    width: 1px;
    border-right: 2px solid;
    height: 30px;
    margin-right: 15px;
}


.page-title-area {
    position: relative;
    z-index: 1;
    

    overflow: hidden;
    background-color: #1a1a1a;
    max-height: 435px;
}

.page-title-area img{
    display: block;
            width: 100%;
            max-height: 435px;
            height: auto;
            object-fit: cover;
            transition: transform 0.3s ease;

}

.banner_overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6); /* 版透明黑色效果，0.55 半透明，可调节 */
            pointer-events: none;  /* 让覆盖层不干扰任何鼠标事件（点击图片或标题保留可用）但标题区域如果需要点击可单独控制 */
            z-index: 1;
            transition: background-color 0.2s ease;
        }



.page-title-content h1 {
    position: absolute;
            bottom: 0;
            left: 0;
            padding: 40px;
            z-index: 2;
            pointer-events: none; 
            color: white;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
            font-weight: 600;
            letter-spacing: 0.5px;
            max-width: 85%;
            font-family: 'Merienda', cursive;
}

.page-title-content{
    position: relative;
}


.page-title-content ul {
    padding-left: 0;
    list-style-type: none;
    margin-top: 10px;
    margin-bottom: 0;
}



.page-title-content ul li {
    display: inline-block;
    color: #ffffff;
    
    position: relative;
    font-weight: 600;
    font-size: 16px;
}

.page-title-content ul li:first-child {
    margin-left: 0;
}


.page-title-content ul li a {
    color: #478346;
}

.font40{
    font-size: 40px;
}

.font16{
    font-size: 16px;
}


.products{
    margin-top: 70px;
    margin-bottom: 70px;
}
.products_all{
    gap:30px;
}
.products_all li{
    flex: 0 0 auto;
    width: 31%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding: 10px;
}

.products_all .img{
    max-width: 100%;
    overflow: hidden;
}

.products_all .title{
    font-weight: 600;
    text-align: center;
    padding: 10px;
}



.products_all_item{
    gap:30px;
}
.products_all_item li{
    flex: 0 0 calc((100% - 150px) / 6);
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    /* border-radius: 20px; */
    transition: 1s;
    overflow: hidden;
}

.products_all_item .img{
    max-width: 100%;
}

.products_all_item .img img{
    max-width: 100%;
    overflow: hidden;
    max-height: 325px;
    object-fit: cover;
    border-radius: 20px;
}

.products_all_item .title{
    margin-top: 15px;
    color: #000;
    text-align: center;
    min-height: 80px;
    font-weight: 600;
    display: flex;
    align-items: center;
}


.footer .images img{
    max-width: 350px;
}

.footer .f_1{
    display: flex;
    flex-wrap: wrap;
    gap:20px;
    justify-content: space-between;
}

.footer .title{
    padding-top: 20px;
    color: rgb(51,51,51);
}


.font16{
    font-size: 16px;
}



.footer .content1{
    color: white;
    padding: 50px 0;
    min-height: 350px;
}
.footer .content2{
    color: rgb(153,153,153);
    padding: 30px 0;
    text-align: left;
}

.footer .f_nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:50px;
    margin-bottom: 20px;
}
.footer .f_nav a{
    color: white;
}

.footer .title2{
    font-weight: bold;
    color:rgb(51,51,51);
}

.footer .nav1{
    color:rgb(119,119,119);
}

.footer .line3{
    width: 20px;
    height: 4px;
    margin-right: 15px;
    background-color: rgb(26,159,66);
    border-radius: 5px;
    margin-bottom: 15px;
}

.footer .line4{
    height: 1px;
    border-bottom: 1px solid rgb(221,221,221);
    margin-top: 40px;
}

.footer .item_nav{
    max-height: 180px;
    overflow-y: auto;
}

.footer .item1{
    width: 365px;
}

.footer .item4{
    width: 390px;
}

.footer .item_nav::-webkit-scrollbar {
    width: 8px;
    
}

.footer .item_nav_one{
    padding-bottom: 6px;
}

.footer .f_2{
    display: flex;
    align-items: center;
}

.footer .item_nav::-webkit-scrollbar-track {
    background: rgb(214,230,207); 
    background-clip: padding-box;
    border: 2px solid transparent;
}

/* 滚动条滑块（可拖动的部分） */
.footer .item_nav::-webkit-scrollbar-thumb {
    background: rgb(26,159,66);
    background-clip: padding-box;
    border: 1px solid transparent;
    height: 10px; 
}


.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.overlay.show {
  display: block;
}

.language_list1{
    padding: 20px;
}

/*footer*/
footer {
	background-color: rgb(244,255,239);
	padding-top: 80px;
}

footer .l {
	width: 50%;
	line-height: 220%;
	font-size: 14px;
	color: #fff;
}

footer .l a {
	color: #fff;
	display: inline-block;
	margin-right: 10px;
}

footer .l a:hover {
	text-decoration: underline;
}

footer .r {
	width: 48%;
}

footer .r .ecode {
	width: 100px;
	margin-right: 20px;
}

footer .r .ecode img {
	max-width: 100%;
}

footer .r .ecode p {
	color: #fff;
	font-size: 14px;
}

footer .r hr {
	display: block;
	width: 1px;
	height: 90px;
	background-color: #fff;
	border: 0;
	margin: 20px 20px 0 10px;
}

footer .r .contact {
	width: 240px;
	margin-left: 10px;
	line-height: 180%;
	font-size: 14px;
	color: #fff;
}

.news{
    padding-top: 10px;
}

.news_all_item li{
    margin-bottom: 30px;
    background-color: white;
    border-radius: 30px;
    overflow: hidden;
}

.gap30{
    gap:30px;
}

.news_all_item .img{
    width: 30%;
    border-radius: 30px;
}

.news_all_item .img img{
    max-width: 100%;
    max-height: 100%;
    border-radius: 30px;
    margin: auto;
}

.news_all_item .content{
    width: 64%;
}

.news_all_item .title{
    margin-top: 30px;
    font-weight: bold;
}

.news_all_item .content1{
    margin-top: 30px;
    margin-bottom: 30px;
}

/*swiper*/
.headerSwiper {
	z-index: 1;
}

.headerSwiper img {
	width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
	/* background-color: rgba(0, 0, 0, .2); */
	padding: 46px;
	color: #fff !important;
    border-radius: 50px;
    overflow: hidden;
    
}

.swiper-button-next {
    background: url(/template/pc/skin/images/right.png) no-repeat;
    right: 70px;
}

.swiper-button-prev {
    background: url(/template/pc/skin/images/left.png) no-repeat;
    left: 70px;
}

.swiper-button-prev:after, .swiper-button-next:after{
    content:"";
    
}

.swiper-pagination-bullet-active {
	background-color: var(--common-font-color) !important;
}

.headerSwiper .swiper-pagination-bullet {
	background-color: #fff;
	opacity: 1;
}

.headerSwiper .swiper-pagination-bullet-active {
	background-color: var(--common-background-color) !important;
}

.headerSwiper .swiper-slide article {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.headerSwiper .swiper-slide h2 {
	font-size: 48px;
	color: #fff;
	line-height: 180%;
}

.headerSwiper .swiper-slide p {
	font-size: 36px;
	color: #fff;
	line-height: 180%;
}


/*index*/
.indexTop {
	width: 100%;
	height: 35px;
	border-bottom: 2px solid var(--common-background-color);
}

.indexTop p {
	padding: 0 12px;
	line-height: 33px;
	background-color: var(--common-background-color);
	color: #fff;
	font-size: 16px;
}

.indexTop a {
	color: var(--common-background-color);
}

.indexTop a:hover {
	color: #1e929f;
}

.indexTabs {
	width: 100%;
	height: 35px;
	border-bottom: 2px solid var(--common-background-color);
}

.indexTabs li {
	padding: 0 11px;
	line-height: 33px;
	font-size: 16px;
	color: #000;
	cursor: pointer;
}

.indexTabs li.active {
	background-color: var(--common-background-color);
	color: #fff;
}

.indexTypename {
	width: 100%;
	height: 35px;
}

.indexTypename p {
	font-size: 29px;
	color: #1c3995;
}

.indexTypename a {
	font-size: 20px;
	color: #4a4a4a;
}

.indexTypename a:hover {
	color: var(--common-font-color-hover);
}

.index1 {
	z-index: 0;
}

.index1 .l {
	width: 1023px;
	height: 435px;
	padding: 12px;
	background-color: #fff;
}

.index1 .l .headlinesSwiper {
	width: 542px;
	flex-grow: 0;
	flex-shrink: 0;
	margin: 0;
}

.index1 .l .headlinesSwiper img {
	width: 100%;
}

.index1 .l .headlinesSwiper .swiper-pagination {
	bottom: 16px;
	left: inherit;
	right: 13px;
	text-align: right;
	line-height: 12px;
}

.index1 .l .headlinesSwiper .swiper-pagination-bullet {
	background-color: #fff;
	opacity: 1;
	width: 12px;
	height: 12px;
	margin: 0 3px !important;
}

.index1 .l .headlinesSwiper .swiper-pagination-bullet-active {
	background-color: var(--common-background-color) !important;
}

.index1 .l .headlinesSwiper .title {
	bottom: 7px;
	left: 0;
	width: 100%;
	height: 35px;
	line-height: 35px;
	font-size: 19px;
	color: #fff;
	padding: 0 13px;
}

.index1 .r {
	width: 436px;
	background-color: #fff;
	height: 435px;
	padding: 12px;
}

.index1 .list {
	width: 386px;
	margin-right: 27px;
}

.index1 .list ul {
	margin-top: 19px;
}

.index1 .list li {
	width: 100%;
	height: 50px;
}

.index1 .list li a {
	width: 100%;
	height: 50px;
	font-size: 18px;
}

.index1 .l .list li a::before {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	background-color: #4a4a4a;
	border-radius: 2px;
	margin-right: 7px;
}

.index1 .r .list li a i {
	margin-right: 5px;
}

.index1 .list li a:hover::before {
	background-color: var(--common-font-color-hover);
}

.index2 {
	margin-top: 44px;
}

.index2 .l {
	background-color: #fff;
	padding: 18px 12px;
	width: 987px;
	height: 383px;
}

.index2 .l .list {
	width: 450px;
}

.index2 .l .list ul {
	margin-top: 16px;
}

.index2 .list ul li a {
	width: 100%;
	height: 61px;
	border-top: 4px solid #ebe8e3;
	font-size: 18px;
}

.index2 .r {
	width: 474px;
	height: 383px;
	background-color: #fff;
	padding: 18px 12px;
}

.index2 .r .list ul {
	margin-top: 16px;
}

.index3 {
	margin-top: 46px;
	height: 611px;
	background-color: #fff;
	padding: 19px 16px;
}

.index3 .enname {
	font-size: 29px;
	color: #1c3995;
	margin-left: 23px;
}

.index3 .name {
	margin-left: 37px;
	font-size: 29px;
	color: #1c3995;
}

.index3 .tabs {
	margin: 0 15px;
	margin-top: 13px;
	border-bottom: 2px solid #e9e6e2;
}

.index3 .tabs li {
	margin-right: 39px;
	font-size: 25px;
	color: #444;
	font-weight: bold;
	cursor: pointer;
	border-bottom: 2px solid transparent;
}

.index3 .tabs li.active {
	color: #0f6ec2;
	border-bottom: 2px solid #314c9f;
}

.index3 .tabs a {
	font-size: 18px;
}

.index3 .c {
	margin: 15px;
}

.index3 .l {
	width: 760px;
	margin-top: 29px;
}

.index3 .l li {
	margin-bottom: 35px;
}

.index3 .l li:last-child {
	margin-bottom: 0;
}

.index3 .l li .num {
	padding-top: 16px;
	height: 104px;
	width: 85px;
	border-right: 4px solid #444;
	font-size: 56px;
	color: #444;
}

.index3 .l li article {
	margin: 7px 0 0 15px;
	width: 658px;
}

.index3 .l li article .title {
	height: 32px;
	line-height: 32px;
	font-size: 20px;
	color: #4a4a4a;
}

.index3 .l li article .addtime {
	line-height: 27px;
	font-size: 18px;
	color: #8a8989;
}

.index3 .l li article .desAndDetails {
	margin-top: 5px;
	width: 100%;
	height: 30px;
	border-bottom: 4px solid #ebe8e3;
	font-size: 17px;
	color: #626161;
}

.index3 .l li:hover * {
	color: var(--common-background-color) !important;
}

.index3 .swiper {
	margin: 20px 0 0;
}

.index3 .swiper,
.index3 .swiper img {
	width: 628px;
	height: 393px;
}

.index3 .swiper .swiper-slide a .title {
	bottom: 0;
	width: 100%;
	left: 0;
	opacity: 0;
	background: rgba(0, 0, 0, .5);
	line-height: 27px;
}

.index3 .swiper .swiper-slide a:hover .title {
	opacity: 1;
	font-size: 14px;
	color: #fff;
}

.index3 .swiper .swiper-next,
.index3 .swiper .swiper-prev {
	width: 37px;
	height: 27px;
	background-color: #4b4a4a;
	position: absolute;
	z-index: 999;
	font-size: 18px;
	color: #fff;
}

.index3 .swiper .swiper-prev {
	left: 0;
	bottom: 0;
}

.index3 .swiper .swiper-next {
	right: 0;
	bottom: 0;
}

.index4 {
	margin-top: 72px;
}

.index4 .top {
	padding: 0 15px;
}

.index4 .enname {
	font-size: 29px;
	color: #1c3995;
	margin-left: 23px;
}

.index4 .name {
	margin-left: 37px;
	font-size: 29px;
	color: #1c3995;
}

.index4 .c {
	margin-top: 35px;
}

.index4 .swiper-slide img {
	width: 100%;
}

.index4 .swiper-slide .title {
	line-height: 58px;
	padding: 5px;
	background-color: #fff;
	font-size: 20px;
}

.index4 .swiper-button-next::after,
.index4 .swiper-button-prev::after {
	color: #fff;
}

.index5 {
	background-color: #fff;
	margin-top: 75px;
	padding: 28px 0;
}

.index5 .title {
	line-height: 60px;
	font-size: 22px;
}

/*other*/
.banner {
	width: 100%;
}

.banner img {
	display: block;
	max-width: 100%;
	margin: 0 auto
}

/*sidebar*/
.sidebar {
	background-color: #ededed;
}

.sidebar .wrapper {
	line-height: 60px;
}

.sidebar li a {
	line-height: 60px;
	margin-right: 58px;
}

.sidebar li a.active {
	color: var(--common-background-color);
}

.c1{
    
    background-color: rgb(244,255,238);
    padding: 80px 0;
}

.c1 .c1_1{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:20px
}

.c1 .c1_1 .c1_item{
    position: relative;
    width: calc(25% - 30px);;
    
}

.c1 .c1_1 .c1_item img{
    max-width: 100%;
}
.font24{
    font-size: 22px;
}
.font22{
    font-size: 20px;
}
.font26{
    font-size: 24px;
}
.font28{
    font-size: 26px;
}
.font48{
    font-size: 40px;
}
.font60{
    font-size: 50px;
}

.c1 .c1_1 .title{
    font-weight: 600;
    color:rgb(51,51,51);
    position: absolute;
    bottom: 20px;
    right: 25px;
}



.c2{
    padding: 80px 0;
    background: url('/template/pc/skin/images/index_1.png') no-repeat center top;

}

.c2 .c2_1{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:20px
}

.c2 .title{
    text-align: center;
    color: rgb(51,51,51);
    font-weight: 600;
}

.c2 .c2_2{    
    position: relative;
}

.c2 .c2_item{
    margin-top: 20px;
    padding: 10px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),  /* 顶部：深色高透明度 */
        rgba(255, 255, 255, 0.5),  /* 中间：半透明 */
        rgba(255, 255, 255, 0.8),  /* 过渡：白色带透明度 */
        rgba(255, 255, 255, 1)  /* 底部：纯白色 */
    );
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    border: 1px solid white;
    width: calc(25% - 20px);
}

.c2 .c2_item img{
    max-width: 100%;
    border-radius: 20px;
}

.c2 .c2_a{
    position: absolute;
    background: url(/template/pc/skin/images/a.png) no-repeat;
    width: 42px;
    height: 43px;
    bottom: 10px;
    right: 10px;
}

.c2 .title1 {
    text-align: center;
    color: rgb(51, 51, 51);
    font-weight: 600;
    padding: 15px;
    display: flex;
    align-items: center;
    height: 100px;
    justify-content: center;
}

.c2_top80{
    margin-top: 80px;
}


.font50{
    font-size: 40px;
}

.learmore{
    background: url(/template/pc/skin/images/learmore.png) no-repeat;
    width: 240px;
    height: 70px;
    padding: 18px 40px;
    font-weight: 600;
}


.c3{
    padding-top: 75px;
    padding-bottom: 40px;

    background: linear-gradient(
        to bottom,
        rgba(244,255,238, 1),  /* 顶部：深色高透明度 */
        rgba(246,255,240, 1),  /* 中间：半透明 */
        rgba(248,255,244, 1),  /* 过渡：白色带透明度 */
        rgba(253,255,252, 1)  /* 底部：纯白色 */
    );
}

.c3 .title{
    text-align: center;
    font-weight: 500;
}

.c3 .content{
    line-height: 40px;
    color:rgb(102,102,102);
}

.c3 .content strong{
    color:rgb(51,51,51);
}

.top50{
    margin-top: 30px;
}

.c3 .c3_1{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:28px
}

.font20{
    font-size: 20px;
}

.c3 .flex1{
    flex:1;
}

.c3 .video{
    position: relative;
    height: 100%;
    max-height: 440px;
    overflow: hidden;
    border-radius: 25px;
}

.play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255,255,255, 0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .play-button:hover {
            background: rgba(0, 0, 0, 0.9);
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .play-button::before {
            content: '';
            display: block;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 20px 0 20px 35px;
            border-color: transparent transparent transparent white;
            margin-left: 5px;
        }
        
        .play-button.hide {
            display: none;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            transition: opacity 0.3s;
        }
        
        .video-overlay.hide {
            opacity: 0;
            pointer-events: none;
        }


.c6 .title{
    font-weight: 600;

}

.c6 .c6_1{
    margin: auto;
    margin-top: 30px;
    text-align: center;
}

.c6 .c6_1 img{
    max-width: 100%;
}

.c7{
    background: linear-gradient(
        to bottom,
        rgba(244,255,238, 1),  /* 顶部：深色高透明度 */
        rgba(246,255,242, 1),  /* 中间：半透明 */
        rgba(251,255,248, 1),  /* 过渡：白色带透明度 */
        rgba(255,255,255, 1)  /* 底部：纯白色 */
    );
    padding-top: 80px;
    padding-bottom: 80px;
}

.c7 .c7_1{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
}

.c7 .c7_1_1{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 80px;
}

.c7 .c7_item{
    flex:1;
}

.c7 .c7_2 img{
    border-radius: 15px;
    max-height: 200px;
    max-width: 400px;
}

.c7 .title1{
    font-weight: 600;
    margin-top: 30px;
    color:rgb(51,51,51);
}

.c7 .content{
    color:rgb(153,153,153);
    margin-top: 15px;
}

.font100{
    font-size: 60px;
    line-height: 60px;
}

.c7 .date1{
    font-style: italic;
}

.c7 .date2{
    font-style: italic;
}

.c7 .title{
    text-align: center;
    color: rgb(51, 51, 51);
    font-weight: 600;
}

.c7 .c7_3{
    border: 1px solid rgb(188,190,188);
    border-radius: 20px;
    position: relative;
    margin-bottom: 20px;
}

.c7 .c7_3_a{
    position: absolute;
    top: 12px;
    right: 20px;
}

.c7 .title2{
    padding: 15px 20px;
}

.c4{
    padding: 60px 0;
    background: url(/template/pc/skin/images/c4.png) no-repeat center top;
}


.font44{
    font-size: 44px;
    line-height: 60px;
}

.c4 .title{
    font-weight: 600;
    text-align: center;
    padding-top: 20px;
    color:white;
}

.c4 .c4_1{
    border: 1px solid white;
    border-radius: 20px;
    margin-top: 40px;
    background-color: rgba(0, 0, 0, .2);
    padding: 50px 40px;
    color: white;
}

.c4_2{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:15px;
}

.c4 .item_one{
    flex:1;
}

.c4 .input1{
    padding: 17px;
    width: 100%;
    border-radius: 15px;
    border: 0;
    color: rgb(153,153,153);
}

.c4 .input2{
    padding: 10px 17px;
    width: 100%;
    border-radius: 15px;
    border: 0;
    margin-top: 15px;
    color: rgb(153,153,153);
    min-height: 100px;
}

.c4_3{
    width: 100%;
    text-align: center;
}

.c4 .input3{
    padding: 15px 100px;
    border-radius: 30px;
    border: 0;
    margin: auto;
    margin-top: 15px;
    color: white;
    background-color: rgb(163,196,33);
    text-transform: uppercase;
    font-weight: bold;
}


.font30{
    font-size: 30px;
}
.c_buttom{
    text-align: center;
    margin-top: 60px;
}

.c_buttom span{
    background-color: rgb(76,181,211);
    padding: 10px 50px;
    border-radius: 20px;
    border: 1px solid #999;
}


.c5{
    padding: 60px 0;
}

.c5 .title{
    font-weight: 600;
    text-align: center;
    padding-top: 20px;
    margin-bottom: 20px;
}

.c5 .title .span1{
    border-bottom: 4px solid rgb(29,41,87);
}

.c5 .c5_1{
    display: flex;
    flex-wrap: wrap;
    gap:50px;
    justify-content: center;
}

.font18{
    font-size: 18px;
}
.c5 .c5_2{
    display: flex;
    flex-wrap: wrap;
    gap:20px;
    flex: 1;
    justify-content: left;
    margin-top: 20px;
}

.c5 .item_one .image{
    text-align: center;
    margin: 30px auto;
    overflow: hidden;
}

.c5 .item_one .image img{
    max-width: 100%;
}

.c5 .title1{
    width: 80%;
    text-align: left;
    padding-top: 20px;
    margin: 20px auto;
}

.c5 .item_one{
    flex: 0 0 calc(33% - 10px);
}

.a1{
    margin-top: 50px;
    margin-bottom: 50px;
}

.a1 img{
    max-width: 100%;
}

.a1 .content1{
    color:#545454;
}


.a1_all_item{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 20px;
}

.a1_item{
    border-right: 1px solid #ccc;
    text-align: center;
    padding: 10px 20px;
    width: 25%;
}

.a1_item .img img{
    max-width: 92px;
    max-height: 92px;
}

.a1_item:last-child{
    border-right: 0px;
}

.a2_item{
    display: flex;
    gap:30px;
    margin: 20px auto;
    align-items: center;
}

.a2_item .img img{
    max-width: 365px;
}

.a2_item .title{
    color:#328847;
    font-weight: bold;
}



.a2_item:nth-child(odd) .img {
        order: 2;
}
    
.a2_item:nth-child(odd) .content {
        order: 1;
}


.onlyimg_all{
    display: flex;
    flex-wrap: wrap;
    gap:30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.onlyimg_all .item_one{
    width: calc(33.3% - 30px);;
}

.onlyimg_all .item_one video{
    max-width: 100%;
}

.a3{
    padding: 40px 0;
}

.a3 .img1{
    display: flex;
    justify-content: space-between;
    gap:10px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.a3 .img1 .item_one{
    flex: 0 0 calc(50% - 10px);
}

.a3 .item_one img{
    max-width: 100%;
}

.a4{
    margin-bottom: 100px;
}

.bg1{
    background: url('/template/pc/skin/images/3_04.png') no-repeat;
    min-height: 600px;
}

.a5{
    background: linear-gradient(to bottom, rgb(244, 255, 239), white);
    padding: 60px 0;
}

.a5_1{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.a5_2{
    flex: 1;
}

.a5_3{
    flex:1.5;
}

.font45{
    font-size: 45px;
}
.a5 .title{
    padding-top: 60px;
    text-align: center;
    color: #545454;
}

.a5_2 .title1{
    font-weight: 600;
    margin-bottom: 30px;
}

.a5_2 .title2{
    color: #545454;
    margin-bottom: 40px;
}

.a5_2 span{
    padding-left: 10px;
    font-size: 16px;
    margin-bottom: 20px;
}

.a5 .form1{
    width: 96%;
    margin: 40px auto;
    margin-top: 120px;
}

.a5 .item{
    display: flex;
    flex-wrap: wrap;
    gap:20px;
}

.a5 .item_one{
    flex: 0 0 calc(50% - 10px);
}

.a5 .item_one1{
    flex: 0 0 calc(100%);
}

.a5 .title1{
    padding-left: 10px;
    color: #545454;
}

.a5 .input1{
    width: 100%;
    padding: 10px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;

}

.a5 .input2{
    width: 100%;
    padding: 10px;
    background-color: white;
    border: 1px solid #ddd;
    min-height: 200px;
    border-radius: 5px;
}

.a5 .item2{
    margin-top: 20px;
}

.a5 .item3{
    text-align: left;
}

.a5 .input3{
    padding: 8px 100px;
    background: linear-gradient(to bottom, rgb(26, 159, 66), rgb(158, 196, 33));
    border: 0;
    color:white;
    border-radius: 10px;
    margin: 30px auto;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--common-font-family);
}

.a6{
    display: flex;
    flex-wrap: wrap;
    gap:30px;
    margin-top: 50px;
}

.a6_item{
    border: 1px solid var(--common-a-color);
    padding: 20px;
    border-radius: 20px;
    width: 30%;
    box-shadow: 
                -5px -5px 12px rgba(255,255,255,0.8),   /* 左上高光 */
                5px 5px 12px rgba(0,0,0,0.1),           /* 右下深阴影 */
                inset 1px 1px 0px rgba(255,255,255,0.9),
                inset -1px -1px 0px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.08);
            transition: 0.2s;
}

.a6_item img{
    max-width: 100%;
    margin-bottom: 20px;
}

.a6_item p{
    margin-bottom: 5px;
}

.tp{
    margin-top: 40px;
}

.tp_all_item{
    gap:30px;
}

.tp_all_item li{
    width: 23%;
    min-width: 297px;
}

.tp_all_item li .img{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.tp_all_item .title{
    text-align: center;
}



.a7{
    background: linear-gradient(to bottom, rgb(244, 255, 239), white);
    padding-top: 60px;
}

.a7 hr{
    border: 0px;
    border-bottom: 1px solid rgb(221,221,221);
}

.a7 .item_all{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.a7 .item_all .item_one{
    flex:1;
}

.a7 li::marker {
  color: rgb(26,159,66); 
  font-size: 22px; 
  font-weight: bold;
}

.a7 .title1{
    font-size: 40px;
}

.a7 .title3{
    font-size: 24px;
    font-weight: 600;
    line-height: 40px;
}

.a7 .eleitem1{
    flex-direction: row-reverse;
}


.a7 .item_all2{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.a7 .item_all2 .item_one2{
    flex:1;
}

.a7 .title2{
    color:rgb(26,159,66);
}

.a7 ol li{
    border: 1px solid rgb(200,225,109);
    background-color: rgb(250,255,235);
    margin-bottom: 16px;
    margin-top: 16px;
    padding: 6px 30px;
    border-radius: 20px;
}

.cantact_banner{
    /* padding-bottom: 45px;
    text-align: center; */
}

.right_side{
    position: fixed;
    right:0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
}

.right_side .item_one{
    background-color: rgb(57,153,81);
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    text-align: center;
    justify-items: center;
    align-items: center;
    margin-bottom: 2px;
}

.right_side .item_one a{
    margin: auto;
    color: white;
    white-space: nowrap;
}

.right_side .item_one i{
    font-size: 24px;
    margin: auto;
    color: white;
}


.right_side .item_one2{
    background-color: rgb(57,153,81);
    cursor: pointer;
    text-align: center;
    display: none;
    position: absolute;
    right: 60px;
    height: 60px;

    cursor: pointer;
    text-align: center;
    justify-items: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    flex-wrap: nowrap;
}


.right_side .item_one:hover .item_one2{
    display: flex;
}

.Inquire{
    margin-top: 30px;
    text-align: center;
}

.Inquire a{
    border: 1px solid rgb(50,136,71);
    border-radius: 15px;
    padding: 10px 100px;
    color:rgb(50,136,71);
    margin: auto;
}

.Inquire a:hover{
    background-color:rgb(50,136,71);
    color:white;
}


.searchdiv{
    max-width: 650px;
    text-align: center;
    margin: auto;
    margin-top: 30px;
}

.searchdiv .title{
    font-weight: 600;
    color: #000;
}

.searchdiv .input-group{
    width: 100%;
    position: relative;
}

.searchdiv .input-group-append{
    position: absolute;
    right: -7px;
    top: 6px;
}

.searchdiv .searchinput{
    width: 100%;
    padding: 12px;
    border: 2px solid #478346;
}

.searchdiv .searchbutton{
    border: 0;
    background-color: rgba(0,0,0,0);
}

.product_top .img img{
    max-width: 400px;
}

.latin{
    font-style: italic;
}

/*main*/
main {
	padding: 45px 0 0;
}

main aside {}

main aside h2 {
	font-size: 20px;
	color: rgb(216, 27, 67);
}

main aside h1 {
	font-size: 40px;
	color: rgb(102, 102, 102);
	line-height: 1.5;
	font-weight: 400;
}

main aside p {
	font-size: 16px;
	color: rgb(136, 136, 136);
	line-height: 60px;
}

main aside ul {
	margin-top: 30px;
}

main aside li {
	display: inline-block;
	line-height: 36px;
	padding: 0 33px;
	border: 1px solid #ccc;
	border-radius: 18px;
	font-size: 16px;
	color: rgb(102, 102, 102);
	margin-right: 24px;
}

main aside li.nopadding {
	padding: 0;
}

main aside li:last-child {
	margin-right: 0;
}

main aside li.active {
	background-color: var(--common-background-hover-color);
	color: #fff;
	border-color: #fff;
}

main aside li a {
	display: inline-block;
	line-height: 36px;
	padding: 0 33px;
	border-radius: 18px;
	font-size: 16px;
	color: rgb(102, 102, 102);
}

main aside li.active a {
	color: #fff;
}

.detail {
	background-color: #fff;
	padding: 35px 50px;
}

.introduction {
	padding: 24px 13px;
	text-align: justify;
	line-height: var(--common-p-line-height);
	font-size: var(--common-p-size);
	color: var(--common-p-color);
}

.introduction.nmt {
	margin-top: 0
}

.introduction div,
.introduction p {
	font-size: var(--common-p-size);
	color: var(--common-p-color);
}

.introduction img {
	max-width: 100%
}

.articleImg {
	width: 100%;
	margin: 0 0 0 0;
	text-align: center
}

.articleImg img {
	display: block;
	max-width: 100%;
	margin: 0 auto
}

.articleImg2 {
	width: 100%;
	margin: 0 0 22px 0;
	text-align: center
}

.articleImg2 img {
	display: block;
	max-width: 100%;
	margin: 0 auto
}

.articleBody {
	width: 400px;
	margin: 20px 0
}

.articleTitle {
	overflow: hidden;
	width: 100%;
	text-align: center;
	line-height: 32px;
	font-size: 24px;
	color: var(--common-p-color);
	margin-bottom: 8px;
}

.articleTitle2 {
	overflow: hidden;
	width: 100%;
	text-align: center;
	line-height: 32px;
	font-size: var(--common-font-size);
	color: var(--common-background-color);
	font-weight: bold;
	margin-bottom: 8px;
}

.articlePhoto {
	margin-top: 18px;
	margin-bottom: 16px;
}

.articleTime {
	width: 100%;
	margin-top: 8px;
	margin-bottom: 15px;
	text-align: center;
	line-height: 21px;
	font-size: 18px;
	color: #636666;
	padding-bottom: 22px;
	border-bottom: 1px solid #ddd;
}

.articleDes {
	text-align: center;
	line-height: 28px;
	font-size: 14px;
	color: #42403f
}

.articlePages {
	margin-top: 20px;
	padding-top: 10px;
	border-top: 1px dashed #969797
}

.articlePages div {
	width: 50%;
	font-size: 16px;
	color: #666
}

.askNow a {
	width: 165px;
	height: 35px;
	background: #ea6000;
	margin: 10px auto;
	line-height: 35px;
	font-size: 14px;
	color: #fff
}

.askNow a:hover {
	background: linear-gradient(to bottom, #f78e45, #ea6000)
}

/*预约专家*/
.orderMaster img {
	border: 2px solid #af7f47;
	border-radius: 3px;
}

.orderMaster p.title {
	line-height: 60px;
	font-size: 20px;
	color: var(--common-font-color2);
}

/*联系我们*/
.contactTel {
	padding-left: 52px;
	background: url(../images/icon/contactPhone.png) no-repeat 0 5px;
	margin-bottom: 13px;
}

.contactTel .title {
	line-height: 24px;
	font-size: var(--common-font-size);
	color: #000;
}

.contactTel .number {
	line-height: 23px;
	font-size: 20px;
	color: #666;
}

.contactus {
	margin-top: 6px;
	line-height: 30px;
}

.contactus img {
	margin-bottom: 10px;
}

.contactus p {
	font-size: 15px !important;
	color: #5e3a10 !important;
}

.contactus b {
	font-size: 18px !important;
}

/*科室*/
.kslist {
	margin-top: 15px;
}

.kslist li {
	margin-bottom: 52px;
}

.kslist li:last-child {
	margin-bottom: 0;
}

.kslist li .img,
.kslist li img {
	width: 315px;
}

.kslist li img {
	padding: 4px;
	border: 1px solid #c4c4c4;
}

.kslist li .texts {
	width: 646px;
	width: calc(100% - 354px);
}

.kslist li .texts .tname {
	line-height: 32px;
	padding-bottom: 20px;
	border-bottom: 1px solid #c7c7c7;
	font-size: 22px;
	color: #212121;
}

.kslist li .texts .list {
	margin-top: 29px;
}

.kslist li .texts .list li {
	margin: 0 37px 30px 0;
}

.kslist li .texts .list a {
	display: -webkit-inline-flex;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 14px;
	height: 37px;
	border: 1px solid var(--common-background-color);
	font-size: 18px;
	color: #000;
}

.kslist li .texts .list a:hover {
	background-color: var(--common-background-color);
	color: #fff;
}

/*新闻列表*/

/*图片文字列表*/


.news-detail h1 {
	font-weight: bold;
	color: rgb(51, 51, 51);
	border-bottom: 1px solid rgb(240, 239, 239);
	line-height: 80px;
	margin-bottom: 40px;
    text-align: center;
}

.news-detail .intro{

}

.news-detail .intro ul, .news-detail .intro ol{
    margin-left: 30px;
}

.news-detail .intro a{
    color:var(--common-a-color);
}


/*图片列表*/

.image-list li {
	width: calc((100% - 60px) / 4);
	background-color: #fff;
	margin-right: 20px;
	margin-bottom: 40px;
	border-radius: 5px;
	visibility: hidden;
}

.image-list li:nth-child(4n) {
	margin-right: 0;
}

.image-list li .img,
.image-list li img {
	width: 100%;
	border-radius: 5px 5px 0 0;
}


/*团队列表*/
.teamlist {
	margin: 17px 10px;
	margin-top: 35px;
	background-color: #fff;
	padding: 56px 62px;
}

.teamlist li {
	width: 200px;
	width: calc((100% - 44px * 3) / 4);
	margin: 0 44px 44px 0;
}

.teamlist li:nth-child(4n) {
	margin-right: 0;
}

.teamlist li a {
	box-shadow: 0 0 5px #ccc;
}

.teamlist li .img,
.teamlist li img {
	width: 100%;
}

.teamlist li article {
	padding: 25px 12px;
}

.teamlist li .title {
	line-height: 40px;
	font-size: 16px;
	color: #000;
}

.teamlist li .des {
	line-height: 150%;
	font-size: 14px;
	color: #676868;
}

.teamDetail {
	margin: 4px 7px;
}

.teamDetail .teamlist {
	width: 172px;
}

.teamDetail .teamlist li {
	width: 100%;
	margin-right: 0;
}

.teamDetail .texts {
	flex: 1;
	margin-left: 96px;
}

.teamDetail .texts .ry {
	line-height: 30px;
	font-size: 15px;
	color: var(--common-background-color);
	margin-top: 10px;
}

.openHtml {
	overflow: hidden;
	width: 798px;
	height: 533px;
	background-color: #fff
}

.openHtml .h1 {
	position: relative;
	z-index: 0;
	width: 100%;
	height: 46px;
	border-bottom: 1px solid #eee;
	line-height: 46px;
	text-indent: 25px;
	font-size: 14px;
	font-family: "Microsoft YaHei";
	color: #333
}

.openHtml .close {
	position: absolute;
	z-index: 999;
	top: 14px;
	right: 17px;
	display: block;
	width: 13px;
	height: 11px;
	background: url(../images/close.gif) no-repeat
}

.openHtml .htmlContent {
	overflow: scroll;
	overflow-x: hidden;
	overflow-y: auto;
	width: 753px;
	height: 420px;
	padding: 10px 0 0 25px;
	padding-right: 10px;
	border-bottom: 1px solid #ddd;
	line-height: 28px;
	font-size: 14px;
	font-family: "Microsoft YaHei";
	color: #333
}

.openHtml .closeBlock {
	position: relative;
	z-index: 0;
	width: 100%;
	height: 54px;
	margin-top: 1px;
	background-color: #f5f5f5
}

.openHtml .close2 {
	position: absolute;
	z-index: 999;
	top: 13px;
	left: 15px;
	display: block;
	width: 82px;
	height: 30px;
	background: #2384ef;
	background: linear-gradient(to bottom, #0080eb, #0565b2);
	text-align: center;
	line-height: 30px;
	font-size: 14px;
	font-family: "Microsoft YaHei";
	color: #fff
}

.floatMenu {
	position: fixed;
	z-index: 99999;
	width: 226px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(to bottom, #0bafff, #0bafff);
	padding: 0 11px 9px 11px;
	border-radius: 10px;
}

.floatMenu .ask {
	width: 100%;
	height: 99px;
	background: url(../images/service.png) no-repeat;
	margin-top: -29px;
}

.floatMenu ul {}

.floatMenu ul li {
	width: 100%;
	margin-bottom: 3px;
}

.floatMenu ul li a {
	width: 100%;
	height: 46px;
	background-color: #fff;
	font-size: 18px;
	color: #000;
	cursor: pointer;
}

.floatMenu ul li a:hover {
	background-color: var(--common-background-color);
	color: #fff;
}

/*分页*/
.pages {
	padding: 20px 0 15px 0;
	text-align: right;
    margin-top: 30px;
}

.pages li {
	display: inline;
}

.pages li.active a {
	background-color: rgb(26,159,66);
    color:white;
}


.pages a,
.pages em {
	display: inline-block;
	height: 28px;
	margin-right: 5px;
	padding: 0 8px;
	border: 1px solid #fff;
	line-height: 28px;
	font-size: 14px;
	color: #fff;
    border: 1px solid #999;
    color:#666;
}

.pages span {
	display: inline-block;
	height: 28px;
	margin-right: 5px;
	padding: 0 8px;
	line-height: 28px;
	font-size: 14px;
	color: #fff
}

.pages span.disabled {
	background: var(--common-color);
	color: #fff
}

.pages em {
	background: var(--common-color);
	color: #fff;
	font-style: normal;
}

/*在线留言*/
.guestbook {
	margin-top: 40px;
}

.guestbook h2 {
	height: 32px;
	font-size: 20px;
	color: #000;
}

.guestbook ul {
	margin-top: 14px;
}

.guestbook li {
	margin-bottom: 14px;
}

.guestbook .title {
	width: 104px;
	margin-left: 180px;
	height: 26px;
	font-size: 15px;
	color: #696969;
}

.guestbook .wbk {
	box-sizing: border-box;
	width: 317px;
	height: 26px;
	background: #fff;
	border: 1px solid #b5b5b5;
	border-radius: 2px;
	padding: 0 5px;
	font-size: 15px;
	color: #333;
}

.guestbook .wby {
	box-sizing: border-box;
	width: 316px;
	height: 189px;
	border: 1px solid #b5b5b5;
	border-radius: 2px;
	padding: 5px;
	font-size: 15px;
	color: #333;
}

.guestbook .wbk:focus {
	border-color: #04654d;
}

.guestbook button {
	box-sizing: border-box;
	width: 72px;
	height: 26px;
	text-align: center;
	line-height: 26px;
	background: var(--common-background-color);
	border: 0;
	cursor: pointer;
	font-size: 14px;
	color: #fff;
	font-family: 微软雅黑;
	margin-left: 400px;
	border-radius: 4px
}

/*home*/
.home {
	width: 100vw;
	height: 100vh;
	background: url(../images/bg/home.jpg?1.1) no-repeat;
	background-size: 100% 100%;
}

.home .logo {
	height: 44vh;
	animation: fadeInUp 1s;
}

.home .logo img {
	height: 100%;
}

.home .font {
	height: 6.49vh;
	animation: fadeInUp 1s;
}

.home .font img {
	height: 100%;
}

.home .enter {
	width: 22.8vh;
	height: 6.4vh;
	border: 2px solid #fff;
	border-radius: 32px;
	font-size: 2.2vh;
	color: #fff;
	margin-top: 5vh;
	animation: fadeInUp 1s;
}

.home article {
	animation: fadeInUp 1s;
	line-height: 140%;
	font-size: 2vh;
	color: #fff;
	margin-top: 5vh;
}

.home article .sydw img {
	max-height: 8vh;
	margin-top: 1vh;
}

.home article .phone {
	font-size: 3vh;
	color: #fff;
	margin-bottom: 10px;
}

.home article .phone i {
	margin-right: 5px;
}

.layer-wrap {
	padding: 20px;
}

.layer-input {
	flex: 1;
	height: 40px;
	background: none;
	border: 1px solid #ccc;
	margin-right: 10px;
	padding: 0 10px;
	transition: all .5s;
}

.layer-input:focus {
	border-color: var(--common-background-color);
	transition: all .5s;
}

.layer-button {
	display: inline-block;
	padding: 0 20px;
	height: 40px;
	background: var(--common-background-color);
	color: #fff;
	font-size: 14px;
	border: 0;
}

/*产品列表*/
.productslist {
	margin-top: 50px;
}

.productslist li {
	width: calc((100% - 20px) / 3);
	margin: 0 10px 10px 0;
	display: none;
}

.productslist li.active {
	animation: fadeIn 1s;
	display: block;
}

.productslist li .title {
	line-height: 48px;
	border-bottom: 1px dashed #ccc;
	font-size: 14px;
	color: rgb(75, 75, 75);
}

.productslist li img {
	width: 100%;
}

.productslist li .details {
	margin-top: 10px;
	line-height: 25px;
	font-size: 12px;
	color: rgb(169, 169, 169);
}

.productslist li:hover .title {
	color: var(--common-background-hover-color);
}

.product{
    padding-top: 40px;
}

.product .title {
	color: black;
    font-weight: bold;
}

.product .img{
    border: 1px solid #ddd;
}

.product .content_jj{
    padding: 10px 40px;
}

.product .intro{
    border: 1px solid #ddd;
    margin: 50px auto;
}

.product .intro .content{
    padding: 30px;
}

.product .intro table{
    width: max-content !important;
    min-width: unset;
    border-collapse: collapse;
    border: inherit;
    margin-bottom: unset;
}


.product .intro table td{
    border: 1px solid #cbd5e1;
    padding: 5px 10px;
}

.product .image {
	max-width: 600px;
	margin-top: 40px;
}

.product .image img {
	max-width: 100%;
}

.product .details-title {
	width: 100%;
	height: 41px;
	border-bottom: 1px solid #ddd;
    background-color: #efefef;
}

.product .details-title span {
	top: 0;
	left: 0;
	line-height: 39px;
	padding: 0 29px;
	border-top: 3px solid #333;
	border-top-width: 2px;
	border-bottom: 0;
	font-size: 14px;
	color: rgb(102, 102, 102);
	background-color: #fff;
	font-weight: bold;
}

/*about*/
.about {
	background-color: #f6f6f6;
}

.about1 {
	margin-bottom: 60px;
}

.about1 .img {
	width: 50%;
}

.about1 .img img {
	width: 100%;
}

.about1 .c {
	background-color: rgba(246, 124, 1, 0.8944954128440367);
	width: 43%;
	transform: translate(-30%, 10%);
	padding: 40px;
}

.about1 .c .company {
	font-size: 36px;
	color: #fff;
	font-weight: bold;
	line-height: 180%;
}

.about1 .c .intro {
	margin-top: 30px;
	line-height: 230%;
	color: #fff;
}

.about1 .c .datas {
	margin-top: 50px;
	color: #fff;
}

.about1 .c .datas li .data {
	font-size: 50px;
}

.about .c .datas li .title {
	font-size: 18px;
}

.about2 {
	padding: 50px 0;
	background: url(../images/bg/index_about2.jpg) no-repeat center top;
	background-size: cover;
}

.about2 h2 {
	font-size: 36px;
	font-weight: 400;
	color: #fff;
}

.about2 p {
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	line-height: 48px;
}

.about2 .wrapper {
	margin-top: 50px;
}

.about2 .honorSwiper {
	width: 100%;
}

.about2 .honorSwiper img {
	width: 100%;
}

.about3 .partnerSwiper img {
	width: 100%;
}

.about2 .wrapper {
	padding: 0 70px;
	margin-top: 35px;
	position: relative;
	z-index: 998;
}

.about2 .swiper {
	position: static !important;
}

.about3 {
	padding: 30px 0;
}

.about3 .wrapper {
	padding: 0 70px;
	margin-top: 35px;
	position: relative;
}

.about3 .swiper {
	position: static !important;
}

.about3 h2 {
	font-size: 36px;
	font-weight: 400;
	color: rgb(75, 75, 75);
}

.about3 p {
	font-size: 16px;
	font-weight: 400;
	color: rgb(75, 75, 75);
	line-height: 48px;
}

/*下载*/
.download-list,
.download-list li {
	width: 100%;
}

.download-list li a {
	width: 100%;
	height: 36px;
	border-bottom: 1px solid #ccc;
}

.download-list li a .title {
	font-size: 14px;
	color: rgb(51, 51, 51);
}

.download-list li a .title::before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background-color: #c7000b;
	margin-right: 10px;
}

.download-list li a:hover * {
	color: #666;
}

/*联系我们*/
.contact1 {
	margin-top: 80px;
}

.contact1 .l,
.contact1 .r {
	width: 50%;
}

.contact1 .l {
	height: 30vw;
	background: url(../images/bg/contact1.jpg) no-repeat;
	background-size: cover;
}

.contact1 .l .company {
	line-height: 180%;
	font-size: 36px;
	color: #fff;
	margin-left: 10%;
}

.contact1 .l .intro {
	margin-top: 50px;
	line-height: 280%;
	font-size: 16px;
	color: #fff;
	margin-left: 10%;
}

.contact1 .r {
	height: 30vw;
	overflow: hidden;
}

.contact1 .r #map {
	width: 100%;
	height: 30vw;
}

.contact2 {
	padding: 50px 0;
}

.contact2 .title {
	font-size: 32px;
	color: rgb(102, 102, 102);
	line-height: 48px;
}

.contact2 .des {
	line-height: 48px;
	font-size: 14px;
	color: rgb(153, 153, 153);
}

.contact2 ul {
	margin: 30px 0;
}

.contact2 li .input,
.contact2 li .select {
	display: inline-block;
	padding: 0 10px;
	margin: 0;
	font-size: 12px;
	text-indent: 6px;
	border-radius: 2px;
	background: none;
	border: 1px solid #dadada;
	box-sizing: border-box;
	height: 39px;
	min-width: 200px;
}

.contact2 li .select {
	padding: 0 2px;
	text-align: left;
}

.contact2 li .input.input2 {
	min-width: 120px;
}

.contact2 li span.red {
	font-size: 18px;
	font-weight: bold;
	margin-left: 10px;
}

.contact2 button {
	background: var(--common-background-color);
	display: inline-block;
	padding: 0 20px;
	border: 0;
	font-size: 15px;
	color: #fff;
	font-family: 微软雅黑;
}

/*留言成功*/
.success-main {
	margin: 50px 0;
}

.success-main h1 {
	font-size: 36px;
	margin-top: 50px;
}

.success-main img {
	max-height: 100px;
}

.success-main p {
	margin-top: 40px;
	font-size: 18px;
}

.success-main .back {
	margin-top: 50px;
}

.success-main .back a {
	display: inline-block;
	padding: 0 15px;
	background-color: var(--common-background-color);
	line-height: 50px;
	color: #fff;
	font-size: 14px;
	border-radius: 8px;
}

/*index*/
.index1 {
	padding-bottom: 0;
}

.index1 .swiper-pagination {
	position: static;
	margin-top: 35px;
}

.index1 .swiper-pagination-bullet {
	display: inline-flex;
	height: 36px;
	opacity: 1;
	line-height: 36px;
	padding: 0 33px;
	border: 1px solid #ccc;
	border-radius: 18px;
	font-size: 16px;
	background-color: #fff;
	color: rgb(102, 102, 102);
	margin-right: 24px;
	justify-content: center;
	align-items: center;
	width: auto;
}

.index1 .swiper-pagination-bullet-active {
	background-color: var(--common-background-color) !important;
	border-color: var(--common-background-color) !important;
	color: #fff;
}

.index .about1 {
	background-color: #f6f6f6;
	padding-bottom: 50px;
}

.index-title {
	margin-top: 50px;
	background-color: #f6f7f7;
	padding: 50px 0;
}

.index1Swiper img {
	width: 100%;
}

.show-xs-flex {
	display: none;
}

.show-xs {
	display: none;
}

.hidde-xs {
	display: block;
}

.footerbg{
    margin: auto;
    text-align: center;
}

.footerbg img{
    max-width: 100%;
}

@media  (max-width: 1366px) {
    :root{
        --common-page-width: 1300px;
    }
}

@media  (max-width: 1280px) {
    :root{
        --common-page-width: 96%;
    }

    .products_all_item li{
        flex: 0 0 calc((100% - 120px) / 5);
    }
}

@media (max-width: 1150px) {
    .a7 .item_all .item_one, .a7 .item_all2 .item_one2{
        flex:100%;
    }
    .a5_5{
        display: flex;
        flex-wrap: wrap;
        gap:20px;
    }
    .a5_5_1{

    }
	.show-xs-flex {
		display: flex;
	}

	.show-xs {
		display: block;
	}

	.hidde-xs {
		display: none;
	}
    .hidden-xs{
        display: none;
    }

	:root {
		--common-page-width: 90%;
	}

    header .l{
        width: 100%;
    }

    .font60 {
        font-size: 30px;
    }

    .c1 {
        margin-top: 25px;
        padding: 20px 0;
    }

    .c1 .c1_1 .line2 {
        height: 30px;
    }

    .c1 .c1_1 .c1_item, .c2 .c2_item{
        width: calc(100% - 30px);
    }

    .c7 .c7_1_1 {
        gap: 20px;
    }

    .c1 img{
        max-width: 100%;
    }

    .c1 .c1_1{
        gap: 20px;
    }

    .c1 .c1_1 .content {
        line-height: 35px;
    }

    .c2 {
        margin-top: 25px;
        padding: 20px 0;
    }

    .c3 {
        margin-top: 25px;
        padding-bottom: 20px;
    }

    .c4 .content {
        max-width: 90%;
    }

    .c4 {
        padding: 20px 0;
    }

    .c_buttom {
        margin-top: 20px;
    }

    .font48 {
        font-size: 28px;
    }

    .font45 {
        font-size: 26px;
    }

    .font28 {
        font-size: 18px;
    }

    .font30 {
        font-size: 16px;
    }

    .c_buttom span {
        padding: 10px 10px;
    }

    .c5 {
        padding: 20px 0;
    }

    .c5 .item_one{
        flex: 100%;
    }

    .c5 .title1 {
        width: 100%;
    }

    .a5 .item_one {
        flex: 100%;
    }

    .line1 {
        display: none;
    }

    .language_list {
        display: none;
    }

    .footer .content1 {
        color: white;
        padding: 20px 0;
        min-height:auto;
    }

    .footer .f_nav {
        width: 100%;
    }

    .footer .content2 {
        padding: 10px 0;
    }

    .font24 {
        font-size: 16px;
    }

    .font26 {
        font-size: 16px;
    }

    .a2 {
        margin-top: 35px;
        padding: 20px 0;
    }

    .a2 .img1 .item_one {
        flex: 100%;
    }

    .a3 .img1 .item_one {
        flex: 100%;
    }

    .bg1 {
        min-height: auto;
    }

    .right_side .item_one{
        width: 40px;
        height: 40px;
    }

    .right_side .item_one i{
        font-size: 16px;
    }
	
	header {
		padding: 0 2%;
        height: 60px;
	}

	header .wrapper {
		height: auto;
		width: auto;
	}

	header .logo img {
		
	}

    body{
        padding-top: 60px;
    }

    .font50 {
        font-size: 22px;
    }

    .c2 .c2_1 {
        justify-content: center;
    }

    .font18 {
        font-size: 16px;
    }

    .c6 .c6_1 img{
        width: 100%;
    }

    .c7 .c7_2 img{
        width: 100%;
    }

    .c7 .c7_item {
        flex: 100%;
    }

    .c7 .c7_1 {
        justify-content: center;
    }

    .c7 .title2 {
        padding: 15px 70px 15px 10px;
    }

    .c7 .c7_3_a {
        position: absolute;
        top: 23px;
        right: 11px;
    }

    .font44 {
        font-size: 20px;
        line-height: 30px;
    }

    .c4 .item_one, .c4 .item_one_1 {
        flex: 100%;
    }

    .c4 .input3 {
        padding: 15px 80px;
    }

    .font100 {
        font-size: 30px;
        line-height: 30px;
    }

    .c3 .flex1 {
        flex: 100%;
    }

	header .logo p {
		font-size: .22rem;
	}

	header .nav {
		width: .8rem;
		height: .7rem;
		border: 0;
		padding: .11rem 0;
		background: none;
		align-items: flex-end;
	}

	header .nav hr {
		width: .5rem;
		height: .05rem;
		background-color: var(--common-background-color);
		border: 0;
		padding: 0;
		margin: .1rem 0;
		border-radius: 1px;
	}

	header .nav::before,
	header .nav::after {
		content: '';
		width: .5rem;
		height: .05rem;
		background-color: var(--common-background-color);
		transition: all .6s;
		border-radius: 1px;
	}

	.shadow {
		width: 100vw;
		height: 100vh;
		position: fixed;
		z-index: 9999;
		background-color: rgba(0,0,0,.4);
		display: none;
		top: 0;
		left: 0;
	}

	.shadow.active {
		display: block;
	}

	.leftNav {
		width: 85%;
		max-width: 400px;
		height: 100vh;
		background-color: #fff;
		z-index: 999999 !important;
		top: 0;
		left: 0;
		transform: translateX(-100%);
		transition: all .6s;
	}

    #mnav ul{
        overflow-y: auto;
        height: 100vh;
    }

    .leftNav div.son1 {
        overflow: hidden;
        padding: 0 20px;
    }

    .page-title-area {
        /* padding-top: 60px;
        padding-bottom: 60px; */
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .a1_item {
        border-right: 0px solid #ccc;
        text-align: center;
        padding: 10px 20px;
        width: 50%;
    }

    .a2_item .img img {
        max-width: 100%;
    }

    .a2_item {
        display: block;
    }

    .onlyimg_all .item_one {
        width: 100%;
    }

    .font40 {
        font-size: 20px;
    }

    .products_all li {
        flex: 0 0 auto;
        width: 100%;
    }

    .products_all_item li {
        flex: 0 0 calc((100% - 90px) / 4);
    }

    .pages span{
        color: #666;
    }

    .product .img img{
        max-width: 100%;
    }

    .product .product_top {
        flex-direction: column;
        margin-top: 30px;
    }

    .product .content_jj {
        padding: 10px 0px;
    }

    .product .intro .content {
        overflow-x: auto; -webkit-overflow-scrolling: touch;
        padding: 5px;
    }

    .a5 .title {
        padding-top: 30px;
    }

    .a5 .form1 {
        width: 90%;
        margin: 20px auto;
        padding-bottom: 20px;
    }

    .a6_item {
        width: 100%;
    }

    .news_all_item .img {
        width: 100%;
        border-radius: 30px;
    }

    .news_all_item .content {
        width: 100%;
    }

    .a2_item:nth-child(odd) .img {
        order: 1;
    }
	
	.leftNav.hide {
		transform: translateX(-100%);
	}
	
	.leftNav.active {
		transform: translateX(0);
	}
	
	.leftNav li {
		width: 100%;
		min-height: .8rem;
		border-bottom: 1px solid #e9e9e9;
		padding: 0 .1rem;
		font-size: .28rem;
		color: #383838;
	}
	
	.leftNav .angle {
		width: .2rem;
		height: .5rem;
	}
	
	.leftNav .angle i {
		font-size: .4rem;
	}
	
	.leftNav .angle.active i {
		transform: rotate(90deg);
	}
	
	.leftNav li.son {
		overflow: hidden;
		padding: 0 .4rem;
	}

	.headerSwiper .swiper-slide img {
		width: 100%;
		height: 50vw;
		object-fit: cover;
	}
	
	.headerSwiper .swiper-slide h2 {
		font-size: .38rem;
	}

	.headerSwiper .swiper-slide p {
		font-size: .32rem;
	}
	
	.swiper-button-next, .swiper-button-prev {
		display: none;
	}

	main aside h1 {
		font-size: .4rem;
	}

	main aside p {
		font-size: .24rem;
	}


	.productslist li {
		width: calc((100% - .3rem) / 2);
		margin-right: .3rem;
	}

	.productslist li:nth-child(3n) {
		margin-right: .3rem;
	}

	.productslist li:nth-child(even) {
		margin-right: 0;
	}

	.index .about1 {
		margin-bottom: .6rem;
		padding-bottom: .5rem;
		flex-direction: column;
	}

	.about1 {
		padding: 0 2%;
	}

	.about1 .img, .about1 .c {
		width: 100%;
	}

	.about1 .c {
		transform: none;
		padding: .4rem;
	}

	.about1 .c .company {
		font-size: .36rem;
	}

	.about1 .c .intro {
		margin-top: .3rem;
	}

	.about1 .c .datas {
		margin-top: 0;
		flex-wrap: wrap;
	}

	.about1 .c .datas li {
		width: 50%;
	}

	.about1 .c .datas li .data {
		font-size: .5rem;
	}

	.about2 {
		padding: .5rem 0;
	}

	.about2 h2 {
		font-size: .36rem;
	}
	
	.about2 p {
		font-size: .24rem;
		line-height: 180%;
	}

	.about2 .wrapper {
		padding: 0 .7rem;
		margin-top: .35rem;
	}

	.about3 h2 {
		font-size: .36rem;
	}

	.about3 p {
		font-size: .24rem;
	}

	.news-image-list {
		padding: 0 2%;
	}

	.news-image-list li {
		width: 100%;
		margin-right: 0;
		margin-bottom: .4rem;
	}

	.about3 {
		padding: .3rem 0;
	}

	main {
		padding: .4rem 0 0;
	}

	.index1 {
		padding: 0 2%;
	}

	.index1 .swiper-pagination {
		margin-top: 0;
	}

	.index1 .swiper-pagination-bullet {
		margin-bottom: 2vw !important;
	}

	.productslist li .title {
		line-height: 150%;
	}

	.productslist li .title {
		margin-top: .2rem;
	}

	.productslist {
		margin-top: .4rem;
		padding: 0 2%;
	}

	.index-title {
		margin-top: .5rem;
		padding: .5rem 0;
	}

	footer {
		padding: .4rem 2%;
	}

	footer .wrapper {
		flex-direction: column;
		width: 100%;
	}

	footer .l, footer .r {
		width: 100%;
	}
	
	footer .r {
		margin-top: .4rem;
		flex-wrap: wrap;
	}

	footer .r .ecode {
		width: 100%;
	}

	footer .r .ecode {
		width: 48%;
		margin-right: 0;
	}

	footer .r .ecode:nth-child(even) {
		margin-left: 4%;
	}

	footer .r hr {
		display: none;
	}

	footer .r .contact {
		width: 100%;
		margin-top: .4rem;
	}

	main aside ul {
		margin-top: 0;
	}

	.product {
		padding: 0 2%;
	}

	.product .title {
		margin-top: .4rem;
	}

	.product .image {
		margin-top: .4rem;
	}

	.intro * {
		font-size: .24rem !important;
		line-height: 185% !important;
	}
	
	.news-detail {
		padding: .4rem 2% 0 2%;
	}

	.news-detail h1 {
		font-size: .28rem;
		line-height: 185%;
	}

	.news-detail h1 {
		margin-bottom: .4rem;
	}

	.about1 {
		flex-direction: column;
	}

	.about .c .datas li .title {
		font-size: .24rem;
	}

	.about3 .wrapper {
		padding: 0 2%;
	}

	.image-list {
		padding: 0  2%;
	}

	.image-list li {
		width: calc((100% - .4rem) / 2);
		margin-right: .4rem;
	}

	.image-list li:nth-child(even) {
		margin-right: 0;
	}

	.news {
		padding: .5rem 0;
	}

	.download-list {
		padding: 0 2%;
	}

	.download-list li a .addtime {
		width: 2.7rem;
		flex-shrink: 0;
		flex-grow: 0;
	}

	.download-list li a .title {
		width: calc(100% - 2.8rem);
		flex-shrink: 0;
		flex-grow: 0;
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;
	}

	.contact1 {
		margin-top: .4rem;
		flex-direction: column;
		padding: 0 2%;
	}

	.contact1 .l, .contact1 .r {
		width: 100%;
	}
	
	.contact1 .l {
		height: auto;
		padding: .4rem;
	}

	.contact1 .l .company {
		margin-left: 0;
		font-size: .36rem;
	}

	.contact1 .l .intro {
		margin-left: 0;
		font-size: .24rem;
		margin-top: .5rem;
	}

	.contact1 .r, .contact1 .r #map {
		height: 100vw;
	}

	.contact2 {
		padding: 0 2%;
		margin-top: .6rem;
	}

	.contact2 .title {
		font-size: .32rem;
		line-height: 180%;
	}

	.contact2 .des {
		line-height: 180%;
		font-size: .24rem;
	}

	.contact2 ul {
		flex-direction: column;
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.contact2 li {
		width: 100%;
		margin-bottom: .4rem;
	}

	.contact2 button {
		margin-bottom: .4rem;
	}

}

@media (max-width: 860px) {
    


    .products_all_item li {
        flex: 0 0 calc((100% - 60px) / 3);
    }
}


@media (max-width: 500px) {
    

    .a5_2 img{
        max-width: 40px;
    }

    .products_all_item li {
        flex: 0 0 auto;
        width: 100%;
    }
}