body {
    /* background-color: #000000; */
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
}
/* 默认设置 */
.games-header {
    display: flex;
    justify-content: center; /* 居中内容 */
    align-items: center;     /* 垂直居中 */
    /* background-color: #000000; */
    height: 72px;
  }
  
  .games-fiwith {
    display: flex;
    justify-content: space-between; /* 左右分布 */
    align-items: center;           /* 垂直居中 */
    max-width: 1540px;             /* 最大宽度 1440px */
    width: 100%;    
    height: 52px;   
    padding: 10px;            /* 默认宽度为 100% */
  }
  
  .games-logo {
    max-width: 50%;                    /* logo 宽度 40% */
    display: flex;
    justify-content: left;       /* 水平居中 */
  }
  
  .games-login {
    max-width: 50%;                    /* login 宽度 60% */
    display: flex;
    justify-content: flex-end;     /* 右对齐 */
  }
  
  .games-login a {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    background-color: #4FB4ED;
  }
  /* header */
  
  
  .games-introduce{
    max-width: 100%;
    height: 260px;
    background-image: linear-gradient(237deg, #7177FB 42.88%, #4FB4ED 123.7%);
  }
  .games-brand{
    max-width: 1200px;
    height: 240px;
    margin: 0 auto;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
  }
  .games-m-brand{
    width: 100%;
    height: 150px;
    padding-top: 60px;
  }
  .games-brand-left{
    width: 80%;
    float: left;
    height: 100%;
  }
  .games-brand-left-img{
    width: 170px;
    height: 100%;
    float: left;
  }
  .games-brand-left-img img{
    border-radius: 10px;
  }
  .games-brand-left-img a{
    display: inline-block;  /* 或者使用 display: block */
    width: 170px !important;
    height: 150px !important;
  }
  .games-brand-left-title{
    width: 70%;
    height: 110px;
    float: left;
    color: #ffffff;
    /* padding: 20px 0; */
  }
  .games-brand-left-title h1{
    margin-bottom: 0.6em;
    margin-top: 0;
  }
  .games-brand-left-title p{
    /* padding: 0 0 15px 0; */
  }
  .games-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}
.games-list li a {
    display: block;
    padding: 4px 10px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}
