/* 中文字体支持 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Microsoft YaHei", "微软雅黑", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* 调整中文字体大小和行高 */
p, a, span, li {
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* =================================
   全局渐变文字兼容性修复
   ================================= */

/* 修复所有使用渐变文字的元素 */
*[style*="background-clip: text"],
*[style*="-webkit-background-clip: text"],
.pbmit-heading-subheading h4,
.marketer,
span.marketer {
    /* 备用颜色 */
    color: #2CE97A !important;
    
    /* 尝试渐变效果（支持的浏览器） */
    background: linear-gradient(90deg, #2CE97A 0%, #D9D314 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 为不支持渐变文字的浏览器提供备用样式 */
@supports not (-webkit-background-clip: text) {
    *[style*="background-clip: text"],
    *[style*="-webkit-background-clip: text"],
    .pbmit-heading-subheading h4,
    .marketer,
    span.marketer {
        color: #2CE97A !important;
        background: none !important;
        -webkit-text-fill-color: #2CE97A !important;
    }
}

/* 特别针对Edge浏览器 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    *[style*="background-clip: text"],
    *[style*="-webkit-background-clip: text"],
    .pbmit-heading-subheading h4,
    .marketer,
    span.marketer,
    .designer {
        color: #2CE97A !important;
        background: none !important;
        -webkit-text-fill-color: initial !important;
    }
}

/* 文字Logo样式 - 兼容所有浏览器 */
.text-logo {
    color: #2CE97A !important;
    background: none !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
    font-weight: 700 !important;
    font-size: 32px !important;
    text-decoration: none !important;
    display: inline-block !important;
    /* 移除任何可能的渐变效果 */
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: #2CE97A !important;
    text-fill-color: #2CE97A !important;
}

.text-logo:hover {
    color: #69CA48 !important;
    -webkit-text-fill-color: #69CA48 !important;
    text-fill-color: #69CA48 !important;
}

/* 修复其他渐变文字元素的兼容性问题 */
.designer {
    /* 首先设置备用颜色 */
    color: #2CE97A !important;
    
    /* 然后尝试渐变效果 */
    background: linear-gradient(135deg, #2CE97A 0%, #69CA48 50%, #56CD55 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* 浏览器兼容性备用 */
    font-weight: 700 !important;
    display: inline-block !important;
}

/* 专门为不支持渐变文字的浏览器提供备用样式 */
@supports not (-webkit-background-clip: text) {
    .designer {
        color: #2CE97A !important;
        background: none !important;
        -webkit-text-fill-color: #2CE97A !important;
    }
}

/* Edge浏览器特殊处理 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .designer {
        color: #2CE97A !important;
        background: none !important;
    }
    .text-logo {
        color: #2CE97A !important;
        background: none !important;
    }
}

/* 导航菜单中文优化 */
.list-group-item {
    font-size: 16px;
    font-weight: 500;
}

/* 导航菜单项统一样式 */
.list-group .list-group-item-action {
    margin-bottom: 20px !important;
    padding: 15px 24px !important;
    border-radius: 4px !important;
    transition: all 0.4s ease !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
}

/* 确保所有导航菜单项都有相同的间距 */
.list-group .list-group-item-action:last-child {
    margin-bottom: 20px !important;
}

/* 导航菜单图标统一样式 */
.list-group .list-group-item-action img {
    margin-right: 12px !important;
    width: 20px !important;
    height: 20px !important;
}

/* 按钮中文文字调整 */
.download-btn {
    font-size: 16px;
    padding: 15px 35px;
}

/* 标题动画文字调整 */
.pbmit-heading-subheading h1,
.pbmit-heading-subheading h2 {
    line-height: 1.3;
}

/* 响应式中文字体大小调整 */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}

/* =================================
   蓝紫色渐变主题样式覆盖 - 已注释掉恢复原色调
   ================================= */

/* 覆盖CSS变量 - 蓝紫色渐变主题 
:root {
    主要渐变色 - 蓝紫色 
    --Button-Gradient: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%) !important;
    --ztc-bg-main-bg: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%) !important;
    --ztc-bg-main-bg2: linear-gradient(90deg, #8b5cf6 0%, #6366f1 90%) !important;
    
    蓝紫色系颜色覆盖 
    --ztc-text-text-2: #8b5cf6 !important;
    --ztc-text-text-7: #6366f1 !important;
    --ztc-bg-bg6: #6366f1 !important;
    --ztc-bg-bg11: #8b5cf6 !important;
    --ztc-bg-bg19: #7c3aed !important;
    
    边框颜色 
    --ztc-border-border-4: #8b5cf6 !important;
    --ztc-border-border-5: #6366f1 !important;
}

下载按钮蓝紫色渐变 
.btn-area .download-btn {
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%) !important;
}

.btn-area .download-btn::after {
    background: linear-gradient(90deg, #8b5cf6 0%, #6366f1 90%) !important;
}

播放按钮蓝紫色渐变 
.btn-area .play-btn {
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.btn-area .play-btn::before {
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%) !important;
}

.btn-area .play-btn span {
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%) !important;
}

服务图标悬停效果 
.service-author-box:hover .content .icons img {
    filter: hue-rotate(200deg) saturate(1.5) !important;
}

技能进度条蓝紫色渐变 
.skills-all-boxarea {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
}

关于我统计框蓝紫色渐变 
.about-boxarea {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
}

侧边栏活动状态蓝紫色 
.list-group-item-action.active::after {
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%) !important;
}

社交链接悬停效果 
.socila-links-area ul li a:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
}

.socila-links-area ul li a::after {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
}

作品集悬停效果 
.portfolio-author-box:hover {
    border-color: #8b5cf6 !important;
}

联系表单按钮 
.contact-from-area .btn-area button {
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%) !important;
}

进度条蓝紫色 
.progress-wrap::after {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
}

.progress-wrap svg.progress-circle path {
    stroke: #8b5cf6 !important;
}

手机菜单按钮 
.mobile-nav-icon {
    color: #8b5cf6 !important;
}

所有渐变背景元素统一蓝紫色渐变 
.gradient-bg, 
.service-author-box.box1,
.service-author-box.box2,
.service-author-box.box3,
.service-author-box.box4,
.service-author-box.box5,
.service-author-box.box6 {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
}

特殊元素蓝紫色效果 
.elements1, .elements2, .elements3, .elements4 {
    filter: hue-rotate(200deg) saturate(1.2) !important;
}

星星图标蓝紫色 
.star2 {
    filter: hue-rotate(200deg) saturate(1.5) !important;
}

多边形背景蓝紫色渐变 
.polygon2, .polygon4, .polygin {
    filter: hue-rotate(200deg) saturate(1.3) !important;
}

确保所有主要按钮都是蓝紫色渐变 
.download-btn1, .play-btn1, .play-btn2, .play-btn3 {
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%) !important;
}

标题高亮文字蓝紫色渐变 
.designer {
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

强制覆盖所有绿色元素为蓝紫色 
*[style*="green"], 
*[style*="#2CE97A"], 
*[style*="#D9D314"],
*[style*="#69CA48"],
*[style*="#56CD55"],
*[style*="#77E04E"] {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    color: inherit !important;
}
*/

/* =================================
   主图片显示优化 - 绿色几何图片完美适配
   ================================= */

/* 主要图片容器优化 */
.progress-one_leftbox {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
}

/* 绿色几何图片主图样式 - 圆形显示 */
.progress-one_leftbox .side-bg3 {
    position: absolute !important;
    top: 55% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 480px !important;
    height: 480px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 50% !important;
    z-index: 10 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    border: 3px solid rgba(255, 255, 255, 0.1) !important;
}

/* 背景装饰图片层级调整 */
.progress-one_leftbox .elements3 {
    position: absolute !important;
    top: -20px !important;
    right: -20px !important;
    width: 80px !important;
    height: 80px !important;
    z-index: 5 !important;
    opacity: 0.6 !important;
}

.progress-one_leftbox .side-bg1 {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 1 !important;
    opacity: 0.1 !important;
}

.progress-one_leftbox .side-bg2 {
    position: absolute !important;
    bottom: -10px !important;
    left: -10px !important;
    width: 120px !important;
    height: 120px !important;
    z-index: 5 !important;
    opacity: 0.3 !important;
}

/* 悬停效果 */
.progress-one_leftbox:hover .side-bg3 {
    transform: translate(-50%, -50%) scale(1.02) !important;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15) !important;
}

/* 响应式适配 - 保持圆形 */
@media (max-width: 768px) {
    .progress-one_leftbox {
        height: 400px;
    }
    
    .progress-one_leftbox .side-bg3 {
        width: 360px !important;
        height: 360px !important;
        border-radius: 50% !important;
    }
    
    .progress-one_leftbox .elements3 {
        width: 60px !important;
        height: 60px !important;
        top: -15px !important;
        right: -15px !important;
    }
    
    .progress-one_leftbox .side-bg2 {
        width: 80px !important;
        height: 80px !important;
        bottom: -5px !important;
        left: -5px !important;
    }
}

@media (max-width: 480px) {
    .progress-one_leftbox {
        height: 320px;
    }
    
    .progress-one_leftbox .side-bg3 {
        width: 280px !important;
        height: 280px !important;
        border-radius: 50% !important;
    }
}

/* =================================
   个人介绍标题位置调整
   ================================= */

/* 个人介绍标题向右移动 */
.header-textarea .pbmit-heading-subheading .marketer {
    margin-left: 160px !important;
    display: inline-block !important;
    text-align: left !important;
    width: auto !important;
    max-width: fit-content !important;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .header-textarea .pbmit-heading-subheading .marketer {
        margin-left: 80px !important;
    }
}

@media (max-width: 480px) {
    .header-textarea .pbmit-heading-subheading .marketer {
        margin-left: 40px !important;
    }
}

/* =================================
   订阅区域放大居中优化
   ================================= */

/* 订阅区域整体放大 */
.footer-section-area {
    padding: 80px 40px !important;
    margin: 40px auto !important;
    max-width: 1000px !important;
    border-radius: 20px !important;
    transform: scale(1.1) !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15) !important;
}

/* 订阅标题放大 */
.footer-form-area h2 {
    font-size: 3.5rem !important;
    margin-bottom: 40px !important;
    font-weight: 700 !important;
}

/* 订阅表单样式优化 - 全新UI设计 */
.footer-form-area form {
    max-width: 650px !important;
    margin: 0 auto 50px auto !important;
    position: relative !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 60px !important;
    padding: 8px !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.footer-form-area form input[type="email"] {
    width: 100% !important;
    padding: 20px 30px !important;
    font-size: 17px !important;
    border-radius: 50px !important;
    border: none !important;
    background: transparent !important;
    color: #fff !important;
    outline: none !important;
    font-weight: 400 !important;
    padding-right: 160px !important;
}

.footer-form-area form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 300 !important;
}

.footer-form-area form button {
    position: absolute !important;
    right: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    padding: 16px 32px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 45px !important;
    background: linear-gradient(135deg, #2CE97A 0%, #69CA48 100%) !important;
    color: #000 !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    white-space: nowrap !important;
    box-shadow: 0 8px 25px rgba(44, 233, 122, 0.3) !important;
    min-width: 120px !important;
}

.footer-form-area form button:hover {
    transform: translateY(-50%) scale(1.05) !important;
    box-shadow: 0 12px 35px rgba(44, 233, 122, 0.5) !important;
    background: linear-gradient(135deg, #69CA48 0%, #2CE97A 100%) !important;
}

/* 社交链接区域优化 */
.social-links-area ul {
    display: flex !important;
    justify-content: center !important;
    gap: 25px !important;
    margin-bottom: 40px !important;
}

.social-links-area ul li a {
    padding: 15px 25px !important;
    font-size: 16px !important;
    border-radius: 50px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
}

.social-links-area ul li a:hover {
    background: rgba(44, 233, 122, 0.2) !important;
    transform: translateY(-3px) !important;
}

/* 版权信息样式 */
.copyright-pera p {
    font-size: 16px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-align: center !important;
    margin: 0 !important;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .footer-section-area {
        transform: scale(1) !important;
        padding: 60px 20px !important;
        margin: 20px auto !important;
    }
    
    .footer-form-area h2 {
        font-size: 2.8rem !important;
        margin-bottom: 30px !important;
    }
    
    .footer-form-area form {
        max-width: 100% !important;
        margin: 0 auto 40px auto !important;
        padding: 6px !important;
    }
    
    .footer-form-area form input[type="email"] {
        padding: 18px 25px !important;
        padding-right: 140px !important;
        font-size: 16px !important;
    }
    
    .footer-form-area form button {
        padding: 14px 24px !important;
        font-size: 14px !important;
        min-width: 100px !important;
        right: 6px !important;
    }
    
    .social-links-area ul {
        flex-wrap: wrap !important;
        gap: 15px !important;
    }
    
    .social-links-area ul li a {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .footer-form-area h2 {
        font-size: 2.2rem !important;
    }
    
    .footer-form-area form {
        padding: 4px !important;
        border-radius: 50px !important;
    }
    
    .footer-form-area form input[type="email"] {
        padding: 16px 20px !important;
        padding-right: 120px !important;
        font-size: 14px !important;
    }
    
    .footer-form-area form button {
        padding: 12px 20px !important;
        font-size: 13px !important;
        min-width: 90px !important;
        right: 4px !important;
    }
}

/* =================================
   文字绿色渐变填充效果
   ================================= */

/* 为.designer类文字添加绿色渐变填充 */
.designer {
    background: linear-gradient(135deg, #2CE97A 0%, #69CA48 50%, #56CD55 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    text-stroke: 0 !important;
}

/* 确保渐变在不同浏览器中兼容 */
.designer {
    /* 回退颜色，如果渐变不支持 */
    color: #2CE97A;
    /* 标准渐变 */
    background: linear-gradient(135deg, #2CE97A 0%, #69CA48 50%, #56CD55 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Firefox 支持 */
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    /* 去除所有描边效果 */
    -webkit-text-stroke: 0;
    text-stroke: 0;
    text-shadow: none;
    outline: none;
    border: none;
}

/* 增强效果 - 不添加任何描边或阴影 */
.designer {
    filter: none !important;
    transition: all 0.3s ease !important;
}

/* 悬停效果 - 仅缩放，无描边 */
.designer:hover {
    filter: none !important;
    transform: scale(1.02) !important;
}

/* 特别针对标题中的.designer */
h1 .designer,
h2 .designer,
h3 .designer {
    display: inline-block !important;
}

/* 确保动画文字也有渐变效果 */
.text-anime-style-3 .designer {
    background: linear-gradient(135deg, #2CE97A 0%, #69CA48 50%, #56CD55 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* =================================
   动态背景粒子效果
   ================================= */

/* 动态背景容器 */
.dynamic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* 简化的粒子样式 - 通过JavaScript直接控制 */

/* 动态波浪效果 */
.wave-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(circle at 20% 80%, rgba(44, 233, 122, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(105, 202, 72, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(86, 205, 85, 0.1) 0%, transparent 50%);
    animation: waveMove 15s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes waveMove {
    0% {
        transform: scale(1) rotate(0deg);
        filter: hue-rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        filter: hue-rotate(90deg);
    }
    100% {
        transform: scale(1.05) rotate(-3deg);
        filter: hue-rotate(0deg);
    }
}

/* 确保主内容在动态背景之上 */
.main-wrapper {
    position: relative;
    z-index: 1;
    background: transparent;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .particle {
        animation-duration: 25s;
    }
    
    .particle.medium {
        width: 6px;
        height: 6px;
    }
    
    .particle.large {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .particle.large {
        display: none;
    }
    
    .wave-animation {
        animation-duration: 20s;
    }
}


