* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark:#101014;
  --dark-accent:rgb(32, 32, 36);
  --dark-bg:linear-gradient(to bottom, rgb(32, 32, 36), rgb(24, 24, 28));
  --primary-dark: #0a0a23;
  --primary-red: #c53030;
  --primary-blue: #1e3a8a;
  --accent-red: #ef4444;
  --accent-yellow: #f59e0b;
  --accent-green: #10b981;
  --text-light: #f8fafc;
  --text-dark: #1e293b;
  --hr:rgba(255, 255, 255, .15);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-light);
  overflow-x: hidden;
  position: relative;
  margin: 0px;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  background-color: var(--dark);
}
.bg-accent{
  background-color: var(--dark-accent);
}
.hr{
  border:1px solid var(--hr);
}
.p20{
  padding: 20px;
}
.radius{
  border-radius: 10px;
}
.mt-10{
  margin-top: 10px;
}
.mt-20{
  margin-top: 20px;
}
.text-left{
  text-align: left;
}
.text-right{
  text-align: right;
}
.text-center{
  text-align: center;
}

.flex-container {
  display: flex;
  flex-wrap: wrap; /* 自动换行 */
  gap: 10px;
}
.flex-item {
  flex: 1 0 200px; /* 最小宽度 200px */
}

.layui-layer-padding{
  color: var(--primary-dark);
}
/* 导航栏样式 */
.navbar {
  position: absolute;
  z-index: 9;
  left: 0;
  right: 0;
  padding: 15px 10%;
}
.navbar-fixed{
  background:var(--dark);
  position:fixed;
  transition:0.3s ease-in-out;
  /* box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 12px; */
}
/* .navbar-fixed .nav-link{
  color: var(--primary-dark)!important;
} */
.navbar .container{
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: space-between;
}
.navbar-header{
  background: var(--dark);
  position: relative;
  transition:0.3s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img{
  max-height: 70px;
  border-radius: 10px;
}
.nav-links {
  display: flex;
  gap: 25px;
}
.nav-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-red);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent-red);
}



/* 英雄区域样式 */
.hero {
  position: relative;
  min-height: 750px;
  height: auto;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  flex-direction: column;
  justify-content: center;
  background-image: url(../images/gha/banner.png) ;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  align-items: flex-start;
  padding: 0px 10%;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0.02%, rgba(0, 0, 0, 0.55) 44.79%, rgb(16 16 20) 99.98%);
}

