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

:root {
  --primary-dark: #0a0a23;
  --primary-red: #c53030;
  --primary-blue: #1e3a8a;
  --accent-red: #ef4444;
  --accent-yellow: #f59e0b;
  --accent-green: #10b981;
  --text-light: #f8fafc;
  --text-dark: #1e293b;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* background-color: var(--primary-dark); */
  color: var(--text-light);
  line-height: 1.6;
  background-image: url('../images/gha-pc/ptn_white.png');
   /* linear-gradient(to bottom, #0c0a3e, #1f1235), */
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
      radial-gradient(white, rgba(255,255,255,.2) 1px, transparent 4px),
      radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 2px);
  background-size: 50px 50px, 25px 25px;
  background-position: 0 0, 12.5px 12.5px;
  z-index: -1;
  opacity: 0.1;
}
.layui-layer-padding{
  color: var(--primary-dark);
}
/* 导航栏样式 */
.navbar {
  background-color: rgba(255, 255, 255, 0.85);
  background-image: url('../images/gha-pc/ptn_white.png');
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  z-index: 100;
  border-bottom: 2px solid var(--accent-red);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo h1 {
  font-size: 2rem;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.7);
  background: linear-gradient(to right, #f43f5e, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 2px;
}

.logo-icon {
  font-size: 1.8rem;
  color: var(--accent-red);
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-link {
  color: var(--primary-dark);
  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 {
  height: 80vh;
  background-image: 
      linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
      url('../images/gha-pc/unnamed1.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}

/* .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg stroke='%23ff0000' stroke-width='0.5' opacity='0.1'%3E%3Cpath d='M49,1L49,1c27.1,0,49,21.9,49,49l0,0c0,27.1-21.9,49-49,49l0,0C21.9,99,0,77.1,0,50l0,0C0,22.9,21.9,1,49,1z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px;
  z-index: 0;
} */

.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, #fde047, #f97316, #ef4444);
  -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;
  margin-bottom: 30px;
  color: #e2e8f0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  background: linear-gradient(45deg, var(--accent-red), #ea580c);
  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 rgba(239, 68, 68, 0.4);
  margin: 0 10px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(239, 68, 68, 0.6);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-red);
  box-shadow: none;
}

/* 内容部分通用样式 */
.section {
  padding: 80px 5%;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  font-size: 2.5rem;
  color: var(--primary-dark);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--accent-red), var(--accent-yellow));
  border-radius: 2px;
}

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

/* 角色部分样式 */
.characters {
  background-color: #111827;
  background-image: url('../images/gha-pc/ptn_white.png');
  position: relative;
  overflow: hidden;
}

.characters::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
      linear-gradient(45deg, rgba(239, 68, 68, 0.1) 25%, transparent 25%, transparent 75%, rgba(239, 68, 68, 0.1) 75%),
      linear-gradient(-45deg, rgba(239, 68, 68, 0.1) 25%, transparent 25%, transparent 75%, rgba(239, 68, 68, 0.1) 75%);
  background-size: 40px 40px;
  z-index: 0;
  opacity: 0.2;
}

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

.character-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  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);
  box-shadow: 0 15px 30px rgba(248, 250, 252, 0.4);
  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(to bottom, #0f172a, #1e293b); */
}

