@charset "utf-8";
html {
	font-size: 62.5%
}
body {
	min-width: 320px;
	font: 400 14px/1.5, Helvetica;
	background: #f0f5f9;
    font-size: 14px;
	margin: 0 auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

header {
  margin: 0 auto;
  height: 200px;
  width: 100%;
  max-width: 970px;
  background-color: #163a90;
  position: relative; /* 添加相对定位，方便内部元素绝对定位 */

}
.header {
    position: fixed;
    z-index: 99;
    width: 100%;
}
.header .content {
	position: relative;
	z-index: 99;
	width: 100%;
	height: 48px;
}
.header .logo a {
	color: #fff
}
.logo {
    display: flex;
    align-items: center; /* 垂直居中对齐 */
    text-decoration: none;
    color: inherit;
}

.logo img {
    margin-left: 20px;
    margin-top: 20px;
    margin-right: 10px; /* 图片与文字之间的间距 */
}

.img {
    width: 65px;
	height: 88px
}

.logo-content {
    display: flex;
    flex-direction: column; /* 垂直排列文字 */
}

.logo-content div:first-child {
    font-weight: bold; /* "49网址大全" 字体加粗 */
    font-size: 2.5em; /* 可选：调整字体大小 */
    color: #fff; /* 可选：调整颜色 */
}

.logo-content div:last-child {
    font-size: 1.2em; /* "49499tk.tv" 字体稍小 */
    color: #163a90; /* 可选：调整颜色 */
    background-color: #ffff81; /* 浅蓝色背景 */
    border-radius: 15px; /* 较大的圆角，形成胶囊状 */
    padding: 4px 8px; /* 内边距 */
    display: inline-block; /* 让背景只包围文字 */
    margin-top: 4px; /* 与上方文字的间距 */
    text-align: center; /* 文字在容器内水平居中 */
    font-weight: bold; /* 添加这行来使文字加粗 */
}

/* 选项卡容器样式 - 增大按钮和字体 */
.option.lottery {
    position: absolute; /* 绝对定位 */
    bottom: 0; /* 定位在header底部 */
    display: flex;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    padding: 0 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    max-width: 970px;
    margin: 0px auto;
    background-color: #163a90; /* 设置与header相同的背景色 */
    border-radius: 0px; /* 添加圆角与header匹配 */
}

/* 移除底部边框线 */
.option.lottery::after {
    display: none;
}

.option.lottery div {
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto; /* 改为固定宽度，不再平均分配 */
    min-width: 80px; /* 增大最小宽度 */
    padding: 10px 16px; /* 增大内边距 */
    margin: 0 6px; /* 增大外边距 */
    text-align: center;
    font-size: 16px; /* 增大字体 */
    line-height: 22px;
    color: #ffffff; /* 未选中时也是白色 */
    font-weight: bold; /* 所有状态都是加粗 */
    cursor: pointer;
    transition: all 0.3s;
    -webkit-tap-highlight-color: transparent;
    white-space: nowrap;
    height: 42px; /* 增大高度 */
}

.option.lottery div.active {
    color: #163a90; /* 选中时文字颜色为深蓝色 */
    font-weight: bold; /* 保持加粗 */
}

/* 选中状态的椭圆形背景 - 上半椭圆效果 */
.option.lottery div.active::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* 白色背景 */
    border-radius: 10px 10px 0 0; /* 上方椭圆效果，底部直角 */
    content: '';
    z-index: 1; /* 确保背景在文字之下 */
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* 添加轻微阴影增强效果 */
}

/* 选中状态的文字需要在椭圆背景之上 */
.option.lottery div.active span {
    position: relative;
    z-index: 2; /* 确保文字在椭圆背景之上 */
    color: #163a90; /* 选中时文字颜色 */
    font-weight: bold; /* 保持加粗 */
}

/* 默认状态的文字 */
.option.lottery div span {
    position: relative;
    z-index: 2; /* 确保文字在任何背景之上 */
    font-size: 16px; /* 增大字体 */
    line-height: 22px;
    display: block;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold; /* 所有状态都是加粗 */
    color: #ffffff; /* 未选中时文字颜色 */
    transition: color 0.3s;
}

