/* 企业文化页面样式 */
.culture-banner {
    height: 400px;
    background: linear-gradient(180deg, #EBF3FF 0%, #F7FAFF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    text-align: center;
}

.culture-banner-content h1 {
    font-size: 48px;
    color: #1D2129;
    margin-bottom: 20px;
    font-weight: 600;
}

.culture-banner-content p {
    font-size: 24px;
    color: #4E5969;
}

.culture-section {
    padding: 80px 0;
    padding-bottom: 0;
    background: #f4faff;
}

.culture-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* display: grid; */
    grid-template-columns: repeat(2, 1fr);
    /* gap: 40px; */
}

.culture-item {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    /* justify-content: center; */
    text-align: center;
    height: 240px;
    padding: 30px 0;
    background: #FAFCFF;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.culture-item:nth-child(1) {
    background: url(../assets/culture/vision.png) no-repeat center center;
    background-size: 100% 100%;
}
.culture-item:nth-child(2) {
    background: url(../assets/culture/mission.png) no-repeat center center;
    background-size: 100% 100%;
}

.culture-item h2 {
    width: 300px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #6a5aac;
    /* margin-bottom: 24px; */
    padding-right: 45px;
    padding-left: 90px;
    font-weight: 500;
    border-right: 1px solid rgba(115,93,178,0.8);
}
.culture-item:nth-child(2) h2 {
    color: #0d72aa;
    border-right: 1px solid rgba(13,114,170,0.8);
}

.culture-item p {
    font-size: 26px;
    color: #735db2;
    line-height: 1.6;
    padding-left: 60px;
}
.culture-item:nth-child(2) p {
    color: #0d72aa;
}

/* 发展历程部分 */
.history-section {
    padding: 80px 0;
    background: #FAFCFF;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #1D2129;
    margin-bottom: 60px;
    font-weight: 600;
}

.history-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.history-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E5E6EB;
    transform: translateX(-50%);
}

.history-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.history-year {
    flex: 0 0 120px;
    font-size: 24px;
    font-weight: 600;
    color: #1677FF;
    text-align: right;
    padding-right: 40px;
}

.history-content {
    flex: 1;
    padding-left: 40px;
    position: relative;
}

.history-content::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #1677FF;
    border-radius: 50%;
    transform: translateY(-50%);
}

.history-content h3 {
    font-size: 20px;
    color: #1D2129;
    margin-bottom: 8px;
}

.history-content p {
    font-size: 16px;
    color: #4E5969;
    line-height: 1.6;
}

/* 适配移动端 */
@media screen and (max-width: 768px) {
    .culture-container {
        grid-template-columns: 1fr;
    }

    .culture-item {
        padding: 40px 20px;
    }

    .culture-item h2 {
        font-size: 28px;
    }

    .culture-item p {
        font-size: 20px;
    }

    .history-container::before {
        left: 20px;
    }

    .history-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 40px;
    }

    .history-year {
        text-align: left;
        padding-right: 0;
        margin-bottom: 12px;
    }

    .history-content {
        padding-left: 0;
    }

    .history-content::before {
        left: -26px;
    }
}

.culture-title {
    font-size: 36px;
    color: #1D2129;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.culture-subtitle {
    font-size: 20px;
    color: #4E5969;
    text-align: center;
    margin-bottom: 60px;
}

