
        .shiny-btn {
            /* more-btn css */
            position: relative;
            padding: 0px 42px;
            font-size: 1rem;
            font-weight: 600;
            color: white;
            /*background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);*/
            background-color: rgb(17 13 51);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            overflow: hidden; /* 隐藏溢出的伪元素 */
            box-shadow: 0 4px 15px rgba(37, 117, 252, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

            /* more-btn */
            .shiny-btn:hover {
                /*transform: translateY(-3px);*/
                box-shadow: 0 6px 20px rgba(37, 117, 252, 0.35);
                background-color: rgb(17 13 51);
                color: #0097ff;
            }

            /* click */
            .shiny-btn:active {
                transform: translateY(1px);
                box-shadow: 0 2px 10px rgba(37, 117, 252, 0.3);
            }

            /* shine */
            .shiny-btn::before {
                content: "";
                position: absolute;
                top: 0;
                left: -100%;
                width: 60%; /* 更窄的光带 */
                height: 100%;
                background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3), transparent );
                animation: gentleShine 4s ease-in-out infinite; /* 更慢的动画 */
                transform: skewX(-20deg); /* 斜切角度 */
            }

        /* btn-shine */
        @keyframes gentleShine {
            0% {
                left: -100%;
                opacity: 0.5;
            }

            20% {
                opacity: 1; /* 中间最亮 */
            }

            70% {
                left: 150%; /* 更长的移动距离 */
                opacity: 0.5;
            }

            100% {
                left: 150%;
                opacity: 0;
            }
        }
        /* 光标样式 */
        .cursor {
            display: inline-block;
            width: 3px;
            height: 1.2rem;
            background-color: #4fc3f7;
            margin-left: 3px;
            vertical-align: middle;
            box-shadow: 0 0 10px #4fc3f7, 0 0 20px #4fc3f7;
            animation: blink 0.8s infinite;
            position: relative;
            top: -2px;
        }

        @keyframes blink {
            0%, 100% {
                opacity: 1;
            }

            50% {
                opacity: 0.3;
            }
        }

        .space-y-6 {
            max-width: 1250px;
            text-align: left;
        }

        .ggtwo {
            margin-top: 10px !important;
        }

        @media (min-width:1021px) {
            .h-full {
                height: 750px;
            }

            .space-y-6 {
                width: 1250px;
            }

            .ggtwo {
                width: 700px;
                font-size: 2.4rem;
            }
        }

        @media (max-width:1020px) {
            .h-full {
                height: 450px;
            }

            .space-y-6 {
                width: 100%;
                padding-left: 60px;
            }

            .ggtwo {
                width: 100%;
                font-size: 2rem;
                padding-left: 0;
            }
        }


        .pagination {
            margin: 0 auto;
            margin-bottom: 30px
        }

        .pagination a:hover {
            color: #48aaff
        }

        .pagination a,.page_num {
            min-width: 40px;
            display: flex;
            height: 30px;
            justify-content: center;
            align-items: center;
            float: left;
            padding: 5px 10px;
            border: 1px solid #a0a0a0;
            border-radius: 15px;
            margin-left: 5px
        }

        .n_num {
            margin-left: 30px
        }

        .currentp {
            color: #abaaaa
        }

        .da_gang {
            /*z-index: 1000;*/
            flex-direction: column;
            width: 25rem;
        }

        .da_gang .lt {
            transition-duration: .5s;
            position: sticky;
            position: -webkit-sticky;
            top: 5rem;
            z-index: 5;
            width: 100%;
            transition-property: all;
            transition-timing-function: cubic-bezier(.4, 0, .2, 1);
            width: 25rem;
            padding: 10px;
            border-radius: 0.75rem;
            --tw-bg-opacity: 1;
            background-color: #eeeeef;
            --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
            --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
            box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
        }
        .da_gang ul li{
            border-bottom: 1px dashed #c4c4c4;
            margin-bottom: 5px;
        }
        .da_gang ul li a {
            color: #757575;
            font-size: 12px;
        }

        .da_gang ul li a:hover {
            color: var(--bs-primary) !important;
        }

        @media (min-width: 992px) {
            .da_gang {
                display: flex;
                flex: none;
            }
        }

        @media (max-width: 992px) {
            .da_gang {
                display: none;
            }
        }

        .black_logo{
            filter: grayscale(100%) invert(100%);
        }

        .select_item{
            /*background-color: #e7e7e7;*/
        }

        .check-view-btn{
            background-color: #E5aab7;
            padding: 2px 10px;
            border-radius: 10px;
        }

        .product-title{
            font-size: 18px;
            font-weight: 600;
        }

        .product-content{
            height: 56px;
            font-weight: 300;
            font-size: 16px;
            color: rgb(154 151 151);
        }
        .home-line{
            background-color: rgb(241 241 241) !important;
        }
        .header-bg{
            background-color: #e5e7eb;
        }
        .header-bg-index{
            background-color: unset;
        }