﻿html {
	color: #000;
	background: #fff;
}

body {
	color: #666;
	font-size: 14px;
	width: 100%;
}

/*网站字体颜色*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

li {
	list-style: none;
}


/*title*/
h1 {
	font-size: 32px;
}

h2 {
	font-size: 26px;
}

h3 {
	font-size: 20px;
}

h4 {
	font-size: 14px;
}

h5 {
	font-size: 12px;
}

h6 {
	font-size: 10px;
}

.mt10 {
	margin-top: 10px;
}

a {
	color: #666;
	text-decoration: none;
}

/*for ie f6n.net*/
a:hover {
	color: #0162d5 !important;
}

a:focus {
	outline: 0;
}

/*for ff f6n.net*/
.vam {
	vertical-align: middle;
}

.clear {
	clear: both;
	height: 0;
	line-height: 0;
	font-size: 0;
}

p {
	word-spacing: -1.5px;
}

.tr {
	text-align: right;
}

.tl {
	text-align: left;
}

.center {
	text-align: center;
}

.fl {
	float: left !important;
}

.fr {
	float: right !important;
}

.pa {
	position: absolute;
}

.pr {
	position: relative
}

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

/* -- 页面整体布局 -- */
.content,
.footer {
	width: 1400px;
	margin: 0 auto;
	font-family: "Microsoft Yahei";
}

.topWrap {
	font-family: "Microsoft Yahei";
	position: relative;
	width: 100%;
	background: #0162d5;
}

.header {
	display: flex;
	justify-content: space-between;
	width: 1400px;
	margin: 0 auto;
	position: relative;
	padding: 15px 0;
}

.header1 {
	width: 1200px;
}

.t1 {
	height: 105px;
	overflow: hidden;
	width: 160px;
	position: relative;
	color: #fff;
	letter-spacing: 2px;
	padding: 0 10px;
	font-size: 24px;
	background: #01499d;
	font-weight: bold;
	overflow: hidden;
	display: flex;
	align-items: center
}

.t0 {
	overflow: hidden;
	margin-bottom: 6px;
}

.t2 {
	float: left;
	font-size: 22px;
	color: #fff;
	height: 52px;
	line-height: 52px;
}

.t2 h1 {
	display: inline-block;
	font-size: 22px;
}



.t3 {
	background: url(/resource/20/image/44tel.png)no-repeat left center;
	padding-left: 55px;
	float: right
}

.t3 p {
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 24px;
	letter-spacing: 0px;
	color: #ffffff;
}

.t3 p:nth-child(2) {
	font-size: 22px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 28px;
	letter-spacing: 0px;
	color: #ffffff;
}


.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.product-card {
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.4s;
	cursor: pointer;
	position: relative;
}

.product-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-gold);
	opacity: 0;
	transition: opacity 0.4s;
	z-index: 0;
}

.product-card:hover {
	transform: translateY(-8px);
	border-color: rgba(232, 168, 56, 0.3);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-card:hover::before {
	opacity: 0.03;
}

.product-image {
	width: 100%;
	height: 240px;
	object-fit: cover;
	transition: transform 0.4s;
}

.product-card:hover .product-image {
	transform: scale(1.05);
}

.product-content {
	padding: 15px;
	position: relative;
	z-index: 1;
}

.product-title {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 8px;
}



.nav {
	height: 45px;
	position: relative;
	width: 100%;
	background: #01499d
}

.nav ul {
	width: 1200px;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}

.nav li {
	height: 45px;
	line-height: 45px;
	text-align: center;
	position: relative;
	overflow: hidden;
	width: 200px;
}

.nav li a {
	font-size: 18px;
	color: #fff;
}

.nav li a:hover {
	color: #fff !important;
}



/*特效*/
.white,
.whites {
	position: relative;
	overflow: hidden;
}

.white:after,
.whites:after {
	content: '';
	position: absolute;
	left: -100%;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: -moz-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .5), rgba(255, 255, 255, 0));
	background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .5), rgba(255, 255, 255, 0));
	transform: skewx(-25deg);
}

.white:hover:after {
	left: 100%;
	-moz-transition: 1s;
	-o-transition: 1s;
	-webkit-transition: 1s;
	transition: 1s;
}

.whites:hover:after {
	left: 100%;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}


.fullSlide {
	min-width: 1200px;
	position: relative;
	height: 450px;
	overflow: hidden;
	z-index: 2;
}

.fullSlide .bd {
	position: relative;
	z-index: 0;
}

.fullSlide .bd ul {
	width: 100% !important;
}

.fullSlide .bd li {
	width: 100% !important;
	height: 450px;
	overflow: hidden;
	text-align: center;
	position: relative;
}

.fullSlide .bd li a {
	display: block;
	height: 450px;
}

.fullSlide .bd li img {
	position: absolute;
	left: 50%;
	margin-left: -960px;
	top: 0;
}

