/* 八荒主宰官网独立样式 bhzz.aywluo.com */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
}
body {
    background: #0c0303;
    color: #f8f8f8;
    line-height: 1.8;
}
header {
    background: #1a0505;
    border-bottom: 2px solid #d42626;
    position: sticky;
    top: 0;
    z-index: 999;
}
.nav-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}
.logo-box img {
    height: 60px;
}
.pc-nav {
    display: flex;
    gap: 30px;
}
.pc-nav a {
    color: #ffd360;
    text-decoration: none;
    font-size: 16px;
}
.pc-nav a:hover {
    color: #ff3838;
}
.download-btn {
    background: linear-gradient(90deg,#ff3333,#ff9900);
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: bold;
    color: #000 !important;
}
.hamburger {
    display: none;
    width: 40px;
    height: 36px;
    position: relative;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 4px;
    background: #ffd360;
    border-radius: 2px;
    position: absolute;
}
.hamburger span:nth-child(1) {top: 0;}
.hamburger span:nth-child(2) {top: 16px;}
.hamburger span:nth-child(3) {bottom: 0;}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: #110202;
    padding: 80px 30px;
    transition: right 0.4s ease;
    z-index: 1000;
}
.mobile-menu.open {
    right: 0;
}
.mobile-menu a {
    display: block;
    color: #ffd360;
    font-size: 18px;
    margin-bottom: 24px;
    text-decoration: none;
}
.mask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    z-index: 998;
    display: none;
}
.mask.show {display: block;}
/* 首页轮播 */
.slider-box {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}
.slider-list {
    display: flex;
    width: 400%;
    animation: slide 20s infinite linear;
}
.slider-item {
    width: 25%;
}
.slider-item img {
    width: 100%;
    display: block;
}
@keyframes slide {
    0% {transform: translateX(0);}
    20% {transform: translateX(0);}
    25% {transform: translateX(-25%);}
    45% {transform: translateX(-25%);}
    50% {transform: translateX(-50%);}
    70% {transform: translateX(-50%);}
    75% {transform: translateX(-75%);}
    95% {transform: translateX(-75%);}
    100% {transform: translateX(0);}
}
.banner-add {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
}
.banner-add img {
    width: 100%;
    border-radius: 8px;
    display: block;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}
.title-main {
    text-align: center;
    font-size: 36px;
    color: #ffd360;
    margin-bottom: 50px;
    position: relative;
}
.title-main:after {
    content: "";
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg,#ff3333,#ffd360);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
}
.title-sub {
    font-size:26px;
    color:#ffc120;
    margin:40px 0 20px;
    border-left:4px solid #ff3838;
    padding-left:12px;
}
.intro-box {
    background: linear-gradient(145deg,#150404,#080101);
    border:1px solid #662020;
    padding:30px;
    border-radius:10px;
    margin-bottom:50px;
}
.feature-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom:60px;
}
.feature-card {
    background: linear-gradient(145deg,#280808,#100202);
    border: 1px solid #772222;
    padding: 30px 20px;
    border-radius: 12px;
}
.feature-card h3 {
    color: #ff4444;
    font-size: 22px;
    margin-bottom: 15px;
}
.job-wrap {
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:20px;
    margin-bottom:60px;
}
.job-card {
    background:#120202;
    border:1px solid #602020;
    padding:22px;
    border-radius:10px;
}
.job-card h4 {
    color:#ff6666;
    font-size:20px;
    margin-bottom:12px;
}
.news-wrap {
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:30px;
    margin-bottom:60px;
}
.news-box {
    background:#140303;
    border:1px solid #552222;
    padding:25px;
    border-radius:10px;
}
.news-box h3 {
    color:#ffd360;
    margin-bottom:15px;
}
.news-item {
    padding:12px 0;
    border-bottom:1px solid #331111;
}
.news-item a {
    color:#ffd360;
    text-decoration:none;
}
.news-item span {
    color:#999;
    font-size:13px;
    display:block;
}
.faq-box {
    background:#160404;
    border:2px solid #772222;
    padding:30px;
    border-radius:10px;
    margin-bottom:50px;
}
.faq-item {
    margin-bottom:18px;
}
.faq-q {
    color:#ffd360;
    font-weight:bold;
    font-size:17px;
}
.faq-a {
    color:#ddd;
    padding-left:10px;
    margin-top:6px;
}
.gift-box {
    background: #180404;
    border: 2px solid #ffc120;
    border-radius: 12px;
    padding: 35px 25px;
    margin-top: 40px;
}
.gift-title {
    color: #ffc120;
    font-size: 26px;
    margin-bottom: 25px;
}
.gift-table {
    width: 100%;
    border-collapse: collapse;
}
.gift-table th, .gift-table td {
    border: 1px solid #552222;
    padding: 12px 15px;
    text-align: left;
}
.gift-table th {
    background: #ffc120;
    color: #000;
}
.gift-table tr:nth-child(even) {
    background: #220606;
}
.gift-note {
    margin-top: 20px;
    color: #ff9999;
    font-size: 15px;
}
footer {
    background: #050101;
    border-top: 2px solid #d42626;
    padding: 40px 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}
@media screen and (max-width:768px) {
    .pc-nav {display: none;}
    .hamburger {display: block;}
    .title-main {font-size: 26px;}
    .title-sub {font-size:22px;}
    .feature-wrap {grid-template-columns: 1fr;}
    .job-wrap {grid-template-columns:1fr;}
    .news-wrap {grid-template-columns:1fr;}
    .gift-table th, .gift-table td {
        padding: 8px 6px;
        font-size: 13px;
    }
    .logo-box img {height: 45px;}
}