/* #region 通用 start */
* {
    margin: 0;
    padding: 0;
    font-family: '微软雅黑';
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background: linear-gradient(to bottom, #e7e2e2c9, #eae3eb);
    min-width: 320px;
}
/* #endregion 通用 end */

/* #region 响应式容器 start */
.responsive-container {
    position: relative;
    width: 1188px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* 移动端适配 */
@media screen and (max-width: 1200px) {
    .responsive-container {
        width: 100%;
        padding: 0 10px;
    }
}

@media screen and (max-width: 992px) {
    .responsive-container {
        padding: 0 5px;
    }
}

/* 电脑端保持原样 */
@media screen and (min-width: 1201px) {
    .responsive-container {
        width: 1188px;
    }
}
/* #endregion 响应式容器 end */

/* #region 版心 start */
.container {
    position: relative;
    background: linear-gradient(to bottom, #fcfcfca1, #e5edf5);
    overflow: auto;
    min-height: 100vh;
    padding-bottom: 20px;
}
/* #endregion 版心 end */

/* #region 顶部logo start - 修改：添加累计开户样式 */
.header {
    width: 100%;
    height: 138px;
    margin: 0px auto;
    position: relative;
    display: flex;
    align-items: center;
}

.header-logo img {
    width: 128px;
    height: auto;
    margin-left: 20px;
}

.header-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 0, 0, 0.9);
    font-size: 58px;
    opacity: 0.7;
    font-weight: bolder;
    text-align: center;
    width: 100%;
    cursor: pointer;
}

/* 新增：累计开户样式 - 定位到header右下角 */
.header-count {
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 24px;
    color: rgb(255, 0, 179);
    font-weight: bold;
    letter-spacing: 2px;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header-count .count-number {
    font-size: 20px;
    font-weight: bold;
    vertical-align: middle;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-count .count-plus {
    font-size: 20px;
    font-weight: bold;
    vertical-align: super;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* 移动端标题调整 */
@media screen and (max-width: 768px) {
    .header {
        height: 100px;
    }
    
    .header-title {
        font-size: 36px;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .header-logo img {
        width: 80px;
        margin-left: 15px;
    }
    
    .header-count {
        font-size: 16px;
        right: 10px;
        bottom: 5px;
    }
    
    .header-count .count-number,
    .header-count .count-plus {
        font-size: 16px;
    }
}

@media screen and (max-width: 576px) {
    .header {
        height: 80px;
    }
    
    .header-title {
        font-size: 30px;
    }
    
    .header-logo img {
        width: 70px;
        margin-left: 10px;
    }
    
    .header-count {
        font-size: 14px;
        right: 8px;
        bottom: 3px;
        letter-spacing: 1px;
    }
    
    .header-count .count-number,
    .header-count .count-plus {
        font-size: 14px;
    }
}

@media screen and (max-width: 400px) {
    .header-title {
        font-size: 26px;
    }
    
    .header-count {
        font-size: 12px;
        right: 5px;
        bottom: 2px;
    }
    
    .header-count .count-number,
    .header-count .count-plus {
        font-size: 12px;
    }
}
/* #endregion 顶部logo end */

/* #region 导航 start */
.nav {
    width: 100%;
    height: 88px;
    margin: 0px auto;
    background-color: rgba(255, 0, 0, 0.7);
    display: flex;
    align-items: center;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #d81e06; /* 添加边框 */
}

.nav-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 10px;
}

.nav-container a {
    color: white;
    text-decoration: none;
    font-size: 35px;
    font-weight: bolder;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    flex: 0 1 auto;
    text-align: center;
    white-space: nowrap;
}

.nav-container a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 导航移动端适配 */
@media screen and (max-width: 992px) {
    .nav {
        height: 70px;
        margin: 10px auto;
    }
    
    .nav-container a {
        font-size: 24px;
        padding: 6px 10px;
    }
}

@media screen and (max-width: 768px) {
    .nav {
        height: 60px;
    }
    
    .nav-container {
        padding: 0 5px;
    }
    
    .nav-container a {
        font-size: 20px;
        padding: 4px 8px;
    }
}

@media screen and (max-width: 576px) {
    .nav {
        height: 50px;
    }
    
    .nav-container a {
        font-size: 16px;
        padding: 3px 6px;
    }
}

@media screen and (max-width: 400px) {
    .nav-container a {
        font-size: 14px;
        padding: 2px 4px;
        letter-spacing: 0.5px;
    }
}
/* #endregion 导航 end */

/* #region 内容区 start */
.main {
    width: 100%;
    margin: 10px auto;
    display: flex;
    justify-content: space-between;
    border-radius: 6px;
    overflow: hidden;
}

/* 移动端内容区调整 */
@media screen and (max-width: 992px) {
    .main {
        flex-direction: column;
        overflow: visible;
    }
    
    .main-left, .main-right {
        width: 100% !important;
    }
    
    .main-right {
        margin-top: 20px;
    }
}
/* #region 内容区-左边 start */
.main-left {
    width: 888px;
}

/* 移动端左边内容区调整 - 修复表格显示 */
@media screen and (max-width: 992px) {
    .main-left {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 15px;
        margin-bottom: 10px;
        scroll-behavior: smooth;
    }
    
    .main-left::-webkit-scrollbar {
        height: 8px;
    }
    
    .main-left::-webkit-scrollbar-thumb {
        background: rgba(233, 83, 102, 0.7);
        border-radius: 4px;
    }
    
    .main-left::-webkit-scrollbar-track {
        background: rgba(233, 83, 102, 0.1);
        border-radius: 4px;
    }
    
    /* 添加滚动指示器 */
    .main-left::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 30px;
        background: linear-gradient(90deg, rgba(239,231,243,0) 0%, rgba(239,231,243,0.8) 50%, rgba(239,231,243,1) 100%);
        pointer-events: none;
        z-index: 1;
        display: none;
    }
    
    .main-left.scrolling::after {
        display: block;
    }
}

/* #region 左边表格1 start - 修改：添加最小宽度确保与其他表格一致 */
.main-left .sort-one {
    width: 100%;
    line-height: 35px;
    padding: 15px 25px;
    border: 1px solid #cccbcbc7; 
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(209, 185, 185, 0.5);
    margin-bottom: 15px;
    background-color: rgb(255, 250, 250);
    word-break: break-word;
    min-width: 888px; /* 新增：添加最小宽度确保与其他表格一致 */
}

.main-left .sort-one div {
    font-size: 15px;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.7);
}

/* 移动端表格1调整 */
@media screen and (max-width: 992px) {
    .main-left .sort-one {
        padding: 12px 18px;
        margin-bottom: 12px;
        overflow-x: auto; /* 添加水平滚动 */
        min-width: 888px; /* 保持最小宽度 */
    }
    
    .main-left .sort-one div {
        font-size: 14px;
        line-height: 28px;
        letter-spacing: 1px;
        white-space: nowrap; /* 防止文本换行 */
    }
}

@media screen and (max-width: 768px) {
    .main-left .sort-one {
        padding: 10px 15px;
        min-width: 888px;
    }
    
    .main-left .sort-one div {
        font-size: 13px;
        line-height: 24px;
    }
}

@media screen and (max-width: 576px) {
    .main-left .sort-one {
        padding: 8px 12px;
        min-width: 888px;
    }
    
    .main-left .sort-one div {
        font-size: 12px;
        line-height: 22px;
    }
}

@media screen and (max-width: 400px) {
    .main-left .sort-one {
        padding: 8px 12px;
        min-width: 888px;
    }
    
    .main-left .sort-one div {
        font-size: 12px;
        line-height: 22px;
        white-space: normal; /* 小屏幕允许换行 */
    }
}
/* #endregion 左边表格1 end */

/* #region 左边表格2及以上通用 start */
.main-left .sort-share {
    border: 1px solid #cccbcbc7;
    border-collapse: collapse;
    border-radius: 8px;
    margin-bottom: 15px;  
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(209, 185, 185, 0.5);
    width: 100%;
    min-width: 888px; /* 确保表格最小宽度 */
}

.main-left .sort-share table {
    width: 100%; 
    border-collapse: collapse;
    background-color: rgb(255, 250, 250);
    table-layout: fixed;
    border-spacing: 0; /* 确保边框间距为0 */
}

.main-left .sort-share td {
    border: 1px solid #e0e0e0;
    text-align: center;
    vertical-align: middle;
    padding: 5px;
    color: #464545;
    font-weight: bold;
    word-break: break-word;
    overflow: hidden;
    position: relative; /* 用于修复边框重叠问题 */
}

.main-left .sort-share tbody tr {
    height: 43px;
}

.main-left .sort-share .left-row {
    text-align: left;
    min-width: 200px;
}

.main-left .sort-share .align-mw {
    writing-mode: vertical-lr;
    text-align: center;
    vertical-align: middle;
    padding: 10px 0;
    min-width: 48px;
    max-width: 48px;
    word-break: keep-all;
    border-right: 1px solid #e0e0e0; /* 确保垂直单元格右边框 */
}

.main-left .sort-share .left-row ul span {
    display: block;
    text-align: center;
    margin: 10px 0 10px 0;
}

.main-left .sort-share .left-row ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-left .sort-share .left-row ul li {
    font-size: 13px;
    color: #474646;
    line-height: 1.5;
    padding: 2px 5px;
    word-break: break-word;
    line-height: 30px;
}

/* 修复表格边框重叠问题 */
.main-left .sort-share td {
    border-collapse: collapse !important;
}

/* 修复最后一行底部边框 */
.main-left .sort-share tr:last-child td {
    border-bottom: 1px solid #e0e0e0;
}

/* 修复最右边单元格右边框 */
.main-left .sort-share td:last-child {
    border-right: 1px solid #e0e0e0;
}

/* 移动端表格调整 - 修复行高不一致问题 */
@media screen and (max-width: 992px) {
    .main-left .sort-share {
        min-width: 888px; /* 保持与PC端一致的最小宽度 */
        margin-bottom: 12px;
    }
    
    .main-left .sort-share tbody tr {
        height: 43px !important; /* 强制所有行保持相同高度 */
        min-height: 43px !important;
    }
    
    .main-left .sort-share td {
        padding: 5px !important; /* 保持一致的padding */
        font-size: 13px;
        line-height: 1.3;
        height: 43px !important; /* 强制所有单元格高度一致 */
        overflow: hidden;
        border: 1px solid #e0e0e0 !important; /* 确保移动端边框显示 */
    }
    
    .main-left .sort-share .align-mw {
        padding: 10px 0 !important; /* 保持垂直文本一致的padding */
        font-size: 14px;
        min-width: 48px !important;
        max-width: 48px !important;
        height: 43px !important;
        border-right: 1px solid #e0e0e0 !important; /* 确保垂直单元格右边框 */
    }
    
    .main-left .sort-share .left-row ul li {
        font-size: 12px;
        line-height: 1.4;
        padding: 2px 4px;
    }
    
    /* 修复垂直居中问题 */
    .main-left .sort-share td[style*="color: #e95366; font-size: 60px;"],
    .main-left .sort-share td[style*="color: #e95366; font-size: 50px;"] {
        font-size: 40px !important; /* 减小大字体大小 */
        line-height: 43px !important; /* 强制行高与表格行高一致 */
    }
    
    .main-left .sort-share td[style*="color: #951fdf; font-size: 18px;"] {
        font-size: 16px !important;
        line-height: 43px !important;
    }
}

@media screen and (max-width: 768px) {
    .main-left .sort-share {
        min-width: 888px; /* 保持最小宽度不变 */
    }
    
    .main-left .sort-share tbody tr {
        height: 40px !important;
        min-height: 40px !important;
    }
    
    .main-left .sort-share td {
        padding: 4px !important;
        font-size: 12px;
        line-height: 1.2;
        height: 40px !important;
        border: 1px solid #e0e0e0 !important; /* 确保移动端边框显示 */
    }
    
    .main-left .sort-share .left-row ul li {
        font-size: 11px;
        line-height: 1.3;
        padding: 1px 3px;
    }
    
    /* 调整大字体单元格 */
    .main-left .sort-share td[style*="color: #e95366; font-size: 60px;"],
    .main-left .sort-share td[style*="color: #e95366; font-size: 50px;"] {
        font-size: 35px !important;
        line-height: 40px !important;
    }
    
    .main-left .sort-share td[style*="color: #951fdf; font-size: 18px;"] {
        font-size: 15px !important;
        line-height: 40px !important;
    }
    
    .main-left .sort-share .align-mw {
        font-size: 12px !important;
        padding: 8px 0 !important;
        min-width: 48px !important;
        max-width: 48px !important;
        height: 40px !important;
        border-right: 1px solid #e0e0e0 !important; /* 确保垂直单元格右边框 */
    }
}

@media screen and (max-width: 576px) {
    .main-left .sort-share {
        min-width: 888px;
        margin-bottom: 10px;
    }
    
    .main-left .sort-share tbody tr {
        height: 38px !important;
        min-height: 38px !important;
    }
    
    .main-left .sort-share td {
        padding: 3px !important;
        font-size: 11px;
        line-height: 1.1;
        height: 38px !important;
        border: 1px solid #e0e0e0 !important; /* 确保移动端边框显示 */
    }
    
    .main-left .sort-share .align-mw {
        font-size: 11px !important;
        padding: 6px 0 !important;
        min-width: 48px !important;
        max-width: 48px !important;
        height: 38px !important;
        border-right: 1px solid #e0e0e0 !important; /* 确保垂直单元格右边框 */
    }
    
    .main-left .sort-share .left-row ul li {
        font-size: 10px;
        line-height: 1.2;
        padding: 1px 2px;
    }
    
    /* 调整大字体单元格 */
    .main-left .sort-share td[style*="color: #e95366; font-size: 60px;"],
    .main-left .sort-share td[style*="color: #e95366; font-size: 50px;"] {
        font-size: 30px !important;
        line-height: 38px !important;
    }
    
    .main-left .sort-share td[style*="color: #951fdf; font-size: 18px;"] {
        font-size: 14px !important;
        line-height: 38px !important;
    }
}

@media screen and (max-width: 400px) {
    .main-left .sort-share {
        min-width: 888px;
    }
    
    .main-left .sort-share tbody tr {
        height: 36px !important;
        min-height: 36px !important;
    }
    
    .main-left .sort-share td {
        padding: 2px !important;
        font-size: 10px;
        line-height: 1;
        height: 36px !important;
        border: 1px solid #e0e0e0 !important; /* 确保移动端边框显示 */
    }
    
    .main-left .sort-share .align-mw {
        font-size: 10px !important;
        padding: 5px 0 !important;
        min-width: 48px !important;
        max-width: 48px !important;
        height: 36px !important;
        border-right: 1px solid #e0e0e0 !important; /* 确保垂直单元格右边框 */
    }
    
    /* 调整大字体单元格 */
    .main-left .sort-share td[style*="color: #e95366; font-size: 60px;"],
    .main-left .sort-share td[style*="color: #e95366; font-size: 50px;"] {
        font-size: 25px !important;
        line-height: 36px !important;
    }
    
    .main-left .sort-share td[style*="color: #951fdf; font-size: 18px;"] {
        font-size: 13px !important;
        line-height: 36px !important;
    }
}
/* #endregion 左边表格2及以上通用 end */

/* #region 左边表格sort-last start */
.main-left .sort-last {
    border: 1px solid #cccbcbc7;
    border-collapse: collapse;
    border-radius: 8px;
    margin-bottom: 15px;  
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(209, 185, 185, 0.6);
    width: 100%;
    min-width: 888px;
}

.main-left .sort-last table {
    width: 100%; 
    border-collapse: collapse;
    background-color: rgb(255, 250, 250);
    table-layout: fixed;
    border-spacing: 0; /* 确保边框间距为0 */
}

.main-left .sort-last tbody tr {
    height: 50px;
}

.main-left .sort-last td {
    border: 1px solid #e0e0e0; /* 统一边框宽度为1px */
    text-align: center;
    vertical-align: middle;
    letter-spacing: 1px;
    padding: 5px;
    color: #5a5959b4;
    font-weight: bold;
    font-size: 15px;
    word-break: break-word;
}

/* 修复sort-last表格边框 */
.main-left .sort-last td:first-child {
    border-left: 1px solid #e0e0e0;
}

.main-left .sort-last td:last-child {
    border-right: 1px solid #e0e0e0;
}

.main-left .sort-last tr:first-child td {
    border-top: 1px solid #e0e0e0;
}

.main-left .sort-last tr:last-child td {
    border-bottom: 1px solid #e0e0e0;
}

/* 移动端调整 - 修复行高问题 */
@media screen and (max-width: 992px) {
    .main-left .sort-last {
        min-width: 888px;
        margin-bottom: 12px;
    }
    
    .main-left .sort-last tbody tr {
        height: 50px !important;
        min-height: 50px !important;
    }
    
    .main-left .sort-last td {
        font-size: 14px;
        padding: 4px !important;
        line-height: 1.3;
        height: 50px !important;
        border: 1px solid #e0e0e0 !important; /* 确保移动端边框显示 */
    }
}

@media screen and (max-width: 768px) {
    .main-left .sort-last {
        min-width: 888px;
    }
    
    .main-left .sort-last tbody tr {
        height: 45px !important;
        min-height: 45px !important;
    }
    
    .main-left .sort-last td {
        font-size: 13px;
        padding: 3px !important;
        line-height: 1.2;
        height: 45px !important;
        border: 1px solid #e0e0e0 !important; /* 确保移动端边框显示 */
    }
}

@media screen and (max-width: 576px) {
    .main-left .sort-last {
        min-width: 888px;
        margin-bottom: 10px;
    }
    
    .main-left .sort-last tbody tr {
        height: 40px !important;
        min-height: 40px !important;
    }
    
    .main-left .sort-last td {
        font-size: 12px;
        padding: 2px !important;
        line-height: 1.1;
        height: 40px !important;
        border: 1px solid #e0e0e0 !important; /* 确保移动端边框显示 */
    }
}

@media screen and (max-width: 400px) {
    .main-left .sort-last {
        min-width: 888px;
    }
    
    .main-left .sort-last tbody tr {
        height: 35px !important;
        min-height: 35px !important;
    }
    
    .main-left .sort-last td {
        font-size: 11px;
        padding: 1px !important;
        line-height: 1;
        height: 35px !important;
        border: 1px solid #e0e0e0 !important; /* 确保移动端边框显示 */
    }
}
/* #endregion 左边表格sort-last end */

/* #endregion 内容区-左边 end */

/* #region 内容区-右边 start */
.main-right {
    width: 278px;
}

/* 移动端右边内容区调整 */
@media screen and (max-width: 992px) {
    .main-right {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 15px;
    }
    
    .main-right .sort-one,
    .main-right .sort-tw,
    .main-right .sort-th {
        width: 100%;
    }
    
    /* 在小屏幕上使右边表格更紧凑 */
    .main-right .sort-tw:nth-child(2),
    .main-right .sort-tw:nth-child(3) {
        width: calc(50% - 8px);
    }
}

@media screen and (max-width: 576px) {
    .main-right {
        gap: 12px;
    }
    
    .main-right .sort-tw:nth-child(2),
    .main-right .sort-tw:nth-child(3) {
        width: 100%;
    }
}

/* #region 右边表格1 start */
.main-right .sort-one {
    width: 100%;
    line-height: 35px;
    padding: 10px 0;
    border: 1px solid #cccbcbc7; 
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(209, 185, 185, 0.5);
    margin-bottom: 15px;
    background-color: rgb(255, 250, 250);
}

.main-right .sort-one div {
    font-size: 16px;
    text-align: center;
    letter-spacing: 1.5px;
    color: rgba(0, 0, 0, 0.6);
}

.main-right .sort-one .auto-date {
    font-size: 16px;
}

/* 移动端调整 */
@media screen and (max-width: 768px) {
    .main-right .sort-one {
        padding: 8px 0;
        margin-bottom: 10px;
    }
    
    .main-right .sort-one div {
        font-size: 14px;
        line-height: 30px;
    }
}

@media screen and (max-width: 576px) {
    .main-right .sort-one div {
        font-size: 13px;
        line-height: 26px;
    }
}
/* #endregion 右边表格1 end */

/* #region 右边表格2 start */
.main-right .sort-tw {
    width: 100%;
    line-height: 25px;
    padding: 10px 0;
    border: 1px solid #cccbcbc7; 
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(209, 185, 185, 0.5);
    margin-bottom: 15px;
    background-color: rgb(255, 250, 250);
}

.main-right .sort-tw img {
    width: 198px;
    height: auto;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.main-right .sort-tw div {
    text-align: center;
    font-size: 30px;
    letter-spacing: 3px;
    color: rgba(0, 173, 101, 0.8);
    padding: 10px 0px;
}

/* 移动端调整 */
@media screen and (max-width: 768px) {
    .main-right .sort-tw {
        padding: 8px 0;
        margin-bottom: 10px;
    }
    
    .main-right .sort-tw img {
        width: 180px;
    }
    
    .main-right .sort-tw div {
        font-size: 24px;
        padding: 8px 0;
    }
}

@media screen and (max-width: 576px) {
    .main-right .sort-tw img {
        width: 150px;
    }
    
    .main-right .sort-tw div {
        font-size: 20px;
        padding: 6px 0;
    }
}
/* #endregion 右边表格2 end */

/* #region 右边表格3 start - 这是常见问题表格 */
.main-right .sort-th {
    width: 100%;
    line-height: 25px;
    padding: 0; /* 修改：移除内部padding，让子元素控制 */
    border: 1px solid #cccbcbc7; 
    border-radius: 5px; /* 增加圆角 */
    box-shadow: 0 6px 15px rgba(209, 185, 185, 0.6); /* 增强阴影 */
    margin-bottom: 20px; /* 增加底部间距 */
    background-color: rgb(255, 250, 250);
    overflow: hidden; /* 确保内部圆角效果 */
    position: relative;
    transition: all 0.4s ease; /* 添加过渡效果 */
}

/* 常见问题表格美化 - 标题区域 */
.faq-title {
    background: linear-gradient(135deg, #e95366 0%, #ff6b81 100%);
    color: white;
    text-align: center;
    padding: 18px 15px;
    font-size: 22px;
    letter-spacing: 2.5px;
    font-weight: bold;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.faq-title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
}

.faq-title:hover:before {
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.faq-title i {
    font-size: 15px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

/* 权限开通类表格标题 */
.permission-title {
    background: linear-gradient(135deg, #5561ff 0%, #6d78ff 100%);
    color: white;
    text-align: center;
    padding: 18px 15px;
    font-size: 22px;
    letter-spacing: 2.5px;
    font-weight: bold;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.permission-title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
}

.permission-title:hover:before {
    animation: shimmer 1.5s infinite;
}

/* details元素美化 */
.faq-details {
    padding: 0 15px;
}

.faq-details details {
    border-bottom: 1px solid rgba(233, 83, 102, 0.15);
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-details details:last-child {
    border-bottom: none;
}

.faq-details details:hover {
    background-color: rgba(233, 83, 102, 0.05);
    padding-left: 10px;
    border-radius: 5px;
}

/* summary元素美化 */
.faq-details summary {
    font-weight: bold;
    word-break: break-word;
    color: rgba(0, 0, 0, 0.6);
    font-size: 15px;
    letter-spacing: 1.5px;
    padding-right: 10px;
    position: relative;
    list-style: none;
    transition: color 0.3s ease;
}

.faq-details summary::-webkit-details-marker {
    display: none;
}

.faq-details summary:after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: normal;
    color: #e95366;
    transition: all 0.3s ease;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(233, 83, 102, 0.1);
}

.faq-details details[open] summary:after {
    transform: translateY(-50%) rotate(0deg);
    background-color: rgba(233, 83, 102, 0.2);
}

.faq-details details:hover summary {
    color: #e95366;
}

/* 权限开通类summary样式 */
.permission-details details summary {
    color: rgba(0, 0, 0, 0.6);
}

.permission-details details summary:after {
    color: #e95366;
    background-color: rgba(85, 97, 255, 0.1);
}

.permission-details details[open] summary:after {
    background-color: rgba(85, 97, 255, 0.2);
}

.permission-details details:hover {
    background-color: rgba(85, 97, 255, 0.05);
}

.permission-details details:hover summary {
    color: #e95366;
}

/* 内容段落美化 */
.faq-details p {
    letter-spacing: 1.2px;
    color: #555;
    margin: 12px 0 8px 0;
    word-break: break-word;
    line-height: 1.6;
    font-weight: normal;
    padding-left: 5px;
    position: relative;
}

.faq-details p:before {
    content: "•";
    color: #e95366;
    font-weight: bold;
    position: absolute;
    left: -10px;
    top: 0;
}

/* 权限开通类段落样式 */
.permission-details p {
    color: #555;
}

.permission-details p:before {
    color: #e95366;
}


.permission-highlight {
    color: #eb2a44 !important;
    font-weight: bold!important;
    background-color: rgba(85, 97, 255, 0.08);
}

/* 移动端调整 */
@media screen and (max-width: 768px) {
    .main-right .sort-th {
        padding: 0;
        margin-bottom: 15px;
        border-radius: 8px;
    }
    
    .faq-title, .permission-title {
        font-size: 20px;
        padding: 15px 12px;
        letter-spacing: 2px;
    }
    
    .faq-title i {
        font-size: 20px;
    }
    
    .faq-details {
        padding: 0 12px;
    }
    
    .faq-details details {
        padding: 12px 0;
    }
    
    .faq-details summary {
        font-size: 15px;
        letter-spacing: 1px;
    }
    
    .faq-details p {
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 1px;
    }
    
    .faq-details summary:after {
        font-size: 20px;
        width: 22px;
        height: 22px;
    }
}

@media screen and (max-width: 576px) {
    .main-right .sort-th {
        margin-bottom: 12px;
        border-radius: 6px;
    }
    
    .faq-title, .permission-title {
        font-size: 18px;
        padding: 12px 10px;
        letter-spacing: 1.5px;
    }
    
    .faq-details {
        padding: 0 10px;
    }
    
    .faq-details details {
        padding: 10px 0;
    }
    
    .faq-details summary {
        font-size: 14px;
    }
    
    .faq-details p {
        font-size: 13px;
        line-height: 1.4;
    }
}

@media screen and (max-width: 400px) {
    .faq-title, .permission-title {
        font-size: 16px;
        padding: 10px 8px;
        flex-direction: column;
        gap: 5px;
    }
    
    .faq-details details {
        padding: 8px 0;
    }
    
    .faq-details summary {
        font-size: 13px;
    }
    
    .faq-details p {
        font-size: 12px;
    }
}
/* #endregion 右边表格3 end */

/* #endregion 内容区-右边 end */
/* #endregion 内容区 end */

/* #region AI特效 start */
/* 添加表格悬停动态效果 */
.main-left .sort-share {
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.main-left .sort-share:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(209, 185, 185, 0.8);
    border-color: rgba(233, 83, 102, 0.5);
}

/* 添加悬停时的发光边框效果 */
.main-left .sort-share::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 10px;
    background: linear-gradient(45deg, #ff0000, #e95366, #951fdf, #00ad65);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.main-left .sort-share:hover::before {
    opacity: 0.6;
    animation: glowing-border 2s infinite;
}

/* 发光边框动画 */
@keyframes glowing-border {
    0% { opacity: 0.4; }
    50% { opacity: 0.8; }
    100% { opacity: 0.4; }
}

/* 表格行悬停效果 */
.main-left .sort-share tbody tr {
    transition: background-color 0.2s ease;
}

.main-left .sort-share tbody tr:hover {
    background-color: rgba(233, 83, 102, 0.05);
}

/* 最后一个表格的悬停效果 */
.main-left .sort-last {
    transition: all 0.3s ease;
    cursor: pointer;
}

.main-left .sort-last:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 20px rgba(209, 185, 185, 0.7);
    border-color: rgba(233, 83, 102, 0.5);
}

.main-left .sort-last tbody tr {
    transition: background-color 0.3s ease;
}

.main-left .sort-last tbody tr:hover {
    background-color: rgba(233, 83, 102, 0.1);
}

/* 左边表格1的悬停效果 */
.main-left .sort-one {
    transition: all 0.3s ease;
    cursor: pointer;
}

.main-left .sort-one:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 16px rgba(209, 185, 185, 0.7);
    border-color: rgba(255, 0, 0, 0.4);
}

/* 右边区域的悬停效果 */
.main-right .sort-one,
.main-right .sort-tw,
.main-right .sort-th {
    transition: all 0.3s ease;
    cursor: pointer;
}

.main-right .sort-one:hover,
.main-right .sort-tw:hover,
.main-right .sort-th:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 20px rgba(209, 185, 185, 0.7);
    border-color: rgba(0, 173, 101, 0.3);
}

/* 右侧图片悬停放大效果 */
.main-right .sort-tw img {
    transition: transform 0.4s ease;
}

.main-right .sort-tw:hover img {
    transform: scale(1.05);
}

/* 表格内红色文字悬停效果 */
.main-left .sort-share td span[style*="color: #e95366"],
.main-left .sort-share td span[style*="color: rgba(255, 0, 0"] {
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.main-left .sort-share:hover td span[style*="color: #e95366"],
.main-left .sort-share:hover td span[style*="color: rgba(255, 0, 0"] {
    transform: scale(1.1);
    text-shadow: 0 0 5px rgba(233, 83, 102, 0.5);
}

/* 导航链接悬停效果增强 */
.nav-container a {
    position: relative;
    overflow: hidden;
}

.nav-container a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-container a:hover::after {
    width: 100%;
}

/* 添加页面加载时的表格淡入效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-left .sort-one,
.main-left .sort-share,
.main-left .sort-last,
.main-right .sort-one,
.main-right .sort-tw,
.main-right .sort-th {
    animation: fadeInUp 0.5s ease forwards;
}

/* 为不同表格设置延迟动画 */
.main-left .sort-one { animation-delay: 0.1s; }
.main-left .sort-share:nth-child(2) { animation-delay: 0.2s; }
.main-left .sort-share:nth-child(3) { animation-delay: 0.3s; }
.main-left .sort-share:nth-child(4) { animation-delay: 0.4s; }
.main-left .sort-share:nth-child(5) { animation-delay: 0.5s; }
.main-left .sort-share:nth-child(6) { animation-delay: 0.6s; }
.main-left .sort-share:nth-child(7) { animation-delay: 0.7s; }
.main-left .sort-share:nth-child(8) { animation-delay: 0.8s; }
.main-left .sort-share:nth-child(9) { animation-delay: 0.9s; }
.main-left .sort-share:nth-child(10) { animation-delay: 1.0s; }
.main-left .sort-last { animation-delay: 1.1s; }

.main-right .sort-one { animation-delay: 0.2s; }
.main-right .sort-tw:nth-of-type(2) { animation-delay: 0.4s; }
.main-right .sort-tw:nth-of-type(3) { animation-delay: 0.6s; }
.main-right .sort-th:nth-of-type(4) { animation-delay: 0.8s; }
.main-right .sort-th:nth-of-type(5) { animation-delay: 1.0s; }

/* 常见问题和权限开通类细节展开动画 */
.faq-details details[open] {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 移动端减少动画效果以提升性能 */
@media screen and (max-width: 768px) {
    .main-left .sort-share:hover,
    .main-left .sort-last:hover,
    .main-left .sort-one:hover,
    .main-right .sort-one:hover,
    .main-right .sort-tw:hover,
    .main-right .sort-th:hover {
        transform: none;
    }
    
    .main-left .sort-share:hover::before {
        display: none;
    }
    
    /* 移动端减少动画延迟 */
    .main-left .sort-one,
    .main-left .sort-share,
    .main-left .sort-last,
    .main-right .sort-one,
    .main-right .sort-tw,
    .main-right .sort-th {
        animation-delay: 0.1s !important;
    }
}
/* #endregion AI特效 end */

/* #region 移动端优化 start */
/* 移动端横向滚动提示 */
.mobile-scroll-hint {
    display: none;
    text-align: center;
    color: #e95366;
    font-size: 14px;
    padding: 8px;
    background-color: rgba(233, 83, 102, 0.1);
    border-radius: 4px;
    margin-bottom: 10px;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(233, 83, 102, 0.3); /* 添加边框 */
}

@media screen and (max-width: 992px) {
    .mobile-scroll-hint {
        display: block;
    }
}

@media screen and (max-width: 576px) {
    .mobile-scroll-hint {
        font-size: 12px;
        padding: 6px;
    }
}

/* 添加移动端触摸优化 */
@media (hover: none) and (pointer: coarse) {
    .nav-container a:hover {
        background-color: transparent;
        transform: none;
        box-shadow: none;
    }
    
    .main-left .sort-share,
    .main-left .sort-last,
    .main-left .sort-one,
    .main-right .sort-one,
    .main-right .sort-tw,
    .main-right .sort-th {
        cursor: default;
    }
}
/* #endregion 移动端优化 end */

/* #region 边框修复 start */
/* 修复右边表格边框显示问题 */
.main-right .sort-one,
.main-right .sort-tw,
.main-right .sort-th {
    border: 1px solid #cccbcbc7;
}

/* 修复左边表格1的边框 */
.main-left .sort-one {
    border: 1px solid #cccbcbc7;
}

/* 为所有主要容器添加边框 */
.responsive-container {
    border: none; /* 响应式容器本身不需要边框 */
}

/* 修复表格外边框与内边框的一致性 */
.main-left .sort-share,
.main-left .sort-last {
    border: 1px solid #cccbcbc7;
    border-collapse: separate; /* 改为separate以更好地控制边框 */
    border-spacing: 0;
}

/* 确保表格单元格边框在移动端也显示 */
@media screen and (max-width: 992px) {
    .main-left .sort-share td,
    .main-left .sort-last td {
        border: 1px solid #e0e0e0 !important;
    }
}
/* #endregion 边框修复 end */

/* #region 移动端表格优化 start */
