@charset "utf-8";

#sec-1 .wrap{
    display: flex;
    justify-content: space-between;
    gap: 10rem;
}

#sec-1 .left{
    width: 50%;
    min-width: 600px;
}

#sec-1 .left .body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3rem;
    line-height: 1.4;
    letter-spacing: -1px;
    margin-bottom: 3rem;
}
#sec-1 .left .body .top{
    font-size: 2rem;
}
#sec-1 .left .body .top p{
    font-weight: 700;
}
#sec-1 .left .body .top span{
    display: block;
    color: #666;
    margin-top: 20px;
}

#sec-1 .left .body .bot{
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.5;
}
#sec-1 .left .ceo{
    text-align: right;
    font-size: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}
#sec-1 .left .ceo .line{
    flex-grow: 1;
    height: 1px;
    background: #ccc;
}
#sec-1 .left .ceo span{
    font-weight: 700;
}

#sec-1 .right{
    width: 45%;
    margin-top: 2.5rem;
    border-radius: 35px;
    overflow: hidden;
}
#sec-1 .right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* sec-2 */
#sec-2{
    margin-top: 15rem;
}
#sec-2 .sec_title{
    position: relative;
}
#sec-2 .kv_mark{
    position: absolute;
    bottom: 0;
    right: -50px;
    filter: brightness(0.5);
    max-width: 30%;
}

#sec-2 .content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}
#sec-2 .content .biz_intro{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5rem;
    /* background: var(--box-bg); */
    border-radius: var(--bdrs);
    border: 1px solid var(--po-color);
    width: 49%;
    box-sizing: border-box;
    padding: 25px;
    flex-grow: 1;
}
#sec-2 .content .biz_intro .top span{
    font-size: 2rem;
    font-weight: 600;
    color: var(--po-color);
}
#sec-2 .content .biz_intro .top p{
    margin-top: 5px;
    font-size: 2.4rem;
    font-weight: 700;
}
#sec-2 .content .biz_intro .bot{
    /* font-weight: 300; */
    line-height: 1.4;
    width: 95%;
}
#sec-2 .content .biz_intro .bot span{
    display: block;
}

@media screen and (max-width:1510px){
    #sec-2 .content .biz_intro .bot span{
        display: inline;
    }

    #sec-2 .content .biz_intro .bot{
        word-break: keep-all;
    }
}/* max 1510 */

@media screen and (max-width:970px){
    #sec-1 .wrap{
        flex-direction: column;
        gap: 4rem;
    }
    #sec-1 .left{
        width: 100%;
        min-width: auto;
    }
    #sec-1 .right{
        margin-top: 0;
        width: 100%;
    }
    #sec-2 .content{
        flex-direction: column;
    }
    #sec-2 .content .biz_intro{
        width: 100%;
    }
    #sec-2 .content .biz_intro .bot span{
        display: block;
    }

    
}

@media screen and (max-width:600px){
    /* #sec-1 .left .body .top span{
        display: inline;
    } */
}

@media screen and (max-width:500px){
    #sec-2 .content .biz_intro .bot span{
        display: inline;
    }
    #sec-1 .right{
        height: 200px;
    }
}