@charset "utf-8";
/*引入字体文件*/
@font-face {
    font-family: "PingFang SC";
    src: url("../fonts/pingfangsc-regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "PingFang SC";
    src: url("../fonts/pingfangsc-semibold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../fonts/sf-pro-text_regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}
/* 通用的 CSS 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

a {
    text-decoration: none;
    color: inherit; /* 继承父元素颜色 */
}
body {
    font-family: "PingFang SC", "SF Pro Text", Arial, "Microsoft YaHei", sans-serif;
    background-color: #111111;
}

header {
    max-width: 1300px; /* 最大宽度 */
    display: flex;
    align-items: center;
    justify-content: space-between; /* 左中右排列 */
    margin: 0 auto; /* 水平居中 */
    padding: 20px 15px; /* 内边距 */
}

/* logo 样式 */
header h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #f0d700;
}

/* 导航汉堡菜单 */
header svg{
    display: none;
}
/* 关闭按钮 */
header nav svg{
    display: none;
}

/* 导航栏样式 */
header nav ul {
    display: flex;
    list-style: none;
    gap: 20px; /* 间距 */
}

header nav ul li a {
    text-decoration: none;
    color: #ffffff;
    /*font-size: 20px;*/
    padding: 5px 10px;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #f0d700;
}

/* 下载按钮样式 */
header button {
    background-color: #f0d700;
    color: #111111;
    font-family: "PingFang SC";
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

header button:hover {
    background-color: #d2ff00;
}

/* HERO 区域 */
.hero {
    display: flex;              /* 使用 flexbox 进行布局 */
    justify-content: space-between; /* 左右区域之间有间隔 */
    align-items: center;        /* 垂直居中对齐 */
    max-width: 1300px;          /* 设置最大宽度 */
    margin: 0 auto;             /* 居中 hero 区域 */
    padding: 40px 20px;         /* 内边距，确保内容不会紧贴边缘 */
    margin-top: 3rem;
}

/* 左侧区域 */
.hero .content {
    flex: 1;                    /* 左侧区域占据剩余空间 */
    max-width: 50%;             /* 最多占据 50% 宽度 */
}

.hero .content h1 {
    font-size: 88px;            /* 标题字体大小 */
    font-weight: 600;
    line-height: 6rem;
    margin-bottom: 20px;        /* 标题和按钮之间的间距 */
    color: #ffffff;                /* 字体颜色 */
}

.hero .content button {
    font-family: "PingFang SC";
    font-size: 18px;            /* 按钮字体大小 */
    padding: 10px 30px;         /* 按钮内边距 */
    margin-right: 10px;         /* 按钮之间的间距 */
    cursor: pointer;            /* 鼠标悬停时显示手指图标 */
    border: none;
    border-radius: 28px;         /* 按钮圆角 */
    transition: background-color 0.3s ease; /* 鼠标悬停动画效果 */
}

.hero .content button:hover {
    background-color: #d2ff00;
}

.hero .content .download{
    background-color: #f0d700;
    color: #111111;
}

.hero .content .buy{
    background-color:#111111;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.hero .content .buy:hover{
    color: #111111;
    border: 1px solid #d2ff00;
}

.hero .media {
    flex: 1;                    /* 右侧区域占据剩余空间 */
    max-width: 50%;             /* 最多占据 50% 宽度 */
    display: flex;
    justify-content: center;    /* 视频居中 */
    align-items: center;        /* 视频垂直居中 */
}

.hero .media video {
    width: 100%;            /* 视频宽度最多为容器宽度 */
    height: auto;               /* 保持视频比例 */
}


/* 功能展示区域 */
.benefits {
    max-width: 1300px;
    margin: 0 auto; /* 居中显示 */
    padding: 40px 20px;
    margin-top: 3rem;
}

/* h1 样式 */
.benefits h2 {
    text-align: left;
    font-size: 36px;
    margin-bottom: 30px;
    color: #ffffff;
}

/* 功能区块容器，设置为两行三列 */
.benefits-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 三列布局 */
    grid-gap: 20px; /* 每个区块之间的间距 */
}

/* 每个功能区块 */
.benefit-item {
    padding: 20px;
    text-align: left;
    border: 1px solid #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px); /* 鼠标悬停时轻微上浮 */
}

/* SVG 图标 */
.benefit-item svg {
    width: 42px;
    height: 42px;
    color: #ffffff;
    margin-bottom: 10px;
}

/* 标题 h2 */
.benefit-item h2 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 2px;
}

