.fuxuan-about-company{
    padding: var(--padding-top) 0;
}
.fuxuan-about-company .about-con{
    display: flex;
    gap: 60px;
}
.about-con .about-left{
    flex: 1;
    padding-top: 30px;
}

.about-left .about-con-title{
    color: #0F1F46;
    font-family: var(--font--family);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.about-left .desc-wrap{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 38px;
}
.about-left .desc-wrap .desc-item{
    color: #000;
    font-family: var(--font--family);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.about-left .img-wrap{
    display: flex;
    gap: 30px;
    margin-top: 20px;
}
.about-left .img-wrap img{
    width: 62px;
    aspect-ratio: 31/38;
    object-fit: cover;
}
.about-left .fuxuan-button{
    padding: 10px 19px 0 59px;
    margin-top: 40px;
    display: inline-flex;
}
.about-left .fuxuan-button::after{
    border: 1px solid var(--second-color);
}
.about-left .fuxuan-button::before{
    background: var(--second-color);
}
.about-left .fuxuan-button:hover{
    padding: 10px 29px 10px 39px;
}
.about-left .fuxuan-button .icon{
    margin-left: 13px;
}

.about-con .about-right{
    width: 650px;
    position: relative;
    padding: 20px 20px 0 0;
}
.about-right .video-play{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.47);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.about-right a img{
    width: 100%;
    aspect-ratio: 63/60;
    object-fit: cover;
}
.about-con .about-right a .img-bg{
    position: absolute;
    width: calc(100% - 20px);
    aspect-ratio: 63/60;
    top: 0;
    right: 0;
    background: var(--second-color);
    z-index: -1;
}

@media screen and (max-width: 1400px) {
    .about-con .about-left,
    .about-con .about-right{
        width: 50%;
    }
}
@media screen and (max-width: 1200px) {
    .fuxuan-about-company .about-con{
        gap: 20px;
    }
    .about-left .about-title{
        font-size: 32px;
    }
    .about-left .desc-wrap,
    .about-left .fuxuan-button{
        margin-top: 20px;
    }
    .about-left .about-con-title{
        font-size: 32px;
    }
}
@media screen and (max-width: 992px) {
    .fuxuan-about-company .about-con{
        flex-direction: column;
    }
    .about-con .about-left,
    .about-con .about-right{
        width: 100%;
    }
    .about-left .img-wrap{
        flex-wrap: wrap;
        gap: 20px;
    }
    .about-left .about-con-title{
        font-size: 24px;
    }
    .about-con .about-left{
        padding-top: 0;
    }
}