* {
    box-sizing: border-box;
}

.soso{
    margin: 6px;
    padding: 0 15px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

a, button, input, textarea, select {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media (max-width: 768px) {
    a, button, .layui-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

@media screen and (min-width: 1200px) {
    .layui-container {
        width: 1200px;
    }
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.header {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99999;
    width: 100%;
    top: 0;
    height: 70px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-link {
    display: flex;
    align-items: center;
}

.brand-logo {
    width: 140px;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-slogan {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    padding-left: 16px;
    border-left: 2px solid #e2e8f0;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 17px;
    font-weight: bold;
    color: #475569;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: Microsoft Yahei, 微软雅黑, 宋体;
}

.nav-link:hover {
    color: #00844C;
    background: #f0fdf4;
}

.nav-link i {
    font-size: 16px;
}

.navbar-user {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
}

.user-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
}

.user-badge i {
    font-size: 16px;
    color: #00844C;
}

.version-tag {
    padding: 2px 8px;
    font-size: 11px;
    border-radius: 10px;
    font-weight: normal;
}

.version-tag.personal {
    background: #e8f5e9;
    color: #2e7d32;
}

.version-tag.business {
    background: #fff3e0;
    color: #e65100;
}

.logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    color: #ef4444;
    background: #fef2f2;
    border-color: #fecaca;
}

.logout-btn i {
    font-size: 16px;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #00844C 0%, #00a65a 100%);
    color: #fff;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 132, 76, 0.25);
    margin-left: 8px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 132, 76, 0.35);
    color: #fff;
}

.login-btn i {
    font-size: 18px;
}

.index-nav {
    gap: 16px;
}

.index-nav .nav-link {
    color: #475569;
    background: transparent;
}

.index-nav .nav-link:hover {
    color: #00844C;
    background: #f0fdf4;
}

@media (max-width: 992px) {
    .navbar-menu {
        gap: 4px;
    }

    .nav-link {
        font-size: 15px;
        padding: 6px 12px;
    }

    .brand-slogan {
        font-size: 12px;
        padding-left: 12px;
    }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #475569;
    cursor: pointer;
    padding: 8px;
}

.menu-close-btn {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #475569;
    cursor: pointer;
    padding: 8px;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99997;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .header {
        height: 60px;
    }

    .navbar {
        height: 60px;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-close-btn {
        display: block;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 70px 20px 20px;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 99998;
        gap: 8px;
    }

    .navbar-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 14px 16px;
        border-radius: 10px;
        font-size: 16px;
    }

    .navbar-user {
        flex-direction: column;
        gap: 8px;
        margin: 0;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid #e2e8f0;
    }

    .user-badge, .logout-btn, .login-btn {
        width: 100%;
        justify-content: center;
        margin: 0;
        padding: 14px 16px;
        border-radius: 10px;
    }

    .brand-logo {
        width: 100px;
    }

    .brand-slogan {
        display: none;
    }
}

@media (max-width: 480px) {
    .header {
        height: 56px;
    }

    .navbar {
        height: 56px;
    }

    .brand-logo {
        width: 90px;
    }

    .navbar-menu {
        width: 45%;
        right: -100%;
    }

    .navbar-menu.active {
        right: 0;
    }
}

.wxzj i {
    margin-right: 6px;
}

.usingtutorials {
    padding: 24px;
    background: #fff;
}

.usingtutorials img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 16px 0;
}

table tr:nth-child(even) {
    background-color: #f8fafc;
}

#lgtext {
    text-align: center;
    padding: 10px 5px;
    background: #f1f1f1;
    border-radius: 100px;
    margin: 15px;
}

.wxlogin-bt {
    color: #fff;
    padding: 10px 20px;
    background: linear-gradient(135deg, #00844c 0%, #00a65a 100%);
    border-radius: 24px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 132, 76, 0.3);
}

.wxlogin-bt:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 132, 76, 0.4);
    color: #fff;
}

.nologin {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .nologin {
        padding: 60px 20px;
        border-radius: 12px;
        margin: 15px 0;
    }
}

@media (max-width: 480px) {
    .nologin {
        padding: 50px 15px;
        border-radius: 10px;
        margin: 10px 0;
    }
}

