/*!************************************************************************************************!*\
  !*** css ./node_modules/_css-loader@7.1.1@css-loader/dist/cjs.js!./src/pages-pc/base/page.css ***!
  \************************************************************************************************/
/*!************************************************************************************************!*\
  !*** css ./node_modules/_css-loader@7.1.1@css-loader/dist/cjs.js!./src/pages-pc/help/help.css ***!
  \************************************************************************************************/

/* ===== 全局变量 ===== */
:root {
    --primary-color: #48C6EF;
    --primary-gradient: linear-gradient(90deg, #48C6EF 0%, #6f86d6 100%);
    --text-dark: rgba(0, 0, 0, 0.8);
    --text-medium: rgba(0, 0, 0, 0.6);
    --text-light: rgba(0, 0, 0, 0.4);
    --bg-light: #f4f8ff;
    --border-color: rgba(232, 235, 242, 1);
    --card-radius: 16px;
    --container-width: 1200px;
    --transition-speed: 0.3s;
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.08);
    --shadow-primary: 0 4px 10px rgba(72, 198, 239, 0.3);
}

/* ===== 页面头部 ===== */
.product-center-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(180deg, #FFFFFF 0%, #BDF7FF 50.4%, #79AAFF 100%);
    width: 100%;
    height: 280px;
    padding: 20px;
    box-sizing: border-box;
}

.product-center-header h1 {
    margin: 0;
    background-image: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
}

.product-center-header span {
    color: var(--text-medium);
    font-size: 22px;
    font-weight: 400;
    margin-top: 12px;
    text-align: center;
}

/* ===== 主体内容区域 ===== */
.help-content {
    width: 100%;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, var(--bg-light), #fff);
    flex-direction: column;
}

/* 导航路径 */
.help-link-nav {
    margin: 40px 0;
    font-weight: 400;
    color: var(--text-dark);
    font-size: 14px;
    width: 100%;
    max-width: var(--container-width);
    padding: 0 20px;
    box-sizing: border-box;
}

.help-link-nav a {
    color: var(--text-dark);
    cursor: pointer;
    text-decoration: none;
    transition: color var(--transition-speed);
}

.help-link-nav a:hover {
    color: var(--primary-color);
}

.help-link-nav img {
    height: 12px;
    width: 12px;
    margin: 0 8px;
}

.help-link-nav span {
    color: var(--text-light);
}

/* 内容布局 */
.help-content-row {
    display: flex;
    width: 100%;
    max-width: var(--container-width);
    padding: 0 20px;
    box-sizing: border-box;
    gap: 40px;
}

/* 左侧内容区 */
.help-content-left {
    display: flex;
    flex: 1;
    flex-direction: column;
    background-color: #fff;
    padding: 24px;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-speed);
}

.help-content-left:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

/* 分类标签 */
.help-left-tab {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.left-tab-item {
    height: 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    margin-right: 40px;
    margin-bottom: 5px;
    text-decoration: none;
    transition: all var(--transition-speed);
}

.left-tab-item span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    transition: color var(--transition-speed);
}

.left-tab-item div {
    display: none;
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    transition: all var(--transition-speed);
}

.left-tab-item:hover span {
    color: var(--primary-color);
}

.left-tab-item-select span {
    font-weight: 700;
    color: var(--primary-color);
}

.left-tab-item-select div {
    display: flex;
}

/* 文章列表 */
.help-article-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 40px;
    height: fit-content;
    padding: 8px 0;
}

.help-article-item {
    display: flex;
    margin-top: 15px;
    align-items: center;
    background: #FFFFFF;
    border-radius: var(--card-radius);
    width: 100%;
    min-height: 180px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    flex-wrap: wrap;
    border-bottom: 1px solid #f5f5f5;
    padding: 15px;
}

.help-article-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background-color: rgba(72, 198, 239, 0.03);
}

.help-article-item:last-child {
    border-bottom: none;
}

.help-article-img {
    height: 144px;
    width: 240px;
    margin-right: 20px;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.help-article-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: all var(--transition-speed);
}

.help-article-img:hover img {
    transform: scale(1.05);
}

.help-article-col {
    display: flex;
    flex: 1;
    min-width: 280px;
    height: 100%;
    padding: 5px 0;
    flex-direction: column;
}

.help-article-link {
    margin: 0;
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: color var(--transition-speed);
    display: inline-block;
}

