/* ============================================
   整合版全局样式 - reset.css + style.css + aaa.css
   清理重复/冗余/错误代码，保留现代表格风格
   ============================================ */

/* ---------- reset.css 基础重置 ---------- */
* {
    padding: 0;
    margin: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    font-family: 'Microsoft YaHei', Arial, Helvetica, sans-serif;
    font-size: 14px;
}

html {
    background: url(../images/HTB1DN5ueRCw3KVjSZR0762cUpXar.png) repeat;
    background-attachment: fixed;
}

body {
    max-width: 720px;
    margin: 0 auto;
}

ol, ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
}

a:link {
    color: #330099;
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
    color: #FF0000;
}
a:active {
    text-decoration: none;
}
a:focus {
    outline: none;
}
a.hidefocus {
    outline: none;
}

img {
    width: 100%;
    height: auto;
}

input[type=text],
input[type=button],
input[type=submit] {
    -webkit-appearance: none;
    outline: none;
}
button {
    border: 0;
    outline: none;
    cursor: pointer;
}
input {
    outline: none;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}
.clearfix:after {
    clear: both;
}

table {
    table-layout: fixed;
    width: 100%;
}

/* ---------- style.css 核心样式 ---------- */
/* header */
.header {
    position: fixed;
    z-index: 1;
    height: 61px;
    width: 100%;
    max-width: 720px;
    background: #42B8C0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.header.index-header {
    height: 92px;
}
.header .head-title-img {
    position: relative;
}
.head-title-img .natural {
    display: block;
    position: absolute;
    top: 2px;
    width: 60px;
    height: 60px;
    left: 50%;
    margin-left: -30px;
    -webkit-animation: z 5s linear 0s infinite;
    animation: z 5s linear 0s infinite;
    box-shadow: 0px 0px 20px #000;
    border-radius: 50%;
}
@keyframes z {
    from { transform: translateX(0) translateY(0) rotateZ(0deg); }
    to   { transform: translateX(0) translateY(0) rotateZ(360deg); }
}
.header .logo-box {
    height: 61px;
}
.header .logo {
    float: left;
    height: 61px;
    margin-left: 10px;
}
.header .logo .logo-img {
    width: 208px;
    height: 61px;
}
.header .bank {
    float: right;
    position: relative;
    width: 56px;
    height: 44px;
    margin-top: 10px;
}
.header .bank a {
    display: block;
    color: #FFFFFF;
    font-size: 8pt;
}
.header .bank img {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto;
}
.nullbox {
    height: 91px;
}
.subnullbox {
    height: 61px;
}

/* nav */
.nav {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    overflow: hidden;
    border-top: 1px solid #000;
}
.nav span {
    display: block;
    float: left;
    height: 30px;
    line-height: 25px;
    width: 16.66%;
    cursor: pointer;
    padding: 3px 0;
    text-align: center;
    color: #FFFFFF;
    border-radius: 15px;
    background: #FF0033;
    font-weight: 800;
}
.nav span:hover {
    background: #06da46;
}

/* 通用卡片 */
.box {
    margin: 5px 0;
    border-radius: 5px;
    overflow: hidden;
    background: #93ef81;
}
.pad {
    padding: 4px 4px;
}
.xjbox {
    margin: 5px 0;
    border-radius: 5px;
    overflow: hidden;
    background: #000;
}