.fullSlide .hd {
	position: absolute;
	bottom: 32px;
	z-index: 99;
	left: 46%;
	width: 200px;
}

.fullSlide .hd li {
	width: 15px;
	height: 15px;
	float: left;
	margin-right: 20px;
	background: #fff;
	border-radius: 50%
}

.fullSlide .hd li.on {
	background: #0162d5;
}

.prev {
	position: absolute;
	left: 2%;
	top: 50%;
	cursor: pointer
}

.next {
	position: absolute;
	right: 2%;
	top: 50%;
	cursor: pointer
}




.footWrap {
	background: #33383c;
	overflow: hidden;
	font-family: "Microsoft Yahei";
	padding: 30px 0;
	position: relative;
	z-index: 1
}

.footer {
	width: 1200px;
	margin: 0 auto;
	position: relative;
	line-height: 25px;
	text-align: center;
	color: #fff
}

.footer a {
	color: #fff;
}

.mobile-fixed,
.mobile-footer {
	display: none;
}

@media (max-width:768px) {

	.header,
	.header1,
	.content,
	.footer {
		width: 100%;
	}

	.header {
		display: block
	}

	.t0 {
		display: none
	}

	.header {
		padding: 0
	}

	.topWrap {
		height: 60px;
		padding-top: 0;
	}

	.header {
		margin: 0;
	}

	.t1 {
		width: 100%;
		height: 60px;
	}

	.t1 span {
		line-height: 60px;
		font-size: 24px;
		padding: 0 10px;
	}

	.t2,
	.t3 {
		display: none;
	}

	.nav .cur a,
	.nav li:hover a {
		color: #0162d5;
		border-bottom: none;
		background: #fff;
	}


	/*头部nav*/
	.nav {
		z-index: 1000;
		position: fixed;
		top: 60px;
		left: -100%;
		width: 100%;
		height: 100%;
		background: url(/resource/20/image/nav_bj.jpg) no-repeat center top;
		transition: all .36s ease;
		margin: 0;
		background: #fff;
	}

	.nav ul {
		float: none;
		width: 100%;
		display: block
	}

	.nav li {
		float: none;
		height: 50px;
		line-height: 50px;
		border-bottom: 1px solid #eee;
		width: 100%;
		text-align: left;
		text-indent: 20px;
	}

	.nav li a {
		color: #333;
		padding: 0;
		height: 50px;
	}


	.m_nav {
		position: absolute;
		top: 10px;
		width: 40px;
		height: 40px;
		background: url(/resource/20/image/menu.png) no-repeat center center #0162d5;
		background-size: 25px auto;
		right: 5px;
	}

	.m_menu .m_nav {
		background: url(/resource/20/image/menu-1.png) no-repeat center center #0162d5;
		background-size: 25px auto;
	}

	.m_menu .nav {
		left: 0;
	}

	/*banner*/
	.fullSlide {
		min-width: 320px;
		height: auto;
	}

	.fullSlide .bd li {
		height: 138px;
	}

	.fullSlide .bd li img {
		width: 100%;
		left: 0;
		margin-left: 0;
	}

	.next,
	.prev {
		display: none
	}

	.fullSlide .hd {
		left: 50%;
		margin-left: -80px;
		bottom: 5px;
		width: 200px;
	}

	.seah_bj,
	.linkbox {
		display: none;
	}

	/*脚部*/
	.footWrap {
		padding: 30px 15px;
		margin-bottom: 50px;
		text-align: justify
	}


	.mobile-fixed,
	.mobile-footer {
		display: block;
		height: 50px
	}

	.mobile-footer {
		position: fixed;
		bottom: 0;
		z-index: 99;
		left: 0;
		width: 100%;
		background: #33383c;
		color: #fff;
		padding: 10px 0;
		border-top: 1px solid #fff;
	}

	.mobile-footer a {
		color: #fff;
	}

	.mobile-footer li {
		float: left;
		width: 25%;
		padding: 0 10px;
		text-align: center;
		box-sizing: border-box;
	}

	.mobile-footer li .icon {
		display: block
	}

	.mobile-footer li .icon .fa-qq {
		background: url(/resource/20/image/ft-qq.png) 50% no-repeat
	}

	.mobile-footer li .icon .fa-phone {
		background: url(/resource/20/image/ft-phone.png) 50% no-repeat
	}

	.mobile-footer li .icon .fa-home {
		background: url(/resource/20/image/ft-home.png) 50% no-repeat
	}

	.mobile-footer li .icon .fa-duanxin {
		background: url(/resource/20/image/ft-duanxin.png) 50% no-repeat
	}

	.mobile-footer li .icon .fa {
		width: 25px;
		height: 25px;
		display: inline-block;
		background-size: 25px
	}

	.mobile-footer li p {
		font-size: 14px
	}

}