.help-article-link span:last-child {
    float: right;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 7px;
}

.help-article-link:hover {
    color: var(--primary-color);
}

.help-article-desc {
    margin-top: 10px;
    color: var(--text-medium);
    font-size: 14px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.6;
}

.help-col-flex {
    flex: 1;
    width: 100%;
}

.help-article-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* 分页控件 */
.pagination {
    height: 40px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 20px;
}

.page-span-text {
    color: var(--text-medium);
    font-size: 14px;
    font-weight: 400;
}

.page-total {
    margin-right: 10px;
}

.page-btn {
    height: 36px;
    width: 36px;
    cursor: pointer;
    display: flex;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all var(--transition-speed);
}

.page-btn:hover {
    background: rgba(72, 198, 239, 0.2);
}

.page-btn-disable {
    opacity: 0.3;
}

.page-btn-disable:hover {
    cursor: default !important;
    background: none !important;
}

.page-btn img {
    height: 16px;
    width: 16px;
}

.page-prev-btn {
    margin-left: 12px;
}

.page-next-btn {
    margin-right: 12px;
}

.page-num-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.page-num-btn {
    height: 36px;
    width: 36px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 400;
    color: var(--text-medium);
    border-radius: 8px;
    margin: 0 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
}

.page-num-btn:hover {
    background: rgba(72, 198, 239, 0.2);
    color: var(--primary-color);
}

.page-num-btn-select {
    background: rgba(72, 198, 239, 0.2);
    color: var(--primary-color);
    font-weight: 600;
}

.page-num-btn-more {
    background: none;
    cursor: default;
    color: var(--text-medium);
}

.page-num-btn-more:hover {
    background: none;
    color: var(--text-medium);
}

.page-num-input {
    width: 50px;
    height: 36px;
    text-align: center;
    outline: none;
    border-radius: 8px;
    margin: 0 8px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-medium);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed);
}

.page-num-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(72, 198, 239, 0.2);
}

/* 隐藏输入框上下箭头 */
.page-num-input::-webkit-inner-spin-button,
.page-num-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* 兼容Firefox */
.page-num-input[type=number] {
    -moz-appearance: textfield;
}

/* 右侧内容区 */
.help-content-right {
    width: 320px;
    display: flex;
    flex-direction: column;
    flex: none;
    min-width: 320px;
}

/* 右侧卡片通用样式 */
.help-right-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    background: #FFFFFF;
    border-radius: var(--card-radius);
    padding: 24px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-speed);
}

.help-right-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.help-card-header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 36px;
    margin-bottom: 10px;
}

.help-card-header span {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
    flex: 1;
    text-align: left;
}

/* 热门教程标签页 */
.help-card-tab {
    display: flex;
    align-items: center;
    background: #f5f8ff;
    border-radius: 30px;
    padding: 3px;
}

.help-card-tab-item {
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 20px;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 400;
    margin: 0 3px;
    padding: 0 8px;
    transition: all var(--transition-speed);
}

.help-card-tab-item:hover {
    background: rgba(72, 198, 239, 0.2);
    color: var(--primary-color);
}

.help-card-tab-item-select {
    color: #fff;
    background: var(--primary-color);
    box-shadow: var(--shadow-primary);
}

.help-card-line {
    width: 100%;
    height: 1px;
    margin: 16px 0;
    position: relative;
    display: flex;
    background: var(--border-color);
}

.help-card-line-light {
    height: 2px;
    width: 80px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    top: -0.5px;
    border-radius: 2px;
}

/* 卡片列表通用样式 */
.help-card-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.help-card-more {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-speed);
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

.help-card-more:hover span {
    color: var(--primary-color) !important;
}

.help-card-more img {
    height: 16px;
    width: 16px;
    transition: transform var(--transition-speed);
}

.help-card-more:hover img {
    transform: translateX(3px);
}

/* 热门教程列表项 */
.help-card-item {
    margin-top: 16px;
    display: flex;
    width: 100%;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    height: 24px;
    min-height: 24px;
    font-size: 14px;
    font-weight: 400;
    transition: transform var(--transition-speed);
}

.help-card-item:hover {
    transform: translateX(5px);
}

.help-card-item span {
    color: var(--text-medium);
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    transition: color var(--transition-speed);
}

