
/* 返回顶部按钮样式 */
/* 参考源代码：files/4321.com/main-token.html 第1494-1504行 */
/* 背景图片已改为通过 JSON 配置动态加载 */
#back-to-top[data-v-5f9750e0] {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 5px;
  width: 55px;
  height: 60px;
  background-size: cover;
  cursor: pointer;
  z-index: 9999;
}
#fullscreenImage[data-v-7ddba79b] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  text-align: center;
}
#fullscreenImage img[data-v-7ddba79b] {
  max-width: 100%;
  max-height: 100%;
  cursor: pointer;
}
/* 组件根元素：使用 Flex 布局实现整体宽度分配，模拟原网页 table 布局 */
.lottery-item[data-v-2a73e36f] {
	display: flex;
	align-items: stretch;
	background-color: #ffffff;
	/* 白色背景色 */
	margin: 1px;
}

/* 期号信息：占 20% 宽度（使用 flex: 0 0 20% 实现固定宽度，不允许放大或缩小） */
.period-info[data-v-2a73e36f] {
	flex: 0 0 20%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/* 开奖历史链接：与刷新按钮相同的样式（红色字体，黄色背景） */
.period-info a[data-v-2a73e36f] {
	font-weight: bold;
	color: rgb(255, 0, 0);
	background: #ff0;
}
.period-info p[data-v-2a73e36f] {
	font-weight: bold;
	color: #333;
}

/* 球号容器：使用 flex 布局让球号均匀分布，占 66% 宽度（6个球号 × 11%） */
.balls-container[data-v-2a73e36f] {
	display: flex;
	align-items: stretch;
	flex: 0 0 66%;
}

/* 刷新时号码区背景色变成灰色 */
.balls-container.refreshing[data-v-2a73e36f] {
	background-color: #808080;
}

/* 刷新时号码区的球号项背景也变成灰色 */
.balls-container.refreshing .ball-item[data-v-2a73e36f] {
	background-color: #808080;
}

/* 刷新时号码区的号码背景也变成灰色 */
.balls-container.refreshing .num[data-v-2a73e36f] {
	background-color: #808080;
}

/* 刷新时生肖区保持白色背景（不设置灰色） */

/* 特码容器刷新时背景色也变成灰色 */
.special-ball-container.refreshing[data-v-2a73e36f] {
	background-color: #808080;
}

/* 刷新时特码区的球号项背景也变成灰色 */
.special-ball-container.refreshing .ball-item[data-v-2a73e36f] {
	background-color: #808080;
}

/* 刷新时特码区的号码背景也变成灰色 */
.special-ball-container.refreshing .num[data-v-2a73e36f] {
	background-color: #808080;
}

/* 刷新时特码区的生肖保持白色背景（不设置灰色） */

/* 刷新按钮：占 3% 宽度 */
.refresh-btn[data-v-2a73e36f] {
	flex: 0 0 3%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 2px;
}

/* 刷新按钮样式 */
.refresh-btn button[data-v-2a73e36f] {
	display: flex;
	flex-direction: column;
}

/* 刷新按钮文字：上 */
.refresh-text-top[data-v-2a73e36f] {
	background: #ff0;
	font-weight: bold;
	color: #f30;
	font-size: 15px;
}

/* 刷新按钮文字：下 */
.refresh-text-bottom[data-v-2a73e36f] {
	background: #ff0;
	font-weight: bold;
	color: #f30;
	font-size: 15px;
}

/* 特码容器：使用 flex 布局让特码均匀分布，占 11% 宽度 */
.special-ball-container[data-v-2a73e36f] {
	display: flex;
	align-items: stretch;
	flex: 0 0 11%;
}

/* 球号项：每个球号包含号码和生肖上下排列
 * 使用 flex: 1 实现均匀分布（6个球号平均分配 66% 的宽度，每个约 11%）
 * 或者使用 flex: 0 0 calc(66% / 6) 精确控制每个球号占父容器的 1/6
 * 这里使用 flex: 1 更简洁，效果等同于每个球号占整个容器的约 11%
 */
.ball-item[data-v-2a73e36f] {
	flex: 1;
	margin: auto;
	text-align: center;
	box-sizing: border-box;
	border: 1px solid #ddd;
	border-right: 0;
}

/* 最后一个球号项添加右边框 */
.balls-container .ball-item[data-v-2a73e36f]:last-child,
.special-ball-container .ball-item[data-v-2a73e36f]:last-child {
	border-right: 1px solid #ddd;
}

/* 号码样式：白色文字，加粗 */
.num[data-v-2a73e36f] {
	font-size: 18px;
	line-height: 20px;
	height: 20px;
	color: #fff;
	font-weight: bold;
	/* 确保文字居中显示 */
	display: flex;
	align-items: center;
	justify-content: center;
	/* ⭐ 关键：背景颜色变化有过渡效果，让替换更平滑 */
	transition: background-color 0.3s ease;
}

/* 刷新时的占位符样式：确保文字居中显示 */
.num.loading-placeholder[data-v-2a73e36f] {
	background-color: transparent;
}

/* 占位符样式：灰色背景（未开出的位置），白色字体，灰色边框 */
.num.ball-empty[data-v-2a73e36f] {
	background-color: #808080;
	color: #fff;
}

/* 球号颜色 class */
.num.ball-red[data-v-2a73e36f] {
	background-color: rgb(231, 22, 7);
}
.num.ball-blue[data-v-2a73e36f] {
	background-color: rgb(35, 137, 233);
}
.num.ball-green[data-v-2a73e36f] {
	background-color: rgb(31, 182, 29);
}
.num.ball-gray[data-v-2a73e36f] {
	background-color: #999999;
}

/* 生肖样式：黑色文字，白色背景，加粗 */
.txt[data-v-2a73e36f] {
	font-size: 18px;
	line-height: 20px;
	height: 20px;
	background: #fff;
	color: #333;
	font-weight: bold;
}

/* 分隔线样式（如果需要） */
.divider[data-v-b1b53cc4] {
  height: 1px;
  background: #ddd;
  margin: 5px 0;
}
.logo[data-v-f0f0b467] {
  display: flex;
  flex-direction: row;
  padding: 5px 0 0 0;
}
.logo img[data-v-f0f0b467] {
  display: block;
  height: 50px;
  width: auto;
  padding-left: 8px;
}
.logo img.sublogo-img[data-v-f0f0b467] {
  max-width: 45%;
  margin-left: -50px;
}
.home-nav[data-v-f0f0b467] {
  position: relative;
  z-index: 10;
  background-color: #fff;
}
.home-nav .home-nav-list[data-v-f0f0b467] {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 5px;
  background: #fff;
  text-align: center;
  padding: 2px 0;
  margin: 0;
}
.home-nav .tab[data-v-f0f0b467] {
  width: 50%;
  padding: 5px 0;
  font-weight: bold;
  color: #dc0000;
  background: #eee;
  font-size: 24px;
  border-radius: 40px;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.home-nav .tab.active[data-v-f0f0b467] {
  font-weight: bold;
  color: #000000;
  background: rgba(134, 218, 255, 0.7215686275);
}
.home-nav .tab img[data-v-f0f0b467] {
  width: 25px;
  height: 25px;
  margin-right: 8px;
}
@media screen and (max-width: 408px) {
.home-nav .tab[data-v-f0f0b467] {
    font-size: 21px;
}
}.html-loader-container[data-v-c5008b12] {
  width: 100%;
}
.html-loader-error[data-v-c5008b12] {
  padding: 16px;
  background-color: #fee;
  border: 1px solid #fcc;
  border-radius: 4px;
  color: #c33;
}
.html-loader-error .error-title[data-v-c5008b12] {
  font-weight: bold;
  margin-bottom: 8px;
}
.html-loader-error .error-message[data-v-c5008b12] {
  font-size: 14px;
}
/* 页脚样式已移至 HTML 文件中 */

/* 引入全局通用样式 */
* {
    border: 0;
    padding: 0;
    margin: 0;
}
html {
    font-size: 10px;
    background: #F4F4F4;
}
@media screen and (max-width: 420px) {
html {
        font-size: 9px;
}
}
body {
    font-family: 'Microsoft YaHei', Arial, Helvetica;
    max-width: 720px;
    margin: 0 auto;
    color: #000;
    overflow-x: hidden;
    font-size: 14px;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}
ol,
ul,
li {
    list-style: none
}
img {
    max-width: 100%;
    border: 0;
}
#app {
    padding-top: 150px;
}
table {
    empty-cells: show;
    border-collapse: collapse;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0
}
a {
    color: #000000;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
ul {
    margin: 1px;
}
.post-list {
    text-align: center;
}
.post-list li {
    padding: 3px 3px;
    border-radius: 0px;
    background-color: #fff;
}
.post-list a {
    height: 36px;
    line-height: 36px;
    text-align: center;
    border: solid 1px #ddd;
    border-radius: 8px;
    background: #eee;
    background-image: linear-gradient(to top, #fff, #eee, #fff);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: block;
    font-size: 19px;
    font-weight: bold;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    padding-right: 4px;
}
.post-list a .ci {
    font-size: 23px;
}
.post-list a .cc {
    font-size: 23px;
}
#top-anchor[data-v-bb885863] {
    position: absolute;
    top: 50px
}
.float-btn-group[data-v-bb885863] {
    bottom: 80px;
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 5px
}
.float-btn-group img[data-v-bb885863] {
    cursor: pointer;
    height: auto;
    width: 55px
}
@media (max-width: 375px) {
.float-btn-group img[data-v-bb885863] {
        cursor: pointer;
        height: auto;
        width: 48px
}
.float-btn-group[data-v-bb885863] {
        bottom: 90px;
        right: 5px
}
}
.lgebt {
    width: 100%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    border-radius: 5px 5px 0 0;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
}
.bt1 {
    width: 50%;
    padding: 2px 0px 4px 0px;
}
.bt2 {
    width: 50%;
    border-left: 1px solid #ccc;
    padding: 2px 0px 4px 0px;
}
.liangtu {
    border: 1px solid #ccc;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    white-space: nowrap;
    font-family: Arial, 微软雅黑;
    font-weight: 900;
    color: rgb(0, 0, 0);
    background-color: #fff;
    font-size: 30px;
}
.liangtu .tu1 img {
    padding: 3% 1.5% 3% 3%;
}
.liangtu .tu2 img {
    padding: 3% 3% 3% 1.5%;
}
.liangtu .tu3 img {
    padding: 3% 1.5% 3% 3%;
}
.liangtu .tu4 img {
    padding: 3% 3% 3% 1.5%;
}
.box .tu1 {
    flex-basis: 50%;
}
.box .tu2 {
    flex-basis: 50%;
    border-left: 1px solid #ccc;
}
.box .tu1 img,
.box .tu2 img {
    height: 329px;
}
@media screen and (max-width: 600px) {
.box .tu1 img,
    .box .tu2 img {
        height: 367px;
}
}
@media screen and (max-width: 550px) {
.box .tu1 img,
    .box .tu2 img {
        height: 343px;
}
}
@media screen and (max-width: 500px) {
.box .tu1 img,
    .box .tu2 img {
        height: 288px;
}
}
@media screen and (max-width: 480px) {
.box .tu1 img,
    .box .tu2 img {
        height: 240px;
}
}
@media screen and (max-width: 450px) {
.box .tu1 img,
    .box .tu2 img {
        height: 224px;
}
}
@media screen and (max-width: 380px) {
.box .tu1 img,
    .box .tu2 img {
        height: 224px;
}
}
.box .tu3 {
    flex-basis: 50%;
}
.box .tu4 {
    flex-basis: 50%;
    border-left: 1px solid #ccc;
}
.box .tu3 img,
.box .tu4 img {
    height: 329px;
}
@media screen and (max-width: 600px) {
.box .tu3 img,
    .box .tu4 img {
        height: 278px;
}
}
@media screen and (max-width: 550px) {
.box .tu3 img,
    .box .tu4 img {
        height: 265px;
}
}
@media screen and (max-width: 500px) {
.box .tu3 img,
    .box .tu4 img {
        height: 250px;
}
}
@media screen and (max-width: 480px) {
.box .tu3 img,
    .box .tu4 img {
        height: 240px;
}
}
@media screen and (max-width: 450px) {
.box .tu3 img,
    .box .tu4 img {
        height: 193px;
}
}
@media screen and (max-width: 380px) {
.box .tu3 img,
    .box .tu4 img {
        height: 187px;
}
}
.tzlb-s li {
    background: #fff;
    padding: .3rem 0;
    line-height: 1.4;
}
.ziliao .dudu {
    font-size: 18px;
}
@media screen and (max-width: 480px) {
.ziliao .dudu {
        font-size: 16px;
}
}
@media screen and (max-width: 420px) {
.ziliao .dudu {
        font-size: 15px;
}
}
@media screen and (max-width: 380px) {
.ziliao .dudu {
        font-size: 14px;
}
}
.list-title1 {
    font-size: 23px;
    text-align: center;
    color: #FFFF00;
    font-weight: bold;
    background: #FF0000;
    padding: 2px 0px 4px 0px;
    text-shadow: 1px 1px 1px #000;
    height: 32px;
    line-height: 28px;
}
@media screen and (max-width: 480px) {
.list-title1 {
        font-size: 19px;
}
}
@media screen and (max-width: 440px) {
.list-title1 {
        font-size: 18px;
}
}
@media screen and (max-width: 410px) {
.list-title1 {
        font-size: 17px;
}
}
@media screen and (max-width: 380px) {
.list-title1 {
        font-size: 16px;
}
}
@media screen and (max-width: 350px) {
.list-title1 {
        font-size: 15px;
}
}
@media screen and (max-width: 320px) {
.list-title1 {
        font-size: 14px;
}
}
.amauff li a {
    background: linear-gradient(to top, #a9d7f2, #ffffff, #a9d7f2);
}
@media screen and (max-width: 580px) {
.blgg td {
        font-size: 15pt;
}
}
@media screen and (max-width: 480px) {
.blgg td {
        font-size: 14pt;
}
}
@media screen and (max-width: 408px) {
.blgg td {
        font-size: 13pt;
}
}
.lianghangbbs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    unicode-bidi: isolate;
    background-color: #fff;
}
.lianghangbbs li {
    width: 50%;
}
.ctzq2 {
    table-layout: fixed;
    font-size: 16px;
    text-align: center;
    background: #fff;
    font-family: '宋体';
}
.ctzq2 td {
    line-height: 1.9;
    padding: 5px 2px;
    border: dashed 1px #c0c0c0;
}
@media screen and (max-width:720px) {
.ctzq2 {
        font-size: 13px;
}
}
.ctzq2 td {
    color: #000;
    /* 设置链接的默认颜色，可以根据需要更改 */
    font-weight: bold;
    text-decoration: none;
    /* 去除下划线 */
}
.djckkjjl {
    border-radius: 5px;
    font-size: 22pt;
    text-align: center;
    font-weight: bold;
    color: #fff;
    overflow: hidden;
}
@media screen and (max-width: 480px) {
.djckkjjl {
        font-size: 19pt;
}
}
@media screen and (max-width: 420px) {
.djckkjjl {
        font-size: 18pt;
}
}
@media screen and (max-width: 380px) {
.djckkjjl {
        font-size: 17pt;
}
}
.box8 {
    border: 2px solid #64bef1;
    margin: 5px 0;
    border-radius: 5px;
    overflow: hidden;
}
.gghh a {
    height: 35px;
    line-height: 31px;
    border: solid 1px #ddd;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #eee;
    background-image: linear-gradient(to top, #fff, #eee, #fff);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: block;
    font-weight: bold;
    color: #000;
}
.gghh {
    border: 1px solid #ccc;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
.gghh li img {
    height: 22px;
    width: 22px;
    margin-top: -4px;
}
.gghh li b {
    color: #ff0000;
}
.gghh li {
    padding: 3px 3px;
    border-radius: 0px;
    background-color: #fff;
    font-size: 22px;
}
@media screen and (max-width: 580px) {
.gghh li {
        font-size: 22px;
}
}
@media screen and (max-width: 480px) {
.gghh li {
        font-size: 19px;
}
}
@media screen and (max-width: 380px) {
.gghh li {
        font-size: 18px;
}
}
@media screen and (max-width: 350px) {
.gghh li {
        font-size: 17px;
}
}
@media screen and (max-width: 320px) {
.gghh li {
        font-size: 16px;
}
}
.ggwz a {
    height: 45px;
    line-height: 45px;
    background: #1fb61d;
    background-image: linear-gradient(to top, #10f90d, #10f90d, #10f90d);
    display: block;
    font-weight: bold;
    color: #000;
    border-top: 0.2px solid #ffffff;
}
.ggwz {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
.ggwz li {
    border-radius: 0px;
    background-color: #fff;
    font-size: 22px;
}
.xuxian {
    border: 1px dashed #ccc;
    /* màu đen, nét đứt */
}
.tttt {
    padding-top: 6px;
}
.hover-no {
    background: rgb(70, 200, 144);
    color: #fff;
}
.shipin-qs .hover-yes {
    background: #ffffff;
    color: #006087;
}
.dis {
    display: normal;
}
.undis {
    display: none;
}
.shipin-qs {
    width: 100%;
    display: flex;
    justify-content: space-around;
    /* hoặc space-between / center nếu muốn căn chỉnh khác */
    padding: 4px;
    margin: 0;
}
.shipin-qs li {
    width: 49%;
    display: flex;
    justify-content: center;
}
.shipin-qs li button {
    width: 100%;
    /* hoặc cụ thể: 100px, 50% nếu muốn chia đều */
    max-width: 720px;
    /* Giới hạn không bị quá to nếu màn hình rộng */
    border-radius: 8px;
    padding: 3px 5px 3px 5px;
    padding-right: 3px;
}
.shipin-qs .dis {
    display: normal
}
.shipin-qs .undis {
    display: none
}
.shipin-mtbl {
    width: 100%;
    border-collapse: separate;
    --tw-border-spacing-x: 0px;
    --tw-border-spacing-y: 0px;
    border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
    text-align: center;
    --tw-text-opacity: 1;
    color: rgb(229 35 5 / var(--tw-text-opacity));
    word-break: break-word
}
.shipin-mtbl tr:last-child td:first-child {
    border-bottom-left-radius: 6px
}
.shipin-mtbl tr:last-child td:last-child {
    border-bottom-right-radius: 6px
}
.shipin-mtbl td {
    padding: 0;
    line-height: 22px
        /*;position: relative;*/
}
.shipin-mtbl td img {
    width: 100%
}
/*.shipin-mtbl td a{position: absolute;right: 10px;bottom: 10px;background-color: #F14555;font-size: 12px;padding: 3px 8px;border-radius: 6px;color: #fff;font-weight: bold;left: unset;top: unset;text-decoration: none;}*/
.shipin-mtbl td:first-child {
    width: 65px;
    text-align: center
}
@media (min-width: 375px) {
.shipin-mtbl td:first-child {
        width: 82px
}
}
@media (min-width: 425px) {
.shipin-mtbl td:first-child {
        width: 90px
}
}
.shipin-mtbl td:last-child {
    width: 55px;
    text-align: center
}
@media (min-width: 375px) {
.shipin-mtbl td:last-child {
        width: 55px
}
}
@media (min-width: 425px) {
.shipin-mtbl td:last-child {
        width: 80px
}
}
.shipin-mtbl td:nth-child(2) {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 500
}
@media (min-width: 375px) {
.shipin-mtbl td:nth-child(2) {
        font-size: 1rem;
        line-height: 1.5rem
}
}
b23-tbl.m td:nth-child(2) {
    word-spacing: 4px
}
@media (max-width: 360px) {
.shipin-mtbl td:nth-child(2) p[style],
    .shipin-mtbl td:nth-child(2) div[style],
    .shipin-mtbl td:nth-child(2) span[style] {
        font-size: 12px !important
}
}
.shipin-mtbl td:last-child,
.shipin-mtbl td:first-child {
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 250 / var(--tw-bg-opacity));
    font-size: 10px;
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity))
}
@media (min-width: 375px) {
.shipin-mtbl td:last-child,
    .shipin-mtbl td:first-child {
        font-size: .875rem;
        line-height: 1.25rem
}
}
@media (min-width: 425px) {
.shipin-mtbl td:last-child,
    .shipin-mtbl td:first-child {
        font-size: 1rem;
        line-height: 1.5rem
}
}
.shipin-mtbl td:last-child {
    font-weight: 500
}
@media (min-width: 375px) {
.shipin-mtbl td:last-child {
        font-size: .75rem;
        line-height: 1rem
}
}
.shipin-mtbl td.td1 {
    font-size: 1.1rem
}
.shipin-mtbl td.td2 {
    font-size: 1.4rem;
    font-weight: bold
}
.shipin-mtbl td.td2 span {
    color: #0ff
}
.shipin-mtbl td.td2 b {
    color: #f00;
    background: #ff0
}
.shipin-mtbl td.td3 {
    font-size: 1.1rem;
}
#thumbnails {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    cursor: grab;
}
.shipin-qs li button {
    font-size: 22px;
}
.cg {
    height: 564px;
}
@media (max-width: 681px) {
.cg {
        height: 534px;
}
.shipin-qs li button {
        font-size: 23px;
}
}
@media (max-width: 641px) {
.cg {
        height: 480px;
}
}
@media (max-width: 601px) {
.cg {
        height: 465px;
}
}
@media (max-width: 571px) {
.cg {
        height: 441px;
}
}
@media (max-width: 541px) {
.cg {
        height: 414px;
}
}
@media (max-width: 501px) {
.cg {
        height: 414px;
}
}
@media (max-width: 481px) {
.cg {
        height: 408px;
}
.shipin-qs li button {
        font-size: 21px;
}
}
@media (max-width: 451px) {
.cg {
        height: 390px;
}
.shipin-qs li button {
        font-size: 20px;
}
}
@media (max-width: 421px) {
.cg {
        height: 374px;
}
.shipin-qs li button {
        font-size: 19px;
}
}
@media (max-width: 381px) {
.cg {
        height: 366px;
}
.shipin-qs li button {
        font-size: 18px;
}
}
@media (max-width: 351px) {
.cg {
        height: 333px;
}
.shipin-qs li button {
        font-size: 17px;
}
}
.riqi {
    border-radius: 5px;
    margin: 5px 0px 0 0px;
    font-size: 12pt;
    text-align: center;
    font-weight: bold;
    color: #fff;
    border: 2px solid #64bef1;
    overflow: hidden;
    background-image: linear-gradient(to right, #64bef1, #64bef1, #64bef1, #64bef1, #64bef1, #64bef1, #64bef1);
    filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#99000000, endcolorstr=#99000000);
}
.grid2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
    margin: 0 auto;
    /* 猫庐漏莽陆鈥樏β犅济ヂ扁€γぢ嘎?*/
    text-align: center;
    background-color: #f7f2f2;
    padding: 10px 0px;
}
.grid-g2 {
    height: 250px;
    overflow: hidden;
    position: relative;
    padding: 0px 10px 30px 10px;
    visibility: visible;
}
.grid-g2 p {
    color: #000;
    font-size: 18px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(247, 241, 241, 0.7);
    margin: 0;
    padding: 1px;
    box-sizing: border-box;
}
.grid2 img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    box-shadow: 1px 1px 5px rgb(65, 63, 63);
}
.grid2 img.active2 {
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
}
.overlay2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}
@media screen and (max-width: 600px) {
.grid-g2 {
        height: 200px;
}
}
@media screen and (max-width: 500px) {
.grid-g2 {
        height: 154px;
}
}
.nav {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    cursor: grab;
    padding-bottom: .5rem;
    gap: 10px;
}
.nav li {
    list-style: none;
}
.btn {
    padding: 7px 15px;
    border-radius: 20px;
    font-weight: bold;
    border: 0.7px solid #0070c0;
    background-color: white;
    color: #0070c0;
    cursor: pointer;
    font-size: 16px;
}
.btn.active {
    background-color: #E91E63;
    color: #ffffff;
    border-color: #3a5f2d;
}
.nav1 {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    cursor: grab;
    padding-bottom: .5rem;
    gap: 10px;
}
.nav1 li {
    list-style: none;
}
.nav3 {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    cursor: grab;
    padding-bottom: .5rem;
    gap: 10px;
}
.nav3 li {
    list-style: none;
}
.nav5 {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    cursor: grab;
    padding-bottom: .5rem;
    gap: 10px;
}
.nav5 li {
    list-style: none;
}
.nav6 {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    cursor: grab;
    padding-bottom: .5rem;
    gap: 10px;
}
.nav6 li {
    list-style: none;
}
.nav7 {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    cursor: grab;
    padding-bottom: .5rem;
    gap: 10px;
}
.nav7 li {
    list-style: none;
}
.nav8 {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    cursor: grab;
    padding-bottom: .5rem;
    gap: 10px;
}
.nav8 li {
    list-style: none;
}
.nav9 {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    cursor: grab;
    padding-bottom: .5rem;
    gap: 10px;
}
.nav9 li {
    list-style: none;
}
.haoju {
    font-size: 18px;
}
@media screen and (max-width: 480px) {
.haoju {
        font-size: 17px;
}
}
@media screen and (max-width: 420px) {
.haoju {
        font-size: 16px;
}
}
@media screen and (max-width: 400px) {
.haoju {
        font-size: 15px;
}
}
@media screen and (max-width: 380px) {
.haoju {
        font-size: 14px;
}
}
* {
    margin: 0;
    padding: 0;
    word-break: break-all;
    word-wrap: break-word;
    box-sizing: border-box;
    scroll-margin-top: 120px;
}
.conmemay {
    border-collapse: collapse;
    border-spacing: 0;
    /* line-height: 1.3; */
}
#tabwangzw {
    color: #000;
}
#tabwangzw .tuzhiwangzwbox {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}
#tabwangzw .tuzhiwangzwbox ul {
    padding: 2px;
    height: 50px;
    background: #64bef1
}
#tabwangzw .tuzhiwangzwbox li {
    float: left;
    width: 50%;
    height: 40px;
    line-height: 36px;
    border: solid 2px #fff;
    box-sizing: border-box;
    cursor: pointer;
    background: #eee;
    border-radius: 30px;
}
#tabwangzw .tuzhiwangzwbox li.hover {
    color: #fff;
    background: #0a5cda;
}
#tabwangzw .tuzhiwangzwbox li.hover font {
    color: #fff !important;
}
/* #tabwangzw .Contentbox - 空规则集已删除 */
#tabwangzw .Contentbox img {
    width: 100%;
    height: auto;
}
#fixedElement {
    max-width: 720px;
    width: 100%;
    color: white;
    text-align: center;
    z-index: 0;
    /* đảm bảo phần tử nằm trên cùng */
    transition: top 0.3s ease;
    /* Hiệu ứng mượt mà khi cố định */
}
#fixedElement.fixed {
    position: fixed;
    top: 87px;
}
.baomaqgBox4 {
    background: #fff;
    padding: 0;
    margin: 0;
    display: block;
    height: 56px;
    width: 100%;
    border: none;
}
.header {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 720px;
    background: #edeff0;
}
@media screen and (max-width: 374px) {
.home-nav.fixed {
        position: fixed;
        top: 99px;
}
}
@media screen and (max-width: 408px) {
.home-nav.fixed {
        position: fixed;
        top: 101px;
}
}
@media screen and (max-width: 580px) {
.home-nav.fixed {
        position: fixed;
        top: 101px;
}
}
.home-nav.fixed {
    position: fixed;
    top: 101px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 720px;
    width: 100%;
    border: none;
}
.home-nav {
    position: relative;
    z-index: 10;
}
.home-nav table {
    background: #fff;
    width: 100%;
    text-align: center;
}
.home-nav .tam {
    padding-right: 3px;
}
.home-nav .thk {
    padding-left: 3px;
}
.konhge {
    margin-top: 141px;
}
.djxgam.fixed {
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 720px;
    width: 100%;
    border: none;
    padding: 0 .0rem .1rem .0rem;
    z-index: 1000;
}
.home-nav {
    position: relative;
    z-index: 10;
}
.home-nav a {
    display: inline-block;
    width: 100%;
    padding: 3px 0;
    font-weight: bold;
    text-decoration: none;
    color: #dc0000;
    background: #efefef6b;
    font-size: 26px;
    border-radius: 40px;
}
.home-nav a.active {
    font-weight: bold;
}
.home-nav a.active {
    color: #000000;
    background: #86daffb8;
}
.tam img {
    width: 25px;
    margin-right: 8px;
    vertical-align: middle;
}
.thk img {
    width: 25px;
    margin-right: 8px;
    vertical-align: middle;
}
@media screen and (max-width: 580px) {
.home-nav a {
        display: inline-block;
        width: 100%;
        padding: 3px 0;
        font-weight: bold;
        text-decoration: none;
        color: #023b95;
        background: #eee;
        border-radius: 0px;
        font-size: 25px;
        border-radius: 40px;
}
}
@media screen and (max-width: 480px) {
.home-nav a {
        display: inline-block;
        width: 100%;
        padding: 3px 0;
        font-weight: bold;
        text-decoration: none;
        color: #dc0000;
        background: #eee;
        border-radius: 0px;
        font-size: 24px;
        border-radius: 40px;
}
}
@media screen and (max-width: 408px) {
.home-nav a {
        display: inline-block;
        width: 100%;
        padding: 5px 0;
        font-weight: bold;
        text-decoration: none;
        color: #dc0000;
        background: #eee;
        border-radius: 0px;
        font-size: 21px;
        border-radius: 40px;
}
}
@media screen and (max-width: 374px) {
.home-nav a {
        display: inline-block;
        width: 100%;
        padding: 6px 0;
        font-weight: bold;
        text-decoration: none;
        color: #dc0000;
        background: #eee;
        border-radius: 0px;
        font-size: 20px;
        border-radius: 40px;
}
}
.nav2 {
    font-size: 16px;
}
.nav2 ul {
    display: flex;
    justify-content: space-between;
}
.nav2 ul li {
    width: 100%;
    box-sizing: border-box;
    padding: 0 1px;
    font-weight: bold;
}
.nav2 ul li a {
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background: #d19314;
}
@media screen and (max-width: 720px) {
.nav2 ul li a {
        height: 40px;
        line-height: 16px;
        padding-top: 4px;
        font-size: 15px;
}
.nav2 ul li a span {
        display: block;
}
}
.p-all {
    padding: 0 .5rem .5rem .5rem;
}
.list-title {
    background: linear-gradient(transparent, #ffffff);
    font-size: 23px;
    text-align: center;
    color: #000000;
    font-weight: bold;
    padding: 2px 0px 4px 0px;
    text-shadow: 1px 1px 1px #ffffff;
}
.box {
    border: 2px solid #fafafa;
    margin: 5px 0;
    border-radius: 5px;
    overflow: hidden;
    background: linear-gradient(to right, #78d6ff, #78d6ff);
}
@media screen and (max-width: 480px) {
.list-title {
        font-size: 21px;
}
}
@media screen and (max-width: 440px) {
.list-title {
        font-size: 20px;
}
}
@media screen and (max-width: 410px) {
.list-title {
        font-size: 19px;
}
}
@media screen and (max-width: 380px) {
.list-title {
        font-size: 18px;
}
}
@media screen and (max-width: 350px) {
.list-title {
        font-size: 17px;
}
}
@media screen and (max-width: 320px) {
.list-title {
        font-size: 16px;
}
}
.list-title2 {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    padding: 2px 0px 4px 0px;
    /*text-shadow: 1px 1px 1px #ffffff;*/
}
/* .list-title123 Specificity: (0, 1, 0) {
    line-height: 28;
    height: 32px;
    font-size: 23px;
    text-align: center;
    background: #df0000;
    color: #ff0;
    font-weight: bold;
    padding: 2px 0px 4px 0px;
    text-shadow: 1px 1px 1px #000;
} */
.zlbt {
    font-size: 24px;
    font-weight: bold;
    color: #0037ff;
}
.wxwm td {
    border: 1px solid #ccc;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
    line-height: 1.7;
}
.tuijian {
    text-align: center;
    color: #000;
    font-weight: bold;
}
.tuijian li {
    font-size: 20px;
}
.tzlb-s li {
    background: #fff;
    padding: .3rem 0;
    line-height: 1.4;
}
.tzlb-s i {
    display: inline-block;
    padding: 1px 3px;
    border-radius: 3px;
    background: #ffff00;
    color: #f30;
    font-size: 16px;
    font-style: normal;
}
.tzlb-s em {
    display: inline-block;
    padding: 1px 3px;
    border-radius: 3px;
    background: #00cc66;
    color: #fff;
    font-size: 16px;
    font-style: normal;
}
.tuijian b {
    color: #ff002c;
}
.ziliao {
    height: 38px;
    text-align: center;
    color: #000;
    font-weight: bold;
}
.colorful {
    font-size: 35px;
}
.ziliao td {
    font-size: 22px;
}
.ziliao {
    color: #111;
    font-size: 22.5px;
}
.ziliao td {
    border: 1px solid #ccc;
}
.ziliao a {
    color: #ff002c;
    font-size: 20px;
}
.ziliao b {
    color: #0014ff;
    font-size: 20px;
}
.ziliao g {
    color: #0014ff;
    font-size: 20px;
}
.ziliao c {
    color: #008000;
    font-size: 20px;
}
.ziliao d {
    color: #008080;
}
.kjci {
    font-size: 20px;
    font-weight: bold;
    background-color: #a5e1ff;
}
.kj {
    height: 38px;
    text-align: center;
    color: #000;
}
.kj td {
    border: 1px solid #ccc;
}
.kj .td1 {
    font-size: 20px;
}
.kj .td2 {
    font-weight: bold;
    color: #ff0000;
    font-size: 19px;
    background-color: #000000;
}
.kj tr td:nth-child(1) {
    width: 22%;
}
.kj tr td:nth-child(2) {
    width: 58%;
}
.kj .td2 c {
    font-weight: bold;
    font-size: 25px;
}
.kj .td3 {
    font-size: 20px;
}
.kj .td3 a {
    color: #ff0000;
}
.xkj .r {
    color: #ff0000;
    background: rgb(204, 255, 204);
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}
.xkj tr td:nth-child(1) {
    width: 41%;
}
.xkj tr td:nth-child(2) {
    width: 59%;
}
.xkj td {
    border: 1px solid #ccc;
    color: #00FF00;
    font-weight: bold;
}
.xkj td a {
    font-weight: bold;
    color: #ff0000;
}
.xkj {
    font-size: 20px;
}
.xkj .wx {
    font-size: 21px;
}
.xkj .bm {
    font-size: 21px;
}
.xkj .sx {
    font-size: 23px;
}
.xkj .lm {
    font-size: 23px;
}
.xkj .sxx {
    font-size: 26px;
}
.xkj .sm {
    font-size: 27px;
}
.xkj .ex {
    font-size: 28px;
}
.xkj .em {
    font-size: 27px;
}
.xkj .yxym {
    font-size: 28px;
}
.xkj .yxzt {
    font-size: 21px;
}
@media screen and (max-width: 500px) {
.xkj {
        font-size: 18px;
}
.xkj .wx {
        font-size: 22px;
}
.xkj .bm {
        font-size: 21px;
}
.xkj .sx {
        font-size: 24px;
}
.xkj .lm {
        font-size: 23px;
}
.xkj .sxx {
        font-size: 27px;
}
.xkj .sm {
        font-size: 27px;
}
.xkj .ex {
        font-size: 29px;
}
.xkj .em {
        font-size: 26px;
}
.xkj .yxym {
        font-size: 27px;
}
.xkj .yxzt {
        font-size: 20px;
}
}
@media screen and (max-width: 480px) {
.tuijian li {
        font-size: 18px;
}
.tuijian b {
        font-size: 25px;
}
.tzlb-s em,
    .tzlb-s i {
        font-size: 16px;
}
.xkj {
        font-size: 18px;
}
.xkj .wx {
        font-size: 21px;
}
.xkj .bm {
        font-size: 19px;
}
.xkj .sx {
        font-size: 24px;
}
.xkj .lm {
        font-size: 23px;
}
.xkj .sxx {
        font-size: 27px;
}
.xkj .sm {
        font-size: 26px;
}
.xkj .ex {
        font-size: 28px;
}
.xkj .em {
        font-size: 25px;
}
.xkj .yxym {
        font-size: 26px;
}
.xkj .yxzt {
        font-size: 19px;
}
}
@media screen and (max-width: 450px) {
.tuijian li {
        font-size: 18px;
}
.tuijian b {
        font-size: 24px;
}
.tzlb-s em,
    .tzlb-s i {
        font-size: 16px;
}
.xkj {
        font-size: 16px;
}
.xkj .wx {
        font-size: 20px;
}
.xkj .bm {
        font-size: 17px;
}
.xkj .sx {
        font-size: 21px;
}
.xkj .lm {
        font-size: 19px;
}
.xkj .sxx {
        font-size: 24px;
}
.xkj .sm {
        font-size: 23px;
}
.xkj .ex {
        font-size: 26px;
}
.xkj .em {
        font-size: 24px;
}
.xkj .yxym {
        font-size: 24px;
}
.xkj .yxzt {
        font-size: 18px;
}
}
@media screen and (max-width: 420px) {
.tuijian li {
        font-size: 17px;
}
.tuijian b {
        font-size: 21px;
}
.tzlb-s em,
    .tzlb-s i {
        font-size: 15px;
}
.xkj {
        font-size: 17px;
}
.xkj .wx {
        font-size: 18px;
}
.xkj .bm {
        font-size: 18px;
}
.xkj .sx {
        font-size: 21px;
}
.xkj .lm {
        font-size: 20px;
}
.xkj .sxx {
        font-size: 24px;
}
.xkj .sm {
        font-size: 23px;
}
.xkj .ex {
        font-size: 24px;
}
.xkj .em {
        font-size: 23px;
}
.xkj .yxym {
        font-size: 24px;
}
.xkj .yxzt {
        font-size: 16px;
}
}
@media screen and (max-width: 380px) {
.tuijian li {
        font-size: 16px;
}
.tuijian b {
        font-size: 19px;
}
.tzlb-s em,
    .tzlb-s i {
        font-size: 14px;
}
.xkj {
        font-size: 15px;
}
.xkj .wx {
        font-size: 18px;
}
.xkj .bm {
        font-size: 17px;
}
.xkj .sx {
        font-size: 21px;
}
.xkj .lm {
        font-size: 19px;
}
.xkj .sxx {
        font-size: 24px;
}
.xkj .sm {
        font-size: 21px;
}
.xkj .ex {
        font-size: 25px;
}
.xkj .em {
        font-size: 21px;
}
.xkj .yxym {
        font-size: 23px;
}
.xkj .yxzt {
        font-size: 16px;
}
}
.duilianpt {

    table-layout: auto;

    color: #FF0000;

    border-radius: 5px;

    overflow: hidden;

    text-align: center;

    background: #fff;
}
.duilianpt tr {

    height: 25px;
}
.duilianpt td {

    font-weight: bold;

    border: 1px solid #C0C0C0;

    font-size: 18pt;
}
.duilianpt th {

    font-weight: bold;

    border: 1px solid #C0C0C0;

    font-size: 18pt;
}
.duilianpt td {

    font-size: 15pt;
}
.duilianpt th {

    font-size: 14pt;
}
@media screen and (max-width: 350px) {
.tuijian li {
        font-size: 14px;
}
.tuijian b {
        font-size: 18px;
}
.tzlb-s em,
    .tzlb-s i {
        font-size: 13px;
}
.xkj {
        font-size: 15px;
}
.xkj .wx {
        font-size: 15px;
}
.xkj .bm {
        font-size: 16px;
}
.xkj .sx {
        font-size: 18px;
}
.xkj .lm {
        font-size: 16px;
}
.xkj .sxx {
        font-size: 21px;
}
.xkj .sm {
        font-size: 20px;
}
.xkj .ex {
        font-size: 23px;
}
.xkj .em {
        font-size: 21px;
}
.xkj .yxym {
        font-size: 21px;
}
.xkj .yxzt {
        font-size: 15px;
}
}
@media screen and (max-width: 320px) {
.tuijian li {
        font-size: 14px;
}
.tuijian b {
        font-size: 16px;
}
.tzlb-s em,
    .tzlb-s i {
        font-size: 13px;
}
.xkj {
        font-size: 13px;
}
.xkj .wx {
        font-size: 17px;
}
.xkj .bm {
        font-size: 12px;
}
.xkj .sx {
        font-size: 18px;
}
.xkj .lm {
        font-size: 13px;
}
.xkj .sxx {
        font-size: 18px;
}
.xkj .sm {
        font-size: 16px;
}
.xkj .ex {
        font-size: 21px;
}
.xkj .em {
        font-size: 20px;
}
.xkj .yxym {
        font-size: 18px;
}
.xkj .yxzt {
        font-size: 14px;
}
}
@media screen and (max-width: 480px) {
.kjci {
        font-size: 17px;
}
.kj .td1 {
        font-size: 16px;
}
.kj .td2 {
        font-size: 21px;
}
.kj .td3 {
        font-size: 19px;
}
.kj .td2 c {
        font-size: 30px;
}
}
@media screen and (max-width: 380px) {
.kjci {
        font-size: 16px;
}
.kj .td1 {
        font-size: 15px;
}
.kj .td2 {
        font-size: 20px;
}
.kj .td3 {
        font-size: 17px;
}
.kj .td2 c {
        font-size: 27px;
}
}
@media screen and (max-width: 320px) {
.kjci {
        font-size: 15px;
}
.kj .td1 {
        font-size: 14px;
}
.kj .td2 {
        font-size: 19px;
}
.kj .td3 {
        font-size: 15px;
}
.kj .td2 c {
        font-size: 25px;
}
}
.gaoshou {
    border: 1px solid #ccc;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
.gaoshou li img {
    height: 25px;
    width: 25px;
    margin-top: -4px;
}
.gaoshou li {
    padding: 3px 3px;
    border-radius: 0px;
    background-color: #fff;
    font-size: 22px;
}
.gaoshou a {
    height: 38px;
    line-height: 38px;
    border: solid 1px #ddd;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #eee;
    background-image: linear-gradient(to top, #fff, #eee, #fff);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: block;
    font-weight: bold;
    color: #000;
}
.gaoshou li font {
    font-size: 24px;
}
@media screen and (max-width: 580px) {
.gaoshou li {
        font-size: 22px;
}
.gaoshou li font {
        font-size: 24px;
}
}
@media screen and (max-width: 480px) {
.gaoshou li {
        font-size: 19px;
}
.gaoshou li font {
        font-size: 22px;
}
}
@media screen and (max-width: 380px) {
.gaoshou li {
        font-size: 18px;
}
.gaoshou li font {
        font-size: 20px;
        position: relative;
        top: 1.5px;
}
}
@media screen and (max-width: 350px) {
.gaoshou li {
        font-size: 17px;
}
.gaoshou li font {
        font-size: 19px;
}
}
@media screen and (max-width: 320px) {
.gaoshou li {
        font-size: 16px;
}
.gaoshou li font {
        font-size: 18px;
}
}
.ziliao .sqbk {
    font-size: 27px;
}
@media screen and (max-width: 580px) {
.ziliao .sqbk {
        font-size: 24px;
}
}
@media screen and (max-width: 480px) {
.ziliao .sqbk {
        font-size: 23px;
}
}
@media screen and (max-width: 380px) {
.ziliao .sqbk {
        font-size: 21px;
}
}
@media screen and (max-width: 350px) {
.ziliao .sqbk {
        font-size: 20px;
}
}
@media screen and (max-width: 320px) {
.ziliao .sqbk {
        font-size: 18px;
}
}
.ziliao .sqbkk {
    font-size: 25px;
}
@media screen and (max-width: 580px) {
.ziliao .sqbkk {
        font-size: 24px;
}
}
@media screen and (max-width: 480px) {
.ziliao .sqbkk {
        font-size: 22px;
}
}
@media screen and (max-width: 380px) {
.ziliao .sqbkk {
        font-size: 20px;
}
}
@media screen and (max-width: 350px) {
.ziliao .sqbkk {
        font-size: 19px;
}
}
@media screen and (max-width: 320px) {
.ziliao .sqbkk {
        font-size: 17px;
}
}
.wxwm {
    font-size: 18px;
    font-weight: bold;
}
.wxwm a {
    font-size: 20px;
    font-weight: bold;
    color: #d50000;
}
.ziliao td .zl {
    font-size: 22px;
    color: #ff002c;
}
@media screen and (max-width: 580px) {
.ziliao td .zl {
        font-size: 22px;
}
}
@media screen and (max-width: 480px) {
.ziliao td .zl {
        font-size: 21px;
}
}
@media screen and (max-width: 450px) {
.ziliao td .zl {
        font-size: 20.5px;
}
}
@media screen and (max-width: 420px) {
.ziliao td .zl {
        font-size: 20px;
}
}
@media screen and (max-width: 380px) {
.ziliao td .zl {
        font-size: 19.5px;
}
}
.ziliao .ybbm {
    font-size: 25px;
}
.ziliao .szpt {
    font-size: 25px;
}
.ziliao .essm {
    font-size: 23px;
    color: #d50000;
}
.ziliao .sqwsqm {
    font-size: 23px;
    color: #328011;
}
.ziliao td.sqbk {
    font-size: 32px;
    color: #2100d5;
}
@media screen and (max-width: 580px) {
.ziliao td {
        font-size: 22px;
}
.tuijian li {
        font-size: 21px;
}
.tzlb-s i {
        font-size: 18px;
}
.tzlb-s em {
        font-size: 18px;
}
.wxwm {
        font-size: 17px;
}
.wxwm a {
        font-size: 19px;
}
.ziliao .ybbm {
        font-size: 23px;
}
.ziliao .szpt c {
        font-size: 24px;
}
.ziliao .szpt {
        font-size: 22px;
}
.ziliao .essm {
        font-size: 22px;
}
.ziliao td.sqbk {
        font-size: 29px;
}
.ziliao .sqwsqm {
        font-size: 22px;
}
}
@media screen and (max-width: 480px) {
.ziliao td {
        font-size: 21px;
}
.tuijian li {
        font-size: 21px;
}
.tzlb-s i {
        font-size: 19px;
}
.tzlb-s em {
        font-size: 17px;
}
.wxwm {
        font-size: 16px;
}
.wxwm a {
        font-size: 18px;
}
.ziliao .ybbm {
        font-size: 22px;
}
.ziliao .szpt c {
        font-size: 22px;
}
.ziliao .szpt {
        font-size: 20px;
}
.ziliao .essm {
        font-size: 20px;
}
.ziliao td.sqbk {
        font-size: 27px;
}
.ziliao .sqwsqm {
        font-size: 20px;
}
.gaoshou li img {
        height: 22px;
        width: 22px;
}
}
@media screen and (max-width: 450px) {
.ziliao td {
        font-size: 20px;
}
.tuijian li {
        font-size: 18px;
}
.tzlb-s i {
        font-size: 16px;
}
.tzlb-s em {
        font-size: 16px;
}
.wxwm {
        font-size: 15.5px;
}
.wxwm a {
        font-size: 17.5px;
}
.ziliao .ybbm {
        font-size: 21.5px;
}
.ziliao .szpt c {
        font-size: 21.5px;
}
.ziliao .szpt {
        font-size: 19.5px;
}
.ziliao .essm {
        font-size: 19.5px;
}
.ziliao td.sqbk {
        font-size: 24.5px;
}
.ziliao .sqwsqm {
        font-size: 19.5px;
}
.gaoshou li img {
        height: 21px;
        width: 21px;
}
}
@media screen and (max-width: 420px) {
.ziliao td {
        font-size: 17px;
}
.tuijian li {
        font-size: 17px;
}
.tzlb-s i {
        font-size: 15px;
}
.tzlb-s em {
        font-size: 15px;
}
.wxwm {
        font-size: 15px;
}
.wxwm a {
        font-size: 17px;
}
.ziliao .ybbm {
        font-size: 21px;
}
.ziliao .szpt c {
        font-size: 21px;
}
.ziliao .szpt {
        font-size: 19px;
}
.ziliao .essm {
        font-size: 19px;
}
.ziliao td.sqbk {
        font-size: 24px;
}
.ziliao .sqwsqm {
        font-size: 19px;
}
.gaoshou li img {
        height: 20px;
        width: 20px;
}
}
@media screen and (max-width: 380px) {
.ziliao td {
        font-size: 16.5px;
}
.tuijian li {
        font-size: 16px;
}
.tzlb-s i {
        font-size: 14px;
}
.tzlb-s em {
        font-size: 14px;
}
.wxwm {
        font-size: 14px;
}
.wxwm a {
        font-size: 16px;
}
.ziliao .ybbm {
        font-size: 19px;
}
.ziliao .szpt c {
        font-size: 20px;
}
.ziliao .szpt {
        font-size: 18px;
}
.ziliao .essm {
        font-size: 18px;
}
.ziliao td.sqbk {
        font-size: 24px;
}
.ziliao .sqwsqm {
        font-size: 18px;
}
.gaoshou li img {
        height: 19px;
        width: 19px;
}
}
@media screen and (max-width: 320px) {
.ziliao td {
        font-size: 16px;
}
.tuijian li {
        font-size: 14px;
}
.tzlb-s i {
        font-size: 10px;
}
.tzlb-s em {
        font-size: 10px;
}
.wxwm {
        font-size: 12px;
}
.wxwm a {
        font-size: 14px;
}
.ziliao .ybbm {
        font-size: 17px;
}
.ziliao .szpt c {
        font-size: 18px;
}
.ziliao .szpt {
        font-size: 16px;
}
.ziliao .essm {
        font-size: 16px;
}
.ziliao td.sqbk {
        font-size: 23px;
}
.ziliao .sqwsqm {
        font-size: 15px;
}
.gaoshou li img {
        height: 19px;
        width: 19px;
}
}
/* ============================================
   生肖属性表 iframe 容器样式
   ============================================ */
/* 生肖属性表 iframe 容器（用于消除 iframe 周围的空白间隙） */
.box .sx {
    width: 100%;
}
/* 生肖属性表 iframe 高度控制（通过 ID 选择器） */
#shengxiaobiao {
    height: 1350px;
    width: 100%;
    border: none;
    display: block;
}
@media screen and (max-width: 580px) {
#shengxiaobiao {
        height: 1470px;
}
}
@media screen and (max-width: 480px) {
#shengxiaobiao {
        height: 1439px;
}
}
@media screen and (max-width: 408px) {
#shengxiaobiao {
        height: 1480px;
}
}
@media screen and (max-width: 350px) {
#shengxiaobiao {
        height: 1600px;
}
}
@media screen and (max-width: 320px) {
#shengxiaobiao {
        height: 1650px;
}
}
.ggff {
    width: 100%;
    padding: 1px;
    border: 0.5px solid #CCC;
}
.xgsht {
    border-collapse: collapse;
    text-align: center;
    justify-content: center;
    width: 100%;
    background: #fff;
    font-weight: bold;
    border-spacing: 0;
    border-radius: 12px;
}
.xgsht td {
    background: #fff;
    margin: 5px 0;
    border-radius: 0px;
}
.ggff tr td {
    text-align: center;
    font-size: 23px;
}
.ggff tr td a {
    display: block;
    line-height: 30px;
    border: 1px solid #CCC;
    background: #FFF;
    border-radius: 5px;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    padding: 5px 0px 5px 0px;
}
@media screen and (max-width: 505px) {
.ggff tr td {
        font-size: 20px;
}
}
@media screen and (max-width: 480px) {
.ggff tr td {
        font-size: 19px;
}
}
@media screen and (max-width: 460px) {
.ggff tr td {
        font-size: 18.5px;
}
}
@media screen and (max-width: 420px) {
.ggff tr td {
        font-size: 18px;
}
}
@media screen and (max-width: 380px) {
.ggff tr td {
        font-size: 17px;
}
}
@media screen and (max-width: 320px) {
.ggff tr td {
        font-size: 15px;
}
}
/* ============================================
   期数图片JSON展示组件样式
   ============================================ */
