.informationSection {
    position: relative;
    margin-top: 50px;

    .introduction {
        color: #000;
        line-height: 28px;
        margin-top: -20px;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .name {
        color: #000;
        font-weight: 700;
    }

    .category {
        display: flex;

        img {
            /* width: 400px; */
            height: 50px;
            margin-right: 20px;
        }
    }

    .footcont {
        display: flex;
        justify-content: space-between;
        padding-top: 60px;

        .footcont_left {
            width: 68%;

            img {
                width: 100%;
            }
        }

        .footcont_right {
            width: 30%;
            border-radius: 20px;
            padding: 20px 10px;
            color: white;
            background: linear-gradient(90deg, #32cc9a, #03c2df);
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            .footcont_right_cont {
                display: flex;
                align-items: center;
                justify-content: space-around;
                height: 30%;

                img {
                    width: 50px;
                    height: 50px;
                    margin-right: 10px;
                }

                .footcont_text {
                    width: 170px;
                }
            }
        }
    }

    .gray_back {
        width: 100%;
        height: 280px;
        background-color: #f8f8f8;
        position: absolute;
        left: 0;
        bottom: -140px;
        z-index: -1;
    }
}

.acrypetSection {
    margin-top: 50px;
    padding: 160px 0;

    .title {
        position: relative;
        margin-bottom: 50px;
        padding-top: 15px;
        color: #30b284;
        font-size: 28px;
        font-weight: 600;
    }

    .title::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 50px;
        height: 3px;
        background-color: #30b284;
    }

    .acrypetBox {
        width: 100%;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;

        .acrypetBox_cont {
            width: 100%;
            height: 100px;
            display: flex;
            align-items: center;

            .acrypetbox_cont_left {
                width: 50%;
                display: flex;
                flex-direction: column;
                align-items: flex-end;

                .acrypetbox_cont_right_date {
                    font-weight: 600;
                }

                .acrypetbox_cont_right_text {
                    color: #000;
                }

                img {
                    width: 50px;
                    height: 50px;
                }
            }

            .acrypetbox_cont_center {
                width: 2px;
                height: 100%;
                margin: 0px 20px;
            }

            .green {
                background: linear-gradient(180deg, #33cb98 0%, #00c3e3 100%);
            }

            .gray {
                background: #ccc;
            }

            .acrypetbox_cont_right {
                width: 50%;

                .acrypetbox_cont_right_date {
                    font-weight: 600;
                }

                .acrypetbox_cont_right_text {
                    color: #000;
                }

                img {
                    width: 50px;
                    height: 50px;
                }
            }
        }
    }
}

.acrypetbox_cont_left img,
.acrypetbox_cont_right img {
    max-width: 80px;
    margin: 0 5px;
    display: none;
}

/* 绿色图片（选中态） */
.acrypetbox_cont_left img.green-img,
.acrypetbox_cont_right img.green-img {
    display: block;
}

/* 白色图片（未选中态） */
.acrypetbox_cont_left img.white-img,
.acrypetbox_cont_right img.white-img {
    display: none;
}

/* 未选中时显示白色图片，隐藏绿色 */
.acrypetBox_cont:not(.selected) .acrypetbox_cont_left img.green-img,
.acrypetBox_cont:not(.selected) .acrypetbox_cont_right img.green-img {
    display: none;
}

.acrypetBox_cont:not(.selected) .acrypetbox_cont_left img.white-img,
.acrypetBox_cont:not(.selected) .acrypetbox_cont_right img.white-img {
    display: block;
}


.news-section {
    padding: 60px 0;
    background-color: #ffffff;
    position: relative;
    margin: 0 auto;
}

.news-back {
    width: 1220px;
    margin: 0 auto;
    padding: 0;
}

.news-wrapper {
    width: 1100px;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 40px;
}

.news-box {
    margin: 0 auto;
    background-color: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.site-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;

}

.acrypetBox2 {
    width: 530px;
    height: 210px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    margin-bottom: 20px;
    margin-right: 20px;

    img {
        height: 210px;
        margin-left: -80px;
    }

    .acrypetText2 {
        .h3 {
            color: #30b284;
            font-weight: bold;
            padding: 40px 0 0 20px
        }

        .text {
            color: #000;
            font-size: 14px;
            padding: 80px 0 0 20px;
            margin-bottom: 60px;
        }
    }
}

.news-section2 {
    padding: 80px 0;
    background-image: url('../../assets/2x/foot@2x.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
}

.icontext {
    color: #0066cc;
    /* 默认蓝色 */
    font-weight: 400;
    font-size: 16px;
    padding: 30px 0 0 20px;
    text-decoration: underline;
    text-underline-offset: 7px;
    cursor: pointer;
}

.icontext:visited {
    color: #999;
    /* 点击后灰色 */
}