/* 公告 */
.news-title {
    float: left;
    height: 35px;
    line-height: 35px;
    padding-left: 5px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.news-title img {
    display: block;
    float: left;
    width: 35px;
    height: 35px;
    margin-right: 5px;
}
.txtMarquee-left {
    padding: 0 5px;
    position: relative;
    height: 35px;
    line-height: 35px;
    overflow: hidden;
}
.txtMarquee-left .bd ul {
    overflow: hidden;
}
.txtMarquee-left .bd ul li {
    margin-right: 20px;
    float: left;
    height: 35px;
    line-height: 35px;
    text-align: left;
    width: auto !important;
    color: #000;
}
.txtMarquee-left .bd ul li a {
    color: #fff;
}
.txtMarquee-left .bd ul li a:hover {
    text-decoration: underline;
}

/* subnav */
.subnav {
    border-radius: 5px;
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.8);
    overflow: hidden;
}
.subnav a {
    display: block;
    float: left;
    width: 20%;
    text-align: center;
    font-size: 12pt;
    color: #000;
    font-weight: bold;
    text-shadow: 0px 2px 1px #ff9c00;
}
.subnav a img {
    display: block;
    width: 84px;
    height: 76px;
    margin: 0 auto 2px;
    animation-duration: 4s;
    animation-fill-mode: both;
}
.subnav a:nth-child(1) img,
.subnav a:nth-child(2) img {
    animation-name: fadeInLeft;
}
.subnav a:nth-child(3) img {
    animation-name: bounceInDown;
}
.subnav a:nth-child(4) img,
.subnav a:nth-child(5) img {
    animation-name: fadeInRight;
}
@keyframes fadeInLeft {
    0% { opacity: 0; transform: translate3d(-100%, 0, 0); }
    to { opacity: 1; transform: none; }
}
@keyframes fadeInRight {
    0% { opacity: 0; transform: translate3d(100%, 0, 0); }
    to { opacity: 1; transform: none; }
}
@keyframes bounceInDown {
    0% { opacity: 0; transform: translate3d(0, -3000px, 0); }
    60% { opacity: 1; transform: translate3d(0, 25px, 0); }
    75% { transform: translate3d(0, -10px, 0); }
    90% { transform: translate3d(0, 5px, 0); }
    to { transform: none; }
}
.subnav a:hover {
    animation-name: pulse;
    animation-duration: 1s;
    animation-fill-mode: both;
}
@keyframes pulse {
    0% { transform: scaleX(1); }
    50% { transform: scale3d(1.05, 1.05, 1.05); }
    to { transform: scaleX(1); }
}

/* 表格通用 */
.qxtable {
    color: #000;
    background: #fff;
    font-weight: bold;
    word-wrap: break-word;
    text-align: center;
}
.qxtable tr {
    height: 30px;
}
.qxtable th,
.qxtable td {
    border: 1px solid #b60808;
}
.qxtable th {
    font-size: 18px;
    background: #fff89c;
    text-align: center;
    color: red;
}
.qxtable td {
    text-overflow: ellipsis;
    font-size: 16px;
}
.qxtable.left {
    text-align: left;
}
.qxtable.left th {
    text-align: left;
}
.qxtable.yxym {
    table-layout: auto;
    word-wrap: break-word;
}
.qxtable.yxym td {
    font-size: 12pt;
}
.qxtable.yxym tr td:nth-child(2) {
    width: 40%;
}