/* 期数图片容器样式 */
.box.period-image-box .list-title {
    line-height: normal;
    display: block;
}
/* 期数切换组容器样式（针对所有以 group 开头的类） */
.box [class^="group"] table.mtbl {
    line-height: 0;
    margin: 0;
    border-collapse: collapse;
    width: 100%;
}
/* 确保td没有padding，避免图片右侧多出空间 */
.box [class^="group"] table.mtbl td {
    padding: 0 !important;
    margin: 0;
    border: none;
}
/* 确保表格内的图片是块级元素，没有额外的间距 */
.box [class^="group"] table.mtbl img {
    display: block;
    margin: 0;
    padding: 0;
    /* vertical-align 对 display: block 无效，已移除 */
    width: 100%;
}
/* 确保 grid2 布局不受影响，恢复正常的行高和样式 */
.box [class^="group"] .grid2 {
    line-height: normal;
}
.box [class^="group"] .grid2 .grid-g2 p {
    line-height: normal;
}
/* 跑狗图（liangtu布局）的响应式样式 */
.box .liangtu .tu1 img {
    padding: 3% 1.5% 3% 3%;
}
.box .liangtu .tu2 img {
    padding: 3% 3% 3% 1.5%;
}
/* 跑狗图的响应式高度（默认高度 >600px） */
.box .liangtu .tu1 img,
.box .liangtu .tu2 img {
    height: 329px;
}
/* 响应式断点 */
@media screen and (max-width: 600px) {
.box .liangtu .tu1 img,
    .box .liangtu .tu2 img {
        height: 278px;
}
}
@media screen and (max-width: 550px) {
.box .liangtu .tu1 img,
    .box .liangtu .tu2 img {
        height: 265px;
}
}
@media screen and (max-width: 500px) {
.box .liangtu .tu1 img,
    .box .liangtu .tu2 img {
        height: 250px;
}
}
@media screen and (max-width: 480px) {
.box .liangtu .tu1 img,
    .box .liangtu .tu2 img {
        height: 240px;
}
}
@media screen and (max-width: 450px) {
.box .liangtu .tu1 img,
    .box .liangtu .tu2 img {
        height: 193px;
}
}
@media screen and (max-width: 380px) {
.box .liangtu .tu1 img,
    .box .liangtu .tu2 img {
        height: 187px;
}
}
/* 加载状态样式 */
.period-image-loading {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}
/* 错误提示样式 */
.period-image-error {
    padding: 16px;
    background-color: #fee;
    border: 1px solid #fcc;
    border-radius: 4px;
    color: #c33;
}
.period-image-error .error-title {
    font-weight: bold;
    margin-bottom: 8px;
}
.period-image-error .error-message {
    font-size: 14px;
}