.bg-games { background-color: #556270; }
@media (max-width: 990px) {
    .games-list {
        justify-content: center;
    }
}
  .games-brand-games{
    display: inline-block;
    width: 80px;
    height: 25px;
    line-height: 25px;
    color: #7e5f00;
    background-color: #eddc92;
    border-radius: 5px;
    text-align: center;
    /* border: 1px solid rgb(255, 255, 255, 0.5); */
  }
  .games-brand-website{
    display: inline-block;
    width: 80px;
    height: 25px;
    line-height: 25px;
    color: #7e5f00;
    background-color: #eddc92;
    border-radius: 5px;
    text-align: center;
    /* border: 1px solid rgb(255, 255, 255, 0.5); */
  }
  .games-brand-left-title a {
    text-decoration: none;  /* 仅取消该类下的链接下划线 */
    color: #fff;
  }
  .games-brand-rith{
    width: 20%;
    float: right;
    height: 110px;
    text-align: right;
    padding: 20px 0;
  }
  .games-brand-reh{
    width: 120px;
    height: 40px ;
    border-radius: 5px;
    text-align: center;
    line-height: 40px;
    background-color: #4FB4ED;
  }
  
  .games-brand-rith {
    display: flex;
    flex-direction: column;   /* 垂直排列 */
    align-items: flex-end;    /* 垂直对齐到右侧 */
    gap: 30px;                /* 设置按钮之间的间距为 20px */
  }
  
  @keyframes flash-glow {
    0%, 100% {
      box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
      transform: scale(1);
    }
    50% {
      box-shadow: 0 6px 20px rgba(255, 193, 7, 0.7);
      transform: scale(1.05);
    }
  }
  
  .games-main .games-brand-reh {
    width: 140px;
    height: 40px;
    background: linear-gradient(135deg, #FFA726, #FB8C00);
    color: white;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
    animation: flash-glow 1s infinite;
    font-weight: 600;
  }
  
  .games-main .games-brand-reh:hover {
    background: linear-gradient(135deg, #FFD54F, #FFB300); /* 悬停变亮 */
    color: #333;
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.5);
    transform: translateY(-2px) scale(1.05); /* 悬停微微上浮和放大 */
  }

  .m-nav {
    background-color: #333; /* 导航背景色 */
    padding: 10px 0;
  }
  
  /* 限制最大宽度 */
  .m-nav-auto {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* 导航列表样式 */
  .m-nav-auto ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    /* justify-content: center; */
}
  
  .m-nav-auto li {
    margin: 0 20px; /* 每个菜单项之间的间距 */
  }
  
  .m-nav-auto a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease; /* 添加过渡效果 */
  }
  
  /* 默认选中状态 */
  .m-nav-auto a.active {
    background-color: #FFA726; /* 默认选中的背景颜色 */
    text-decoration: none !important; /* 加这一行取消下划线 */
    color: #333; /* 默认选中的文字颜色 */
    border-radius: 5px; /* 圆角 */
  }
  
  /* 鼠标悬停效果 */
  .m-nav-auto a:hover {
    background-color: #FFA726;
    color: #333;
    border-radius: 5px;
  }
  
  
  /* 小于 990px 屏幕时 */
  @media (max-width: 990px) {
    .games-fiwith {
      width: 100%;                /* 使 fiwith 的宽度为 100% */
      align-items: center;        /* 垂直居中 */
    }
    .games-logo {
      width: 50%;                 /* logo 宽度 40% */
      justify-content: flex-start; /* logo 居左 */
    }
    .games-login {
      width: 50%;                /* login 宽度 100% */
      justify-content: flex-end;   /* login 右对齐 */
    }
    .games-login a {
      text-align: center;           /* a 标签右对齐 */
      width: 160px;                 /* a 标签占满整个宽度 */
    }
    .games-introduce{
        width: 100%;
        height: 440px;
        background-image: linear-gradient(237deg, #7177FB 42.88%, #4FB4ED 123.7%);
    }
    .games-brand{
        width: 100%;
        height: 420px;
        margin: 0 auto;
    }
    .games-m-brand{
        width: 100%;
        height: 150px;
        padding-top: 30px;
        text-align: center;
    }
    .games-brand-left{
        width: 100%;
        float: none;
        height: 100%;
    }
    .games-brand-left-img{
        width: 100%;
        height: 100%;
  
    }
    .games-brand-left-title{
        width: 100%;
        height: 140px;
        color: #ffffff;
        padding: 0px 0;
    }
    .games-brand-left-title p{
        /* padding: 8px 10px; */
    }
    .games-brand-rith {
        display: flex;
        align-items: flex-end;
        gap: 20px;
        flex-wrap: nowrap;
        justify-content: center;
        align-content: center;
        flex-direction: row;
    }
    .games-brand-rith{
        width: 100%;
        float: right;
        height: 80px;
        text-align: right;
    }
    /* 滚动后固定在顶部样式 */
.games-brand-rith-fixed {
    position: fixed;
    height: 50px;
    top: 0px;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .m-nav-auto ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
  .m-nav-auto li {
    margin: 0 10px;
  }
  }


h1 { font-size: 26px !important; }
h2 { font-size: 24px !important; }
h3 { font-size: 20px !important; }
h4 { font-size: 16px !important; }
h5 { font-size: 14px !important; }
h6 { font-size: 12px !important; }
/* h1 { font-size: 24px !important; line-height: 1.5; }
h2 { font-size: 22px !important; line-height: 1.55; }
h3 { font-size: 20px !important; line-height: 1.6; }
h4 { font-size: 18px !important; line-height: 1.65; }
h5 { font-size: 16px !important; line-height: 1.7; }
h6 { font-size: 14px !important; line-height: 1.75; } */
.container {
    width: 100%;
    background-color: #ffffff;
    padding: 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}
header{
    text-align: center;
}
.header-h1{
    color: #cf2e2e;
    text-align: center;
    padding: 20px 10px;
}
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
}
.header-content img {
    width: 100%;
    max-width: 768px;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
}
.buttons {
    padding: 30px 0 0 0;
}
.buttons p{
    /* margin: 30px 0 0px 0; */
    font-size: 16px;
}
.btn {
    padding: 10px 20px;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 10px;
}
.login {
    background-color: #007bff;
    color: white;
}
.register {
    background-color: #ff4d4d;
    color: white;
}
.promo-banner{
    /* background-color: #000; */
}
.casino-rating {
    font-weight: bold;
    color: #cf2e2e;
}
.safe-tag {
    font-weight: bold;
    /* color: #009823; */
}
.bonus-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}
.bonus-container-Hot-Games{
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-top: 30px;
}
.Hot-Games{
    color: #cf2e2e;
}
a {
    /* color: #007bff; */
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
footer {
    text-align: center;
    background-color: #000;
    padding: 0.5em;
    font-size: 0.9em;
    color: #cfcfcf;
}
.btn-groups {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0
  }
  .btn-groups a {
    font-size: 20px;
    text-decoration: none;
    color: #fff;
    width: 160px;
    height: 50px;
  }
  .btns {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 30px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: none;
    background-size: 400%;
    animation: gradientShift 5s infinite alternate;
    position: relative;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3), 
    inset 0px 2px 4px rgba(255, 255, 255, 0.3);
  }
  .btns::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: calc(100% - 1px);
    height: calc(100% - 1px);
    border-radius: 25px;
    box-shadow: inset 0px 2px 6px rgba(0, 0, 0, 0.2);
  }
  .btns:active {
    transform: translateY(3px);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  }
  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
  }
  .btns:hover { filter: brightness(1.2); }
  .btn-blue-purple { background: linear-gradient(180deg, #6f42c1, #007bff); }
  .btn-red-orange { background: linear-gradient(180deg, #ff5733, #ff9800); }
  .btn-cyan-green { background: linear-gradient(180deg, #00e5ff, #00c853); }
  .btn-pink-rose { background: linear-gradient(180deg, #ff4b8f, #ff88c0); }
  .btn-neon-green-blue { background: linear-gradient(180deg, #00ff7f, #0077ff); }
  .btn-purple-dream { background: linear-gradient(180deg, #a133ff, #da22ff); }
  .btn-orange-sunset { background: linear-gradient(180deg, #ff9900, #ff4d00); }
  .btn-deep-blue { background: linear-gradient(180deg, #000428, #004e92); }
  .btn-gold { background: linear-gradient(180deg, #ffd700, #ff8c00); }
  .btn-rainbow { background: linear-gradient(180deg, #ff0000, #ff7300, #ffeb00); }
@keyframes flash {
    0% { 
        background: linear-gradient(to bottom, #ff9090, #cc0000);
        border-color: gold; 
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    }
    50% { 
        background: linear-gradient(to bottom, #0088ff, #97baff);
        border-color: cyan; 
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.9);
    }
    100% { 
        background: linear-gradient(to bottom, #ff0000, #cc0000);
        border-color: gold; 
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    }
}
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}
.button-container a{
    color: #fff;
    text-decoration: none;
}
.flash-play-button {
    display: inline-block;
    padding: 20px 50px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-align: center;
    text-decoration: none;
    border: 3px solid gold;
    border-radius: 50px;
    animation: flash 0.5s infinite alternate;
    transition: transform 0.2s ease-in-out;
}
.flash-play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 255, 255, 1);
}
/* header */

/* article */
article {
    line-height: 1.8;
    padding: 1.5em 2.5em 0 2.5em;
}
article h1, h2, h3, h4, h5, h6 {
    color: red;
}
article > hr {
    border-color: #ffffff2e;
}
table {
    width: 100%; 
    border-collapse: collapse;
    text-align: left;
    font-size: 16px;
}

th, td {
    padding: 12px;
    border: 1px solid #ddd;
}

th {
    background-color: #607d8b;
    color: white;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}
.nav-item h2{
    padding: 0 20px;
    color: red;
}
tr:hover {
    background-color: #ddd;
}
.article-images-insert img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
}
.article-images-insert p{
    text-align: center;
    font-size: 12px;
    font-weight: 100;
    color: #4CAF50;
}
/* article */

/* related-content */
.related-content{
    max-width: 1200px;
    line-height: 1.8;
    padding: 1.5em 2.5em 0 2.5em;
    /* color: red; */
    margin: 0 auto;
}
.related-content h2{
    color: #000;
}
.related-content a {
    text-decoration: underline;
    color: inherit; 
    font-weight: normal;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}
/* related-content */

/* article-navigation */
.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px; 
    padding:1.5em 2.5em 1.5em 2.5em;
}

.prev-article {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: #333;
    width: 50%;
    /* font-weight: bold; */
}
.next-article {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
    color: #333;
    width: 50%;
    /* font-weight: bold; */
}
.nav-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-icon svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.nav-title {
    font-size: 16px;
    color: #777;
    margin-top: 4px;
    text-align: center;
}

.nav-separator {
    display: inline-block;
    width: 1px; 
    height: 25px; 
    background-color: #999;
    margin: 0 15px;
    vertical-align: middle;
}
.article-navigation a {
    text-decoration: none;
}

.article-navigation a:hover {
    color: #000;
}
.article-navigation a:hover .nav-title {
    color: #000 !important;
}
/* article-navigation */
footer a {
    text-decoration: none; /* 去除下划线 */
    color: inherit; /* 继承父级颜色 */
    font-weight: normal; /* 取消加粗 */
}

footer a:hover {
    color: #fff; /* 鼠标移入时字体变为黑色 */
}

/* 返回顶部按钮样式 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 35px;
    height: 35px;
    background-color: rgb(255 191 0);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, transform 0.3s;
}

.back-to-top:hover {
    background-color: rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

/* 响应式：移动端优化 */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}
.author-section {
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    padding:1.5em 2.5em 1.5em 2.5em;
}

.author-section h2 {
    text-align: center;
    font-size: 24px;
    /* color: #333; */
    margin-bottom: 20px;
}

.author-box {
    display: flex;
    align-items: center;
    background: #f0f5fa;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.author-box img {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    margin: 15px;
}

.author-content {
    flex: 1;
}

.author-content h4 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.author-content p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .author-box img {
        margin-bottom: 10px;
    }
    .author-section {
        padding: 1em;
    }
}
@media screen and (max-width: 768px) {
    /* header */
    h1 { font-size: 26px !important; }
    h2 { font-size: 24px !important; }
    h3 { font-size: 20px !important; }
    h4 { font-size: 16px !important; }
    h5 { font-size: 14px !important; }
    h6 { font-size: 12px !important; }
    .container {
        max-width: 1200px;
        width: calc(100% - 0px);
        background-color: #ffffff;
        margin: 0em 0px;
        padding: 0;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 0px;
    }
    header {
        /* padding: 1em; */
    }
    .header-content img {
        width: 100%;
        max-width: 100%;
        display: block;
        margin: 0 auto;
        border-radius: 5px;
    }
    /* header */
    /* article */
    article {
        line-height: 1.8;
        padding: 1em;
    }
    /* article */
    /* related-content */
    .related-content{
        line-height: 1.8;
        padding: 1em;
    }
    /* related-content */
    .article-navigation {
        padding: 1em;
    }
    .nav-title {
    display: none;
    }
    .nav-separator {
        height: 20px; 
    }
}

.rating-ph {
    display: flex;
    gap: 5px;
    justify-content: flex-start;
    flex-direction: row;
}
.text-warning-ph {
    color: #ffc107;
}
.small-ph {
    font-size: 14px; 
    font-size: 0.875em;
}
.rating-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.casino-rating {
    /* width: 50%; */
    text-align: right;
    padding-right: 5px; 
    font-weight: bold;
}

.rating-container-ph {
    /* width: 50%; */
    text-align: left;
    padding-left: 5px; 
}

.rating-container-ph i {
    color: gold;
    font-size: 18px;
}
article {
    max-width: 1200px;
    overflow-x: hidden;
    margin: 0 auto;
}
figure {
    width: 100%;
    overflow-x: auto;
    display: block;
}
figure {
    all: unset;
}
figure {
    width: 100%;
    overflow-x: auto;
    display: block;
    max-width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    white-space: nowrap;
}

@media (max-width: 768px) {
    figure {
        overflow-x: auto;
    }
}

html, body {
    overflow-x: hidden; 
    width: 100%;
}

figure {
    max-width: 100%;
    width: 100%;
    overflow-x: auto;
    display: block;
}

table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

td, th {
    white-space: nowrap;
    padding: 10px;
    border: 1px solid #ddd;
}


@media (max-width: 768px) {
    figure {
        overflow-x: auto;
    }
}

.related-searches {
    border: 2px solid #ccc;
    padding: 16px;
    margin: 20px 0;
    border-radius: 8px;
    background-color: #fafafa;
    overflow: hidden;
}

.related-searches h2 {
    margin-top: 0;
    font-size: 20px;
    color: #333;
}

.related-searches ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.related-searches li {
    float: left;
    margin: 6px;
    padding: 0px 10px;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
}

/* 每个 li 使用不同的背景色 */
/* .related-searches li:nth-child(1)  { background-color: #e74c3c; }
.related-searches li:nth-child(2)  { background-color: #3498db; }
.related-searches li:nth-child(3)  { background-color: #2ecc71; }
.related-searches li:nth-child(4)  { background-color: #9b59b6; }
.related-searches li:nth-child(5)  { background-color: #f39c12; }
.related-searches li:nth-child(6)  { background-color: #1abc9c; }
.related-searches li:nth-child(7)  { background-color: #34495e; }
.related-searches li:nth-child(8)  { background-color: #d35400; }
.related-searches li:nth-child(9)  { background-color: #7f8c8d; }
.related-searches li:nth-child(10) { background-color: #c0392b; }
.related-searches li:nth-child(11) { background-color: #16a085; }
.related-searches li:nth-child(12) { background-color: #2980b9; }
.related-searches li:nth-child(13) { background-color: #8e44ad; }
.related-searches li:nth-child(14) { background-color: #27ae60; }
.related-searches li:nth-child(15) { background-color: #e67e22; }
.related-searches li:nth-child(16) { background-color: #2c3e50; }
.related-searches li:nth-child(17) { background-color: #f1c40f; }
.related-searches li:nth-child(18) { background-color: #e84393; }
.related-searches li:nth-child(19) { background-color: #6c5ce7; }
.related-searches li:nth-child(20) { background-color: #00cec9; } */
.article-grid-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* 使文章卡片和分页居中 */
    max-width: 1200px; /* 最大宽度限制为1200px */
    margin: 0 auto; /* 居中显示 */
    padding: 10px;
}

/* 设置文章卡片网格布局 */
.article-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 默认四列 */
    gap: 20px; /* 每个卡片之间有20px间距 */
    width: 100%; /* 使文章网格宽度自适应 */
    margin-top: 20px; /* 给卡片和分页之间添加空间 */
}

/* 每篇文章的卡片样式 */
.article-card {
    border: 1px solid #ddd;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-radius: 8px;
    margin-top: 20px;
    cursor: pointer; /* 鼠标悬停时显示手势 */
}

.article-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.article-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.4s ease, filter 0.4s ease;
}
.article-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

.article-card:hover .article-title {
    color: #0073aa;
}

.article-title::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #0073aa;
    left: 0;
    bottom: -4px;
    transition: width 0.3s ease;
}

.article-card:hover .article-title::after {
    width: 100%;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
    filter: brightness(1.05);
}
.article-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}
.article-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: bold;
}
.article-excerpt {
    font-size: 1rem;
    color: #555;
}
@media (max-width: 768px) {
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
.pagination-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination a,
.pagination .current {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background-color: #f1f1f1;
    color: #0073aa;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.pagination .current {
    background-color: #0073aa;
    color: #fff;
    pointer-events: none;
}
.pagination a:hover {
    background-color: #0073aa;
    color: #fff;
}

.pagination .prev,
.pagination .next {
    padding: 10px 15px;
    background-color: #f1f1f1;
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin: 0 5px;
    transition: background-color 0.3s, color 0.3s ease;
    display: flex;
    align-items: center;
}

.pagination .prev:hover,
.pagination .next:hover {
    background-color: #0073aa;
    color: #fff;
}

.pagination .prev::before,
.pagination .next::before {
    content: '';
    display: inline-block;
    margin-right: 5px;
    font-size: 1rem;
    font-weight: bold;
}
.pagination .prev::before {
    content: '←'; 
}

.pagination .next::before {
    content: '→';
}
.pagination .page-separator {
    padding: 10px 15px;
    color: #777;
    font-size: 1rem;
}
@media (max-width: 768px) {
    .pagination a,
    .pagination .current,
    .pagination .prev,
    .pagination .next {
        padding: 8px 12px;
    }
}
.pagination a,
.pagination .current {
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.pagination a:hover {
    background-color: #005f8d;
    color: #fff;
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .article-card {
        padding: 15px;
    }

    .pagination a,
    .pagination .current,
    .pagination .prev,
    .pagination .next {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .article-title {
        font-size: 1.2rem;
    }
}
.article-link a {
    text-decoration: underline;
    transition: text-decoration 0.3s ease;
}
* a:hover {
    text-decoration: none;
}

#hongbao0 {display: none;}
.wrapperhb {margin: auto;width: 300px;height: 150px;text-align: center;left: 50%;margin-left: -150px;z-index: 99999;position: fixed;bottom: 60px;}
.wrapperhb h1 {margin-top: 15px;font-size: 12px;color: #f00;}
.wrapperhb .bonus {position: absolute;bottom: 5px;left: 50%;margin-left: -40px;width: 80px;height: 80px;text-align: center;overflow: hidden;border-radius: 10px;background-color: #f00;transition: all 0.75s ease;-webkit-animation-name: shaking;animation-name: shaking;border-radius: 50%;}
.wrapperhb .bonus:after {position: absolute;top: 15px;left: 0;content: '';width: 80px;height: 20px;border-radius: 50%;box-shadow: 0 3px 0 2px #ff0;z-index: 3;}
.wrapperhb .bonus:before {position: absolute;top: 22px;left: 50%;margin-left: -15px;content: '₱';width: 30px;height: 30px;line-height: 35px;font-size: 20px;font-weight: 700;color: #f00;background-color: #ff0;border-radius: 50%;z-index: 4;}
.surprises .fly {position: absolute;top: 45px;left: 0;color: #f37476;z-index: 0;opacity: 0;font-size: 10px;-webkit-animation-duration: 1.65s;animation-duration: 1.65s;-webkit-animation-timing-function: ease-in-out;animation-timing-function: ease-in-out;-webkit-animation-iteration-count: infinite;animation-iteration-count: infinite;-webkit-animation-direction: normal;animation-direction: normal;-webkit-animation-delay: 0;animation-delay: 0;-webkit-animation-play-state: running;animation-play-state: running;-webkit-animation-name: flying;animation-name: flying;}
.surprises .fly:nth-child(1) {-webkit-animation-delay: 1.5s;animation-delay: 1.5s;left: 150px;}
.surprises .fly:nth-child(2) {-webkit-animation-delay: 1.2s;animation-delay: 1.2s;left: 130px;}
.surprises .fly:nth-child(3) {-webkit-animation-delay: 0.9s;animation-delay: 0.9s;left: 165px;}
.surprises .fly:nth-child(4) {-webkit-animation-delay: 1.6s;animation-delay: 1.6s;left: 110px;}
.surprises .fly:nth-child(5) {-webkit-animation-delay: 0.3s;animation-delay: 0.3s;left: 175px;}
.surprises .fly:nth-child(6) {-webkit-animation-delay: 0.15s;animation-delay: 0.15s;left: 137px;}
.surprises .fly:nth-child(7) {-webkit-animation-delay: 1.15s;animation-delay: 1.15s;left: 185px;}
.surprises .fly:nth-child(8) {-webkit-animation-delay: 0.75s;animation-delay: 0.75s;left: 118px;}
.hearts {position: relative;}
.hearts:before,.hearts:after {position: absolute;content: '';width: 6px;height: 10px;background: #ff370f;border-radius: 3px 3px 0 0;transform: rotate(-45deg);transform-origin: 10% 50%;}
.hearts:after {left: 0;transform: rotate(45deg);transform-origin: 110% 68%;}
.jumping,.shaking {-webkit-animation-duration: 1.2s;animation-duration: 1.2s;animation-time-function: ease;-webkit-animation-delay: 0;animation-delay: 0;-webkit-animation-iteration-count: infinite;animation-iteration-count: infinite;-webkit-animation-direction: normal;animation-direction: normal;-webkit-animation-play-state: running;animation-play-state: running;}

.hob_div {width: 100vw;height: 100vh;position: fixed;top: 0;left: 0;z-index: 999;}
.hob-inlet {position: relative;width: 110px;height: 113px;top: 0;z-index: 1;cursor: pointer;}.hob-inlet-03 {position: absolute;width: 100%;height: 100%;top: 0;left: 0;z-index: 1;}
.hob-inlet-02 {position: absolute;width: 100%;height: 100%;top: 0;left: 0;z-index: 2;}
.hob-inlet-01 {position: absolute;width: 100%;height: 100%;top: 0;left: 0;z-index: 3;}
.hob-inlet:not(.disable) .hob-inlet-02 {animation: hob_shake 1s infinite;}
.hob-inlet:not(.disable):hover .hob-inlet-02 {animation: hob 1s 1;}
.for-get-now {z-index: 33;animation: hob_btn 2.5s infinite;}
.hongbao-wrapperhb {display: none;position: fixed;top: 0%;left: 0%;width: 100%;height: 100%;z-index: 200;}
.hongbao-wrapperhb i {display: block;position: absolute;width: 96px;height: 131px;top: -200px;background-repeat: no-repeat;background-size: 100%;-webkit-transition: 2s transform;-moz-transition: 2s transform;-ms-transition: 2s transform;-o-transition: 2s transform;transition: 2s transform;}
.hongbao-wrapperhb i.rotate {-webkit-transform: rotate(7200deg);-ms-transform: rotate(7200deg);-o-transform: rotate(7200deg);transform: rotate(7200deg);}
.hob-cd {position: absolute;color: #eee;font-size: 30px;top: 100px;left: 200px;}
.hob-close {position: absolute;width: 40px;height: 40px;top: 100px;right: 200px;cursor: pointer;z-index: 201;}
.hob-close::before,.hob-close::after {content: "";display: block;position: absolute;width: 30px;height: 2px;top: 19px;left: 5px;background-color: #eee;border-radius: 2px;-webkit-transform: rotate(-45deg);-ms-transform: rotate(-45deg);-o-transform: rotate(-45deg);transform: rotate(-45deg);}
.hob-close::after {-webkit-transform: rotate(45deg);-ms-transform: rotate(45deg);-o-transform: rotate(45deg);transform: rotate(45deg);}

.hb_modal {position: fixed;top: 0%;left: 0%;width: 100%;height: 100vh;z-index: 200;user-select: none;}
.hb_modal_main {display: flex;align-items: center;justify-content: center;flex-direction: column;position: fixed;top: 20%;left: 50%; margin-left: -156px;z-index: 99;}
.hb_content {display: block;width: 312px;height: 339px;background-repeat: no-repeat;background-size: contain;background-image: url(/static/image/tc1_2x.png);font-size: 18px;font-family: ArialMT;color: #b5621f;}
.tips {margin: 55px auto 14px;width: 100%;text-align: center;}
.hb_banner {width: 240px;height: 208px;margin: 0 auto;background-repeat: no-repeat;background-size: 100%;background-image: url(/static/image/tcjf_2x.png);font-size: 17px;color: #ff3743;display: flex;align-items: center;flex-direction: column;}
.hb_banner > span:nth-child(1) {font-size: 43px;font-family: Arial-Black, Arial;font-weight: 900;color: #fe1826;margin-top: 10%;line-height: 60px;}
.list-inline-item >.btn {width: 264px;height: 53px;background-repeat: no-repeat;background-size: contain;background-image: url(/static/image/bott_get2x-1.png);font-size: 18px;color: #ffe5b3;text-align: center;line-height: 40px;}
.hb_modal_main >.btn {width: 264px;height: 53px;background-repeat: no-repeat;background-size: contain;background-image: url(/static/image/bott_get2x.png);font-size: 18px;color: #ffe5b3;text-align: center;line-height: 56px;}
.close_icon {display: block;position: relative;top: 50px;right: -138px;width: 64px;height: 64px;cursor: pointer;}
.amount[data-v-f0eb257c] {position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);font-family: HelveticaNeueBlack,sans-serif;font-style: normal;font-weight: 900;font-size: 45px;line-height: 41px;text-align: center;text-transform: uppercase;background: linear-gradient(180deg,#ffe600 28.13%,#f90);-webkit-background-clip: text;-webkit-text-fill-color: transparent;background-clip: text;text-shadow: 0 0 18.1203px rgb(0 0 0 / 40%);}
.taxonomy-description {margin-top: 15px;background: #fff;border-radius: 5px;padding: 15px;-webkit-box-shadow: 0 3px 6px -4px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);box-shadow: 0 3px 6px -4px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);}
.textwidget.custom-html-widget {font-size: .75rem;}

.info-box {display: flex;justify-self: right;}
.login-button {border-radius:32px;background: #66A6FE;color: #FFF;}
.btn--shockwave.is-active {-webkit-animation: shockwaveJump 1s ease-out infinite;animation: shockwaveJump 1s ease-out infinite;}
.btn1 {width: 106px;height: 32px;color: #FFF;background: #66A6FE;border-radius: 32px;text-align: center;border: none;padding: 0;position: relative;outline: none;}
.btn--shockwave.is-active:before {content: "";position: absolute;top: 0;left: 0;bottom: 0;right: 0;border-radius: 16px;-webkit-animation: shockwave 1s 0.5s ease-out infinite;animation: shockwave 1s 0.5s ease-out infinite;}
.btn--shockwave.is-active:after {content: "";position: absolute;top: 0;left: 0;bottom: 0;right: 0;border-radius: 16px;-webkit-animation: shockwave 1s 0.65s ease-out infinite;animation: shockwave 1s 0.65s ease-out infinite;}

@-webkit-keyframes jumping {0% {bottom: 5px;transform: rotate(-10deg) scale(0.98);}10% {bottom: 30px;transform: rotate(0deg) scale(1);}50% {bottom: 5px;transform: rotate(10deg) scale(0.98);}60% {bottom: 30px;transform: rotate(0deg) scale(1);}100% {bottom: 5px;transform: rotate(-10deg) scale(0.98);}}
@keyframes jumping {0% {bottom: 5px;transform: rotate(-10deg) scale(0.98);}10% {bottom: 30px;transform: rotate(0deg) scale(1);}50% {bottom: 5px;transform: rotate(10deg) scale(0.98);}60% {bottom: 30px;transform: rotate(0deg) scale(1);}100% {bottom: 5px;transform: rotate(-10deg) scale(0.98);}}
@-webkit-keyframes shaking {0% {margin-left: -35px;}10% {margin-left: -45px;}20% {margin-left: -35px;}30% {margin-left: -45px;}40% {margin-left: -35px;}50% {margin-left: -40px;}65% {bottom: 20px;}100% {bottom: 5px;}}
@keyframes shaking {0% {margin-left: -35px;}10% {margin-left: -45px;}20% {margin-left: -35px;}30% {margin-left: -45px;}40% {margin-left: -35px;}50% {margin-left: -40px;}65% {bottom: 20px;}100% {bottom: 5px;}}
@-webkit-keyframes flying {0% {transform: rotate(20deg);opacity: 0;}50% {transform: rotate(-20deg);opacity: 1;}100% {top: -60px;transform: rotate(20deg);opacity: 0;}}
@keyframes flying {0% {transform: rotate(20deg);opacity: 0;}50% {transform: rotate(-20deg);opacity: 1;}100% {top: -60px;transform: rotate(20deg);opacity: 0;}}
@keyframes hob_shake {15%,45% {-webkit-transform: rotate(3deg);transform: rotate(3deg);transform-origin: 50% 100%;}30% {-webkit-transform: rotate(-3deg);transform: rotate(-3deg);transform-origin: 50% 100%;}60%,100% {-webkit-transform: rotate(0deg);transform: rotate(0deg);transform-origin: 50% 100%;}}
@keyframes hob {10%,30%,50% {-webkit-transform: translateY(-10px);transform: translateY(-10px);}20%,40% {-webkit-transform: translateY(-5px);transform: translateY(-5px);}60%,100% {-webkit-transform: translateY(0);transform: translateY(0);}}
@keyframes hob_btn {10%,30%,50%,70%,90% {-webkit-transform: scale(1.1);transform: scale(1.1);}20%,40%,60%,80% {-webkit-transform: scale(1);transform: scale(1);}}
@-webkit-keyframes shockwaveJump {0% {-webkit-transform: scale(0.4);transform: scale(0.4);}40% {-webkit-transform: scale(1.08);transform: scale(1.08);}50% {-webkit-transform: scale(0.98);transform: scale(0.98);}55% {-webkit-transform: scale(1.02);transform: scale(1.02);}60% {-webkit-transform: scale(0.98);transform: scale(0.98);}100% {-webkit-transform: scale(1);transform: scale(1);}}
@keyframes shockwaveJump {0% {-webkit-transform: scale(1);transform: scale(1);}40% {-webkit-transform: scale(1.08);transform: scale(1.08);}50% {-webkit-transform: scale(0.98);transform: scale(0.98);}55% {-webkit-transform: scale(1.02);transform: scale(1.02);}60% {-webkit-transform: scale(0.98);transform: scale(0.98);}100% {-webkit-transform: scale(1);transform: scale(1);}}
@-webkit-keyframes shockwave {0% {-webkit-transform: scale(1);transform: scale(1);box-shadow: 0 0 2px rgba(255, 255, 255, 0.15), inset 0 0 2px rgba(255, 255, 255, 0.15);}95% {box-shadow: 0 0 4px #ffffff, inset 0 0 4px #ffffff;}100% {-webkit-transform: scale(1.25);transform: scale(1.25);}}
@keyframes shockwave {0% {-webkit-transform: scale(1);transform: scale(1);box-shadow: 0 0 2px rgba(102,166,254, 0.65), inset 0 0 1px rgba(102,166,254, 0.95);}95% {box-shadow: 0 0 16px rgba(102,166,254, 0.15), inset 0 0 16px rgba(102,166,254, 0.15);}100% {-webkit-transform: scale(1.3);transform: scale(1.3);}}

@media (max-width: 768px) {
	[mod-relation="hobCoupon"] h5 {font-size: 20px;}
	.hobCoupon-img {max-width: 100%;}
	.hob-cd {top: 20px;left: 30px;}
	.hob-close {top: 20px;right: 20px;}
}

@media (max-width:550px){
	.box-image{display:none;}
}
