html,
body {
	height: 100%;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}
html:root {
	--dp-color: #7ab431;
	--dp-gradient: linear-gradient(90deg, #98de3d, #79bf20);
	--dp-gradient-contrary: linear-gradient(90deg, #79bf20, #98de3d);
}

body {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	position: relative;
	background: #fff;
	/*padding-top: 90px;*/
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
}
body .dp {
	margin-top: 90px;
	height: calc(100vh - 90px);
	overflow-y: auto;
}

a {
	text-decoration: none;
	cursor: pointer;
	font-family: 'Poppins', sans-serif;
	color: #333;
	font-size: 14px;
}

button,
input,
textarea,
a:hover,
a:focus,
a:visited {
	text-decoration: none;
	outline: none;
	outline-width: 0 !important;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
	color: transparent;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}
hr {
	border-top: 1px solid #eee;
}

.body {
	width: 1120px;
	margin: 0 auto;
}


.body .tit {
	position: relative;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	padding-bottom: 28px;
}
.body .tit.style2 {
	text-align: left;
}
.body .tit:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -25px;
	width: 40px;
	height: 3px;
	background-color: var(--dp-color);
}
.body .tit.style2:before {
	left: 0;
	margin-left: 0;
}
.body .tit:after {
	content: '';
	position: absolute;
	right: 50%;
	bottom: 0;
	margin-right: -25px;
	width: 5px;
	height: 3px;
	background-color: var(--dp-color);
}
.body .tit.style2:after {
	left: 45px;
	margin-left: 0;
}
.content-box .tit {
	font-size: 17px;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background-color: #fff;
}
header .body {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 90px;
}
header .body .logo img {
	width: auto;
	height: 60px;
}
header .body>ul {
	display: flex;
}
header .body>ul>li {
	display: flex;
	align-items: center;
	position: relative;
	height: 90px; 
	padding: 0 15px;
}
header .body>ul>li:last-child {
	padding-right: 0;
}
header .body>ul>li>a {
	font-size: 16px;
	line-height: 1;
}
header .body>ul>li>a.active,
header .body>ul>li>a i:hover,
header .body>ul>li>a:hover {
	color: var(--dp-color);
}
header .body>ul>li>a .s7n-bottom {
	margin-left: 5px;
	font-size: 12px;
}
header .body>ul>li>a i {
	font-size: 20px;
	color: #999;
}
header .body>ul>li>ul {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	width: max-content;
	padding: 5px 0;
	background-color: #fff;
	box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%);
	border-radius: 3px;
	z-index: 998;
}
header .body>ul>li>ul>li {
	line-height: 1;
}
header .body>ul>li>ul>li>a {
	display: block;
	width: 100%;
	padding: 10px 30px;
	line-height: 20px;
}
header .body>ul>li>ul>li>a:hover {
	color: var(--dp-color);
}
header .body>ul>li:hover>ul {
	display: block;
}
header .menu {
	display: none;
}
header .shade {
	display: none;
}
header .body>ul>li>ul.qr {
	left: auto;
	right: 0;
	padding: 20px;
	text-align: center;
}
header .body>ul>li>ul.qr img {
	width: 120px;
}
header .body>ul>li>ul.qr p {
	margin: 10px 0 0;
	text-align: center;
}


footer {
	width: 100%;
	/*padding: 0;*/
	margin: 0;
}
.footer {
	padding: 40px 0;
	background-color: #2b3145;
}
.footer .body {
	display: flex;
	justify-content: space-between;
}
.footer .group {
	display: flex;
}
.footer .group .menu {
	margin-right: 40px;
}
.footer .group .menu h5 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 30px;
	color: #fff;
}
.footer .group .menu li a {
	line-height: 32px;
	color: #fff;
}
.footer .group .info {
	/*text-align: center;*/
	/*margin-right: 64px;*/
}
.footer .group .logo img {
	height: 50px;
	margin-bottom: 20px;
	/*padding-right: 50px;*/
}
.footer .group .info p {
	color: #fff;
	margin-top: 10px;
	margin-bottom: 0;
	font-size: 14px;
}
.footer .group .info p span {
	font-size: 14px;
	font-weight: bold;
}
.footer .group .qr {
	/*margin-top: 100px;*/
	margin-top: 52px;
	margin-right: 40px
}
.footer .group .qr img {
	width: 80px;
	height: 80px;
}
.footer .group .qr p {
	margin-top: 10px;
	margin-bottom: 0;
	font-size: 14px;
	text-align: center;
	color: #fff;
}
.copyright {
	font-size: 12px;
	text-align: center;
	line-height: 24px;
	color: #fff;
	background-color: #32374b;
	padding: 10px 0;
}