/* 列表标题 */
.list-title {
    background: linear-gradient(transparent, #dacfcf);
    color: yellow;
    text-shadow: 0px 0px 10px red;
    border-left: 1px solid #76A9BE;
    border-right: 1px solid #76A9BE;
    height: 40px;
    line-height: 40px;
    font-size: 20pt;
    text-align: center;
    border-bottom: 1px solid #000;
    font-weight: bold;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.sup-title {
    font-size: 14pt;
    height: 50px;
    line-height: 50px;
    margin: 5px 0;
    text-align: center;
    color: #fff;
    background: #76A9BE;
    border-radius: 5px;
    text-shadow: 0px 1px 10px #000;
    overflow: hidden;
    border: 1px solid #000;
}

/* 解诗表格 */
.jiesitable {
    width: 100%;
    text-align: center;
    word-wrap: break-word;
    font-size: 13pt;
    table-layout: fixed;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
}
.jiesitable tr {
    height: 30px;
}
.jiesitable th,
.jiesitable td {
    text-overflow: ellipsis;
    border: 1px solid #76A9BE;
}

/* 其他组件 */
.subox {
    margin: 5px 0;
    background: #FFF;
    border-radius: 4px;
}
.ggimg {
    margin: 5px 0;
}
.ggimg a img {
    width: 60px;
    height: 60px;
}
.sideMenu {
    height: 248px;
    border: 1px solid #000;
    border-radius: 5px;
    overflow: hidden;
}
.sideMenu h3 {
    height: 42px;
    line-height: 42px;
    padding-left: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #fff;
    text-align: center;
    background: #000;
    border-bottom: 1px solid #fff;
}
.sideMenu h3 em {
    float: right;
    display: block;
    width: 40px;
    height: 42px;
    background: url('../images/icoAdd.png') no-repeat 16px 12px;
    cursor: pointer;
}
.sideMenu h3.on em {
    background-position: 16px -57px;
}
.sideMenu ul {
    padding: 20px 25px;
    color: #999;
    display: none;
}
.sideMenu ul li {
    float: left;
    width: 25%;
    height: 80px;
}
.sideMenu ul li a {
    display: block;
    width: 90%;
    margin: 0 auto;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: rgba(97, 152, 191, 0.7);
    border-radius: 10px;
    border: 1px solid #fff;
    color: #000e42;
    font-size: 18px;
    transition: all 0.5s;
}
.sideMenu ul li a:hover {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: 1px solid #000;
}

/* 底部 */
.foot {
    margin-bottom: 0px;
    text-align: center;
    height: 89px;
    line-height: 33px;
    background: #3399ff;
    font-size: 1.1rem;
    color: #fff;
}
.copyright {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #000;
}

/* 响应式 */
@media screen and (max-width: 720px) {
    .box, .subnav, .xjbox {
        margin: 5px 5px;
    }
    .subnav a {
        font-size: 11pt;
    }
    .subnav a img {
        width: 67.2px;
        height: 60.8px;
    }
    .ggimg a img {
        width: 40px;
        height: 40px;
    }
    .xjbox table, .listtable td {
        font-size: 10pt;
    }
    .sideMenu ul li a {
        font-size: 12px;
    }
    .img-title {
        width: 90%;
    }
    .img-title h2 {
        letter-spacing: 7px;
    }
    .head-title-img .natural {
        left: 73%;
    }
    .header .logo {
        margin-left: 0px;
    }
    .nav span {
        font-size: 10px;
    }
    .qxtable.yxym td {
        font-size: 12px;
    }
    .qxtable.yxym tr td:nth-child(2) {
        font-size: 13px;
    }
}

/* 开奖组件 */
.kj-lotto {
    padding: 0 2%;
    box-sizing: border-box;
    color: #000;
    font-size: 16px;
    text-align: center;
    font-family: Arial, '微軟雅黑';
    border: 2px solid #3399ff;
}
.kj-lotto a {
    text-decoration: none;
}
.kj-lotto ul {
    margin: 0;
    padding: 0;
}
.kj-lotto ul li {
    list-style: none;
}
.kj-lotto .kj-lotto-tit {
    height: 46px;
    line-height: 46px;
    display: flex;
    justify-content: space-between;
}
.kj-lotto .kj-lotto-tit2 a {
    color: #f00;
}
.kj-lotto .kj-lotto-box ul {
    display: flex;
    justify-content: space-between;
}
.kj-lotto .kj-lotto-box ul li {
    width: 13%;
    height: 115px;
    padding-top: 12px;
    border: solid 1px #ddd;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to top, #eee, #fff);
}
.kj-lotto .kj-lotto-box ul li span {
    width: 61px;
    height: 61px;
    line-height: 61px;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    background-size: 100% 100% !important;
}
.kj-lotto .kj-lotto-box ul li.kj-lotto-red:last-child {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.58);
    border-color: red;
}
.kj-lotto .kj-lotto-box ul li.kj-lotto-blue:last-child {
    box-shadow: 0 0 10px rgb(0, 160, 233);
    border-color: #00a0e9;
}
.kj-lotto .kj-lotto-box ul li.kj-lotto-green:last-child {
    box-shadow: 0 0 10px rgba(0, 128, 0, 0.58);
    border-color: green;
}
.kj-lotto .kj-lotto-box ul li:last-child {
    margin-left: 10px;
}
.kj-lotto .kj-lotto-box ul li em {
    display: block;
    line-height: 1;
    margin-top: 10px;
    font-style: normal;
}
.kj-lotto .kj-lotto-foot {
    height: 46px;
    line-height: 46px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.kj-lotto .kj-lotto-foot2 a {
    width: 80px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    border-radius: 8px;
    display: inline-block;
    background: linear-gradient(to top, #c10000, #f00);
    text-decoration: none;
}
@media screen and (max-width:800px) {
    .kj-lotto { font-size: 15px; }
    .kj-lotto .kj-lotto-tit { height: 40px; line-height: 40px; }
    .kj-lotto .kj-lotto-box ul li { height: 100px; padding-top: 10px; }
    .kj-lotto .kj-lotto-box ul li span { width: 50px; height: 50px; line-height: 50px; font-size: 20px; }
    .kj-lotto .kj-lotto-foot { height: 40px; line-height: 40px; }
    .kj-lotto .kj-lotto-foot2 a { width: 70px; height: 26px; line-height: 26px; }
}
@media screen and (max-width:650px) {
    .kj-lotto { font-size: 14px; }
    .kj-lotto .kj-lotto-box ul li { height: 90px; }
    .kj-lotto .kj-lotto-box ul li span { width: 44px; height: 44px; line-height: 44px; font-size: 18px; }
}
@media screen and (max-width:500px) {
    .kj-lotto { font-size: 13px; }
    .kj-lotto .kj-lotto-box ul li { height: 76px; }
    .kj-lotto .kj-lotto-box ul li span { width: 36px; height: 36px; line-height: 36px; font-size: 16px; }
}
@media screen and (max-width:400px) {
    .kj-lotto .kj-lotto-box ul li { height: 64px; }
    .kj-lotto .kj-lotto-box ul li span { width: 30px; height: 30px; line-height: 30px; font-size: 13px; }
}

/* 轮播/资料组件 */
.bizhong {
    width: 100%;
    margin: 0 auto;
}
.bizhong-box {
    float: left;
    width: 100%;
    display: none;
}
.action-bz {
    display: block;
}
.bizhong-page {
    height: 40px;
    padding-top: 5px;
}
.bizhong-btn {
    float: left;
    width: calc(50% - 7px);
    height: 38px;
    line-height: 38px;
    margin-right: 10px;
    text-align: center;
    display: inline-block;
    background: #aaa;
    border: solid 1px #ccc;
    border-radius: 5px;
    background-image: linear-gradient(to top, #ddd, #fff);
    cursor: pointer;
}
.bizhong-btn:hover {
    background-image: linear-gradient(to bottom, #ddd, #fff);
}
.bizhong-btn.bizhong-next {
    margin-right: 0;
}
.bizhong table {
    border-collapse: collapse;
    font-weight: bold;
}
.bizhong table th {
    padding: 5px 10px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    border: solid 1px #555;
}
.bizhong table thead th {
    color: #f00;
    background: #ff0;
}
.bizhong table tfoot th {
    background: #f00;
}
.bizhong table td {
    padding: 5px 10px;
    color: #0f0;
    border: solid 1px #555;
    background: #000;
}

/* 高手资料列表 */
div.box div.sbgs ul li {
    padding: 8px 1px;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
div.box div.sbgs ul li span.icon {
    margin-right: 6px;
    padding: 4px 5px;
    font-size: 0.8rem;
    color: #fff;
    border-radius: 2px;
    background: #3399ff;
    display: inline-block;
}
div.box div.sbgs ul li span.zz {
    float: right;
    margin-left: 10px;
    font-size: 1.1rem;
    color: #999;
}

/* 成语/单双列表 */
div.box div.sxsm ul li {
    border-bottom: 1px dashed #EEE;
    padding: 8px 0;
    text-align: center;
    font-size: 1.2rem;
}
div.box div.sxsm ul li span {
    font-size: 1.2rem;
    font-weight: bold;
}
div.box div.sxsm ul li u {
    background: #ffff00;
    text-decoration: none;
}

/* 图库相关 */
.linghh ul li {
    float: left;
    width: calc(33% - 3px);
    margin-right: 0px;
    margin-bottom: 10px;
}
.linghh ul li:nth-child(3n) { margin-right: 0; }
.linghh ul li a {
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: solid 1px #ddd;
    border-radius: 10px;
    background: #fff;
    display: block;
}
div.box .linghh img {
    width: 18px;
    max-width: 18px;
    height: auto;
    vertical-align: middle;
}

/* 全年资料 */
.qnzl {
    font-size: 16px;
    width: 100%;
}
.qnzl li {
    width: 33.3%;
    text-align: center;
    float: left;
    line-height: 35px;
    border: #999 solid 1px;
    background: #fff;
}
.qnzl ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 底部导航 */
.cgi-foot-links {
    width: 100%;
    max-width: 720px;
    height: 60px;
    border-top: solid 1px #ddd;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
    background: #fff;
    background-image: linear-gradient(to top, #eee, #fff);
    position: fixed;
    bottom: 0;
    z-index: 3;
}
@media screen and (min-width:720px) {
    .cgi-foot-links { left: 50%; margin-left: -360px; }
}
.cgi-foot-links ul li {
    float: left;
    width: 20%;
    text-align: center;
}
.cgi-foot-links ul li a {
    font-size: 15px;
    color: #555;
}
.cgi-foot-links ul li a.hover,
.cgi-foot-links ul li a:hover {
    color: #f00;
    text-decoration: none;
}
.cgi-foot-links ul li a span {
    height: 34px;
    display: block;
}
.cgi-foot-links ul li a span.cfl1 { background: url(/static/images/cfl4.png) 50% 8px no-repeat; background-size: auto 25px; }
.cgi-foot-links ul li a span.cfl2 { background: url(/static/images/cfl2.png) 50% 8px no-repeat; background-size: auto 25px; }
.cgi-foot-links ul li a span.cfl3 { background: url(/static/images/cfl3.png) 50% 8px no-repeat; background-size: auto 25px; }
.cgi-foot-links ul li a span.cfl4 { background: url(/static/images/cfl1.png) 50% 8px no-repeat; background-size: auto 25px; }
.cgi-foot-links ul li a.hover span.cfl1,
.cgi-foot-links ul li a:hover span.cfl1 { background: url(/static/images/cfl4-2.png) 50% 8px no-repeat; background-size: auto 25px; }
.cgi-foot-links ul li a.hover span.cfl2,
.cgi-foot-links ul li a:hover span.cfl2 { background: url(/static/images/cfl2-2.png) 50% 8px no-repeat; background-size: auto 25px; }
.cgi-foot-links ul li a.hover span.cfl3,
.cgi-foot-links ul li a:hover span.cfl3 { background: url(/static/images/cfl3-2.png) 50% 8px no-repeat; background-size: auto 25px; }
.cgi-foot-links ul li a.hover span.cfl4,
.cgi-foot-links ul li a:hover span.cfl4 { background: url(/static/images/cfl1-2.png) 50% 8px no-repeat; background-size: auto 25px; }

/* 返回顶部 */
#btnTop {
    display: none;
    position: fixed;
    bottom: 300px;
    right: 10px;
    z-index: 1;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
    padding: 1px;
    border-radius: 50px;
}
#btnTop:hover {
    background-color: #9F9F9F;
    opacity: 0.5;
}

/* 弹窗广告 */
.pop-cpt {
    z-index: 999;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.pop-cpt .bd {
    font-family: 微软雅黑;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pop-cpt .bd .img {
    border: 2px solid red;
    position: relative;
    max-width: 85%;
    background-color: white;
    height: auto;
    padding: 18px;
    padding-top: 25px;
    line-height: 25px;
}
.pop-cpt .bd .img img {
    width: 200px !important;
    height: 200px !important;
}
.pop-cpt .bd .pop-close {
    cursor: pointer;
    border-radius: 3px;
    border: 1px solid #ccc;
    font-size: 14px;
    text-align: right;
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 20px;
    z-index: 10;
    color: black;
}

/* 底部黑条 */
#diaa {
    position: fixed;
    z-index: 2;
    width: 100%;
    max-width: 720px;
    bottom: 0;
    height: 50px;
    padding: 0 5px;
}
#dibb {
    position: absolute;
    top: -60px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #071828;
    opacity: 0.85;
}
#dicc a {
    position: absolute;
    top: 10px;
    left: 0;
    display: block;
    width: 20px;
    height: 20px;
    margin-left: 5px;
}
#didd {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 70px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    background-color: #FF0000;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    padding: 0 5px;
    font-weight: bold;
}
#digg {
    position: absolute;
    top: 15px;
    left: 30px;
}

/* 投注按钮 */
.d-betting {
    position: fixed;
    width: 11.667vw;
    height: 11.667vw;
    line-height: 11.3vw;
    border-width: 0.4vw;
    border-style: solid;
    border-color: #fff;
    background-image: linear-gradient(-90deg, #337dd4, #367bc9);
    color: #fff;
    text-align: center;
    z-index: 3;
    border-radius: 50%;
    display: none;
}
.d-betting a {
    font-size: 3.2vw;
    text-decoration: none;
}

/* 刷新按钮 */
.refresh {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    border-radius: 40px;
    box-sizing: unset;
    border: solid 4px rgba(255,255,255,0.8);
    background: rgba(255,0,0,0.8);
    position: fixed;
    right: 10px;
    bottom: 60px;
    z-index: 1;
    cursor: pointer;
}

/* 图库轮播 */
.neimuziliao {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}
.kj_headtop {
    width: 100%;
    float: left;
    height: 50px;
    background: #40A3EF;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 10px 10px 0 0;
    color: #fff;
}
.kj_COMMONbox {
    float: left;
    width: 100%;
    display: none;
}
.action {
    display: block;
}
.neimudt {
    height: 30px;
    line-height: 30px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #e91e63;
    background: #fff;
}
.pre, .next {
    display: block;
    position: absolute;
    top: 8px;
    cursor: pointer;
}
.pre {
    left: 8px;
}
.next {
    right: 8px;
}

/* ---------- aaa.css 现代表格样式（覆盖旧表格） ---------- */
.modern-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
.modern-table th {
    background: linear-gradient(135deg, #1e3c72 0%, #2b4c7c 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 16px;
    text-align: center;
    letter-spacing: 0.5px;
    border: none;
}
.modern-table th:first-child {
    border-top-left-radius: 20px;
}
.modern-table th:last-child {
    border-top-right-radius: 20px;
}
.modern-table td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid #edf2f7;
    background-color: #ffffff;
    transition: background 0.2s ease;
    font-size: 15px;
    color: #1e293b;
}
.modern-table tr:hover td {
    background-color: #f8fafc;
}
.modern-table tr:last-child td:first-child {
    border-bottom-left-radius: 20px;
}
.modern-table tr:last-child td:last-child {
    border-bottom-right-radius: 20px;
}
.period-badge {
    background: #eef2ff;
    color: #1e3c72;
    padding: 4px 12px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}
.content-highlight {
    background-color: #fef9c3;
    padding: 0 4px;
    border-radius: 6px;
    font-weight: 500;
    color: #854d0e;
}
.result-badge {
    background: linear-gradient(120deg, #f3f4f6, #ffffff);
    padding: 6px 16px;
    border-radius: 40px;
    font-weight: 600;
    color: #0f172a;
    display: inline-block;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* 24码表格样式（覆盖原有 .qxtable 使其现代化） */
.qxtable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.02);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}
.qxtable th {
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5282 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 12px;
    text-align: center;
    letter-spacing: 0.3px;
    border: none;
}
.qxtable th:first-child {
    border-top-left-radius: 24px;
}
.qxtable th:last-child {
    border-top-right-radius: 24px;
}
.qxtable td {
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid #edf2f7;
    background-color: #ffffff;
    transition: background 0.2s ease;
    font-size: 15px;
    color: #1a202c;
}
.qxtable tr:hover td {
    background-color: #f7fafc;
}
.qxtable tr:last-child td:first-child {
    border-bottom-left-radius: 24px;
}
.qxtable tr:last-child td:last-child {
    border-bottom-right-radius: 24px;
}
.period-text {
    font-weight: 600;
    color: #2d3748;
    background: #edf2f7;
    display: inline-block;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.9rem;
}
/* 复用 content-highlight 和 result-badge 已定义 */

@media (max-width: 640px) {
    .modern-table th, .modern-table td,
    .qxtable th, .qxtable td {
        padding: 10px 8px;
        font-size: 13px;
    }
    .period-badge, .result-badge, .period-text {
        font-size: 0.8rem;
        padding: 2px 8px;
    }
}

.list-title {
    text-align: center;
    line-height: 40px; /* 确保垂直居中 */
    height: 40px;
    display: block;
}
/* 确保合并行的文字可见 */
.qxtable td[colspan="3"] font {
    color: #fff !important;
    background-color: #397994;
    display: block;
    text-align: center;
}


 /* 修复核心：确保容器相对定位，文字绝对定位 */
        .biaoti {
            position: relative;       /* 关键：让内部绝对定位相对于此容器 */
            width: 100%;
            max-width: 720px;
            margin: 0 auto;
        }

        /* 图片正常显示，铺满宽度 */
        .biaoti img {
            display: block;
            width: 100%;
            height: auto;
            /* 可选：圆角、阴影（不影响覆盖） */
            border-radius: 16px;
        }

        /* 文字容器覆盖整个图片区域 */
        .title-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;   /* 垂直居中 */
            align-items: center;       /* 水平居中 */
            text-align: center;
            /* 可选：半透明背景遮罩，增强文字可读性（如果不想要，移除即可） */
            background: rgba(0, 0, 0, 0.4);
            border-radius: 16px;       /* 与图片圆角一致 */
            /* 文字阴影，防止浅色背景看不清 */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
            /* 保证层级高于图片 */
            z-index: 2;
        }

        /* 内部文字样式 */
        .text1 {
            color: #fff;
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        .text2 {
            color: #fff;
            font-size: 1.5rem;
            letter-spacing: 2px;
        }

        /* 移动端适配 */
        @media (max-width: 640px) {
            .text1 { font-size: 1.5rem; }
            .text2 { font-size: 1.2rem; }
        }