.container {
    width: 100%;
}

/* bannerBox */

.container .bannerBox {
    /* background: linear-gradient(135deg, #3a86ff 0%, #5e60ce 100%); */
    color: white;
    padding: 80px 0;
    text-align: center;
    background-color: #fafaf9;
}

.container .bannerBox .title,
.container .bannerBox .desc,
.container .bannerBox .btnGround {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 30px;
    color: #333333;
}

.container .bannerBox .title {
    font-size: 45px;
}

.container .bannerBox .desc {
    font-size: 19px;
}

.bannerBox .descphotot {
    margin-top: 40px;
    max-width: 1024px;
    box-shadow: 0 0 40px #DDD9F3;
    border-radius: 15px;
    border: 10px solid #fff;
}

.container .bannerBox .btnGround .btn {
    background: linear-gradient(to right, #FF6027, #FF06A0);
    display: inline-block;
    color: #fff;
    transition: all .5s ease;
    font-size: 14px;
}

.container .bannerBox .btnGround .btn:hover {
    transform: translate(0, -8px);
    box-shadow: 0 0 10px rgba(107, 107, 107, .3);

}


/* intro_base */
.intro_base {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    text-align: center;
}

.intro_base h2 {
    max-width: 1200px;
    margin: 100px auto 30px;
    font-size: 42px;
}

.intro_base p {
    max-width: 1200px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.6;

}


/* intro_ai */
.intro_ai {
    background-color: #494766;
    color: #fff;
}

.intro_ai img {
    margin-bottom: 120px;
}


/* intro_new_table */
.intro_new_table {
    background-color: #fafaf9;
    color: #333;
}

.intro_new_table img {
    max-width: 960px;
}


/* intro_vision */
.intro_vision {
    background: linear-gradient(to bottom right, #CB5DE2, #F57E2F);
    color: #fff;
}

.intro_vision img {
    max-width: 800px;
    border-radius: 20px;
}

/* intro_banner */
.intro_banner{
    background-color: #fafaf9;
    color: #333;
}

.intro_banner img {
    max-width: 960px;
    border-radius: 20px;
}


/* news */
.news {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    background-color: #fafaf9;
}

.news h2 {
    max-width: 1200px;
    margin: 0 auto 50px;
    color: #3a86ff;
}

.news .newsItems {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.news .newsItems .item {
    margin: 0 auto;
    min-width: 365px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(107, 107, 107, .3);
    background-color: #f9f9f9;
    color: #333;
    overflow: hidden;
    transition: all .3s ease;
}

.news .newsItems .item:hover {
    box-shadow: 0 0 30px rgba(107, 107, 107, .3);
    
}

.news .newsItems .item .item_content {
    padding: 20px;
}

.news .newsItems .item .time {
    background: #4285f4;
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 15px;
}

.news .newsItems .item .item_content .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #202124;
}

.news .newsItems .item>img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    overflow: hidden;
}

.news .newsItems .item h3 {
    margin: 10px 0;
}