@charset "utf-8";

/* CSS Document */
@font-face {
	src: url(../fonts/Roboto-Regular-14.ttf);
	font-family: "myfont";
}

@font-face {
	src: url(../fonts/Roboto-Medium-12.ttf);
	font-family: "title";
}

@font-face {
	src: url(../fonts/impact.ttf);
	font-family: "impact";
}

* {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: 'Arial', "myfont", 'Roboto', 'Helvetica', 'sans-serif';
}

@font-face {
	font-family: 'iconfont';
	src: url(../icons/iconfont.eot);
	src: url(../icons/iconfont.eot?#iefix) format('embedded-opentype'),
		url(../icons/iconfont.woff) format('woff'),
		url(../icons/iconfont.ttf) format('truetype'),
		url(../icons/iconfont.svg#iconfont) format('svg');
}

.iconfont {
	font-family: "iconfont" !important;
	font-size: 16px;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke-width: 0.2px;
	-moz-osx-font-smoothing: grayscale;
}

input:focus,
textarea:focus {
	outline: none;
}

.clear {
	clear: both;
}

a {
	text-decoration: none;
	color: #4c4c4c;
}

p {
	margin: 1rem 0;
	font-size: 1.8rem;
	line-height: 2;
	color: #1a1a1a;
}

img {
	display: block;
}

.w_all {
	width: 1440px;
	margin: auto;
}

.w_all2 {
	width: 70%;
	margin: auto;
}

html,
body {
	width: 100%;
	position: relative;
	font-size: 62.5%;
}

header {
	width: 100%;
	position: relative;
	left: 0;
	top: 0;
	z-index: 999;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	background: #fff;
}

header .nav_box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	height: 170px;
}

header .logo {
	position: relative;
	z-index: 9;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	display: flex;
}

header .logo img {
	display: block;
}
header .logo p{
    margin-left: 2rem;
    font-size: 2.4rem;
    line-height: 1.2;
    margin-top: 0.8rem;
}
header .others .language {
	display: flex;
	position: relative;
	justify-content: flex-end;
	align-items: center;
	cursor: pointer;
	line-height: 40px;
	margin: -1rem 0 2rem;
}

header .others .language::after {
	content: '';
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid #333;
}

header .others .language img {}

header .others .language span {
	display: block;
	color: #333;
	margin: 0 1rem 0 1rem;
	font-size: 1.8rem;
}

header .others .language .lanbox {
	position: absolute;
	right: 0;
	top: 40px;
	width: max-content;
	background: #f9f9f9;
	z-index: 999;
	display: none;
}

header .others .language .lanbox a {
	display: block;
	padding: 1rem 2rem;
	color: #666;
	font-size: 1.6rem;
	line-height: 1.2;
	transition: all 0.3s linear;
}

header .others .language .lanbox a:hover {
	color: #013763;
}

header .others .lbox {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header .others .ll {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	letter-spacing: 0px;
	color: #1a1a1a;
	position: relative;
	cursor: pointer;
	margin-left: 2rem;
}

.search {
	border: 1px solid #d0d0d0;
	display: flex;
	padding: 7px 1.8rem 7px 1rem;
	border-radius: 10px;
	align-items: center;
	margin-right: 1rem;
}

.search input {
	border: none;
	width: 20rem;
	background: none;
}

.search i {
	font-weight: normal;
	color: #ccc;
	font-size: 2rem;
}

header .others .lbox img {
	height: 32px;
	transition: all 0.4s linear;
}

header .others .ll.llogin a {
	display: flex;
	align-items: center;
}

header .others .llshop strong {
	background: #1a1a1a;
	color: #fff;
	border-radius: 50%;
	position: absolute;
	left: 58%;
	top: 46%;
	width: 22px;
	line-height: 22px;
	font-size: 1.6rem;
	text-align: center;
	-webkit-transform: scale(0.6);
	transform: scale(0.6);
}

header .nav {
	background: #013763;
}

header .nav ul {
	display: flex;
	justify-content: space-between;
}

header .nav li {
	position: relative;
	line-height: 80px;
}

header .nav li span {
	color: #fff;
	font-size: 2.6rem;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

header .nav li:hover span {
	color: #5cc1ee;
}

.s_menu {
	position: absolute;
	z-index: 9;
	width: max-content;
	min-width: 100%;
	left: 50%;
	transform: translateX(-50%);
	top: 99%;
	background: #fff;
	box-sizing: border-box;
	display: none;
}
.s_menu dl::before{
	content: '';
	position: absolute;
	top: -8px;
	left: 35%;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 8px solid #fff;
}
.s_menu dl {
	width: 100%;
	position: relative;
}

.s_menu dd {
	margin: 0;
	line-height: 1.4;
	font-size: 1.8rem;
	padding: 1.2rem 4rem 1.2rem 2rem;
	color: #333;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	cursor: pointer;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	position: relative;
}
.s_menu dd i{
	font-size: 1.8rem;
	color: #bbb;
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s linear;
}
.s_menu dd:hover i{
	color: #2D3A56;
}
.s_menu dd:hover {
	color:#b10d14
}

.navBtn {
	position: absolute;
	cursor: pointer;
	display: none;
	bottom: 4px;
	right: 0rem;
}

.navBtn span {
	display: block;
	width: 20px;
	height: 2px;
	background: #333;
	margin: 5px auto;
}

.nav_btn_active {
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	bottom: 10px;
}

.nav_btn_active span:nth-of-type(1) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.nav_btn_active span:nth-of-type(2) {
	opacity: 0;
}

.nav_btn_active span:nth-of-type(3) {
	margin-top: -14px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/*banner*/
.banner {
	position: relative;
	width: 100%;
	height: auto !important;
	box-sizing: border-box;
}

.banner .swiper-container,
.banner .swiper-slide {
	width: 100%;
	overflow: hidden;
}

.banner .swiper-slide img {
	width: 100%;
}

.banner .swiper-pagination {
	display: none;
	bottom: 3% !important;
	display: flex;
	justify-content: center;
}

.banner .swiper-pagination span {
	width: 200px !important;
	height: 2px !important;
	border-radius: 0 !important;
	background: none !important;
	opacity: 1;
	margin: 0 20px !important;
	position: relative;
	display: block;
}

.banner .swiper-pagination span::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0.3;
	z-index: 3;
}

.banner .swiper-pagination span:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0%;
	height: 100%;
	background: #fff;
	z-index: 3;
}

.banner span.swiper-pagination-bullet-active:before {
	width: 100%;
	-webkit-transition: all 4.5s linear;
	transition: all 4.5s linear;
}

.banner ul {
	width: 95%;
	background: #fff;
	display: flex;
	justify-content: space-between;
	z-index: 99;
}

.banner ul a {
	font-size: 1.6rem;
	color: #666;
	line-height: 80px;
	width: 33.3%;
	display: block;
}

.banner ul li {
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.banner ul li span {
	margin-right: 20px;
	color: #5cc1ee;
	font-family: "title";
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.banner ul li:hover {
	color: #1b5a7d;
	font-weight: bold;
}

.banner ul li:hover span {
	color: #1b5a7d;
	font-weight: normal;
}

.banner ul a:first-of-type li:hover {
	background: #1b5a7d !important;
	color: #fff !important;
	font-weight: normal !important;
}

.banner ul a:first-of-type li:hover span {
	color: #5cc1ee !important;
}

.index_bars {
	padding: 6% 0;
	position: relative;
}

.title h3 {
	color: #000;
	font-size: 5rem;
	font-family: "title";
	letter-spacing: 0;
	margin-bottom: 3rem;
}

.more {
	display: flex;
	align-items: center;
	font-size: 2.6rem;
	color: #b10d14;
	letter-spacing: 0;
	margin-top: 3rem;
	justify-content: flex-end;
	transition: all 0.3s linear;
}

.more:hover {
	color: #095b8a;
}

.more i {
	font-size: 2.4rem;
	margin-left: 5px;
}

.index_bar1 .box {
	position: relative;
}

.index_bar1 video {
	display: block;
	width: 100%;
	object-fit: fill;
}

.index_bar1 .btn img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 6rem;
	cursor: pointer;
}

.index_bar2 .box {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin: 2% auto;
	position: relative;
}

.index_bar2 .ll {
	width: 42%;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.index_bar2 .ll img {
	height: 100%;
}

.index_bar2 .rr {
	width: 55%;
}

.index_bar2 .rr p {
	color: #666666;
	font-size: 3rem;
	line-height: 1.6;
	font-weight: normal;
}

.index_bar3 {
	text-align: center;
}

.index_bar3 ul {
	display: flex;
	flex-wrap: wrap;
}

.index_bar3 ul li {
	width: 31.3%;
	margin-right: 3%;
	margin-bottom: 3%;
	background: #e0e0e0;
	border: 1px solid #bababa;
	box-sizing: border-box;
}

.index_bar3 ul li:nth-of-type(3n) {
	margin-right: 0;
}

.index_bar3 ul li b {
	display: block;
	width: 100%;
	background: #fff;
	overflow: hidden;
}

.index_bar3 ul li b img {
	display: block;
	width: 100%;
	transition: all 0.5s linear;
}

.index_bar3 ul li:hover b img {
	transform: scale(1.06);
}

.index_bar3 ul li h6 {
	text-align: center;
	font-size: 2.6rem;
	font-weight: normal;
	padding: 1.5rem 0;
	transition: all 0.3s linear;
	color: #000000;
}

.index_bar3 ul li:hover h6 {
	background: #095b8a;
	color: #fff;
}

.index_bar3 .more {
	justify-content: center;
}

.index_bar4 .swiper-container {
	padding: 4% 0 4% 0;
}

.index_bar4 .swiper-slide {
	transition: all 0.3s linear;
}

.index_bar4 .swiper-slide img {
	width: 100%;
}

.index_bar4 .swiper-slide-active {
	transform: scale(1.18);
	position: relative;
	z-index: 9;
}

.index_bar4 .title {
	text-align: center;
}

.index_bar4 .swiper-pagination {
	position: static;
	display: none;
}

.index_bar4 .swiper-pagination span {
	margin: 30px 5px 0;
}

.index_bar4 .swiper-pagination span.swiper-pagination-bullet-active {
	background: #5cc1ee;
}

.index_bar4 dl {
	display: flex;
	justify-content: space-between;
	text-align: center;
	font-size: 1.6rem;
	color: #095b8a;
	width: 53%;
}

.index_bar4 dl dd {
	cursor: pointer;
}

.index_bar4 dl dd img {
	margin: 0 auto 1rem;
}

.index_bar5 {
	text-align: center;
}

.index_bar5 ul {
	display: flex;
	justify-content: space-between;
}

.index_bar5 ul li {
	width: 48.5%;
	margin-bottom: 3%;
	background: #e8e9e3;
	box-sizing: border-box;
}

.index_bar5 ul li b {
	display: block;
	width: 100%;
	overflow: hidden;
	background: #fff;
}

.index_bar5 ul li b img {
	display: block;
	width: 100%;
	transition: all 0.5s linear;
}

.index_bar5 ul li:hover b img {
	transform: scale(1.06);
}

.index_bar5 ul li h6 {
	text-align: center;
	font-size: 2.4rem;
	font-weight: normal;
	padding: 3rem 0;
	transition: all 0.3s linear;
	color: #000;
}

.index_bar5 ul li:hover h6 {
	background: #095b8a;
	color: #fff;
}

.index_bar5 .more {
	justify-content: center;
	margin: 0rem 0 2%;
}

.footer {
	position: relative;
	background: #333d4b;
	z-index: 9;
}

.footer .box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5rem 0;
	flex-wrap: wrap;
}

.footer .box .left {
	width: 88%;
	margin-bottom: 2rem;
	opacity: 0.6;
}

.footer .left h6 {
	margin-bottom: 1rem;
	color: #fff;
	font-size: 2.4rem;
}

.footer .left p {
	display: flex;
	margin: 0;
}

.footer .left p a {
	line-height: 1.5;
	letter-spacing: 0;
	font-weight: normal;
	display: block;
	color: #fff;
	margin-right: 4rem;
	font-size: 2rem;
	transition: all 0.3s linear;
}

.footer .left p a:hover {
	opacity: 1;
}

.footer .right {
	display: flex;
}

.footer .right img {
	width: 3rem;
	margin-right: 15px;
}

.footer .copy {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 54px;
	background: #d8d8d8;
	position: relative;
}

.footer .copy p {
	font-size: 1.7rem;
	color: #000000;
	letter-spacing: 0;
	text-align: center;
	margin: 5px 0 0;
}

.allbox {
	padding: 5% 0;
	position: relative;
	z-index: 9;
}

.ban {
	position: relative;
	z-index: 9;
}

.ban img {
	width: 100%;
	display: block;
}

.title2 {
	margin-bottom: 2rem;
	padding-left: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px dashed #a0a0a0;
}

.title2 h3 {
	font-size: 2.4rem;
	color: #000;
}

.all_contain {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.all_left {
	background: #013763;
	padding: 0 3rem;
	box-sizing: border-box;
	width: 28.6rem;
}

.all_left ul li {
	margin: 3rem 0;
	color: #fff;
	font-size: 2.2rem;
	transition: all 0.3s linear;
}

.all_left ul li.active {
	color: #5cc1ee;
}

.all_left ul li:hover {
	color: #5cc1ee;
}

.all_right {
	width: calc(100% - 35rem);
}
.about .title2{
	border: none;
	padding-left: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}
.about h3 {
	font-size: 3.6rem;
	color: #000;
	margin-top: 3rem;
}

.about p {
	font-size: 2rem;
	color: #333333;
	margin: 3rem 0;
	text-align: justify;
	line-height: 1.6;
}

.about dl {
	display: flex;
	flex-wrap: wrap;
}

.about dl dd {
	width: 31.3%;
	margin-top: 3%;
	margin-right: 3%;
	text-align: center;
}

.about dl dd:nth-of-type(3n) {
	margin-right: 0;
}

.about dl dd b {
	width: 100%;
	display: block;
	overflow: hidden;
}

.about dl dd img {
	width: 100%;
	display: block;
	transition: all 0.4s ease;
}

.about dl dd:hover img {
	transform: scale(1.06);
}

.about dl dd p {
	font-size: 2.2rem;
	color: #000;
	margin-top: 2rem;
	text-align: center;
}

.philosophy .tt {
	position: relative;
	padding: 3rem 0 10%;
}

.philosophy .tt .imgs img {
	position: absolute;
	right: 0;
	top: 0%;
	max-width: 28%;
}

.philosophy .tt p {
	margin: 0;
	padding-left: 5rem;
	position: relative;
	font-size: 2.6rem;
	line-height: 1.5;
	color: #666666;
}

.philosophy .tt p strong {
	font-size: 3.2rem;
	position: relative;
	margin-top: 2.6rem;
	display: block;
	color: #333333;
}

.philosophy .tt p strong::before {
	content: '';
	display: block;
	width: 4.5rem;
	height: 4.9rem;
	position: absolute;
	left: -5rem;
	top: 0px;
	background: url(../images/jt.png) no-repeat center/contain;
}

.culture .tt p {
	margin: 2rem 0;
	font-size: 1.9rem;
}

.culture .tt p strong {
	font-size: 3rem;
	position: relative;
	margin: 2rem 0 -1.5rem;
	display: block;
	color: #013763;
}

.honor .h_imgs img {
	width: 100%;
}

.history .dls {
	margin-top: 3rem;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	overflow: hidden;
	background: url(../images/hisBg.png) no-repeat center/contain;
}

.history .dls::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	width: 3px;
	height: 100%;
	background: #b7b7b7;
}

.history .dls dl {
	width: 50%;
	padding-right: 8%;
	box-sizing: border-box;
	text-align: right;
	position: relative;
	margin-top: 3%;
	height: 100%;
}

.history .dls dl:nth-of-type(2n) {
	text-align: left;
	padding-right: 0;
	padding-left: 8%;
	margin-top: 5%;
}

.history .dls dl::before {
	content: '';
	position: absolute;
	right: -6px;
	top: 8px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #b7b7b7;
}

.history .dls dl:nth-of-type(2n)::before {
	right: inherit;
	left: -4px;
}

.history .dls dl:nth-of-type(2n)::after {
	right: inherit;
	left: 0;
}

.history .dls dl::after {
	content: '';
	position: absolute;
	right: 0;
	top: 12px;
	width: 5rem;
	height: 1px;
	border-radius: 50%;
	background: #b7b7b7;
}

.history .dls dl h6 {
	color: #b10d14;
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.history .dls dl p {
	font-size: 1.9rem;
	color: #333333;
	text-align: left;
	line-height: 1.5;
	text-align: justify;
}

.history .dls dl:nth-of-type(2) {
	margin-top: 12%;
}

.history .dls dl:nth-of-type(4) {
	margin-top: 6%;
}

.history .dls dl:nth-of-type(5),
.history .dls dl:nth-of-type(7) {
	margin-top: -5%;
}

.history .dls dl:nth-of-type(6) {
	margin-top: 2%;
}

.history .dls dl:nth-of-type(8) {
	margin-top: 2%;
}

.history .dls dl:nth-of-type(9) {
	margin-top: -9%;
}

.history .dls dl:nth-of-type(10) {
	margin-top: 2%;
}

.btn .ll {
	cursor: pointer;
	width: 60px;
	text-align: center;
	background: #f2f2f2;
	border-radius: 50%;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 9;
	color: #5cc1ee;
}

.btn .llr {
	left: inherit;
	right: 0;
	top: 45%;
}

.btn .ll i {
	font-size: 2rem;
	line-height: 60px;
}

.btn .llr {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.btn .ll:hover {
	color: #fff;
	background: #5cc1ee;
}

.title3 h3 {
	font-size: 2rem;
	color: #1a1a1a;
	text-transform: uppercase;
	font-family: "title";
	font-weight: normal;
}

.sustainability {
	position: relative;
}

.sustainability .imgs img {
	position: absolute;
	left: 50%;
	top: 45%;
	transform: translate(-50%, -50%);
	max-width: 20%;
}

.sustainability ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.sustainability ul li {
	width: 34%;
	padding: 9% 0 11%;
}

.sustainability ul li h3 {
	font-size: 3rem;
	color: #000;
	margin-bottom: 2rem;
}

.sustainability ul li p {
	color: #000000;
	font-size: 2.4rem;
	text-align: justify;
	line-height: 1.6;
}

.news ul a {
	display: block;
}

.news ul li {
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	justify-content: space-between;
	padding: 1.5rem 0;
}

.news ul li .left {
	width: 36%;
	overflow: hidden;
	/* box-shadow: 0px 7px 9.5px 0.5px rgba(61, 63, 85, 0.08); */
}

.news ul li .left img {
	-webkit-transition: all 0.8s linear;
	transition: all 0.8s linear;
	width: 100%;
	display: block;
}

.news ul li:hover .left img {
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}

.news ul li .right {
	width: 60%;
	position: relative;
}

.news ul li span {
	color: #999999;
	font-size: 1.6rem;
	display: block;
	margin: 20px 0 10px;
}

.news ul li:hover h3 {
	color: #013763;
}

.news ul li h3 {
	font-size: 2.4rem;
	margin-bottom: 2rem;
	line-height: 1.4;
	letter-spacing: 0;
	color: #000000;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.news ul li p {
	line-height: 1.8;
	font-size: 1.8rem;
	color: #666666;
}

.news .more {
	position: absolute;
	left: 0;
	bottom: 15%;
	justify-content: flex-start;
	font-size: 2rem;
}

.page {
	padding: 0% 0 4%;
}

.page ul {
	display: flex;
	justify-content: center;
}

.page ul li {
	width: 28px;
	height: 28px;
	background: none;
	color: #13456e;
	font-size: 2rem;
	border: 1px solid #13456e;
	text-align: center;
	line-height: 28px;
	margin: 6px;
	border-radius: 50%;
	transition: all 0.3s linear;
	cursor: pointer;
}

.page ul li {
	display: none;
}

.page ul li a {
	display: block;
	color: #13456e;
}

.page ul li:last-of-type,
.page ul li:first-of-type {
	display: block;
}

.page ul li.active {
	background: #5cc1ee;
	color: #fff;
}

.page ul li:hover {
	background: #013763;
	color: #fff !important;
}

.page ul li:hover a {
	color: #fff
}

.news_d .top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.news_d .top .ll {
	width: 100%;
	text-align: center;
}

.news_d .top .title2 h3 {
	padding-left: 0;
}

.news_d .top .ll span {
	display: block;
	color: #666666;
	font-size: 1.6rem;
	margin-top: 1rem;
}

.news_d .contain {
	margin: 0% auto;
}

.news_d .contain .left p {
	margin: 2% 0;
	font-size: 2rem;
	line-height: 1.6;
	letter-spacing: 0;
}

.news_d .contain .left p img {
	max-width: 100%;
	margin: auto;
}

.news_d .contain .right {
	width: 32%;
}

.news_d .contain .right dd {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 8% 0;
}

.news_d .contain .right dd b {
	display: block;
	width: 32%;
}

.news_d .contain .right dd b img {
	display: block;
	width: 100%;
}

.news_d .contain .right dd h4 {
	width: 60%;
	color: #1a1a1a;
	font-size: 1.8rem;
	line-height: 1.8;
	font-weight: normal;
}

.news_d .bottom p {
	margin: 10px 0;
	font-size: 1.6rem;
}

.news_d .bottom p a {
	color: #4c4c4c;
}

.news_d .bottom p:hover a {
	color: #cc0000;
	text-decoration: underline;
}

.contact .bar1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.contact .bar1 .right {
	width: 40%;
}

.contact .bar1 img {
	width: 100%;
}

.contact .bar1 .left {
	width: 56%;
	padding-bottom: 8%;
}

.contact .bar1 .tt {
	margin-top: 4rem;
}

.contact .bar1 h3 {
	font-size: 3.2rem;
	color: #000;
	margin-bottom: 1rem;
}

.contact .bar1 p {
	font-size: 2.2rem;
	color: #333333;
	margin: 0;
	width: 97%;
	line-height: 1.7;
	transition: all 0.4s linear;
}

.contact .bar1 p:hover {
	color: #013763;
}

.contact .bar3 {
	padding-top: 0;
	margin: 5% auto 0;
}

.contact .bar3 img {
	width: 100%;
	padding: 0 10%;
	box-sizing: border-box;
}

#dituContent {
	height: 440px;
}

.contact .bar2 {
	background: #f2f2f3;
	padding: 5% 0;
}

.contact .bar2 .title h3 {
	text-align: center;
	font-size: 3.2rem;
	font-weight: normal;
}

.contact .bar2 ul {
	margin-top: 3%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.contact .bar2 ul li {
	margin: 1rem 0;
	font-size: 1.6rem;
	color: #333;
	width: 48.5%;
}

.contact .bar2 ul span {
	display: block;
	margin-bottom: 10px;
	letter-spacing: 0;
	color: #000000;
	font-size: 1.7rem;
	padding-left: 1rem;
}

.contact .bar2 ul input {
	background: #fff;
	border: none;
	box-shadow: none;
	width: 100%;
	font-size: 1.6rem;
	padding: 10px;
	box-sizing: border-box;
}

.contact .bar2 ul li:last-of-type {
	width: 100%;
}

.contact .bar2 ul textarea {
	border: none;
	box-shadow: none;
	font-size: 1.6rem;
	width: 100%;
	padding: 10px;
	background: #fff;
	min-height: 100px;
	box-sizing: border-box;
}

.contact .bar2 .submit {
	width: 120px;
	border: none;
	display: block;
	text-align: center;
	margin: 3rem auto 0;
	background: #868b9a;
	color: #fff;
	font-size: 2.1rem;
	line-height: 50px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	position: relative;
	cursor: pointer;
}

.contact .bar2 .submit:hover {
	background: #1b5a7d;
}

.contact .bar2 .submit input {
	position: absolute;
	right: 0;
	top: 0;
	border: none;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

/* 产品部分 */
.allbars2 {
	padding: 4rem 0;
}

.pro dl {
	display: flex;
	flex-wrap: wrap;
}

.pro dl dd {
	width: 32%;
	margin-right: 2%;
	margin-top: 2%;
	/*background: #e0e0e0;*/
	text-align: center;
	transition: all 0.3s linear;
}

.pro dl dd:nth-of-type(3n) {
	margin-right: 0;
}

.pro dl dd:nth-of-type(1),
.pro dl dd:nth-of-type(2),
.pro dl dd:nth-of-type(3) {
	margin-top: 0;
}

.pro dl dd p {
	color: #000000;
	font-size: 2.3rem;
	line-height: 1.4;
	transition: all 0.3s linear;
}

.pro dl dd b {
	width: 100%;
	display: block;
	overflow: hidden;
}

.pro dl dd b img {
	width: 100%;
	display: block;
	transition: all 0.4s linear;
}

.pro dl dd:hover b img {
	transform: scale(1.06);
}

.pro2 dl dd {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	background: #f5f1f5;
	align-items: center;
	margin-bottom: 1.5%;
}

.pro2 dl dd .tt {
	width: 38%;
	padding: 5% 8%;
	box-sizing: border-box;
}

.pro2 dl dd h4 {
	font-size: 4.6rem;
	transition: all 0.3s linear;
}

.pro2 dl dd p {
	display: flex;
	transition: all 0.3s linear;
}

.pro2 dl dd p img {
	width: 1.3rem;
	margin-right: 5px;
}

.pro dl dd .bottom {
	display: flex;
	justify-content: center;
	padding: 1rem 5% 2rem;
	box-sizing: border-box;
	align-items: center;
}

.pro dl dd h6 {
	color: #b00f17;
	font-size: 2.7rem;
	margin-right: 4rem;
	font-weight: normal;
}

.pro dl dd h5 {
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
	border-radius: 30px;
	margin-top: -5px;
	background: #e31f26;
	font-size: 1.7rem;
	/*padding: 0.3rem 2.6rem;*/
	color: #FFFFFF;
	box-sizing: border-box;
	font-weight: normal;
	transition: all 0.3s linear;
	border: 1px solid #e31f26;
}

.pro dl dd:hover p{
	color: #65d1ff;
}


.pro2 dl dd b {
	width: 62%;
	display: block;
}

.pro2 dl dd b img {
	width: 100%;
}

.pros .all_right {
	width: calc(100% - 31.5rem);
}

.pros .page {
	width: calc(100% - 31.5rem);
	padding: 1% 0 0;
	float: right;
}

.pros .page ul {
	width: 100%;
}

.pd_nav ul {
	display: flex;
	align-items: center;
	font-size: 1.6rem;
	padding: 2rem 0;
	border-bottom: 1px solid #ddd;
}

.pd_nav ul li {
	margin: 0 1rem;
	font-size: 1.6rem;
}

.pro_d .bar1 {
	position: relative;
	z-index: 3;
	padding: 4rem 0;
}

.pro_d .bar1 .box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.pro_d .bar1 .ll {
	width: 50%;
}

.pro_d .bar1 .ll img {
	width: 100%;
	display: block;
}

.pro_d .bar1 .rr {
	width: 40%;
}

.pro_d .bar1 .rr h2 {
	color: #000;
	font-size: 3.6rem;
	margin-bottom: 2rem;
}

.pro_d .bar1 .rr p {
	color: #666;
	font-size: 2rem;
	font-weight: normal;
	letter-spacing: 0;
	margin: 0;
	line-height: 1.6;
}

.selects_lls {
	position: relative;
	cursor: pointer;
}
.selects_lls .pimg img{
    width: 25%;
    margin-top: 2rem;
}
.selects_lls .tt {
	border: 1px solid #e5e5e5;
	color: #1a1a1a;
	font-size: 1.6rem;
	border-radius: 4px;
	padding: 0 10px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	line-height: 40px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.selects_lls .tt h5 {
	font-size: 1.6rem;
	font-weight: normal;
	letter-spacing: 0;
}

.selects_lls .tt i {
	border-left: 1px solid #e5e5e5;
	padding-left: 10px;
	font-size: 2rem;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	font-weight: bold;
}

.selects_lls .tt.active {
	color: #5cc1ee;
	border-color: #5cc1ee;
}

.selects_lls .tt.active i {
	border-color: #5cc1ee;
}

.selects_lls .sels {
	display: none;
	position: absolute;
	z-index: 9;
	left: 0;
	top: 42px;
	background: #fff;
	width: 100%;
	box-shadow: 0px 7px 9.5px 0.5px rgba(61, 63, 85, 0.08);
	max-height: 50vh;
	overflow-y: scroll;
}

.selects_lls .sels span {
	display: block;
	font-size: 1.6rem;
	padding: 8px 10px;
	letter-spacing: 0;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.selects_lls .sels span:hover {
	background: #eee;
}

.pro_d .bar1 .rr .prize {
	color: #e31f26;
	font-size: 1.6rem;
	font-weight: bold;
	margin: 4rem 0 2rem;
}

.pro_d .bar1 .rr .prize strong {
	font-size: 2.4rem;
	font-family: "title";
}

.pro_d .bar1 .rr .prize s {
	color: #999999;
	margin-left: 2rem;
}

.pro_d .bar1 .rr .bot {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pro_d .bar1 .rr .bot .numbers input {
	margin-right: 10px;
}

.tocart {
	font-size: 1.6rem;
	background: #5cc1ee;
	border-radius: 4px;
	line-height: 40px;
	width: 55%;
	text-align: center;
	color: #fff;
	letter-spacing: 0;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	cursor: pointer;
}

.tocart:hover {
	background: #1b5a7d;
}

/* 会员中心 */
.tk {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.8);
	display: none;
}

.tk .box {
	position: absolute;
	right: -100%;
	top: 0;
	width: 640px;
	height: 100vh;
	max-height:  100vh;
	background: #fff;
	opacity: 0;
	display: none;
	overflow-y: scroll;
}

.tk .box:first-of-type {
	display: block;
}

.tk .box .top {
	padding-left: 10%;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.tk .box .top h3 {
	font-size: 2.8rem;
	color: #1a1a1a;
	font-family: "title";
}

.tk .box .top .close {
	border-left: 1px solid #e5e5e5;
	width: 72px;
	height: 72px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.tk .box .top .close img {
	width: 20px;
	margin: auto;
}

.tk .box .lls {
	border-top: 1px solid #e5e5e5;
	padding: 4% 10%;
	box-sizing: border-box;
}

.tk .box .lls h4 {
	font-size: 2rem;
	color: #1a1a1a;
	font-family: "title";
	font-weight: normal;
	letter-spacing: 0;
}

.tk .box .lls p {
	color: #4c4c4c;
	font-size: 1.8rem;
	letter-spacing: 0;
	margin: 20px 0;
	line-height: 1.8;
}

.tk .box .lls p input {
	background: none;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	padding: 10px;
	box-sizing: border-box;
	width: 100%;
	box-shadow: none;
	color: #4c4c4c;
	display: block;
	font-size: 1.8rem;
	letter-spacing: 0;
	margin-top: 10px;
}
.tk .box .lls p span{
    margin-top: 1rem;
    display: block;
    text-align: right;
    cursor: pointer;
    transition: all 0.3s linear;
}
.tk .box .lls p span:hover{
    opacity: 0.8;
}
.tk .box .lls button {
	width: 100%;
	margin: 10% auto 0;
	background: #5cc1ee;
	color: #fff;
	letter-spacing: 0;
	font-size:2rem;
	border: none;
	line-height: 48px;
	border-radius: 4px;
	display: block;
	cursor: pointer;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.tk .box .lls button:hover {
	background: #1b5a7d;
}

.tk .register .lls h4 {
	display: flex;
	align-items: center;
}

.tk .register .lls h4 span {
	width: 24px;
	text-align: center;
	line-height: 24px;
	font-size: 1.6rem;
	color: #fff;
	background: #191919;
	display: block;
	margin-right: 10px;
	border-radius: 50%;
}

.tk .register .agree {
	display: flex;
	align-items: center;
	color: #1a1a1a;
}

.tk .box .lls .agree input {
	width: 16px;
	height: 16px;
	margin: 0;
	padding: 0;
	border-radius: 0;
	margin-right: 5px;
	border: 1px solid #1a1a1a;
	cursor: pointer;
}

.tk .register .agree a {
	text-decoration: underline;
	margin-left: 5px;
	letter-spacing: 0;
}

.tk .register .lls button {
	margin-top: 5%;
}
.tk .tosign{
    text-align: center;
    margin-top: 2rem;
    font-size: 1.8rem;
}
.tk .tosign a{
    cursor: pointer;
    color: #5cc1ee;
    transition: all 0.3s linear;
}
.tk .tosign a:hover{
    text-decoration: underline;
}
/* 加入购物车 */
.tk_carts {
	z-index: 999;
}

.tk_carts .box {
	/*margin-top: 110px;*/
	padding: 0 1% 0 3%;
	box-sizing: border-box;
}

.tk_carts .box .top {
	padding: 0;
}

.tk_carts .box .top p {
	font-size: 1.6rem;
	letter-spacing: 0;
	color: #12b255;
	font-weight: normal;
	display: flex;
	align-items: center;
}

.tk_carts .box .top p img {
	width: 23px;
	margin-right: 10px;
}

.tk_carts .box .top .close {
	border: none;
	width: auto;
}

.tk_carts .box .lls {
	padding: 8% 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.tk_carts .box .lls img {
	display: block;
	width: 25%;
	background: #f5f5f7;
	padding: 2%;
	box-sizing: border-box;
}

.tk_carts .box .lls .rr {
	width: 70%;
}

.tk_carts .box .lls .rr h4 {
	margin-bottom: 10px;
}

.tk_carts .box .lls .rr p {
	margin: 3px 0;
	line-height: 1.6;
}

.tk_carts .box .lls .rr p b {
	font-weight: normal;
	letter-spacing: 0;
}

.tk_carts .box .lls .rr p span {
	letter-spacing: 0;
}

.tk_carts .bots {
	display: flex;
	justify-content: space-between;
}

.tk_carts .bots a {
	display: block;
	width: 100%;
}

.tk_carts .bots button {
	width: 94%;
}

.tk_carts .bots a button {
	background: none;
	border: 1px solid #e5e5e5;
	color: #1a1a1a;
}

.my {
	background: #f8f8f9;
	padding: 5% 0;
}

.navs a {
	color: #cccccc;
	font-size: 2rem;
	font-family: "title";
	margin-right: 5%;
	letter-spacing: 0;
	text-transform: uppercase;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.navs a.active {
	color: #1a1a1a;
	border-bottom: 2px solid #1a1a1a;
}

.navs a:hover {
	color: #1a1a1a;
}

.my .bars {
	background: #fff;
	margin-top: 3%;
}

.title4 {
	font-size: 1.6rem;
	color: #191919;
	padding: 3% 5%;
	box-sizing: border-box;
	text-transform: uppercase;
	border-bottom: 1px solid #e5e5e5;
}

.my .bb {
	padding: 4% 5% 8%;
	box-sizing: border-box;
}

.my h4 {
	color: #191919;
	font-size: 1.8rem;
	font-weight: normal;
	letter-spacing: 0;
}

.my p {
	color: #4c4c4c;
	font-size: 1.8rem;
	letter-spacing: 0;
	margin: 3% 0;
	line-height: 1.8;
}

.my p input {
	background: none;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	padding: 10px;
	box-sizing: border-box;
	width: 100%;
	box-shadow: none;
	color: #4c4c4c;
	display: block;
	font-size: 1.8rem;
	letter-spacing: 0;
	margin-top: 10px;
}

.my p textarea {
	background: none;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	padding: 10px;
	box-sizing: border-box;
	width: 100%;
	min-height: 100px;
	box-shadow: none;
	color: #4c4c4c;
	display: block;
	font-size: 1.6rem;
	letter-spacing: 0;
	margin-top: 10px;
}

.submits {
	background: #5cc1ee;
	color: #fff;
	letter-spacing: 0;
	font-size: 1.6rem;
	border: none;
	line-height: 48px;
	border-radius: 4px;
	display: block;
	cursor: pointer;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.my button {
	width: 35%;
	float: right;
	margin: 3% 0 0;
}

.my .bbss {
	background: none;
	border: 1px solid #e6e8ed;
	color: #1a1a1a;
	margin-right: 20px;
	width: 23%;
}

.submits:hover {
	background: #1b5a7d;
	color: #fff;
}

.orders {
	background: #f8f8f9;
	padding: 5% 0%;
	box-sizing: border-box;
}

.orders .bars {
	background: #fff;
	margin-top: 3%;
	padding-bottom: 5%;
}

.orders .bars ul {
	background: #f8f8f9;
	padding: 2% 3%;
	box-sizing: border-box;
	margin: 5% auto 0;
}

.orders ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 3% 0;
	font-size: 1.6rem;
	color: #4c4c4c;
	border-bottom: 1px solid #e6e6e6;
}

.orders ul li:first-of-type {
	border-width: 5px;
	color: #1a1a1a;
	font-size: 1.6rem;
	font-weight: bold;
}

.orders ul li .lst {
	letter-spacing: 0;
	flex: 1;
	font-size: 1.8rem;
}

.orders ul li .lst:first-of-type {
	display: flex;
	flex: 4;
	align-items: center;
}

.orders ul li img {
	width: 90px;
	border: 1px solid #e5e5e5;
	background: #fff;
	padding: 0;
	margin-right: 20px;
}

.orders ul li b {
	font-size: 1.6rem;
	color: #4c4c4c;
	letter-spacing: 0;
}

.orders ul li p {
	color: #4c4c4c;
	font-size: 1.6rem;
	line-height: 1.6;
	font-weight: normal;
	letter-spacing: 0;
}

.numbers {
	width: 70px;
	display: flex;
	align-items: center;
	letter-spacing: 0;
	font-size: 1.6rem;
}

.numbers input {
	width: 70px;
	line-height: 36px;
	text-align: center;
	background: none;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
}

.orders ul li .del {
	width: 32px;
	flex: inherit;
	cursor: pointer;
}

.orders ul li .del img {
	display: block;
	width: 20px;
	padding: 6px;
	border-radius: 4px;
}

.orders .bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2% 0;
}

.orders .bottom .left {
	width: 100%;
}

.orders .bottom dl {
	display: flex;
}

.orders .bottom dl dd {
	font-size: 1.6rem;
	color: #1a1a1a;
	margin: 6px 0;
	letter-spacing: 0;
	font-weight: normal;
}

.orders .bottom dl:first-of-type dd {
	font-weight: bold;
}

.orders .bottom dl dd:first-of-type {
	width: 70%;
}

.orders .submits {
	width: 150px;
}

.orders2 .bottom {
	padding-top: 3%;
}

/* 下单流程 */
.buy1 {
	padding-top: 0;
}

.buy1 .bars {
	margin-top: 2%;
}

.buy1 .title4 {
	display: flex;
	align-items: center;
}

.buy1 .title4 span {
	background: #191919;
	color: #fff;
	font-size: 1.8rem;
	line-height: 32px;
	width: 32px;
	text-align: center;
	border-radius: 50%;
	margin-right: 10px;
}

.buy1 .agree {
	display: flex;
	align-items: center;
	letter-spacing: 0;
	font-size: 1.6rem;
}

.buy1 .agree input {
	margin-right: 6px;
}

.buy1 button {
	width: 30%;
}

.buy1 .bars2 {
	background: #f5f4f2;
	border: none;
	box-shadow: 0px 1px 0px 0px rgba(230, 230, 230, 0.004);
}

.buy1 .bars2 .title4 {
	color: #919499;
}

.buy1 .bars2 .title4 span {
	background: none;
	border: 1px solid #919499;
	color: #919499;
}

.buy2 .title4 {
	position: relative;
}

.buy2 .title4 a {
	border-bottom: 1px solid #1a1a1a;
	font-size: 1.8rem;
	color: #191919;
	position: absolute;
	right: 5%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-weight: normal;
	text-transform: none;
	letter-spacing: 0;
}

.buy2 .bars:first-of-type .bb {
	padding-bottom: 5%;
}

.buy2 .bars:first-of-type .bb p {
	margin: 3px 0;
	color: #1a1a1a;
}

.buy2 .title4 img {
	width: 2rem;
	margin-right: 10px;
}

.buy2 .bb p {
	margin-bottom: 10px;
}

.buy2 .submits {
	width: 25%;
	margin-top: 5%;
}

.back2 {
	padding-top: 2%;
	height: 5rem;
}

.back2 img {
	height: 100%;
}

/* 购物车 */
.carts {
	background: #fff;
}

.carts .bars {
	margin-top: 0;
	padding-bottom: 0;
}

.carts .bars ul {
	margin: 0;
}

.carts .right {
	display: flex;
	justify-content: flex-end;
	margin: 1rem 0;
}

.carts .right .bbs {
	background: none;
	border: 1px solid #e6e8ed;
	color: #1a1a1a;
	font-size: 1.6rem;
	margin-right: 20px;
}
.payok{
    text-align: center;
    padding: 10% 0;
}
.payok img{
    margin: auto;
    width: 4rem;
}
.payok p{
    font-size: 2.4rem;
    margin: 2rem 0;
}
.payok .submits{
    margin: auto;
    padding: 0 3rem;
}