@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    border: 0;
}

input {
    outline: 0
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400
}

li, ol, ul {
    list-style: none
}

b, strong {
    font-weight: 700
}

em, i {
    font-style: normal
}

td, th {
    text-align: center
}

.clear {
    clear: both;
    height: 0;
    overflow: hidden;
    display: block;
}

.clearfix:after {
    clear: both;
    height: 0;
    overflow: hidden;
    display: block;
    visibility: hidden;
    content: ".";
}

.zz { margin: 0px auto; }
.fl { float: left; }
.fr { float: right; }
.cl { clear: both; }
.tc { text-align: center }

.azi a {
    display: block;
    text-indent: -9999em;
    font-size: 0;
    line-height: 0;
}

a {
    text-decoration: none;
    color: #d7ae67;
}

a:hover {
    text-decoration: none;
    color: #F60;
}

html, body {
    overflow-x: hidden;
}

body {
    font: 16px/1.6em Tahoma, "Microsoft YaHei";
    background: #0d0d0d;
    color: #7c7c7c;
    min-height: 100vh;
}

.g_title {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 4px solid #FF6600;
    position: relative;
    overflow: hidden;
}

.g_title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.g_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6600, #FFD700, #FF6600);
}

.title-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.main-title {
    font-size: 48px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 102, 0, 0.4),
        2px 2px 0 #000,
        -2px -2px 0 #000;
    margin: 0;
    letter-spacing: 8px;
    font-family: "Microsoft YaHei", "SimHei", sans-serif;
}

.sub-title {
    font-size: 32px;
    font-weight: bold;
    color: #FF6600;
    text-shadow: 
        0 0 10px rgba(255, 102, 0, 0.8),
        0 0 20px rgba(255, 102, 0, 0.5),
        1px 1px 0 #000,
        -1px -1px 0 #000;
    margin: 0;
    letter-spacing: 4px;
    padding: 8px 20px;
    background: rgba(255, 102, 0, 0.1);
    border: 2px solid rgba(255, 102, 0, 0.5);
    border-radius: 8px;
    font-family: "Microsoft YaHei", "SimHei", sans-serif;
}

@media (max-width: 600px) {
    .title-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .main-title {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .sub-title {
        font-size: 24px;
        letter-spacing: 2px;
    }
}

.g_header {
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 20px 0;
    border-bottom: 3px solid #FF6600;
}

.g_header .top {
    display: inline-block;
}

.g_header .logo img {
    max-width: 100%;
    height: auto;
}

.g_down {
    width: 100%;
    padding: 30px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #0d0d0d 100%);
}

.m_downCont {
    width: 850px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(30, 30, 45, 0.95);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.2), inset 0 0 60px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.u_notice {
    text-align: center;
    padding: 15px 20px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    font-size: 14px;
}

.urlList {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.urlList li {
    width: 180px;
}

.urlList li a {
    display: block;
    padding: 18px 15px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #fff;
    font-family: "Microsoft YaHei";
}

.urlList li a span {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.urlList li a i {
    display: block;
    font-size: 12px;
    opacity: 0.9;
}

.urlList li a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.btn-micro {
    background: linear-gradient(180deg, #b36d4b 0%, #8b4a30 100%);
    border: 2px solid #c97b52;
}

.btn-normal {
    background: linear-gradient(180deg, #FF6317 0%, #cc4d00 100%);
    border: 2px solid #ff7a33;
}

.btn-client {
    background: linear-gradient(180deg, #FF6317 0%, #cc4d00 100%);
    border: 2px solid #ff7a33;
}

.btn-pay {
    background: linear-gradient(180deg, #e2a600 0%, #b88600 100%);
    border: 2px solid #f0b800;
}

.u_error {
    text-align: center;
    padding: 10px;
    background: rgba(48, 168, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid rgba(48, 168, 0, 0.3);
}

.u_error a {
    color: #30a800;
    text-decoration: underline;
    font-size: 14px;
}

.u_error a:hover {
    color: #4ade00;
}

.u_hot {
    text-align: center;
    padding: 18px;
    background: linear-gradient(180deg, #ffff98 0%, #ffe066 100%);
    border-radius: 8px;
    margin-bottom: 25px;
    border: 2px solid #ff9d34;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    font-family: "Microsoft YaHei";
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.m_downText {
    color: #ccc;
}

.neiwen {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px dashed #333;
    align-items: flex-start;
}

.neiwen:last-child {
    border-bottom: none;
}

.u_tit {
    width: 120px;
    font-weight: bold;
    color: #FF9966;
    flex-shrink: 0;
    font-size: 15px;
}

.u_txtRihgt {
    flex: 1;
    padding-left: 15px;
    font-size: 14px;
    line-height: 1.8;
    color: #ddd;
}

.m_newslist {
    margin-top: 10px;
    padding-left: 10px;
}

.m_newslist li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px dashed #2a2a2a;
}

.m_newslist li:last-child {
    border-bottom: none;
}

.m_newslist .u_newItem em {
    position: absolute;
    left: 0;
    top: 8px;
    color: #FF6600;
    font-weight: bold;
}

.g_showcase {
    padding: 40px 0;
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a2e 100%);
}

.m_showcase {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.showcase-item {
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

.showcase-item img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid #333;
    transition: all 0.3s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
    border-color: #FF6600;
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.3);
}

.showcase-item p {
    margin-top: 12px;
    color: #FF0000;
    font-size: 15px;
    font-weight: bold;
}

.g_footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0d0d0d 100%);
    padding: 30px 0;
    border-top: 3px solid #FF6600;
}

.m_foot {
    text-align: center;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-text p {
    margin: 8px 0;
    font-size: 13px;
}

.highlight {
    color: #FF6600;
    font-weight: bold;
}

.QQun {
    color: #FF6600;
    font-weight: bold;
}

@media (max-width: 900px) {
    .m_downCont {
        width: 90%;
        padding: 20px;
    }
    
    .urlList {
        flex-direction: column;
        align-items: center;
    }
    
    .urlList li {
        width: 100%;
        max-width: 250px;
    }
    
    .neiwen {
        flex-direction: column;
    }
    
    .u_tit {
        margin-bottom: 8px;
        padding-bottom: 5px;
        border-bottom: 1px dashed #333;
        width: 100%;
    }
    
    .u_txtRihgt {
        padding-left: 0;
    }
    
    .m_showcase {
        flex-direction: column;
        align-items: center;
    }
}