* {
  padding: 0;
}
*,
body {
  margin: 0;
}
a {
  text-decoration: none;
}
#body {
  background-color: #fdf6f0;
    background-image: radial-gradient(circle, #e0c3b0 1px, transparent 1px);
    background-size: 20px 20px;
}
/* ========== 统计卡片图标样式 ========== */
.banner-right .stat-card {
    position: relative;
    overflow: hidden;
}

.banner-right .stat-card::after {
    content: '';
    position: absolute;
    right: 12px;
    bottom: 10px;
    width: 48px;
    height: 48px;
    pointer-events: none;
    opacity: 0.18;
    transition: opacity 0.3s ease, transform 0.3s ease;
    
    /* mask 相关属性 */
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

/* 悬停时图标微微放大并加深 */
.banner-right .stat-card:hover::after {
    opacity: 0.35;
    transform: scale(1.1);
}

/* ---- 卡片1：技师加盟 - 人物图标 ---- */
.banner-right .stat-card:nth-child(1)::after {
    background-color: #5B7FFF;  /* 蓝色调 */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='30' r='18' fill='none' stroke='white' stroke-width='9'/%3E%3Cpath d='M12 88c0-28 76-28 76 0' fill='none' stroke='white' stroke-width='9' stroke-linecap='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='30' r='18' fill='none' stroke='white' stroke-width='9'/%3E%3Cpath d='M12 88c0-28 76-28 76 0' fill='none' stroke='white' stroke-width='9' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ---- 卡片2：覆盖城市 - 地图定位图标 ---- */
.banner-right .stat-card:nth-child(2)::after {
    background-color: #4ECB71;  /* 绿色调 */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 12c-19 0-34 15-34 33 0 25 34 48 34 48s34-23 34-48c0-18-15-33-34-33zm0 44c-7 0-13-6-13-13s6-13 13-13 13 6 13 13-6 13-13 13z' fill='white'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 12c-19 0-34 15-34 33 0 25 34 48 34 48s34-23 34-48c0-18-15-33-34-33zm0 44c-7 0-13-6-13-13s6-13 13-13 13 6 13 13-6 13-13 13z' fill='white'/%3E%3C/svg%3E");
}

/* ---- 卡片3：合作店铺 - 建筑图标 ---- */
.banner-right .stat-card:nth-child(3)::after {
    background-color: #FF9F43;  /* 暖橙色调 */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M15 88V42l35-27 35 27v46' fill='none' stroke='white' stroke-width='8' stroke-linejoin='round'/%3E%3Crect x='34' y='56' width='14' height='32' fill='none' stroke='white' stroke-width='6'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M15 88V42l35-27 35 27v46' fill='none' stroke='white' stroke-width='8' stroke-linejoin='round'/%3E%3Crect x='34' y='56' width='14' height='32' fill='none' stroke='white' stroke-width='6'/%3E%3C/svg%3E");
}

/* ---- 卡片4（红色卡片）：最快上门 - 时钟图标 ---- */
.banner-right .stat-card.red-card::after {
    background-color: #FFFFFF;  /* 白色图标，与红色背景形成对比 */
    opacity: 0.25;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='38' fill='none' stroke='white' stroke-width='8'/%3E%3Cpath d='M50 28v28l18 8' fill='none' stroke='white' stroke-width='8' stroke-linecap='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='38' fill='none' stroke='white' stroke-width='8'/%3E%3Cpath d='M50 28v28l18 8' fill='none' stroke='white' stroke-width='8' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* 红色卡片悬停时，白色图标加深 */
.banner-right .stat-card.red-card:hover::after {
    opacity: 0.5;
}

/* ========== 响应式调整 ========== */
@media (max-width: 768px) {
    .banner-right .stat-card::after {
        width: 36px;
        height: 36px;
        right: 8px;
        bottom: 8px;
    }
}

@media (max-width: 480px) {
    .banner-right .stat-card::after {
        width: 30px;
        height: 30px;
        right: 6px;
        bottom: 6px;
        opacity: 0.12;
    }
}
/* header */
/* logo */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.tech-shop-name {
  text-align: center;
}

.tech-shop-tag {
  display: inline-block;
  background: #ff4d4f;
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 10px;
  line-height: 1.4;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-title-jishi {
  display: none;
}

  /* ========== FAQ 专区样式 ========== */
  .faq {
    max-width: 800px;
    margin: 7rem auto;
    padding: 0 1rem;
  }

  .faq h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #4a3c31;
  }

  .faq-list details {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
    transition: background 0.2s;
  }

  .faq-list summary {
    font-weight: 500;
    cursor: pointer;
    color: #4a3c31;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-list summary::-webkit-details-marker {
    display: none;
  }

  .faq-list summary::after {
    content: "＋";
    font-size: 1.2rem;
    color: #ff4d4f;
    transition: transform 0.2s;
  }

  .faq-list details[open] summary::after {
    content: "－";
    color: #ff4d4f;
  }

  .faq-list details p {
    margin-top: 0.5rem;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
  }

  @media (max-width: 480px) {
    .faq {
      padding: 0 0.8rem;
      margin: 2rem auto;
    }
    .faq h2 {
      font-size: 1.5rem;
    }
  }
.header {
    background-color: transparent;
    backdrop-filter: blur(10px);
}
@media (min-width: 768px) {
  .header {
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10000;
    transition: all ease 0.3s;
  }
  .header-box {
    height: 75px;
    min-width: 1040px;
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    top: 0px;
  }
  .header-logo {
    width: auto;
    height: 44px;
  }
  .header-right {
    display: flex;
    align-items: center;
  }
  .header-btn {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 28px;
    opacity: 1;
    justify-content: center;
    font-size: 18px;
    margin-left: 40px;
    cursor: pointer;
    position: relative;
  }
  .header-line {
    position: absolute;
    width: 38px;
    height: 12px;
    bottom: -12px;
  }
  .header-btn a {
    color: #555555;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .header {
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10000;
    transition: all ease 0.3s !important;
  }
  .header-box {
    height: 90px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 10px 16px 20px;
    box-sizing: border-box;
    background-color: transparent;
    top: 0px;
    backdrop-filter: blur(10px);
  }
  .header-logo {
    width: 100%;
    height: auto;
  }
  .header-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .header-btn {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 26px;
    border-radius: 5px;
    opacity: 1;
    justify-content: center;
    font-size: 16px;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    /* border: 2px solid #ff4d4f; */
    /* border: 2px solid #000000; */
    padding: 1px 2px 1px 3px;
    /* background-color: #ff4d4f; */
  }
  .header-line {
    position: absolute;
    width: 38px;
    height: 12px;
    bottom: -12px;
    opacity: 0;
  }
  .header-btn a {
    /* color: #fff; */
    color: #000000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  }
}

@media (min-width: 768px) {
  /* 顶部横幅区域 */
  .banner {
    padding: 110px 0 80px;
    position: relative;
    overflow: hidden;
    background-size: 100% 110%;
  }

  .banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
  }

  .banner-left {
    width: 45%;
    text-align: left;
  }

  .banner-left h1 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
  }

  .banner-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .banner-description {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
    line-height: 1.6;
  }

  .banner-right {
    display: grid;
    grid-template-columns: repeat(2, 0fr);
    gap: 20px;
  }

  .stat-card {
    background-color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
  }

  .stat-card:nth-of-type(1) {
    width: 223px;
    height: 157px;
  }

  .stat-card:nth-of-type(2) {
    width: 223px;
    height: 128px;
    margin-top: auto;
  }

  .stat-card:nth-of-type(3) {
    width: 223px;
    height: 157px;
  }

  .stat-card:nth-of-type(4) {
    width: 223px;
    height: 128px;
    margin-top: auto;
  }

  .stat-card:nth-of-type(4) .stat-label-dec {
    color: #fff;
  }

  .stat-img {
    width: 73px;
    height: 73px;
    position: absolute;
    right: 8px;
    bottom: 8px;
  }

  .stat-card.red-card {
    background-color: #ff4d4f;
    color: #fff;
  }

  .stat-number {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .stat-label {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .stat-label-dec {
    color: #ef061c;
    font-size: 12px;
  }

  .banner-buttons {
    margin-top: 30px;
  }

  .btn-primary {
    background-color: #ff4d4f;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    margin-right: 20px;
    transition: all 0.3s ease;
    color: #fff;
  }

  .btn-primary:hover {
    background-color: #ff7875;
    transform: translateY(-2px);
  }

  .btn-secondary {
    background-color: transparent;
    border: 2px solid #ff4d4f;
    color: #ff4d4f;
    padding: 10px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .btn-secondary:hover {
    background-color: #ff4d4f;
    color: #fff;
    transform: translateY(-2px);
  }

  /* 关于摩耶部分 */
  .about {
    position: relative;
    width: 1300px;
    margin: 0 auto;
    padding-top: 80px;
  }

  .section-title {
    text-align: center;
    margin-bottom: 25px;
  }

  .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
  }

  .section-title p {
    font-size: 16px;
    color: #666;
    margin: 0 auto;
  }

  .about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
  }

  .about-item {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .about-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .about-icon {
    width: 80px;
    height: 80px;
    background-color: #ff9a9e;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
  }

  .about-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
  }

  .about-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
  }

  /* 服务容器 */
  .services-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
  }

  /* 服务列表 */
  .service-list {
    width: 310px;
  }

  .service-item {
    display: flex;
    align-items: center;
    margin-bottom: 27px;
    background-color: #fff;
    height: 92px;
    padding: 0 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .service-active-left {
    background-color: #ffeef1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .service-active-left .service-number {
    background-color: #ef071f;
    color: #fff;
  }

  .service-active-left .service-arrow {
    background-image: url("https://cdn.tongchenganmo.com/images/7.png");
  }

  .service-active-right {
    background-color: #ffeef1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .service-active-right .service-number {
    background-color: #ef071f;
    color: #fff;
  }

  .service-active-right .service-arrow-right {
    background-image: url("https://cdn.tongchenganmo.com/images/10.png");
  }

  .service-item:hover {
    background-color: #ffeef1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .service-item:hover .service-number {
    background-color: #ef071f;
    color: #fff;
  }

  .service-item:hover .service-arrow {
    background-image: url("https://cdn.tongchenganmo.com/images/7.png");
  }

  .service-item:hover .service-arrow-right {
    background-image: url("https://cdn.tongchenganmo.com/images/10.png");
  }

  .service-number {
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    color: #ff4d4f;
    margin-right: 15px;
    width: 43px;
    height: 43px;
    text-align: center;
    line-height: 43px;
    background: #ffeef1;
    border-radius: 5px 5px 5px 5px;
  }

  .service-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
  }

  .service-info p {
    font-size: 12px;
    color: #999;
    margin-bottom: 0;
  }

  .service-arrow {
    width: 27px;
    height: 27px;
    background-image: url("https://cdn.tongchenganmo.com/images/9.png");
    background-size: 100% 100%;
  }

  .service-arrow-right {
    width: 27px;
    height: 27px;
    background-image: url("https://cdn.tongchenganmo.com/images/8.png");
    background-size: 100% 100%;
  }

  .right-list .service-item {
    flex-direction: row-reverse;
  }

  .right-list .service-number {
    margin-right: 0;
    margin-left: 15px;
  }

  /* 主要服务卡片 */
  .main-services {
    width: 55%;
    display: flex;
    gap: 30px;
    justify-content: center;
  }

  .dec-list {
    width: 1480px;
    margin: 60px auto 0;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
    gap: 30px;
  }
  .dec-list-images2 {
    width: 167px;
    height: 167px;
    position: absolute;
    right: -40px;
    top: 408px;
  }
  .dec-list-images3 {
    width: 167px;
    height: 167px;
    position: absolute;
    left: -60px;
    bottom: -100px;
  }
  .dec-item-wrap {
    padding: 15px;
    box-sizing: border-box;
    background-size: 301px 447px;
    background-position: 0px 0px;
    width: 301px;
    height: 447px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    border-radius: 40px;
  }
  .dec-item-wrap:hover {
    transform: scale(1.05);
  }
  .dec-item {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 38px 38px 38px 38px;
    align-items: center;
  }
  .dec-image {
    width: 200px;
    height: 200px;
    margin-top: 18px;
    box-shadow: 0px 3 9px 0px rgba(129, 129, 129, 0.1);
    border-radius: 50%;
  }
  .dec-name {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 28px;
  }
  .dec-name-title {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
  }
  .dec-text-itle {
    font-weight: 600;
    font-size: 28px;
    color: #333;
  }
  .dec-text {
    color: #777777;
    font-size: 14px;
  }
  .dec-time {
    margin-right: 10px;
    display: flex;
    align-items: center;
  }
  .dec-time-icon {
    width: 15px;
    height: 15px;
  }
  .dec-time-length {
    color: #777777;
    font-size: 12px;
    margin-left: 2px;
  }
  .dec-price-num {
    color: #ff3f22;
  }
  .dec-price-after {
    font-size: 12px;
    margin-left: 10px;
    font-weight: 800;
  }
  .dec-price-info {
    font-size: 18px;
    font-weight: 800;
  }
  .dec-price-hua {
    margin-right: 10px;
    color: #777777;
    text-decoration: line-through;
    font-size: 14px;
  }
  .dec-price {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 16px;
  }
  .dec-btn {
    width: 150px;
    height: 44px;
    border-radius: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    background-color: #fb9548;
    line-height: 44px;
    margin-top: 20px;
    overflow: hidden;
    position: relative;
    transition: all 1000ms;
    cursor: pointer;
  }
  .dec-btn:hover {
    color: #fff;
    transform: scale(1.05);
    outline: 2px solid #ffffff;
    box-shadow: 4px 5px 17px -4px #ffffff;
  }
  .dec-btn::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #f53d50;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 500ms;
  }
  .dec-btn:hover::before {
    width: 250%;
  }

  .original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
  }

  .discount {
    font-size: 12px;
    color: #ff4d4f;
    background-color: rgba(255, 77, 79, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
  }

  /* 优势网格 */
  .advantages-grid {
    position: relative;
    z-index: 1;
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .advantage-card {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px 27px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    width: 640px;
    height: 135px;
    align-items: center;
    box-sizing: border-box;
  }

  .advantage-card .advantage-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
  }

  .advantage-icon-content {
    margin-left: 14px;
  }

  .advantage-icon-content-title1 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
  }

  .advantage-icon-content-title2 {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
  }

  /* 摩耶故事部分 */
  .story {
    padding: 8rem 0 0;
  }

  .story-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    justify-content: center;
  }

  .story-item {
    width: 32%;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-sizing: border-box;
  }

  .story-item-wrap {
    display: flex;
    align-items: center;
  }

  .story-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .story-icon {
    width: 41px;
    height: 41px;
  }

  .story-title {
    font-size: 26px;
    font-weight: 600;
    color: #333;
    margin-left: 20px;
  }

  .story-content-text {
    margin-top: 16px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
  }

  /* 摩耶足迹部分 */
  .footprint {
    padding: 8rem 0;
  }

  .footprint-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;

    background-image: url("https://cdn.tongchenganmo.com/images/21.png");
    background-size: 100% 550px;
    background-position: 0 200px;
    background-repeat: no-repeat;
  }

  .timeline {
    position: relative;
  }

  .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: #f45362;
    transform: translateX(-50%);
  }

  .timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 45%;
  }

  .timeline-item:last-of-type .timeline-content {
    background-color: #ef061c;
    box-shadow: 2px 2px 10px 1px #ef860d;
  }

  .timeline-item:last-of-type .timeline-content h3,
  .timeline-item:last-of-type .timeline-content p {
    color: #fff !important;
  }

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

  .timeline-item:nth-child(even) {
    left: 55%;
    text-align: left;
  }

  .timeline-item::before {
    content: "";
    position: absolute;
    top: 50px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    border: 4px solid #f45362;
  }

  .timeline-item:nth-child(odd)::before {
    right: -64px;
  }

  .timeline-item:nth-child(even)::before {
    left: -64px;
  }

  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
  }

  .timeline-content {
    width: 360px;
    border: 1px solid #ef061c;
    border-radius: 20px;
    background-color: #ffeef1;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .timeline-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
  }

  .timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
  }

  /* 前行之路部分 */
  .road {
    padding: 0px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .road-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
  }

  .road-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
  }

  .road-subtitle {
    font-size: 16px;
    color: #666;
  }

  .road-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .road-item {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
  }

  .road-item-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
  }

  .road-item-content {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
  }

  .road-divider {
    width: 80px;
    height: 4px;
    background-color: #ff4d4f;
    margin: 80px auto;
  }

  .road-footer {
    margin-top: 40px;
    position: relative;
    z-index: 1;
  }

  .road-footer-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
  }

  .road-footer-content {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
  }

  .road-tagline {
    font-size: 14px;
    color: #f20921;
    font-weight: 600;
    margin-bottom: 30px;
  }

  .road-buttons {
    margin-top: 20px;
  }

  .road-button {
    background-color: #f20921;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 40px;
    color: #fff;
    transition: all 0.3s ease;
  }

  .road-button:hover {
    background-color: #ff7875;
    transform: translateY(-2px);
  }
}

