html, body {
    padding: 0;
    margin: 0;
}

* {
    box-sizing: border-box;
}
:root{
    --var-main-color: rgba(11, 143, 31, 1);
}
#root {

}
ul {
    padding: 0;
}
a, a:hover, a:visited {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.container{
    max-width: 900px!important;
}
.w-full {
    width: 100%;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.header-logo {
    width: 15rem;
}

.header-logo2 {
    width: 15rem;
}

.header-box {
    background: linear-gradient(180deg, rgba(11, 143, 31, 1) 0%, rgba(63, 140, 253, 1) 100%);
    padding: .7rem 1rem;

}
.fixed {
    width: 100%;
    position: sticky;
    left: 0;
    top: 0;
}

.article-top-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    padding: 0 1rem;
    color: white;
    border: 0px solid white;
    border-radius: 6px;
    background: linear-gradient(0deg, rgba(11, 143, 31, 1) 0%, rgba(63, 140, 253, 1) 100%);
}

.article-content {
    padding: 1rem;
    border: 3px solid #FF0000;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
    overflow: hidden;
    font-family: 'Microsoft YaHei', Arial, Helvetica, sans-serif;
    font-size: 14px;
    background: white;
}
.text-center {
    text-align: center;
}
.article-title{
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
}
.container{
    padding: 0;
}
.main-container{
    padding: 0;
}
.flex-col{
    flex-flow: column;
}
.flex-1{
    flex: 1;
}
.h-full{
    height: 100vh;
}
.bg-white{
    background-color: #fff;
}
.text-main{
    color: var(--var-main-color);
}
.rounded{
    border-radius: .5rem;
}
.justify-end {
    justify-content: flex-end;
}
.align-center {
    align-items: center;
}
.btn-primary{
    background-color: var(--var-main-color);
    color: white;
    border-radius: .5rem;
    text-align: center;
    font-size: 1.7rem;
    padding: .8rem 0;
}

.ob-bg {
    background: linear-gradient(180deg, #1100ff, #1100ff);
    color: white;
    text-align: center;
    border-radius: 8px;
    font-size: 2rem;
    font-weight: bold;
    padding: .8rem 0;
    margin-bottom: .5rem;
}

/* ====== 基础 ====== */
.ny-wrap *{box-sizing:border-box;}
.ny-wrap{
    width:100%;
    padding:0;
    font-family:"Microsoft YaHei",Arial;
    position:relative;
}

/* ====== 主框架 ====== */
.ny-panel{
    max-width:1200px;
    margin:auto;
    padding:20px;
    border-radius:18px;
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg,#0b2a55,#0f3c7a,#0b2a55);
    border:2px solid #7fd3ff;
    box-shadow:
            0 0 35px rgba(120,200,255,.45),
            inset 0 0 28px rgba(160,220,255,.35);
}

/* ====== 标题 ====== */
.ny-header{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    padding:14px 12px;
    margin-bottom:18px;
    border-radius:12px;
    background:linear-gradient(90deg,#0e3c78,#1e6fd8,#0e3c78);
    border:1px solid #9edcff;
    color:#FFFF00;
    font-weight:900;
    letter-spacing:2px;
    font-size:18px;
    text-shadow:
            0 0 10px rgba(140,210,255,1),
            0 0 22px rgba(80,170,255,.8);
}
.ny-header:last-child{margin-bottom:0;}

/* ====== 灯光 ====== */
.ny-lantern{
    font-size:20px;
    animation:nyLanternBlue 1.8s ease-in-out infinite;
}
@keyframes nyLanternBlue{
    0%{transform:scale(1);opacity:.6;}
    50%{transform:scale(1.2);opacity:1;}
    100%{transform:scale(1);opacity:.6;}
}

/* ====== 字跳动 ====== */
.ny-title-wave{display:inline-flex;gap:2px;}
.ny-ch{
    display:inline-block;
    animation:nyCharBlue 1.25s ease-in-out infinite;
}
@keyframes nyCharBlue{
    0%{transform:translateY(0);}
    30%{transform:translateY(-8px);}
    55%{transform:translateY(1px);}
    100%{transform:translateY(0);}
}

/* ====== 整块可点 ====== */
#nyJumpWrap::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:99;
    cursor:pointer;
}

/* 中国红紧凑风 全新版本 */
.list-box {
    border: 2px solid #d60000;
    border-radius: 10px;
    padding: 6px;
    background: #fff5f5;
    box-shadow: 0 0 8px rgba(180, 0, 0, 0.25);
}

.list-item {
    margin: 4px 0;
}

.list-item a {
    display: block;
    padding: 4px 6px;
    border: 1px solid #d00000;
    background: #ffebeb;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    color: #b00000;
    line-height: 24px;
}

.list-item a:hover {
    background: #ffd8d8;
}

.badge {
    border: 1px solid #d00000;
    padding: 1px 4px;
    border-radius: 4px;
    margin-left: 4px;
    font-size: 12px;
    color: #fff;
    background: #d00000;
}
/* ===== 防止污染 ===== */
.jade059-link *{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.jade059-link{
    display:block;
    text-decoration:none;
    font-family:"Microsoft YaHei",Arial;
}

/* ===== 主框 ===== */
.jade059-wrap{
    width:100%;
    padding:16px 18px;
    border-radius:18px;
    background:#0f1c17;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
    overflow:hidden;
    animation:jadePulse 3s infinite ease-in-out;
}

/* 翡翠流光边框 */
.jade059-wrap::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:18px;
    padding:2px;
    background:linear-gradient(90deg,#00a86b,#1ed760,#00a86b,#1ed760);
    background-size:300% 100%;
    animation:jadeBorder 4s linear infinite;
    -webkit-mask:
            linear-gradient(#000 0 0) content-box,
            linear-gradient(#000 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none;
}

@keyframes jadeBorder{
    0%{background-position:0%}
    100%{background-position:300%}
}

@keyframes jadePulse{
    0%{box-shadow:0 0 10px rgba(0,168,107,.2);}
    50%{box-shadow:0 0 30px rgba(30,215,96,.5);}
    100%{box-shadow:0 0 10px rgba(0,168,107,.2);}
}

/* 左侧 */
.jade059-left{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.jade059-period{
    font-size:16px;
    font-weight:bold;
    color:#1ed760;
    text-shadow:0 0 6px rgba(30,215,96,.6);
}

.jade059-profit{
    font-size:20px;
    font-weight:bold;
    color:#ffffff;
}

/* 数字呼吸效果 */
@keyframes jadeBreath{
    0%{transform:scale(1);}
    50%{transform:scale(1.15);}
    100%{transform:scale(1);}
}

@keyframes jadeGlow{
    0%{box-shadow:0 0 8px #00a86b;}
    50%{box-shadow:0 0 35px #1ed760;}
    100%{box-shadow:0 0 8px #00a86b;}
}

.jade059-number{
    background:linear-gradient(45deg,#00a86b,#1ed760);
    color:#ffffff;
    padding:6px 16px;
    margin-left:8px;
    border-radius:10px;
    font-size:26px;
    font-weight:900;
    display:inline-block;
    position:relative;
    animation:
            jadeBreath 1.8s infinite ease-in-out,
            jadeGlow 1.8s infinite ease-in-out;
}

/* 扫光 */
.jade059-number::after{
    content:'';
    position:absolute;
    top:0;
    left:-60%;
    width:40%;
    height:100%;
    background:linear-gradient(120deg,rgba(255,255,255,0.15),rgba(255,255,255,0.6),rgba(255,255,255,0.15));
    transform:skewX(-25deg);
    animation:jadeShine 3s infinite;
}

@keyframes jadeShine{
    0%{left:-60%;}
    100%{left:130%;}
}

/* 按钮 */
.jade059-btn{
    background:linear-gradient(90deg,#00a86b,#1ed760);
    color:#ffffff;
    padding:10px 22px;
    border-radius:30px;
    font-size:14px;
    font-weight:bold;
    box-shadow:0 0 12px rgba(30,215,96,.5);
    transition:.3s;
}

.jade059-btn:hover{
    transform:scale(1.08);
}

/* 手机适配 */
@media(max-width:600px){
    .jade059-period{font-size:14px;}
    .jade059-profit{font-size:16px;}
    .jade059-number{font-size:20px;}
    .jade059-btn{font-size:12px;padding:8px 16px;}
}

@keyframes pulseBtn{
    0%{transform:scale(1);}
    50%{transform:scale(1.06);}
    100%{transform:scale(1);}
}

.style3-board {
    max-width: 2000px;
    margin: 0px auto;
    padding: 0 12px;
    font-family: sans-serif;
    background: #fafafa;
}

.style3-tip {
    text-align: center;
    font-weight: 700;
    font-size: clamp(16px, 3vw, 20px);
    color: #444;
    margin-bottom: 14px;
}

.style3-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 8px 10px;
    margin: 8px 0;
}

.style3-badge {
    background: #4caf50;
    color: #fff;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
}

.style3-title {
    flex: 1;
    margin: 0 8px;
    background: #e8f5e9;
    color: #2e7d32;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 14px;
    text-align: center;
}

.style3-ok {
    margin-left: 6px;
    background: #2e7d32;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
}

.style3-note {
    color: #666;
    font-weight: 600;
    white-space: nowrap;
}

.lgg > span{
    font-size:large!important;
}
a {
    color: inherit;
    text-decoration: none; /* 可选：去掉下划线 */
}

.style3-board {
    max-width: 2000px;
    margin: 0px auto;
    padding: 0 12px;
    font-family: sans-serif;
    background: #fafafa;
}

.style3-tip {
    text-align: center;
    font-weight: 700;
    font-size: clamp(16px, 3vw, 20px);
    color: #444;
    margin-bottom: 14px;
}

.style3-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 8px 10px;
    margin: 8px 0;
}

.style3-badge {
    background: #4caf50;
    color: #fff;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
}

.style3-title {
    flex: 1;
    margin: 0 8px;
    background: #e8f5e9;
    color: #2e7d32;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 14px;
    text-align: center;
}

.style3-ok {
    margin-left: 6px;
    background: #2e7d32;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
}

.style3-note {
    color: #666;
    font-weight: 600;
    white-space: nowrap;
}

.tiezi-txt ul li {
    width: 25%;
    float: left;
    list-style: none;
}

.tiezi-txt ul li a {
    display: flex; /* Use flexbox to easily center content */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 35px; /* Set height */
    line-height: normal; /* Remove line-height if flexbox is used */
    margin: 1px;
    text-align: center;
    border: solid 1px #ddd;
    border-radius: 5px;
    background: #eee;
    background-image: linear-gradient(to top, #eee, #fff);
    background-image: url(https://img.ptallenvery.com/450033/imgs/khung.png);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    background-size: 100% 100%;
    text-decoration: none;
}

.clearfix1 {
    font-size: 20px !important;
}

.tiezi-txt ul li a img {
    width: 25px; /* Set the desired width */
    height: auto; /* Maintain the aspect ratio */
    margin-right: 5px; /* Space between image and text */
}

@media only screen and (max-width: 760px) {
    .clearfix1 {
        font-size: 14px !important;
    }
}

.box1 li {
    text-align: center;
    background: #00CC99;
    margin: 3px;
    display: inline;
}
.tiezi-txttbazbazbaz {
    background-color: #ffffff;
    line-height: 35px;
    font-weight: 500;
    font-size: 14pt;
    text-align: center;
    color: #FF0000;
}
.tiezi-txttbazbazbaz ul li a {
    font-size: 17pt;
    line-height: 26px;
    margin: 1px;
    font-family: fangsong;
    font-weight: 600;
    text-align: center;
    border-radius: 20px;
    background: #eee;
    background-image: linear-gradient(to top, #a2ece3, #cbfffa, #ffffff);
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
    display: block;
    text-decoration: none;
}
.clearfix {
    clear: both;
}
.tiezi-txttbazbazbaz ul li {
    width: 24%;
    float: left;
}
@media screen and (max-width: 600px) {
    .tiezi-txttbazbazbaz {
        background-color: #ffffff;
        font-weight: 500;
        text-align: center;
        color: #FF0000;
    }

    .box1 li {


        text-align: center;
        background: #00CC99;
        margin: 1.5px !important;
        display: inline;
    }

    .tiezi-txttbazbazbaz ul li a {
        font-size: 10pt;
        height: 40px;
        line-height: 19px;
        margin: 1px;
        font-family: fangsong;
        font-weight: 600;
        text-align: center;
        border-radius: 10px;
        background: #eee;
        background-image: linear-gradient(to top, #a2ece3, #cbfffa, #ffffff);
        box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
        display: block;
        text-decoration: none;
    }
}


.title22 {
    color: rgb(51, 51, 51);
    padding: 8px 0;
    margin: 0;
    text-align: center;
    background: linear-gradient(#3498db, #ccebff);
    border-radius: 4px 4px 2px 2px;
    font-weight: bold;

}

.title223 {
    color: rgb(51, 51, 51);
    padding: 8px 0;
    margin: 0;
    text-align: center;
    background: linear-gradient(#0b8f21, #3f8cfb);
    border-radius: 4px 4px 2px 2px;
    font-weight: bold;

}
.f-index-top{
    position: fixed;
    right: 0.5rem;
    bottom: 4rem;
    color: white;
}
.f-index-top img {
    width: 6rem;
    height: 6rem;
}
.f-index-img{
    position: fixed;
    left: 1rem;
    bottom: 10rem;
    color: white;
}
.f-index-img img{
    width: 8rem;
}

/* 遮罩层样式 */
.tk-modal-mask {
    /* 默认隐藏遮罩层 */
    display: none;
    /* 固定定位，覆盖整个页面 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 半透明黑色 */
    background-color: rgba(0, 0, 0, 0.5);
    /* 让遮罩层在页面最上层 */
    z-index: 99999;
    /* 点击遮罩层也关闭弹窗（配合JS） */
    cursor: pointer;
}

/* 弹窗主体样式 */
.tk-modal-box {
    /* 弹窗不继承遮罩层的cursor */
    cursor: default;
    /* 绝对定位，相对于遮罩层居中 */
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40rem;
    transform: translate(-50%, -50%);
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    background-image: url("/static/img/tboxbg.png");
    background-size: 100% 100%;
}

/* 弹窗标题 */
.tk-modal-title {
    font-size: 1.8rem;
    font-weight: bold;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    background: #07c160;
    text-align: center;
    color: white;
    padding: 1rem 0;
}

/* 弹窗内容 */
.tk-modal-content {
    margin-bottom: 20px;
}

/* 关闭按钮 */
.tk-modal-close {
    padding: 8px 15px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

.tk-modal-close:hover {
    background-color: #eee;
}

.tk-foot {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}

.tk-modal-close-1 {
    flex: 1;
    text-align: center;
    padding: 1rem 0;
}

.tk-border {
    border-right-width: 1px;
    border-right-color: #eee;
    border-right-style: solid;
}

.swiper-container {
    width: 100%;
}

.swiper-container img {
    width: 100%;
}

.swiper-pagination-switch {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #999;
    box-shadow: 0px 1px 2px #555 inset;
    margin: 0 3px;
    cursor: pointer;
}

.swiper-active-switch {
    background: #fff;
}

.arrow-left {
    background: url(/static/img/arrows.png) no-repeat left top;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -15px;
    width: 17px;
    height: 30px;
    z-index: 9999;
}

.arrow-right {
    background: url(/static/img/arrows.png) no-repeat left bottom;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -15px;
    width: 17px;
    height: 30px;
    z-index: 100000;
}

.swiper-pagination-bullet-active {
    background: rgb(7, 193, 96);
}

.swiper-slide p {
    padding: 0 1rem;
}

.tbox {
    width: 100%;
}

.tbox-title {
    font-weight: 700;
    color: #e92c2c;
    font-size: 22px;
    width: 100%;
    text-align: center;
}

.full-box {
    width: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(
            135deg,
            #fff6e5,
            #ffe0b2
    );
    border: 2px solid #ff9800;
    /* ← 左右 + 上下 金色线 */
    font-family:
            "Microsoft YaHei", Arial;
    box-sizing: border-box;
}

/* ===== 中间主框（满屏，无边线） ===== */
.full-box .wrap {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
    overflow: hidden;
}

/* 标题 */
.full-box .title {
    position: relative;
    background: linear-gradient(
            90deg,
            #b80000,
            #ff0000,
            #b80000
    );
    color: #ffe600;
    text-align: center;
    font-size: 19px;
    font-weight: bold;
    padding: 12px 5px;
    overflow: hidden;
}

.full-box .title::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent
    );
    animation: shine 3s infinite;
}

/* 表格 */
.full-box table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 15px;
}

.full-box th {
    background: #fff3cd;
    padding: 8px;
    border: 1px solid #ffcc80;
}

.full-box td {
    padding: 8px;
    border: 1px solid #ffcc80;
}

/* 高亮号码 */
.full-box .hl {
    display: inline-block;
    padding: 2px 6px;
    background: #ffeb3b;
    color: #d50000;
    border-radius: 4px;
    font-weight: bold;
    animation: glow 1.8s infinite;
}

/* 命中结果 */
.full-box .result {
    color: #d50000;
    font-weight: bold;
    animation: pulse 1.6s infinite;
}

/* 底部 */
.full-box .footer {
    background: #fff0d9;
    text-align: center;
    padding: 10px 5px;
}

.full-box .btn {
    display: inline-block;
    margin-top: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    background: linear-gradient(
            to right,
            #ff9800,
            #ff5722
    );
    color: #fff;
    font-size: 14px;
    box-shadow: 0 0 10px
    rgba(255, 120, 0, 0.6);
    animation: pulse 1.8s infinite;
}

/* 动画 */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px #ffeb3b;
    }

    50% {
        box-shadow: 0 0 12px #ff9800;
    }

    100% {
        box-shadow: 0 0 5px #ffeb3b;
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    60% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.close-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 10px;
}

.confirm-btn {
    background: #e92c2c;
    color: #fff;
    border-radius: 10px;
    margin-left: 10px;
}