.fixed-header[data-v-af26729e] {
  position: fixed;
  z-index: 100;
  width: 100%;
  max-width: 720px;
  top: 0;
  background: #f4f4f4;
}
.lottery-live-box[data-v-314a94c6] {
  border: none;
  overflow: hidden;
}
.lottery-live-box[data-v-314a94c6] table.gongshi {
  height: auto;
}
.lottery-live-box[data-v-314a94c6] table.gongshi td.lottery-live-td {
  padding: 0;
  height: auto;
  line-height: 0;
  vertical-align: top;
}
.lottery-live-box[data-v-314a94c6] table.gongshi td.lottery-live-td iframe {
  display: block;
  margin: 0;
  padding: 0;
}.advertising-image-box[data-v-0f2c0e49] {
  border: none;
  line-height: 0;
}
.advertising-image-box img[data-v-0f2c0e49] {
  display: block;
  margin: 0;
  padding: 0;
}.json-loader-container[data-v-84f535ae] {
  width: 100%;
}
.json-loader-loading[data-v-84f535ae] {
  padding: 20px;
  text-align: center;
  color: #666;
  font-size: 14px;
}
.json-loader-error[data-v-84f535ae] {
  padding: 16px;
  background-color: #fee;
  border: 1px solid #fcc;
  border-radius: 4px;
  color: #c33;
}
.json-loader-error .error-title[data-v-84f535ae] {
  font-weight: bold;
  margin-bottom: 8px;
}
.json-loader-error .error-message[data-v-84f535ae] {
  font-size: 14px;
}.table-json-loader-loading[data-v-e97ed4e4] {
  padding: 20px;
  text-align: center;
  color: #666;
  font-size: 14px;
}
.table-json-loader-error[data-v-e97ed4e4] {
  padding: 16px;
  background-color: #fee;
  border: 1px solid #fcc;
  border-radius: 4px;
  color: #c33;
}
.table-json-loader-error .error-title[data-v-e97ed4e4] {
  font-weight: bold;
  margin-bottom: 8px;
}
.table-json-loader-error .error-message[data-v-e97ed4e4] {
  font-size: 14px;
}
/* iframe容器 */
.iframe-loader-wrapper[data-v-875d8f5f] {
    position: relative;
    width: 100%;
    min-height: 45px;
    background: #fff;
}