/* ===== joinUsmin.css (加入页手机版) ===== */
@media (max-width: 767px) {
  /* 顶部横幅区域 */
  .banner {
    padding: 90px 0 20px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
  }

  .banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 0 15px;
  }

  .banner-left {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    display: none;
  }

  .banner-left h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
  }

  .banner-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
  }

  .banner-description {
    font-size: 13px;
    color: #999;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .banner-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn-primary {
    background-color: #ff4d4f;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    color: #fff;
    width: 200px;
    text-align: center;
  }

  .btn-primary:hover {
    background-color: #ff7875;
    transform: translateY(-2px);
  }

  .btn-secondary {
    background-color: transparent;
    border: 2px solid #ff4d4f;
    color: #ff4d4f;
    padding: 10px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 200px;
    text-align: center;
  }

  .btn-secondary:hover {
    background-color: #ff4d4f;
    color: #fff;
    transform: translateY(-2px);
  }

  .banner-right {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-card {
    background-color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    height: auto;
    margin-top: 0;
  }

  .stat-card.red-card {
    background-color: #ff4d4f;
    color: #fff;
  }

  .stat-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .stat-label {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .stat-label-dec {
    color: #ef061c;
    font-size: 11px;
  }

  .stat-card:nth-of-type(4) .stat-label-dec {
    color: #fff;
  }

  .stat-img {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 8px;
    bottom: 8px;
  }

  /* 关于摩耶部分 */
  .about {
    position: relative;
    margin: 0 auto;
    padding: 0 10px;
  }

  .section-title {
    text-align: center;
    margin-bottom: 15px;
    display: none;
  }

  .section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
  }

  .section-title p {
    font-size: 14px;
    color: #666;
    margin: 0 auto;
  }

  /* 关于摩耶新样式 */
  .about-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
    display: none;
  }

  .about-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
  }

  .about-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
  }

  .about-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
  }

  .about-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto;
  }

  /* 服务容器 */
  .services-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
  }

  /* 服务列表 */
  .service-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }

  .service-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    height: 100px;
    padding: 5px 5px;
    flex: 1;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-direction: column;
  }
  .service-active-left {
    background-color: #ffeef1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .service-active-left .service-number {
    background-color: #ef071f;
    color: #fff;
  }

  .service-active-left .service-arrow {
    background-image: url("https://cdn.tongchenganmo.com/images/7.png");
  }

  .service-active-right {
    background-color: #ffeef1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .service-active-right .service-number {
    background-color: #ef071f;
    color: #fff;
  }

  .service-active-right .service-arrow-right {
    background-image: url("https://cdn.tongchenganmo.com/images/10.png");
  }

  .service-item:hover {
    background-color: #ffeef1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .service-item:hover .service-number {
    background-color: #ef071f;
    color: #fff;
  }

  .service-item:hover .service-arrow {
    background-image: url("https://cdn.tongchenganmo.com/images/7.png");
  }

  .service-item:hover .service-arrow-right {
    background-image: url("https://cdn.tongchenganmo.com/images/10.png");
  }

  .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .service-number {
    font-size: 14px;
    font-weight: 600;
    color: #ff4d4f;
    width: 40px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background: #ffeef1;
    border-radius: 5px;
  }

  .service-info {
  }

  .service-info h4 {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    margin-top: 6px;
  }

  .service-info p {
    display: none;
    font-size: 11px;
    color: #999;
    margin-bottom: 0;
  }

  .service-arrow {
    width: 22px;
    height: 22px;
    background-image: url("https://cdn.tongchenganmo.com/images/9.png");
    background-size: 100% 100%;
    margin-top: 5px;
    transform: rotate(90deg);
  }

  .service-arrow-right {
    width: 22px;
    height: 22px;
    background-image: url("https://cdn.tongchenganmo.com/images/8.png");
    background-size: 100% 100%;
  }
  .right-list .service-arrow-right {
    transform: rotate(90deg);
  }
  .right-list .service-item {
    flex-direction: column-reverse;
  }

  .right-list .service-number {
    margin-right: 0;
  }

  /* 主要服务卡片 */
  .main-services {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
  }

  .dec-list {
    width: 100%;
    margin: 30px auto 0;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
    box-sizing: border-box;
  }
  .dec-list-images2,
  .dec-list-images3 {
    display: none;
  }
  .dec-item-wrap {
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    width: 48%;
    max-width: 340px;
    height: auto;
    transition: all 0.3s ease;
    margin: 10px auto 0;
    padding-bottom: 20px;
    background-color: #fff;
  }
  .dec-item-wrap:hover {
    box-shadow: 0px 3 9px 0px rgba(178, 110, 255, 0.5);
  }
  .dec-item {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 3 9px 0px rgba(178, 110, 255, 0.5);
    border-radius: 38px;
    align-items: center;
  }
  .dec-image {
    width: 100%;
    height: 100%;
    box-shadow: 0px 3 9px 0px rgba(129, 129, 129, 0.1);
  }
  .dec-name {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
  }
  .dec-name-title {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
  }
  .dec-text-itle {
    font-weight: 600;
    font-size: 18px;
    color: #333;
  }
  .dec-text {
    color: #777777;
    font-size: 10px;
  }
  .dec-time {
    margin-right: 10px;
    display: flex;
    align-items: center;
  }
  .dec-time-icon {
    width: 15px;
    height: 15px;
  }
  .dec-time-length {
    color: #777777;
    font-size: 12px;
    margin-left: 2px;
  }
  .dec-price-num {
    color: #ff3f22;
  }
  .dec-price-after {
    font-size: 12px;
    margin-left: 10px;
    font-weight: 800;
    line-height: 20px;
  }
  .dec-price-info {
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
  }
  .dec-price-hua {
    width: 100%;
    margin-left: 10px;
    color: #777777;
    text-decoration: line-through;
    font-size: 12px;
  }
  .dec-price {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 10px;
  }
  .dec-btn {
    width: 150px;
    height: 30px;
    border-radius: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    background-color: #fb9548;
    line-height: 30px;
    margin-top: 10px;
    overflow: hidden;
    position: relative;
    transition: all 1000ms;
    cursor: pointer;
  }
  .dec-btn:hover {
    color: #fff;
    outline: 2px solid #ffffff;
    box-shadow: 4px 5px 17px -4px #ffffff;
  }
  .dec-btn::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #f53d50;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 500ms;
  }
  .dec-btn:hover::before {
    width: 250%;
  }

  /* 优势网格 */
  .advantages-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

  .advantage-card {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    height: auto;
    align-items: center;
  }

  .advantage-card .advantage-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
  }

  .advantage-icon-content {
    margin-left: 12px;
    flex: 1;
  }

  .advantage-icon-content-title1 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
  }

  .advantage-icon-content-title2 {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
  }

  /* 摩耶故事部分 */
  .story {
    padding: 30px 0 0;
  }

  .story-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .story-item {
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0;
  }

  .story-item-wrap {
    display: flex;
    align-items: center;
  }

  .story-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .story-icon {
    width: 35px;
    height: 35px;
  }

  .story-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-left: 15px;
  }

  .story-content-text {
    margin-top: 12px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
  }

  /* 摩耶足迹部分 */
  .footprint {
    padding: 30px 0;
  }

  .footprint-content {
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
    background-image: none;
  }

  .timeline {
    position: relative;
  }

  .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 23 px;
    width: 4px;
    height: 100%;
    background-color: #f45362;
  }

  .timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
  }

  .timeline-item:last-of-type .timeline-content {
    background-color: #ef061c;
    box-shadow: 2px 2px 10px 1px #ef860d;
  }

  .timeline-item:last-of-type .timeline-content h3,
  .timeline-item:last-of-type .timeline-content p {
    color: #fff !important;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    left: 0;
    text-align: left;
  }

  .timeline-item::before {
    content: "";
    position: absolute;
    top: 20px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
    border: 3px solid #f45362;
    left: 12px;
  }

  .timeline-item:nth-child(odd)::before,
  .timeline-item:nth-child(even)::before {
    right: auto;
    left: 14px;
  }

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

  .timeline-content {
    border: 1px solid #ef061c;
    border-radius: 20px;
    background-color: #ffeef1;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .timeline-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
  }

  .timeline-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
  }

  /* 前行之路部分 */
  .road {
    padding: 0px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .road-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
  }

  .road-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
  }

  .road-subtitle {
    font-size: 14px;
    color: #666;
  }

  .road-content {
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 15px;
  }

  .road-item {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
  }

  .road-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
  }

  .road-item-content {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    width: 100%;
    margin: 0 auto;
  }

  .road-divider {
    width: 60px;
    height: 3px;
    background-color: #ff4d4f;
    margin: 60px auto;
  }

  .road-footer {
    margin-top: 40px;
    position: relative;
    z-index: 1;
  }

  .road-footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
  }

  .road-footer-content {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
  }

  .road-tagline {
    font-size: 13px;
    color: #f20921;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .road-buttons {
    margin-top: 20px;
  }

  .road-button {
    background-color: #f20921;
    border: none;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    color: #fff;
    transition: all 0.3s ease;
  }

  .road-button:hover {
    background-color: #ff7875;
    transform: translateY(-2px);
  }

  /* 容器宽度调整 */
  .container {
    padding: 0 15px;
  }
}


