
/* 正文容器 */
.case-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 内容区块通用样式 */
.content-section {
    margin-bottom: 50px;
    padding: 50px 60px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: var(--text-color);
}

.content-section:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    position: relative;
    padding-left: 25px;
    margin: 40px 0  20px;
}

.section-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 35px;
    background-color: var(--theme-color);
}
.section-title2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-left: 25px;
    color: var(--bold-color);
    position: relative;

}
.section-title2:before{
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 16px solid var(--theme-color);
    content: '';
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}


    /* 应用场景与客户群体 */

.application-scenarios .section-title {
    color: var(--bold-color);
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.scenario-card {
    background: white;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.scenario-card:hover {
    transform: translateY(-5px);
}

.scenario-card h4 {
    color: #28a745;
    margin-top: 0;
}

.customer-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.customer-tag {
    background-color: #e9ecef;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}
.triangle-icons {
    margin-bottom: 20px ;
}

.triangle-icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid var(--theme-color); /* 请替换为实际主题色 */
    margin-right: 16px;
}
.triangle-icon:nth-child(2){
    border-left: 20px solid rgb(208 40 40 / 70%);
}
.triangle-icon:nth-child(3){
    border-left: 20px solid rgb(208 40 40 / 40%);
}.triangle-icon:nth-child(4){
     border-left: 20px solid rgb(208 40 40 / 30%);
 }
.other-section{
    padding: 20px 15px;
}
.other-section a{
    color: var(--text-color);
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
    position: relative;
}
.other-section .line{
    margin: 20px 0 30px;
}
.case-zixun{
    height: 48px;
    background: linear-gradient( 180deg, #EE2E2E 0%, #C1251D 100%);
    border-radius: 54px;
    border: 1px solid #FFF4F4;
    line-height: 48px;
    width: 60%;
    margin:  0 auto;
}
.case-zixun a{
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
    text-align: center;
}
.other-section a:hover{
    color: var(--theme-color);
}
.case-zixun a:hover{
    color: white;
}

/*.other-section a::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid currentColor;
}*/
/* 方案简介 */
.solution-intro {
    background-color: #F5F8FB;
    color: var(--bold-color);
    text-align: justify;
    line-height: 2;
    padding: 20px 30px;
    position: relative;
}
.solution-intro p{
    margin: 0;
}
.line{
    border-top: 1px solid #E4E4E4;
    display: block;
    margin: 50px 0 ;
}
.solution-intro:before{
    position: absolute;
    width: 4px;;
    height: 100%;
    left: 0;
    top: 0;
    content: '';
    background-color: var(--theme-color);
}
.solution-intro strong{
    color: var(--theme-color);
}

.solution-intro .section-title {
     color: var(--bold-color);
}


.intro-text img{
    width: 90%;
    display: block;
    margin: 30px auto;
}
.intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.intro-text {
    flex: 1;
    min-width: 300px;
    line-height: 2;
}

.intro-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.intro-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-box {
    background-color: #e3f2fd;
    border-left: 4px solid #007bff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

/* 关于中科可控 */
.about-company {
    color: var(--text-color);
}


.company-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background-color:#F6F9FC;
    padding: 24px;
    border: 2px dashed rgb(93 93 93 / 30%);
    margin-top: 50px;
}

.company-info {
    flex: 2;
    min-width: 300px;
}

.company-logo {
    flex: 1;
    min-width: 200px;
    text-align: center;
    align-self: center;
    height: 256px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: rgba(255,255,255,0.86);
    border-radius: 12px;
    position: relative;
}

.company-logo img {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.advantages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.advantage-icon {
    font-size: 24px;
    color: #ffd43b;
}

/* 响应式设计 */
@media (max-width: 768px) {

    .intro-text img{
        width: 100%;
    }
    .content-section {
        padding: 20px;
    }

    .section-title{
        font-size:20px ;
        padding-bottom: 10px;
        padding-left: 0;
    }
    .company-info{
        min-width: auto;
    }
    .company-logo{
        margin: 30px 0;
    }
    .scenario-grid,
    .advantages {
        grid-template-columns: 1fr;
    }

    .intro-content,
    .company-details {
        flex-direction: column;
    }
    .section-title::after {
        bottom: 0;
        width: 60px;
        height: 3px;
        top: auto;
    }
    .triangle-icon{
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 14px solid var(--theme-color);
        margin-right: 10px;
    }
    .triangle-icon:nth-child(2){
        border-left: 14px solid rgb(208 40 40 / 70%);
    }
    .triangle-icon:nth-child(3){
        border-left: 14px solid rgb(208 40 40 / 40%);
    }
    .triangle-icon:nth-child(4){
        border-left: 14px solid rgb(208 40 40 / 30%);
    }
}