.help-card-item:hover span {
    color: var(--primary-color);
}

.help-card-item-num {
    height: 24px;
    width: 24px;
    min-width: 24px;
    margin-right: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    background: rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-speed);
}

.help-card-item:hover .help-card-item-num {
    transform: scale(1.1);
}

.help-card-item-num-1 {
    background: linear-gradient(45deg, #FF7A7A, #ff5656);
    box-shadow: 0 4px 10px rgba(255, 122, 122, 0.3);
}

.help-card-item-num-2 {
    background: linear-gradient(45deg, #FF9A7A, #ff7e50);
    box-shadow: 0 4px 10px rgba(255, 154, 122, 0.3);
}

.help-card-item-num-3 {
    background: linear-gradient(45deg, #FFC47E, #ffa83c);
    box-shadow: 0 4px 10px rgba(255, 196, 126, 0.3);
}

/* 空状态样式 */
.help-card-empty {
    margin-top: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

/* 热门标签网格 */
.help-card-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.help-card-grid a {
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 6px 12px;
    color: var(--text-medium);
    font-size: 13px;
    font-weight: 400;
    border-radius: 20px;
    transition: all var(--transition-speed);
}

.help-card-grid a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: rgba(72, 198, 239, 0.08);
    transform: translateY(-2px);
}

/* 软件推荐卡片 */
.help-card-software-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-speed);
}

.help-card-software-item:hover {
    background-color: rgba(72, 198, 239, 0.05);
    transform: translateX(5px);
}

.help-card-software-item:last-child {
    border-bottom: none;
}

.help-softwate-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 48px;
    width: 48px;
    margin-right: 12px;
}

.help-softwate-logo img {
    height: 100%;
    width: 100%;
    border-radius: 12px;
    transition: transform var(--transition-speed);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.help-card-software-item:hover .help-softwate-logo img {
    transform: scale(1.05);
}

.help-softwate-logo div {
    position: absolute;
    border-radius: 12px;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.help-software-col {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.help-software-col a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color var(--transition-speed);
}

.help-software-col a:hover {
    color: var(--primary-color);
}

.help-software-date {
    font-size: 12px;
    font-weight: 400;
    margin-top: 4px;
    color: var(--text-light);
}

.help-software-dl-btn {
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    width: 82px;
    cursor: pointer;
    border-radius: 20px;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 12px;
    text-decoration: none;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-primary);
}

.help-software-dl-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(72, 198, 239, 0.3);
}

.help-software-dl-btn img {
    height: 16px;
    width: 16px;
    margin-right: 4px;
}

/* 空列表状态 */
.help-article-empty-list {
    width: 100%;
    height: 300px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 400;
}

.help-article-empty-list img {
    height: 100px;
    width: 100px;
    margin-bottom: 15px;
    opacity: 0.7;
}

/* 产品相关 */
.help-product-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.article-product-item-logo {
    display: flex;
    align-items: center;
    height: 36px;
    width: 36px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed);
}

.help-article-item:hover .article-product-item-logo {
    transform: scale(1.05);
}

.article-product-item-logo img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    transition: transform var(--transition-speed);
}

.article-product-name {
    margin-left: 8px;
    margin-right: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium) !important;
    transition: color var(--transition-speed);
}

.help-article-item:hover .article-product-name {
    color: var(--primary-color) !important;
}

