/**
 * qiye.css - 关于企业页面样式
 */

/* 全局重置 */
* { margin: 0; padding: 0; box-sizing: border-box; }
a {
    text-decoration: none;
    color: inherit;
    outline: none;
}
a:hover, a:focus {
    text-decoration: none;
    color: inherit;
}
body {
    color: #333;
    background-color: #fff;
    line-height: 1.8;
    overflow-x: hidden;
}

/* --- 容器 --- */
.container {
    width: 72vw;
    margin: 0 auto;
    position: relative;
}

/* --- 核心修改：这是一个复用类，只给需要居中的板块使用 --- */
.w-1300-center {
    width: 72vw;
    margin: 0 auto;
    position: relative;
}

/* ----- 集团简介与Grid ----- */
.intro-section { margin-bottom: 80px; padding-top: 0px; }
.section-title { font-size: 24px; color: #333; margin-bottom: 50px; position: relative; display: inline-block; }
.highlight-text { position: relative; display: inline-block; }
.highlight-text::after { content: ''; display: block; width: 100%; height: 3px; background: #e63935; position: absolute; bottom: -10px; left: 0; }
.intro-content { display: flex; align-items: center; position: relative; }
.intro-text-box { width: 65%; background-color: #f6f6f6; padding: 50px 100px 80px 30px; position: relative; box-shadow: 0 0 20px rgba(0,0,0,0.03); border-radius: 8px; z-index: 1; }
.intro-text-box p { font-size: 13px; color: #555; font-weight: 700; text-align: justify; line-height: 1.9; text-indent: 2em; }
.highlight-red { color: #e63935; font-weight: bold; }
.more-btn { position: absolute; bottom: 35px; right: 100px; display: flex; align-items: center; font-size: 12px; cursor: pointer; }
.more-box { background-color: #f04e45; color: white; padding: 4px 10px; font-size: 12px; margin-right: 6px; }
.more-arrow { color: #f04e45; letter-spacing: -1px; }
.intro-media { width: 65%; margin-left: -70px; z-index: 2; position: relative; }
.video-player-mockup { width: 100%; height: 360px; background: radial-gradient(circle at center, #ffffff 0%, #e0e0e0 60%, #cfcfcf 100%); position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; overflow: hidden; }
.video-player-mockup::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(120deg, rgba(255,255,255,0) 40%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 60%); opacity: 0.3; pointer-events: none; }
.vp-logo-area { text-align: center; z-index: 2; transform: translateY(-10px); }
.vp-title-en { font-family: "Times New Roman", serif; font-size: 72px; letter-spacing: 2px; background: linear-gradient(to bottom, #d63333 0%, #8a1c1c 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 5px; }
.vp-title-cn { font-size: 20px; color: #333; font-weight: bold; letter-spacing: 1px; text-shadow: 0 1px 2px rgba(255,255,255,0.8); }
.vp-subtitle { font-size: 11px; color: #666; margin-top: 5px; font-family: Arial, sans-serif; }
.vp-controls { position: absolute; bottom: 0; left: 0; right: 0; height: 40px; background-color: rgba(0,0,0,0.85); display: flex; align-items: center; padding: 0 15px; color: #fff; z-index: 3; }
.vp-progress-bar { flex: 1; height: 4px; background: #333; margin: 0 15px; position: relative; }
.vp-progress-fill { width: 15%; height: 100%; background: #d32f2f; }

.grid-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 25px; margin-bottom: 60px; }

/* ===== 修改后的卡片布局 - 主图标在文字和箭头之间居中 ===== */
.link-card { 
    height: 150px; 
    position: relative; 
    cursor: pointer; 
    transition: transform 0.3s; 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    display: flex; 
    align-items: center; 
    padding: 0 35px; 
    color: white; 
}

.link-card:hover { transform: translateY(-5px); color: white; }
.bg-1 { background-image: url('../img/qybg_1.png'); background-color: #666; }
.bg-2 { background-image: url('../img/qybg_2.png'); background-color: #777; }
.bg-3 { background-image: url('../img/qybg_3.png'); background-color: #888; }

.card-title { 
    font-size: 26px; 
    letter-spacing: 1px; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.2); 
    white-space: nowrap; 
}

.card-icon-area { 
    display: flex; 
    align-items: center; 
    flex: 1;
    justify-content: space-between;
    margin-left: 20px;
}

.main-icon-img { 
    height: 48px; 
    width: auto; 
    display: block;
    margin: 0 auto;
}

.arrow-icon-img { 
    width: 36px; 
    height: 36px; 
    display: block;
    flex-shrink: 0;
}

/* =========================================
   联系板块 - 背景图片完整显示版本
   ========================================= */

.contact-full-bleed {
    width: 100%; 
    height: 280px;
    margin-bottom: 60px;
    position: relative;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0; 
    padding-right: calc((100vw - 72vw) / 2);
}

.contact-full-bleed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100vw - (100vw - (72vw - 15px)) / 2);
    height: 100%;
    background-color: #f1f2f4;
    background-image: url('../img/qybg_4.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}

.contact-side {
    padding-left: 300px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    z-index: 5;
    position: relative;
}

.contact-capsule { 
    display: inline-flex; 
    align-items: center; 
    background-color: #fff; 
    border-radius: 4px 50px 50px 4px; 
    padding: 0; 
    box-shadow: 0 3px 10px rgba(0,0,0,0.03); 
    margin-bottom: 25px;
    width: 150px;
    height: 40px;
}
.red-line-mark {
    width: 4px;
    background-color: #e63935;
    margin-right: 15px; 
    margin-left: 0;
    align-self: stretch; 
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.contact-capsule i { color: #888; font-size: 16px; margin-right: 10px; }
.contact-capsule span { font-size: 16px; color: #666; font-weight: 500; }

.contact-info p { 
    font-size: 13px; color: #444; line-height: 2.1; margin-bottom: 0; 
    font-weight: 500;
}

.join-side {
    display: flex; 
    align-items: center; 
    z-index: 5;
    position: relative;
}
.join-text { 
    font-size: 28px; color: #556; letter-spacing: 2px; font-weight: 400;
    display: flex; align-items: center; gap: 15px; cursor: pointer;margin-right: 16vw;
}
.join-arrow { font-family: sans-serif; font-weight: 300; }

/* 底部社交条 - 使用本地图标 */
.social-bar { 
    text-align: center; 
    padding: 30px 0 50px 0;
}

.social-icons { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 35px; 
    margin-bottom: 0;
}

/* 使用图片图标 */
.social-icon-img { 
    height: 32px; 
    width: auto; 
    cursor: pointer; 
    transition: transform 0.2s;
    display: block;
}
.social-icon-img:hover { 
    transform: scale(1.1); 
}

/* 全屏图片显示 */
.social-full-banner { 
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0;
}

.social-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* 社交图标浮动框样式 */
.social-float-box {
    position: fixed;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-float-box:hover {
    opacity: 1;
}

.float-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 10px;
    border: 1px solid #eee;
    display: inline-block;
    overflow: hidden;
}

.float-image {
    display: block;
    border-radius: 4px;
}

.float-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    transition: transform 0.3s ease;
}

/* 默认箭头样式（指向下方） */
.social-float-box:not(.float-bottom) .float-arrow {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0 8px;
    border-color: #fff transparent transparent transparent;
}

/* 底部箭头样式（指向上方） */
.social-float-box.float-bottom .float-arrow {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent #fff transparent;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .float-content {
        max-width: 150px;
        max-height: 150px;
        padding: 8px;
    }
    
    .float-arrow {
        border-width: 6px 6px 0 6px;
    }
    
    .social-float-box.float-bottom .float-arrow {
        border-width: 0 6px 6px 6px;
    }
}

@media (max-width: 480px) {
    .float-content {
        max-width: 120px;
        max-height: 120px;
        padding: 6px;
    }
    
    .float-arrow {
        border-width: 5px 5px 0 5px;
    }
    
    .social-float-box.float-bottom .float-arrow {
        border-width: 0 5px 5px 5px;
    }
}

