html,
body {
	position: relative;
	height: 100%;
}

.container {
	max-width: 1600px;
}

.wrapper-btn {
	position: absolute;
	top: 40%;
	width: 100%;
	z-index: 10;
}

.wrapper-btn-next,
.wrapper-btn-prev {
	color: #ffffff;
	background: #c8a063;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	font-size: 20px;
	line-height: 26px;
	text-align: center;
	position: absolute;
}

.wrapper-btn-next {
	right: 15px;
}

.wrapper-btn-prev {
	left: 15px;
}

.wrapper-btn .wrapper-btn-disabled {
	display: none;
}

/*header PC*/

.headervue {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	text-align: center;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}


.header-navbar {
	padding: 0;
	width: 100%;
	flex-wrap: nowrap;
}

.menu_mask {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(5px);
	z-index: 1;
	height: 530px;
	display: none;
}

.navbar-con {
	display: flex;
	flex-basis: auto;
	height: 100%;
}

.headervue .iconfont {
	position: relative;
	top: 0.02rem;
	font-size: 0.2rem;
}

.headervue .item>a {
	display: flex;
	height: 100%;
	margin: 0 36px;
	cursor: pointer;
	white-space: nowrap;
	align-items: center;
	color: #ffffff;
}

.headervue .item a:hover,
.headervue .item.show>a {
	color: #c8a063;
	text-decoration: none;
	font-weight: bold;
}

.headervue .header-wrap {
	color: #ffffff;
	width: 100%;
	height: 100px;
	display: flex;
	position: relative;
	z-index: 2;
}

.headervue .header-wrap .headerbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 90%;
	max-width: none;
}

.headervue .header-wrap .header-logo {
	height: 72px;
	display: flex;
	align-items: center;
	margin-right: 28px;
}

.headervue .header-wrap .header-logo .logo-img-w {
	display: block;
}

.headervue .header-wrap .header-logo .logo-img {
	display: none;
}

.headervue .header-wrap .header-right {
	display: flex;
	align-items: center;
	color: #999999;
	margin-right: 20px;
}

.headervue .header-wrap .header-right .langImg img {
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 10px !important;
	height: 6px !important;
	margin-left: 5px;
	position: relative;
	top: 2px;
}

.headerbox-nav {
	margin-right: 20px;
}

.headervue .header-wrap .header-right .nav-search {
	font-size: 22px;
	font-family: 'Impact';
}

.headervue .header-wrap .header-right .nav-search .btn {
	color: #ffffff;
}


.headervue .header-wrap .header-right .nav-search .btn:hover {
	text-decoration: none;
	color: #c8a063;
}

.headervue .header-wrap .header-right .lang {
	position: relative;
	cursor: pointer;
	display: flex;
	height: 100%;
	font-size: 16px;
	align-items: center;
	margin-left: 30px;
}

.headervue .header-wrap .header-right .lang>a {
	color: #ffffff;
	position: relative;
	display: block;
	width: 50px;
	padding: 5px 10px;
}

.headervue .header-wrap .header-right .lang>a span {
	position: relative;
	z-index: 1;
}

.headervue .header-wrap .header-right .lang>a:hover {
	text-decoration: none;
	font-weight: bold;
}

.headervue .header-wrap .header-right .lang>a:after {
	content: "";
	position: absolute;
	background: #c8a063;
	display: block;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: skew(-20deg);

}

.headervue .dropdown .dropdown-menu {
	position: absolute;
	top: calc(100% - 36px);
	min-width: 360px;
	/* left: 100%; */
	font-size: 14px;
	width: 200px;
	background: none;
	border: none;
	border-radius: 0;
	padding: 10px 0;
	margin-left: 36px;
	margin-top: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	opacity: 0;
	-webkit-transform: translateY(15px);
	transform: translateY(15px);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	display: block;
	z-index: -1;
	visibility: hidden;
}

.headervue .dropdown .show {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
	z-index: 10;
}

.headervue .dropdown-menu a {
	text-align: left;
	color: #333333;
	padding: 3px 0px;
	line-height: 26px;
}

.headervue .dropdown-menu a:hover {
	color: #c8a063;
	background-color: unset;
}

.minified {
	background: rgba(255, 255, 255, 0.6);
}

.headervue.minified .header-wrap {
	height: 90px;
}

.headervue.minified .hotpro-wrap {
	top: 90px;
}

.headervue.minified .header-wrap .header-logo .logo-img-w,
.headervue.on .header-wrap .header-logo .logo-img-w {
	display: none;
}

.headervue.minified .header-wrap .header-logo .logo-img,
.headervue.on .header-wrap .header-logo .logo-img {
	display: block;
}

.headervue.minified .item>a,
.headervue.on .item>a,
.headervue.minified .header-wrap .header-right .lang .btn-language,
.headervue.on .header-wrap .header-right .lang .btn-language,
.headervue.minified .header-wrap .header-right .nav-search .btn-search,
.headervue.on .header-wrap .header-right .nav-search .btn-search {
	color: #333333;
}


.header-right .lang .btn-language,
.header-right .lang .btn-search {
	color: #ffffff;
	border: none;
	border-radius: 0;
	font-size: 16px;
	padding: 0;
}

.header-right .lang .btn-language:after {
	display: none;
}

.header-right .lang .btn-language:hover,
.header-right .lang .btn-search:hover {
	background: none;
}

.header-right .lang .btn-language.active,
.header-right .lang .btn-language:active,
.header-right .lang .btn-language:focus,
.header-right .lang .btn-search:active,
.header-right .lang .btn-search:focus,
.open>.dropdown-toggle.btn-language {
	color: #c8a063;
	border: none;
	background: none;
	box-shadow: none;
	outline: none;
}

