 /* 全局样式：消除横向滚动条 */
* { box-sizing: border-box; }
html, body { overflow-x: hidden; width: 100%; -webkit-text-size-adjust: 100%; }
body { 
    position: relative;
    background: linear-gradient(180deg, #EBF5FF 27%, #ECEDF0 48%);
    margin: 0; padding: 0; font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    color: #333;
    padding-bottom: 153px;
    overflow: hidden;
}

.container { max-width: 1200px; margin: 0 auto; position: relative;     
    display: flex;
    flex-direction: column;gap: 20px;
}
/* 顶部 Banner：整体图片 */
.banner { width: 100%; line-height: 0; }
.banner a{ display: flex; }
.banner img { width: 100%; height: auto; }

/* 蓝色发哥标题：整体图片占位 */
.section-title-img { width: 100%; padding: 0; text-align: center; }
.section-title-img img { width: 85%; height: auto; }

/* 白色卡片容器 */
.card { 
    position: relative;
    z-index: 10;
    background: #FFFFFF; border-radius: 12px; margin: 10px; 
    padding: 12px; box-shadow: 0 4px 15px rgba(0, 100, 255, 0.1);
}

/* 联系方式：双列对齐 */
.contact-row { display: flex; justify-content: space-between; font-size: 1rem; font-weight: bold; margin-bottom: 8px; }
.qr-area { width: 120px; height: 120px; background: #fff; margin: 10px auto; border: 0px solid #eee; display: flex; align-items: center; justify-content: center; }
.qr-area img { width: 100%; height: 100%; }
.qr-area.left {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-120%);
}
.qr-area.right {
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(120%);
}

.id-link-area { font-size: 1rem;font-weight: bold; color: #666; line-height: 1.8; }
.blue-link { color: #5CB8FF; text-decoration: none; font-weight: bold; cursor: pointer; }

/* 红色文字通栏 */
.promo-text a{ color: #ED3140; font-size: 2rem; font-weight: bold; text-align: center; padding: 5px 15px; line-height: 1.5;  text-decoration: none; display: block; }

/* 赛事表格：核心复刻 */
.match-card { padding: 0 !important; overflow: hidden; margin: 10px 5px;}
.match-table { 
    width: 100%; border-collapse: collapse; table-layout: fixed; /* 强制固定列宽，防止溢出 */
    font-size: 1rem; /* 识别图中字号极小 */
    
}
.match-table th { background: E9EFFF; color: #1C262F; font-weight: bold; padding: 10px 5px; border-bottom: 1px solid #E5EFFF; font-size: 1.5rem; color: #1C262F;background-color: #EAE9FF; }
.match-table td { padding: 1rem  .5rem; text-align: center; border-bottom: 1px solid #F5F5F5; word-break: break-all; vertical-align: middle; }

/* 针对列宽进行微调，确保不挤压 */
.col-type { width: 14%; }
.col-team { width: 20%; font-weight: bold; }
.col-rec { width: 20%; padding:10px 0 }
.col-plate { width: 18%; }
.col-res { width: 18%; color: #007AFF; }
.col-win { width: 10%; }

/* 赢字图标 */
.win-tag { color: #E93C3C; font-weight: bold; font-style: normal; border: 1px solid #E93C3C; padding: 0px 2px; border-radius: 2px; font-size: 1rem; }

/* 篮球专用色 */
.basketball-th { background: #E9EFFF !important; }
.basketball-text { color: #1C262F !important; }

/* 悬浮按钮 */
.float-btn { position: fixed; right: 10px; bottom: 100px; width: 55px; z-index: 100; }
.float-btn img { width: 100%; }

.copy-tips {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5); /* 初始缩小 */
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28); /* 弹性动画 */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
}

/* 激活状态 */
.copy-tips.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1); /* 弹跳放大 */
}
.foot {

}
.foot__left {
    position: absolute;
    left: 0;
    bottom: 0;
    
}
.foot__left img {
    max-width: 600px;
    height: auto;
}
.foot__right {
    position: absolute;
    right: 0;
    bottom: 0;
}
.foot__right img {
    max-width: 168px;
    height: auto;
}
.foot img {
    height: auto;
}