/* 重置和基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}
h1,h2,h3 {
    margin: 0;
    padding: 0;
}
/* Hero Section */
.hero-section {
    /* background:#F8F4EC; */
    background-image: url('../img/shoye1.png');
    background-size: 100% 100%;
    min-height: 100vh;

    position: relative;
    overflow: hidden;
    display: flex;
}

.hero-container {
    max-width: 1920px;
    padding: 0 160px;
    display: flex;

   
    width: 100%;
}

.hero-content {
   margin: 0 auto;
   padding-top: 200px;
}

.hero-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 24px;
}
.hero-title2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.6;
    span {
      padding: 5px 10px;
      border-radius: 25px;
      border: 1px solid #1a202c;
      margin-right: 15px;
    }
}







/* POD Solutions Section - 使用Grid布局 */
.pod-solutions-section {
    /* background: #E8F4FD; */
   background: linear-gradient(to bottom, #F4F9FF, #FFFFFF);
    min-height: 970px;
   
}

.pod-container {
    max-width: 1040px;
    margin: 0 auto;
    width: 100%;
    background: url('../img/index3333.png') no-repeat;
    height: 978px;
    background-size: 100% 100%;
    position: relative;
   margin-bottom: 110px;
}

.pod-container-title {
  text-align: center;
  margin: auto;
  padding-top: 200px;
}

.pod-container-title .h1 {
  font-size:20px ;
  font-weight: 600;
  color: #3363FF;
}

.pod-container-title .h2 {
  font-size:18px ;
  margin-top: 20px;
}

.pod-one-middle {
  margin-top: 120px;
  padding-left: 20px;
  position: relative;
  
}

.pod-one-middle .title1 {
  font-size: 16px;
  color: #fff;
  position: absolute;
  left: 383px;
  top: 2px;
}

.pod-one-content-title {
  font-size: 20px;
  padding-bottom: 20px;
  color: #3363FF;
  font-weight: 600;
}

.pod-one-content {
  font-size: 18px;
  color: #999;
  
}

.pod-one-content p {
    margin-bottom: 10px;
}


.pod-tow-public {
  position: relative;
  top: 123px;
}
.pod-tow-left {
    padding-left: 120px;
    position: relative;
    left: 313px;
    top: 60px;
}
.pod-tow-left-title {
  font-size: 20px;
  color: #3363FF;
  margin-bottom: 20px;
  font-weight: 600;
}

.pod-tow-left .title3 {
    position: absolute;
    left: 324px;
    top: 3px;
    font-size: 16px;
    color: #fff;

}


.pod-tow-left-content {
  font-size: 18px;
  position: relative;
  color: #999;
}

.pod-tow-left-content p {
    margin-bottom: 10px;
}

.pod-tow-right-title {
  font-size: 20px;
  color: #3363FF;
  margin-bottom: 20px;
  font-weight: 600;
} 



.pod-tow-right {
    position: absolute;
    right: 10px;
    top: -312px;
}

.pod-tow-right-content {
  font-size: 16px;
  position: relative;
  color: #999;
}

.pod-tow-right-content p {
    margin-bottom: 10px;
}
.title2 {
  position: absolute;
  left: -57px;
  top: -26px;
  font-size: 16px;
  color: #fff;
}


/* Grid布局 - 第二个模块 */
.pod-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 80px;
    align-items: center;
    margin-top: 60px;
    width: 100%;
}

.pod2-container-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
}
.pod2-container-subtitle {
  font-size: 24px;
  text-align: center;
  font-weight: 500;
}

.pod-image {
    grid-column: span 6;
    display: flex;
    justify-content: center;
    align-items: center;
    background:#eff7ff ;
    border-radius: 10px;
}

.pod-features {
    grid-column: span 6;
    max-width: none;
}

.desktop-mockup {

    border-radius: 12px;
    padding: 60px;
   
}

.desktop-mockup img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.pod-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.red-dot svg {
    margin-top: -3px;
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
    line-height: 1.3;
}

.feature-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.pod-btn {
    background: transparent;
    color: #222;
    border: 1px solid #222;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.pod-btn:hover {
    
    transform: translateY(-2px);
}

/* Analytics Section - 使用Grid布局 */
.analytics-section {
    background: #F7FAFC;
    padding: 80px 0;
    min-height: 100vh;
}

/* Grid布局 - Analytics内容 */
.analytics-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.analytics-content {
    grid-column: span 6;
    max-width: none;
}

.analytics-image {
    grid-column: span 6;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eff7ff;
    border-radius: 10px;
    padding: 60px;
}

.analytics-features {
    margin: 40px 0;
}

.analytics-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.analytics-btn {
    background: transparent;
    color: #222;
    border: 1px solid #222;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.analytics-btn:hover {
   
   
    transform: translateY(-2px);
    
}

.phone-mockup {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;

}

.phone-mockup img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* 第三个模块 - 使用Grid布局 */
.pod2-solutions-section {
    background: #F8F4EC;
    padding: 80px 0;
    min-height: 100vh;
}

.pod2-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 160px;
    width: 100%;
}

/* Grid布局 - 第三个模块第一部分 */
.pod2-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 80px;
    align-items: center;
    margin-top: 60px;
    width: 100%;
}

.pod2-image {
    grid-column: span 6;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fcfaf6;
    border-radius: 10px;
}

.pod2-features {
    grid-column: span 6;
    max-width: none;
}

.desktop-mockup2 {
    border-radius: 12px;
    padding: 60px;
}

.desktop-mockup2 img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.pod2-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

/* Grid布局 - 第三个模块第二部分 */
.analytics-container2 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.analytics-content2 {
    grid-column: span 6;
    max-width: none;
}