.option.lottery div:first-child {
    margin-left: 0;
}

.option.lottery div:last-child {
    margin-right: 0;
}

/* 滚动条样式 */
.option.lottery::-webkit-scrollbar {
    display: none;
}

/* 内容区域样式 */
#content-area {
    max-width: 970px;
    margin: 0px auto;
    padding: 0px;
}

.tab-content {
    background: #fff;
    border-radius: 0px;
    padding: 10px 10px 0px 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-height: 150px;
}

/* 彩票数据网格样式 - 使用 flexbox */
.lottery-grid {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    flex-wrap: nowrap; /* 不换行 */
    overflow-x: auto; /* 如果内容超出容器宽度，允许水平滚动 */
}

.lottery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px;
    border: 1px solid #ddd;
    border-radius: 15px;
    background-color: #3e98f0; /* 背景色改为 #3e98f0 */
    text-align: center;
    min-height: 100px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    flex: 1; /* 平均分配剩余空间 */
    color: white; /* 字体颜色改为白色 */
}

.lottery-item .lottery-number {
    font-size: 40px; /* 增大数字字体 */
    font-weight: bold;
    color: white; /* 数字颜色为白色 */
    margin-bottom: 5px;
    line-height: 1;
}

/* 彩票信息容器 - 包含生肖和五行 - 白色背景 */
.lottery-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #333; /* 文字颜色改为深色 */
    white-space: nowrap;
    background-color: white; /* 白色背景 */
    border-radius: 4px;
    padding: 2px 4px;
    width: 80%; /* 占满整个宽度 */
    margin-top: 5px; /* 添加顶部间距 */
}

.lottery-left {
    color: #333;
}

.lottery-separator {
    margin: 0 2px;
    color: #999;
}

.lottery-right {
    color: #666;
}

/* "+" 符号样式 */
.lottery-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #3e98f0;
    align-self: center;
    min-height: 100px;
    padding: 8px 1px;
    background-color: #fff;
    box-shadow: none;
    border: none;
    text-align: center;
    flex-shrink: 0; /* 不缩放 */
}

/* 顶部信息左右布局 */
.lottery-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    margin-bottom: 15px;
    background-color: #fff;
    border-radius: 6px;
    font-weight: bold;
    color: #333;
    font-size: 22px;
    /* border: 1px solid #ddd; */
}

.lottery-top-title-ls {
    margin-top: 0px;
    color: #333;
    border-bottom: 2px solid #3e98f0;
    padding-bottom: 10px;
}
.lottery-top-left {
    flex: 1;
    text-align: left;
    font-size: 1.2em;
}

.lottery-top-right {
    flex: 0 0 auto; /* 不伸缩，保持固定宽度 */
    text-align: right;
    color: #023b95; /* 红色显示倒计时 */
    font-weight: bold;
    font-size: 1.2em;
    min-width: 120px; /* 为倒计时预留足够空间 */
    text-align: center;
}

/* 彩票底部信息样式 */
.lottery-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    margin-top: 5px;
    background-color: #fff;
    font-size: 18px;
    color: #666;
    font-weight: normal;
    flex-wrap: nowrap; /* 防止换行 */
    /* min-height: 46px; 确保有足够的高度 */
}

.lottery-bottom-left {
    flex: 1;
    text-align: left;
    white-space: nowrap; /* 防止文本换行 */
    overflow: hidden; /* 隐藏溢出内容 */
    text-overflow: ellipsis; /* 超出部分显示省略号 */
    min-width: 0; /* 与flex结合使用，允许收缩 */
}

.lottery-bottom-right {
    flex: 0 0 auto; /* 不伸缩，保持固定宽度 */
    display: flex;
    gap: 5px; /* 按钮之间的间距 */
    white-space: nowrap; /* 防止按钮换行 */
}

.lottery-btn-refresh,
.lottery-btn-history {
    padding: 0px;
    background-color: transparent; /* 移除背景颜色 */
    color: red; /* 刷新按钮字体颜色为红色 */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.8rem;
    transition: background-color 0.3s;
}

