
@charset "UTF-8";
/**
 * 关于我们页面样式
 * About Page Styles
 * 参考 products.css 的样式风格
 */

/* ========================================
   统一背景包裹容器
   ======================================== */
.about-background-wrapper {
    background-image: url('../images/bg/bg3-pc.png');
    background-size: 100% 100%;
    background-position: center top;
    background-repeat: no-repeat;
}

/* ========================================
   关于我们主横幅区域
   ======================================== */
.about-hero-section {
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url(../images/关于我们配图.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 580px;
    margin-top: 60px;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 204px;
    height: 204px;
    opacity: 1;
    background: rgba(110, 31, 172, 0.5);
    filter: blur(400px);
}

.about-hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    width: 100%;

}

.about-hero-content {
    max-width: 588px;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: left;
    align-self: flex-start;
}

.about-hero-title {
    font-family: MiSans;
    font-size: 44px;
    font-weight: 600;
    line-height: normal;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: left;
}

.about-hero-description {
    font-family: MiSans;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-align: left;
}

.about-hero-description:last-child {
    margin-bottom: 0;
}

/* 垂直居中，水平居左的 hero 内容容器 */
.about-hero-flex-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 680px;
    width: 100%;
}

/* ========================================
   企业理念区域
   ======================================== */
.company-values-section {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.company-values-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.company-values-container .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin: 0px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.value-card {
    border-radius: 16px;
    opacity: 1;
    background: linear-gradient(180deg, rgba(68, 125, 255, 0.06) 0%, rgba(68, 125, 255, 0) 100%);
    box-sizing: border-box;
    position: relative;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(68, 125, 255, 0.2) 0%, rgba(68, 125, 255, 0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.value-card:hover {
    /* transform: translateY(-5px); */
    background: linear-gradient(180deg, rgba(68, 125, 255, 0.16) 0%, rgba(68, 125, 255, 0) 100%);
}

.value-card:hover::before {
    background: linear-gradient(180deg, rgba(68, 125, 255, 0.5) 0%, rgba(68, 125, 255, 0) 100%) ;
}
.value-container
{
    padding: 28px 32px;
}

/* .card-1  
{
    background-image: url('../images/bg/我们的使命-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.card-2
{
    background-image: url('../images/bg/我们的愿景-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 24px;
}
.card-3
{
    background-image: url('../images/bg/产品理念-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
} */
.value-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.value-title {
    font-family: MiSans;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.value-description {
    font-family: MiSans;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: var(--text-secondary);
    margin-top: 16px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0em;
}

/* 企业理念新布局 */
.values-flex-layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    margin-top: 64px;
}
.values-left {
    display: flex;
    flex-direction: column;
    gap: 0px;
    flex: 1;
}
.values-right {
    flex: 1;
    display: flex;
    align-items: stretch;
}
.value-card-large {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.value-card-large .value-description {
    margin-top: 24px;
    font-size: 18px;
    color: var(--text-secondary);
}
.value-card-large .value-description div {
    font-family: MiSans;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: var(--text-secondary);
    margin-top: 16px;
}


/* ========================================
   核心团队区域
   ======================================== */
.core-team-section {
    padding: 180px 0;
}

.core-team-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.core-team-container  .section-title
{
  color: var(--text-quaternary);
  text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin: 0px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 0;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 24px 32px 16px;
    text-align: center;
}
       
.member-description {
    font-family: MiSans;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-tertiary);
    padding: 0 32px 32px;
    margin: 0;
}

/* 核心团队图片区域样式 */
.team-images-only {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
}
.team-images-only img {
    max-width: 384px;
    width: 100%;
    height: auto;
    flex: 0 0 calc(33.333% -24px);
    margin-top: 4px;
}

/* 团队成员图片样式 */
.team-member-wrapper {
    max-width: 384px;
    width: 100%;
    flex: 0 0 calc(33.333% - 12px);
    border-radius: 32px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.team-member-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.team-member-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* ========================================
   联系我们区域
   ======================================== */
.contact-section {
    padding-bottom: 160px;
}
.title-break {
    display: none;
}
.contact-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.contact-container .section-title
{
    color: var(--text-quaternary);
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}
.contact-container .section-subtitle
{
    color: var(--text-quaternary);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}
.contact-content {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
   
}



.contact-info-inline .contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-inline .contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-info-inline .contact-text {
    font-family: MiSans;
    font-size: 16px;
    font-weight: 500;
    
}

.contact-info-inline .contact-qrcodes {
    display: flex;
    gap: 60px;
}

.contact-info-inline .qrcode-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 180px;
    height: 180px;
    border-radius: 24px;
    opacity: 1;
    box-sizing: border-box;
    border: 1px solid rgba(78, 44, 182, 0.2);
}


.contact-info-inline .contact-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 180px;
    height: 180px;
    border-radius: 24px;
    opacity: 1;
    background: #F8F6FF;
    box-sizing: border-box;
    border: 1px solid rgba(78, 44, 182, 0.2);
    color: var(--text-quaternary);
}
/* 联系我们横向排列 */
.contact-info-inline {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}
.contact-info-inline .contact-qrcodes {
    display: flex;
    gap: 32px;
}
.contact-info-inline .qrcode-item:hover,
.contact-info-inline .contact-item:hover {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
/* 高亮关键字样式 */
.about-highlight {
    font-weight: 600;
    color: #ffffff;
}
.value-card .value-icon-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.value-card .value-icon-title-row .value-icon {
    margin-bottom: 0;
}
.value-card .value-icon-title-row .value-title {
    margin-bottom: 0;
}
/* ========================================
   响应式设计
   ======================================== */
/* @media screen and (max-width: 1200px) {
   
} */
/* 平板设备优化 (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-hero-container,
    .company-values-container,
    .core-team-container,
    .contact-container
    {
        padding-left: 40px;
        padding-right: 40px;
    }
    .values-flex-layout
    {
        
        font-size: 36px;
    }
    .about-hero-section {
        background-image: url(../images/关于我们配图-ipad.png);
    }
    .about-background-wrapper {
        background-image: url(../images/bg/bg3-ipad.png);
    }
    .about-hero-content
    {
        max-width: 624px;
    }
    .title-break {
    display: block;
    }
    .team-images-only
    {
        gap: 16px;
    }
    .team-member-wrapper {
        flex: 0 0 calc(33.333% - 12px);
    }
    .core-team-section {
    padding: 160px 0;
}
}

@media screen and (max-width: 768px) {
    .about-hero-container,
    .company-values-container,
    .core-team-container,
    .contact-container
    {
        padding-left: 16px;
        padding-right: 16px;
    }
   .about-hero-section {
       background-image: url(../images/关于我们配图-iphone.png);
        flex-direction: column;
        gap: 40px;
        min-height: auto;
        background-size: 100% auto;
        background-position: center 325px;
        padding-top: 60px;
    }

  .about-hero-flex-center
   {
        justify-content: left;
   }
    .about-hero-title {
        font-size: 36px;
        margin-bottom: 24px;
        font-weight: 700;
    }
    
    .about-hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .company-values-container .section-title
    {
        font-size: 24px;
        font-weight: 700;
    }
    .company-values-section,
    .core-team-section,
    .contact-section {
        padding: 80px 0 0 0;
    }
    .company-values-section .title-break {
        display: block;
    }
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-background-wrapper
    {
        background-image: url(../images/bg/bg3-iphone.png);
    }
    .value-card {
        padding: 24px 16px;
    }
    .card-2
    {
        margin-top: 0px;
    }
    .value-container
    {
        padding: 0px;
    }
    .member-photo {
        height: 280px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 24px; /* 减小间隔 */
        margin-top: 24px;
        padding-bottom: 80px;
    }

    .contact-qrcodes {
        gap: 40px;
    }
    /* contact-info-inline：让元素分两行显示 */
    .contact-info-inline {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; /* 允许换行 */
        align-items: center;
        justify-content: space-between; /* 两端对齐 */
        gap: 16px;
        width: 100%;
        margin-top: 24px;
    }
    /* 第一行：两个 contact-item 两端对齐 */
    .contact-info-inline .contact-item {
        flex-direction: row; /* 图标和文字横向排列 */
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        width: auto;
        max-width: 48%; /* 限制最大宽度，确保一行只有两个 */
        height: auto;
        margin: 0;
        flex: 0 0 auto; /* 不伸缩，固定大小 */
        background: transparent;
        border: 0px;
        order: 1; /* 排在第一行 */
    }
    .contact-info-inline .contact-icon {
        width: 32px;
        height: 32px;
    }
    .contact-info-inline .contact-text {
        font-size: 14px;
        font-weight: normal;
    }
    /* 第二行：两个 qrcodes 两端对齐显示在同一行 */
    .contact-info-inline .contact-qrcodes {
        flex-direction: column; /* 每个 qrcode 容器纵向排列内部内容（图片+标签）*/
        justify-content: center;
        gap: 8px;
        width: auto; /* 自动宽度 */
        max-width: calc(50% - 8px); /* 限制最大宽度，确保一行显示两个 */
        align-items: center;
        flex: 0 0 auto; /* 不伸缩，固定大小 */
        order: 2; /* 排在第二行 */
    }
    .contact-info-inline .qrcode-item {
        width: 100%;
        height: auto;
        margin: 0;
    }
    .contact-info-inline .qrcode-image {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
  
    .values-flex-layout {
        flex-direction: column;
        gap: 24px;
        margin-top: 12px;
    }
    .values-left {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .values-right
    {
        width: 100%;
    }
    .value-card-large {
        padding: 24px 16px;
    }
    .value-card-large .value-description {
        font-size: 14px;
    }
    .value-card-large .value-description div {
        font-size: 14px;
    }
    .core-team-container .section-title
    {
        font-size: 24px;
        font-weight: 700;
    }
    .core-team-container .team-images-only {
        margin-top: 24px;
        gap: 16px;
    }
    .team-member-wrapper {
        flex: 0 0 calc(50% - 8px); /* 每行2个,减去间隔的一半 */
        max-width: calc(50% - 8px);
    }
    /* 移动端图片切换 */
    .team-member-img[data-name="杨叶伟"] {
        content: url('../images/about/杨叶伟-iphone.png');
    }
    .team-member-img[data-name="张权"] {
        content: url('../images/about/张权-iphone.png');
    }
    .team-member-img[data-name="赵雨润"] {
        content: url('../images/about/赵雨润-iphone.png');
    }
    .team-member-img[data-name="罗流杰"] {
        content: url('../images/about/罗流杰-iphone.png');
    }
    .team-member-img[data-name="段萌"] {
        content: url('../images/about/段萌-iphone.png');
    }
    .team-member-img[data-name="张文君"] {
        content: url('../images/about/张文君-iphone.png');
    }
    .contact-container .section-subtitle
    {
        padding: 5px;
    }

}

