/* 公司简介区域样式 */
.about-section {
    padding: 50px 0;
    background-color: transparent;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    text-align: left;
    max-width: 1600px;  /* 与全局容器宽度一致 */
    margin: 0 auto;
    padding: 0;  /* 移除内边距 */
    box-sizing: border-box;
}

.about-slogan {
    flex: 0 0 25%;  /* 占据1/4宽度 */
    color: var(--primary-color);
    padding-top: 0;
    padding-left: 20px;
}

.about-slogan p {
    font-size: 24px;  /* 增大字体大小 */
    line-height: 1.6;  /* 调整行高 */
    margin-bottom: 15px;
    color: var(--primary-color);  /* 使用主题色 */
    font-weight: 300;
    font-style: italic;
}

.about-slogan p:last-child {
    font-size: 18px;  /* 第二行稍小一些 */
    color: #666;  /* 第二行保持灰色 */
    line-height: 1.8;
}

.about-text {
    flex: 0 0 75%;  /* 占据3/4宽度 */
    padding-left: 40px;
    padding-right: 20px;
    border-left: 1px solid transparent;  /* 将分割线改为透明色 */
    position: relative;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
    text-align: left;
}

.about-text .btn-more {
    margin-top: 25px;
    float: right;  /* 添加右浮动 */
}

/* 响应式调整 */
@media (max-width: 992px) {
    .about-text {
        border-left: none;  /* 移动端移除分割线 */
        border-top: 1px solid transparent;  /* 移动端的顶部分割线也改为透明 */
    }
    
    .about-text .btn-more {
        float: none;  /* 在移动端取消右浮动 */
        display: inline-block;
    }
}

.btn-more {
    display: inline-block;
    padding: 10px 35px 10px 25px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.btn-more::after {
    content: '→';
    position: absolute;
    right: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.btn-more:hover {
    background-color: var(--primary-color);
    color: #fff;
    padding-right: 45px;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1);
}

.btn-more:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* 响应式适配 */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }

    .about-text {
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .btn-more {
        padding: 8px 30px 8px 20px;
        font-size: 13px;
    }

    .btn-more:hover {
        padding-right: 40px;
    }

    .btn-more::after {
        right: 18px;
    }
}

/* 响应式调整 */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-slogan {
        flex: none;
        width: 100%;
        text-align: center;
        padding: 20px 0;
    }
    
    .about-text {
        flex: none;
        width: 100%;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid transparent;  /* 移动端的顶部分割线也改为透明 */
        padding-top: 30px;
        text-align: center;  /* 移动端保持居中 */
    }

    .about-slogan p {
        font-size: 22px;
    }
    
    .about-slogan p:last-child {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .about-slogan p {
        font-size: 20px;
    }
    
    .about-slogan p:last-child {
        font-size: 15px;
    }
}