/* 适配移动端时的标题样式 */
@media screen and (max-width: 768px) {
    .culture-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .culture-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

/* 八大价值观样式 */
.values-section {
    /* padding: 60px 0; */
    background: #f4faff;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.values-center {
    width: 180px;
    height: 180px;
    /* background: #1677FF; */
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    /* 使用多层box-shadow创建三个圆形 */
    /* box-shadow: 
        
        0 0 0 15px #c2e7ff,
        0 0 0 30px #e3ecfb,
        0 0 0 31px #a3b9d6,
        0 0 0 80px rgba(255, 255, 255, 1) */
}

.values-items {
    width: 1000px;  /* 增加整体容器尺寸 */
    height: 1000px;
    margin: 0 auto;
    position: relative;
    /* background: url(../assets/culture/value-item1.png) no-repeat center center;
    background-size: 100% 100%; */
}

.value-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-number {
    font-size: 72px;
    color: rgba(22, 119, 255, 0.1);
    font-weight: bold;
}

.value-content {
    font-size: 26px;
    font-weight: 600;
    color: #1777ff;
}

/* 添加图标容器样式 */
.value-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.value-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* 重新调整八个价值观的位置 */
.item1 { top: 15%; left: 60%; transform: translateX(-50%); }
.item2 { top: 40%; left: 82%; }
.item3 { top: 57%; left: 82%; transform: translateY(-50%); }
.item4 { top: 80%; left: 57%; }
.item5 { top: 80%; right: 52%; transform: translateX(-50%); }
.item6 { top: 57%; right: 82%; }
.item7 { top: 42%; right: 82%; transform: translateY(-50%); }
.item8 { top: 15%; right: 56%; }

.item1 .value-number {
    position: absolute;
    left: 40px;
    bottom: 30px;
}
.item2 .value-number {
    position: absolute;
    left: -20px;
    bottom: 30px;
}
.item3 .value-number {
    position: absolute;
    left: -20px;
    top: 30px;
}
.item4 .value-number {
    position: absolute;
    left: 40px;
    top: 30px;
}
.item5 .value-number {
    position: absolute;
    right: 40px;
    top: 30px;
}
.item6 .value-number {
    position: absolute;
    left: 40px;
    top: 30px;
}
.item7 .value-number {
    position: absolute;
    right: -30px;
    bottom: 30px;
}
.item8 .value-number {
    position: absolute;
    right: 30px;
    bottom: 30px;
}
/* 移动端适配 */
@media screen and (max-width: 768px) {
    .values-items {
        width: 100%;
        height: auto;
    }

    .values-center {
        position: static;
        transform: none;
        margin: 0 auto 30px;
        width: 120px;
        height: 120px;
        font-size: 20px;
        /* 调整移动端的圆形大小 */
        /* box-shadow: 
            0 0 0 15px rgba(255, 255, 255, 0.9),
            0 0 0 30px #e2edff,
            0 0 0 45px #c9e3ff,
            0 0 0 60px #a3b9d6; */
    }

    .values-items::after {
        display: none;
    }

    .value-number {
        font-size: 36px;
    }

    .value-content {
        font-size: 20px;
    }
}

/* 添加触发区域容器 */
.values-triggers-container {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(22deg);
    z-index: 5;
}

/* 修改触发区域样式 */
.value-trigger-area {
    position: absolute;
    width: 200px;
    height: 360px;
    cursor: pointer;
    /* 反向旋转文字，保持文字正常方向 */
    transform-origin: center;
    transform: rotate(-20deg);
    /* 添加调试边框 */
    /* border: 1px solid rgba(255,0,0,0.2); */
}

/* 重新调整8个触发区域的位置，让它们更接近文字 */
.area1 { 
    top: 17%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
}
.area2 { 
    top: 28%; 
    right: 8%; 
    transform: translate(-50%, -50%) rotate(40deg); 
}
.area3 { 
    top: 50%; 
    right: -2%; 
    transform: translate(-50%, -50%) rotate(90deg); 
}
.area4 { 
    bottom: 26%; 
    right: 6%; 
    transform: translate(-50%, 50%) rotate(135deg); 
}
.area5 { 
    bottom: 18%; 
    left: 50%; 
    transform: translate(-50%, 50%); 
}
.area6 { 
    bottom: 26%; 
    left: 26%; 
    transform: translate(-50%, 50%) rotate(45deg); 
}
.area7 { 
    top: 50%; 
    left: 17%; 
    transform: translate(-50%, -50%) rotate(90deg); 
}
.area8 { 
    top: 26%; 
    left: 27%; 
    transform: translate(-50%, -50%) rotate(138deg); 
}

/* 调整背景图片样式 */
.values-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    transition: all 0.5s ease;
}

