﻿/*初始化开始*/

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
	margin: 0;
	padding: 0;
	word-wrap: break-word
}

li,
ul,
ol,
dl {
	list-style: none;
}

li,
select,
textarea,
input {
	vertical-align: middle;
}

a {
	color: #000000;
	text-decoration: none;
	outline: none;
}

a:-webkit-any-link {}

a:hover {
	text-decoration: none;
}

a:active {
	star: expression(this.onFocus=this.blur());
}

:focus {
	outline: 0;
}

em {
	font-style: italic;
}

img {
	border: 0px;
}

h1 {
	font-size: 24px;
}

h2 {
	font-size: 18px;
}

h3 {
	font-size: 16px;
}

h4 {
	font-size: 14px;
}

h5 {
	font-size: 12px;
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

p {
	word-wrap: break-word
}

input,
label,
th {
	vertical-align: middle;
}




/*new type*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  body {
	background-color: #f8fafc;
	color: #1e293b;
	overflow-x: hidden;
	line-height: 1.6;
  }

  /* 特色导航栏样式 */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

  .navbar::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #3b82f6, #f97316);
	transform: scaleX(0);
	transition: all 0.3s ease;;
  }

  .navbar.scrolled {
	background: #ffffff;
	padding: 0.8rem 5%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .navbar.scrolled::after {
	transform: scaleX(1);
  }

  .logo {
	font-size: 1.8rem;
	font-weight: 800;
	color: #1e293b;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	position: relative;
	padding: 0.5rem 0;
  }

  .navbar.scrolled .logo {
	color: #3b82f6;
  }

  .logo span {
	color: #f97316;
	position: relative;
  }

  .logo span::before {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 0;
	width: 100%;
	height: 6px;
	background-color: rgba(249, 115, 22, 0.2);
	z-index: -1;
	transform: skew(-12deg);
  }

  .nav-links {
	display: flex;
	gap: 2.5rem;
  }

  .nav-links a {
	color: #1e293b;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	transition: all 0.3s ease;;
	padding: 0.5rem 0;
  }

  .navbar.scrolled .nav-links a {
	color: #64748b;
  }

  .nav-links a:hover {
	color: #3b82f6;
  }

  .nav-links a::before {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	bottom: 0;
	left: 50%;
	background-color: #f97316;
	border-radius: 50%;
	transform: translateX(-50%) scale(0);
	transition: all 0.3s ease;;
  }

  .nav-links a:hover::before {
	transform: translateX(-50%) scale(1);
  }

  .menu-toggle {
	display: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #1e293b;
	z-index: 1001;
  }

  .navbar.scrolled .menu-toggle {
	color: #3b82f6;
  }

  /* 英雄区域样式 */
  .hero {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f1f5f9" opacity="0.7"/><circle cx="50" cy="50" r="8" fill="%233b82f6" opacity="0.1"/></svg>');
    background-size: 100px;
    z-index: 1;
}

  .hero-content {
    max-width: 1000px;
    padding: 0 2rem;
    z-index: 1;
  }

  .hero h1 {
	margin: 0 auto;
	font-size: 4rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(90deg, #3b82f6, #f97316);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	line-height: 1.2;
	position: relative;
	display: inline-block;
  }

  .hero h1::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 10%;
	width: 80%;
	height: 8px;
	background-color: rgba(59, 130, 246, 0.1);
	border-radius: 4px;
  }

  .hero p {
	font-size: 1.2rem;
	color: #64748b;
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
  }

  .btn {
	display: inline-block;
	padding: 0.8rem 2.2rem;
	background-color: #3b82f6;
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  }

  .btn:hover {
	background-color: #f97316;
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
  }

  .btn-outline {
	background: transparent;
	border: 2px solid #3b82f6;
	color: #3b82f6;
	margin-left: 1rem;
	box-shadow: none;
  }

  .btn-outline:hover {
	background-color: #3b82f6;
	border-color: #3b82f6;
	color: white;
  }

  /* 通用区域样式 */
  .section {
	padding: 10rem 5%;
	position: relative;
  }

  .section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	z-index: -1;
  }

  .section:nth-child(even)::before {
	background-color: #f8fafc;
  }

  .section-title {
	text-align: center;
	margin-bottom: 5rem;
	position: relative;
  }

  .section-title h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
	color: #1e293b;
  }

  .section-title h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #3b82f6, #f97316);
	border-radius: 2px;
  }

  .section-title p {
	color: #64748b;
	max-width: 600px;
	margin: 0 auto;
  }

  /* 动漫中心样式 */
  .comics-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
  }

  .comic-card {
	background-color: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	position: relative;
	border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .comic-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  }

  .comic-img {
	height: 380px;
	overflow: hidden;
	position: relative;
  }

  .comic-img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.6) 100%);
	z-index: 1;
	opacity: 0.8;
  }

  .comic-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;;
  }

  .comic-card:hover .comic-img img {
	transform: scale(1.05);
  }

  .comic-rating {
	position: absolute;
	top: 15px;
	right: 15px;
	background-color: #f97316;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	z-index: 2;
	box-shadow: 0 3px 10px rgba(249, 115, 22, 0.3);
  }

  .comic-info {
	padding: 1.5rem;
	position: relative;
  }

  .comic-title {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: #1e293b;
  }

  .comic-genre {
	display: inline-block;
	padding: 0.3rem 0.8rem;
	background-color: rgba(59, 130, 246, 0.1);
	color: #3b82f6;
	border-radius: 20px;
	font-size: 0.8rem;
	margin-bottom: 1rem;
  }

  .comic-desc {
	color: #64748b;
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
  }

  /* 动漫介绍样式 */
  .comic-detail {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	align-items: center;
  }

  .detail-img {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	position: relative;
	transform: rotate(-2deg);
	transition: all 0.3s ease;;
  }

  .detail-img:hover {
	transform: rotate(0);
  }

  .detail-img::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, rgba(59, 130, 246, 0.05), rgba(249, 115, 22, 0.05));
  }

  .detail-img img {
	width: 100%;
	display: block;
  }

  .detail-content h3 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: #1e293b;
	position: relative;
	padding-bottom: 1rem;
  }

  .detail-content h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 3px;
	background-color: #3b82f6;
  }

  .detail-meta {
	display: flex;
	gap: 2rem;
	margin-bottom: 2rem;
	color: #64748b;
	flex-wrap: wrap;
  }

  .detail-meta div {
	display: flex;
	align-items: center;
	gap: 0.5rem;
  }

  .detail-desc {
	margin-bottom: 2rem;
	color: #1e293b;
	line-height: 1.8;
	font-size: 1.05rem;
  }

  .detail-chapters {
	margin-top: 3rem;
  }

  .detail-chapters h4 {
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
	color: #1e293b;
  }

  .chapters-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 1rem;
  }

  .chapter-item {
	padding: 0.8rem;
	background-color: #f8fafc;
	border-radius: 8px;
	text-align: center;
	transition: all 0.3s ease;;
	cursor: pointer;
	border: 1px solid rgba(0, 0, 0, 0.05);
	font-weight: 500;
  }

  .chapter-item:hover {
	background-color: #3b82f6;
	color: white;
	transform: translateY(-3px);
  }

  /* 关于我们样式 */
  .about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
  }

  .about-text h3 {
	font-size: 2.2rem;
	margin-bottom: 2rem;
	color: #1e293b;
	position: relative;
	display: inline-block;
  }

  .about-text h3::before {
	content: '';
	position: absolute;
	top: -10px;
	left: -15px;
	width: 30px;
	height: 30px;
	background-color: rgba(59, 130, 246, 0.1);
	border-radius: 8px;
	z-index: -1;
  }

  .about-text p {
	margin-bottom: 1.5rem;
	color: #64748b;
	font-size: 1.05rem;
  }

  .about-features {
	margin-top: 3rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
  }

  .feature {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background-color: #f8fafc;
	border-radius: 10px;
	transition: all 0.3s ease;;
  }

  .feature:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .feature-icon {
	width: 45px;
	height: 45px;
	background-color: rgba(59, 130, 246, 0.1);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #3b82f6;
	flex-shrink: 0;
	font-size: 1.2rem;
  }

  .feature-text h4 {
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
	color: #1e293b;
  }

  .feature-text p {
	font-size: 0.9rem;
	margin-bottom: 0;
  }

  .about-image {
	position: relative;
  }

  .about-image img {
	width: 100%;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .about-stats {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #ffffff;
	padding: 1.5rem 2rem;
	border-radius: 12px;
	display: flex;
	gap: 3rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .stat-item {
	text-align: center;
  }

  .stat-number {
	font-size: 1.8rem;
	font-weight: 700;
	color: #3b82f6;
	margin-bottom: 0.3rem;
  }

  .stat-label {
	color: #64748b;
	font-size: 0.9rem;
  }

  /* 联系我们样式 */
  .contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
  }

  .contact-info {
	background-color: #ffffff;
	padding: 3rem;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .contact-info h3 {
	font-size: 1.8rem;
	margin-bottom: 2rem;
	color: #1e293b;
  }

  .contact-details {
	margin-bottom: 3rem;
  }

  .contact-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .contact-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
  }

  .contact-icon {
	width: 50px;
	height: 50px;
	background-color: rgba(59, 130, 246, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #3b82f6;
  }

  .contact-text h4 {
	margin-bottom: 0.3rem;
	font-size: 1.1rem;
	color: #1e293b;
  }

  .contact-text p {
	color: #64748b;
  }

  .social-links {
	display: flex;
	gap: 1.5rem;
  }

  .social-link {
	width: 45px;
	height: 45px;
	background-color: #f8fafc;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #3b82f6;
	transition: all 0.3s ease;;
	border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .social-link:hover {
	background-color: #3b82f6;
	color: white;
	transform: translateY(-5px) rotate(10deg);
  }

  .contact-form {
	background-color: #ffffff;
	padding: 3rem;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .contact-form h3 {
	font-size: 1.8rem;
	margin-bottom: 2rem;
	color: #1e293b;
  }

  .form-group {
	margin-bottom: 1.5rem;
  }

  .form-group label {
	display: block;
	margin-bottom: 0.8rem;
	font-weight: 500;
	color: #1e293b;
  }

  .form-group input,
  .form-group textarea {
	width: 100%;
	padding: 1rem;
	background-color: #f8fafc;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	color: #1e293b;
	font-size: 1rem;
	transition: all 0.3s ease;;
  }

  .form-group input:focus,
  .form-group textarea:focus {
	outline: none;
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }

  .form-group textarea {
	min-height: 150px;
	resize: vertical;
  }

  /* 页脚样式 */
  footer {
	background-color: #1e293b;
	padding: 5rem 5% 2rem;
	position: relative;
	color: #f8fafc;
  }

  footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 8px;
	background: linear-gradient(90deg, #3b82f6, #f97316);
  }

  .footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 4rem;
  }

  .footer-logo {
	font-size: 1.5rem;
	font-weight: 800;
	color: #f8fafc;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 1.5rem;
  }

  .footer-logo span {
	color: #f97316;
  }

  .footer-desc {
	color: #94a3b8;
	margin-bottom: 2rem;
  }

  .footer-links h4 {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.8rem;
	color: #f8fafc;
  }

  .footer-links h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background-color: #f97316;
	border-radius: 2px;
  }

  .footer-links ul {
	list-style: none;
  }

  .footer-links ul li {
	margin-bottom: 0.8rem;
  }

  .footer-links ul li a {
	color: #94a3b8;
	text-decoration: none;
	transition: all 0.3s ease;;
  }

  .footer-links ul li a:hover {
	color: #f97316;
	padding-left: 5px;
  }

  .footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(156, 163, 175, 0.1);
	color: #94a3b8;
	font-size: 0.9rem;
  }

  /* 自定义图标 */
  .icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	position: relative;
  }

  .icon-menu::before {
	content: '☰';
	font-size: 24px;
  }

  .icon-heart::before {
	content: '❤';
	font-size: 18px;
  }

  .icon-calendar::before {
	content: '📅';
	font-size: 18px;
  }

  .icon-user::before {
	content: '👤';
	font-size: 18px;
  }

  .icon-map::before {
	content: '📍';
	font-size: 20px;
  }

  .icon-phone::before {
	content: '📞';
	font-size: 20px;
  }

  .icon-envelope::before {
	content: '✉️';
	font-size: 20px;
  }

  .icon-facebook::before {
	content: 'f';
	font-weight: bold;
	font-size: 18px;
  }

  .icon-twitter::before {
	content: 't';
	font-weight: bold;
	font-size: 18px;
  }

  .icon-instagram::before {
	content: 'i';
	font-weight: bold;
	font-size: 18px;
  }

  .icon-youtube::before {
	content: 'y';
	font-weight: bold;
	font-size: 18px;
  }

  /* 响应式设计 */

  @media (max-width: 1140px){
	.navbar{
		height: 150px;
		background: #ffffff;
	}

	.hero {
		height: auto;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		overflow: hidden;
		margin-top: 150px;
	}
  }
  @media (max-width: 1024px) {
	.comic-detail,
	.about-content,
	.contact-container {
	  grid-template-columns: 1fr;
	}

	.detail-img,
	.about-image {
	  max-width: 600px;
	  margin: 0 auto;
	}

	.about-stats {
	  gap: 2rem;
	  padding: 1rem 1.5rem;
	}
  }

  @media (max-width: 768px) {
	.nav-links {
	  position: fixed;
	  top: 0;
	  right: -100%;
	  width: 80%;
	  height: 100vh;
	  background-color: #ffffff;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	  gap: 3rem;
	  font-size: 1.2rem;
	  transition: all 0.3s ease;;
	  z-index: 999;
	  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
	}

	.nav-links.active {
	  right: 0;
	}

	.menu-toggle {
	  display: block;
	}

	.hero h1 {
	  font-size: 2.5rem;
	}

	.hero p {
	  font-size: 1rem;
	}

	.section {
	  padding: 7rem 5%;
	}

	.section-title h2 {
	  font-size: 2rem;
	}

	.about-features {
	  grid-template-columns: 1fr;
	}

	.about-stats {
	  flex-direction: column;
	  gap: 1rem;
	  bottom: -60px;
	}

	.comic-img {
	  height: 320px;
	}
  }

  @media (max-width: 480px) {
	.hero h1 {
	  font-size: 2rem;
	}

	.btn {
	  display: block;
	  width: 100%;
	  text-align: center;
	  margin-bottom: 1rem;
	}

	.btn-outline {
	  margin-left: 0;
	}

	.detail-meta {
	  flex-direction: column;
	  gap: 1rem;
	}

	.chapters-list {
	  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
	}

	.contact-info,
	.contact-form {
	  padding: 2rem 1.5rem;
	}
  }
/**/