@media screen and (max-width: 768px) {
    .banner_text p:nth-child(1){
        font-size: 24px;
    }
    .cont{
        width: 100%;
    }
    .shoot_cont4 ul li{
        width: calc(100% - 40px);
        float: none;
        margin-right: 0;
        margin-top: 0;
        margin: 20px;
        padding: 40px 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); /* 添加淡淡的阴影效果 */
        border-radius: 5px;
        overflow: hidden;
    }
    .shoot_cont4 ul li img{
        margin-bottom: 20px;
    }
    .shoot_cont4 ul li h1{
        font-size: 22px;
        margin: 20px 0;
    }
    .shoot_cont4 ul li p{
        font-size: 18px;
    }
    .shoot_cont2 ul li{
        width: calc(100% - 40px);
        height: auto;
        float: none;
        margin-right: 0;
        margin-top: 0;
        margin: 20px;
        padding-bottom: 40px;
        border-radius: 5px;
    }
    .shoot_cont2 ul li p{
        width: calc(100% - 40px);
        font-size: 18px;
        line-height: 36px;
    }
    .d_cont8mian{
        width: 100%;
    }
    .d_cont8mian dl{
        width: calc(100% - 40px);
        height: auto;
        float: none;
        margin-right: 0;
        margin-top: 0;
        margin: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); /* 添加淡淡的阴影效果 */
        border-radius: 5px;
        overflow: hidden;
    }
    .d_cont8mian dl dt img{
        width: 100%;
        height: auto;
    }
    .d_cont8mian dl dd{
        font-size: 20px;
        width: 100%;
        text-align: center;
        height: 80px;
        line-height: 80px;
    }
    .shoot_cont1{
        width: calc(100% - 40px) !important;
        background-color: #fff;
    }
    /* 拍摄流程shoot_cont5移动端样式 */
    .shoot_cont5 {
        width: 100%;
        padding: 40px 0;
        background-color: #fafafa;
    }
    
    .shoot_cont5 ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    
    /* 添加垂直连接线 */
    .shoot_cont5 ul::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 20px;
        bottom: 20px;
        width: 2px;
        background: linear-gradient(to bottom, #4a90e2 0%, #50e3c2 100%);
        transform: translateX(-50%);
        border-radius: 1px;
    }
    
    .shoot_cont5 ul li {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 50px;
        position: relative;
        padding-left: calc(50% + 50px);
        box-sizing: border-box;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }
    
    /* 为每个li添加延迟动画 */
    .shoot_cont5 ul li:nth-child(1) { animation-delay: 0.1s; }
    .shoot_cont5 ul li:nth-child(2) { animation-delay: 0.2s; }
    .shoot_cont5 ul li:nth-child(3) { animation-delay: 0.3s; }
    .shoot_cont5 ul li:nth-child(4) { animation-delay: 0.4s; }
    .shoot_cont5 ul li:nth-child(5) { animation-delay: 0.5s; }
    .shoot_cont5 ul li:nth-child(6) { animation-delay: 0.6s; }
    .shoot_cont5 ul li:nth-child(7) { animation-delay: 0.7s; }
    
    .shoot_cont5 ul li:last-child {
        margin-bottom: 0;
    }
    
    .shoot_cont5 ul li i {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, #4a90e2 0%, #50e3c2 100%);
        color: #fff;
        border: 4px solid #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .shoot_cont5 ul li:hover i {
        transform: translateX(-50%) scale(1.15) rotate(5deg);
        box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
    }
    
    .shoot_cont5 ul li p {
        margin: 0;
        font-size: 19px;
        color: #333;
        line-height: 1.6;
        text-align: left;
        font-weight: 500;
        background-color: #fff;
        padding: 15px 20px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        position: relative;
    }
    
    /* 添加文字气泡的小三角形 */
    .shoot_cont5 ul li p::before {
        content: '';
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
        border: 6px solid transparent;
        border-right-color: #fff;
    }
    
    .shoot_cont5 ul li:hover p {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        transform: translateY(-3px);
    }
    
    /* 调整奇数和偶数项的布局，使文字交替显示在左右两侧 */
    .shoot_cont5 ul li:nth-child(odd) {
        flex-direction: row-reverse;
        padding-left: 0;
        padding-right: calc(50% + 50px);
    }
    
    .shoot_cont5 ul li:nth-child(odd) p {
        text-align: right;
    }
    
    /* 奇数项文字气泡的小三角形 */
    .shoot_cont5 ul li:nth-child(odd) p::before {
        left: auto;
        right: -12px;
        border-right-color: transparent;
        border-left-color: #fff;
    }
    
    /* 淡入上移动画 */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* 卡片初始状态 */
    .shoot_cont4 ul li,
    .shoot_cont2 ul li,
    .d_cont8mian a dl {
        opacity: 0;
        transform: translateY(30px);
        /* 使用GPU加速，优化动画性能 */
        will-change: opacity, transform;
        /* 缩短动画时间，提高流畅度 */
        transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }
    
    /* 卡片动画类 */
    .shoot_cont4 ul li.animate,
    .shoot_cont2 ul li.animate,
    .d_cont8mian a dl.animate {
        opacity: 1;
        transform: translateY(0);
    }
}