.about_one {
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about_one .about_image {
    position: relative;
    flex: 0 0 500px;
    height: 510px;
}

.about_one .about_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_one .about_logo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 180px;
    background-color: #7a2b9e;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.about_one .about_logo h3 {
    font-size: 22px;
    font-weight: bold; opacity: 0.65;
    margin-bottom: 30px;
}

.about_one .about_logo p {
    font-size: 36px; line-height: 1.2;
    text-align: center; font-weight: 600;
}

.about_one .about_content {
    flex: 1;font-size: 16px; line-height: 1.8;
}
.about_one .about_content p ,.about_one .about_content div {  font-size: 16px;}

.about_one .about_content img { max-width: 100%; height: auto; display: block; margin: 0 auto;}

.about_one .about_content h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    line-height: 2;
}

.about_one .about_content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 6px;
    height: 30px;
    background-color: #f7d248;
}

.about_one .about_content p {
    font-size: 18px;
    line-height:2;
    color: #555;
    margin-bottom: 22px;
}

.about_two {
    margin: 60px auto;
    padding: 40px 20px;
}

.about_two h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    padding-left: 20px;
}

.about_two h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: -5px;
    width: 6px;
    height: 30px;
    background-color: #f7d248;
}

.project-distribution {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.map-container {
    flex: 0 0 50%;
    height: 620px;
    position: relative;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stats-container {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -25px;
    top: 20px;
    color: #f7d248;
    font-size: 20px;
}

.stat-value {
    font-size: 36px;
    font-weight: bold;
    color: #f7d248;
    margin-bottom: 10px;
    line-height:1.6;
}
.stat-value span {
    font-size: 22px;
    font-weight: bold;
    color: #f7d248;
   
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.stat-note {
    position: absolute;
    bottom: -30px;
    right: 0;
    font-size: 14px;
    color: #999;
}

.culture_one {
    margin: 40px auto 80px;
    padding: 20px;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.culture-item {
    position: relative;
    height: 600px;
    overflow: hidden;
    cursor: pointer;
}
.culture-item:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 64%, #000 100%, #000 0);
    position: absolute;
    opacity: 0.86;
    bottom: 0;
    left: 0;
    right: 0;
}
.culture-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.culture-item:hover img {
    transform: scale(1.1);
}

.culture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(122, 43, 158, 0.7);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    box-sizing: border-box;
}

.culture-item:hover .culture-overlay {
    opacity: 1;
}

.culture-title {
    font-size: 32px;
    color: white; font-weight: 600;
    margin-bottom: 35px;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.culture-item:hover .culture-title {
    transform: translateY(0);
}

.culture-description {
    font-size: 18px;
    color: white;
    line-height:2;text-align:justify;
text-align-last: center;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.2s;
}

.culture-item:hover .culture-description {
    transform: translateY(0);
}

.culture-text {
    position: absolute;
    bottom: 40px; width: 100%;
    text-align: center;   
    color: white;
    font-size: 24px;
    z-index: 3;
    transition: opacity 0.5s ease;
}

.culture-item:hover .culture-text {
    opacity: 0;
}


.team_one {   margin: 40px auto 80px;}
.team-member {  display: flex;   gap: 40px;   margin-bottom: 60px;    align-items: flex-start;}
.team-member:last-child {   margin-bottom: 0;}
.team-photo {    flex: 0 0 200px;   height: 280px;   background-color: #f5f5f5;    display: flex;
    align-items: center;   justify-content: center;}
.team-photo img {   width: 100%;   height: 100%;   object-fit: cover;}
.team-info {   flex: 1;   position: relative;   padding-left: 30px;}
.team-info::before {   content: '';  position: absolute;   left: 0;   top: 5px;   width: 6px;
    height: 54px;  background-color: #f7d248;}
.team-name { font-size: 24px; font-weight: bold;color: #333; margin-bottom: 5px;  line-height: 1.4;
}
.team-position {  font-size: 18px; color: #666;line-height: 1.2;  margin-bottom: 20px;}
.team-bio { font-size: 18px; line-height: 1.8; color: #555;}



.caseList{width: 100%;overflow: hidden;}
.caseList ul{display: flex;flex-wrap: wrap;gap: 35px;}
.caseList ul li{flex: 1 0 calc(25% - 35px);margin-bottom: 20px;}
.caseList ul li a{display: block;}
.caseList ul li a .pic{width: 100%;height: 0;padding-bottom: 58.97%;position: relative;overflow: hidden;}
.caseList ul li a .pic em,
.caseList ul li a .pic b{position: absolute;left: 0;top:0;width: 100%;height: 100%;}
.caseList ul li a .pic em{background-repeat: no-repeat;background-position: center;background-size: cover;}
.caseList ul li a .pic b{background: rgba(0,0,0,0.4);opacity: 0;}
.caseList ul li a:hover .pic b{opacity: 1;}
.caseList ul li a h5{padding: 0 10px;height: 60px;background: #ebebeb;text-align: center;font-size: 18px;color: #1a1a1a;font-weight: normal;line-height: 60px;}
.caseList ul li a:hover h5{color: #fff;background: #783498;}

.caseList.prodList{padding-top: 20px;}

.list_news{padding-top: 50px;}







@media screen and (max-width: 768px){
.crumb ul li a {  line-height:38px;   font-size: 15px;}
.about_one {  margin: 20px auto;  padding: 0 0;  gap: 20px;flex-direction: column;box-sizing: border-box;}
.about_one .about_image { flex:1;}
.project-distribution {flex-direction: column;}
.about_one .about_logo p {  font-size:28px;}
.about_one .about_logo h3 { font-size:16px;margin-bottom: 20px;}
.about_one .about_logo {width: 150px;   height: 100px;}
.about_one .about_content h2 { font-size: 24px;}
.about_one .about_content , .about_one .about_content p ,.about_one .about_content div {  font-size: 16px;}

.about_two {  margin: 30px auto;  padding: 20px 20px;}
.stats-container { flex-direction: column;}
.stat-item:not(:last-child)::after { display: none;}
.culture-grid {grid-template-columns: repeat(1, 1fr);gap:15px;}
.culture_one { padding: 0;}
.culture-item {height: 400px;}

  .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .team-photo {
        flex: 0 0 150px;
        width: 150px;
        height: 200px;
    }
    
    .team-info {
        padding-left: 0;
        margin-top: 10px;
    }
    
    .team-info::before {
        display: none;
    }
    
    .team-name {
        font-size: 20px;
    }
    
    .team-position {
        font-size: 14px;
    }
    
    .team-bio {
        font-size: 14px;
    }

.caseList ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    flex-direction: column;
}
.caseList ul li {margin-bottom: 0px;}



}




@media (max-width: 480px) {
    .team-photo {
        flex: 0 0 120px;
        width: 120px;
        height: 160px;
    }
    
    .team-name {
        font-size: 18px;
    }
}

/* 招聘页面样式 */
.job_box {
    margin: 40px auto 80px;
    padding: 20px;
}

.job-intro {
    margin-bottom: 60px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.job-intro h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.job-intro h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 30px;
    background-color: #f7d248;
}

.job-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.job-list {
    margin-top: 40px;
}

.job-item {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.job-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    background: #783498;
    padding: 20px 25px;
}

.job-title {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.job-salary {
    font-size: 22px;
    color: #f7d248;
    font-weight: bold;
}

.job-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

.job-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-info-label {
    font-size: 18px;
    color: #666; font-weight: 600;
}

.job-info-value {
    font-size: 18px;
    color: #333;font-weight: 600;
}

.job-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}
.job-description p { font-size: 18px; color: #000; font-weight: 600;}
.job-requirements {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.job-requirements h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.job-requirements ul {
    list-style: disc;

}

.job-requirements li {

}

.job-apply {
    text-align: right;
}

.apply-btn {
    display: inline-block;
    padding: 20px 40px;
    background-color: #f39800;
    color: white;
    font-size: 22px;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background-color: #8b28ba;
    transform: translateY(-2px);
    color: #fff;
}

.application-guide {
    margin-top: 60px;
    padding: 40px;
    background: #f9f9f9 url('../images/job-bg.png') no-repeat center center;
    border-radius: 8px;
    background-size: cover;
}

.application-guide h2 {
    font-size: 24px; font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px; line-height: 2;
}

.application-guide h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 30px;
    background-color: #f7d248;
}

.application-guide p {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 5px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .job_box {
        padding: 10px;
    }
    
    .job-intro,
    .application-guide {
        padding: 20px;
    }
    
    .job-item {
        padding: 20px;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .job-info {
        gap: 15px;
    }
    
    .job-info-item {
        flex: 1 0 45%;
    }
    .application-guide p {
    font-size: 14px;
    line-height: 1.6;}
}

@media (max-width: 480px) {
    .job-info-item {
        flex: 1 0 100%;
    }
    
    .job-intro h2,
    .application-guide h2 {
        font-size: 20px;
    }
    
    .job-title {
        font-size: 18px;
    }
    
    .job-salary {
        font-size: 16px;
    }
}
