/* 关于我们页面样式 */

/* 页面标题部分 */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/about-bg.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease;
    transition: font-size 0.3s ease;
}

.page-header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
    transition: font-size 0.3s ease;
}

/* 公司介绍部分 */
.about-intro {
    padding: 150px 0 80px;
    background-color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    transition: font-size 0.3s ease;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #0066cc;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.about-text .btn {
    margin-top: 20px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.about-text .btn:hover {
    background-color: #ff5252;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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





/* 公司数据部分 */
.company-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.company-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/stats-bg.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.company-stats .container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

/* 公司文化部分 */
.culture {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.culture-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.value-item i {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #0066cc;
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.culture-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}



/* 响应式设计 */
/* 14寸显示器适配 */
@media (max-width: 1366px) {
    .about-content {
        gap: 60px;
    }
    


    
    .culture-content {
        gap: 50px;
    }
    
    .culture-values {
        gap: 25px;
    }
}

@media (max-width: 1200px) {

    
    .culture-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .culture-values {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .join-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .about-intro,
    .culture,
    .join-us {
        padding: 70px 0;
    }
    

    
    .culture-values {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .join-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .about-text h2,
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-text p,
    .section-header p,
    .join-content p {
        font-size: 1rem;
    }
    
    .team-member,
    .value-item {
        padding: 30px 20px;
    }
    
    .culture-text h3 {
        font-size: 1.5rem;
    }
}

/* 全屏大图区域 */
.fullscreen-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 80px 0 70px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: #ffffff;
}

.fullscreen-image img {
    max-width: 80%;
    max-height: 80vh;
    height: auto;
    width: auto;
    object-fit: contain;
    align-self: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .fullscreen-image {
        padding: 30px 0;
    }
    
    .fullscreen-image img {
        max-width: 90%;
        max-height: 70vh;
    }
}

@media (max-width: 576px) {
    .fullscreen-image {
        padding: 20px 0;
    }
    
    .fullscreen-image img {
        max-width: 95%;
        max-height: 60vh;
    }
}

/* 企业荣誉部分 */
.corporate-honors {
    padding: 80px 0;
    background-color: #ffffff;
}

.honors-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.honors-left {
    flex: 0 0 30%;
    margin-top: 80px;
}

.honors-right {
    flex: 1;
}

.honors-header {
    text-align: left;
    margin-bottom: 40px;
}

.honors-title {
    color: #000000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    margin-left: 15px;
    position: relative;
    display: inline-block;
    padding: 0 20px;
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.5;
    z-index: 2;
}

.honors-title::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -20px;
    width: calc(100% + 40px);
    height: 30%;
    background-color: #20b2aa;
    z-index: -1;
}

.honors-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 20px;
}

.honors-logos {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 5px;
    margin-bottom: 40px;
}

.logo-item {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: none;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.honors-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 5px;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

.honor-item {
    display: flex;
    justify-content: center;
    width: 100%;
}

.honor-card {
    width: 180px;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.honor-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.honor-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.honor-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.honor-title {
    padding: 15px 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    background-color: #ffffff;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .honors-content {
        max-width: 1000px;
        gap: 40px;
    }
    
    .honors-grid {
        grid-template-columns: repeat(3, auto);
        gap: 5px;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    
    .honor-card {
        width: 180px;
    }
    
    .honor-image img {
        max-width: none;
        max-height: none;
        object-fit: contain;
    }
}

@media (max-width: 992px) {
    .honors-content {
        flex-direction: column;
        gap: 50px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .honors-left {
        flex: 1;
        width: 100%;
        margin-top: 0;
    }
    
    .honors-right {
        flex: 1;
        width: 100%;
    }
    
    /* 为.honors-grid添加最大宽度，使其在容器中居中 */
    .honors-grid {
        max-width: 600px; /* 3列卡片的总宽度（180px*3 + 5px*2） */
        margin: 0 auto;
    }
    
    .honors-header {
        text-align: center;
    }
    
    .honors-title {
        margin-left: 0;
    }
    
    .honors-logos {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .logo-item {
        width: 56px;
        height: 56px;
    }
    
    .honors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    
    .honor-card {
        width: 100%;
        max-width: 180px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .corporate-honors {
        padding: 60px 0;
    }
    
    .honors-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .honors-right {
        flex: 1;
        width: 100%;
    }
    
    /* 为.honors-grid添加最大宽度，使其在容器中居中 */
    .honors-grid {
        max-width: 400px; /* 2列卡片的总宽度（180px*2 + 5px*1） */
        margin: 0 auto;
    }
    
    .honors-title {
        font-size: 2rem;
    }
    
    .honors-subtitle {
        font-size: 1.1rem;
    }
    
    .honors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    
    .honor-card {
        width: 100%;
        max-width: 180px;
        margin: 0 auto;
    }
    
    .honors-logos {
        gap: 8px;
        justify-content: center;
    }
    
    .logo-item {
        width: 49px;
        height: 49px;
    }
}

@media (max-width: 576px) {
    .corporate-honors {
        padding: 50px 0;
    }
    
    .honors-content {
        gap: 40px;
    }
    
    .honors-title {
        font-size: 1.8rem;
    }
    
    .honors-subtitle {
        font-size: 1rem;
    }
    
    .honors-grid {
        grid-template-columns: 1fr;
        gap: 5px;
        justify-content: center;
        width: 100%;
        max-width: 200px; /* 1列卡片的宽度 */
        margin: 0 auto;
    }
    
    .honor-card {
        width: 100%;
        max-width: 180px;
        margin: 0 auto;
    }
    
    .honors-logos {
        gap: 10px;
        justify-content: center;
    }
    
    .logo-item {
        width: 42px;
        height: 42px;
    }
    
    .honor-title {
        padding: 12px 15px;
        font-size: 1rem;
    }
}

/* 媒介生态部分 */
.media-ecosystem {
    padding: 80px 0;
    background-color: #ffffff;
}

.media-ecosystem .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.media-ecosystem .section-title {
    font-size: 2.5rem;
    color: #333;
    position: relative;
    display: inline-block;
}

.media-ecosystem .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #00b894;
}

.ecosystem-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 80px;
    padding: 0 80px;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    text-align: center;
}

.ecosystem-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    padding: 40px 0;
}

/* 六边形容器 */
.hexagon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hexagon-row {
    display: flex;
    align-items: center;
    position: relative;
}

.hexagon-row.middle {
    margin: -50px 0;
    z-index: 1;
}

/* 六边形样式 */
.hexagon {
    width: 160px;
    height: 92px;
    background-color: #3498db;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.hexagon::before, .hexagon::after {
    content: '';
    position: absolute;
    width: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
}

.hexagon::before {
    bottom: 100%;
    border-bottom: 46px solid;
}

.hexagon::after {
    top: 100%;
    border-top: 46px solid;
}

/* 六边形颜色 */
.hexagon.blue {
    background-color: #3498db;
}

.hexagon.blue::before {
    border-bottom-color: #3498db;
}

.hexagon.blue::after {
    border-top-color: #3498db;
}

.hexagon.purple {
    background-color: #9b59b6;
}

.hexagon.purple::before {
    border-bottom-color: #9b59b6;
}

.hexagon.purple::after {
    border-top-color: #9b59b6;
}

.hexagon.green {
    background-color: #2ecc71;
}

.hexagon.green::before {
    border-bottom-color: #2ecc71;
}

.hexagon.green::after {
    border-top-color: #2ecc71;
}

/* 连接点 */
.connection-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-line {
    position: absolute;
    background-color: #e0e0e0;
    transform-origin: center;
}

/* 图标和标签容器 */
.diagram-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 80px;
    flex-wrap: wrap;
    gap: 40px;
}

.icon-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 120px;
    text-align: center;
}

.icon-item {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

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

.label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.ecosystem-description {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 60px auto 0;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .ecosystem-stats {
        padding: 0 40px;
    }
    
    .hexagon {
        width: 140px;
        height: 80px;
        font-size: 1rem;
        margin: 0 8px;
    }
    
    .hexagon::before, .hexagon::after {
        border-left: 70px solid transparent;
        border-right: 70px solid transparent;
    }
    
    .hexagon::before {
        border-bottom: 40px solid;
    }
    
    .hexagon::after {
        border-top: 40px solid;
    }
    
    .hexagon-row.middle {
        margin: -40px 0;
    }
    
    .icon-item {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .diagram-icons {
        gap: 30px;
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .media-ecosystem {
        padding: 60px 0;
    }
    
    .media-ecosystem .section-title {
        font-size: 2rem;
    }
    
    .ecosystem-stats {
        margin-bottom: 60px;
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        font-size: 1.1rem;
    }
    
    .hexagon {
        width: 120px;
        height: 69px;
        font-size: 0.9rem;
        margin: 0 5px;
    }
    
    .hexagon::before, .hexagon::after {
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
    }
    
    .hexagon::before {
        border-bottom: 34px solid;
    }
    
    .hexagon::after {
        border-top: 34px solid;
    }
    
    .hexagon-row.middle {
        margin: -34px 0;
    }
    
    .icon-item {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .label {
        font-size: 0.8rem;
    }
    
    .diagram-icons {
        gap: 20px;
        margin-top: 50px;
    }
}

@media (max-width: 576px) {
    .media-ecosystem {
        padding: 50px 0;
    }
    
    .media-ecosystem .section-title {
        font-size: 1.8rem;
    }
    
    .hexagon {
        width: 100px;
        height: 58px;
        font-size: 0.8rem;
        margin: 0 3px;
    }
    
    .hexagon::before, .hexagon::after {
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
    }
    
    .hexagon::before {
        border-bottom: 29px solid;
    }
    
    .hexagon::after {
        border-top: 29px solid;
    }
    
    .hexagon-row.middle {
        margin: -29px 0;
    }
    
    .icon-item {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .label {
        font-size: 0.75rem;
    }
    
    .diagram-icons {
        gap: 15px;
        margin-top: 40px;
    }
    
    .ecosystem-description {
        font-size: 1rem;
        margin: 40px auto 0;
        padding: 0 20px;
    }
}

@media (max-width: 400px) {
    .hexagon {
        width: 80px;
        height: 46px;
        font-size: 0.7rem;
        margin: 0 2px;
    }
    
    .hexagon::before, .hexagon::after {
        border-left: 40px solid transparent;
        border-right: 40px solid transparent;
    }
    
    .hexagon::before {
        border-bottom: 23px solid;
    }
    
    .hexagon::after {
        border-top: 23px solid;
    }
    
    .hexagon-row.middle {
        margin: -23px 0;
    }
    
    .icon-group {
        max-width: 100px;
    }
}