.intro  {
    width: 100%;
    align-items: center;
    background-color: #f0f4f8; /* 背景色，可以根据需要调整 */
    position: relative;
    overflow: hidden; /* 隐藏斜角溢出部分 */
}

/* 左侧内容区域 */
.intro .content {
    width: 80%;
    max-width: 1440px;
    margin: 0 auto;
    padding:2.8rem 0 2.8rem 0;
    position: relative;
    z-index: 2;
}

.intro .white-panel{
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* 白色，部分透明 */
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% -60%,  /* 右下角 Y 轴 80% 位置开始剪切 */
        70% 100%,  /* 剪切点向左移动，形成斜角 */
        0 100%
      );
    z-index: 2;
}
.intro .content h2 {
    margin-bottom: 20px;
    text-align: center;
    font-weight: bolder;
    width: 80%;
}

.intro .content p {
    line-height: 2;
    color: #333;
    text-indent: 2em;
    text-align: justify;
    width: 80%;
}

@media screen and (max-width: 1024px) {
    .intro .white-panel {
        clip-path: none;
    }
    .intro .content h2,.intro .content p{
        width: 100%;
    }
}
/* ---------------------------------- 企业文化 ---------------------------------- */
.company-intro .culture {
    display: flex;
    justify-content: space-between;
}
.company-intro .culture .item{
    display: flex;
    align-items: self-start;
    width:29.7%;
    color: #666666;
    line-height: 0.93rem;
}
.company-intro .culture .item .icon{
    flex-shrink: 0;
    width: 1.5rem;
    min-height: 1.5rem;
    margin-right: 0.7rem;
    object-fit: contain;
}
.company-intro .culture .item .text {
    /* max-width: 200px; */
    margin-left: 1rem;
    text-align: justify;
    
}
.company-intro .culture .item .text .tit{
    font-weight: bolder;
    color: #222222;
    margin-bottom: 8px; 
}

@media screen and (max-width: 760px) {
    .company-intro .culture {
        overflow: hidden;
        display: block;
    }
    .company-intro .culture .item {
        width: 49%;
        float: left;
        margin-bottom: 1rem;
    }
    .company-intro .culture .item:nth-child(3) {
        width: 100%;
    }
    .company-intro .culture .item:last-child {
        margin-bottom: 0;
    }
    .company-intro .culture .item .icon{
        width: 1rem;
        min-height: 1rem;
        margin-right: 0.4rem;
    }
}