.analytics-image2 {
    grid-column: span 6;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fcfaf6;
    border-radius: 10px;
    padding: 60px;
}

.analytics-features2 {
    margin: 40px 0;
}

.analytics-feature-item2 {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

/* Section Title Common Styles */
.section-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a202c;
    text-align: left;
    margin-bottom: 20px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .hero-container,
    .pod-container,
    .pod2-container {
        padding: 0 80px;
    }
    
    .pod-content,
    .analytics-container,
    .pod2-content,
    .analytics-container2 {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .hero-container,
    .pod-container,
    .pod2-container {
        padding: 0 20px;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content {
        margin-right: 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    /* Grid布局在移动端变为单列 */
    .pod-content,
    .pod2-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pod-image,
    .pod2-image {
        grid-row: 1;
    }
    
    .pod-features,
    .pod2-features {
        grid-row: 2;
        max-width: 100%;
    }
    
    .analytics-container,
    .analytics-container2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .analytics-content,
    .analytics-content2 {
        grid-row: 1;
        max-width: 100%;
    }
    
    .analytics-image,
    .analytics-image2 {
        grid-row: 2;
    }
}

@media (max-width: 480px) {
    .hero-container,
    .pod-container,
    .pod2-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .pod-content,
    .analytics-container,
    .pod2-content,
    .analytics-container2 {
        gap: 30px;
    }
}

/* 商家故事模块样式 */
.merchant-stories-section {
    padding: 80px 0;
    min-height: 100vh;
    overflow: visible;
}

.merchant-stories-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
}

.merchant-stories-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #1a202c;
    margin-bottom: 60px;
}

/* Swiper 自定义样式 */
.merchantSwiper {
    padding: 20px 0 80px;
    position: relative;
    padding-bottom: 50px !important;
}

.merchant-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
   
    height: 705px;
    display: flex;
    flex-direction: column;
}

.merchant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.merchant-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #f0f2f5;
}

.merchant-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.merchant-card:hover .merchant-image img {
    transform: scale(1.05);
}

.merchant-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.merchant-name {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    text-align: center;
}

.merchant-category {
    display: inline-block;
    background: #3b82f6;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 20px;
    margin: 0px auto 20px auto;
    width: fit-content;
}

.merchant-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
    flex: 1;
}

.merchant-stats {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 120px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #718096;
    line-height: 1.4;
}

/* Swiper 导航按钮自定义 */
.merchantSwiper .swiper-button-next,
.merchantSwiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.swiper-button-prev {
    padding: 25px !important;
    left: -50px !important;
    background: #fafbff;
    
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 26px !important;
}

.swiper-button-next {
  background: #fafbff;
   padding: 25px !important;
    right: -50px !important;
}

.merchantSwiper .swiper-button-next:after,
.merchantSwiper .swiper-button-prev:after {
    font-size: 20px ;
    font-weight: 700;
    color: #1a202c;
}

.merchantSwiper .swiper-button-next:hover,
.merchantSwiper .swiper-button-prev:hover {
    background: #3b82f6;
    transform: scale(1.1);
}

.merchantSwiper .swiper-button-next:hover:after,
.merchantSwiper .swiper-button-prev:hover:after {
    color: #ffffff;
}

.merchantSwiper .swiper-button-prev {
    left: 20px;
}

.merchantSwiper .swiper-button-next {
    right: 20px;
}

/* Swiper 分页器自定义 */
.merchantSwiper .swiper-pagination {
    bottom: 0px !important;
}

.merchantSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cbd5e0;
    opacity: 1;
    transition: all 0.3s ease;
}

.merchantSwiper .swiper-pagination-bullet-active {
    background: #3b82f6;
    width: 32px;
    border-radius: 6px;
}





/* 响应式设计 */
@media (max-width: 1200px) {
    .merchant-stories-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .merchant-stories-container {
        padding: 0 40px;
    }
    
    .merchant-stories-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .merchant-image {
        width: 355px;
        height: 260px;
    }
    
    .merchant-info {
        padding: 24px;
    }
    
    .merchant-name {
        font-size: 24px;
        text-align: center;
    }
    
    .merchant-description {
        font-size: 15px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .merchantSwiper .swiper-button-next,
    .merchantSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .merchantSwiper .swiper-button-next:after,
    .merchantSwiper .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .merchant-stories-container {
        padding: 0 20px;
    }
    
    .merchant-stories-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .merchant-image {
        height: 200px;
    }
    
    .merchant-info {
        padding: 20px;
    }
    
    .merchant-name {
        font-size: 20px;
    }
    
    .merchant-description {
        font-size: 14px;
    }
    
    .merchant-stats {
        gap: 20px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .merchantSwiper .swiper-button-next,
    .merchantSwiper .swiper-button-prev {
        display: none;
    }
}

/* 关于SHEIN部分 */
.about-shein {
    background-color: #f5f6fc;
    padding: 80px 0;
}

.about-shein-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.about-shein-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.about-shein-description {
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.about-shein-description p {
    font-size: 16px;
    color: #666;
    margin: 10px 0;
}

.about-shein-stats {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #4a90e2;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.about-shein-goals {
  
  text-align: center;
  font-size: 16px;
  color: #666;
  width: 450px;
  margin: 0 auto;
}

.about-shein-goals .about-shein-goals-title {
  padding-top: 50px;
  font-size: 36px;
    font-weight: bold;
    color: #333;
    padding-bottom: 30px;
}
.about-shein-goals p {
  text-align: left;
  margin-top: 10px;
}
/* 响应式设计 */
@media (max-width: 768px) {
    .about-shein {
        padding: 50px 0;
    }
    
    .about-shein-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .about-shein-description p {
        font-size: 14px;
    }
    
    .about-shein-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 13px;
    }
}