.techs .container {
  max-width: 1300px;
  margin: 0 auto;
}
.techs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.tech-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s;
}
.tech-card:hover {
  transform: translateY(-4px);
}
.tech-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.tech-info {
  padding: 12px 14px 16px;
}
.tech-name-row {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  justify-content: center;
}
.tech-name {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}
.tech-free-tag {
  background: #e53e3e;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
  display: none;
}
.tech-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* 手机端：两列布局 */
@media (max-width: 768px) {
  .techs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .tech-info {
    padding: 1px 32px 0px;
  }
  .tech-name {
    font-size: 15px;
  }
  .tech-desc {
    display: none;
  }
  .tech-name-row {
    margin-bottom: 1px;
  }
}
/* city城市站点容器（仅非主站显示，已通过模板控制） */
.city-station-container {
  padding: 0 5% 5rem;
  text-align: center;
}
.city-station-title {
  font-size: 24px;
  margin-bottom: 5px;
}
.city-station-sub {
  color: #666;
  font-size: 13px;
  margin-bottom: 30px;
}
.city-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 0 auto;
}
@media (max-width: 768px) {
.city-grid {
  flex-direction: column;
}
}
.city-item {
  background: #fff;
  padding: 13px;
  border-radius: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  color: #333;
  transition: background 0.2s;
}
.city-item:hover {
  background: #f20921;
  color: #fff;
}