.lottery-btn-refresh:hover,
.lottery-btn-history:hover {
    background-color: transparent; /* 移除悬停时的背景颜色 */
}

.lottery-btn-history {
    color: #023b95; /* 历史记录按钮字体颜色为 #023b95 */
}

/* 模态框样式 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 80%;
    max-height: 80%;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-content h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #3e98f0;
    padding-bottom: 10px;
}

.history-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #555;
}

.history-item:last-child {
    border-bottom: none;
}

/* 跑马灯公告样式 */
.marquee-container {
    width: 98%;
    max-width: 970px;
    margin: 10px auto 0 auto;
    overflow: hidden;
    background-color: #5790e8;
    /* border: 1px solid #ccc; */
    border-radius: 10px; /* 设置10像素圆角 */
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.marquee-label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    background-color: #5790e8; /* 可选：给标签区域添加背景色区分 */
}

.marquee-icon {
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
    width: 20px; /* 设置图标宽度 */
    height: 20px; /* 设置图标高度 */
}

.marquee-text-label {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    white-space: nowrap;
    vertical-align: middle;
}

.marquee-content-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: inline-block;
    font-size: 20px;
    padding: 8px 10px;
    color: #fff;
    animation: marquee-scroll 20s linear infinite; /* 减慢滚动速度 */
    white-space: nowrap;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 备用域名样式 */
.backup-domains-container {
    max-width: 970px;
    margin: 20px auto 0px auto;
    padding: 0px;
}

.backup-domains-title {
    text-align: center;
    font-size: 16px;
    margin-bottom: 0px;
    color: #fff; /* 白色文字以便在深色背景上可见 */
    padding: 10px 15px; /* 添加内边距 */
    background-color: #316df4; /* 蓝色背景 */
    border-radius: 0px; /* 添加圆角 */
}

.backup-domains-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 每行显示两个 */
    gap: 0px; /* 移除间隙，用边框代替 */
    max-width: 970px; /* 控制最大宽度 */
    margin: 0 auto;
    padding: 0px; /* 移除内边距 */
    background-color: #fff; /* 白色背景 */
    border-radius: 0px;
    border: 1px solid #ccc; /* 黑色边框 */
    border-bottom: none; /* 移除外层容器的底部边框，避免重复 */
}

.backup-domain-item {
    text-align: center;
    padding: 10px;
    background-color: #fff; /* 白色背景 */
    border-right: 1px solid #ccc; /* 右侧黑线 */
    border-bottom: 1px solid #ccc; /* 底部黑线 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.backup-domain-item:last-child:nth-child(odd) {
    /* 如果最后一个元素是奇数位置，则添加右边框 */
    border-right: 1px solid #ccc;
}

.backup-domain-item:nth-child(2n) {
    /* 每行第二个元素移除右边框 */
    border-right: none;
}

.backup-domain-link-container {
    display: flex;
    align-items: center;
    gap: 5px; /* 图片和文字之间的间距 */
    white-space: nowrap; /* 防止文字换行 */
}

.backup-domain-item a {
    color: #e42914;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.backup-domain-item a:hover {
    text-decoration: underline;
}

.backup-domain-ffz {
    width: auto; /* 自适应宽度 */
    height: 20px; /* 固定高度 */
    vertical-align: middle; /* 垂直居中 */
}

/* hiss 数据展示样式 */
.hiss-container {
    max-width: 970px;
    margin: 30px auto;
    padding: 0 20px;
}

.hiss-title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.hiss-content {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hiss-item {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 6px;
    /* 移除左边的颜色边框 */
}

.hiss-item-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;  /* 白色字体 */
    background-color: #3e98f0;  /* 背景色 */
    padding: 12px 12px;  /* 增加垂直内边距以提高高度 */
    border-radius: 6px;  /* 圆角 */
    text-align: center;  /* 居中显示 */
    width: 100%;  /* 全宽显示 */
    min-height: 48px;  /* 设置最小高度 */
    display: flex;  /* 使用flexbox居中内容 */
    align-items: center;  /* 垂直居中 */
    justify-content: center;  /* 水平居中 */
    word-break: break-word;  /* 长文本自动换行 */
    box-sizing: border-box;  /* 包含padding在内的总宽度 */
}

