* {
	margin: 0;
	padding: 0;
}

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

a {
	text-decoration: none;
	color: inherit;
}

input {
	border: none;
	outline: none;
}

html {
	font-size: 16px;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, Arial, PingFang SC, Hiragino Sans GB, Microsoft Yahei, STHeiti, SimSun, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

img {
	width: 100%;
	height: 100%;
}

button {
	border: none;
	outline: none;
	background: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	/* 添加其他样式 */
}

html,
body {
	position: relative;
	height: 100%;
}

.swiper {
	width: 100%;
	height: 100%;
}

/* 顶部 */
.top_header {
	width: 100%;
	background-color: #F8F8F8;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}

/* 顶部标题 */
.top_header .head {
	/* width: 80%; */
	max-width: 1920px;
	height: auto;
	margin: auto;
}

@media screen and (max-width: 1920px) {

	.top_header .head {
		width: 80%;
		margin: auto;
	}
}

.top_header .head .slogan {
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.top_header .head .slogan .title {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #313131;
}

.top_header .head .slogan .phone {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.top_header .head .slogan .phone img {
	width: 19px;
	height: 18px;
}

.top_header .head .slogan .phone span {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #313131;
	margin-left: 15px;
}

/* 导航栏 */
.top_header .navbar {
	width: 100%;
	height: 90px;
	background-color: #FFFFFF;
}

.top_header .navbar .nav {
	max-width: 1920px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: auto;
}

@media screen and (max-width: 1920px) {

	.top_header .navbar .nav {
		width: 80%;
	}
}

.top_header .navbar .nav .logo {
	width: 126px;
	height: auto;
}

.top_header .navbar .nav .logo img {
	width: 100%;
	height: 100%;
}

.top_header .navbar .nav .column {
	height: 100%;
	display: flex;
	align-items: center;
}

.top_header .navbar .nav .column>li {
	display: inline-block;
	height: 100%;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #999999;
	line-height: 90px;
	margin-right: 88px; 
	position: relative;
}

.top_header .navbar .nav .column li a {
    display: inline-block;
}

.top_header .navbar .nav .column li:last-child {
	margin-right: 0;
}

.top_header .navbar .nav .column .selected {
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #009C41;
    position: relative;
}

.top_header .navbar .nav .column .selected::after {
    content: "";
    width: 100%;
    height: 3px;
    background: #009C41;
    border-radius: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.top_header .navbar .nav .sub li a {
	color: #515151;
}

.top_header .navbar .nav .sub li a:hover {
	color: #519032;
}

.top_header .navbar .nav li .sub {
	width: 120px;
	background: rgba(255, 255, 255, .95);
	line-height: 40px;
	border-top: 2px solid #519032;
	position: absolute;
	left: 50%;
    /* right: 0; */
    transform: translateX(-50%);
	margin: auto;
	top: 85px;
	z-index: 999;
	display: none;
}

.top_header .navbar .nav li .sub>img {
	width: 17px;
	height: 5px;
	transform: rotate(180deg);
	position: absolute;
	top: -5px;
	left: 0;
	right: 0;
	margin: auto;
}

.top_header .navbar .nav li .sub li {
	width: 100%;
	text-align: center;
	clear: both;
	border-top: 1px solid #e7e7e7;
	color: #666666;
	font-size: 16px;
}

.top_header .navbar .nav .language {
	width: 150px;
	height: 40px;
	background: #FFFFFF;
	border: 1px solid #E5E5E5;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 13px;
	box-sizing: border-box;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #AAAAAA;
}

.top_header .navbar .nav .language .select {
	color: #009C41;
}



/* 悬浮球 */

.float {
    position: fixed;
    right: 15px;
    bottom: 100px;
    z-index: 99999;
}

.float .contact {
    position: relative;
    cursor: pointer;
}

.float .contact .img {
    width: 74px;
    height: 74px;
    border-radius: 50%;
}

.float .contact .img img {
    width: 100%;
    height: 100%;
}

.float .contact .text {
    width: 175px;
    height: 60px;
    background: #F8F8F8;
    border-radius: 5px 0px 0px 5px;
    padding: 8px 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: absolute;
    right: 35px;
    top: calc(50% - 30px);
    z-index: -1;
    display: none;
}

.float .contact:hover .text {
    display: flex;
}

.float .contact .text span:first-child {
    font-size: 14px;
    font-family: Adobe Heiti Std;
    font-weight: normal;
    color: #626262;
}

.float .contact .text span:last-child {
    font-size: 14px;
    font-family: Adobe Heiti Std;
    font-weight: normal;
    color: #AAAAAA;
}

.float .backtop {
    cursor: pointer;
}

.float .backtop .img {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    margin-top: 20px;
}

.float .backtop .img img {
    width: 100%;
    height: 100%;
}


/* 第一屏 */

/* banner图 */

.first_screen .banner {
	margin-top: 140px;
	height: 76vh;
}

.first_screen .banner_swiper {
	width: 1920px;
	min-width: 1920px
}

@media screen and (max-width: 1920px) {

	.first_screen .banner_swiper {
		width: auto;
		min-width: 1200px;
		height: 76vh;
	}
}

.first_screen .banner_swiper .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}

.first_screen .banner_swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
}

/* 首屏底部栏 */
.first_screen .panel {
	width: 100%;
	height: 90px;
	position: absolute;
	bottom: 0;
	z-index: 99;
}

.first_screen .panel .box {
	height: 100%;
	width: 100%;
	max-width: 1920px;
	display: flex;
	align-items: center;
	margin: auto;
	background-color: #178D3E;
	overflow: hidden;
}

.first_screen .panel .cube {
	height: 100%;
	position: relative;
	cursor: pointer;
}

.first_screen .panel .cube img {
	width: 38px;
	height: 35px;
}

.first_screen .panel .cube:hover {
	background-color: #F69F2B;
}

.first_screen .panel .cube:first-child {
	width: 28%;
	border-left: 0 solid transparent;
	transform: skew(20deg);
	margin-left: -20px;
}

.first_screen .panel .cube:nth-child(2) {
	width: 22%;
	border-left: 0 solid transparent;
	transform: skew(20deg);
}

.first_screen .panel .cube:nth-child(3) {
	width: 20%;
	border-left: 0 solid transparent;
	transform: skew(20deg);
}

.first_screen .panel .cube:nth-child(4) {
	width: 20%;
	border-left: 0 solid transparent;
	transform: skew(20deg);
}

.first_screen .panel .cube:last-child {
	width: 31%;
	border-left: 0 solid transparent;
	transform: skew(20deg);
	margin-right: -20px;
	padding-right: 20px;
}

.first_screen .panel .cube:first-child .about {
	margin-right: 70px;
}

.first_screen .panel .cube:nth-child(2) .about {
	justify-content: flex-start;
	margin-left: 22px;
}

.first_screen .panel .cube:nth-child(3) .about {
	justify-content: flex-start;
	margin-left: 22px;
}

.first_screen .panel .cube:nth-child(4) .about {
	justify-content: flex-start;
	margin-left: 22px;
}

.first_screen .panel .cube:last-child .about {
	justify-content: flex-start;
	margin-left: 22px;
}

.first_screen .panel .cube .about {
	height: 100%;
	padding-left: 10px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	transform: skew(-20deg);
	justify-content: flex-end;
}

.first_screen .panel .cube .about .message {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-left: 20px;
}

.first_screen .panel .cube .about .message div:first-child {
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	text-overflow: ellipsis;
}

.first_screen .panel .cube .about .message div:last-child {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	margin-top: 15px;
	text-align: left;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	text-overflow: ellipsis;
}

.model {
	height: 100vh !important;
	overflow: hidden;
}

/* 模块标题 */

.model .m_title {
	font-size: 32px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #000000;
	text-align: center;
	margin-bottom: 5vh;
	margin-top: 14.5vh;
	/* margin: 102px 0 80px; */
}

@media screen and (max-width: 1440px) {

	.model .m_title {
	    margin-bottom: 3vh;
	    margin-top: 13.5vh;
    }
}


/* 关于和康源 */
.about_hky {
	position: relative;
	background-color: #F5F5F5;
}

.about_hky .substance {
	max-width: 1200px;
	height: auto;
	margin: auto;
	padding: 40px 50px;
	box-sizing: border-box;
	border-radius: 10px;
	background-color: #FFFFFF;
}

.about_hky .substance .intro {
	display: flex;
	align-items: center;
	padding-bottom: 40px;
	border-bottom: 1px solid #F8F8F8;
}

.about_hky .substance .intro .message {
	height: 291px;
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
}

.about_hky .substance .intro .message .title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	padding-left: 25px;
	box-sizing: border-box;
}

.about_hky .substance .intro .message .title::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: #009C41;
}

.about_hky .substance .intro .message .title div:first-child {
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #313131;
}

.about_hky .substance .intro .message .title div:last-child {
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #F49F2B;
	margin-top: 8px;
}

.about_hky .substance .intro .message .word {
	font-size: 16px;
	font-family: PingFang SC;
	font-weight: 500;
	color: #626262;
	line-height: 30px;
	text-indent: 2em;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	display: -webkit-box;
	text-overflow: ellipsis;
}

.about_hky .substance .intro .message .btn {
	width: 170px;
	height: 45px;
	background: #FFFFFF;
	border: 1px solid #009C41;
	border-radius: 23px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #009C41;
	text-align: center;
	line-height: 45px;
}

.about_hky .substance .intro .message .btn a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.about_hky .substance .intro .img {
	width: 421px;
	height: 291px;
	border-radius: 10px;
	margin-left: 78px;
}

.about_hky .substance .intro .img img {
	width: 100%;
	height: 100%;
}

.about_hky .column {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 40px;
}

.about_hky .column .cube {
    width: 260px;
    height: 174px;
    background: #F8F8F8;
    border-radius: 10px;
}

.about_hky .column .cube a {
    align-items: flex-start;
    padding: 25px 26px 0 26px;
    box-sizing: border-box;
    display: inline-flex;
    width: 100%;
    height: 100%;
}

.about_hky .column .cube .icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
}