/* 桌面端 */
@media (min-width: 768px) {
  .tcam-footer {
    min-width: 1440px;
  }
  .tcam-footer__main {
    display: flex;
    justify-content: space-between;
    background: #d53939;
    border-radius: 30px 30px 0 0;
    padding: 40px 200px 40px;
    color: #fff;
  }
  .tcam-footer__brand {
    max-width: 282px;
  }
  .tcam-footer__logo {
    margin-top: 44px;
    width: 180px;
    height: 33px;
  }
  .tcam-footer__intro {
    margin-top: 12px;
    font-size: 14px;
    line-height: 20px;
  }
  .tcam-footer__column {
    margin-top: 44px;
  }
  .tcam-footer__col-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .tcam-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .tcam-footer__links li {
    margin-bottom: 6px;
  }
  .tcam-footer__links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
  }
  .tcam-footer__links a:hover {
    color: #ffdf6f;
  }
  .tcam-footer__contact {
    margin-top: 44px;
    text-align: center;
  }
  .tcam-footer__contact-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .tcam-footer__qrcode {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .tcam-footer__qrcode img {
    width: 125px;
    height: auto;
  }
  .tcam-footer__qrcode span {
    color: #fff;
    font-size: 14px;
    margin-top: 8px;
  }
  .tcam-footer__stats {
    font-size: 12px;
    margin-top: 10px;
  }
  .tcam-footer__bottom {
    background: #7d001a;
    color: #fff;
    text-align: center;
    font-size: 14px;
    line-height: 30px;
    padding: 10px 0;
  }
  .tcam-footer__friends a {
    color: #fff;
    margin: 0 5px;
  }
  .tcam-footer__legal span,
  .tcam-footer__legal a {
    color: #fff;
    margin-right: 10px;
  }
  .tcam-footer__legal a:hover {
    color: #ffdf6f;
  }
  .tcam-footer__legal img {
    vertical-align: middle;
  }
}