.btn-language.active.focus,
.btn-language.active:focus,
.btn-language.active:hover,
.btn-language:active.focus,
.btn-language:active:focus,
.btn-language:active:hover,
.open>.btn-language.focus,
.open>.btn-language:focus,
.open>.btn-language:hover {
	color: #c8a063 !important;
	background: none !important;
	box-shadow: none;
	border: none;
}

.header-right .lang .btn-language .icon-earth {
	margin-right: 10px;
}

.header-right .lang .dropdown-menu {
	left: auto;
	right: -10px;
	margin-top: 0;
	font-size: 12px;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 4px;
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
	box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.header-right .lang .dropdown-menu>li>a {
	display: block;
	padding: 3px 20px;
	clear: both;
	font-weight: 400;
	line-height: inherit;
	color: #333;
	white-space: nowrap;
}

.dropdown-menu>li>a:focus,
.header-right .lang .dropdown-menu>li>a:hover {
	color: #ffffff;
	text-decoration: none;
	background-color: #c8a063;
}

.header-right .lang .dropdown-menu>li>a .language-ico {
	margin-right: 15px;
}

#header_vue {
	display: block;
}

#ph-nav {
	display: none;
}

.navbar-collapse .dropdown.show a.nav-link {
	border: none;
	background: rgba(0, 0, 0, 0.2);
}

.navbar-collapse .dropdown-menu {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 0;
}

.navbar-collapse .dropdown-menu a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
}

.navbar-collapse .dropdown-menu a:hover {
	background: none;
	color: rgba(255, 255, 255, 1);
	background: rgba(0, 0, 0, 0.2);
}

.header-navbar-m {
	background: #ffffff;
}

.header-navbar-m .header-logo img {
	height: 36px;
}

.header-navbar-m .navbar-con .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2851,51,51, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header-navbar-m .navbar-con .nav-tel {
	margin-right: 15px;
}

.header-navbar-m .navbar-con .nav-tel a {
	color: #333333;
}


.header-navbar-m .navbar-con .lang>a {
	color: #333333;
}

.header-navbar-m .navbar-con .lang .dropdown-menu {
	right: 0;
	left: auto;
}

.header-navbar-m .navbar-con {
	align-items: center;
}

.header-navbar-m .navbar-con .lang .dropdown-menu {
	position: absolute;
	color: #666 !important;
	top: 48px;
	max-height: 10.6rem;
	width: 100px;
	min-width: unset;
	background-color: #333333;
	z-index: 100;
	-webkit-box-shadow: 0 0 5px rgb(0 0 0 / 20%);
	box-shadow: 0 0 5px rgb(0 0 0 / 20%);
	border-radius: 4px;
	padding: 5px 0;
	margin-left: -50px;
}

.header-navbar-m .navbar-con .lang .dropdown-menu a {
	text-align: center;
	color: #ffffff;
	padding: 6px 15px;
	font-size: 14px;
}

.header-navbar-m .navbar-con .lang .dropdown-menu a:hover {
	color: #c8a063;
	background-color: unset;
}

#banner {
	position: relative;
}

#banner {
	position: relative;
}

#banner .swiper-slide {
	position: relative;
}

#banner .banner-nav {
	position: absolute;
	right: 2%;
	top: 50%;
	z-index: 9;
	margin-top: -60px;
}

#banner .banner-nav ul li {
	list-style: none;
}

#circle {
	stroke-dasharray: 80, 80;
	stroke-dashoffset: 80;
}

.banner-nav ul li {}

.banner-nav ul li a {
	position: relative;
	display: inline-block;
	width: 26px;
	height: 26px;
	cursor: pointer;
}

.banner-nav ul li a b {
	position: absolute;
	display: inline-block;
	width: 6px;
	height: 6px;
	background: #ffffff;
	border-radius: 100%;
	top: 50%;
	left: 50%;
	margin-top: -3px;
	margin-left: -3px;
	opacity: 0.5;
}

.ban-news {
	position: absolute;
	bottom: -30px;
	z-index: 999;
}

.banner-nav ul li.active a b {
	background: #c8a063;
	opacity: 1;
}

.container-title h1 {
	font-family: "MontserratBold";
	font-size: 48px;
	color: #111111;
	text-transform: uppercase;
}

.container-title img {
	margin-bottom: 15px;
}

.container-title p {
	margin-top: 30px;
	max-width: 720px;
}

.container-title-w h1 {
	color: #ffffff;
}

#index-pro {
	background: url(../images/index-pro-bg.jpg) bottom no-repeat;
	background-size: cover;
	overflow: hidden;
}

.index-pro-container {
	padding-top: 100px;
}

.index-pro-con {
	display: flex;
	position: relative;
}

.index-pro-serise-nav {
	width: 50%;
	position: relative;
}

.index-pro-serise-con {
	width: 50%;
}

.index-pro-serise-conner {
	position: relative;
	background: url(../images/pro-serise-bg.png) no-repeat;
	background-size: cover;
}

.index-pro-serise-conner:before {
	content: "";
	position: absolute;
	top: -70px;
	bottom: -70px;
	left: -70px;
	right: -70px;
	background: url(../images/icon-circle.png) no-repeat;
	background-size: cover;
}

.pro-serise-control {
	position: absolute;
	bottom: 10%;
	height: 40%;
}

.proseiseSwiper {
	height: 100%;
	overflow: hidden;
}

