@media screen and (max-width: 767px) {
    .banner_text p:nth-child(1){
        font-size: 24px;
    }
    .nav_00{
        width: 100%;
    }
    .nav_00 li{
        width: 50%;
    }
    /* 导航栏固定定位样式 */
    .gu_nav.fixed {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #f1f4f8;
        z-index: 1000;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    /* 导航栏固定后，为内容添加顶部间距，避免内容被遮挡 */
    .nav_content.fixed-padding {
        margin-top: 154px; /* 根据导航栏高度调整 */
    }
    
    /* 标签内容动画效果 */
    .nav_content {
        position: relative;
        overflow: hidden;
    }
    
    /* 入场动画 */
    .nav_content.fade-in {
        animation: fadeIn 0.5s ease-in-out forwards;
    }
    
    /* 离场动画 */
    .nav_content.fade-out {
        animation: fadeOut 0.5s ease-in-out forwards;
    }
    
    /* 入场动画定义 */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateX(20px); /* 从右侧20px处进入 */
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* 离场动画定义 */
    @keyframes fadeOut {
        from {
            opacity: 1;
            transform: translateX(0);
        }
        to {
            opacity: 0;
            transform: translateX(-20px); /* 向左侧20px处离开 */
        }
    }
    
    /* 新闻列表项入场动画 */
    .nav_content .newlist dl {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav_content .newlist dl.item-fade-in {
        animation: itemFadeIn 0.6s ease-in-out forwards;
    }
    
    /* 新闻列表项入场动画定义 */
    @keyframes itemFadeIn {
        from {
            opacity: 0;
            transform: translateY(15px); /* 从下方15px处进入 */
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .about_banner{
        width: 100%;
        height: auto;
    }
    .about_cont_bg{
        width: 100%;
        height: auto;
    }
    .about_cont{
        width: 100%;
        height: auto;
        overflow: none;
    }
    .about_cont div{
        height: auto;
        padding: 20px;
        font-size: 20px;
        line-height: 42px;
        text-indent: 2em;
        margin-top: 0;
    }
    .about_cont1_bg{
        height: auto;
    }
    #div1{
        width: 100%;
        height: auto;
    }
    #div2{
        position: relative
    }
    #div2 li{
        float: none;
        margin-right: 0;
        margin-top: 0;
        padding: 0 20px;
        margin-bottom: 20px;
        text-align: center;
    }
    #div2 li img{
        max-width: 100%;
    }
    .about_cont2{
        height: auto;
    }
    .about_cont2 .cont{
        width: 100%;
    }
    .about_cont2_left{
        width: 100%;
        float: none;
        margin-top: 30px;
        height: auto;
        text-align: center;
    }
    .about_cont2_left img{
        max-width: 100%;
    }
    .about_cont2_right{
        width: 100%;
        float: none;
        margin-top: 30px;
        height: auto;
        text-align: center;
        margin-left: 0;
        padding: 20px;
    }
    .about_erweima{
        margin-top: 15px;
        float: none;
        width: 100%;
        height: auto;
    }
    .newlist{
        width: 100%;
    }
    .newlist dl{
        width: calc( 100% - 40px );
        float: none;
        margin-right: 0;
        margin: 0 20px;
        margin-bottom: 20px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .newlist dl dt{
        width: 100%;
        height: auto;
    }
    .newlist dl dt a img{
        width: 100%;
    }
}