.hiss-item-data {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.hiss-item-data li {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #555;
    background-color: #fff;
    margin-top: 5px;
    border-radius: 4px;
}

.hiss-item-data li:last-child {
    border-bottom: none;
}

/* 链接模块样式 */
.links-module-container {
    max-width: 970px;
    margin: 0 auto; /* 增加上方间距，避免与上面的模块挤在一起 */
    padding: 0px;
    /* background-color: #fff; 整体背景色为浅灰 */
}

.links-section-title {
    text-align: left;
    font-size: 22px;
    font-weight: bold;
    background-color: #fff;
    margin: 0;
    color: #333;
    padding: 10px 0px 10px 20px;
    border-bottom: 2px solid #efefef;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 每行显示4个 */
    gap: 0; /* 移除项目之间的间距 */
    padding: 15px; /* 内边距移到网格容器 */
    margin-bottom: 0px; /* 为整个网格留出底部间距 */
}

.links-grid.type-image { /* 图片类型链接网格背景 */
    background-color: #fff;
}

.links-grid.type-text { /* 文本类型链接网格背景 */
    background-color: #f5f5f5;
}

.links-item {
    text-align: center;
    padding: 10px; /* 内边距 */
    background-color: transparent; /* 透明背景 */
    border: none; /* 无边框 */
    transition: transform 0.3s ease;
    min-height: 50px; /* 设置最小高度 */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0; /* 确保没有外边距 */
}

.links-item:hover {
    transform: translateY(-3px);
}

.links-item-img {
    width: 100%;
    height: 80px; /* 固定高度 */
    object-fit: fill; /* 填充模式，裁剪多余部分 */
    cursor: pointer;
    border-radius: 4px;
    transition: opacity 0.3s ease;
    margin-bottom: 5px;
    background-color: #f0f0f0; /* 添加背景色，防止透明图出现奇怪效果 */
}

.links-item-img:hover {
    opacity: 0.9;
}

/* 文本链接项样式 */
.links-item-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.links-item-text a {
    background-color: #fff; /* 白色背景 */
    border-radius: 6px; /* 圆角 */
    padding: 10px 15px; /* 内边距 */
    display: inline-block; /* 块级显示 */
    text-align: center; /* 文字居中 */
    color: #000; /* 黑色文字 */
    text-decoration: none; /* 无下划线 */
    font-size: 20px; /* 字体大小 */
    min-width: 80px; /* 最小宽度 */
    box-sizing: border-box; /* 包含内边距的盒模型 */
    width: 100%;
}

/* 添加名称元素样式 */
.links-item-name {
    font-size: 15px;
    color: #333;
    word-break: break-word;
    max-height: 36px; /* 限制高度 */
    overflow: hidden;
    line-height: 1.4;
}

/* 必中六肖模块样式 */
.bz-zodiac-container {
    max-width: 970px;
    margin: 5px auto;
    overflow: hidden;
}

.bz-zodiac-tabs {
    display: flex;
    width: 100%;
    background-color: transparent; /* 无背景色 */
    margin: 0; /* 无外边距 */
    padding: 0; /* 无内边距 */
}

.bz-zodiac-tab {
    flex: 1;
    text-align: center;
    padding: 5px 0;
    cursor: pointer;
    font-size: 30px;
    font-weight: bold;
    color: #84BAF7;
    background-color: transparent; /* 无背景色 */
    border: none; /* 无边框 */
    margin: 0; /* 无外边距 */
    outline: none; /* 无焦点轮廓 */
    border-bottom: 3px solid #84BAF7;
}

.bz-zodiac-tab.active {
    color: #fff;
    background-color: #84BAF7;
}

.bz-zodiac-tab:hover:not(.active) {
    color: #84BAF7;
}

.bz-zodiac-title-content {
    background-color: #fff; /* 白色背景 */
    margin: 5px 0px 0px 0px; /* 与上面的tabs有一定间距 */
    overflow: hidden; /* 确保圆角效果 */
    border-radius: 5px; /* 圆角 */
    border: 5px solid #4292ef; /* 5px 边框 */
}

.bz-zodiac-title {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    padding: 5px 0;
    background-color: #6ca6ea;
    color: #FFFF00;
    margin: 0; /* 无外边距 */
    text-shadow: 1px 4px 1px #b99b5f; /* 添加字体阴影效果 */
}

.bz-zodiac-content {
    padding: 0; /* 表格自身有边距，这里设为0 */
}

.bz-zodiac-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.bz-zodiac-table-sxzym {
    width: 100%;
    border-collapse: collapse;
    margin: 0px;
    margin-bottom: 10px;
    border-radius: 5px; /* 圆角 */
    border: 5px solid #4292ef; /* 5px 边框 */
}

.bz-zodiac-th {
    background-color: #f0f0f0;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #4292EF;
    font-size: 14px;
}
.bz-zodiac-module-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
}
.bz-zodiac-module-title-slq {
    color: black;
    display: block;
    margin-bottom: 10px;
    text-align: center;
    font-size: 35px;
    font-weight: bold;
}
.bz-zodiac-module-fragment {
    font-size: 30px;
    color: black;
}
.bz-zodiac-td {
    padding: 3px;
    text-align: center;
    border: 1px solid #4292EF;
    font-size: 24px;
    font-weight: bold;
}
.bz-zodiac-td-sxzy {
    padding: 3px;
    text-align: center;
    border: 1px solid #4292EF;
    font-size: 24px;
    font-weight: bold;
}
.bz-zodiac-td-sb {
    padding: 3px;
    text-align: center;
    border: 1px solid #4292EF;
    font-size: 30px;
    font-weight: bold;
}

