﻿#bottom {background: #fff;margin-top: 10px;clear: both;width: 100%;}
#bottom .main {width: 1000px;font-size: 12px;color: #333;text-align: center;margin: 0 auto;padding: 10px 0;}
    #bottom .main a {
        color: #0e6a98;
        text-decoration: none;
    }
        #bottom .main a:hover {
            color: #F30;
            text-decoration: underline;
        }
    #bottom .main .links, .main .link-info, .main .prove-images {
        width: 100%;
        margin: 8px 0;
        line-height: 22px;
    }
    #bottom .links span {
        padding: 0 10px;
        display: inline-block;
    }
    #bottom .link-info span {
        padding: 0 10px;
        display: inline-block;
        position: relative;
    }
    #bottom .link-info .line::after {
        content: "";
        position: absolute;
        width: 1px;
        height: 12px;
        background: #999;
        right: 0;
        top: 6px;
    }
    #bottom .main .state-info {
        width: 96%;
        color: #999;
        line-height: 20px;
        margin: 0 auto;
    }
    #bottom .prove-images a {
        height: 45px;
        display: inline-block;
        padding: 0;
        margin: 0;
    }
    #bottom .prove-images .Proimg {
        width: 110px;
        height: 45px;
        margin: 0 2px;
    }
    #bottom .livetitle {
        width: 100%;
        text-align: center;
        margin: 5px auto 15px;
        align-items: center;
        vertical-align: middle;
    }
        #bottom .livetitle .title {
            font-size: 18px;
            font-weight: 600;
            margin: 5px;
            display: inline-block;
            line-height: 20px;
            position: relative;
            vertical-align: middle;
        }
        #bottom .livetitle .icon {
            width: 96px;
            height: 20px;
            position: relative;
            display: inline-block;
            vertical-align: middle;
        }
#bottom .matchList {
    width: 100%;
    height: 70px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    position: relative;
    vertical-align: middle;
    display: flex;
    overflow: hidden;
}

#bottom .matchList::before{left: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
content: '';
    position: absolute;
    top: 0;
    width: 220px;
    height: 100%;
    z-index: 10;}


   #bottom .matchList::after {right: 0;
    background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
content: '';
    position: absolute;
    top: 0;
    width: 220px;
    height: 100%;
    z-index: 10;}


#bottom .matchListimg {
    width: 168px;
    height: 60px;
    position: relative;
    display: inline-block;
    margin-right: 25px;
    margin-bottom: 10px;
}
    #bottom .matchListimg:last-child {
        margin-right: 0px;
    }
    #bottom .matchListimg:hover {
        box-shadow: 0px 2px 10px 0px #eee;
        border-radius: 8px;
    }


  /* 新增滚动容器样式：基于原有matchList改造 */
    #bottom .matchList {
        /* 原有样式保留，仅新增以下 */
        justify-content: flex-start; /* 确保子元素从左开始排列 */
    }

    /* 滚动内容容器（新增） */
    #bottom .matchList-scroll {
        display: flex;
        align-items: center;
        height: 100%;
        animation: scrollLoop 60s linear infinite; /* 20秒一圈，可调整速度 */
        will-change: transform; /* 优化性能 */
    }

    /* 修复原有图片margin问题（避免最后一张图片间距异常） */
    #bottom .matchListimg {
        margin-bottom: 0; /* 移除底部margin，避免垂直对齐问题 */
        flex-shrink: 0; /* 防止图片被压缩 */
    }

    /* 鼠标悬浮暂停滚动 */
    #bottom .matchList:hover .matchList-scroll {
        animation-play-state: paused;
    }

    /* 核心滚动动画 */
    @keyframes scrollLoop {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%); /* 滚动到复制内容的一半位置，实现无缝 */
        }
    }   