.breathing-container {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(30, 41, 59, 0.6);
  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, #1e293b, #334155);
  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: rgba(15, 23, 42, 0.7);
  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-pc/about_c1.png') no-repeat center center / contain;
}
.about__bgs  .about__c2 {
  position: absolute;
  right: 0px;
  top: 35px;
  width: 459px;
  height: 470px;
  background: url('../images/gha-pc/about_c2.png') no-repeat center center / contain;
}
.about__bgs  .about__c3 {
  position: absolute;
  right: 0px;
  top: 35px;
  width: 459px;
  height: 470px;
  background: url('../images/gha-pc/about_c3.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-pc/about_c5.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: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;
}

/* 页脚样式 */
.footer {
  background: linear-gradient(to bottom, #0f172a, #020617);
  padding: 60px 0 30px;
  text-align: center;
  border-top: 1px solid var(--accent-red);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.logo-large {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(to right, #f43f5e, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.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;
}

/* 响应式设计 */
@media (max-width: 900px) {
  .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;
  }
}

@media (max-width: 768px) {
  .navbar {
      flex-direction: column;
      padding: 15px;
  }

  .nav-links {
      margin-top: 20px;
  }

  .hero h2 {
      font-size: 2.5rem;
  }
}


/* 英雄-关于我们样式 */
.aboutUs {
  height: 40vh;
  background-image: url('../images/gha-pc/unnamed6.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}
.aboutUs:before {
  background-image: linear-gradient(to bottom, rgba(206, 199, 192, 0) 25%, #ecebec);
  bottom: 0;
  content: "";
  display: block;
  height: 40vh;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.aboutUs-content {
  max-width: 900px;
  z-index: 2;
}

.aboutUs h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(to right, #fde047, #f97316, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}
.about-content {
  display: flex;
  gap: 50px;
  /* align-items: center; */
}
.about-image {
  width: 640px;
  height: 464px;
  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; */
}
.about-image img {
  position: absolute;
  right: 0;
}
.about-text {
  flex: 1;
  color: var(--primary-dark);
}
.about-text h3 {
  font-size: 2rem;
}
.about-text p {
  font-size: 1.25rem;
  line-height: 2;
  margin-top: 30px;
  margin-bottom: 60px;
  color: #616161;
}
.language-item{
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  margin-bottom: 40px;
  z-index: 2;
}
.language-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-pc/unnamed2.webp');
  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;
}

.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-pc/unnamed3.webp');
  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;
}

.character-product{
  width: 80%;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}
.product-img{
  height: 200px;
  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%, rgba(15, 23, 42, 0.9));
  z-index: 1;
}
.product-img img {
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-btn{

}
.mt-20{
  margin-top: 20px;
}



.termsOfService {
  height: 40vh;
  background-image: url('../images/gha-pc/unnamed3.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}
.termsOfService:before {
  background-image: linear-gradient(to bottom, rgba(206, 199, 192, 0) 25%, #ecebec);
  bottom: 0;
  content: "";
  display: block;
  height: 40vh;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.article{
  padding-top: 0px;
  color: var(--primary-dark);
}
/* privacyPolicy */
.privacyPolicy {
  height: 40vh;
  background-image: url('../images/gha-pc/unnamed4.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}
.privacyPolicy:before {
  background-image: linear-gradient(to bottom, rgba(206, 199, 192, 0) 25%, #ecebec);
  bottom: 0;
  content: "";
  display: block;
  height: 40vh;
  position: absolute;
  width: 100%;
  z-index: 1;
}
/* Contact */
.Contact {
  height: 40vh;
  background-image: url('../images/gha-pc/unnamed5.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}
.Contact:before {
  background-image: linear-gradient(to bottom, rgba(206, 199, 192, 0) 25%, #ecebec);
  bottom: 0;
  content: "";
  display: block;
  height: 40vh;
  position: absolute;
  width: 100%;
  z-index: 1;
}



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

@media (max-width: 900px) {
  .contact-section {
      grid-template-columns: 1fr;
  }
}

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

.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      radial-gradient(circle at top left, transparent 15px, #f97316 15px) no-repeat,
      radial-gradient(circle at top right, transparent 15px, #f97316 15px) no-repeat,
      radial-gradient(circle at bottom left, transparent 15px, #f97316 15px) no-repeat,
      radial-gradient(circle at bottom right, transparent 15px, #f97316 15px) no-repeat;
  background-size: 100% 100%;
  z-index: -1;
  opacity: 0.1;
}

.contact-title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #f97316;
  position: relative;
  display: inline-block;
}

.contact-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: #c53030;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(197, 48, 48, 0.3);
}

.info-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #c53030, #f97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

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

/* 表单区域 */
.contact-form {
  position: relative;
  overflow: hidden;
  padding: 40px;
  background: var(--text-light);
  border-radius: 15px;
  border: 1px solid rgba(197, 48, 48, 0.3);
}

.form-title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #f97316;
  position: relative;
  display: inline-block;
}

.form-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: #c53030;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #f97316;
}

.form-control {
  width: 100%;
  padding: 14px 15px;
  border-radius: 5px;
  border: 1px solid rgba(197, 48, 48, 0.5);
  /* background-color: rgba(15, 23, 42, 0.6); */
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #c53030;
  box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.3);
  /* background-color: rgba(30, 41, 59, 0.7); */
}

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);
}