.nologin-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00844C 0%, #00a65a 100%);
    border-radius: 50%;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(0, 132, 76, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.nologin-icon-wrapper i {
    font-size: 50px;
    color: #fff;
}

@media (max-width: 768px) {
    .nologin-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .nologin-icon-wrapper i {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .nologin-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
    }

    .nologin-icon-wrapper i {
        font-size: 35px;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(0, 132, 76, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(0, 132, 76, 0.3);
    }
}

.nologin img {
    max-width: 200px;
    opacity: 0.8;
}

.nologin-h1 {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.nologin-desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
}

.nologin-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #00844C 0%, #00a65a 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 132, 76, 0.3);
}

@media (max-width: 768px) {
    .nologin-h1 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .nologin-desc {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .nologin-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .nologin-h1 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .nologin-desc {
        font-size: 12px;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .nologin-btn {
        padding: 10px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 250px;
    }
}

.nologin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 132, 76, 0.4);
    color: #fff;
}

.nologin-btn i {
    font-size: 20px;
}

.appid {
    background: #f8fafc;
    border-radius: 8px;
    text-align: center;
    color: #64748b;
    border: 1px solid #e2e8f0;
    padding: 8px;
    font-size: 12px;
    margin-top: 12px;
}

.appid a {
    color: #00844C;
    margin-left: 8px;
    font-weight: 500;
}

.fqrcode {
    text-align: center;
    padding-left: 83px;
    padding-bottom: 10px;
}

.head-h1 a {
    margin-left: 20px;
    font-size: 14px;
    font-weight: 500;
    /* color: #475569; */
    transition: color 0.3s ease;
}

.head-h1 a:hover {
    color: #00844C;
}

.layui-table {
    margin: 0px 0px 10px;
}

.pin10 {
    display: block;
    margin-top: 90px;
}

@media (max-width: 768px) {
    .pin10 {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .pin10 {
        margin-top: 70px;
    }
}

.wxzj .layui-btn{
    margin-left: unset!important;
}
.pin-l-10 a{
    margin: 0px 10px;
}

.mian-update-l {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    border: 2px dashed #00844C;
    border-radius: 16px;
    text-align: center;
    height: 220px;
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mian-update-l {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .mian-update-l {
        height: 160px;
        border-radius: 12px;
    }
}

.mian-update-l:hover {
    border-color: #00a65a;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%) !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 132, 76, 0.15);
}

.layui-tab-content {
    background: #fff;
    padding: 0;
    border-radius: 0 0 16px 16px;
}

.layui-tab-title .layui-this {
    color: #fff;
    background: linear-gradient(135deg, #00844C 0%, #00a65a 100%);
    border-radius: 8px 8px 0 0;
}

.layui-btn {
    background: linear-gradient(135deg, #00844C 0%, #00a65a 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.layui-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 132, 76, 0.3);
}

.layui-tab-title li {
    background: #f8fafc;
    border-radius: 8px 8px 0 0;
    margin-right: 4px;
    transition: all 0.3s ease;
}

.layui-tab-title li:hover {
    background: #e8f5e9;
}

.fileupload {
    padding-top: 40px;
}

.upload {
    height: 64px;
    padding-bottom: 12px;
    transition: transform 0.3s ease;
}

.mian-update-l:hover .upload {
    transform: scale(1.1);
}

.mian-update-r {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 20px;
    height: 220px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .mian-update-r {
        height: auto;
        min-height: 180px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .mian-update-r {
        min-height: 160px;
        padding: 12px;
        border-radius: 12px;
    }
}

.mian-update-r::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00844C, #00a65a, #24be58);
}

.mian-update-r p {
    padding: 8px 0;
}

.h10 {
    clear: both;
    height: 16px;
}

.wxzj {
    text-align: center;
    padding: 20px 0;
}

.wxzj .layui-btn {
    /* margin: 6px; */
    /* padding: 0px 15px; */
    height: 50px;
    line-height: 50px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .wxzj .layui-btn {
        padding: 0 30px;
        height: 45px;
        line-height: 45px;
        font-size: 13px;
        margin: 4px;
    }
}

@media (max-width: 480px) {
    .wxzj .layui-btn {
        padding: 0 20px;
        height: 40px;
        line-height: 40px;
        font-size: 12px;
        margin: 3px;
        width: 100%;
        display: block;
    }
}

.wxcol {
    background: linear-gradient(135deg, #00844C 0%, #00a65a 100%);
}

.listico {
    height: 32px;
    border-radius: 4px;
}

.footer {
    text-align: center;
    padding: 32px 20px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    /* margin-top: 40px; */
}

.copyright, .copyright a {
    color: #94a3b8;
    font-size: 13px;
}

.copyright a:hover {
    color: #fff;
}

.head-h1 i {
    font-size: 16px;
    padding-right: 4px;
}

.uploadstart-h1 {
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.uploadstart span {
    color: #64748b;
    font-size: 13px;
}

.index-h2 {
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

.index-h1 {
    font-size: 18px;
    font-weight: 600;
    color: #00844C;
    margin-bottom: 8px;
}

.fd {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    position: absolute;
    top: 12px;
    padding: 6px 14px;
    color: #fff;
    right: 12px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(254, 91, 78, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.wxqrcode-btn {
    margin-top: 16px;
}

.wxqrcode {
    text-align: center;
    padding: 24px;
}

.uploadstart {
    height: 220px;
}

.wxqrcode-img img, .wxqrcode-img canvas {
    width: 200px;
    /* border-radius: 12px; */
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); */
}

.uploadurl {
    width: 500px;
    padding: 10px;
}

@media (max-width: 768px) {
    .uploadurl {
        width: 90%;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .uploadurl {
        width: 95%;
        padding: 5px;
    }
}

.uploadurl-modal {
    padding: 32px 40px 40px;
    background: #fff;
}

@media (max-width: 768px) {
    .uploadurl-modal {
        padding: 24px 20px 30px;
    }
}

@media (max-width: 480px) {
    .uploadurl-modal {
        padding: 20px 15px 25px;
    }
}

.uploadurl-modal .modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.uploadurl-modal .modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00844C 0%, #00a65a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0, 132, 76, 0.25);
}

.uploadurl-modal .modal-icon i {
    font-size: 40px;
    color: #fff;
}

.uploadurl-modal .modal-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.uploadurl-modal .modal-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.uploadurl-modal .modal-form {
    margin-top: 24px;
}

.uploadurl-modal .form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    margin-bottom: 12px;
}

.uploadurl-modal .form-label i {
    font-size: 16px;
    color: #00844C;
}

.uploadurl-modal .link-input {
    height: 48px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 0 16px;
}

.uploadurl-modal .link-input:focus {
    border-color: #00844C;
    box-shadow: 0 0 0 3px rgba(0, 132, 76, 0.1);
}

.uploadurl-modal .input-tips {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 6px;
    font-size: 13px;
    color: #64748b;
}

.uploadurl-modal .input-tips i {
    font-size: 14px;
    color: #94a3b8;
}

.uploadurl-modal .modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    margin-bottom: 0;
}

.uploadurl-modal .reset-btn, .uploadurl-modal .submit-btn {
    flex: 1;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.uploadurl-modal .reset-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
}

.uploadurl-modal .reset-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #475569;
}

.uploadurl-modal .submit-btn {
    background: linear-gradient(135deg, #00844C 0%, #00a65a 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 132, 76, 0.3);
}

.uploadurl-modal .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 132, 76, 0.4);
}

.uploadurl-modal .submit-btn i, .uploadurl-modal .reset-btn i {
    font-size: 16px;
}

.login {
    padding: 10px;
}

.wxlogin {
    padding: 32px 0;
}

.wxlogin-img img {
    width: 200px;
    height: 200px;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); */
}

.wxlogin-btn {
}

.btm_tips {
}

.wxlogin-t a {
    color: #00844C;
    transition: color 0.3s ease;
}

.wxlogin-t a:hover {
    color: #00a65a;
}

.wxlogin-t {
    text-align: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #64748b;
}

.layui-layer {
    border-radius: 16px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.page {
    text-align: center;
    padding: 20px 0;
}

.layui-table {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
}

.layui-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #334155;
}

.layui-table td, .layui-table th {
    padding: 12px 8px;
}

@media (max-width: 768px) {
    .layui-table {
        font-size: 14px;
    }

    .layui-table td, .layui-table th {
        padding: 10px 6px;
    }

    .layui-table-view {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .layui-table {
        font-size: 12px;
    }

    .layui-table td, .layui-table th {
        padding: 8px 4px;
        white-space: nowrap;
    }
}

.layui-tab {
    margin-top: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.layui-tab-title {
    border: none;
    background: #fff;
    padding: 8px 8px 0;
}

.layui-form-item {
    margin-bottom: 16px;
}

.layui-input {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.layui-input:focus {
    border-color: #00844C;
    box-shadow: 0 0 0 3px rgba(0, 132, 76, 0.1);
}

.pagination li {
    display: inline-block;
    margin-right: 6px;
    background: #fff;
    min-width: 36px;
    text-align: center;
    height: 36px;
    line-height: 36px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pagination li:hover {
    background: #e8f5e9;
    transform: translateY(-2px);
}

.pagination li.active {
    background: linear-gradient(135deg, #00844C 0%, #00a65a 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 132, 76, 0.3);
}

.pagination li a {
    display: block;
    text-align: center;
    color: #475569;
}

.pagination li a:hover {
    color: #00844C;
}

@media (max-width: 768px) {
    .pagination li {
        min-width: 32px;
        height: 32px;
        line-height: 32px;
        margin-right: 4px;
        font-size: 14px;
    }

    .page {
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .pagination li {
        min-width: 28px;
        height: 28px;
        line-height: 28px;
        margin-right: 3px;
        font-size: 12px;
    }

    .page {
        padding: 10px 0;
    }
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-wrapper .checkbox-label {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-wrapper .checkbox-label:hover {
    border-color: #00844C;
    transform: scale(1.1);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-label {
    background: linear-gradient(135deg, #00844C 0%, #00a65a 100%);
    border-color: #00844C;
    box-shadow: 0 2px 8px rgba(0, 132, 76, 0.3);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-label:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.switch-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.switch-checkbox {
    display: none;
}

.switch-label {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    background-color: #cbd5e0;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.switch-label:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.switch-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.switch-switch {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.switch-checkbox:checked + .switch-label {
    background: linear-gradient(135deg, #00844C 0%, #00a65a 100%);
}

.switch-checkbox:checked + .switch-label .switch-switch {
    transform: translateX(20px);
    box-shadow: 0 2px 6px rgba(0, 132, 76, 0.4);
}

.switch-checkbox:checked + .switch-label .switch-inner::before {
    content: '开';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #fff;
    font-weight: bold;
}

.switch-checkbox:not(:checked) + .switch-label .switch-inner::after {
    content: '关';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #64748b;
    font-weight: bold;
}

.delete-confirm-box {
    padding: 40px 30px 30px;
    background: #fff;
}

.delete-icon-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.delete-icon-wrapper i {
    font-size: 64px;
    color: #ef4444;
    animation: deleteIconBounce 0.6s ease;
}

@keyframes deleteIconBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.delete-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 20px 0;
}

.delete-tips {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.tip-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    line-height: 1.6;
}

.tip-item i {
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}

.tip-item span {
    color: #475569;
    font-size: 14px;
}

.tip-item.tip-info i {
    color: #00844C;
}

.tip-item.tip-warning i {
    color: #ef4444;
}

.tip-item.tip-warning span {
    color: #ef4444;
    font-weight: 600;
}

.tip-item.tip-notice i {
    color: #f59e0b;
}

.delete-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.delete-btn-cancel, .delete-btn-confirm {
    flex: 1;
    max-width: 180px;
    height: 44px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.delete-btn-cancel {
    background: #fff;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.delete-btn-cancel:hover {
    background: #f8fafc;
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.delete-btn-confirm {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
}

.delete-btn-confirm:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
}

.delete-btn-confirm i, .delete-btn-cancel i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .delete-confirm-box {
        padding: 30px 20px 20px;
    }

    .delete-icon-wrapper i {
        font-size: 52px;
    }

    .delete-title {
        font-size: 18px;
    }

    .delete-tips {
        padding: 15px;
    }

    .tip-item {
        padding: 10px 0;
        font-size: 13px;
    }

    .delete-btn-cancel, .delete-btn-confirm {
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .delete-confirm-box {
        padding: 25px 15px 15px;
    }

    .delete-icon-wrapper {
        margin-bottom: 15px;
    }

    .delete-icon-wrapper i {
        font-size: 48px;
    }

    .delete-title {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .delete-tips {
        padding: 12px;
        margin-bottom: 20px;
    }

    .tip-item {
        padding: 8px 0;
        font-size: 12px;
    }

    .tip-item i {
        font-size: 16px;
        margin-right: 10px;
    }

    .delete-actions {
        flex-direction: column;
        gap: 10px;
    }

    .delete-btn-cancel, .delete-btn-confirm {
        max-width: 100%;
        width: 100%;
        height: 40px;
        font-size: 14px;
    }
}

/* 文章资讯 */
.article-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-top: 51px;
}

.article-header h1 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
    padding-top: 25px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    color: #999;
    font-size: 14px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-meta i {
    font-size: 16px;
}

.article-content {
    line-height: 1.9;
    color: #333;
    font-size: 16px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.article-content p {
    margin-bottom: 16px;
}

.article-content h2, .article-content h3 {
    margin: 25px 0 15px;
    font-weight: 600;
}

.article-content h2 {
    font-size: 22px;
}

.article-content h3 {
    font-size: 18px;
}

.article-content blockquote {
    border-left: 4px solid #00844C;
    padding: 15px 20px;
    background: #f8f9fa;
    margin: 20px 0;
    color: #666;
}

.article-content pre {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
}

.article-content code {
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
}

.article-content a {
    color: #00844C;
    text-decoration: none;
}

.article-content a:hover {
    text-decoration: underline;
}

.article-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #00844C;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 20px;
    border: 1px solid #00844C;
    border-radius: 6px;
    transition: all 0.3s;
}

.back-btn:hover {
    background: #00844C;
    color: #fff;
}

.empty-tip {
    text-align: center;
    padding: 100px 20px;
    color: #999;
}

.empty-tip i {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
    display: block;
}

.empty-tip p {
    font-size: 18px;
    margin-bottom: 20px;
}

.article-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00844C;
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-item {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.article-cover {
    width: 280px;
    height: 180px;
    flex-shrink: 0;
    overflow: hidden;
}

.article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-item:hover .article-cover img {
    transform: scale(1.05);
}

.article-info {
    flex: 1;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-info h3 a {
    color: #333;
    text-decoration: none;
}

.article-info h3 a:hover {
    color: #00844C;
}

.article-summary {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #999;
    font-size: 13px;
    margin-top: 15px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-meta i {
    font-size: 14px;
}

.empty-tip {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.empty-tip i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
    display: block;
}

@media (max-width: 768px) {
    .empty-tip {
        padding: 60px 20px;
    }

    .empty-tip i {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .article-item {
        flex-direction: column;
    }

    .article-cover {
        width: 100%;
        height: 200px;
    }

    .article-header h1 {
        font-size: 24px;
    }

    .article-meta {
        gap: 15px;
        font-size: 13px;
        flex-wrap: wrap;
    }

    .article-content {
        font-size: 15px;
    }

    .article-content h2 {
        font-size: 20px;
    }

    .article-content h3 {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 20px;
    }

    .article-meta {
        gap: 10px;
        font-size: 12px;
    }

    .article-content {
        font-size: 14px;
        line-height: 1.8;
    }

    .article-content h2 {
        font-size: 18px;
        margin: 20px 0 12px;
    }

    .article-content h3 {
        font-size: 16px;
        margin: 18px 0 10px;
    }

    .article-content p {
        margin-bottom: 14px;
    }

    .article-content blockquote {
        padding: 12px 15px;
        margin: 15px 0;
    }

    .article-content pre {
        padding: 12px;
        font-size: 12px;
    }

    .back-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* 首页 */
/* body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: #333; line-height: 1.6; } */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(135deg, #00844C 0%, #00a65a 100%);
    color: #fff;
    padding: 140px 0 100px;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero .btn-group a {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    margin-right: 15px;
    transition: transform 0.3s;
}

.hero .btn-group a:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: #fff;
    color: #00844C;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.section-title p {
    color: #666;
    font-size: 18px;
}

.section-gray {
    background: #f8f9fa;
}

.plugin-intro {
    display: flex;
    gap: 50px;
    align-items: center;
}

.plugin-images {
    flex: 1;
}

#plugin-carousel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

#plugin-carousel {
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.plugin-content {
    flex: 1;
}

.plugin-pain {
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #f5a623;
}

.plugin-pain p {
    margin: 0;
    color: #856404;
    font-size: 15px;
    line-height: 1.8;
}

.plugin-pain p:last-child {
    font-weight: 600;
    margin-top: 8px;
}

.plugin-solution h4 {
    font-size: 18px;
    color: #00844C;
    margin-bottom: 20px;
    font-weight: 600;
}

.plugin-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.plugin-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.plugin-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00844C;
    font-weight: bold;
}

.plugin-features li strong {
    color: #333;
}

.plugin-actions {
    display: flex;
    gap: 15px;
}

.plugin-actions .btn-primary {
    background: linear-gradient(135deg, #00844C, #00a65a);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.plugin-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,132,76,0.3);
}

.plugin-actions .btn-outline {
    border: 2px solid #00844C;
    color: #00844C;
    padding: 10px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.plugin-actions .btn-outline:hover {
    background: #00844C;
    color: #fff;
}

@media (max-width: 768px) {
    .plugin-intro {
        flex-direction: column;
        gap: 30px;
    }
    #plugin-carousel {
        height: 250px !important;
    }
    .plugin-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #plugin-carousel {
        height: 200px !important;
    }
    .plugin-pain {
        padding: 15px;
    }
    .plugin-pain p {
        font-size: 14px;
    }
    .plugin-solution h4 {
        font-size: 16px;
    }
    .plugin-features li {
        font-size: 14px;
    }
    .plugin-actions {
        flex-direction: column;
        align-items: center;
    }
    .plugin-actions .btn-primary,
    .plugin-actions .btn-outline {
        width: 100%;
        text-align: center;
    }
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00844C, #00a65a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-item .icon i {
    font-size: 32px;
    color: #fff;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    margin-top: 10px;
}

.feature-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00844C, #ddd);
}

.step-num {
    width: 80px;
    height: 80px;
    background: #00844C;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-item p {
    color: #666;
}

.scenes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.scene-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #eee;
    transition: all 0.3s;
}

.scene-item:hover {
    border-color: #00844C;
    box-shadow: 0 5px 20px rgba(0,132,76,0.15);
}

.scene-item .icon {
    font-size: 40px;
    color: #00844C;
    margin-bottom: 15px;
}

.scene-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.scene-item p {
    font-size: 13px;
    color: #999;
}

.advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.adv-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.adv-item .check {
    width: 50px;
    height: 50px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.adv-item .check i {
    font-size: 24px;
    color: #00844C;
}

.adv-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.adv-item p {
    color: #666;
    font-size: 14px;
}

.formats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.format-item {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.format-item img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.format-item span {
    font-size: 16px;
    font-weight: 500;
}

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h4 {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

.faq-item h4:hover {
    background: #f8f9fa;
}

.faq-item p {
    padding: 0 25px 20px;
    color: #666;
    display: none;
}

.faq-item.active p {
    display: block;
}

.faq-item.active h4 i {
    transform: rotate(180deg);
}

.version-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.version-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    border: 2px solid #eee;
}

.version-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.version-card.featured {
    border-color: #f5a623;
    box-shadow: 0 8px 30px rgba(245,166,35,0.2);
}

.version-recommend-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #f5a623, #f7b733);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.version-badge {
    font-size: 14px;
    margin-bottom: 10px;
}

.version-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.version-price {
    font-size: 32px;
    font-weight: 700;
    color: #00844C;
    margin-bottom: 20px;
}

.version-target, .version-core {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.version-target strong, .version-core strong {
    color: #333;
}

.version-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 25px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.version-features li {
    font-size: 14px;
    color: #555;
    padding: 8px 0;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.version-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00844C;
    font-weight: bold;
}

.version-btn {
    display: block;
    text-align: center;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    background: linear-gradient(135deg, #00844C, #00a65a);
    color: #fff;
}

.version-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 20px rgba(0,132,76,0.3);
    color: #fff;
}

.version-independent .version-btn {
    background: linear-gradient(135deg, #f5a623, #f7b733);
}

.version-independent .version-btn:hover {
    box-shadow: 0 5px 20px rgba(245,166,35,0.4);
}

@media (max-width: 992px) {
    .version-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .version-card.featured {
        order: -1;
    }
}

@media (max-width: 480px) {
    .version-card {
        padding: 25px 20px;
    }
    .version-card h3 {
        font-size: 18px;
    }
    .version-price {
        font-size: 26px;
    }
    .version-features li {
        font-size: 13px;
    }
}

.cta {
    background: linear-gradient(135deg, #00844C 0%, #00a65a 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta a {
    display: inline-block;
    background: #fff;
    color: #00844C;
    padding: 15px 50px;
    border-radius: 30px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s;
}

.cta a:hover {
    transform: scale(1.05);
}

.deploy-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-top: 2px solid #e8f5e9;
    padding: 50px 0;
}

.deploy-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #fff;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,132,76,0.1);
    border: 1px solid #e8f5e9;
}

.deploy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00844C, #00a65a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,132,76,0.3);
}

.deploy-icon i {
    font-size: 40px;
    color: #fff;
}

.deploy-text {
    flex: 1;
}

.deploy-text h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.deploy-text p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.deploy-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.deploy-features span {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

.deploy-features span i {
    color: #00844C;
    font-size: 16px;
}

.deploy-action {
    flex-shrink: 0;
}

.deploy-action .btn-consult {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00844C, #00a65a);
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,132,76,0.25);
}

.deploy-action .btn-consult:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,132,76,0.4);
}

.deploy-action .btn-consult i {
    font-size: 18px;
}

.footer {
    background: #2c3e50;
    color: #fff;
    padding: 40px 0 20px;
    text-align: center;
}

.footer p {
    opacity: 0.7;
    margin-bottom: 10px;
}

.footer a {
    color: #fff;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column-reverse;
        gap: 30px;
        padding: 0 20px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 32px;
        text-align: center;
    }

    .hero-content p {
        font-size: 16px;
        text-align: center;
        margin-bottom: 30px;
    }

    .hero-content .btn-group {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero .btn-group a {
        padding: 12px 30px;
        font-size: 16px;
        margin-right: 0;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .hero-image {
        width: 100%;
    }

    .features, .scenes, .advantages {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps {
        flex-direction: column;
        gap: 40px;
    }

    .step-item:not(:last-child)::after {
        display: none;
    }

    .nav {
        display: none;
    }

    .deploy-content {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .deploy-text h3 {
        font-size: 20px;
    }

    .deploy-text p {
        font-size: 14px;
    }

    .deploy-features {
        justify-content: center;
        gap: 15px;
    }

    .deploy-features span {
        font-size: 13px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 16px;
    }

    .feature-item {
        padding: 30px 20px;
    }

    .scene-item {
        padding: 25px 15px;
    }

    .adv-item {
        padding: 20px;
    }

    .cta {
        padding: 60px 20px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .cta p {
        font-size: 16px;
    }

    .cta a {
        padding: 12px 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 50px;
    }

    .hero-content h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .hero .btn-group a {
        padding: 10px 25px;
        font-size: 14px;
        border-radius: 20px;
    }

    .container {
        padding: 0 15px;
    }

    .section {
        padding: 30px 0;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .section-title p {
        font-size: 14px;
    }

    .feature-item {
        padding: 25px 15px;
    }

    .feature-item .icon {
        width: 60px;
        height: 60px;
    }

    .feature-item .icon i {
        font-size: 28px;
    }

    .feature-item h3 {
        font-size: 18px;
    }

    .feature-item p {
        font-size: 13px;
    }

    .step-num {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step-item h3 {
        font-size: 18px;
    }

    .step-item p {
        font-size: 14px;
    }

    .scene-item .icon {
        font-size: 32px;
    }

    .scene-item h4 {
        font-size: 15px;
    }

    .adv-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .adv-item .check {
        margin: 0 auto 15px;
    }

    .adv-item h4 {
        font-size: 16px;
    }

    .adv-item p {
        font-size: 13px;
    }

    .formats {
        gap: 15px;
    }

    .format-item {
        padding: 15px 20px;
    }

    .format-item img {
        width: 35px;
        height: 35px;
    }

    .format-item span {
        font-size: 14px;
    }

    .faq-item h4 {
        padding: 15px 20px;
        font-size: 15px;
    }

    .faq-item p {
        padding: 0 20px 15px;
        font-size: 14px;
    }

    .cta {
        padding: 50px 15px;
    }

    .cta h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .cta p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .cta a {
        padding: 12px 30px;
        font-size: 14px;
        border-radius: 20px;
    }

    .deploy-section {
        padding: 30px 0;
    }

    .deploy-content {
        padding: 25px 15px;
        gap: 20px;
    }

    .deploy-icon {
        width: 60px;
        height: 60px;
    }

    .deploy-icon i {
        font-size: 32px;
    }

    .deploy-text h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .deploy-text p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .deploy-features {
        gap: 10px;
    }

    .deploy-features span {
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }

    .deploy-action .btn-consult {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
    }

    .footer {
        padding: 30px 15px 15px;
    }

    .copyright, .copyright a {
        font-size: 12px;
    }
}

.articles-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.articles-grid {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.version-apply-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.version-apply-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
.version-apply-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    width: 555px;
    max-width: 90%;
    max-height: 99vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.version-apply-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}
.version-apply-close:hover {
    color: #333;
}
.version-apply-header h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #333;
}
.version-apply-guide {
    background: #fff3cd;
    padding: 10px;
    border-radius: 6px;
    font-size: 12px;
    color: #856404;
    margin-top: 15px;
    margin-bottom: 20px;
}
.version-apply-form .form-item {
    margin-bottom: 16px;
}
.version-apply-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 16px;
}
.version-apply-form .form-row .form-item {
    margin-bottom: 0;
}
.version-apply-form .form-item label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
}
.version-apply-form .form-item input,
.version-apply-form .form-item select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}
.version-apply-form .checkbox-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}
.version-apply-form .checkbox-group label {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}
.version-apply-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #00844C 0%, #00a65a 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}
.version-apply-btn:hover {
    opacity: 0.9;
}
.version-apply-policy {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 12px;
}
.version-apply-policy a {
    color: #00844C;
}

.article-item {
    background: #fff;
    padding: 24px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.article-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0,132,76,0.15);
    border-left-color: #00844C;
}

.articles-grid .article-item:hover {
    transform: translateY(-5px);
}

.article-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.article-icon i {
    font-size: 26px;
    color: #00844C;
}

.article-content {
    flex: 1;
}

.article-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.article-content h3 a {
    color: #333;
    transition: color 0.3s ease;
}

.article-content h3 a:hover {
    color: #00844C;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #999;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-meta i {
    font-size: 14px;
}

.article-arrow {
    width: 30px;
    height: 30px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.article-item:hover .article-arrow {
    background: #00844C;
    transform: translateX(4px);
}

.article-item:hover .article-arrow i {
    color: #fff;
}

.article-arrow i {
    font-size: 16px;
    color: #999;
    transition: color 0.3s ease;
}

.article-more {
    text-align: center;
    margin-top: 30px;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: linear-gradient(135deg, #00844C 0%, #00a65a 100%);
    color: #fff;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,132,76,0.25);
}

.btn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,132,76,0.35);
    color: #fff;
}

.btn-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-more:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .articles-list {
        padding: 0 15px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .article-item {
        padding: 18px 20px;
        gap: 15px;
    }

    .article-icon {
        width: 40px;
        height: 40px;
    }

    .article-icon i {
        font-size: 22px;
    }

    .article-content h3 {
        font-size: 16px;
    }

    .article-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .article-arrow {
        display: none;
    }

    .article-item:hover {
        transform: translateY(-3px);
    }

    .article-more {
        margin-top: 20px;
    }

    .btn-more {
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .articles-list {
        padding: 0 10px;
    }

    .articles-grid {
        gap: 12px;
    }

    .article-item {
        padding: 15px;
        gap: 12px;
    }

    .article-icon {
        width: 36px;
        height: 36px;
    }

    .article-icon i {
        font-size: 20px;
    }

    .article-content h3 {
        font-size: 15px;
    }

    .article-meta {
        font-size: 12px;
        gap: 6px;
    }

    .btn-more {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* 通用移动端优化 */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .layui-form-item {
        margin-bottom: 12px;
    }

    .layui-input, .layui-textarea, .layui-select {
        font-size: 16px;
    }

    .layui-layer {
        max-width: 95% !important;
    }

    .layui-layer-title {
        font-size: 16px;
        padding: 12px 15px;
    }

    .layui-layer-content {
        font-size: 14px;
    }

    .layui-tab-title li {
        padding: 0 12px;
        font-size: 14px;
    }

    .wxqrcode-img img, .wxqrcode-img canvas {
        width: 160px;
    }

    .wxlogin-img img {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    .container {
        padding: 0 10px;
    }

    .layui-form-item {
        margin-bottom: 10px;
    }

    .layui-input, .layui-textarea, .layui-select {
        font-size: 16px;
        padding: 8px 12px;
    }

    .layui-btn {
        height: 40px;
        line-height: 40px;
        padding: 0 18px;
        font-size: 13px;
    }

    .layui-layer {
        max-width: 98% !important;
        border-radius: 12px !important;
    }

    .layui-layer-title {
        font-size: 15px;
        padding: 10px 12px;
    }

    .layui-layer-content {
        font-size: 13px;
        padding: 15px;
    }

    .layui-tab-title {
        padding: 0;
    }

    .layui-tab-title li {
        padding: 0 10px;
        font-size: 13px;
        min-width: auto;
    }

    .layui-tab-content {
        padding: 15px;
    }

    .fileupload {
        padding-top: 30px;
    }

    .upload {
        height: 48px;
        padding-bottom: 10px;
    }

    .uploadstart-h1 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .uploadstart span {
        font-size: 12px;
    }

    .index-h1 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .index-h2 {
        font-size: 12px;
    }

    .wxqrcode {
        padding: 15px;
    }

    .wxqrcode-img img, .wxqrcode-img canvas {
        width: 140px;
    }

    .wxlogin {
        padding: 20px 0;
    }

    .wxlogin-img img {
        width: 140px;
        height: 140px;
    }

    .wxlogin-t {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .wxlogin-bt {
        padding: 8px 16px;
        font-size: 14px;
    }

    .appid {
        font-size: 11px;
        padding: 6px;
    }

    .uploadstart {
        height: auto;
        min-height: 160px;
    }

    .h10 {
        height: 12px;
    }

    .fd {
        top: 10px;
        right: 10px;
        padding: 4px 10px;
        font-size: 11px;
    }

    .fqrcode {
        padding-left: 0;
        padding-bottom: 8px;
    }

    .head-h1 {
        font-size: 16px;
    }

    .head-h1 a {
        margin-left: 10px;
        font-size: 13px;
    }

    .head-h1 i {
        font-size: 14px;
    }

    .usingtutorials {
        padding: 15px;
    }

    #lgtext {
        font-size: 14px;
        padding: 8px 5px;
        margin: 10px;
    }

    .article-title {
        font-size: 22px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
}

/* 横屏优化 */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 50px;
    }

    .section {
        padding: 30px 0;
    }

    .nologin {
        padding: 50px 20px;
    }
}

/* 超小屏幕优化 */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .feature-item .icon {
        width: 50px;
        height: 50px;
    }

    .feature-item .icon i {
        font-size: 24px;
    }

    .step-num {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .deploy-icon {
        width: 50px;
        height: 50px;
    }

    .deploy-icon i {
        font-size: 28px;
    }
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    a:hover, button:hover, .layui-btn:hover {
        opacity: 0.9;
    }

    .feature-item:hover, .scene-item:hover, .article-item:hover {
        transform: none;
    }

    .hero-image {
        animation: none;
    }
}

/* 打印样式 */
@media print {
    .header, .footer, .wxzj, .btn-group, .cta, .deploy-section {
        display: none !important;
    }

    body {
        background: white;
    }

    .article-content {
        font-size: 12pt;
        line-height: 1.8;
    }
}

/* center页面移动端优化 */
@media (max-width: 768px) {
    .wxzj {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .wxzj .layui-btn {
        margin: 0;
        font-size: 12px;
        padding: 0 10px;
        height: 36px;
        line-height: 36px;
    }

    .file-list-section {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .file-list-section table {
        min-width: 900px;
    }
}

@media (max-width: 480px) {
    .wxzj .layui-btn {
        font-size: 11px;
        padding: 0 8px;
        height: 32px;
        line-height: 32px;
    }

    .wxzj .layui-btn i {
        display: none;
    }
}
