/* 重置样式 */
html{color:#000;background:#FFF}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}
table{border-collapse:collapse;border-spacing:0}
fieldset,img{border:0}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}
ol,ul{list-style:none}
caption,th{text-align:left}
h1,h3,h3,h4,h5,h6{font-size:100%;font-weight:normal}
q:before,q:after{content:''}
abbr,acronym{border:0;font-variant:normal}
sup{vertical-align:text-top}
sub{vertical-align:text-bottom}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;font-size:100%}
legend{color:#000}

/* 页面加载动画 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.wrapper {
    animation: fadeIn 0.8s ease-out;
}

/* 加载动画 */
@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

#hx img {
    animation: pulse 1.5s infinite;
}

/* 基础样式 */
* {
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    line-height: 1.6;
}

img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #3498db;
    transition: all 0.3s ease;
}

a:hover {
    color: #2980b9;
    transform: translateY(-1px);
}

.wrapper {
    min-height: 100%;
    position: relative;
}

.container {
    margin-bottom: 25px;
    padding: 0 20px;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
}

.mod-head {
    height: 120px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    text-align: center;
    color: #2c3e50;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.mod-head::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

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

.mod-head .bd {
    padding-top: 15px;
    height: 80px;
    line-height: 80px;
    position: relative;
    z-index: 1;
}

.mod-head .bd img {
    transition: transform 0.3s ease;
}

.mod-head .bd img:hover {
    transform: scale(1.05);
}

.mod-head .ft {
    color: #7f8c8d;
    font-size: 16px;
    font-weight: 300;
    margin-top: -10px;
}

.mod-foot {
    position: relative;
    line-height: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.mod-foot span, .mod-foot a {
    margin: 0 5px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.mod-foot a {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-bottom: 2px;
}

.mod-foot a:hover {
    color: white;
}

.mod-foot a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.mod-foot a:hover::after {
    width: 100%;
}

.mod-link {
    margin-bottom: 20px;
    line-height: 30px;
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mod-link a {
    padding: 5px 10px;
    margin: 0 5px;
    white-space: nowrap;
    color: #3498db;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.mod-link a:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.mod-panel {
    padding: 35px 0;
}

.mod-panel iframe {
    opacity: 0.9;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.mod-panel iframe:hover {
    opacity: 1;
}

.mod-panel .bd {
    margin-bottom: 30px;
}

.mod-panel .ft {
    margin: 0 10px;
    line-height: 28px;
    color: #34495e;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mod-panel .ft strong {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.mod-panel ul {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.mod-panel ul:not(.list-3):not(.list-4) {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.mod-panel ul.list-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.mod-panel ul.list-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.mod-panel li {
    transition: transform 0.3s ease;
}

.mod-panel li:hover {
    transform: translateY(-5px);
}

.mod-panel .card {
    margin: 0;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mod-panel .card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.mod-panel .card .c-hd {
    height: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, #3498db, #2980b9);
    line-height: 60px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: white;
    position: relative;
    overflow: hidden;
}

.mod-panel .card .c-hd::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

.mod-panel .card .c-hd a {
    display: block;
    color: white;
    position: relative;
    z-index: 1;
}

.mod-panel .card .c-bd {
    min-height: 100px;
    padding: 20px;
    align-content: center;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.mod-panel .card .c-bd iframe {
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mod-panel .card .c-bd p {
    line-height: 28px;
    font-size: 16px;
    color: #2c3e50;
    margin: 5px 0;
}

.mod-panel .card .c-bd span,
.mod-panel .card .c-bd a {
    display: block;
    transition: all 0.3s ease;
}

.mod-panel .card .c-bd a:hover {
    color: #3498db;
}

.mod-panel .card .c-bd .text-gray {
    color: #7f8c8d;
    font-size: 14px;
}

.mod-panel .card .c-bd img {
    margin: 18px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mod-panel .card .c-bd img:hover {
    transform: scale(1.05);
}

.mod-panel .card .c-bd p.text-red {
    color: #e74c3c;
}

.mod-panel .qrcode {
    line-height: 30px;
    text-align: center;
    color: #7f8c8d;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.mod-panel .qrcode:hover {
    transform: translateY(-5px);
}

.mod-panel .qrcode img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mod-panel .qrcode img:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 800px) {
    .container {
        padding: 0 15px;
    }
    
    .mod-head {
        height: 100px;
        margin-bottom: 20px;
        border-radius: 0 0 15px 15px;
    }
    
    .mod-head .bd {
        padding-top: 10px;
        height: 60px;
        line-height: 60px;
    }
    
    .mod-head .bd img {
        width: auto;
        height: 50px;
    }
    
    .mod-panel {
        padding: 20px 0;
    }
    
    .mod-panel ul:not(.list-3):not(.list-4) {
        grid-template-columns: 1fr;
    }
    
    .mod-panel ul.list-3,
    .mod-panel ul.list-4 {
        grid-template-columns: 1fr;
    }
    
    .mod-panel .card .c-hd {
        height: 50px;
        line-height: 50px;
        font-size: 16px;
    }
    
    .mod-panel .card .c-bd {
        min-height: 80px;
        padding: 15px;
    }
    
    .mod-panel .card .c-bd p {
        line-height: 26px;
        font-size: 15px;
    }
    
    .mod-panel .ft {
        padding: 15px;
        margin: 0 5px;
    }
    
    .mod-panel .qrcode {
        padding: 15px;
        margin: 15px 5px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .mod-head {
        height: 80px;
        border-radius: 0 0 10px 10px;
    }
    
    .mod-head .bd {
        height: 50px;
        line-height: 50px;
        padding-top: 5px;
    }
    
    .mod-head .bd img {
        height: 40px;
    }
    
    .mod-head .ft {
        font-size: 14px;
    }
    
    .mod-panel {
        padding: 15px 0;
    }
    
    .mod-panel ul {
        gap: 10px;
    }
    
    .mod-panel .card {
        border-radius: 10px;
    }
    
    .mod-panel .card .c-hd {
        height: 45px;
        line-height: 45px;
        font-size: 15px;
    }
    
    .mod-panel .card .c-bd {
        padding: 12px;
        min-height: 70px;
    }
    
    .mod-panel .card .c-bd p {
        font-size: 14px;
        line-height: 24px;
    }
    
    .mod-panel .ft {
        padding: 12px;
        margin: 0;
        border-radius: 10px;
        font-size: 13px;
        line-height: 24px;
    }
    
    .mod-panel .qrcode {
        padding: 12px;
        margin: 10px 0;
        border-radius: 10px;
    }
}