/* 描述 p */
.benefit-item p {
    font-size: 16px;
    color: #ffffff;
}

/*特性指标区域*/
.metrics {
    max-width: 1000px;
    margin: 0 auto; /* 居中显示 */
    padding: 40px 20px;
    display: flex;
    justify-content: space-between; /* 分布在一行 */
}

/* 每个指标项 */
.metric-item {
    padding: 20px;
    text-align: center;
    flex: 1; /* 每个 div 占同等宽度 */
    margin: 0 10px; /* 每个 div 之间的间距 */
}

/* 数值内容 */
.metric-value {
    font-size: 46px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

/* 描述内容 */
.metric-description {
    font-size: 20px;
    color: #ffffff;
}

/* 定价区域 */
.pricing {
    max-width: 1300px;
    margin: 0 auto; /* 居中显示 */
    padding: 40px 20px;
    text-align: center;
    color: #ffffff;
}

/* section 标题样式 */
.pricing h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}

/* 定义三个卡片容器 */
.pricing-grid {
    display: flex;
    justify-content: space-between; /* 横向均匀分布 */
    gap: 50px; /* 卡片间距 */
}

/* 每个卡片的样式 */
.pricing-card {
    padding: 20px;
    border: 1px solid #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 1; /* 保证每个卡片宽度一致 */
    text-align: center;
}

/* 卡片内标题样式 */
.pricing-card h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

/*.pricing-card h3 {*/
/*    font-size: 24px;*/
/*    color: #f0d700;*/
/*    margin-bottom: 15px;*/
/*}*/

/* 描述内容样式 */
.pricing-card p {
    font-size: 18px;
    margin: 5px 0;

}
/* 按钮样式 */
.pricing-card button {
    background-color: #111111;
    margin-top: 15px;
    padding: 10px 30px;
    font-size: 16px;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pricing-card button:hover {
    background-color: #d2ff00;
}

footer{
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    border-top: 1px solid #ffffff;
}

footer p{
    margin-top: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    nav {
        display: none; /* 默认隐藏导航 */
    }

    header svg {
        display: block; /* 显示汉堡图标 */
        color: #ffffff;
        width: 26px;
        height: 26px;
        cursor: pointer;
        
    }
    header nav svg {
        display: block; /* 显示关闭图标 */
        position: absolute;
        top: 20px;
        right: 20px;
        width: 26px;
        height: 26px;
        cursor: pointer;
    }
    nav.open {
        display: block; /* 显示全屏菜单 */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        color: white;
        z-index: 1000;
        text-align: center;
        padding-top: 20px;
    }

    nav.open ul {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }

    nav.open ul li {
        padding: 4px;
    }

    nav.open ul li a {
        font-size: 24px;
        color: white;
    }
    .hero {
        flex-direction: column; /* 切换为垂直布局 */
        align-items: center;    /* 居中对齐 */
        text-align: center;     /* 文本居中 */
        margin-top: 0;
    }

    .hero .content, .hero .media {
        max-width: 100%;        /* 内容宽度占满 100% */
        margin-bottom: 20px;    /* 内容之间的间距 */
    }
    .hero .media{
        border: 2px solid #ffffff;
    }
    .hero .content h1 {
        font-size: 30px;         /* 标题字体大小缩小 */
        line-height: 3rem;
    }
    .benefits {
        margin-top: 0;
        padding: 20px 20px;
    }
    .benefits-content {
        grid-template-columns: 1fr; /* 单列布局 */
    }
    
    .metrics {
        display: none;
    }
    .pricing-grid {
        flex-direction: column; /* 改为纵向排列 */
        gap: 20px; /* 间距加大 */
    }
}
/* 文章内容页面样式 */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #ffffff;
}

