.bg_box {
    width: 100vw;
    height: 100vh;
    /*background-image: url('./static/img/swiperImg/01.png');*/
    background: linear-gradient(180deg, rgba(64, 129, 255, 1) 0%, rgba(145, 182, 255, 1) 100%);
}
.hande_box {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: space-between;
}
.image_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hande_item_box {
    width: 48%;
    height: 100%;
       /* 其他样式 */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title_text {
    font-size: 24px;
    color: #fff;
    margin: 20px;
    font-weight: bold; /* 添加这一行来加粗文本 */
    background: linear-gradient(180deg, rgba(64, 129, 255, 1) 0%, rgba(145, 182, 255, 1) 100%);
}

.image_5 {
    width: 100%;
    height: 100%;
}
.image_3{
    /*矩形 3*/
    left: 175px;
    top: 116px;
    width: 100px;
    height: 100px;
    opacity: 1;
    border-radius: 23px;
    background: linear-gradient(180deg, rgba(64, 129, 255, 1) 0%, rgba(145, 182, 255, 1) 100%);
    /*box-shadow: 0px 2px 4px  rgba(0, 0, 0, 0.25);*/
}
.link_box {
    width: 260px;
    height: 55px;
    margin-top: 20px;
    border-radius: 6px;
    /*background-color: #43CF7C;*/
    background: linear-gradient(180deg, rgba(64, 129, 255, 1) 0%, rgba(219, 17, 88, 0.8) 100%);
    text-align: center;
    line-height: 55px;

}
.link_box_baidu {
    width: 350px;
    height: 55px;
    margin-top: 20px;
    border-radius: 6px;
    /*background-color: #43CF7C;*/
    background: linear-gradient(180deg, rgba(64, 129, 255, 1) 0%, rgba(219, 17, 88, 0.8) 100%);
    text-align: center;
    line-height: 55px;

}

.link_box_pdf {
    width: 180px;
    height: 55px;
    margin-top: 5px;
    border-radius: 6px;
    /*background-color: #43CF7C;*/
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    text-align: center;
    line-height: 55px;

}

#link_box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.link_text {
    color: #fff;
    text-decoration: none;
    font-weight: bold; /* 添加这一行来加粗文本 */
}
.text_brand{
    background: linear-gradient(180deg, rgba(64, 129, 255, 1) 0%, rgba(145, 182, 255, 1) 100%);
}
#popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 200px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.image-container img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.image-container img:hover {
    transform: scale(2);
}
.image-container_max {
    display: flex;
    justify-content: space-between; /* 如果需要的话 */
}
.image-container_max img {
    transition: transform 0.3s ease;
    cursor: pointer;
    z-index: 1;
    float: left; /* 或者right，根据需要调整 */
}

.image-container_max img:hover {
    transform: scale(4);
}
.center-text {
    text-align: center;
}