* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Microsoft YaHei", sans-serif;
}
body {
	color: #333;
	line-height: 1.6;
}
.container {
	width: 1200px;
	margin: 0 auto;
}
header {
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 100;
}
.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}
.logo {
	height: 60px;
}
nav ul {
	display: flex;
	list-style: none;
}
nav ul li {
	margin-left: 30px;
}
nav ul li a {
	text-decoration: none;
	color: #333;
	font-weight: bold;
	padding: 5px 0;
	position: relative;
}
nav ul li a:hover:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #0066cc;
}
.banner {
	height: 500px;
	background-image: url('../images/banner.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	margin-top: 80px;
}
.banner-content {
	color: #fff;
	max-width: 600px;
}
.banner-content h1 {
	font-size: 42px;
	margin-bottom: 20px;
}
.banner-content p {
	font-size: 18px;
	margin-bottom: 30px;
}
.btn {
	display: inline-block;
	padding: 12px 30px;
	background-color: #0066cc;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: bold;
	transition: background-color 0.3s;
}
.btn:hover {
	background-color: #0055aa;
}
section {
	padding: 80px 0;
}
.section-title {
	text-align: center;
	margin-bottom: 30px;
}
.section-title h2 {
	font-size: 36px;
	color: #222;
	margin-bottom: 15px;
}
.section-title p {
	color: #777;
	font-size: 18px;
}
.features {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}
.feature-item {
	width: 30%;
	text-align: center;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	border-radius: 8px;
	transition: transform 0.3s;
}
.feature-item:hover {
	transform: translateY(-10px);
}
.feature-icon {
	font-size: 50px;
	color: #0066cc;
	margin-bottom: 20px;
}
.feature-item h3 {
	font-size: 22px;
	margin-bottom: 15px;
}
.products {
	background-color: #f9f9f9;
}
.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.product-card {
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	transition: transform 0.3s;
}
.product-card:hover {
	transform: translateY(-10px);
}
.product-img {
	height: 250px;
	background-color: #ddd;
	background-size: cover;
	background-position: center;
}
.product-info {
	padding: 20px;
}
.product-info h3 {
	font-size: 20px;
	margin-bottom: 10px;
}
footer {
	background-color: #222;
	color: #fff;
	padding: 60px 0 20px;
}
.footer-content {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}
.footer-column {
	width: 23%;
}
.footer-column h3 {
	font-size: 18px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}
.footer-column h3:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background-color: #0066cc;
}
.footer-column ul {
	list-style: none;
}
.footer-column ul li {
	margin-bottom: 10px;
}
.footer-column ul li a {
	color: #bbb;
	text-decoration: none;
	transition: color 0.3s;
}
.footer-column ul li a:hover {
	color: #fff;
}
.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #444;
	color: #bbb;
	font-size: 14px;
}
/* 认证按钮样式 */
.auth-buttons {
	display: flex;
	align-items: center;
	margin-left: 30px;
}

.auth-buttons a {
	margin-left: 10px;
}

.btn-outline {
	background: transparent;
	border: 2px solid #0066cc;
	color: #0066cc;
}

.btn-outline:hover {
	background: #0066cc;
	color: white;
}

/* 响应式调整 */
@media (max-width: 768px) {
	.auth-buttons {
		margin-left: 0;
		margin-top: 20px;
	}
}

/* 登录/注册表单样式 */
.auth-container {
	max-width: 500px;
	margin: 100px auto;
	padding: 40px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.auth-container h2 {
	text-align: center;
	margin-bottom: 30px;
	color: #0066cc;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
}

.form-group input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	transition: border 0.3s;
}

.form-group input:focus {
	border-color: #0066cc;
	outline: none;
}

.form-actions {
	margin-top: 30px;
	text-align: center;
}

.form-actions .btn {
	width: 100%;
	padding: 12px;
	font-size: 16px;
}

.form-footer {
	margin-top: 20px;
	text-align: center;
	font-size: 14px;
}

.form-footer a {
	color: #0066cc;
	font-weight: 500;
}

.error-message {
	color: #e74c3c;
	font-size: 14px;
	margin-top: 5px;
	display: none;
}

/* 移动端调整 */
@media (max-width: 600px) {
	.auth-container {
		margin: 70px auto;
		padding: 30px 20px;
	}
}

.treaty{
    text-align: center;
    overflow: hidden;
    margin: 10px auto 20px;
    display: table;
}
.treaty li{
    float: left;
    padding: 0 15px;
    color: #888;
    font-size: 14px;
    line-height: 16px;
    border-right: 1px solid #e6e6e6;
    display: inline;
}
.treaty li:last-child{
    border-right: none;
}
.treaty li a{
    color: #888;
}

a{ 
	text-decoration: none; 
	color: inherit;
} 