.bz-zodiac-td:first-child {
    color: black;
}

.bz-zodiac-td:nth-child(2) {
    color: #0070C0;
}

.bz-zodiac-td:last-child {
    color: #FF0000;
}

.bz-zodiac-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.bz-zodiac-table tr:hover {
    background-color: #f5f5f5;
}

.history-item {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.history-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 15px;
    background-color: #fff;
    border-radius: 6px;
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

.history-top-left {
    flex: 1;
    text-align: left;
    font-size: 1.2em;
}

.history-top-right {
    flex: 0 0 auto; /* 不伸缩，保持固定宽度 */
    text-align: right;
    color: #023b95; /* 红色显示倒计时 */
    font-weight: bold;
    font-size: 1.2em;
    min-width: 120px; /* 为倒计时预留足够空间 */
    text-align: center;
}

.history-grid {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.history-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
    min-height: 80px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    flex: 1;
    color: white;
}

.history-item .history-number {
    font-size: 40px; /* 增大数字字体 */
    font-weight: bold;
    color: white; /* 数字颜色为白色 */
    margin-bottom: 5px;
    line-height: 1;
}
.history-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    background-color: white;
    border-radius: 4px;
    padding: 2px 4px;
    width: 90%;
    margin-top: 5px;
}

.history-plus {
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 24px;
   font-weight: bold;
   color: #3e98f0;
   align-self: center;
   min-height: 80px;
   padding: 8px 1px;
   background-color: #fff;
   box-shadow: none;
   border: none;
   text-align: center;
   min-width: 30px;
   flex-shrink: 0;
}
.history-left {
    color: #333;
}

.history-separator {
    margin: 0 2px;
    color: #999;
}