.slides {
	width: 100%;
	/* height: 550px; */
	height: auto;
}
.slides .swiper-container {
	height: 100%;
}
.slides .swiper-wrapper {
	height: 100%;
}
.slides .swiper-slide {
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
}
.slides .swiper-slide img {
	width: 100%;
	height: 100%;
	/* object-fit: cover; */
}
.slides .slide-title {
	position: absolute;
	left: 0;
	top: 50%;
	height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: -160px;
	padding: 0 120px;
	background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), rgba(255, 255, 255, 0));
}
.slides .slide-title h2 {
	font-size: 36px;
	font-weight: bold;
	color: #fff;
}
.slides .slide-title h1 {
	font-size: 36px;
	font-weight: bold;
	color: #fff;
	margin: 0;
}
.slides .slide-title a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	width: 220px;
	margin-top: 40px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	background-image: var(--dp-gradient);
	border-radius: 3px;
}
.slides .slide-title a i {
	color: var(--dp-color);
	width: 32px;
	height: 32px;
	line-height: 32px;
	background-color: #fff;
	text-align: center;
	border-radius: 100%;
	margin-right: 10px;
}
.slides .slide-title a:hover {
	background-image: var(--dp-gradient-contrary);
}

.about {
	width: 100%;
	padding: 40px 0;
}
.about .content {
	margin-top: 30px;
	font-size: 14px;
	line-height: 28px;
	text-align: center;
}

.platform {
	width: 100%;
	padding: 40px 0;
	background-color: #f7f7f7;
}
.platform .group {
	display: flex;
	justify-content: space-between;
	margin-top: 34px;
}
.platform .group .item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 300px;
}
.platform .group .item img {
	width: auto;
	height: 52px;
}
.platform .group .item:hover img {
	display: none;
}
.platform .group .item img + img {
	display: none;
	width: auto;
	height: 52px;
}
.platform .group .item:hover img + img {
	display: block;
}
.platform .group .item .title {
	position: relative;
	margin-top: 40px;
	font-size: 16px;
	line-height: 1.4;
	padding: 0 14px 30px;
	text-align: center;
}
.platform .group .item .title:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -25px;
	width: 40px;
	height: 3px;
	background-color: var(--dp-color);
}
.platform .group .item .title:after {
	content: '';
	position: absolute;
	right: 50%;
	bottom: 0; 
	margin-right: -25px;
	width: 5px;
	height: 3px;
	background-color: var(--dp-color);
}
.platform .group .item .content {
	margin-top: 20px;
	text-align: center;
	line-height: 24px;
}
.platform .group .item:hover {
	color: #212529;
}

.articles {
	width: 100%;
	padding: 40px 0;
}
.articles .group {
	display: flex;
	justify-content: space-between;
	margin: 34px -15px 0;
}
.articles .group .item {
	flex: 1;
	padding: 0 15px;
}
.articles .group .item .thumb {
	display: block;
	width: 100%;
	height: 200px;
	margin-bottom: 24px;
}
.articles .group .item .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 1px solid #eee;
}
.articles .group .item .info {
	display: flex;
	height: 80px;
}
.articles .group .item .info .time {
	padding-right: 15px;
	border-right: 2px solid #d3d3d3;
}
.articles .group .item .info .time .month {
	font-size: 20px;
	font-weight: bold;
	line-height: 24px;
	color: #999;
}
.articles .group .item .info .time .year {
	font-size: 14px;
	color: #999;
}
.articles .group .item .info .text {
	flex: 1;
	padding-left: 15px;
}
.articles .group .item .info .text .title {
	display: block;
	font-size: 18px;
	font-weight: bold;
	line-height: 24px;
	overflow: hidden; 
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
.articles .group .item .info .text .title:hover {
	color: var(--dp-color);
}
.articles .group .item .info .text .description {
	margin-top: 8px;
	font-size: 14px;
	line-height: 24px;
	overflow: hidden; 
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}


.banner {
	width: 100%;
	height: 320px;
	position: relative;
}
.banner img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.banner .tit {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 800px;
	height: 100px;
	margin-top: -50px;
	margin-left: -400px;
	font-size: 30px;
	/*font-weight: bold;*/
	line-height: 100px;
	text-align: center;
	color: #fff;
	background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .3) 25%, rgb(0, 0, 0, .4) 50%, rgba(0, 0, 0, .3) 75%, rgba(0, 0, 0, 0) 100%);
}

.crumbs {
	line-height: 50px;
	border-bottom: 1px solid #ccc;
}
.crumbs a {
	color: #333;
}
.crumbs a:hover {
	color: var(--dp-color);
}