/* 移动端 */
@media (max-width: 767px) {
  .tcam-footer {
    min-width: auto;
  }
  .tcam-footer__main {
    display: flex;
    flex-wrap: wrap;
    background: #d53939;
    border-radius: 30px 30px 0 0;
    padding: 24px 16px 32px;
    color: #fff;
    justify-content: space-between;
  }
  .tcam-footer__brand {
    width: 100%;
    margin-bottom: 20px;
  }
  .tcam-footer__logo {
    margin-top: 24px;
    width: 180px;
    height: auto;
  }
  .tcam-footer__intro {
    margin-top: 12px;
    font-size: 14px;
    line-height: 20px;
  }
  .tcam-footer__column {
    width: 45%;
    margin-top: 20px;
  }
  .tcam-footer__col-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .tcam-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .tcam-footer__links li {
    margin-bottom: 6px;
  }
  .tcam-footer__links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
  }
  .tcam-footer__links a:hover {
    color: #ffdf6f;
  }
  .tcam-footer__contact {
    width: 100%;
    margin-top: 24px;
    text-align: center;
  }
  .tcam-footer__contact-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .tcam-footer__qrcode img {
    width: 60%;
    height: auto;
  }
  .tcam-footer__qrcode span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
  }
  .tcam-footer__stats {
    font-size: 12px;
    margin-top: 10px;
  }
  .tcam-footer__bottom {
    background: #7d001a;
    color: #fff;
    text-align: center;
    font-size: 14px;
    line-height: 32px;
    padding: 10px 13px;
  }
  .tcam-footer__friends a {
    color: #fff;
  }
  .tcam-footer__legal span,
  .tcam-footer__legal a {
    color: #fff;
    margin-right: 8px;
  }
  .tcam-footer__legal a:hover {
    color: #ffdf6f;
  }
  .tcam-footer__legal img {
    vertical-align: middle;
  }
}