.hero-content {
  max-width: 900px;
  z-index: 2;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(to right, #ffffff, #ffffff, #ededed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* text-shadow: 0 0 10px rgba(239, 68, 68, 0.5); */
}

.hero p {
  font-size: 1.2rem;
  color: #e2e8f0;
  max-width: 700px;
}

.btn {
  display: inline-block;
  background: linear-gradient(45deg, #2196F3, #3F51B5);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px #3F51B5;
  margin: 0 10px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px var(--dark);
}

.hero-outline{
  margin-top: 10px;
  padding: 20px 0px;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-red)!important;
  box-shadow: none;
  padding: 10px 15px;
  border-radius: 10px;
}
.btn-exit{
  padding: 4px 10px;
  background: linear-gradient(45deg, #FF9800, #FF5722);
  box-shadow: unset;
}

/* 首页-游戏展示图片 */
.showcase-section{
  padding: 80px 10%!important;
}

.hero-swiper img{
  height: 510px;
  border-radius: 10px;
}
/* 首页-介绍区域 */
.introduction{
  padding: 80px 10%!important;
  color: var(--text-light);
}
.introduction-flex-item{
  flex: 1;
}
.introduction-image {
  width: 100%;
  background: var(--dark-accent);
  overflow: hidden;
  position: relative;
}
.introduction-image img {
 height: 100%;
}
.introduction-text {
  flex: 2;
  color: var(--text-light);
}
.introduction-text h2 {
  font-size: 2rem;
  text-shadow: 0 0 20px hsla(0, 0%, 100%, .5);
}
.introduction-text p {
  font-size: 1rem;
  color: var(--text-light);
}

/* 商品 */
.hero-products{
  padding: 80px 10%!important;
  position: relative;
}
.hero-products img{
  width: 100%;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
  margin-top: 50px;
  color: var(--text-light);
}
.products-card {
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.products-card:hover {
  transform: translateY(-10px);
  border-color: #d6c2ff;
  box-shadow: 0 10px 30px rgba(103, 48, 191, 0.1);
}

/* 核心 */

.competitiveness{
  padding: 80px 10%!important;
  position: relative;
}
.competitiveness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
  margin-top: 50px;
  color: var(--text-light);
}
.competence-card {
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.competence-card:hover {
  transform: translateY(-10px);
  border-color: #d6c2ff;
  box-shadow: 0 10px 30px rgba(103, 48, 191, 0.1);
}
.competitiveness .section-content{
  font-size: 1rem;
  color: var(--text-light);
}
.competence-card p {
  font-size: 1.75rem;
  color: var(--text-light);
  margin-top: 50px;
}

/* 底部提示 */
.footer-disclaimer {
  padding: 80px 10%!important;
}
.footer-disclaimer .container {
  align-items: center;
  background: #3c56b9;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  padding: 30px;
}
.disclaimer-icon {
  align-items: center;
  background-color: #ffffff1a;
  border-radius: .75rem;
  display: flex;
  height: 3rem;
  justify-content: center;
  text-align: center;
  width: 3rem;
}
.footer-disclaimer .container h3 {
  font-size: 1.875rem;
  letter-spacing: .025em;
  line-height: 2.25rem;
  margin: 0;
}
.footer-disclaimer p {
  font-size: 1rem;
  opacity: .9;
  font-style: italic;
}

/* 首页-游戏特色 */
.features{
  padding: 80px 10%!important;
  color: var(--primary-dark);
}
.features .container{
  font-size: 1.75rem;
}



.faq{
  background: linear-gradient(rgb(16 22 55) 0%, #3F51B5 100%);
  
}
.faq .section-title{
  color: var(--text-light)!important;
}
.faq .container{
    display: flex ;
    align-items: flex-start;
    justify-content: space-between;
}
.faq .container ul{
  padding-left: 48px;
  list-style: disc;
}
/*  */
.footer-bg{
  position: relative;
  min-height: 220px;
  height: auto;
  background-image: url(../images/gha/pc_bg.jpg) ;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bg::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: 2;
  background: linear-gradient(269.94deg, rgba(255, 255, 255, 0) 0.02%, rgba(0, 0, 0, 0.55) 44.79%, rgba(0, 0, 0, 0.95) 99.98%);
}
.footer-bg .btn{
  z-index: 3;
}
/* 内容部分通用样式 */
.section {
  padding: 80px 5%;
}

.section-title {
  text-align: center;
  position: relative;
  font-size: 2.5rem;
  color: var(--text-light);
  z-index: 1;
  text-shadow: 0 0 20px hsla(0, 0%, 100%, .5);
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
  margin: 40px 0;
  border: none;
}

/* 角色部分样式 */
.characters {
  background:linear-gradient(180deg, #ffffff, #b18cf5, #a0acff, #ffffff);
  position: relative;
  overflow: hidden;
}

.characters .container{
  display: flex;
  gap: 10px;
}
.characters  .characters-image{
  border-radius: 24px;
  background: var(--primary-dark);
  box-shadow: 0 10px 30px rgba(103, 48, 191, 0.2);
  overflow: hidden;
  position: relative;
  animation: float 6s ease-in-out infinite;
  width: 540px;
  text-align: center;
  min-height: 600px;
}
.offset-bottom{
  position: absolute;
  /* bottom: 0; */
  padding: 20px;
}
.characters-info{
  display: none;
}
.characters-info.active{
  display: block;
}

.characters  .characters-text{
  flex: 1;
  width: 50%;
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  z-index: 2;
  position: relative;
}

.character-card {
  background: var(--dark-accent);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  /* border: 1px solid rgba(0, 0, 0, 0.5); */
  display: flex;
  flex-direction: column;
}

.character-card:hover {
  transform: translateY(-10px) scale(1.03);
  z-index: 10;
}

.character-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.character-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.character-card:hover .character-img img {
  transform: scale(1.1);
}

.character-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 70%, rgba(15, 23, 42, 0.9));
  z-index: 1;
}

.character-name {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.character-role {
  position: absolute;
  bottom: 50px;
  left: 20px;
  z-index: 2;
  font-size: 0.9rem;
  color: var(--accent-red);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.character-info {
  padding: 20px;
  flex-grow: 1;
}

.character-description {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 20px;
  min-height: 70px;
}

.character-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--accent-yellow);
}

.stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 呼吸法部分样式 */
.breathing-styles {
  position:relative;
  background: linear-gradient(0deg, #141442, #3447b5,#ffffff);
}

.breathing-container {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(30, 41, 59, 0);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(239, 68, 68, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 9;
}

.breathing-header {
  padding: 25px 40px;
  background: linear-gradient(90deg, #3F51B5, #1668dd);
  border-bottom: 2px solid var(--accent-red);
}

.breathing-header h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--accent-yellow);
}

.breathing-description {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.7;
}

.breathing-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px;
}

.breathing-item {
  background: rgb(255 255 255);
  border-radius: 10px;
  padding: 25px;
  border-left: 4px solid var(--accent-red);
  transition: all 0.3s ease;
}

.breathing-item:hover {
  transform: translateX(5px);
  background: rgba(15, 23, 42, 0.9);
}

.breathing-item h4 {
  color: var(--accent-red);
  font-size: 1.4rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.breathing-item h4 i {
  margin-right: 10px;
  color: var(--accent-yellow);
}

.breathing-item p {
  color: #94a3b8;
  line-height: 1.7;
}

.about__bgs {
  overflow: hidden;
  pointer-events: none;
}
.about__bgs  .about__c {
  position: absolute;
  left: 50%;
  top: 0px;
  margin-left: -764px;
  width: 610px;
  height: 546px;
  background: url('../images/gha-pc/about_bg.png') no-repeat center center / contain;
}
.about__bgs  .about__c1 {
  position: absolute;
  left: 0%;
  top: 50px;
  width: 610px;
  height: 546px;
  background: url('../images/gha/chara17.png') no-repeat center center / contain;
}
.about__bgs  .about__c2 {
  position: absolute;
  right: 0px;
  top: 35px;
  width: 459px;
  height: 470px;
  background: url('../images/gha/chara9.png') no-repeat center center / contain;
}
.about__bgs  .about__c3 {
  position: absolute;
  right: 0px;
  top: 35px;
  width: 459px;
  height: 470px;
  background: url('../images/gha/chara18.png') no-repeat center center / contain;
}
.about__bgs  .about__c4 {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 459px;
  height: 470px;
  background: url('../images/gha-pc/about_c4.png') no-repeat center center / contain;
}
.about__bgs  .about__c5 {
  position: absolute;
  left: 0px;
  top: 35px;
  width: 459px;
  height: 470px;
  background: url('../images/gha/chara14.png') no-repeat center center / contain;
 
}
.about__bgs  .about__c6 {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 459px;
  height: 470px;
  background: url('../images/gha-pc/about_c6.png') no-repeat center center / contain;
}
/* 剧情部分样式 */
.story {
  /* background-color: #1e293b; */
  position: relative;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--accent-red);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  z-index: 1;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  margin-bottom: 40px;
  z-index: 2;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-content {
  padding: 25px 30px;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(239, 68, 68, 0.3);
  transition: transform 0.3s ease;
}
.timeline-content img{
  width: 100%;
}

.timeline-bg1::before{
  background: url('../images/gha/chara14.png') no-repeat center center / contain;
  content: "";
  position: absolute;
  right: -500px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.timeline-bg2::before{
  background: url('../images/gha/chara15.png') no-repeat center center / contain;
  content: "";
  position: absolute;
  left: -500px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.timeline-bg3::before{
  background: url('../images/gha/chara16.png') no-repeat center center / contain;
  content: "";
  position: absolute;
  right: -500px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.timeline-bg4::before{
  background: url('../images/gha/chara17.png') no-repeat center center / contain;
  content: "";
  position: absolute;
  left: -500px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.timeline-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--accent-yellow);
}

.timeline-date {
  position: absolute;
  top: -30px;
  z-index: 10;
  padding: 5px 15px;
  background: linear-gradient(90deg, var(--accent-red), #ea580c);
  color: white;
  font-weight: bold;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(239, 68, 68, 0.5);
}

.timeline-item:nth-child(odd) .timeline-date {
  right: -85px;
}

.timeline-item:nth-child(even) .timeline-date {
  left: -85px;
}
/* 其他展示样式 */
.other-styles{
  background: linear-gradient(348.42deg, rgb(14, 42, 62) 31.62%, rgb(1, 17, 51) 90.19%);
}
/* 页脚样式 */
.footer {
  background: var(--dark-accent);
  padding: 60px 0 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex
;
  align-items: center;
  justify-content: space-evenly;
  /* flex-direction: column; */
}


.logo-large img {
  border-radius: 20px;
  max-height: 145px;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  
}
.social-links a{
  color: var(--text-light);
}
.social-links-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  
}

.social-links-list .social-link-a{
  color: var(--text-light);
  font-size: 1.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
}
.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1e293b, #0f172a);
  color: var(--accent-red);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.social-link:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, var(--accent-red), #ea580c);
  color: white;
  box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
}

.copyright {
  padding-top: 30px;
  color: #64748b;
  font-size: 0.9rem;
  border-top: 1px solid rgba(100, 116, 139, 0.3);
  max-width: 800px;
  margin: 30px auto 0;
}



/* 英雄-关于我们样式 */
.aboutUs {
  padding: 80px 10%;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}
.aboutUs img{
  border-radius: 40px;
}
.about{
  padding: 80px 10%;
}
.about-content {
  display: flex;
  gap: 20px;
}
.about-image {
  width: 600px;
  height: 400px;
  background: var(--dark-accent);
  overflow: hidden;
  position: relative;
  /* animation: float 6s ease-in-out infinite; */
}
.about-image img {
 height: 100%;
}
.about-text {
  flex: 1;
  color: var(--text-light);
}
.about-text h3 {
  font-size: 1.5rem;
  padding: 20px 0px;
}
.about-text p {
  font-size: 1rem;
  color: var(--text-light);
}
.language-item{
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  margin-bottom: 40px;
  z-index: 2;
}
.language-content {
  transition: transform 0.3s ease;
  background-image: linear-gradient(rgb(31 48 70), rgb(1 1 2)), url(../images/gha/pc_bg.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  flex-direction: row-reverse;
  margin-bottom: 20px;
}
.language-content1{
  flex-direction: row;
}
.language-title{
  padding: 15px 0px;
}
.guide-content{
  padding: 25px 30px;
  transition: transform 0.3s ease;
  background-image: 
  linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
  url('../images/gha/st_img19.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.product-list{
  /* background: linear-gradient(180deg, #f4f4f5, #3f51b57d, #9c27b02e, #ffffff); */
  position: relative;
  overflow: hidden;
  padding-top: 0px;
}

.character-product{
  width: 80%;
  margin: auto;
  background: var(--dark-accent);
  padding: 20px;
  color: var(--text-light);
}
.product-list .character-product{
  background: none;
}
.product-img{
 
  overflow: hidden;
  position: relative;
  text-align: center;
}
.product-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 70% 70%, #0000000f);
  z-index: 1;
}
.product-img img {
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-btn{

}
.mt-20{
  margin-top: 20px;
}
.article{
  color: var(--primary-dark);
}

/* Contact */
.Contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.contact-bg{
  background: var(--dark-accent);
  padding: 30px 20px;
}


/* 主要内容区域 */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* 联系信息 */
.contact-info {
  padding: 40px 30px;
  background: var(--text-light);
  border-radius: 15px;
  border-left: 4px solid var(--hr);
  position: relative;
  overflow: hidden;
}


.contact-title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
}
.info-content{
  color: var(--text-light);
}
.info-icon {
  width: 45px;
  height: 45px;
  background:var(--hr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--text-light);
}

.info-content h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.info-content p {
  font-size: 1.1rem;
}

.login-section{
  max-width: 500px;
  margin: auto;
}
#verify_code_img{
  position: absolute;
  top: 35px;
  bottom: 0px;
  right: 0px;
  height: 40px;
}
/* 表单区域 */
.login-form ,
.contact-form {
  position: relative;
  overflow: hidden;
  padding: 40px;
  background: var(--dark-accent);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-light)
}

.form-control {
  width: 100%;
  padding: 14px 15px;
  border-radius: 5px;
  border: 1px solid var(--hr);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: var(--dark);
  color: var(--text-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--hr);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* 会员中心 */
.character-user{
  width: 80%;
  margin: auto;
  padding: 20px;
}
.character-user .home-main{
  background: none;
  display: flex;
  gap: 20px;
}
.character-user .g-crumbs{
  color: var(--primary-dark);
  height: 50px;
}
.character-user  .g-crumbs a{
  color: var(--primary-dark);
  font-weight: 600;
}

.layui-layer-dialog .layui-layer-content{
  color: var(--primary-dark);
}



/* 下单成功 */
.order-section{

}
.order-section .order-icon{
  font-size: 5rem;
  color: #8BC34A;
}
.order-pay{
  display: grid;
  justify-content: start;
  padding: 20px;
  grid-template-columns: repeat(auto-fit, minmax(130px, auto));
  gap: 20px;
}
.order-pay li{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  border: 1px solid;
  border-radius: 10px;
  cursor: pointer;
  background-color: #fff;
}
.order-pay li:hover {
  transform: translateY(-2px);
  border-color: #d6c2ff;
  box-shadow: 0 10px 30px rgba(103, 48, 191, 0.1);
}

.order-pay li img{
  border-radius: 10px;
  max-height: 40px;
}
/* 响应式设计 */

@media (max-width: 1200px) {
  .hero{
    justify-content: flex-end;
  }
  .hero h2{
    font-size: 3rem;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
  .timeline::after {
      left: 30px;
  }

  .timeline-item {
      width: 100%;
      padding-left: 70px;
      padding-right: 20px;
      left: 0 !important;
  }

  .timeline-item:nth-child(even) .timeline-date,
  .timeline-item:nth-child(odd) .timeline-date {
      left: 0;
      right: auto;
  }
  
  .timeline-bg1::before, .timeline-bg3::before{
    left: 0;
  }
  .timeline-bg2::before, .timeline-bg4::before{
    left: 0;
  }

  .introduction-image{display: none;}
}
@media (max-width: 1080px) {
  .hero h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
 
  .navbar .container {
    flex-direction: column;
  }
  .nav-links {
      margin-top: 20px;
  }
  .hero h2 {
      font-size: 2rem;
  }
  .products-grid{
    grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
  }
  .competitiveness-grid{
    grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
  }

  .aboutUs img{
    width: 180px;
  }
  .section.about img{
    max-width: 100%;
  }
  .bb_img{
    width: 100%;
  }

  .navbar .container{
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-swiper img{
    height: 260px;
  }
  .products-grid{
    grid-template-columns:repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
  }
  .competitiveness-grid{
    grid-template-columns:repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
  }
  .competence-card p{
    font-size: unset;
    margin-top: 10px;
  }
  .footer-disclaimer .container{
    padding: 10px;
  }
  .footer-disclaimer .container h3{
    font-size: 1rem;
  }
  .footer-disclaimer p{
    font-size: unset;
  }
  .footer{
    flex-direction: column;
  }
  .logo-large img{
    max-height: 90px;
  }
  .footer-item{
    padding: 10px;
  }
  .social-links-list{
    flex-direction: column;
    gap:20px;
  }
  .social-links-list .social-link-a{
    font-size: 1rem;
  }

  .aboutUs img{
    width: 150px;
  }
  .section.about img{
    max-width: 100%;
  }
  .bb_img{
    width: 100%;
  }

  .carousel{
    height: 230px;
    width: 100%;
  }
  .carousel-inner>.item{
    height: 230px;
  }
  .character-product{
    width: 100%;
    padding:0px;
  }
  .character-grid{
    grid-template-columns:repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
  }
  .character-info{
    padding: 0px;
    padding-bottom:10px;
  }
  .character-info .stat{display: none;}
  .character-info .product-btn{display: block;}
  .product-img img{
    width: 100%;
  }

  .goodsinfo-bg{
    flex-direction: column;
  }
  .w1224{
    width: 100%;
    min-width:100%;
  }
  .product-gallery,.goodsinfo-bg .detail-img{
    width: 100%;
  }
  .product-gallery .product-photo{
    width: 100%;
    height: 100%;
  }
  .detail-img,.jqzoom img, .product-gallery  .jqzoom{
    float: unset;
  }
  .shop-price-cou{
    display: none;
  }
  .detail-ggsl-p,.detail-ggsl,.detail-ggsl .lawir{
    width: 100%;
  }
  .detail-ggsl h1{
    color: var(--accent-red);
  }


  .liucsell .line-flowpath{
    width: 100%;
  }
  .goods-extra .p-img{
    overflow: clip;
  }
  .goods-extra .p-img img{
    width: 50px;
    height: 50px;
  }
  
  .submitorder_carpay{
    text-align: right;
  }
  .trade-foot-detail-com .fc-price-info .price-num{
    color: var(--accent-red);
  }
  .buy-shopping-list{
    margin: 0px;
  }
  .tp-cart-goods-mes{
    position: relative;
    text-align: left;
  }
  .order-section{
    justify-content: center;
  }
  .order-info{
    padding: 10px;
  }
  .order-info .section-title{
    font-size: 1.5rem;
  }
}