.content-box {
	padding: 40px 0;
	background-color: #fff;
}
.content-box:nth-child(odd) {
	background-color: #f7f7f7;
}
.content-box .title {
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 30px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 40px;
}
.content-box .content * {
	padding: 0;
	margin: 0;
}
.content-box .content p + p {
	margin-top: 20px !important;
}
.content-box .content ul.list-paddingleft-2,
.content-box .content ol {
	padding-left: 20px;
}
.content-box .literature li {
	position: relative;
	/*font-weight: bold;*/
	font-size: 13px;
	line-height: 20px;
	padding: 8px 0 8px 0;
}
.content-box .literature li:before {
	display: none;
	content: '';
	position: absolute;
	height: 10px;
	width: 10px;
	left: 10px;
	top: 13px;
	border-radius: 100%;
	background-color: #ccc;
}
.content-box .literature li a:hover {
	color: var(--dp-color);
}
.welfare {
	margin-bottom: 90px;
}
.welfare .body>.title {
	width: 100%;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 40px;
}
.welfare .group {
	display: flex;
}
.welfare .group .item {
	flex: 1;
	position: relative;
	padding: 0 10px;
}
.welfare .group .item .box {
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	border-radius: 5px;
	overflow: hidden;
	height: 100%;
}
.welfare .group .item .title {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	padding: 30px 0 20px;
}
.welfare .group .item ul {
	padding: 0 40px 40px;
}
.welfare .group .item ul li {
	position: relative;
	padding-left: 22px;
	font-size: 14px;
	color: #666;
}
.welfare .group .item ul li:before {
	content: '';
	position: absolute;
	height: 4px;
	width: 12px;
	left: 0;
	top: 8px;
	border-radius: 2px;
	background-color: var(--dp-color);
}
.welfare .group .item ul li + li {
	margin-top: 10px;
}
.join {
	padding-bottom: 90px;
}
.join .body>.title {
	width: 100%;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 40px;
}
.join .table {
	margin: 0;
	/*padding: 0 100px;*/
}
.join .table .th {
	display: flex;
	/*background-color: #eee;*/
	background: linear-gradient(180deg, var(--dp-color) 30%, rgba(122, 180, 49, 80%) 70%);
	color: #fff;
	line-height: 50px;
	text-align: center;
}
.join .table .td {
	display: flex;
	line-height: 60px;
	text-align: center;
	cursor: pointer;
}
/*.join .table .tr:nth-child(odd) .td {
	background-color: #eee;
}*/
.join .table p {
	flex: 1;
	display: flex;
	justify-content: center;
	margin: 0;
}
.join .table p:nth-child(1) {
	flex: 3;
}
.join .table p span {
	width: 200px;
	text-align: left;
}
.join .table p i {
	display: inline-block;
	font-size: 20px;
	margin-right: 10px;
	vertical-align: middle;
	transition: all .5s;
}
.join .table p i.rotate {
	transform:rotate(-90deg);
	-ms-transform:rotate(-90deg);
	-moz-transform:rotate(-90deg);
	-webkit-transform:rotate(-90deg);
	-o-transform:rotate(-90deg);
}
.join .detail {
	display: none;
	border: 1px solid #eee;
	padding: 60px;
	margin: 0 0 10px;
}
.join .table .detail p {
    display: block;
    margin: 0;
}
.join .detail * {
	padding: 0;
	margin: 0;
}
.map-box .body {
	padding: 40px 0;
	display: flex;
}
.map-box .map {
	flex: 1;
	/*width: 100%;*/
	height: 400px;
}
.map-box .group {
	width: 480px;
	margin-left: 40px;
	padding-top: 30px;
}
.map-box .group .item {
	height: 180px;
	/*margin-right: 40px;*/
}
/*.map-box .group .item + .item {
	margin-right: 0;
	margin-left: 40px;
	margin-top: 40px;
}*/
.map-box .group .item .title {
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ccc;
}
.map-box .group .item p {
	font-size: 17px;
	color: #666;
	line-height: 32px;
	margin-bottom: 0;
}