/* ==========================================
   首页故事板块
========================================= */

.home-stories {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- 标题区 ---------- */
.stories-heading {
  display: flex;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 20px;
}

.heading-left {
  display: flex;
  flex-direction: column;
}

.heading-caption {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: #d53939;
  margin-bottom: 8px;
}

.heading-main {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
}

.brand-highlight {
  color: #d53939;
  position: relative;
}

.brand-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #d53939;
  border-radius: 3px;
}

.heading-desc {
  color: #666;
  font-size: 1rem;
  max-width: 280px;
  text-align: right;
  line-height: 1.6;
}

/* ---------- 布局容器 ---------- */
.stories-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.story-cover {
  grid-column: span 2;
  display: flex;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.7);
  transition: transform 0.3s, box-shadow 0.3s;
}

.story-cover:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(213,57,57,0.15);
}

.story-cover__media {
  flex: 0 0 45%;
  max-height: 320px;
  overflow: hidden;
}

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

.story-cover:hover .story-cover__media img {
  transform: scale(1.05);
}

.story-cover__card {
  flex: 1;
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.card-badge {
  display: inline-block;
  background: #d53939;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.story-cover__title {
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.3;
}

.story-cover__title a {
  color: #1a1a1a;
  text-decoration: none;
}

.story-cover__title a:hover {
  color: #d53939;
}

.story-cover__excerpt {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 20px;
}

.story-cover__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.cover-date {
  font-size: 0.9rem;
  color: #888;
  background: #f8f8f8;
  padding: 4px 14px;
  border-radius: 20px;
}

.cover-readmore {
  font-weight: 700;
  color: #d53939;
  text-decoration: none;
  transition: gap 0.2s;
  display: flex;
  align-items: center;
}

.cover-readmore:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- 普通卡片 ---------- */
.story-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 24px 20px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  border: 1px solid rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(213,57,57,0.1);
}

