
        body {
            margin: 0;
            /* 去除 body 默认的外边距 */
        }

        /* 仅针对当前海报展示区域的样式，避免影响其他模板 */
        .custom-poster-gallery-container {
            margin: 0;
            padding: 0;
        }

        .mobile-visible {
            display: none !important;
        }

        .mobile-hidden {
            display: block !important;
        }

        .custom-poster-gallery-container .custom-poster-gallery {
            display: flex;
            flex-wrap: nowrap;
            justify-content: space-between;
            width: 100%;
            margin: 0 auto;
            box-sizing: border-box;
            padding: 0 24px;
            max-width: 1440px;
        }

        .custom-poster-gallery-container .custom-poster-gallery figure {
            margin: 0;
            text-align: center;
            width: 18%;
            position: relative;
            overflow: hidden;
        }

        .custom-poster-gallery-container .custom-poster-gallery img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .custom-poster-gallery-container .custom-poster-gallery-img {
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .custom-poster-gallery-container .custom-poster-gallery img:hover {
            transform: scale(1.1);
        }

        .custom-poster-gallery-container .custom-poster-gallery figcaption {
            margin-top: 8px;
            font-size: 23px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .custom-poster-gallery-container .custom-poster-gallery img {
            height: auto;
            object-fit: contain;
            width: 100%;
        }

        .custom-poster-gallery-container .custom-poster-gallery img:hover {
            transform: scale(1.05);
        }

        @media screen and (min-width: 2600px) {
            .custom-poster-gallery-container .custom-poster-gallery figcaption {
                font-size: 23px;
            }
        }

        @media screen and (max-width: 2500px) {
            .custom-poster-gallery-container .custom-poster-gallery figcaption {
                font-size: 23px;
            }
        }


        @media screen and (min-width: 1080px) {
            .custom-poster-gallery-container .custom-poster-gallery {
                padding: 0;
            }

            .mobile-visible {
                display: none !important;
            }

            .mobile-hidden {
                display: block !important;
            }

            .mobile-hidden .custom-poster-gallery {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                grid-gap: 24px;

            }
            .custom-poster-gallery-container.mobile-hidden .custom-poster-gallery figure a{
                display: block;
                height: 100%;
            }

            .custom-poster-gallery-container.mobile-hidden .custom-poster-gallery figure {
                width: 100%;
                position: relative;
                height: 100%;
            }
            .custom-poster-gallery-container.mobile-hidden .custom-poster-gallery .custom-poster-gallery-img {
                width: 100%;
                position: relative;
                height: 100%;
            }

            .custom-poster-gallery-container.mobile-hidden .custom-poster-gallery figcaption {
                position: absolute;
                z-index: 2;
                bottom: 14px;
                left: 24px;
                right: 24px;
                text-align: center;
                font-size: 23px;
                font-family: 'Poppins', sans-serif;
                font-weight: 600;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .custom-poster-gallery-container .custom-poster-gallery img{
                height: 100%;
                object-fit: cover;
            }

            .mobile-hidden .figure-group {
                display: grid;
                grid-template-columns: repeat(1, 1fr);
                grid-gap: 24px;
            }
            .mobile-hidden .figure-group figure {
                height: 100%;
            }

            .mobile-hidden .item4 {
                grid-area: 1 / 2 / span 1 / span 1;
            }
        }

        
        @media screen and (max-width: 1080px) {
            
            .mobile-visible {
                display: block !important;
            }

            .mobile-hidden {
                display: none !important;
            }
        }

        @media screen and (max-width: 1000px) {
            .custom-poster-gallery-container .custom-poster-gallery {
                padding: 0 24px;
            }

            .mobile-visible {
                display: block !important;
            }

            .mobile-hidden {
                display: none !important;
            }

            .custom-poster-gallery-container .custom-poster-gallery figure {
                width: 18%;

            }

            .custom-poster-gallery-container .custom-poster-gallery img {
                height: auto;
            }

            .custom-poster-gallery-container .custom-poster-gallery figcaption {
                font-size: 16px;
            }
        }

        @media screen and (max-width: 780px) {
            .mobile-visible {
                display: block !important;
            }

            .mobile-hidden {
                display: none !important;
            }

            .custom-poster-gallery-container .custom-poster-gallery {
                padding: 0 16px;
            }

            .custom-poster-gallery-container .custom-poster-gallery figure {
                width: 18%;
            }

            .custom-poster-gallery-container .custom-poster-gallery img {
                height: auto;
            }

            .custom-poster-gallery-container .custom-poster-gallery figcaption {
                font-size: 16px;
            }
        }

        @media screen and (max-width: 480px) {
            .mobile-visible {
                display: block !important;
            }

            .mobile-hidden {
                display: none !important;
            }

            .custom-poster-gallery-container .custom-poster-gallery {
                flex-wrap: wrap;
                padding: 0 16px;
                box-sizing: border-box;
            }

            .custom-poster-gallery-container .custom-poster-gallery figure {
                width: 18%;
            }

            .custom-poster-gallery-container .custom-poster-gallery figcaption {
                font-size: 13px;
            }
        }
    