/* iframe内容 */
.iframe-content[data-v-875d8f5f] {
    display: block;
    border: none;
    width: 100%;
    transition: opacity 0.3s ease;
}

/* Loading遮罩层 */
.loading-overlay[data-v-875d8f5f] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Loading原点容器 */
.loading-dots[data-v-875d8f5f] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* 原点样式 */
.dot[data-v-875d8f5f] {
    width: 10px;
    height: 10px;
    background-color: #3498db;
    border-radius: 50%;
    animation: dot-scale-875d8f5f 1.4s ease-in-out infinite;
}

/* 每个原点有不同的延迟，形成渐进式效果 */
.dot[data-v-875d8f5f]:nth-child(1) {
    animation-delay: 0s;
}
.dot[data-v-875d8f5f]:nth-child(2) {
    animation-delay: 0.2s;
}
.dot[data-v-875d8f5f]:nth-child(3) {
    animation-delay: 0.4s;
}

/* 原点缩放动画 */
@keyframes dot-scale-875d8f5f {
0%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
}
50% {
        transform: scale(1.2);
        opacity: 1;
}
}

/* 错误提示遮罩层 */
.error-overlay[data-v-875d8f5f] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* 错误文字 */
.error-text[data-v-875d8f5f] {
    font-size: 14px;
    color: #e74c3c;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
}
.iframe-json-loader-container[data-v-48851eab] {
  width: 100%;
}
.iframe-json-loader-loading[data-v-48851eab] {
  padding: 20px;
  text-align: center;
  color: #666;
  font-size: 14px;
}
.iframe-json-loader-content[data-v-48851eab] {
  width: 100%;
  overflow: hidden;
}
.iframe-json-loader-content[data-v-48851eab] iframe {
  display: block;
  width: 100%;
  border: none;
  overflow: hidden;
}.detail-header-wrapper[data-v-f5a280b1] {
  position: fixed;
  z-index: 100;
  width: 100%;
  max-width: 720px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #f4f4f4;
}
.logo[data-v-f5a280b1] {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px 8px 0 8px;
}
.logo img[data-v-f5a280b1] {
  display: block;
  height: 50px;
  width: auto;
}
.logo .back-home-btn[data-v-f5a280b1] {
  display: flex;
  flex-direction: column;
  font-size: 15pt;
  background: transparent;
  border: none;
  color: #000;
  padding: 0;
  margin: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.logo .back-home-btn span[data-v-f5a280b1] {
  display: block;
}
.logo .back-home-btn[data-v-f5a280b1] {
  -webkit-tap-highlight-color: transparent;
}