/* 卡片顶部发光装饰 */
.story-card__glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(213,57,57,0.12) 0%, transparent 70%);
  border-radius: 50%;
  transition: transform 0.4s;
}

.story-card:hover .story-card__glow {
  transform: scale(1.5);
}

.story-card__header {
  margin-bottom: 14px;
}

.card-tags {
  margin-bottom: 10px;
}

.card-tag {
  background: #fff0f0;
  color: #d53939;
  padding: 2px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.card-tag:hover {
  background: #d53939;
  color: white;
}

.story-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.story-card__title a {
  color: #1a1a1a;
  text-decoration: none;
}

.story-card__title a:hover {
  color: #d53939;
}

.story-card__text {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}

.story-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.story-card__bottom time {
  font-size: 0.8rem;
  color: #999;
}

.card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d53939;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s, transform 0.2s;
}

.card-arrow:hover {
  background: #b33030;
  transform: translateX(2px);
}

/* 空状态 */
.home-stories-empty {
  text-align: center;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  margin: 60px auto;
  color: #fff;
  font-size: 1.1rem;
}

/* ---------- 响应式 ---------- */
@media (max-width: 900px) {
  .stories-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-cover {
    grid-column: span 2;
    flex-direction: column;
  }
  .story-cover__media {
    max-height: 200px;
  }
}

@media (max-width: 600px) {
  .stories-layout {
    grid-template-columns: 1fr;
  }
  .story-cover {
    grid-column: span 1;
  }
  .heading-main {
    font-size: 1.8rem;
  }
  .heading-desc {
    text-align: left;
  }
}

/* ========================================
   标签体系
========================================= */

/* ---------- 标签云页 ---------- */
.tag-cloud-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 90px 1rem 1rem 1rem;
}

.cloud-header {
  text-align: center;
  margin-bottom: 50px;
}

.cloud-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 0;
}

.cloud-sub {
  margin-top: 10px;
  font-size: 1rem;
}

/* 涟漪卡片网格 */
.cloud-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.ripple-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 30px 20px 24px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(255,255,255,0.7);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ripple-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(213,57,57,0.12);
}

.ripple-card__count {
  font-size: 3rem;
  font-weight: 900;
  color: #d53939;
  line-height: 1;
  margin-bottom: 6px;
  transition: transform 0.3s;
}

.ripple-card:hover .ripple-card__count {
  transform: scale(1.2);
}

.ripple-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 14px;
}

.ripple-card__icon {
  font-size: 1.2rem;
  color: #d53939;
  transition: transform 0.25s;
}