.article-product-dl {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.dl-btn {
    height: 36px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    padding: 0 16px;
}

.dl-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.dl-btn:hover::before {
    transform: translateX(0);
}

.dl-btn span {
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-align: center;
    position: relative;
    z-index: 2;
}

.dl-btn-win {
    background: linear-gradient(45deg, #46ABFF, #3d93d9);
}

.dl-btn-mac {
    background: linear-gradient(45deg, #9D56FF, #7E33E0);
}

.dl-btn-win:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(70, 171, 255, 0.3);
}

.dl-btn-mac:hover {
    box-shadow: 0 6px 15px rgba(157, 86, 255, 0.3);
    transform: translateY(-2px);
}

/* 下载按钮图标 */
.dl-btn img {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    display: inline-block;
    vertical-align: middle;
}

/* 下载按钮文字 */
.dl-btn span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}

/* 操作手册内容样式优化 */
.help-article-item[v-for="item in pagedList"][key="item.title"] {
    background-color: #fff;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
    border: none;
    overflow: hidden;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

/* 操作手册标题样式 */
.help-article-item .help-article-link {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
    text-decoration: none;
}

.help-article-item .help-article-link:hover {
    color: var(--primary-color);
}

/* 操作手册描述文本样式 */
.help-article-item .help-article-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* 操作手册底部区域样式 */
.help-article-item .help-article-row {
    display: flex;
    align-items: center;
    margin-top: auto;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* 操作手册左侧区域 */
.help-product-row {
    display: flex;
    align-items: center;
}

/* 操作手册图标容器 */
.article-product-item-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f0f9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.article-product-item-logo img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* 操作手册产品名称 */
.article-product-name {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
}

/* 操作手册下载按钮区域 */
.article-product-dl {
    display: flex;
    align-items: center;
}

/* 下载按钮样式 */
.dl-btn {
    height: 36px;
    min-width: 100px;
    padding: 0 15px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.dl-btn span{
    margin-top: -2px;
}

.dl-btn:last-child {
    margin-right: 0;
}

/* 下载按钮光效 */
.dl-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.dl-btn:hover::before {
    left: 100%;
}

/* Windows下载按钮 - 保持原来的颜色 */
.dl-btn-win {
    background: linear-gradient(45deg, #46ABFF, #3d93d9);
}

.dl-btn-win:hover {
    box-shadow: 0 6px 15px rgba(70, 171, 255, 0.3);
    transform: translateY(-2px);
}

/* Mac下载按钮 - 更新为苹果风格的配色 */
.dl-btn-mac {
    background: linear-gradient(45deg, #9D56FF, #7E33E0);
}

.dl-btn-mac:hover {
    box-shadow: 0 6px 15px rgba(157, 86, 255, 0.3);
    transform: translateY(-2px);
}

/* 操作手册日期 */
.help-article-row>span {
    font-size: 13px;
    color: var(--text-light);
    margin-left: auto;
}

/* 操作手册图片尺寸调整 */
.help-article-item[v-for="item in pagedList"][key="item.title"] .help-article-img {
    display: block;
    /* 显示操作手册中的图片 */
    width: 199px;
    height: 144px;
    margin-right: 20px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.help-article-item[v-for="item in pagedList"][key="item.title"] .help-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.help-article-item[v-for="item in pagedList"][key="item.title"] .help-article-img:hover img {
    transform: scale(1.05);
}

/* 调整操作手册内容布局为水平排列 */
.help-article-item[v-for="item in pagedList"][key="item.title"] {
    flex-direction: row;
    align-items: flex-start;
}

/* 调整操作手册内容区域 */
.help-article-item[v-for="item in pagedList"][key="item.title"] .help-article-col {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    /* 防止内容溢出 */
}

/* 操作手册手册图标 */
.help-article-item .manual-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.help-article-item .manual-icon img {
    width: 20px;
    height: 20px;
}

/* 操作手册标题行 */
.help-article-item .manual-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

/* 操作手册日期和下载按钮容器 */
.help-article-item .manual-actions {
    display: flex;
    align-items: center;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .help-article-item[v-for="item in pagedList"][key="item.title"] {
        flex-direction: column;
    }

    .help-article-item[v-for="item in pagedList"][key="item.title"] .help-article-img {
        width: 100%;
        height: auto;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .help-article-item[v-for="item in pagedList"][key="item.title"] .help-article-img img {
        aspect-ratio: 199/144;
    }
}

/* 响应式布局 */
@media screen and (max-width: 1200px) {
    .help-link-nav {
        width: 100%;
        min-width: auto;
        padding: 0 15px;
    }

    .help-content-row {
        padding: 0 15px;
        gap: 20px;
    }
}

@media screen and (max-width: 960px) {
    .help-content-row {
        flex-direction: column;
    }

    .help-content-right {
        width: 100%;
        min-width: auto;
    }
}

@media screen and (max-width: 768px) {
    .product-center-header {
        height: 220px;
    }

    .product-center-header h1 {
        font-size: 32px;
    }

    .product-center-header span {
        font-size: 18px;
    }

    .help-article-item {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }

    .help-article-img {
        width: 100%;
        height: auto;
        margin: 0 0 15px 0;
    }

    .help-article-col {
        padding: 0;
    }

    .left-tab-item {
        margin-right: 20px;
    }

    .pagination {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .product-center-header h1 {
        font-size: 28px;
    }

    .product-center-header span {
        font-size: 16px;
    }

    .help-link-nav {
        margin: 20px 0;
    }

    .help-card-tab {
        margin-left: auto;
    }

    .help-card-header span {
        font-size: 18px;
    }
}

/*!*********************************************************************************************************!*\
  !*** css ./node_modules/_css-loader@7.1.1@css-loader/dist/cjs.js!./src/pages-pc/login/login-dialog.css ***!
  \*********************************************************************************************************/

.dialog-login-root {
    border-radius: 20px;
    background-color: #fff;
    width: 360px;
    height: 341px;
    display: flex;
    flex-direction: column;
}

.dialog-header {
    width: 100%;
    position: relative;
    height: 52px;
}

.dialog-close {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    position: absolute;
    top: 20px;
    right: 32px;
    cursor: pointer;
}

.dialog-close img {
    width: 20px;
    height: 20px;
}

.dialog-login-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 264px;
    height: 38px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(238, 241, 245, 1);
}

.login-tab-item {
    display: flex;
    position: relative;
    height: 100%;
    cursor: pointer;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.login-tab-item-select {
    color: rgba(82, 153, 255, 1) !important;
}

.tab-item div {
    background: rgba(65, 176, 255, 1);
    width: 60px;
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
}





.dialog-login-wx {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    justify-content: center;
    align-items: center;
}

.dialog-login-wx-tip {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    margin-top: 8px;
    color: rgba(0, 0, 0, 0.8);

}

.dialog-login-wx-code {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    position: relative;
}

.wx-loading-cover {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
}

.wx-loading-cover-refresh {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.wx-loading-btn {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-dialog-code img {
    height: 100%;
    width: 100%;
}

.wx-dialog-tip {
    margin-top: 8px;
    font-weight: 400;
    font-size: 16px;
    z-index: 999;
    color: rgba(0, 0, 0, 0.8);
}

.dialog-login-wx-code img {
    width: 100%;
    height: 100%;
}




.dialog-login-email {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
    width: 100%;
}

.dialog-login-input {
    flex: 1;
    height: 44px;
    min-height: 44px;
    width: calc(100% - 96px);
    font-size: 14px;
    margin: 0px 48px 20px 48px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dialog-login-input input {
    color: rgba(0, 0, 0, 0.8);
    flex: 1;
    height: 44px;
    min-height: 44px;
    font-size: 14px;
    border: none;
    outline: none;
    font-weight: 400;
    background: rgba(244, 248, 255, 1);

    border: 1px solid rgba(244, 248, 255, 1);
    border-radius: 6px;
    box-sizing: border-box;
    padding: 0 12px;
}

.dialog-login-input input::placeholder {
    color: rgba(0, 0, 0, 0.4);
    border: none;
    outline: none;
}

.dialog-login-get-code {
    height: 100%;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    position: absolute;
    top: 0;
    right: 16px;
    color: rgba(82, 153, 255, 1);

}

.dialog-login-get-code-disable {
    color: rgba(171, 183, 204, 1);
    background: rgba(242, 245, 249, 1);
}

.dialog-login-btn {
    margin: 0px 48px;

    background: linear-gradient(90deg, rgba(80, 118, 255, 0.2) 0%, rgba(44, 161, 255, 0.2) 100%);

    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    width: calc(100% - 96px);
    border-radius: 32px;
    cursor: pointer;
    opacity: 0.4;
}

.dialog-login-btn-enable {
    color: #fff;
    opacity: 1 !important;
    background: linear-gradient(90deg, #5076FF 0%, #2CA1FF 100%);
}

.dialog-login-btn-enable:hover {
    background: rgba(74, 138, 230, 1) !important;
}

.dialog-login-orther-type {
    display: flex;
    align-items: center;
    /* margin: 0px 56px 10px 56px; */
    width: calc(100% - 112px);
    position: absolute;
    min-height: 28px;
    left: 50%;
    bottom: 68px;
    transform: translate(-50%, 0);
}

.dialog-login-line {
    height: 1px;
    flex: 1;
    background-color: rgba(0, 0, 0, 0.05);
}

.dialog-login-orther-type span {
    color: rgba(153, 153, 153, 1);
    font-size: 14px;
    font-weight: 400;
    margin-left: 14px;
    margin-right: 14px;
}

.dialog-login-btn-qq {
    height: 38px;
    width: 38px;
    cursor: pointer;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%, 0);
}


/*!***************************************************************************************************************!*\
  !*** css ./node_modules/_css-loader@7.1.1@css-loader/dist/cjs.js!./src/pages-pc/login/email-merge-dialog.css ***!
  \***************************************************************************************************************/

.dialog-merge-root {
    border-radius: 20px;
    background-color: #fff;
    width: 400px;
    height: fit-content;
    display: flex;
    flex-direction: column;
}


.dialog-merge-msg {
    color: rgba(255, 54, 103, 1) !important;
}

.dialog-merge-item-col {
    display: flex;
    flex-direction: column;
    width: calc(100% - 64px);
    background: rgba(244, 248, 255, 1);
    border-radius: 8px;
    margin: 0 32px 20px 32px;
    padding: 4px 0;
}

.dialog-merge-item {
    display: flex;
    align-items: center;
    width: calc(100% - 40px);
    padding: 12px 0px;
    margin: 0 20px;
    border-bottom: 1px solid rgba(232, 235, 242, 1);
}

.merge-none-border {
    border-bottom: none !important;
}

.dialog-merge-item p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    font-weight: 400;
    width: 216px;
    margin: 0;
    max-width: 216px;
    line-height: 24px;
    text-align: left;
    word-wrap: break-word;
    /* 旧版本浏览器支持 */
    overflow-wrap: break-word;
    /* 标准属性 */
}

.current-email {
    color: rgba(0, 0, 0, 0.4);
    font-size: 12px;
    font-weight: 400;
    margin-left: 3px;
}

.dialog-merge-btn {
    font-size: 14px;
    font-weight: 400;
    padding: 4px 12px;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 28px;
    white-space: nowrap;
    background: rgba(82, 153, 255, 1);
}

.dialog-merge-btn:hover {
    background: rgba(74, 138, 230, 1);
}

.pagination {
    height: 32px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}

.page-span-text {
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    font-weight: 400;
}

.page-btn {
    height: 32px;
    width: 32px;
    cursor: pointer;
    display: flex;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-btn:hover {
    background: rgba(65, 176, 255, 0.2);
}

.page-btn-disable img {
    transform: translateY(-480px);
    filter: drop-shadow(rgba(0, 0, 0, 0.1) 0 480px);
}

.page-btn-disable:hover {
    cursor: default !important;
    background: none !important;
}

.page-btn img {
    height: 16px;
    width: 16px;
}

.page-pre-btn {
    margin-left: 12px;
}

.page-next-btn {
    margin-right: 12px;
}

.page-num-row {
    display: flex;
    align-items: center;
}

.page-num-btn {
    height: 32px;
    width: 32px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    margin-left: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


.page-num-btn:hover {
    background: rgba(65, 176, 255, 0.2);
    color: rgba(82, 153, 255, 1);
}

.page-num-btn-select {
    background: rgba(65, 176, 255, 0.2);
    color: rgba(82, 153, 255, 1);
}

.page-num-btn-more {
    background: none;
    cursor: default;
    color: rgba(0, 0, 0, 0.7);
}

.page-num-btn-more:hover {
    background: none;
    color: rgba(0, 0, 0, 0.7);
}

.page-num-input {
    width: 36px;
    height: 32px;
    text-align: center;
    outline: none;
    border-radius: 5px;
    margin: 0 8px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1)
}

/* 隐藏输入框上下箭头 */
.page-num-input::-webkit-inner-spin-button,
.page-num-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* 兼容Firefox */
.page-num-input[type=number] {
    -moz-appearance: textfield;
}

  /* 文章内容区域样式优化 */
  .editor-content {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.8;
    color: #333;
    padding: 20px 0;
    font-size: 16px;
}

.editor-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 4px solid #48C6EF;
    line-height: 1.4;
}

.editor-content p {
    margin-bottom: 16px;
    text-align: justify;
}

.editor-content font {
    font-family: inherit !important;
}

/* 图片样式优化 */
.editor-img-root {
    margin: 25px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    position: relative;
}

.editor-img {
    width: 100%;
    position: relative;
}

.editor-img img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.editor-img:hover img {
    transform: scale(1.01);
}

.editor-img-caption {
    padding: 12px 15px;
    color: #666;
    font-size: 14px;
    text-align: center;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.editor-img-zoom {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.editor-img-root:hover .editor-img-zoom {
    opacity: 1;
}

.editor-img-zoom svg {
    width: 20px;
    height: 20px;
    fill: #48C6EF;
}

/* 图片放大查看样式 */
.img-preview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.img-preview-container {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.img-preview-container img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.img-preview-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.step-marker {
    display: inline-block;
    background: linear-gradient(90deg, #5076FF 0%, #48C6EF 100%);
    color: white;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    margin-right: 8px;
}

.tip-box {
    background-color: #f8f9fa;
    border-left: 4px solid #48C6EF;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

.tip-box-title {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color: #333;
}

/* 文章底部标签样式优化 */
.help-tag-row-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px; /* 行间距10px，列间距12px */
    margin-top: 6px;
    margin-bottom: 2px;
}

.help-tag-row-list a {
    display: inline-block;
    padding: 3px 16px;
    background: linear-gradient(90deg, #eaf6fd 0%, #f8fafd 100%);
    color: #48C6EF;
    border-radius: 18px;
    font-size: 14px;
    line-height: 24px;
    text-decoration: none;
    border: 1px solid #e0f3fa;
    transition: 
        background 0.2s,
        color 0.2s,
        border-color 0.2s,
        box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(72,198,239,0.08);
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

.help-tag-row-list a:hover {
    background: linear-gradient(90deg, #48C6EF 0%, #6f86d6 100%);
    color: #fff;
    border-color: #48C6EF;
    box-shadow: 0 4px 16px rgba(72,198,239,0.18);
    text-shadow: 0 1px 4px rgba(72,198,239,0.10);
}

.help-tag-row-list a:active {
    background: linear-gradient(90deg, #6f86d6 0%, #48C6EF 100%);
    color: #fff;
    border-color: #6f86d6;
}

/* 页面导航样式优化 */
.detail-page-nav {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.detail-page-item {
    margin-bottom: 15px;
}

.detail-page-btn {
    display: flex;
    align-items: center;
    color: #666;
    margin-bottom: 8px;
}

.a-link-page {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.a-link-page:hover {
    color: #48C6EF;
}

/* 添加推荐下载卡片样式 */
.article-download-card {
    display: flex;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f7ff 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8f4ff;
    position: relative;
    overflow: hidden;
}

.article-download-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(72, 198, 239, 0.1) 0%, rgba(111, 134, 255, 0.05) 100%);
    border-radius: 0 0 0 150px;
    z-index: 0;
}

.download-card-icon {
    flex: 0 0 80px;
    height: 80px;
    margin-right: 20px;
    border-radius: 16px;
    overflow: hidden;
}

.download-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.download-card-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.download-card-info p {
    font-size: 14px;
    color: #666;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.download-card-tags {
    display: flex;
    flex-wrap: wrap;
}

.download-tag {
    background-color: rgba(72, 198, 239, 0.1);
    color: #48C6EF;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 12px;
    margin-right: 8px;
    margin-bottom: 5px;
}

.download-card-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.download-btn img {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.win-btn {
    background: linear-gradient(90deg, #48C6EF 0%, #6F86FF 100%);
    color: white;
}

.mac-btn {
    background: white;
    color: #333;
    border: 1px solid #e0e0e0;
}

.win-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(72, 198, 239, 0.3);
}

.mac-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 文章底部关键词匹配软件推荐 */
.keyword-matched-software {
    margin-top: 40px;
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #eee;
}

.keyword-matched-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.keyword-matched-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: linear-gradient(90deg, #48C6EF 0%, #6F86FF 100%);
    margin-right: 10px;
    border-radius: 2px;
}

.keyword-software-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.keyword-software-item {
    flex: 1 0 calc(50% - 15px);
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #eee;
}

.keyword-software-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: #e8f4ff;
}

.keyword-software-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
}

.keyword-software-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.keyword-software-info {
    flex: 1;
}

.keyword-software-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0 0 5px 0;
}

.keyword-software-desc {
    font-size: 12px;
    color: #666;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

.keyword-software-dl {
    background: linear-gradient(90deg, #48C6EF 0%, #6F86FF 100%);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 5px 12px;
    font-size: 12px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.keyword-software-dl:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(72, 198, 239, 0.3);
}