/* bannerType */
#bannerType {
    height: 518px;
}
.banner__inner {
    padding: 120px 0;
    position: relative;
}
.banner__inner .title {
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    margin-bottom: 40px;
}
.banner__inner .desc {
    font-size: 24px;
    line-height: 36px;
    font-weight: 300;
    margin-bottom: 70px;
}
.banner_btn {
    width: 226px;
    height: 48px;
    background-color: #ff3344;
}
.banner_btn a {
    display: block;
    text-align: center;
    font-size: 18px;
    color: #fff;
    padding: 14px 0;
}
.banner__inner .circle {
    position: absolute;
    right: 5%;
    top: 90px;
    width: 363px;
    height: 363px;
}
.banner__inner .youtube {
    position: absolute;
    right: 0;
    top: 90px;
    width: 270px;
    height: 195px;
}
.banner__inner .ball1 {
    position: absolute;
    left: -15%;
    top: 55%;
    width: 49px;
    height: 49px;
    background-color: #4857ec;
    border-radius: 50%;
}
.banner__inner .ball2 {
    position: absolute;
    left: 0;
    top: 13%;
    width: 18px;
    height: 18px;
    background: #F7E36D;
    border-radius: 50%;
}
.banner__inner .ball3 {
    position: absolute;
    left: 48%;
    top: 55%;
    width: 38px;
    height: 38px;
    background: #2FEFB1;
    border-radius: 50%;    
}
.banner__inner .ball4 {
    position: absolute;
    left: 55%;
    top: 70px;
    width: 19px;
    height: 19px;
    background: #2FEFB1;
    border-radius: 50%;   
}
.banner__inner .ball5 {
    position: absolute;
    left: 60%;
    top: 70%;
    width: 35px;
    height: 35px;
    background: #FF3344;
    border-radius: 50%;
}
.banner__inner .ball6 {
    position: absolute;
    right: -8%;
    top: 65%;
    width: 30px;
    height: 30px;
    background: #4857EC;
    border-radius: 50%;
}

@media (max-width: 1300px) {
    .banner__inner .circle {
        z-index: -2;
    }
    .banner__inner .youtube {
        z-index: -1;
    }
    .banner__inner .ball3 {
        z-index: -1;
    }
    .banner__inner .ball6 {
        display: none;
    }
 }
 @media (max-width: 500px) {
    .banner__inner .title {
        text-align: center;
    }
    .banner__inner .desc {
        word-break: keep-all;
        width: 70%;
        margin: 0 auto 25px;
        z-index: 1;
    }

    .banner_btn {
        margin: 0 auto;
    }
    
 }