.ripple-card:hover .ripple-card__icon {
  transform: translateX(4px) translateY(-2px);
}

/* 涟漪效果 */
.ripple-effect {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(213,57,57,0.15) 0%, transparent 70%);
  border-radius: 50%;
  transition: transform 0.5s;
}

.ripple-card:hover .ripple-effect {
  transform: scale(2);
}

/* 空状态 */
.empty-state {
  text-align: center;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px;
  color: #fff;
  font-size: 1.1rem;
}

.empty-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 12px;
}

/* ---------- 标签文章列表页 ---------- */
.tag-posts-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 1rem 1rem 1rem;
}

.posts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.posts-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.accent-badge {
  background: #d53939;
  color: white;
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.posts-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.back-link {
  padding: 8px 22px;
  background: #d53939;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 30px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}

.back-link:hover {
  background: #d53939;
  border-color: #d53939;
}

/* 杂志错位网格 */
.magazine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.magazine-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  border: 1px solid rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s, box-shadow 0.3s;
}

.magazine-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(213,57,57,0.1);
}

/* 图片区域 */
.card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.magazine-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.img-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #d53939;
  color: white;
  padding: 4px 14px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* 无图片占位 */
.card-no-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
}

.no-img-text {
  font-size: 2rem;
  opacity: 0.6;
}

.card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.4;
}

.card-title a {
  color: #1a1a1a;
  text-decoration: none;
}

.card-title a:hover {
  color: #d53939;
}

.card-author {
  font-size: 0.85rem;
  font-weight: 500;
  color: #d53939;
  margin-bottom: 12px;
  display: block;
}

.card-excerpt {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.read-more {
  align-self: flex-start;
  font-weight: 600;
  color: #d53939;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.read-more:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.read-more .arrow {
  transition: transform 0.2s;
}

.read-more:hover .arrow {
  transform: translateX(3px);
}

/* 装饰斜线 */
.diagonal-stripe {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  background: #d53939;
  opacity: 0.08;
  transform: rotate(45deg);
  pointer-events: none;
}

/* 分页 */
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}

.pager-btn {
  padding: 10px 24px;
  border: 2px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}

.pager-btn:hover {
  background: #d53939;
  border-color: #d53939;
}

.pager-info {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* 响应式 */
@media (max-width: 768px) {
  .magazine-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cloud-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .posts-title {
  font-size: 1rem;
  }
}

/* ==========================================
   首页标签展示区
========================================= */

.home-tags {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 24px;
}

.tags-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 32px;
}

.tags-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0;
  position: relative;
}

.tags-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: #d53939;
  border-radius: 2px;
}

.tags-sub {
  font-size: 0.95rem;
  margin: 0;
}

/* 横向滑动容器 */
.tags-slider {
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px 0 20px;
  scrollbar-width: thin;
  scrollbar-color: #d53939 rgba(255,255,255,0.2);
}

.tags-slider::-webkit-scrollbar {
  height: 4px;
}

.tags-slider::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}

.tags-slider::-webkit-scrollbar-thumb {
  background: #d53939;
  border-radius: 4px;
}

.tags-track {
  display: flex;
  gap: 16px;
  align-items: center;
  width: max-content;
}

/* 单个标签胶囊 */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 10px 24px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.3s, background 0.3s;
  flex-shrink: 0;
}

.tag-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(213,57,57,0.15);
  background: rgba(255, 255, 255, 0.95);
}

.tag-pill__text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2a2a2a;
}

.tag-pill__count {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: #d53939;
  min-width: 22px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0 6px;
  box-shadow: 0 2px 6px rgba(213,57,57,0.3);
}

/* 响应式：移动端调整字号 */
@media (max-width: 600px) {
  .tag-pill {
    padding: 8px 18px;
  }
  .tag-pill__text {
    font-size: 0.85rem;
  }
  .tags-slider {
    overflow-x: visible;
    white-space: normal;
    padding: 10px 0 20px;
    scrollbar-width: none;
  }

  .tags-slider::-webkit-scrollbar {
    display: none;
  }

  .tags-track {
    display: flex;
    flex-wrap: wrap; 
    gap: 12px;
    align-items: center;
    width: 100%;
  }
}
/* ==========================================
   移动端专属公众号二维码卡片
========================================= */

.vx__qrcode {
  display: none;
}

@media (max-width: 768px) {
  .vx__qrcode {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 15px;
    margin: 0 auto;
    padding: 0 15px 15px;
    position: relative;
  }

  .vx__qrcode img {
    width: 48%;
    height: auto;
    display: block;
    flex-shrink: 0;
    order: 1;
  }

  /* 右侧白色文字框 */
  .vx__qrcode span {
    order: 2;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px 0px;
    box-sizing: border-box;
    flex: 1;
    min-width: 0;
  }

  /* 文字样式 */
  .vx__qrcode-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #d53939;
    line-height: 1.4;
    text-align: center;
  }

  /* 按钮样式 */
  .vx__qrcode-btn {
    display: inline-block;
    background-color: #d53939;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 20px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    transition: opacity 0.2s;
  }

  .vx__qrcode-btn:hover {
    opacity: 0.9;
  }
}