/*banner*/
.home-banner-section {
    display: flex;
}
.home-banner-logo {
    margin: 0 auto;
    text-align: center;
    padding: 40px 0px;
}
.logo-overlay {
    background: url(/images/logo_overlay.jpg) no-repeat;
}
.home-banner-content {
    position: relative;
}
.home-banner-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url(/images/color-02.png) no-repeat;
    height: 289px;
    /* transform: translateY(15px);
    transition: all .3s; */
}
.home-banner-content:hover .home-banner-text {
    background: url(/images/color-01.png) no-repeat;
}
.home-banner-text h3 {
    font-size: 24px;
    color: #fff;
    padding-bottom: 20px;
    text-align: center;
    transform: translateY(30px);
    transition: all .3s;
}
.home-banner-text a {
    font-size: 32px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(30px);
    transition: all .3s;
}
.home-banner-content:hover .home-banner-text h3,
.home-banner-content:hover .home-banner-text a {
    transform: translateY(0px);
}
.home-banner-text i {
    font-size: 40px;
}

@media (max-width: 1023px) {
    .home-banner-section {
        flex-direction: column;
        max-width: 100%;
    }
    .home-banner-wrap {
        max-width: 100%;
    }
    .home-banner-content img {
        width: 100%;
    }
    .home-banner-text h3 {
        font-size: 18px;
        padding-bottom: 0px;
    }
    .home-banner-text a {
        font-size: 24px;
    }
}
/*company*/
.home-company-section {
    position: relative;
}
.home-company-section a.linkSrc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.home-company-section p {
    font-size: 16px;
    color: #fff;
    position: absolute;
    bottom: 0;
    background-color: #325cc7;
    width: 100%;
    text-align: center;
    padding: 12px 0px;
}
.home-company-section p a {
    color: #dbdada;
}
@media (max-width: 1023px) {
    .home-company-section a img {
        width: 60px;
    }
}
/*video模态框*/
#videoModal .modal-dialog {
    max-width: 1187px;
    width: 1187px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
}
#videoModal .modal-dialog .modal-content {
    background: 0 0;
    border: none;
    box-shadow: none;
}
#videoModal .modal-dialog .modal-content .modal-header {
    border: none;
    padding: 0 0 10px;
    background: none;
}
#videoModal .modal-dialog .modal-content .modal-body {
    padding: 0;
}
#videoModal .modal-dialog .modal-content .modal-body iframe {
    width: 1187px;
    height: 548px;
}
#videoModal .modal-dialog .modal-content .modal-header button i {
    color: #fff;
    font-size: 36px;
}
.modal.in {
    background-color: rgba(51,51,51,.6);
}
@media (max-width: 1024px){
    #videoModal .modal-dialog .modal-content .modal-body iframe {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }
}