.proseiseSwiper .swiper-slide {
	height: auto;
	padding-left: 36px;
	position: relative;
	cursor: pointer;
}

.proseiseSwiper .swiper-slide:before {
	content: "";
	display: block;
	width: 21px;
	height: 22px;
	background: url(../images/icon-biao-g.png) no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
}

.proseiseSwiper .swiper-slide-thumb-active:before {
	background: url(../images/icon-biao.png) no-repeat;
}

.proseiseimgSwiper {
	overflow: hidden;
	width: 100%;
	z-index: 10;
	position: relative;
}

.proseiseimgSwiper .swiper-slide img {
	width: 100%;
}

.index-pro-serise-con .autoplay-progress {
	position: absolute;
	left: -35px;
	right: -35px;
	bottom: -35px;
	top: -35px;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: #000000;
}

.index-pro-serise-conner .autoplay-progress svg {
	--progress: 0;
	position: absolute;
	left: -35px;
	top: -35px;
	right: -35px;
	bottom: -35px;
	z-index: 10;
	stroke-width: 2px;
	stroke: #c8a064;
	fill: none;
	stroke-dashoffset: 2000;
	stroke-dasharray: 2000;
	transform: rotate(124deg);
}

.index-pro-serise-conner .autoplay-progress svg.circle-1 {
	z-index: 1;
}

.index-pro-serise-conner .autoplay-progress svg.circle-2 {
	--progress: 1;
	stroke: #eeeeee;
	z-index: 0;
	stroke-width: 1px;
	stroke-dashoffset: calc(2000 * (1 - var(--progress)));
}

.pro-serise-name {
	/* margin-top: 125px; */
	/* margin-bottom: 125px; */
	position: absolute;
	top: 15%;
}

.pro-serise-name h1 {
	font-family: 'MontserratBold';
	max-width: 500px;
	color: #111111;
}

.pro-serise-name .more {
	margin-top: 30px;
	display: block;
	width: 44px;
	height: 44px;
	background: url(../images/icon-jt.png) no-repeat #c8a063;
	border-radius: 50%;
	overflow: hidden;
	transition: 0.3s;
}

.pro-serise-name .more:hover {
	box-shadow: 0 0 0px 8px #c8a0638e;
}

.pro-serise-btn {
	position: absolute;
	top: 50%;
	width: 100%;
}

.pro-serise-btn .proseise-button-next,
.pro-serise-btn .proseise-button-prev {
	display: block;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	z-index: 99;
	opacity: 0;
	margin-top: -22px;
}

.index-pro-serise-conner:hover .pro-serise-btn .proseise-button-next,
.index-pro-serise-conner:hover .pro-serise-btn .proseise-button-prev {
	opacity: 1;
}

.pro-serise-btn .proseise-button-next {
	background: url(../images/icon-jt-l.png) no-repeat #c8a063;
	background-size: cover;
	left: -30px;
}

.pro-serise-btn .proseise-button-prev {
	background: url(../images/icon-jt.png) no-repeat #c8a063;
	background-size: cover;
	right: -30px;
}

#index-about {
	background: url(../images/index-about-bg.jpg) center no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.index-about-container {
	padding-top: 180px;
	padding-bottom: 180px;
	color: #ffffff;
}

.index-about-con {
	max-width: 668px;

}

.index-about-p {
	margin-top: 36px;
	line-height: 30px;
}

.container-more {
	margin-top: 36px;
}

.container-more a {
	display: block;
	width: 200px;
	height: 56px;
	border: 1px solid #c8a063;
	border-radius: 28px;
	color: #111111;
	position: relative;
	padding: 15px 30px;
}

.container-more a i {
	position: absolute;
	right: 7px;
	top: 7px;
	display: block;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	overflow: hidden;
	background: url(../images/icon-jt.png) no-repeat #c8a063;
	background-size: cover;
}

.container-more a:hover {
	background: #c8a063;
	text-decoration: none;
	border-color: #c8a063 !important;
}

.container-more.more-w a {
	border-color: #ffffff;
	color: #ffffff;
}

#index-adv {
	background: url(../images/index-adv-bg.jpg) center no-repeat;
	background-size: auto 100%;
	overflow: hidden;
}

.index-adv-container {
	padding-top: 230px;
	min-height: 940px;
	position: relative;
}

.index-adv-con {
	display: flex;
	justify-content: space-between;
}

.index-adv-title {
	max-width: 480px;
}

.index-adv-title h1 {
	font-weight: bolder;
	font-family: 'MontserratBold';
	color: #111111;
	margin-bottom: 50px;
}

.adv-num-list ul li {
	list-style: none;
	font-size: 24px;
	color: #111111;
	margin-bottom: 50px;
}

.adv-num-list ul li h1 {
	font-weight: bolder;
	font-family: 'MontserratBold';
	color: #111111;
	margin-bottom: 0;
}

.earth_box {
	position: absolute;
	width: 675px;
	height: 675px;
	left: 50%;
	top: 50%;
	margin-left: -337px;
	margin-top: -337px;
}

.earth_box #earth {
	width: 675px;
	height: 675px;
}

.newsSwiper {
	overflow: hidden;
}


.index-news-container {
	padding-bottom: 60px;
}

.index-news-con {
	margin-top: 36px;
}

.news-item a {
	display: block;
	position: relative;
	border-top: 1px solid #dedede;
	padding-top: 35px;
}

.news-item a:hover {
	text-decoration: none;
}

.news-item a:before {
	content: "";
	display: block;
	border-top: 1px solid #c8a063;
	width: 0;
	position: absolute;
	top: 0;
	left: 0;
	transition: ease 0.5s;
}

