.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.transition {
  transition: all 0.3s ease;
}
.shadow {
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #2C2C2C;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn.btn-primary {
  background: linear-gradient(135deg, #C41E3A, #8B0000);
  color: #FFFFFF;
}
.btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.1);
}
.btn.btn-full {
  width: 100%;
}
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: #C41E3A;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px #a50404 outset;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.1);
}
.navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar .nav-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.navbar .nav-logo img {
  height: 60px;
  width: auto;
}
.navbar .nav-logo .brand-name {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 5px #333;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.navbar .nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}
.navbar .nav-menu .nav-link {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.navbar .nav-menu .nav-link:hover,
.navbar .nav-menu .nav-link.active {
  color: #FFD700;
}
.navbar .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.navbar .hamburger span {
  width: 25px;
  height: 3px;
  background: #C41E3A;
  margin: 3px 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .nav-logo img {
    height: 50px !important;
    width: auto;
  }
  .nav-logo .brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 5px #333;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  }
  .navbar .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 100%;
    margin: 0 auto;
  }
  .navbar .hamburger span {
    background-color: #fff;
  }
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #C41E3A;
  margin-bottom: 15px;
  position: relative;
}
.section-header .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #FFD700;
}
.section-header .section-subtitle {
  font-size: 1.1rem;
  color: #666;
}
.culture-section {
  padding: 100px 0;
  background: #FFFFFF;
}
.culture-section .culture-content .culture-text {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.culture-section .culture-content .culture-text .culture-item {
  text-align: center;
  flex: 1;
}
.culture-section .culture-content .culture-text .culture-item h3 {
  font-size: 1.5rem;
  color: #C41E3A;
  margin-bottom: 15px;
}
.culture-section .culture-content .culture-text .culture-item p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}
.brand-section {
  padding: 100px 0;
  background: #C41E3A;
}
.brand-section .brand-content {
  display: flex;
  align-items: center;
  gap: 60px;
}
.brand-section .brand-content .brand-text {
  flex: 1;
}
.brand-section .brand-content .brand-text .section-title {
  text-align: left;
  margin-bottom: 30px;
}
.brand-section .brand-content .brand-text .section-title::after {
  left: 0;
  transform: none;
}
.brand-section .brand-content .brand-text .brand-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 40px;
}
.brand-section .brand-content .brand-text .brand-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.brand-section .brand-content .brand-text .brand-features .feature h4 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.brand-section .brand-content .brand-text .brand-features .feature p {
  color: #fff;
}
.brand-section .brand-content .brand-image {
  flex: 1;
  height: 400px;
  position: relative;
}
.brand-section .brand-content .brand-image .decorative-frame {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
.news-section {
  padding: 100px 0;
  background: #F8F8F8;
}
.news-section .news-grid {
  display: flex;
  gap: 30px;
}
.news-section .news-grid .news-card {
  background: #FFFFFF;
  border-radius: 2px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.1);
  transition: all 0.3s ease;
  flex: 1;
}
.news-section .news-grid .news-card:hover {
  transform: translateY(-5px);
}
.news-section .news-grid .news-card .news-date {
  color: #C41E3A;
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.news-section .news-grid .news-card h3 {
  color: #2C2C2C;
  margin-bottom: 15px;
  font-size: 1.2rem;
  line-height: 1.4;
}
.news-section .news-grid .news-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-section .news-grid .news-card .read-more {
  color: #C41E3A;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.news-section .news-grid .news-card .read-more:hover {
  color: #8B0000;
}
.contact-section {
  padding: 100px 0;
  background: #FFFFFF;
}
.contact-section .contact-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.contact-section .contact-content .contact-info {
  flex: 1;
}
.contact-section .contact-content .contact-info .section-title {
  text-align: left;
  margin-bottom: 20px;
}
.contact-section .contact-content .contact-info .section-title::after {
  left: 0;
  transform: none;
}
.contact-section .contact-content .contact-info .contact-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}
.contact-section .contact-content .contact-info .contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-section .contact-content .contact-info .contact-details .contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-section .contact-content .contact-info .contact-details .contact-item h4 {
  color: #C41E3A;
  margin-bottom: 5px;
}
.contact-section .contact-content .contact-info .contact-details .contact-item p {
  color: #666;
}
.contact-section .contact-content .contact-form {
  flex: 1;
  background: #F8F8F8;
  padding: 40px;
  border-radius: 2px;
}
.contact-section .contact-content .contact-form h3 {
  color: #C41E3A;
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.5rem;
}
.contact-section .contact-content .contact-form .form-group {
  margin-bottom: 20px;
}
.contact-section .contact-content .contact-form .form-group input,
.contact-section .contact-content .contact-form .form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 2px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-section .contact-content .contact-form .form-group input:focus,
.contact-section .contact-content .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #C41E3A;
}
.contact-section .contact-content .contact-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}
@media screen and (max-width: 768px) {
  .contact-form-container {
    flex: auto;
    width: 100%;
  }
  .contact-form {
    flex: auto;
    width: 100%;
    background: #F8F8F8;
    padding: 40px;
    border-radius: 2px;
  }
}
.footer {
  background: #2C2C2C;
  color: #FFFFFF;
  padding: 60px 0 20px;
}
.footer .footer-content {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}
.footer .footer-content .footer-section {
  flex: 1;
}
.footer .footer-content .footer-section h4 {
  color: #C41E3A;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.footer .footer-content .footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 10px;
}
.footer .footer-content .footer-section ul {
  list-style: none;
}
.footer .footer-content .footer-section ul li {
  margin-bottom: 10px;
}
.footer .footer-content .footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer .footer-content .footer-section ul li a:hover {
  color: #C41E3A;
}
.footer .footer-content .footer-section .social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.footer .footer-content .footer-section .social-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer .footer-content .footer-section .social-links a:hover {
  color: #C41E3A;
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #999;
}
@keyframes float {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.thl-products-showcase {
  padding: 120px 0;
  background: linear-gradient(135deg, #fef7f0 0%, #fff5f5 50%, #f0f9ff 100%);
  position: relative;
  overflow: hidden;
}
.thl-products-showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(196, 30, 58, 0.05) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  animation: thl-float 20s ease-in-out infinite;
  z-index: 1;
}
.thl-products-showcase .container {
  position: relative;
  z-index: 2;
}
.thl-showcase-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.thl-showcase-header .thl-showcase-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #C41E3A, #8B0000, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.thl-showcase-header .thl-showcase-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #C41E3A, #FFD700);
  border-radius: 2px;
}
.thl-showcase-header .thl-showcase-subtitle {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 30px;
  font-weight: 300;
  letter-spacing: 1px;
}
.thl-products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.thl-product-item {
  perspective: 1000px;
}
.thl-product-item .thl-product-wrapper {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  padding: 35px;
  text-align: center;
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.1), 0 1px 8px rgba(0, 0, 0, 0.05);
}
.thl-product-item .thl-product-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.thl-product-item .thl-product-wrapper:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: 0 25px 50px rgba(196, 30, 58, 0.2), 0 10px 25px rgba(0, 0, 0, 0.1);
}
.thl-product-item .thl-product-wrapper:hover::before {
  opacity: 1;
}
.thl-product-item .thl-product-wrapper:hover .thl-image-frame {
  transform: scale(1.1) rotateY(10deg);
}
.thl-product-item .thl-product-wrapper:hover .thl-product-badge {
  transform: scale(1.1) rotate(5deg);
}
.thl-product-visual {
  position: relative;
  margin-bottom: 25px;
}
.thl-product-visual .thl-image-frame {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  position: relative;
  border-radius: 50%;
  background: linear-gradient(135deg, #C41E3A, #8B0000);
  padding: 8px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.thl-product-visual .thl-image-frame::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px dashed #FFD700;
  border-radius: 50%;
  animation: thl-rotate 15s linear infinite;
}
.thl-product-visual .thl-image-frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.thl-product-visual .thl-product-badge {
  position: absolute;
  top: -5px;
  right: 10px;
  background: linear-gradient(135deg, #FFD700, #ffed4e);
  color: #2C2C2C;
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 10;
}
.thl-product-details .thl-product-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #C41E3A;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}
.thl-product-details .thl-product-name a {
  text-decoration: none;
  color: #C41E3A;
}
.thl-product-details .thl-product-desc {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
}
.thl-product-details .thl-product-features {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.thl-product-details .thl-product-features .thl-feature-tag {
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(255, 215, 0, 0.1));
  color: #C41E3A;
  padding: 6px 14px;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(196, 30, 58, 0.2);
  transition: all 0.3s ease;
}
.thl-product-details .thl-product-features .thl-feature-tag:hover {
  background: #C41E3A;
  color: #FFFFFF;
  transform: translateY(-2px);
}
@keyframes thl-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
@keyframes thl-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.advantages-section {
  background: #C41E3A;
  padding: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.advantages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #C41E3A 0%, #98172d 100%);
  z-index: 1;
}
.advantages-section .advantages-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}
.advantages-section .advantages-container .advantages-header {
  text-align: center;
  margin-bottom: 60px;
}
.advantages-section .advantages-container .advantages-header .advantages-title {
  font-size: 3rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.advantages-section .advantages-container .advantages-header .advantages-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}
.advantages-section .advantages-container .advantages-header .advantages-decoration {
  width: 100px;
  height: 4px;
  background: #FFD700;
  margin: 0 auto;
  border-radius: 2px;
}
.advantages-section .advantages-container .advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.advantages-section .advantages-container .advantages-grid .advantage-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.advantages-section .advantages-container .advantages-grid .advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: #ffffff;
}
.advantages-section .advantages-container .advantages-grid .advantage-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #FFD700, #C41E3A);
}
.advantages-section .advantages-container .advantages-grid .advantage-item .advantage-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #C41E3A;
  opacity: 0.3;
  margin-bottom: 15px;
}
.advantages-section .advantages-container .advantages-grid .advantage-item .advantage-content h3 {
  font-size: 1.4rem;
  color: #C41E3A;
  margin-bottom: 15px;
  font-weight: 600;
}
.advantages-section .advantages-container .advantages-grid .advantage-item .advantage-content p {
  color: #2C2C2C;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}
.advantages-section .advantages-container .advantages-grid .advantage-item .advantage-content .advantage-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #C41E3A, #8B0000);
  color: #FFFFFF;
  padding: 5px 15px;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
}
.step-process-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff 0%, #ffe4c8 100%);
}
.step-process-section .step-full-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.step-process-section .step-header {
  text-align: center;
  margin-bottom: 80px;
}
.step-process-section .step-header .step-title {
  font-size: 3rem;
  font-weight: 800;
  color: #C41E3A;
  margin-bottom: 20px;
  position: relative;
}
.step-process-section .step-header .step-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #C41E3A, #FFD700);
  border-radius: 2px;
}
.step-process-section .step-header .step-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-top: 30px;
}
.step-process-section .step-grid-wrapper {
  display: flex;
  width: 100%;
  gap: 0;
}
.step-process-section .step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background: #FFFFFF;
  position: relative;
  transition: all 0.3s ease;
  flex: 1;
}
.step-process-section .step-item:not(:last-child) {
  border-right: 1px solid #f0f0f0;
}
.step-process-section .step-item:hover {
  background: #fef7f0;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.1);
}
.step-process-section .step-item:hover .step-visual .step-number {
  transform: scale(1.1);
  background: linear-gradient(135deg, #8B0000, #C41E3A);
}
.step-process-section .step-item:hover .step-visual .step-image img {
  transform: scale(1.05);
}
.step-process-section .step-item .step-visual {
  margin-bottom: 30px;
  position: relative;
}
.step-process-section .step-item .step-visual .step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #C41E3A, #8B0000);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
  border: 4px solid #FFFFFF;
  z-index: 10;
  transition: all 0.3s ease;
}
.step-process-section .step-item .step-visual .step-image {
  width: 200px;
  height: 200px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.step-process-section .step-item .step-visual .step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.step-process-section .step-item .step-content .step-name {
  font-size: 1.5rem;
  color: #C41E3A;
  margin-bottom: 15px;
  font-weight: 600;
}
.step-process-section .step-item .step-content .step-desc {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  max-width: 220px;
}
.step-process-section .step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1px;
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, #C41E3A, transparent);
  transform: translateY(-50%);
}
.banner-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.banner-section .banner-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.banner-section .banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.banner-section .banner-slide.active {
  opacity: 1;
}
.banner-section .banner-slide .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.banner-section .banner-slide .banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
}
.banner-section .banner-slide .banner-content .banner-text {
  text-align: center;
  color: #FFFFFF;
  max-width: 800px;
}
.banner-section .banner-slide .banner-content .banner-text .banner-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.banner-section .banner-slide .banner-content .banner-text .banner-title .banner-highlight {
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.banner-section .banner-slide .banner-content .banner-text .banner-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.banner-section .banner-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 3;
}
.banner-section .banner-indicators .banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.banner-section .banner-indicators .banner-dot.active {
  background: #FFFFFF;
  transform: scale(1.2);
}
.banner-section .banner-indicators .banner-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
.banner-section .banner-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 3;
}
.banner-section .banner-controls .banner-prev,
.banner-section .banner-controls .banner-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-section .banner-controls .banner-prev:hover,
.banner-section .banner-controls .banner-next:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .navbar .nav-menu {
    display: none;
  }
  .navbar .hamburger {
    display: flex;
  }
  .culture-section .culture-text {
    flex-direction: column;
    gap: 40px;
  }
  .nav-menu.active {
    display: block !important;
    position: fixed;
    top: 80px;
    left: 0;
    border-top: 1px solid #9b0303;
    z-index: 999;
    background-color: #C41E3A;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
  }
  .nav-menu.active li a {
    padding: 10px 0;
    display: flex;
  }
  .brand-section .brand-content {
    flex-direction: column;
  }
  .news-section .news-grid {
    flex-direction: column;
  }
  .contact-section .contact-content {
    flex-direction: column;
  }
  .footer .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  .thl-products-showcase {
    padding: 80px 0;
  }
  .thl-products-showcase .thl-showcase-header {
    margin-bottom: 50px;
  }
  .thl-products-showcase .thl-showcase-header .thl-showcase-title {
    font-size: 2.2rem;
  }
  .thl-products-showcase .thl-showcase-header .thl-showcase-subtitle {
    font-size: 1.1rem;
  }
  .thl-products-showcase .thl-products-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .thl-products-showcase .thl-product-wrapper {
    padding: 25px;
  }
  .thl-products-showcase .thl-product-wrapper:hover {
    transform: translateY(-10px);
  }
  .thl-products-showcase .thl-image-frame {
    width: 150px !important;
    height: 150px !important;
  }
  .advantages-section .advantages-container .advantages-header .advantages-title {
    font-size: 2.2rem;
  }
  .advantages-section .advantages-container .advantages-header .advantages-subtitle {
    font-size: 1.1rem;
  }
  .advantages-section .advantages-container .advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .step-process-section .step-full-container {
    max-width: 100%;
    padding: 0 20px;
  }
  .step-process-section .step-grid-wrapper {
    flex-direction: column;
  }
  .step-process-section .step-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }
  .step-process-section .step-item:not(:last-child)::after {
    display: none;
  }
  .step-process-section .step-item .step-visual .step-image {
    width: 150px;
    height: 150px;
  }
  .step-process-section .step-item .step-visual .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .banner-section {
    height: 80vh;
    min-height: 500px;
  }
  .banner-section .banner-slide .banner-content {
    padding: 0 20px;
  }
  .banner-section .banner-slide .banner-content .banner-text .banner-title {
    font-size: 2.5rem;
  }
  .banner-section .banner-slide .banner-content .banner-text .banner-subtitle {
    font-size: 1.2rem;
  }
  .banner-section .banner-controls .banner-prev,
  .banner-section .banner-controls .banner-next {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 480px) {
  .thl-showcase-header .thl-showcase-title {
    font-size: 1.8rem;
  }
  .thl-showcase-header .thl-showcase-subtitle {
    font-size: 1rem;
  }
  .thl-product-wrapper {
    padding: 20px;
  }
  .thl-image-frame {
    width: 120px !important;
    height: 120px !important;
  }
}
.contact-banner {
  height: 60vh;
  background: linear-gradient(135deg, #C41E3A, #8B0000);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.contact-banner .contact-banner-content {
  text-align: center;
  color: #FFFFFF;
  z-index: 2;
}
.contact-banner .contact-banner-content .contact-banner-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.contact-banner .contact-banner-content .contact-banner-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.contact-info-section {
  padding: 80px 0;
  background: #F8F8F8;
}
.contact-info-section .contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.contact-info-section .contact-info-grid .contact-info-card {
  background: #FFFFFF;
  padding: 40px 30px;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.1);
  transition: all 0.3s ease;
}
.contact-info-section .contact-info-grid .contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.15);
}
.contact-info-section .contact-info-grid .contact-info-card .contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #C41E3A, #8B0000);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}
.contact-info-section .contact-info-grid .contact-info-card .contact-icon i {
  font-size: 24px;
  color: #FFFFFF;
}
.contact-info-section .contact-info-grid .contact-info-card h3 {
  color: #C41E3A;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.contact-info-section .contact-info-grid .contact-info-card p {
  color: #2C2C2C;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-info-section .contact-info-grid .contact-info-card .contact-time {
  color: #666;
  font-size: 0.9rem;
}
.contact-form-section {
  padding: 100px 0;
  background: #FFFFFF;
}
.contact-form-section .contact-form-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.contact-form-section .contact-form-wrapper .contact-form-info {
  flex: 1;
}
.contact-form-section .contact-form-wrapper .contact-form-info .section-title {
  text-align: left;
  margin-bottom: 20px;
}
.contact-form-section .contact-form-wrapper .contact-form-info .section-title::after {
  left: 0;
  transform: none;
}
.contact-form-section .contact-form-wrapper .contact-form-info .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}
.contact-form-section .contact-form-wrapper .contact-form-info .contact-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-form-section .contact-form-wrapper .contact-form-info .contact-features .contact-feature h4 {
  color: #C41E3A;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.contact-form-section .contact-form-wrapper .contact-form-info .contact-features .contact-feature p {
  color: #666;
  line-height: 1.5;
}
.contact-form-section .contact-form-wrapper .contact-form-container {
  flex: 1.2;
}
.contact-form-section .contact-form-wrapper .contact-form-container .contact-form {
  background: #F8F8F8;
  padding: 40px;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.1);
}
.contact-form-section .contact-form-wrapper .contact-form-container .contact-form .form-row {
  display: flex;
  gap: 20px;
}
.contact-form-section .contact-form-wrapper .contact-form-container .contact-form .form-row .form-group {
  flex: 1;
}
.contact-form-section .contact-form-wrapper .contact-form-container .contact-form .form-group {
  margin-bottom: 25px;
}
.contact-form-section .contact-form-wrapper .contact-form-container .contact-form .form-group label {
  display: block;
  color: #2C2C2C;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.contact-form-section .contact-form-wrapper .contact-form-container .contact-form .form-group input,
.contact-form-section .contact-form-wrapper .contact-form-container .contact-form .form-group textarea,
.contact-form-section .contact-form-wrapper .contact-form-container .contact-form .form-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 2px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #FFFFFF;
}
.contact-form-section .contact-form-wrapper .contact-form-container .contact-form .form-group input:focus,
.contact-form-section .contact-form-wrapper .contact-form-container .contact-form .form-group textarea:focus,
.contact-form-section .contact-form-wrapper .contact-form-container .contact-form .form-group select:focus {
  outline: none;
  border-color: #C41E3A;
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}
.contact-form-section .contact-form-wrapper .contact-form-container .contact-form .form-group input::placeholder,
.contact-form-section .contact-form-wrapper .contact-form-container .contact-form .form-group textarea::placeholder,
.contact-form-section .contact-form-wrapper .contact-form-container .contact-form .form-group select::placeholder {
  color: #999;
}
.contact-form-section .contact-form-wrapper .contact-form-container .contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.contact-form-section .contact-form-wrapper .contact-form-container .contact-form .form-group select {
  cursor: pointer;
}
.contact-form-section .contact-form-wrapper .contact-form-container .contact-form .form-group.checkbox-group .checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: #666;
}
.contact-form-section .contact-form-wrapper .contact-form-container .contact-form .form-group.checkbox-group .checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  transform: scale(1.2);
}
.contact-map-section {
  padding: 80px 0;
  background: #F8F8F8;
}
.contact-map-section .map-container {
  height: 400px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.1);
}
.contact-map-section .map-container .map-placeholder {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #666;
}
.contact-map-section .map-container .map-placeholder p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.contact-map-section .map-container .map-placeholder span {
  color: #C41E3A;
  font-weight: 600;
}
@media (max-width: 768px) {
  .contact-banner {
    height: 50vh;
  }
  .contact-banner .contact-banner-title {
    font-size: 2.5rem;
  }
  .contact-banner .contact-banner-subtitle {
    font-size: 1rem;
  }
  .contact-info-section {
    padding: 60px 0;
  }
  .contact-info-section .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-form-section {
    padding: 60px 0;
  }
  .contact-form-section .contact-form-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .contact-form-section .contact-form-wrapper .contact-form-container .contact-form {
    padding: 30px 20px;
  }
  .contact-form-section .contact-form-wrapper .contact-form-container .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }
  .contact-map-section {
    padding: 60px 0;
  }
  .contact-map-section .map-container {
    height: 300px;
  }
}
.franchise-hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.franchise-hero-section .franchise-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
  background-image: url('../images/tanghulua.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}
.franchise-hero-section .franchise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(196, 30, 58, 0.7);
}
.franchise-hero-section .franchise-hero-content {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #FFFFFF;
}
.franchise-hero-section .franchise-hero-content .franchise-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.franchise-hero-section .franchise-hero-content .franchise-title .franchise-highlight {
  color: #FFD700;
  display: block;
  font-size: 4rem;
}
.franchise-hero-section .franchise-hero-content .franchise-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
}
.franchise-hero-section .franchise-hero-content .franchise-stats {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}
.franchise-hero-section .franchise-hero-content .franchise-stats .stat-item {
  text-align: center;
}
.franchise-hero-section .franchise-hero-content .franchise-stats .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 5px;
}
.franchise-hero-section .franchise-hero-content .franchise-stats .stat-item .stat-label {
  font-size: 1rem;
  opacity: 0.8;
}
.franchise-hero-section .franchise-hero-content .franchise-cta {
  font-size: 1.1rem;
  padding: 15px 40px;
  background: #FFD700;
  color: #C41E3A;
  border-radius: 2px;
}
.franchise-hero-section .franchise-hero-content .franchise-cta:hover {
  background: #ffdf33;
  transform: translateY(-3px);
}
.franchise-advantages-section {
  padding: 100px 0;
  background: #FFFFFF;
}
.franchise-advantages-section .advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.franchise-advantages-section .advantages-grid .advantage-card {
  text-align: center;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.1);
  transition: all 0.3s ease;
}
.franchise-advantages-section .advantages-grid .advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(196, 30, 58, 0.15);
}
.franchise-advantages-section .advantages-grid .advantage-card .advantage-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #FFE4E1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.franchise-advantages-section .advantages-grid .advantage-card .advantage-icon img {
  width: 50px;
  height: 50px;
}
.franchise-advantages-section .advantages-grid .advantage-card .advantage-title {
  font-size: 1.3rem;
  color: #C41E3A;
  margin-bottom: 15px;
  font-weight: 600;
}
.franchise-advantages-section .advantages-grid .advantage-card .advantage-desc {
  color: #666;
  line-height: 1.6;
}
.franchise-process-section {
  padding: 100px 0;
  background: #F8F8F8;
}
.franchise-process-section .process-timeline {
  display: flex;
  justify-content: space-between;
  margin: 60px 0;
  position: relative;
}
.franchise-process-section .process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: #C41E3A;
  z-index: 1;
}
.franchise-process-section .process-timeline .process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}
.franchise-process-section .process-timeline .process-step .step-number {
  width: 80px;
  height: 80px;
  background: #C41E3A;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 4px solid #FFFFFF;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}
.franchise-process-section .process-timeline .process-step .step-content .step-title {
  font-size: 1.2rem;
  color: #C41E3A;
  margin-bottom: 10px;
  font-weight: 600;
}
.franchise-process-section .process-timeline .process-step .step-content .step-desc {
  color: #666;
  line-height: 1.5;
}
.franchise-process-section .franchise-requirements {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 2px;
  margin: 60px 0;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.1);
}
.franchise-process-section .franchise-requirements .requirements-title {
  font-size: 1.5rem;
  color: #C41E3A;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}
.franchise-process-section .franchise-requirements .requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.franchise-process-section .franchise-requirements .requirements-grid .requirement-item {
  padding: 15px;
  background: #FFE4E1;
  border-radius: 2px;
  text-align: center;
}
.franchise-process-section .franchise-requirements .requirements-grid .requirement-item strong {
  color: #C41E3A;
}
.franchise-process-section .franchise-contact {
  text-align: center;
  background: #C41E3A;
  color: #FFFFFF;
  padding: 40px;
  border-radius: 2px;
}
.franchise-process-section .franchise-contact .contact-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 600;
}
.franchise-process-section .franchise-contact .contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.franchise-process-section .franchise-contact .contact-info .contact-item strong {
  color: #FFD700;
}
.franchise-process-section .franchise-contact .btn {
  background: #FFD700;
  color: #C41E3A;
  border-radius: 2px;
}
.franchise-process-section .franchise-contact .btn:hover {
  background: #ffdf33;
}
@media (max-width: 768px) {
  .franchise-hero-content .franchise-title {
    font-size: 2.5rem;
  }
  .franchise-hero-content .franchise-title .franchise-highlight {
    font-size: 3rem;
  }
  .franchise-hero-content .franchise-stats {
    flex-direction: column;
    gap: 20px;
  }
  .process-timeline {
    flex-direction: column;
    gap: 40px;
  }
  .process-timeline::before {
    display: none;
  }
  .contact-info {
    flex-direction: column;
    gap: 15px !important;
  }
}
.news-hero-section {
  position: relative;
  overflow: hidden;
  height: 100%;
  background-image: url('../images/tanghulua.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}
.news-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(196, 30, 58, 0.5);
}
.news-hero-section .news-hero-content {
  position: relative;
  z-index: 2;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #FFFFFF;
}
.news-hero-section .news-hero-content .news-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.news-hero-section .news-hero-content .news-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}
.news-hero-section .news-hero-content .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.news-hero-section .news-hero-content .breadcrumb a {
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}
.news-hero-section .news-hero-content .breadcrumb a:hover {
  color: #FFD700;
}
.news-hero-section .news-hero-content .breadcrumb span {
  opacity: 0.7;
}
.news-category-section {
  padding: 30px 0;
  background: #FFFFFF;
  border-bottom: 1px solid #eee;
}
.news-category-section .category-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.news-category-section .category-nav .category-btn {
  padding: 10px 25px;
  border: 2px solid #C41E3A;
  background: #FFFFFF;
  color: #C41E3A;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.news-category-section .category-nav .category-btn:hover,
.news-category-section .category-nav .category-btn.active {
  background: #C41E3A;
  color: #FFFFFF;
}
.news-list-section {
  padding: 60px 0;
  background: #F8F8F8;
}
.news-list-section .news-content {
  display: flex;
  gap: 40px;
}
.news-list-section .news-content .news-main {
  flex: 2;
}
.news-list-section .news-content .news-main .news-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.news-list-section .news-content .news-main .news-grid .news-item {
  background: #FFFFFF;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.1);
  transition: all 0.3s ease;
  display: flex;
}
.news-list-section .news-content .news-main .news-grid .news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(196, 30, 58, 0.15);
}
.news-list-section .news-content .news-main .news-grid .news-item.featured {
  border: 2px solid #FFD700;
}
.news-list-section .news-content .news-main .news-grid .news-item.featured .news-image {
  position: relative;
}
.news-list-section .news-content .news-main .news-grid .news-item.featured .news-image .news-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #FFD700;
  color: #C41E3A;
  padding: 5px 12px;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 600;
}
.news-list-section .news-content .news-main .news-grid .news-item .news-image {
  width: 300px;
  height: 200px;
  overflow: hidden;
}
.news-list-section .news-content .news-main .news-grid .news-item .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.news-list-section .news-content .news-main .news-grid .news-item .news-content-text {
  flex: 1;
  padding: 25px;
}
.news-list-section .news-content .news-main .news-grid .news-item .news-content-text .news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.news-list-section .news-content .news-main .news-grid .news-item .news-content-text .news-meta .news-category {
  background: #FFE4E1;
  color: #C41E3A;
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 500;
}
.news-list-section .news-content .news-main .news-grid .news-item .news-content-text .news-meta .news-date {
  color: #666;
  font-size: 0.9rem;
}
.news-list-section .news-content .news-main .news-grid .news-item .news-content-text .news-title-item {
  font-size: 1.3rem;
  color: #2C2C2C;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.news-list-section .news-content .news-main .news-grid .news-item .news-content-text .news-excerpt {
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-list-section .news-content .news-main .news-grid .news-item .news-content-text .read-more-btn {
  color: #C41E3A;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.news-list-section .news-content .news-main .news-grid .news-item .news-content-text .read-more-btn:hover {
  color: #8B0000;
}
.news-list-section .news-content .news-sidebar {
  flex: 1;
}
.news-list-section .news-content .news-sidebar .sidebar-widget {
  background: #FFFFFF;
  border-radius: 2px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.1);
}
.news-list-section .news-content .news-sidebar .sidebar-widget .widget-title {
  font-size: 1.2rem;
  color: #C41E3A;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
}
.news-list-section .news-content .news-sidebar .sidebar-widget .widget-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #FFD700;
}
.news-list-section .news-content .news-sidebar .sidebar-widget .hot-news-list .hot-news-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}
.news-list-section .news-content .news-sidebar .sidebar-widget .hot-news-list .hot-news-item:last-child {
  border-bottom: none;
}
.news-list-section .news-content .news-sidebar .sidebar-widget .hot-news-list .hot-news-item .hot-news-rank {
  width: 25px;
  height: 25px;
  background: #C41E3A;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}
.news-list-section .news-content .news-sidebar .sidebar-widget .hot-news-list .hot-news-item .hot-news-content {
  flex: 1;
}
.news-list-section .news-content .news-sidebar .sidebar-widget .hot-news-list .hot-news-item .hot-news-content h4 {
  font-size: 0.9rem;
  color: #2C2C2C;
  margin-bottom: 5px;
  line-height: 1.4;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-list-section .news-content .news-sidebar .sidebar-widget .hot-news-list .hot-news-item .hot-news-content h4:hover {
  color: #C41E3A;
}
.news-list-section .news-content .news-sidebar .sidebar-widget .hot-news-list .hot-news-item .hot-news-content .hot-news-date {
  font-size: 0.8rem;
  color: #666;
}
.news-list-section .news-content .news-sidebar .sidebar-widget .hot-news-list .hot-news-item .hot-news-content a {
  text-decoration: none;
  color: #C41E3A;
}
.news-list-section .news-content .news-sidebar .sidebar-widget .search-box {
  display: flex;
}
.news-list-section .news-content .news-sidebar .sidebar-widget .search-box input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px 0 0 5px;
  outline: none;
}
.news-list-section .news-content .news-sidebar .sidebar-widget .search-box input:focus {
  border-color: #C41E3A;
}
.news-list-section .news-content .news-sidebar .sidebar-widget .search-box button {
  padding: 12px 20px;
  background: #C41E3A;
  color: #FFFFFF;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-list-section .news-content .news-sidebar .sidebar-widget .search-box button:hover {
  background: #8B0000;
}
.news-list-section .news-content .news-sidebar .sidebar-widget .archive-list .archive-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.news-list-section .news-content .news-sidebar .sidebar-widget .archive-list .archive-item:last-child {
  border-bottom: none;
}
.news-list-section .news-content .news-sidebar .sidebar-widget .archive-list .archive-item a {
  color: #2C2C2C;
  text-decoration: none;
  transition: all 0.3s ease;
}
.news-list-section .news-content .news-sidebar .sidebar-widget .archive-list .archive-item a:hover {
  color: #C41E3A;
}
.news-list-section .news-content .news-sidebar .sidebar-widget.contact-widget {
  background: #C41E3A;
  color: #FFFFFF;
}
.news-list-section .news-content .news-sidebar .sidebar-widget.contact-widget .widget-title {
  color: #FFFFFF;
}
.news-list-section .news-content .news-sidebar .sidebar-widget.contact-widget .widget-title::after {
  background: #FFD700;
}
.news-list-section .news-content .news-sidebar .sidebar-widget.contact-widget .contact-info {
  margin-bottom: 20px;
}
.news-list-section .news-content .news-sidebar .sidebar-widget.contact-widget .contact-info p {
  margin-bottom: 10px;
}
.news-list-section .news-content .news-sidebar .sidebar-widget.contact-widget .contact-info p strong {
  color: #FFD700;
}
.news-list-section .news-content .news-sidebar .sidebar-widget.contact-widget .btn {
  background: #FFD700;
  color: #C41E3A;
}
.news-list-section .news-content .news-sidebar .sidebar-widget.contact-widget .btn:hover {
  background: #ffdf33;
}
@media (max-width: 768px) {
  .news-hero-content .news-title {
    font-size: 2rem;
  }
  .category-nav {
    justify-content: flex-start !important;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .category-nav .category-btn {
    flex-shrink: 0;
  }
  .news-content {
    flex-direction: column;
  }
  .news-content .news-item {
    flex-direction: column;
    width: 100%;
  }
  .news-content .news-item .news-image {
    width: 100% !important;
    height: 200px;
    object-fit: cover;
  }
}
.breadcrumb-section {
  padding: 30px 0 30px 0;
  background: #F8F8F8;
}
.breadcrumb-section .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.breadcrumb-section .breadcrumb a {
  color: #C41E3A;
  text-decoration: none;
  transition: all 0.3s ease;
}
.breadcrumb-section .breadcrumb a:hover {
  color: #8B0000;
}
.breadcrumb-section .breadcrumb .separator {
  color: #666;
}
.breadcrumb-section .breadcrumb .current {
  color: #666;
}
.news-detail-section {
  padding: 50px 0 100px 0;
  background: #FFFFFF;
}
.news-detail-section .news-detail-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .news-detail-section .news-detail-content {
    flex-direction: column;
    gap: 30px;
  }
}
.news-main {
  flex: 2;
}
.news-article {
  background: #FFFFFF;
  border-radius: 2px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.1);
}
.article-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #C41E3A;
}
.article-header .article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}
.article-header .article-meta .news-date {
  color: #C41E3A;
  font-size: 1.1rem;
  font-weight: 600;
}
.article-header .article-meta .news-category {
  background: #C41E3A;
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 0.9rem;
}
.article-header .article-title {
  font-size: 2rem;
  color: #2C2C2C;
  line-height: 1.3;
  margin: 0;
}
.article-body .article-image {
  text-align: center;
  margin: 30px 0;
}
.article-body .article-image img {
  max-width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.1);
}
.article-body .article-content {
  line-height: 1.8;
  color: #2C2C2C;
}
.article-body .article-content * {
  max-width: 100%;
}
.article-body .article-content .article-intro {
  font-size: 1.1rem;
  color: #666;
  font-style: italic;
  margin-bottom: 30px;
  padding: 20px;
  background: #F8F8F8;
  border-left: 4px solid #C41E3A;
}
.article-body .article-content .content-subtitle {
  font-size: 1.5rem;
  color: #C41E3A;
  margin: 40px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.article-body .article-content p {
  margin-bottom: 20px;
  text-align: justify;
}
.article-body .article-content .highlight-box {
  background: #FFE4E1;
  padding: 25px;
  border-radius: 2px;
  margin: 30px 0;
  border-left: 4px solid #C41E3A;
}
.article-body .article-content .highlight-box h3 {
  color: #C41E3A;
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.article-body .article-content .highlight-box .process-list {
  list-style: none;
  padding: 0;
}
.article-body .article-content .highlight-box .process-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.article-body .article-content .highlight-box .process-list li:before {
  content: "•";
  color: #C41E3A;
  position: absolute;
  left: 0;
  font-weight: bold;
}
.article-body .article-content .highlight-box .process-list li strong {
  color: #C41E3A;
}
.article-body .article-content .quote-box {
  background: #F8F8F8;
  padding: 30px;
  border-radius: 2px;
  margin: 30px 0;
  text-align: center;
  border-left: 4px solid #FFD700;
}
.article-body .article-content .quote-box p {
  font-size: 1.1rem;
  font-style: italic;
  color: #2C2C2C;
  margin-bottom: 15px;
  line-height: 1.6;
}
.article-body .article-content .quote-box cite {
  color: #C41E3A;
  font-weight: 600;
  font-style: normal;
}
.article-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.article-footer .article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.article-footer .article-tags .tag {
  background: #C41E3A;
  color: #FFFFFF;
  padding: 6px 15px;
  border-radius: 2px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.article-footer .article-tags .tag:hover {
  background: #8B0000;
}
.news-sidebar {
  flex: 1;
}
.news-sidebar .sidebar-card {
  background: #FFFFFF;
  border-radius: 2px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.1);
}
.news-sidebar .sidebar-card .sidebar-title {
  color: #C41E3A;
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #C41E3A;
}
.news-sidebar .related-news {
  list-style: none;
  padding: 0;
}
.news-sidebar .related-news li {
  margin-bottom: 15px;
}
.news-sidebar .related-news li a {
  color: #2C2C2C;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}
.news-sidebar .related-news li a:hover {
  color: #C41E3A;
  padding-left: 10px;
}
.news-sidebar .contact-card .contact-item {
  margin-bottom: 20px;
}
.news-sidebar .contact-card .contact-item strong {
  color: #C41E3A;
  display: block;
  margin-bottom: 5px;
}
.news-sidebar .contact-card .contact-item p {
  color: #666;
  margin: 0;
}
@media (max-width: 768px) {
  .news-article {
    padding: 25px;
  }
  .news-article .article-header .article-title {
    font-size: 1.5rem;
  }
  .news-article .article-meta {
    flex-direction: column;
    gap: 10px;
  }
  .news-sidebar {
    width: 100%;
    flex: auto;
  }
  .news-sidebar .sidebar-card {
    padding: 20px;
  }
}
.breadcrumb-section {
  padding: 30px 0 30px 0;
  background: #f2f2f2;
}
.breadcrumb-section .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.breadcrumb-section .breadcrumb a {
  color: #C41E3A;
  text-decoration: none;
  transition: all 0.3s ease;
}
.breadcrumb-section .breadcrumb a:hover {
  color: #8B0000;
}
.breadcrumb-section .breadcrumb .separator {
  color: #666;
}
.breadcrumb-section .breadcrumb .current {
  color: #666;
}
.page-header-section {
  padding: 50px 0;
  background: #FFFFFF;
  text-align: center;
}
.page-header-section .page-header .page-title {
  font-size: 2.5rem;
  color: #C41E3A;
  margin-bottom: 15px;
  position: relative;
}
.page-header-section .page-header .page-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #FFD700;
}
.page-header-section .page-header .page-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-top: 25px;
}
.products-section {
  padding: 50px 0 100px 0;
  background: #F8F8F8;
}
.products-section .products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .products-section .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .products-section .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.product-card {
  background: #FFFFFF;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.1);
  transition: all 0.3s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.15);
}
.product-card:hover .product-overlay {
  opacity: 1;
}
.product-card:hover .product-image img {
  transform: scale(1.05);
}
.product-card .product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.product-card .product-image > a {
  width: 100%;
  height: 100%;
  display: flex;
}
.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.product-card .product-image .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(196, 30, 58, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.product-card .product-image .product-overlay .product-actions .btn-view {
  background: #FFFFFF;
  color: #C41E3A;
  border: none;
  padding: 12px 25px;
  border-radius: 2px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-card .product-image .product-overlay .product-actions .btn-view:hover {
  background: #FFD700;
  color: #FFFFFF;
  transform: scale(1.05);
}
.product-card .product-info {
  padding: 25px;
}
.product-card .product-info .product-name {
  font-size: 1.3rem;
  color: #2C2C2C;
  margin-bottom: 10px;
  font-weight: 600;
}
.product-card .product-info .product-desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}
.product-card .product-info .product-meta {
  display: flex;
  align-items: baseline;
  margin-bottom: 15px;
}
.product-card .product-info .product-meta .product-price {
  font-size: 1.4rem;
  color: #C41E3A;
  font-weight: 700;
}
.product-card .product-info .product-meta .product-unit {
  color: #666;
  font-size: 0.9rem;
  margin-left: 5px;
}
.product-card .product-info .product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-card .product-info .product-tags .tag {
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 500;
}
.product-card .product-info .product-tags .tag.hot {
  background: #ff4757;
  color: #FFFFFF;
}
.product-card .product-info .product-tags .tag.classic {
  background: #FFD700;
  color: #FFFFFF;
}
.product-card .product-info .product-tags .tag.new {
  background: #2ed573;
  color: #FFFFFF;
}
.product-card .product-info .product-tags .tag.popular {
  background: #ff6b6b;
  color: #FFFFFF;
}
.product-card .product-info .product-tags .tag.seasonal {
  background: #ffa502;
  color: #FFFFFF;
}
.product-card .product-info .product-tags .tag.premium {
  background: #8e44ad;
  color: #FFFFFF;
}
.product-card .product-info .product-tags .tag.creative {
  background: #3742fa;
  color: #FFFFFF;
}
.product-card .product-info .product-tags .tag.healthy {
  background: #2ed573;
  color: #FFFFFF;
}
.product-card .product-info .product-tags .tag.exotic {
  background: #ff9ff3;
  color: #FFFFFF;
}
.product-card .product-info .product-tags .tag.luxury {
  background: #2c2c54;
  color: #FFFFFF;
}
.product-card .product-info .product-tags .tag.modern {
  background: #40407a;
  color: #FFFFFF;
}
.product-card .product-info .product-tags .tag.cute {
  background: #ff9ff3;
  color: #FFFFFF;
}
.product-card .product-info .product-tags .tag.kids {
  background: #ffa502;
  color: #FFFFFF;
}
.product-card .product-info .product-tags .tag.value {
  background: #2ed573;
  color: #FFFFFF;
}
.product-card .product-info .product-tags .tag.gift {
  background: #FFD700;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .page-header-section {
    padding: 30px 0;
  }
  .page-header-section .page-title {
    font-size: 2rem !important;
  }
  .page-header-section .page-subtitle {
    font-size: 1rem !important;
  }
  .products-section {
    padding: 30px 0 60px 0;
  }
  .product-card .product-image {
    height: 200px;
  }
  .product-card .product-info {
    padding: 20px;
  }
  .product-card .product-info .product-name {
    font-size: 1.1rem;
  }
  .product-card .product-info .product-meta .product-price {
    font-size: 1.2rem;
  }
}
.pagination {
  display: flex;
  margin: 24px 0;
  justify-content: flex-start;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
.pagination .page-item .page-link {
  display: inline-block;
  padding: 15px 20px;
  background-color: #fff;
  color: #d32f2f;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1;
  min-width: 44px;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.pagination .page-item .page-link:hover {
  background-color: #ccc;
  color: #b71c1c;
}
.pagination .page-item.active .page-link {
  background-color: #d32f2f;
  color: #fff;
  box-shadow: none;
}
.pagination .page-item.disabled .page-link {
  background-color: #fffae2;
  color: #e0c74a;
  cursor: not-allowed;
  box-shadow: none;
}
@media (max-width: 576px) {
  .pagination .page-item {
    margin: 4px;
  }
  .pagination .page-item .page-link {
    padding: 10px 12px;
    min-width: 36px;
    font-size: 14px;
  }
}
.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.breadcrumbs a {
  color: #C41E3A;
  text-decoration: none;
}
.breadcrumbs span {
  color: #666;
  font-family: "Roboto";
  padding: 0 5px;
}
