@media screen and (max-width: 767px) {
    /* 滚动动画效果 */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
        100% {
            transform: scale(1);
        }
    }

    /* 初始状态 */
    .scroll-animate {
        opacity: 0;
        transition: all 0.6s ease;
    }

    /* 动画触发类 */
    .animate {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-in-up {
        animation: fadeInUp 0.8s ease forwards;
    }

    .fade-in-left {
        animation: fadeInLeft 0.8s ease forwards;
    }

    .fade-in-right {
        animation: fadeInRight 0.8s ease forwards;
    }
    .banner_text p:nth-child(1){
        font-size: 26px;
    }
    .p_cont1,.p_cont2,.p_cont3{
        width: 100%;
        overflow: hidden;
    }
    .p_cont1>img,.p_cont2>img,.p_cont3>img{
        max-width: none; /* 取消最大宽度限制，让图片可超出容器 */
        width: auto;   
        display: inline-block;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    .p_cont1 .p_cont1w dl{
        width: 100%;
        height: auto;
        border-bottom: 0;
    }
    .p_cont1 .p_cont1w dl:nth-last-child(1){
        border-bottom: 1px solid #e5e5e5 !important;
    }
    .p_cont1 .p_cont1w dl:nth-child(n){
        border-right: 0;
        float: none;
        border: 1px solid #e5e5e5;
        margin: 20px;
        padding: 20px;
        width: calc(100% - 40px);
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    .p_cont1 .p_cont1w dl:hover{
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
        border-color: #ddd;
    }
    .p_cont1 .p_cont1w dl dd h1{
        font-size: 20px;
    }
    .p_cont1 .p_cont1w dl dd p{
        font-size: 16px;
        line-height: 32px;
    }
    .p_cont2w{
        width: 100%;
        height: auto;
    }
    .p_cont2w dl{
        width: calc(100% - 40px);
        margin: 20px;
        float: none;
        background: #fff;
        border-radius: 10px 10px 0 0;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); /* 添加淡淡的阴影效果 */
        transition: all 0.3s ease;
    }
    .p_cont2w dl:hover{
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        transform: translateY(-3px);
    }
    .p_cont2w dl dt img{
        transition: transform 0.3s ease;
    }
    .p_cont2w dl:hover dt img{
        transform: scale(1.05);
    }
    .p_cont2w dl dt img{
        width: 100%;
    }
    .p_cont2w dl dd{
        padding: 20px;
        font-size: 16px;
    }
    .p_cont3 ul li{
        width: 100%;
        height: auto;
        padding: 20px;
        transition: all 0.3s ease;
        position: relative;
    }
    .p_cont3 ul li:hover{
        background-color: rgba(245, 245, 245, 0.5);
        border-radius: 8px;
        transform: translateX(5px);
    }
    /* 添加引用图标 */
    .p_cont3 ul li::before{
        content: '"';
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 48px;
        color: rgba(0, 0, 0, 0.1);
        font-family: serif;
    }
    .p_cont3 ul li p{
        margin: 0;
        text-indent: 2em;
    }
    .p_cont3 ul li span{
        margin-right: 0;
    }
}