/* 全局样式 - 提升可读性与加载效率 */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', 'PingFang SC', sans-serif; /* 使用中文字体提升本地化体验 */
    background-color: #000000;
    color: #333;
    line-height: 1.6;
}

/* 页面容器 - 限制宽度提升可读性 */
#page {
    max-width: 1280px;
    margin: 0 auto;
    background-color: #ffffff;
    overflow: hidden; /* 防止内容溢出 */
}

/* 头部导航 - 美观且SEO友好 */
#header {

    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wf-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

#branding img {
    max-width: 164px;
    height: auto;
    transition: transform 0.3s ease; /* 鼠标悬停动画提升交互性 */
}

#branding img:hover {
    transform: scale(1.05);
}

#main-nav {
    list-style: none;
    margin: 0;
    padding: 0;

}

#main-nav li {
    margin-left: 30px;
}

#main-nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 5px;
    transition: all 0.3s ease;
    position: relative; /* 为下划线动画准备 */
}

#main-nav a:hover,
#main-nav .current-menu-item a {
    color: #2acc72; /* 品牌色突出关键词 */
}

#main-nav a:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #2acc72;
    bottom: 0;
    left: 0;
    animation: underline 0.3s ease forwards; /* 下划线动画 */
}

@keyframes underline {
    from { width: 0; }
    to { width: 100%; }
}

/* 主内容区 - 清晰分区提升SEO权重 */
/*.bit_main_content {
    padding: 20px 0;
}*/

.qfy-row.section {
    padding: 40px 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row.qfe_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.qfy-column {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.qfy-column.vc_span6 {
    flex: 0 0 48%; /* 双列布局 */
    max-width: 48%;
}

/* 标题样式 - 强化SEO层级 */
h1 {
    font-size: 36px;
    color: #000;
    margin: 0 0 20px;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 32px;
    color: #000;
    margin: 0 0 15px;
    font-weight: 600;
}

p {
    font-size: 16px;
    color: #666;
    margin: 0 0 20px;
}

/* 下载区 - 突出关键词与CTA */
#download {
    background-color: #000;
}

.qfe_images_lib img {
    max-width: 168px;
    height: auto;
    margin-right: 10px;
    transition: opacity 0.3s ease;
}

.qfe_images_lib img:hover {
    opacity: 0.9;
}

/* 客服区 - 简洁美观 */
#kefu img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 号召行动区 - 突出转化 */
#cta {
    background-color: #000;
    color: #fff;
    text-align: center;
}

#cta a {
    display: inline-block;
    padding: 15px 80px;
    background-color: #2acc72;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#cta a:hover {
    background-color: #27bb69;
}

/* 页脚 - 增强信任与品牌感 */
#footer {
    background-color: #000;
    color: #ededed;
    padding: 20px 0;
    font-size: 13px;
}

#footer p {
    margin: 5px 0;
    color: #ededed;
}

.gallery_icons_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery_icons_list li {
    display: inline-block;
    margin-left: 20px;
}

.qfy-icon {
    width: 24px;
    height: 24px;
    background-size: cover;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.qfy-icon:hover {
    opacity: 0.8;
}

/* 社交图标 - 示例（需替换为实际图片路径） */
.weixin-icon_24x24 { background: url('img/weixin.png') no-repeat center; }
.weibo-icon_24x24 { background: url('img/weibo.png') no-repeat center; }
.qq-icon_24x24 { background: url('img/qq.png') no-repeat center; }
.facebook-icon_24x24 { background: url('img/facebook.png') no-repeat center; }

/* 移动端适配 - 符合SEO移动优先 */
@media only screen and (max-width: 992px) {
    .wf-wrap {
        flex-direction: column;
        padding: 10px;
    }

    #main-nav {
        flex-direction: column;
        text-align: center;
        margin-top: 20px;
    }

    #main-nav li {
        margin: 10px 0;
    }

    .qfy-column.vc_span6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    #cta a { padding: 12px 40px; }
}

/* 图片懒加载 - 提升首屏加载速度 */
.preload-me {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.preload-me.loaded {
    opacity: 1;
}

.qfe_images_lib a {
    display: inline-block;      /* 使链接可以设置宽高 */
    padding: 10px 20px;         /* 内边距，调整按钮大小 */
    background-color: #0063ff;   /* 背景色为指定的黄色 */
    color: #FFF;                /* 文本颜色为黑色，与黄色对比鲜明 */
    text-decoration: none;      /* 去掉链接下划线 */
    border-radius: 5px;         /* 设置圆角 */
    font-weight: bold;          /* 字体加粗 */
    transition: background-color 0.3s ease; /* 平滑过渡效果 */
}

.qfe_images_lib a:hover {
    background-color: #0f55c4;  /* 鼠标悬停时背景色变深 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* 添加阴影效果 */
}
.qfy-column p{
   margin: 0 0 60px;
}
#main{
  background-color: #000;
}