.news-item a:hover:before {
	width: 100%;
}

.news-item a .news-time {
	color: #727272;
	font-weight: bolder;
	margin-bottom: 15px;
}

.news-item a:hover .news-time {
	color: #111111;
}

.news-item a .news-img img {
	width: 100%;
}

.news-item a .news-name {
	color: #111111;
	font-weight: bolder;
	margin-top: 20px;
}

.news-item a .news-more {
	color: #727272;
	font-size: 14px;
	margin-top: 10px;
}

.news-item a:hover .news-more {
	color: #c8a063;
}

.newsswiper-pagination {
	position: relative;
	margin-top: 36px;
	margin-bottom: 36px;
}

.newsswiper-pagination .swiper-pagination-bullet {
	width: 15px;
	height: 15px;
}

.newsswiper-pagination .swiper-pagination-bullet-active {
	background: #c8a063;
}

#foot {
	background: #1c1a1a;
	color: #ffffff;
}

#foot a {
	color: #ffffff;
}

#foot a:hover {
	text-decoration: none;
	color: #c8a063;
}

.foot-social {
	padding-top: 120px;
	display: flex;
}

.foot-mail,
.foot-link {
	width: 45%;
}

.foot-mail {
	margin-right: 5%;
}

.foot-mail-con,
.foot-link-con {
	max-width: 500px;
}

.foot-title {
	margin-bottom: 26px;
}

.foot-title h1 {
	font-weight: bolder;
	font-size: 24px;
	font-family: 'MontserratBold';
	margin-bottom: 20px;
}

.foot-mail-form {
	position: relative;
}

.foot-mail-form input {
	width: 100%;
	outline: none;
	border: none;
	background: rgba(255, 255, 255, .25);
	border-radius: 24px;
	height: 48px;
	padding: 0 132px 0 31px;
	font-size: 14px;
	font-weight: 300;
	color: #FFFFFF;
	line-height: 30px;
}

.foot-mail-form input::-webkit-input-placeholder {
	color: #FFFFFF;
}

.foot-mail-form button {
	width: 48px;
	height: 48px;
	background: url(../images/icon-jt.png) no-repeat #c8a063;
	background-size: cover;
	border-radius: 50%;
	position: absolute;
	right: 0;
	top: 0;
}

.foot-link-con ul li {
	list-style: none;
	display: inline-block;
	margin-right: 22px;
}

.foot-nav {
	margin-top: 90px;
	display: flex;
}

.foot-nav-item.quicklink {
	width: 22%;
	margin-right: 2%;
}

.foot-nav-item.pro-serise-nav {
	width: 56%;
}

.foot-nav-item.contact {
	width: 22%;
	margin-left: 2%;
}

.foot-nav-ul li {
	list-style: none;
	margin-bottom: 10px;
}

.pro-serise-nav .foot-nav-ul li {
	width: 46%;
	margin-right: 2%;
	display: inline-block;
	vertical-align: top;
}

.foot-copyright {
	border-top: 1px solid rgba(255, 255, 255, .38);
	padding: 40px 0;
	margin-top: 120px;
	display: flex;
	justify-content: space-between;
}

.container-banner {
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	position: relative;
	display: flex;
	z-index: 2;
	width: 100%;
	/* padding-top: 100px; */
	min-height: 680px;
	align-items: center;
	justify-content: center;
}

.container-banner h3 {
	font-family: 'MontserratBold';
	font-size: 60px;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
}

.contain-con {
	padding-top: 100px;
	padding-bottom: 250px;
}

.feedback {
	margin-top: 36px;
}

.feedback-form .form-control {
	font-size: 14px;
}

.feedback-form .form-control-input {
	position: relative;
}

.feedback-form .form-control-input i {
	position: absolute;
	left: 15px;
	top: 18px;
	color: #666;
	font-size: 22px;
}

.feedback-form .form-control-input .form-control,
.feedback-form .form-textarea {
	width: 100%;
	padding: 15px 15px 15px 15px;
	height: 66px;
	color: #333333;
	background-repeat: no-repeat;
	background-position: .5rem center;
	background-size: .5rem;
	background-color: #ffffff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	transition: all .3s;
}

.feedback-form input::-webkit-input-placeholder,
.feedback-form textarea::-webkit-input-placeholder {
	color: #B6B6B6;
	font-size: 18px;
}

.feedback-form .form-textarea {
	height: auto;
	padding-left: 15px;
}

.feedback-form .form-control-input .form-control:focus::-webkit-input-placeholder,
.feedback-form .form-control-input .form-textarea:focus::-webkit-input-placeholder {
	/* WebKit browsers Ã©â‚¬â€šÃ©â€¦ÂÃ¨Â°Â·Ã¦Â­Å’ */
	color: #333;
}

.feedback-form .form-control-input .form-control:focus:-moz-placeholder,
.feedback-form .form-control-input .form-textarea:focus:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 Ã©â‚¬â€šÃ©â€¦ÂÃ§ÂÂ«Ã§â€¹Â */
	color: #333;
}

.feedback-form .form-control-input .form-control:focus::-moz-placeholder,
.feedback-form .form-control-input .form-textarea:focus::-moz-placeholder {
	/* Mozilla Firefox 19+ Ã©â‚¬â€šÃ©â€¦ÂÃ§ÂÂ«Ã§â€¹Â */
	color: #333;
}

