/* 关于我们部分 */
.about {
    background: linear-gradient(to right, #39c8dd, #4cd4a7);
    padding: 40px 0 60px;
    color: #fff;
    position: relative;
    overflow: visible;
}

.about-content-home {
    
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;

    width: 100%;
    position: relative;
}

.about-left {
 
 
    width: 50%;
}

.about-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-title span {
    font-size: 24px;
    opacity: 0.8;
    margin-left: 10px;
}

.about-desc {
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.about-more {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

.about-more:hover {
    background: rgba(255, 255, 255, 0.3);
}

.about-right {
    position: absolute;
    right: 0;
    bottom: -300px;
    width: 500px !important;
    height: 500px !important;
    z-index: 1;
}

.about-info {
    text-align: right;
}

.about-year {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.about-slogan {
    font-size: 20px;
}

.about-image {
    position: absolute;
    right: 0;
    bottom: -50px;
    width: 600px;
    height: auto;
    z-index: 3;
}

/* 选择智盛部分 */
.choose-us {
    padding: 40px 0 60px;
    background: #fff;
    position: relative;
    margin-top: 40px;
}

.choose-content {
    width: 600px;
    margin-left: calc((100% - 1200px) / 2 + 15px);
}

.choose-subtitle {
    color: #999;
    font-size: 20px;
    margin-bottom: 10px;
}

.choose-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.choose-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.choose-more {
    display: inline-block;
    padding: 10px 30px;
    background: #39c8dd;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.choose-more:hover {
    background: #33b5c8;
}

/* 响应式调整 */
@media screen and (max-width: 1200px) {
    .choose-content {
        margin-left: 15px;
        width: auto;
        max-width: 600px;
    }
}

@media screen and (max-width: 768px) {
    

    .choose-us {
        margin-top: 0;
    }

    .about-content-home {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-left {
        width: 100%;
        position: relative;
        bottom: auto;
        background-color: transparent;
    }
    .about-right {
        display: none;
        width: 100%;
         
        bottom: auto;
        background-color: transparent;
    }

    .about-image {
        position: relative;
        width: 100%;
        max-width: 300px;
        margin: 20px 0;
    }

    .about-year, .about-slogan {
        text-align: center;
    }

    .choose-content {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .choose-title, .choose-subtitle, .choose-desc {
        text-align: center;
    }

    .choose-more {
        margin-top: 20px;
    }
} 