.history-right {
    color: #666;
}
/* 统一的响应式设计 - 避免重复定义 */
@media (max-width: 480px) {
    header {
        height: 150px; /* 减小移动端header高度 */
    }
    .logo {
        flex-direction: row; /* 保持水平方向 */
        align-items: center; /* 垂直居中 */
    }
    
    .logo img {
        width: 55px; /* 减小移动端图片宽度 */
        height: 75px; /* 减小移动端图片高度 */
        margin-left: 10px; /* 减小左边距 */
        margin-top: 10px; /* 减小顶部边距 */
        margin-right: 10px; /* 减小图片与文字间距 */
    }
    
    .logo-content div:first-child {
        font-size: 2.0em; /* 减小移动端标题字体 */
    }
    
    .logo-content div:last-child {
        font-size: 0.9em; /* 减小移动端副标题字体 */
        padding: 2px 5px; /* 减小内边距 */
        border-radius: 8px; /* 调整圆角 */
        margin-top: 2px; /* 减小间距 */
    }
    .option.lottery {
        padding: 0 12px;
    }
    
    .option.lottery div {
        flex: 0 0 auto;
        min-width: 65px; /* 显著增大移动端最小宽度 */
        margin: 0 4px; /* 增大移动端边距 */
        font-size: 20px; /* 增大移动端字体 */
        padding: 4px 10px; /* 增大移动端内边距 */
        height: 40px; /* 增大移动端高度 */
    }
    
    .lottery-grid {
        gap: 6px;
    }
    .lottery-item {
        padding: 4px 2px;
        min-height: 50px;
        border-radius: 10px;
    }
    .lottery-item .lottery-number {
        font-size: 28px; /* 增大数字字体 */
        margin-bottom: 1px;
    }
    .lottery-top {
        padding: 0px;
    }

    .lottery-top-ls {
        font-size: 15px;
    }
    .lottery-top-left {
        font-size: 18px;
    }
    
    .lottery-top-right {
        font-size: 18px;
    }
    .lottery-left {
        font-size: 15px; /* 增大数字字体 */
    }
    .lottery-separator {
        font-size: 15px; /* 增大数字字体 */
    }
    .lottery-right {
        font-size: 15px; /* 增大数字字体 */
    }
    .lottery-plus {
        font-size: 15px;
        min-height: 50px; /* 与彩票项高度一致 */
    }
    
    .lottery-info {
        font-size: 15px;
        padding: 2px 2px;
        margin-top: 2px; /* 添加顶部间距 */
    }

    .lottery-bottom {
        font-size: 15px;
    }
    .lottery-bottom-right {
        justify-content: flex-end;
    }

    .lottery-btn-refresh,
    .lottery-btn-history {
        font-size: 15px;
    }
    .links-item {
        padding: 5px; /* 内边距 */
    }
    .links-item-img {
        height: 50px;
    }
    .links-item-text a {
        padding: 10px 5px; /* 内边距 */
        font-size: 14px;
    }
    .bz-zodiac-module-title {
        font-size: 20px;
    }
    .bz-zodiac-module-title-slq {
        font-size: 22px;
    }
    .bz-zodiac-module-fragment {
        font-size: 20px;
    }
    .bz-zodiac-th {
        padding: 5px;
    }
    .bz-zodiac-title {
        font-size: 20px;
    }
    .bz-zodiac-td {
        font-size: 17px;
    }
    .bz-zodiac-td-sxzy {
        font-size: 15px;
    }
    .bz-zodiac-td-sb {
        font-size:25px;
    }

    .history-item-top {
        font-size: 13px;
        margin-bottom:0px;
    }
    .history-top-left {
        font-size: 13px;
    }
    .history-top-right {
        font-size: 13px;
    }
    .history-grid {
        padding: 0px;
        gap: 0px;
    }
    .history-plus {
        font-size: 10px;
        padding: 0px;
        min-width:1px;
        min-height: 1px; /* 与彩票项高度一致 */
    }
    .history-item {
        min-height: 50px;
        border-radius: 10px;
        margin-bottom: 0px;
    }
    .history-item .history-number {
        font-size: 22px; /* 增大数字字体 */
        margin-bottom: 1px;
    }
    .history-info {
        font-size: 12px;
        padding: 2px 2px;
        margin-top: 2px; /* 添加顶部间距 */
    }
    .history-left {
        font-size: 13px; /* 增大数字字体 */
    }
    .history-separator {
        font-size: 13px; /* 增大数字字体 */
    }
    .history-right {
        font-size: 13px; /* 增大数字字体 */
    }
}