.feedback-form .form-control-input .form-control:focus:-ms-input-placeholder,
.feedback-form .form-control-input .form-textarea:focus:-ms-input-placeholder {
	/* Internet Explorer 10+  Ã©â‚¬â€šÃ©â€¦Âie*/
	color: #333;
}

.feedback-form .form-yzm{
	display:flex;
	justify-content: space-between;
}

.feedback-form .form-yzm .form-control{
	width: calc(100% - 230px);
}

.feedback-form .form-yzm img{
	width: 200px;
	height: 54px;
}

.feedback-submit {
	background: #c8a063;
	color: #ffffff;
	width: 100%;
	height: 66px;
	border-radius: 8px;
	font-size: 22px;
}

.feedback-submit:hover {
	color: #ffffff;
	background: #b6915a;
}

.contact-info {
	margin-top: 120px;
}

.contact-info .col {
	padding-bottom: 30px;
	margin-bottom: 30px;
	position: relative;
}

.contact-info .col:after {
	content: "";
	display: block;
	border-top: 2px solid #c8a063;
	width: 0;
	position: absolute;
	bottom: 0;
	left: 15px;
	right: auto;
	transition: ease 0.5s;
}

.contact-info .col:before {
	content: "";
	display: block;
	border-top: 1px solid #dedede;
	position: absolute;
	bottom: 0;
	left: 15px;
	right: 15px;
}

.contact-info .col:hover:after {
	width: calc(100% - 30px);
}

#ban-nav {
	width: 100%;
	overflow: hidden;
	height: 93px;
	border-bottom: solid 1px #e0e1e1;
}

.ban-nav-menu ul {
	display: flex;
}

.ban-nav-menu ul li {
	list-style: none;
	position: relative;
	margin-right: 5%;
}

.ban-nav-menu ul li a {
	line-height: 92px;
	display: block;
}

.ban-nav-menu ul li a:hover,
.ban-nav-menu ul li.active a {
	text-decoration: none;
	color: #c8a063;
}

.ban-nav-menu ul li:after {
	content: "";
	width: 0;
	height: 2px;
	background: #c8a063;
	position: absolute;
	left: 50%;
	margin-left: -10px;
	bottom: 0;
	-webkit-transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
	transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
}

.ban-nav-menu ul li:hover:after,
.ban-nav-menu ul li.active:after {
	width: 20px;
}

.products-list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}

.news-contain {
	overflow: hidden;
}

.news-list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -30px;
	margin-right: -30px;
}

.news-items {
	width: 33.3%;
	padding: 30px;
}

.news-view {
	display: flex;
	justify-content: space-between;
}

.news-view-nav {
	width: 380px;
	border-left: 1px solid #eeeeee;
	padding-left: 30px;
}

.news-view-contain {
	width: calc(100% - 460px);
}