.values-centre {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    z-index: 3;
}

/* 四大作风部分样式 */
.styles-section {
    padding: 0;
    background: #f4faff;
}

.styles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    /* gap: 60px; */
}

.styles-item {
    width: 260px;
    height: 260px;
    text-align: center;
    transition: all 0.3s ease;
}
.styles-item:hover{
    transform: translateY(-5px);
    /* box-shadow: 0 8px 24px rgba(22, 119, 255, 0.1); */
}

.style-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: #1677FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.style-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.style-item h3 {
    font-size: 24px;
    color: #1D2129;
    font-weight: 500;
}

/* 鼠标悬浮效果 */
.style-item:hover .style-icon {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(22, 119, 255, 0.2);
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .styles-container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .style-item {
        flex: 1 1 40%;
    }

    .style-icon {
        width: 80px;
        height: 80px;
    }

    .style-icon img {
        width: 40px;
        height: 40px;
    }

    .style-item h3 {
        font-size: 18px;
    }
}

/* 十大理念部分样式 */
.concepts-section {
    padding: 80px 0;
    padding-bottom: 100px;
    background: #f4faff;
}

.concepts-container {
    max-width: 1240px;
    margin: 0 auto;
    /* padding: 0 20px; */
    display: flex;
    flex-wrap: wrap;
    
}

.concepts-container-row {

    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.concepts-container-col{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 340px;
    height: 400px;
    padding: 36px;
    padding-top: 46px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: linear-gradient( 180deg, #E9F6FF 0%, #FDFEFF 36%, #FFFFFF 100%);
    border-radius: 24px 24px 24px 24px;
    box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.06);
}
.concepts-container-col img{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
}
.concepts-container-col h3{
    font-size: 28px;
    color: #333333;
    margin-bottom: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    font-weight: 600;
}
.concepts-container-col p{
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    text-align: center;
}
.concepts-container-row-col{
    width: 880px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.concept-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 430px;
    padding: 36px;
    padding-top: 46px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: linear-gradient( 180deg, #E9F6FF 0%, #FDFEFF 36%, #FFFFFF 100%);
    border-radius: 24px 24px 24px 24px;
    box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.06);
}

.concept-item h3 {
    font-size: 28px;
    color: #333333;
    margin-bottom: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    font-weight: 600;
}

.concept-item p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    text-align: center;
}

/* 重新定位每个理念项目，使其成为正方形 */
.concept1 {
    
}

.concept2 {
    width: 340px;

}

.concept3 {
    width: 520px;

}

.concept4 {
    width: 520px;

}

.concept5 {
    width: 340px;

}

.concept6 {
    width: 520px;

}

.concept7 {
    width: 340px;

}

.concept8 {
    width: 340px;

}

.concept9 {
    width: 520px;

}

.concept10 {
    
}

/* 鼠标悬浮效果 */
.concept-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(22, 119, 255, 0.1);
}
/* 鼠标悬浮效果 */
.concepts-container-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(22, 119, 255, 0.1);
}

/* 添加类目选择器样式 */
.category-select {
    width: 100%;
    position: relative;
}

.category-dropdown {
    width: 100%;
    position: relative;
}

.selected-category {
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    border: 1px solid #E5E6EB;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    position: relative;
    color: #86909C;
}

.selected-category::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #86909C transparent transparent transparent;
}

.category-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #E5E6EB;
    border-radius: 4px;
    margin-top: 4px;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-option {
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.category-option:hover {
    background: #F0F7FF;
    color: #1677FF;
}

/* 展开状态 */
.category-dropdown.active .category-options {
    display: block;
}

.category-dropdown.active .selected-category::after {
    transform: translateY(-50%) rotate(180deg);
}
