/* 球队信息 */
.akk-team {
    text-align: center;
    color: #ffffff;
    padding: 20px 0;
}
.akk-team__football--back {
    background-image: linear-gradient(to right, #555555, #222222);
    background-size: 100% 100%;
}
.akk-team__basketball--back {
    background-image: linear-gradient(to right, #555555, #222222);
    background-size: 100% 100%;
}
.akk-team__info {
    display: flex;
    justify-content: center;
    align-items: center;
}
.akk-team__info-item {
    width: 33%;
}
.akk-team__thumb-box {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.akk-team__thumb {
    display: block;
    width: 100%;
    height: 100%;
}
.akk-team__score {
    font-size: 40px;
    font-weight: bold;
}

/* 直播信号源 */
.akk-source__centent {
    display: flex;
    flex-wrap: wrap;
    margin-top: 5px;
    margin-left: -20px;
    padding-bottom: 5px;
}
.akk-source__item {
    min-width: 100px;
    line-height: 30px;
    text-align: center;
    margin-left: 20px;
    margin-top: 10px;
    padding: 0 10px;
    background: #FFFFFF;
    border: 1px solid red;
}
.akk-source__item--back {
    background: #F8F8F8!important;
}
.akk-source__name {
    color: red!important;
}

/* 文章列表 */
.akk-article-list {
    background: #ffffff;
    padding: 15px;
}
.akk-article-list__label {
    font-weight: normal;
    font-size: 15px;
    border-bottom: 1px solid #EFEFEF;
    padding-bottom: 10px;
}
.akk-article-list__thumb {
    width: 280px;
    height: 160px;
}
.akk-article-list__item {
    display: flex;
}
.akk-article-list__item:not(:last-child) {
    padding-bottom: 15px;
    border-bottom: 1px solid #EFEFEF;
}
.akk-article-list__item:not(:first-child) {
    margin-top: 15px;
}
.akk-article-list__title {
    font-size: 18px;
    font-weight: bold;
}
.akk-article-list__other-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 0px;
}
.akk-article-list__tag-name {
    background: #d7e4e6;
    max-width: 70px!important;
    color: #58A9B3 !important;
    max-width: 120px;
    padding: 3px 6px;
}
.akk-article-list__tag-name:not(:first-child) {
    margin-left: 10px;
}
/* ===== 直播信号容器，强制横排 ===== */
.zhibo_btn,
.cue,
.ul-signal {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

/* ===== 直播信号按钮样式 ===== */
.zhibo_btn a,
.cue a,
.ul-signal a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    padding: 10px 24px;
    min-width: 96px;

    background: #ff1e1e;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;

    border-radius: 999px;
    text-decoration: none !important;

    box-shadow: 0 6px 14px rgba(255,30,30,.45);

    /* 跳动动画 */
    animation: liveJump 1.4s ease-in-out infinite;
}

/* hover */
.zhibo_btn a:hover,
.cue a:hover,
.ul-signal a:hover {
    background: #e60000;
}

/* ===== 跳动动画 ===== */
@keyframes liveJump {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}
/* ===== 强制修复手机端“未开始”不显示（iOS） ===== */
@media screen and (max-width: 768px) {
    .zb-area_btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        min-width: 70px !important;
        padding: 8px 12px !important;

        font-size: 14px !important;
        line-height: 1.4 !important;

        color: #000000 !important;
        background-color: #ffffff !important;

        border: 1px solid #000099 !important;
        border-radius: 5px !important;

        white-space: nowrap !important;
        overflow: visible !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}
/* ===== 手机端按钮文字加深（最终版） ===== */
@media screen and (max-width: 768px) {
    .zb-area_btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        min-width: 70px !important;
        padding: 8px 12px !important;

        font-size: 14px !important;
        line-height: 1.4 !important;

        color: #1e2126 !important;      /* ✅ 深色文字 */
        font-weight: 600 !important;    /* ✅ 稍微加粗 */

        background-color: #ffffff !important;
        border: 1px solid #000099 !important;
        border-radius: 5px !important;

        white-space: nowrap !important;
        overflow: visible !important;
    }

    .zb-area_btn.start {
        background-color: #000099 !important;
        color: #ffffff !important;
        font-weight: 700 !important;
    }
}