.news-view-title {
	font-size: 18px;
	border-bottom: 1px solid #eeeeee;
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.news-view-title h1 {
	font-size: 30px;
	font-weight: bolder;
	margin-bottom: 15px;
}

.news-view-title i {
	margin-right: 5px;
}

.news-view-title span {
	margin-right: 15px;
}

.news-view-title a {
	color: #333333;
}

.news-view-title a:hover {
	color: #c8a063;
	opacity: 1 !important;
}

.news-view-p {
	min-height: 720px;
}

.news-view-nav-con {
	position: -webkit-sticky;
	position: sticky;
	top: 100px;
	bottom: 50px;
}

.news-view-item .news-item a {
	color: #333333;
	padding-top: 10px;
}

.news-view-nav .next {
	margin-bottom: 30px;
}

.news-view-nav h5 {
	font-weight: bolder;
	font-size: 18px;
	margin-bottom: 15px;
}

.pro-contain {
	padding-top: 0;
	padding-bottom: 0;
}

.products-con {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;

}

.products-con .pro-serise-nav {
	width: 380px;
	padding-top: 100px;
	padding-bottom: 250px;
	border-left: 1px solid #eee;
}

.pro-serise-nav-con {
	position: -webkit-sticky;
	position: sticky;
	top: 100px;
	bottom: 50px;
	padding: 0 30px;
}

.pro-list {
	width: calc(100% - 460px);
	overflow: hidden;
	padding-top: 100px;
	padding-bottom: 250px;

}

.pro-list-container {
	margin-left: -15px;
	margin-right: -15px;
	display: flex;
	flex-wrap: wrap;
}

.pro-list .container-title h1 {
	font-size: 36px;
	margin-bottom: 36px;
}

.pro-items {
	width: 33.3%;
}

.pro-item {
	padding: 0 15px 30px;
}

.pro-item a {
	display: block;
	position: relative;
	border: 1px solid #eeeeee;
	color: #333333;
}

.pro-item a:hover {
	text-decoration: none;
}

.pro-item a .pro-img {
	overflow: hidden;
	/* background: #ffffff; */
	padding: 15px;
}

.pro-item a .pro-img img {
	width: 100%;
	transition: all 0.3s ease;
}

.pro-item a:hover .pro-img img {
	transform: scale(1.1);
}

.pro-item a .pro-info {
	padding: 15px;
}

.pro-item a .pro-name {
	padding: 0 0 15px 0;
	position: relative;
	margin-bottom: 10px;
	font-size: 18px;
}

.pro-item a .pro-name:after {
	position: absolute;
	content: "";
	width: 50px;
	border-bottom: 2px solid #c8a063;
	left: 0;
	bottom: 0;
	transition: 0.3s;
}

.pro-item a:hover {
	box-shadow: 0 0px 10px rgb(0 0 0 / 10%);
}

.pro-item a:hover .pro-name:after {
	width: 60px;
}

.pro-item a .pro-serise {
	font-weight: bolder;
}

.pro-search {
	width: 100%;
	background: #f5f5f5;
	display: flex;
	justify-content: space-between;
	align-items: center;
	line-height: 56px;
	height: 56px;
	padding: 0 6.8%;
	box-sizing: border-box;
	margin-bottom: 36px;
}

.pro-search input {
	outline: none;
	border: none;
}

.pro-search .text {
	display: block;
	font-size: 0.9375rem;
	color: #666;
	width: calc(100% - 30px);
	line-height: 3.75rem;
	background: transparent;
}

.pro-search .text::placeholder {
	color: #666;
}

.pro-search .submit {
	background: url(../images/pro-search.png) no-repeat center;
	width: 18px;
	height: 100%;
}

.pro-nav-item {
	padding: 30px 0;
	border-radius: 5px;
	border-bottom-right-radius: 36px;
}

.pro-serise-nav-title {
	color: #111111;
	font-weight: bolder;
	margin-bottom: 20px;
	font-family: "MontserratBold";
}

.pro-serise-nav-title h1 {
	font-size: 30px;
	font-weight: bolder;
}

.pro-serise-menu ul {
	list-style: none;
	padding: 0;
	overflow: hidden;
}

.pro-serise-menu .f1>ul>li {
	position: relative;

	overflow: hidden;
	color: #333333;
	border-bottom: 1px solid #eeeeee;

}

.pro-serise-menu ul li>span {
	display: block;
	transition: 0.5s;
	padding: 10px 30px 10px 10px;
}

.pro-serise-menu ul li:hover>span,
.pro-serise-menu ul li.hasChild.open>span,
.pro-serise-menu ul li.active>span {
	background: #c8a063;
	color: #fff;
	border-radius: 28px;
}

.pro-serise-menu ul li a {
	color: #333333;

}

.pro-serise-menu ul li.open>span a {}

.pro-serise-menu ul li>span a.cur {
	font-weight: bolder;
	font-size: 18px;
}

.pro-serise-menu ul li>span a:hover {
	text-decoration: none;
}

.pro-serise-menu ul li.hasChild>span a:after {
	content: "+";
	position: absolute;
	right: 10px;
	top: 8px;
	font-size: 28px;
	font-weight: 300;
}

.pro-serise-menu ul li.hasChild.open>span a:after {
	content: "-";
	right: 13px;
	font-size: 28px;
	top: 8px;
}

.pro-serise-menu .f2 ul li {
	padding-top: 5px;
	padding-bottom: 5px;
}

.pro-serise-menu .f2 ul li a:hover {
	text-decoration: none;
	color: #c8a063;
}

.pro-nav-btns {
	display: none;
}

.pro-nav-btns-con {
	display: flex;
	justify-content: space-between;
}

.pro-nav-btns .pro-nav-btn {
	width: 100%;
	background: #c9a164;
	text-align: center;
	color: #ffffff;
	border-radius: 0;
	padding: 15px;
	font-size: 16px;
}

.pro-nav-btns .pro-nav-btn i {
	margin-right: 10px;
}

.pro-nav-btns .pro-nav-btn:hover {background: #ba955d;}

.pro-serise-nav .collapse:not(.show) {
	display: block;
	border-top: 1px solid #eeeeee;
}

.f2,
.f3 {
	height: 0;
	padding-left: 20px;
	overflow: hidden;
	position: relative;
	transition: height 0.4s ease;
	-moz-transition: height 0.4s ease;
	-webkit-transition: height 0.4s ease;
	-o-transition: height 0.4s ease;
}

.pro-view-con {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.pro-view-left {
	width: 60%;
	padding-right: 60px;
}

.pro-view-right {
	width: 40%;
}

.pro-view-name {
	color: #727272;
	font-size: 18px;
	margin-bottom: 20px;
	border-bottom: 1px solid #eeeeee;
	padding-bottom: 20px;
	margin-top: 30px;
}

.pro-view-name h1 {
	font-size: 26px;
	font-weight: bolder;
	color: #333333;
}

.pro-view-color {
	margin-top: 60px;
}

.pro-view-right-title {
	font-size: 30px;
	font-weight: bolder;
	margin-bottom: 30px;
}

.pro-view-inquiry-btn {
	margin-top: 60px;
}

.pro-view-inquiry-btn a {
	display: block;
	background: #c8a063;
	color: #ffffff;
	text-align: center;
	width: 100%;
	height: 50px;
	font-size: 20px;
	font-weight: bolder;
	padding: 10px;
}

.pro-view-inquiry-btn a:hover {
	text-decoration: none;
	background: #b6915a;
}

.pro-view-img {
	display: flex;
	flex-direction: row-reverse;
}

.pro-view-imgb {
	width: calc(100% - 150px);
	max-width: 610px;
	margin: auto;
}

.pro-view-imgs {
	width: 150px;
}

.pro-view-btn {
	display: none;
}

.pro-btn-prev {
	left: 0;
}

.pro-btn-next {
	right: 0;
}

.pro-imgb {
	text-align: center;
	cursor: -moz-zoom-in;
	cursor: -webkit-zoom-in;
	cursor: zoom-in;
}

.swiper-pro-imgb {
	position: relative;
}

.pro-view-imgs-con {
	max-width: 117px;
	margin: auto;
	padding-top: 36px;
	padding-bottom: 36px;
	position: relative;
}

.pro-view-imgs-con .pro-imgs-btn {
	position: absolute;
	font-size: 36px;
	width: 100%;
	text-align: center;
}

.pro-imgs-btn-prev {
	top: 0;
}

.pro-imgs-btn-next {
	bottom: 0;
}

.swiper-pro-imgs {
	height: 600px;
	overflow: hidden;
}

.swiper-pro-imgs .swiper-slide {
	border: 1px solid #d4d4d4;
	opacity: 0.6;
}

.swiper-pro-imgs .swiper-slide.active {
	border: 2px solid #c8a063;
	opacity: 1;
}

.swiper-pro-imgs .swiper-slide .pro-imgs-con {
	vertical-align: middle;
	cursor: pointer;
}

.swiper-pro-imgs .swiper-slide .pro-imgs {
	height: 100%;
	text-align: center;
}

.swiper-pro-imgs .swiper-slide .pro-imgs img {
	height: 100%;
	width: auto;
	margin: auto;
}

.pro-imgs-btn.wrapper-btn-disabled {
	opacity: 0.5;
}

.pro-view-details {
	margin-top: 90px;
}

.pro-view-details-title {
	font-size: 24px;
	font-weight: bolder;
	color: #111111;
	margin-bottom: 24px;
	border-bottom: 1px solid #eeeeee;
	padding-bottom: 20px;
}

.pro-view-details-imgs {
	margin-top: 160px;
}

.contain-bread {
	background: none;
	color: #333333;
	padding-left: 0;
	padding-right: 0;
	padding-top: 30px;
}

.contain-bread .breadcrumb-item a {
	color: #333333;
}

.contain-bread .breadcrumb-item a:hover {
	text-decoration: none;
	color: #c8a063;
}

.contain-bread .breadcrumb-item+.breadcrumb-item::before {
	content: ">";
}

.contain-bread .breadcrumb-item.active {
	color: #333333;
}

.about-contain {
	display: flex;
	justify-content: space-between;
}

.about-p {
	margin-top: 36px;
	max-width: 960px;
	width: calc(100% - 280px);
}

.about-contain .index-adv-num {
	width: 260px;
}

.about-contain .index-adv-num .adv-num-list ul li h1 {
	color: #c8a063;
}

#honor {
	background: url(../images/about-honor-bg.jpg);
}

.honor-container {
	display: flex;
	padding-top: 120px;
	padding-bottom: 60px;
	justify-content: space-between;
}

.honor-container .container-title {
	width: 40%;
	padding-top: 30px;
}

.honor-img {
	width: 50%;
}

.honorSwiper {
	overflow: hidden;
	margin: auto;
	max-width: 462px;
}

.video-tb {
	position: fixed;
	margin-top: 60px;
	width: 60px;
	height: 60px;
	background: #fff;
	border-radius: 50%;
	z-index: 10000000000;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	border: 1px solid #fff;
	cursor: pointer;
	transition: all 0.3s;
}
.video-tb.active{
	right: 3%;
	bottom: 10%;
	transition: all 0.3s;
}
.video-tb:hover{
	margin-bottom: 5px;
	transition: all 0.3s;
}
.video-box{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
    justify-content: center;
    align-items: center;
}
.video-box img{
	margin-right: -5px;
}
.video-box:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-animation: circlepulse2 1.5s ease 0s infinite;
    animation: circlepulse2 1.5s ease 0s infinite;
    z-index: 0;
}
@-webkit-keyframes circlepulse2 {
	0% {
		-webkit-box-shadow: 0px 0px 0 0px rgba(0, 0, 0, 0.2);
		box-shadow: 0px 0px 0 0px rgba(0, 0, 0, 0.5);
	}
	50% {
		-webkit-box-shadow: 0px 0px 0 20px rgba(0, 0, 0, 0.2);
		box-shadow: 0px 0px 0 20px rgba(0, 0, 0, 0.2);
	}
	100% {
		-webkit-box-shadow: 0px 0px 0 20px rgba(0, 0, 0, 0.2);
		box-shadow: 0px 0px 0 20px rgba(0, 0, 0, 0.2);
	}
}
.pop_up_video {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999999;
}

.pop_up_video>div {
	display: flex;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	justify-content: center;
	align-items: center;
}

.pop_up_video .video {
	position: relative;
	width: 100%;
	max-width: 1200px;
}

.pop_up_video .video>span {
	position: absolute;
	width: 60px;
	height: 60px;
	top: 0px;
	right: 0px;
	line-height: 60px;
	text-align: center;
	display: block;
	color: #fff;
	font-size: 30px;
	z-index: 99;
	cursor: pointer;
}

/**/

@media screen and (max-width: 1400px) {
	.container-title h1 {
		font-size: 40px;
	}

	.pro-serise-name h1 {
		font-size: 30px;
	}

	.index-adv-title {
		max-width: 360px;
	}

	.index-adv-title h1 {
		font-size: 30px;
	}

	.adv-num-list ul li {
		font-size: 20px;
	}

	.adv-num-list ul li h1 {
		font-size: 30px;
	}

	.index-adv-title {
		max-width: 360px;
	}

	.container-banner h3 {
		font-size: 40px;
	}
}

@media screen and (max-width: 1200px) {
	.headervue .item>a {
		margin: 0 24px;
	}

	.headervue .dropdown .dropdown-menu {
		margin-left: 24px;
	}

	.pro-serise-name {
		top: 10%;
	}

	.container-title h1 {
		font-size: 36px;
	}

	.pro-serise-name h1 {
		font-size: 26px;
	}

	.earth_box {
		position: relative;
		margin-top: -137px;
	}

	.container-banner h3 {
		font-size: 36px;
	}

	.pro-items {
		width: 50%;
	}
}

@media screen and (max-width: 992px) {
	#header_vue {
		display: none;
	}

	#ph-nav {
		display: block;
	}

	.index-pro-container {
		padding-top: 60px;
	}

	.pro-serise-control {
		opacity: 0;
		z-index: -999;
	}

	.container-title {
		text-align: center;
	}

	.container-title h1 {
		text-align: center;
	}

	.container-title p {
		text-align: center;
		margin: auto;
	}

	.container-title img {
		margin: auto;
	}

	.index-pro-con {
		flex-direction: column-reverse;
	}

	.index-pro-serise-con,
	.index-pro-serise-nav {
		width: 100%;
	}

	.index-pro-serise-con {
		max-width: 560px;
		padding: 70px;
		margin: auto;
	}

	.pro-serise-name {
		position: relative;
	}

	.index-pro-serise-conner .autoplay-progress {
		left: -4px;
		right: -4px;
		bottom: -4px;
		top: -4px;
	}

	.index-pro-serise-conner:before {
		top: -40px;
		bottom: -40px;
		left: -40px;
		right: -40px;
	}

	.pro-serise-name h1 {
		text-align: center;
		margin: auto;
	}

	.pro-serise-name .more {
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 60px;
	}

	.pro-serise-btn .proseise-button-next,
	.pro-serise-btn .proseise-button-prev {
		opacity: 1;
		width: 36px;
		height: 36px;
	}

	.index-about-p {
		text-align: center;
		line-height: 24px;
	}

	.container-more a {
		margin-left: auto;
		margin-right: auto;
		width: 150px;
		height: 40px;
		border-radius: 20px;
		padding: 8px 30px;
	}

	.container-more a i {
		width: 26px;
		height: 26px;
	}

	.index-adv-container {
		padding-top: 100px;
		height: 800px;
	}

	.index-adv-con {
		flex-direction: column;
	}

	.index-adv-title {
		margin: auto;
	}

	.adv-num-list {
		margin-top: 20px;
	}

	.adv-num-list ul {
		text-align: center;
	}

	.adv-num-list ul li {
		font-size: 20px;
		display: inline-block;
		margin: 15px;
	}

	.earth_box {
		top: auto;
		margin-top: -50px;
	}

	.index-news-container {
		padding-bottom: 30px;
		padding-top: 60px;
	}

	.foot-social {
		padding-top: 60px;
		flex-direction: column;
	}

	.foot-mail,
	.foot-link {
		width: 100%;
	}

	.foot-mail {
		margin-right: 0;
		margin-bottom: 36px;
	}

	.foot-mail-con,
	.foot-link-con {
		max-width: none;
	}

	.foot-nav {
		flex-direction: column;
	}

	.foot-nav-item.quicklink {
		width: 100%;
		margin-right: 0;
	}

	.foot-nav-item.pro-serise-nav {
		width: 100%;
		margin-top: 15px;
	}

	.foot-nav-item.contact {
		width: 100%;
		margin-left: 0;
		margin-top: 15px;
	}

	.foot-nav-ul li {
		width: auto;
		margin-right: 2%;
		display: inline-block;
		vertical-align: top;
	}

	.pro-serise-nav .foot-nav-ul li {
		width: auto;
	}

	.container-banner {
		background-attachment: local;
		min-height: 360px;
	}

	.contain-con {
		padding-top: 60px;
		padding-bottom: 150px;
	}

	.container-banner h3 {
		text-align: center;
	}

	.news-items {
		width: 50%;
	}

	.news-view {
		flex-direction: column;
	}

	.news-view-nav {
		width: 100%;
		border-left: none;
		border-top: 1px solid #eeeeee;
		padding-top: 30px;
		margin-top: 30px;
		padding-left: 0;
	}

	.news-view-contain {
		width: 100%;
	}

	.news-view-item .news-item a .news-img,
	.news-view-item .news-item a .news-time {
		display: none;
	}

	.news-view-item .news-item a {
		padding-top: 0px;
	}

	.products-con {
		flex-direction: column;
	}

	.products-con .pro-serise-nav {
		width: 100%;
		padding-bottom: 0;
		padding-top: 0px;
		border-left: none;
	}

	.pro-list {
		width: 100%;
		margin-top: 50px;
		padding-top: 0px;
		padding-bottom: 0px;
	}

	.pro-nav-btns {
		display: block;
	}

	.pro-serise-nav .collapse:not(.show) {
		display: none;
	}

	.pro-serise-nav-title {
		display: none;
	}

	.pro-view-con {
		flex-direction: column;
	}

	.pro-view-left,
	.pro-view-right {
		width: 100%;
	}

	.pro-view-left {
		max-width: 800px;
		margin: auto;
		padding-right: 0;
	}

	.pro-view-right {
		margin-top: 36px;
	}

	.pro-view-imgs {
		display: none;
	}

	.pro-view-imgb {
		width: 100%;
	}

	.pro-view-btn {
		display: block;
	}

	.about-contain {
		flex-direction: column-reverse;
	}

	.about-p {
		width: 100%;
	}

	.about-contain .index-adv-num {
		width: 100%;
	}

	.honor-container {
		flex-direction: column;
	}

	.honor-container .container-title {
		width: 100%;
		padding-top: 0;
	}

	.honor-img {
		width: 100%;
		margin-top: 50px;
	}
	
	.foot-copyright {
		flex-direction: column;
		align-items: center;
	}
}

@media screen and (max-width: 560px) {

	.news-items,
	.pro-items {
		width: 100%;
	}
}