.article-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.article-content .meta {
    font-size: 14px;
    color: #f0d700;
    margin-bottom: 20px;
}

.article-content .content {
    font-size: 16px;
    line-height: 1.6;
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

/* 栏目页面样式 */
.category-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #ffffff;
}

.category-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-item {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 20px;
}

.article-item h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.article-item h2 a {
    color: #f0d700;
    text-decoration: none;
}

.article-item h2 a:hover {
    color: #d2ff00;
}

.article-item .meta {
    font-size: 14px;
    color: #f0d700;
    margin-bottom: 10px;
}

.article-item p {
    font-size: 16px;
    line-height: 1.6;
}
/* 分栏布局核心样式 */
.main-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 30px; /* 两栏间距 */
}

.main-content {
    flex: 3; /* 主内容占比3份 */
    min-width: 0; /* 防止内容溢出 */
}

.sidebar {
    flex: 1; /* 侧边栏占比1份 */
    min-width: 280px; /* 最小宽度 */
}

/* 侧边栏组件样式 */
.sidebar-widget {
    color: #fff;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #f0d700;
}

.sidebar-widget h3 {
    color: #f0d700;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.sidebar-widget ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-widget li {
    margin-bottom: 8px;
}

.sidebar-widget a {
    color: #fff;
    transition: color 0.3s;
}

.sidebar-widget a:hover {
    color: #d2ff00;
}

/* 响应式布局 */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column; /* 移动端堆叠显示 */
    }
    
    .sidebar {
        min-width: auto; /* 取消最小宽度限制 */
    }
}
/* 文章页标签样式 */
.article-tags {
    margin-top: 30px;
    padding: 15px 0;
    border-top: 1px solid #333;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
     border-left-width: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.article-tags span {
    color: #f0d700;
    font-weight: bold;
}

/* 通用标签样式 */
.tag {
    display: inline-block;
    padding: 6px 12px;
    background: #2a2a2a;
    color: #fff;
    border-radius: 16px;
    font-size: 14px;
    transition: all 0.3s;
    border: 1px solid #f0d700;
}

.tag:hover {
    background: #f0d700;
    color: #111;
    transform: translateY(-2px);
}

/* 栏目页标签云样式 */
.tag-cloud {
    margin-top: 40px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 8px;
}

.tag-cloud h3 {
    color: #f0d700;
    margin-bottom: 15px;
    font-size: 18px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .article-tags {
        flex-wrap: wrap;
    }
    
    .tag-cloud .tags {
        justify-content: center;
    }
}
/* 标签页面样式 */
.tag-page {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px;
}

.tag-page h1 {
    color: #f0d700;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

/* 四列网格布局 */
.tag-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* 标签卡片样式 */
.tag-card {
    display: block;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #333;
}

.tag-card:hover {
    transform: translateY(-5px);
    border-color: #f0d700;
}

.image-wrapper {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.tag-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.tag-card:hover img {
    transform: scale(1.05);
}

.tag-card h3 {
    color: #fff;
    font-size: 18px;
    padding: 15px;
    text-align: center;
    margin: 0;
}

/* 响应式布局 */
@media (max-width: 1024px) {
    .tag-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .tag-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .tag-grid {
        grid-template-columns: 1fr;
    }
    
    .tag-page h1 {
        font-size: 28px;
    }
}
/* style.css 新增样式 */
/* 页面头部样式 */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

/* 更新时间样式 */
.last-update {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 20px;
    background: rgba(240,215,0,0.1);
    border-radius: 20px;
    color: #888;
    font-size: 14px;
}

.icon {
    width: 16px;
    height: 16px;
    fill: #f0d700;
}

/* 动态时间样式 */
time {
    color: #f0d700;
    font-weight: 500;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .last-update {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .icon {
        width: 14px;
        height: 14px;
    }
}