.about_hky .column .cube .word {
	margin-left: 25px;
}

.about_hky .column .cube .word .title div:first-child {
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #626262;
}

.about_hky .column .cube .word .title div:last-child {
	font-size: 12px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #7D7D7D;
	margin-top: 9px;
}

.about_hky .column .cube .word .text {
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	text-overflow: ellipsis;
	font-size: 12px;
	font-family: PingFang SC;
	font-weight: 500;
	color: #AAAAAA;
	line-height: 22px;
	margin-top: 24px;
}

.about_hky .back {
	height: 350px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.about_hky .back img {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 1440px) {
    .about_hky .substance{
        padding: 30px 40px;
    }
    .about_hky .intro{
        padding-bottom: 30px;
    }
    .about_hky .column{
        margin-top: 30px;
    }
    .about_hky .column .cube{
        height: auto;
        padding: 20px;
        box-sizing: border-box;
    }
    .about_hky .column .cube a{
        padding: 0;
    }
    .about_hky .column .cube .word .text{
        margin-top: 15px;
    }
}


/* 产品中心 */
.product .p_plate {
	display: flex;
	align-items: center;
	max-width: 1200px;
	margin: auto;
}

.product .p_plate .big {
	width: 379px;
	height: 630px;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	background-color: rgba(0, 0, 0, 0.25);
	box-sizing: border-box;
}

.product .p_plate .back {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

.product .p_plate .back img {
	width: 100%;
	height: 100%;
}

.product .p_plate .big .icon {
    width: 62px;
    height: 52px;
    margin: 0 auto;
    margin-bottom: 29px;
    display: none;
}

.product .p_plate .big .icon img {
    width: 100%;
    height: 100%;
}

.product .p_plate .big .title {
    font-size: 26px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.product .p_plate .big .title::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    left: calc(50% - 12.5px);
    bottom: 0;
}

.product .p_plate .big .text {
    width: 270px;
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 26px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    text-overflow: ellipsis;
    margin: 0 auto;
    margin-top: 50px;
}

.product .p_plate .big .sign {
    width: 37px;
    height: 17px;
    margin: 0 auto;
    margin-top: 49px;
}

.product .p_plate .big .sign img {
    width: 100%;
    height: 100%;
}


.product .p_plate .small {
	display: flex;
	flex-wrap: wrap;
	flex: 1;
	margin-left: 31px;
}

.product .p_plate .small .cube {
	width: 379px;
	height: 298px;
	background-color: rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	box-sizing: border-box;
	margin-right: 31px;
	margin-bottom: 31px;
}

.product .p_plate .small .cube a {
    padding-top: 45px;
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.product .p_plate .small .cube:nth-child(2n) {
	margin-right: 0;
}

.product .p_plate .small .cube:nth-child(3),
.product .p_plate .small .cube:nth-child(4) {
	margin-bottom: 0;
}

.product .p_plate .small .cube .back {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.product .p_plate .small .cube .back img {
	width: 100%;
	height: 100%;
}

.product .p_plate .small .cube .about .icon {
	width: 62px;
	height: 52px;
	display: none;
	margin: 0 auto;
	margin-bottom: 29px;
}

.product .p_plate .small .cube .about .icon img {
	width: 100%;
	height: 100%;
}


.product .p_plate .small .cube .title {
	font-size: 26px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
	position: relative;
	padding-bottom: 20px;
	box-sizing: border-box;
}

.product .p_plate .small .cube .title::after {
	content: "";
	position: absolute;
	width: 25px;
	height: 3px;
	background: #FFFFFF;
	left: calc(50% - 12.5px);
	bottom: 20px;
}

.product .p_plate .small .cube .text {
	width: 270px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 26px;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	text-overflow: ellipsis;
	margin: 0 auto;
	margin-top: 50px;
}

.product .p_plate .small .cube .sign {
	width: 37px;
	height: 17px;
	margin: 0 auto;
	margin-top: 49px;
}

.product .p_plate .small .cube .sign img {
	width: 100%;
	height: 100%;
}

.product .p_plate .hover a {
    padding-top: 211px;
    box-sizing: border-box;
}

.product .p_plate .hover {
    cursor: pointer;
}

.product .p_plate .hover a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.product .p_plate .hover_style {
    background-color: rgba(0, 156, 65, 0.75) !important;
}

.product .p_plate .hover_style .about .icon {
    display: block !important;
}

.product .p_plate .hover_style .sign {
    display: none !important;
}

.product .p_plate .hover_style .text {
    -webkit-line-clamp: 3 !important;
    margin-top: 0px !important;
}


@media screen and (max-width: 1440px) {
    .product .p_plate{
        transform: scale(0.85);
    }
}


/* 和康源新闻 */
.hky_news {
	background-color: #FFFFFF;
}

.hky_news .tabs {
	max-width: 1200px;
	margin: auto;
}

.hky_news .tabs ul {
	display: flex;
	align-items: center;
	justify-content: center;
}

.hky_news .tabs ul li {
	display: inline-block;
	width: 180px;
	height: 50px;
	background: rgba(50, 177, 108, 0.15);
	margin-right: 60px;
	overflow: hidden;
}

.hky_news .tabs ul li:first-child {
	border-radius: 10px 0px 0px 0px;
}

.hky_news .tabs ul li:last-child {
	border-radius: 0px 10px 0px 0px;
}

.hky_news .tabs ul li:last-child {
	margin-right: 0;
}

.hky_news .tabs ul li a {
	text-decoration: none;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.hky_news .tabs ul li a .icon {
	width: 22px;
	height: 22px;
}

.hky_news .tabs ul li a span {
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #009C41;
	margin-left: 10px;
}

.hky_news .tabs ul li.active a {
	background: #009C41;
}

.hky_news .tabs ul li.active a span {
	color: #FFFFFF !important;
}

.hky_news .tab-content {
	margin-top: -1px;
	/* 避免边框重叠 */
}

.hky_news .tab-pane {
	display: none;
}

.hky_news .tab-pane .pane_about {
	display: flex;
	align-items: center;
	margin-top: 71px;
}

.hky_news .tab-pane.active {
	display: block;
}

.hky_news .tab-pane .hotnews {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.hky_news .tab-pane .hotnews .sign {
	width: 112px;
	height: 26px;
	border-radius: 5px;
	background: url(../../img/cn/31.png) no-repeat;
	background-size: 100% 100%;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	text-align: center;
	line-height: 26px;
}

.hky_news .tab-pane .hotnews .journalism {
	width: 507px;
	margin-top: 20px;
}

.hky_news .tab-pane .hotnews .journalism a {
	display: flex;
}

.hky_news .tab-pane .hotnews .journalism .img {
	width: 507px;
	height: 309px;
	border-radius: 10px;
	overflow: hidden;
}

.hky_news .tab-pane .hotnews .journalism .img img {
	width: 100%;
	height: 100%;
}

.hky_news .tab-pane .hotnews .journalism .message {
    margin-top: 40px;
}

.hky_news .tab-pane .hotnews .journalism .message a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hky_news .tab-pane .hotnews .journalism .message .left {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hky_news .tab-pane .hotnews .journalism .message .left .time {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hky_news .tab-pane .hotnews .journalism .message .left .time div:first-child {
	font-size: 26px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #313131;
}

.hky_news .tab-pane .hotnews .journalism .message .left .time div:last-child {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #AAAAAA;
	margin-top: 5px;
}

.hky_news .tab-pane .hotnews .journalism .message .left .hot {
	width: 45px;
	height: 22px;
	background: #F59F2B;
	border-radius: 5px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	text-align: center;
	line-height: 22px;
	margin-top: 10px;
}

.hky_news .tab-pane .hotnews .journalism .message .right {
	display: flex;
	flex-direction: column;
	margin-left: 25px;
}

.hky_news .tab-pane .hotnews .journalism .message .right .title {
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #313131;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	text-overflow: ellipsis;
}

.hky_news .tab-pane .hotnews .journalism .message .right .text {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #7D7D7D;
	line-height: 24px;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	text-overflow: ellipsis;
	margin-top: 15px;
}

.hky_news .tab-pane .n_list {
	margin-left: 92px;
	flex: 1;
}

.hky_news .tab-pane .n_list .cube:hover .title {
    color: #009C41 !important;
}

.hky_news .tab-pane .n_list .cube:hover .function div:last-child {
    color: #F59F2B;
}

.hky_news .tab-pane .n_list .cube {
	padding-top: 0px;
	padding-bottom: 31px;
	border-bottom: 1px solid #F5F5F5;
	box-sizing: border-box;
}

.hky_news .tab-pane .n_list .cube .title {
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #313131;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	text-overflow: ellipsis;
	position: relative;
	padding-top: 20px;
	padding-left: 15px;
	box-sizing: border-box;
}

.hky_news .tab-pane .n_list .cube .title::after {
	content: "";
	position: absolute;
	width: 2px;
	height: 2px;
	background-color: #000000;
	border-radius: 50%;
	left: 0;
	top: calc(50% - 1px);
}

.hky_news .tab-pane .n_list .cube .function {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 21px;
}

.hky_news .tab-pane .n_list .cube .function div:first-child {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #AAAAAA;
}

.hky_news .tab-pane .n_list .cube .function div:last-child {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #AAAAAA;
}

@media screen and (max-width: 1440px) {
    .hky_news .tabs{
        transform: scale(0.9);
    }
    .hky_news .tab-pane .pane_about{
        margin-top: 50px;
    }
}


/* 首页底部 */
.hky_footer .hky_honor {
	padding-top: 1px;
	box-sizing: border-box;
	height: 584px;
	position: relative;
}

.hky_footer .hky_honor .title {
	color: #FFFFFF;
}

.hky_footer .hky_honor .back {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.hky_footer .hky_honor .back img {
	width: 100%;
	height: 100%;
}

.hky_footer .hky_honor .m_title {
	color: #FFFFFF;
}

.hky_footer .hky_honor .certificate {
	max-width: 1200px;
	display: flex;
	align-items: center;
	margin: auto;
}

.hky_footer .hky_honor .certificate .item {
	width: 163px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-right: 36px;
}

.hky_footer .hky_honor .certificate .item:last-child {
	margin-right: 0;
}

.hky_footer .hky_honor .certificate .item img {
	width: 100%;
	height: 139px;
}

.hky_footer .hky_honor .certificate .item span {
	font-size: 16px;
	height: 45px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 22px;
	text-align: center;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	text-overflow: ellipsis;
	margin-top: 30px;
}

.hky_footer .hky_honor .more {
	width: 170px;
	height: 45px;
	background: #F59F2B;
	border-radius: 23px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	text-align: center;
	line-height: 45px;
	margin: auto;
	margin-top: 73px;
}

.hky_footer .hky_honor .more a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.base_footer {
	width: 100%;
	height: 356px;
	background: #000000;
}

.base_footer .footer_about {
	max-width: 1200px;
	height: 100%;
	margin: auto;
	padding: 44px 0;
	box-sizing: border-box;
}

.base_footer .footer_about .head {
	width: 100%;
	display: flex;
	align-items: center;
	padding-bottom: 37px;
	box-sizing: border-box;
	border-bottom: 1px solid #1E1E1E;
}

.base_footer .footer_about .head .link {
	display: flex;
	flex: 1;
	position: relative;
}

.base_footer .footer_about .head .link::after {
	content: "";
	position: absolute;
	top: calc(50% - 78px);
	right: 0;
	width: 1px;
	height: 156px;
	background: #1E1E1E;
}

.base_footer .footer_about .head .link .list {
	width: 20%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.base_footer .footer_about .head .link .list li {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #AAAAAA;
	margin-bottom: 19px;
}

.base_footer .footer_about .head .link .list li:first-child {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	margin-bottom: 28px;
}

.base_footer .footer_about .head .link .list li:last-child {
	margin-bottom: 0;
}

.base_footer .footer_about .head .ewm {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-left: 45px;
}

.base_footer .footer_about .head .ewm img {
	width: 115px;
	height: 115px;
}

.base_footer .footer_about .head .ewm span {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	text-align: center;
	margin-top: 24px;
}

.base_footer .footer_about .bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;

}

.base_footer .footer_about .bottom .message p {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 20px;
}

.base_footer .footer_about .bottom .logo {
	width: 119px;
	height: 38px;
}

.base_footer .footer_about .bottom .logo img {
	width: 100%;
	height: 100%;
}


@media screen and (max-width: 1440px) {
    .hky_footer{
        display: flex;
        flex-direction: column;
    }
    .hky_footer .hky_honor{
        flex: 1;
    }
    .hky_footer .hky_honor .more{
        margin-top: 40px;
    }
    .base_footer{
        height: auto;
    }
    .base_footer .footer_about{
        padding: 20px 0;
    }
    .base_footer .footer_about .head{
        padding-bottom: 25px;
    }
    .base_footer .footer_about .bottom{

    }
    .base_footer .footer_about .head .link .list li{
        margin-bottom: 18px;
    }
    .base_footer .footer_about .head .link .list li:first-child{
        margin-bottom: 20px;
    }
}
