* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/*125源码网-www.125o.com*/
html,
body {
    height: 100%;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #7f53ac 0%, #647dee 100%);
    background-attachment: fixed;
    font-size: 15px;
}

ul,
ol,
li,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 公用间距 */
.mt10 {
    margin-top: 15px !important;
}

/* 页面容器 */
.app-html {
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-body {
    width: 100%;
    max-width: 600px;
    padding: 30px 25px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* 标题区域 */
.app-body .h1 {
    text-align: center;
    margin-bottom: 20px;
}

.app-body .h1 strong {
    font-size: 26px;
    color: #4a3a8c;
    display: block;
    font-weight: 700;
}

.app-body .h1 img {
    height: 90px;
    object-fit: contain;
}

/* 右侧标签 */
.i-right {
    text-align: right;
    margin-bottom: 10px;
}

.i-right span {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 4px 6px;
    color: #fff;
    font-size: 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.i-right span i {
    border-radius: 20px;
    color: #2d8cf0;
    height: 26px;
    line-height: 26px;
    font-size: 15px;
    padding: 0 12px;
    font-style: normal;
    background: #fff;
    font-weight: 600;
}

/* 按钮列表 */
.cc .a {
    display: block;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    line-height: 44px;
    margin-bottom: 10px;
    background: #f9fafb;
    transition: all 0.2s ease;
}

.cc .a:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cc .a a {
    color: #374151;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: block;
}

.cc .a-new {
    background: #fff7e6;
    border-color: #ffd591;
}

.cc .a-new a {
    color: #d46b08;
}

/* 居中提示文字 */
.c1 p {
    text-align: center;
    color: #b86c2c;
    margin: 10px 0;
    font-size: 15px;
}

/* 黄色提示框 */
.c2 {
    padding: 20px;
    background: #fffbeb;
    border-radius: 12px;
    text-align: center;
    color: #785100;
    margin: 15px 0;
    border: 1px solid #ffeeba;
}

.c2 p {
    margin: 4px 0;
}

.c2 strong {
    color: #d48806;
    font-size: 16px;
}

/* 底部说明文字 */
.c3 {
    color: #6b7280;
    margin-top: 20px;
}

.c3 .h3 {
    color: #111827;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.c3 p {
    padding: 4px 0;
    font-size: 14px;
    line-height: 1.6;
}