.map-info {
	padding-bottom: 90px;
}
.map-info .group {
	display: flex;
}
.map-info .group .item {
	flex: 1;
	margin-right: 40px;
}
.map-info .group .item + .item {
	margin-right: 0;
	margin-left: 40px;
}
.map-info .group .item .title {
	font-size: 24px;
	font-weight: bold;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ccc;
}
.map-info .group .item p {
	font-size: 17px;
	color: #666;
	line-height: 32px;
	margin-bottom: 0;
}
.team {
	padding: 40px 0;
}
.team .group {
	display: flex;
	flex-wrap: wrap;
	padding-top: 40px;
	margin: 0 -60px;
}
.team .group .item {
	width: 25%;
	padding: 0 60px;
}
.team .group .item .box {
	position: relative;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.team .group .item .box .surface {
	padding: 30px;
}
.team .group .item .box .surface img {
	width: 100%;
	height: 240px;
	object-fit: cover;
}
.team .group .item .box .surface .name {
	font-size: 18px;
	font-weight: bold;
	margin-top: 20px;
	overflow: hidden; 
	text-overflow: ellipsis;
	display: -webkit-box; 
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2; 
}
.team .group .item .box .surface .position {
	font-size: 14px;
	font-weight: bold;
	padding-bottom: 10px;
	margin: 10px 0;
	border-bottom: 1px solid #ccc;
}
.team .group .item .box .surface .affair {
	font-size: 14px;
	height: 42px;
	overflow: hidden; 
	text-overflow: ellipsis;
	display: -webkit-box; 
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2; 
}
.team .group .item .box .intro {
	display: none;
	position: absolute;
	left: -1px;
	right: -1px;
	top: -1px;
	bottom: -1px;
	background-color: rgba(255, 255, 255, .9);
	overflow-y: auto;
	font-size: 12px;
}
.team .group .item .box:hover .intro {
	display: block;
}
.team .group .item .box .intro::-webkit-scrollbar {
	position: absolute;
	right: -10px;
	width: 6px;
}
.team .group .item .box .intro::-webkit-scrollbar-thumb {
	border-radius: 10px;
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: var(--dp-color);
}
.team .group .item .box .intro::-webkit-scrollbar-track {
	margin-left: 10px;
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	background: #ededed;
}
.about .body .name {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 40px;
}
.about .body .details {
	display: flex;
}
.about .body .details .left {
	flex: 1;
}
.about .body .details .left + .right {
	width: 30%;
	height: auto;
	margin-left: 60px;
}
.about .body .details .right img {
	width: 100%;
	height: auto;
	/*object-fit: cover;*/
}
.culture {
	margin-bottom: 40px;
}
.culture .group {
	display: flex;
	justify-content: space-between;
}
.culture .item {
	height: 400px;
	width: 420px;
	padding: 0 60px;
	text-align: center;
	box-shadow: 0 0 20px rgba(0, 0, 0, .1);
	margin-top: 40px;
}
.culture .item:nth-child(2) {
	height: 480px;
	margin-top: 0
}
.culture .item .name {
	font-size: 20px;
	font-weight: bold;
	color: var(--dp-color);
	margin-bottom: 30px;
}
.culture .item img {
	width: 100px;
	margin-top: 70px;
	margin-bottom: 40px;
}
.culture .item p {
	text-align: left;
	line-height: 24px;
	color: #777;
	margin: 0;
}

.history {
	padding: 40px 0;
}
.history .group {
	display: flex;
}
.history .group .img {
	flex: 1;
	display: flex;
	align-items: center;
	height: 100vh;
	margin-right: 50px;
    position: sticky;
    top: 0;
    text-align: center;
}
.history .group .tree {
	width: 50%;
	position: relative;
	padding-top: 90px;
	padding-left: 50px;
}
.history .group .tree .vertical {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 4px;
	background-color: #cce198;
	border-radius: 2px;
}
.history .group .tree .vertical:before {
	content: "";
	position: absolute;
	left: -18px;
	height: 40px;
	width: 40px;
	border-radius: 100%;
	border: 5px solid #cce198;
	background-color: var(--dp-color);
}
.history .group .tree .year {
	position: relative;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}
.history .group .tree .year:before {
	content: "";
	position: absolute;
	top: 50%;
	left: -54px;
	height: 12px;
	width: 12px;
	margin-top: -6px;
	border-radius: 100%;
	border: 4px solid #cce198;
	background-color: #fff;
}
.history .group .tree .incident {
	font-size: 14px;
	line-height: 32px;
	color: #666;
}
.history .group .tree li {
	margin-bottom: 60px;
}
.awards {
	padding: 40px 0;
}
.awards #swiper2 {
	display: none;
}
.product {
	padding: 40px 0;
}
.product .group {
	display: flex;
}
.product .group .left {
	flex: 1;
}
.product .group .left + .right {
	margin-left: 40px;
}
.product .group .right {
    position: sticky;
    width: 320px;
    top: 0;
    height: auto;
    display: inline-table;
}
.product .group .right li {
	border-bottom: 1px solid #eee;
	line-height: 30px;
	padding: 15px 20px;
}
.product .group .right li a {
	font-size: 16px;
	font-weight: bold;
}
.product .group .right li a.active {
	color: var(--dp-color);
}
.product .group .right li a:hover {
	color: var(--dp-color);
}
.product .group .right .title {
	border-bottom: 4px solid var(--dp-color);
	height: 60px;
	width: 100%;
	background-color: #f7faff;
	line-height: 60px;
	font-size: 17px;
	font-weight: bold;
	padding-left: 20px;
	overflow: hidden; 
	text-overflow: ellipsis;
	display: -webkit-box; 
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1; 
}
.product .content-box {
	padding: 0;
}
.product .content-box:nth-child(odd) {
	background-color: #fff;
}
.product .content-box + .content-box {
	padding-top: 40px;
}
.product .form form {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.product .form .input {
	width: 33.3333%;
	padding: 0 10px;
}
.product .form .input input {
	width: 100%;
}
.product .form .textarea {
	width: 100%;
	padding: 0 10px;
}
.product .form .textarea textarea {
	height: 100px;
	width: 100%;
	margin-top: 10px;
	padding: 10px;
	border: 1px solid #eee;
}
.product .form .button {
	padding: 0 10px;
}
.product .form .button input {
	cursor: pointer;
}
.product .form .button input:hover {
	background-color: var(--dp-color);
	color: #fff;
}
.product .form .kefu {
	flex: 1;
	line-height: 40px;
	font-size: 17px;
	font-weight: bold;
	color: var(--dp-color);
	padding: 0 10px;
}
.article-list {
	padding: 40px 0;
}
.article-list .group {
	display: flex;
}
.article-list .group .left {
	width: calc(100% - 360px);
	margin-right: 40px;
}
.article-list .group .left .swiper-container {
	width: 100%;
}
.article-list .group .left .swiper-slide {
	width: 100%;
}
.article-list .group .left .swiper-slide img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}
.article-list .group .left .swiper-slide .text {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, .6);
	color: #fff;
	padding: 0 24px;
	font-size: 20px;
	line-height: 60px;
	font-weight: bold;
	display: flex;
}
.article-list .group .left .swiper-slide p {
	flex: 1;
	overflow: hidden; 
	text-overflow: ellipsis;
	display: -webkit-box; 
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	/*margin: 0 20px 0 0;*/
	margin: 0;
}
.article-list .group .left .swiper-container-horizontal>.swiper-pagination-bullets,
.article-list .group .left .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: 70px;
}
.article-list .group .left  .swiper-pagination-bullet-active {
	background-color: var(--dp-color);
}
.article-list .group .right {
	position: sticky;
    width: 320px;
    top: 0;
    height: auto;
    display: inline-table;
}
.article-list .group .right .title {
	border-left: 4px solid var(--dp-color);
	height: 60px;
	width: 100%;
	background-color: #f7faff;
	line-height: 60px;
	font-size: 20px;
	font-weight: bold;
	padding-left: 20px;
}
.article-list .group .right ul {
	margin: 20px 0;
}
.article-list .group .right li {
	border-bottom: 1px solid #eee;
	padding: 20px 0;

}
.article-list .group .right li a {
	font-size: 14px;
	font-weight: bold;
	line-height: 24px;
	overflow: hidden; 
	text-overflow: ellipsis;
	display: -webkit-box; 
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
.article-list .group .right li a:hover {
	color: var(--dp-color);
}
.article-list .group .right form {
	display: flex;
	margin-bottom: 40px;
}
.article-list .group .right input {
	flex: 1;
	height: 60px;
	border: 1px solid #f1f1f1;
	border-right: 0;
	border-radius: 5px 0 0 5px;
	padding-left: 20px;
}
.article-list .group .right button {
	width: 90px;
	height: 60px;
	background-color: #f7faff;
	border: 1px solid #f1f1f1;
	border-radius: 0 5px 5px 0;
	cursor: pointer;
}
.article-list .group .left .noting {
	color: #999;
	text-align: center;
}
.article-list .group .left ul li {
	margin-top: 40px;
}
.article-list .group .left ul li a {
	font-size: 18px;
	font-weight: bold;
}
.article-list .group .left ul li a:hover {
	color: var(--dp-color);
}
.article-list .group .left .info {
	margin-top: 10px;
	display: flex;
	color: #666;
}
.article-list .group .left .info .time {
	padding-right: 24px;
	border-right: 2px solid #d3d3d3;
}
.article-list .group .left .info .time .month {
	font-size: 20px;
	font-weight: bold;
	line-height: 24px;
	color: #ccc;
}
.article-list .group .left .info .time .year {
	font-size: 14px;
	color: #ccc;
	/*margin-top: 10px; */
}
.article-list .group .left .info .description {
	flex: 1;
	padding-left: 24px;
	overflow: hidden; 
	text-overflow: ellipsis;
	display: -webkit-box; 
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3; 
}
.article-list .group .left .pages {
	margin-top: 90px;
	display: flex;
	justify-content: center;
}
.article-list .group .left .pages a {
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #f1f1f1;
	margin: 0 10px;
}
.article-list .group .left .pages a:hover,
.article-list .group .left .pages .active {
	color: #fff;
	border-color: var(--dp-color);
	background-color: var(--dp-color);
}
.article-list .group .left .title {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}
.article-list .group .left .info {
	display: flex;
	justify-content: center;
	/*padding-bottom: 40px;*/
}
.article-list .group .left .info span {
	padding: 0 15px;
}
.article-list .group .left .content {
	padding: 0 0 40px;
}
.article-list .group .left .content * {
	padding: 0;
	margin: 0;
}
.article-list .group .left .content img {
	max-width: 100%;
}
.article-list .group .left .share .name {
	position: relative;
	text-align: center;
	color: #999;
	line-height: 30px;
}
.article-list .group .left .share .name:before {
	content: "";
	position: absolute;
	left: 0;
	top: 14px;
	width: calc(50% - 50px);
	height: 1px;
	background-color: #eee;
}
.article-list .group .left .share .name:after {
	content: "";
	position: absolute;
	right: 0;
	top: 14px;
	width: calc(50% - 50px);
	height: 1px;
	background-color: #eee;
}
.article-list .group .left .share .box {
	display: flex;
	justify-content: center;
	padding: 40px 0 90px;
}
.article-list .group .left .share .box>div {
	width: 30px;
	height: 30px;
	cursor: pointer;
	border-radius: 4px;
	background-size: contain;
	margin: 0 10px;
}
.article-list .group .left .rests p {
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.article-list .group .left .rests a {
	font-size: 14px;
}
.article-list .group .left .rests a:hover {
	color: var(--dp-color);
}
.article-list .group .left form {
	display: none;
}
.article-list .search h1 {
	font-size: 20px;
	font-weight: bold;
}
.article-list .search h2 {
	font-size: 14px;
	margin-bottom: 20px;
}
.article-list .search h2 span {
	padding: 0 5px;
}
.xscg .banner {
	margin-top: 90px;
}

@media (max-width: 544px) {
	body {
		padding-top: 50px;
	}
	body .dp {
		margin-top: 0;
		height: auto;
	}
	.body {
		width: 100%;
	}
	header .body {
		position: relative;
		height: 50px;
	}
	header .body .logo img {
		padding-left: 20px;
		height: 40px;
	}
	header .body>ul {
		position: fixed;
		top: 0;
		left: -260px;
		height: 100vh;
		width: 260px;
		background-color: #fff;
		display: block;
		z-index: 999;
		padding: 30px 40px 0;
		transition: left .5s;
	}
	header .body>ul>li {
		height: auto;
		padding: 15px 0;
	}
	header .body>ul>li:nth-last-child(1),
	header .body>ul>li:nth-last-child(2),
	header .body>ul>li:nth-last-child(3),
	header .body>ul>li:nth-last-child(4) {
		display: inline-block;
		padding: 20px 8px;
	}
	header .body>ul>li:nth-last-child(4) ul {
		position: fixed;
		top: 50%;
		margin-top: -45px;
		left: 20px !important;
		right: 20px !important;
		width: auto;
	}
	header .body>ul>li:nth-last-child(3) ul {
		position: fixed;
		top: 50%;
		margin-top: -120px;
		right: 50% !important;
		margin-right: -132px;
		width: auto;
	}
	header .body>ul>li:nth-last-child(2) ul {
		left: -114px !important;
	}
	header .body>ul>li:nth-last-child(1) ul {
		left: -158px !important;
	}
	header .body>ul>li>ul.qr img {
		width: 200px;
		height: 200px;
	}
	header .body>ul>li>ul {
		width: 240px;
		left: -30px;
		padding: 10px 0;
	}
	header .body>ul>li>ul>li>a {
		padding: 6px 20px;
	}
	header .body .shade {
		display: none;
		position: fixed;
		z-index: 998;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #000;
		opacity: .8;
	}
	header .menu {
		display: block;
		margin-right: 15px;
	}
	header .menu p {
		height: 2px;
		width: 30px;
		background-color: #999;
		margin: 6px 0;
		border-radius: 2px;
	}
	.slides {
		height: 200px;
	}
	.slides .slide-title {
		height: 100px;
		margin-top: -50px;
		padding: 0 50px;
	}
	.slides .slide-title h2 {
		font-size: 16px;
	}
	.slides .slide-title h1 {
		font-size: 24px;
		margin: 0;
	}
	.slides .slide-title a {
		display: none;
	}

	
	.about .content {
		margin-top: 40px;
		padding: 0 24px;
	}
	
	.platform .group {
		flex-direction: column;
		align-items: center;
		padding: 0 24px;
		margin-top: 0;
	}
	.platform .group .item {
		padding-top: 40px;
		width: 100%;
	}
	.platform .group .item .title {
		padding: 0 20px 30px;
		margin-top: 20px;
	}
	.platform .group .item .content {
		padding: 0 10px;
	}

	.articles .group {
		margin: 40px 0 0;
		flex-direction: column;
		align-items: center;
	}
	.articles .group .item {
		flex: none;
		width: 100%;
		padding: 0 24px;
	}
	.articles .group .item + .item {
		margin-top: 40px; 
	}
	.articles .group .item .thumb {
		height: 180px;
		margin-bottom: 10px;
	}
	.articles .group .item .info {
		height: auto;
	}
	.articles .group .item .info .time {
		display: none;
	}
	.articles .group .item .info .text {
		padding-left: 0;
	}
	
	.footer .group {
		
	}
	.footer .group .qr {
		display: none;
	}
	.footer .group + .group {
		display: flex;
		width: 100%;
		flex-direction: column;
		align-items: center !important;
	}
	.footer .group .info {
		margin-right: 0;
	}
	.footer .group .qr {
		margin-top: 40px;
	}
	.footer .group .info .logo {
		text-align: center;
	}
	.copyright {
		padding: 20px 0;
		font-size: 14px;
	}
	.copyright a {
		display: block;
	}
	.banner {
		height: 100px;
	}
	.banner .tit {
		left: 20%;
		width: 60%;
		height: 40px;
		margin-top: -20px;
		margin-left: 0;
		font-size: 18px;
		line-height: 40px;
		overflow: hidden; 
		text-overflow: ellipsis;
		display: -webkit-box; 
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1; 
	}

	.xscg .banner {
		margin-top: 0;
	}
	.xscg .numCount ul {
		flex-direction: column;
	}
	.xscg #neirong2 p:nth-child(1) a {
		width: 50% !important;
	}

	.cpgx .content {
		overflow-x: auto;
	}
	.cpgx .content table {
		width: 1000px;
	}


	.crumbs {
		display: none;
	}
	.content-box {
		padding: 40px 20px;
	}
	.content-box .title {
		font-size: 18px;
		padding-bottom: 10px;
		margin-bottom: 20px;
		border-bottom: 1px solid #ccc;
	}

	.product .group {
		flex-direction: column;
	}
	.product .group .left {
		width: 100%;
		margin: 0;
	}
	.product .group .right {
		display: none;
	}
	.product .group .right ul {
		margin: 0;
	}
	.product .content-box {
	    padding: 0 20px;
	}
	.product .content-box + .content-box {
	    padding-top: 40px;
	}
	
	.welfare .body>.title {
		margin-bottom: 0;
	}
	.welfare .group {
		flex-direction: column;
	}
	.welfare .group .item {
		width: 100%;
		padding: 20px;
	}
	.welfare .group .item .title {
		font-size: 16px;
		padding: 30px 20px;
	}
	.welfare .group .item ul {
		padding: 0 30px 30px;
	}
	.join .table .th p:nth-child(2),
	.join .table .th p:nth-child(4),
	.join .table .th p:nth-child(5),
	.join .table .td p:nth-child(2),
	.join .table .td p:nth-child(4),
	.join .table .td p:nth-child(5),
	.join .table .th p i {
		display: none;
	}
	.join .table p {
		font-size: 14px;
		padding: 0;
	}
	.join .table p:nth-child(1) {
		flex: none;
		width: 65%;
		padding: 0 5px;
	}
	.join .table p:nth-child(2) {
		flex: none;
		width: 35%;
	}
	.join .detail {
		margin: 10px;
		padding: 20px;
	}

	.about .body .name {
		font-size: 20px;
	}
	.about .body .details {
		flex-direction: column;
	}
	.about .body .details .left {
		margin-right: 0;
		width: 100%;
		padding: 0 20px;
	}
	.about .body .details .right {
		margin: 40px 0 0 20px;
		width: calc(100% - 40px);
	}
	.culture .group {
		padding: 0 30px;
		flex-direction: column;
	}
	.culture .item:nth-child(2),
	.culture .item {
		margin-top: 40px;
		width: auto;
		height: auto;
		padding: 40px;
	}
	.culture .item img {
		margin-top: 0;
	}

	.history .group .img {
		display: none;
	}
	.history .group .tree {
		width: 100%;
		padding-top: 40px;
		margin-left: 40px;
		padding-left: 40px;
		padding-right: 20px;
	}
	.history .group .tree .year {
		font-size: 20px;
		margin-bottom: 0;
	}
	.history .group .tree .year:before {
		left: -44px;
	}
	.history .group .tree .incident {
		font-size: 14px;
	}
	.history .group .tree li {
		margin-bottom: 30px;
	}
	.history .group .tree li:nth-child(1),
	.history .group .tree li:nth-child(2),
	.history .group .tree li:nth-child(3),
	.history .group .tree li:nth-child(4) {
		opacity: 1 !important;
	}
	
	.body .tit {
		/* margin-left: 20px; */
	}
	.team {
		padding: 40px 20px;
	}
	.team .group {
		margin: 0;
	}
	.team .group .item {
		width: 100%;
		padding: 0 20px;
	}
	.team .group .item + .item {
		margin-top: 40px;
	}
	.team .group .item .box .surface img {
		height: 320px
	}
	.team .group .item .box .surface .name {
		font-size: 20px;
	}
	.team .group .item .box .surface .affair,
	.team .group .item .box .surface .position {
		font-size: 14px;
	}
	.team .group .item .box .intro {
		padding: 20px;
		font-size: 14px;
	}
	
	.article-list .group .left ul li {
		margin-top: 30px;
	}
	.article-list .group .left {
		width: 100%;
		margin-right: 0;
	}
	.article-list .group .right {
		display: none;
	}
	.article-list .group .left .swiper-slide img {
		height: 200px;
	}
	.article-list .group .left .swiper-slide .text {
		font-size: 14px;
		font-weight: normal;
		line-height: 32px;
		padding: 0 14px;
	}
	.article-list .swiper-button-next, .article-list .swiper-button-prev {
		display: none;
	}
	.article-list .group .left .swiper-container-horizontal>.swiper-pagination-bullets,
	.article-list .group .left .swiper-pagination-custom, .swiper-pagination-fraction {
		bottom: 40px;
	}
	.article-list .group .left ul {
		padding: 0;
	}
	.article-list .group .left ul li a {
		font-size: 16px;
	}
	.article-list .group .left .info .description {
		font-size: 14px;
		overflow: hidden; 
		text-overflow: ellipsis;
		display: -webkit-box; 
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3; 
	}

	.awards {
		padding: 40px 20px;
	}
	.awards .swiper-button-next {
		background-size: 16px 26px;
		right: 0;
	}
	.awards .swiper-button-prev {
		background-size: 16px 26px;
		left: 0;
	}
	.LookPicture .Look_before,
	.LookPicture .Look_next {
		top: auto !important;
		margin-top: 0 !important;
		bottom: 60px;
		zoom: 0.5;
	}
	.LookPicture .Look_before:hover {
		left: 50px !important;
	}
	.LookPicture .Look_next:hover {
		right: 50px !important;
	}
	.awards #swiper1 {
		/* display: none; */
	}
	.awards #swiper2 {
		display: block;
	}
	.awards #swiper2 .swiper-slide img {
		max-height: 100%;
		max-width: 100%;
		object-fit: contain;
	}
	.awards #swiper2 .swiper-slide-active {
		text-align: center;
	}
	.awards #swiper2 .swiper-slide p {
		font-size: 16px;
	}
	.article-list .group .left {
		padding: 0 20px;
	}
	.article-list .group .left .title {
		font-size: 20px;
	}
	.article-list .group .left .info {
		font-size: 12px;
		padding-bottom: 0;
	}
	.article-list .group .left .info span {
		padding: 0 8px;
	}

	.map-box .body {
		flex-direction: column;
		padding: 40px 20px;
	}
	.map-box .map {
		flex: none;
		width: 100%;
		height: 320px;
	}
	.map-box .group {
		width: 100%;
		margin-left: 0;
	}
	.map-box .group .item p {
		font-size: 14px;
	}
	.map-box .group .item {
		height: auto;
	}
	.map-box .group .item + .item {
		padding-top: 40px;
	}

	.article-list .group .left form {
		display: flex;
    	margin-bottom: 20px;
	}
	.article-list .group .left input {
	    flex: 1;
	    height: 48px;
	    border: 1px solid #f1f1f1;
	    border-right: 0;
	    border-radius: 5px 0 0 5px;
	    padding-left: 20px;
	}
	.article-list .group .left button {
	    width: 90px;
	    height: 48px;
	    background-color: #f7faff;
	    border: 1px solid #f1f1f1;
	    border-radius: 0 5px 5px 0;
	    cursor: pointer;
	}
}
@media (min-width: 1200px) {
	.body {
		width: 1120px;
		margin: 0 auto;
	}
	.welfare .group .item:nth-child(2) ul:after {
	    bottom: -32px;
	}
	.team .group {
		margin: 0 -12px;
	}
	.team .group .item {
		padding: 0 12px;
	}
	.team .group .item .box .surface {
		padding: 14px;
	}
	.team .group .item .box .intro {
		padding: 0 14px;
		margin: 14px 0;
	}
	.team .group .item .box .surface img {
		height: 300px;
	}

}
@media (min-width: 1500px) {
	.body {
		width: 1440px;
		margin: 0 auto;
	}
	.welfare .group .item:nth-child(2) ul:after {
	    bottom: -42px;
	}
	.team .group {
		margin: 0 -80px;
	}
	.team .group .item {
		padding: 0 80px;
	}
	.team .group .item .box .surface {
		padding: 30px;
	}
	.team .group .item .box .intro {
		padding: 0 30px;
		margin: 30px 0;
	}
	.team .group .item .box .surface img {
		height: 260px;
	}
}