* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            margin: 0;
            height: 100vh;
        }

        .main {
            margin: 0 auto;
            max-width: 900px;
            min-height: 100vh;
            padding: 20px 10px;
            overflow-x: hidden;
        }

        .title {
            color: #080606;
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            text-align: center;
            white-space: nowrap;
        }

        .title.flex {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .title span {
            font-size: 22px;
            color: red;
            display: inline-block;
        }

        .list {
            padding: 30px 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .list .item {
            position: relative;
            flex: 1; 
            width: 100%;
            line-height: 20px;
            font-weight: bold;
            color: #2c3e50;
            box-shadow: 0 0 10px #65656585;
            border-radius: 8px;
            animation: changeImg 2s ease linear;
        }

        .list .item.arrow {
            position: relative;
        }

        .list .item.arrow::before {
            content: '';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid #fff;
            z-index: 1;
        }

        .list .item.arrow::after {
            content: '';
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid #666;
        }

        .list .item.empty-state {
            text-align: center;
            padding: 20px 10px;
        }

        a {
            text-decoration: none;
            color: inherit;
            background-color: transparent;
            transition: all 0.3s ease;
        }
        
        a:link,
        a:visited,
        a:hover,
        a:active,
        a:focus {
            text-decoration: none;
            color: inherit;
            outline: none;
        }

        .list .item a {
            position: relative;
            display: block;
            text-align: center;
            padding: 20px 10px;
            border-radius: 8px;
            color: #fff;
            letter-spacing: 4px;
            font-size: 18px;
            /* background: linear-gradient(to right, rgb(144 70 255 / 68%) 0, rgb(197 21 79 / 40%) 50%, rgb(255 65 65 / 55%) 100%); */
            background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        }

        .list .item a::after {
            content: '';
            position: absolute;
            animation:changeImg 3s ease 0s;
            top:0;
            width:30%;
            height:100%;
            background:linear-gradient(to right,rgba(255,255,255,0) 0,rgba(255,255,255,.4) 50%,rgba(255,255,255,0) 100%);
            transform:skewX(-45deg);
            animation-iteration-count:infinite;
        }

        @keyframes changeImg {
            from {
                left:-100%;
            }
            100% {
                left:150%;
            }
        }

        #img img {
            display: block;
            width: 100%;
        }

        .tip {
            color: #080606;
            font-size: 16px;
            font-weight: bold;
            margin-top: 10px;
            margin-bottom: 10px;
            text-align: center;
        }

        .img-tip {
            font-size: 18px;
            text-align: center;
            font-weight: bold;
            color: red;
        }

        .zy {
            display: block;
            width: 100%;
            margin-top: 10px;
            margin-right: auto;
            margin-left: auto;
            animation: moveDown 1.4s linear infinite;
        }

        @keyframes moveDown {
            0%, 100% {
                transform: translateY(10px);
            }
            50% {
                transform: translateY(0);
            }
        }