*{
    padding: 0;
    margin: 0;
}
.container{
    max-width: 1320px;
    margin: 0 auto;
}
/* 新版导航栏样式 */
.v1Header {
    width: 90%;
    height: 80px;
    position: fixed;
    display: flex;
    z-index: 100;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    transition: all 0.3s ease;
}

.v1HeaderBg {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 70px;
}
.v1HeaderBg .v1Menu li a{
    color: #333;
}
.v1Logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.v1Logo a {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.v1HeaderBg .v1Logo a {
    color: #005082;
}

.v1Logo img {
    transition: all 0.3s ease;
    width: 120px;
}

.v1HeaderBg .v1Logo img {

}

.v1Menu {
    display: flex;
    height: 100%;
    align-items: center;
}

.v1Menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.v1Menu li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.v1Menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

.v1Menu li a:hover {

}



.navLoginBtn {
    display: inline-block;
    padding: 10px 25px;
    background: #005082;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    margin-left: 20px;
    transition: all 0.3s ease;
    border: 2px solid #005082;
}

.navLoginBtn:hover {
    background: transparent;
    color: #005082;
}

/* 移动端菜单按钮样式 */
.visible {
    display: block!important;
}
.menuico{
    margin-right: 20px;
    cursor: pointer;
    position: relative;
    z-index: 10;
    display: none;
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
    width: 25px;
    height: 20px;
}
.menuico:before,
.menuico:after,.menuico span {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #005082;
    transition: all 0.3s ease-in-out;
}

.menuico:before {
    top: 0;
}
.menuico span{
    top: 8px;
}
.menuico:after {
    top: 16px;
}
/* Hero Section */
.hero {
    background: #005082;
    padding: 160px 20px 120px;
    text-align: center;
}
.hero-inner {
    max-width: 800px;
    margin: 0 auto;
}
.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.hero .btn-primary {
    background: #fff;
    color: #005082;
    border-color: #fff;
}
.hero .btn-primary:hover {
    background: #e6f0f7;
    border-color: #e6f0f7;
    color: #003d63;
}
.btn-primary {
    background: #005082;
    color: #fff;
    border-color: #005082;
}
.btn-primary:hover {
    background: #003d63;
    border-color: #003d63;
    color: #fff;
}
.btn-outline {
    background: transparent;
    color: #005082;
    border-color: #005082;
}
.btn-outline:hover {
    background: #005082;
    color: #fff;
    border-color: #005082;
}
.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.hero .btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}
.hero .btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.cta-section .btn-primary {
    background: #fff;
    color: #005082;
    border-color: #fff;
}
.cta-section .btn-primary:hover {
    background: #e6f0f7;
    border-color: #e6f0f7;
    color: #003d63;
}

/* Stats Bar */
.stats-bar {
    background: #f0f0f1;
    border-bottom: 1px solid #dcdcde;
    padding: 32px 20px;
}
.stats-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.stat-item {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #005082;
}
.stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section */
.section {
    padding: 80px 20px;
}
.section--gray {
    background: #f9f9f9;
}
.section--dark {
    background: #005082;
}
.section-inner {
    max-width: 1120px;
    margin: 0 auto;
}
.section-label {
    font-size: 14px;
    font-weight: 600;
    color: #005082;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #005082;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.section--dark .section-title {
    color: #fff;
}
.section-desc {
    font-size: 18px;
    color: #666;
    max-width: 640px;
    margin-bottom: 48px;
    line-height: 1.7;
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.why-card {
    background: #fff;
    border-radius: 8px;
    padding: 36px 28px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.2s ease;
}
.why-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #005082;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #fff;
}
.why-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #005082;
    margin-bottom: 12px;
}
.why-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Preview */
.preview-wrapper {
    margin-top: 48px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.preview-img {
    display: block;
    width: 100%;
    height: auto;
}

/* Integration Grid */
.int-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.int-card {
    background: #fff;
    border-radius: 8px;
    padding: 28px 20px;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: box-shadow 0.2s ease;
}
.int-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.int-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.int-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.int-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #005082;
    margin-bottom: 8px;
}
.int-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}
.int-link {
    font-size: 14px;
    font-weight: 600;
    color: #005082;
    text-decoration: none;
    transition: color 0.2s;
}
.int-link:hover {
    color: #003d63;
}

/* Security Grid */
.sec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sec-card {
    background: #fff;
    border-radius: 8px;
    padding: 28px 24px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.2s ease;
}
.sec-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.sec-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #005082;
    border-radius: 8px;
    margin-bottom: 16px;
    color: #fff;
}
.sec-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #005082;
    margin-bottom: 8px;
}
.sec-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Notice */
.notice-box {
    background: #fff8e5;
    border-left: 4px solid #f0ad4e;
    padding: 20px 24px;
    font-size: 14px;
    color: #665500;
    line-height: 1.7;
    border-radius: 0 6px 6px 0;
}

/* Blog List */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.blog-item {
    display: flex;
    gap: 24px;
    background: #fff;
    border-radius: 8px;
    padding: 28px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.2s ease;
}
.blog-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.blog-date {
    flex-shrink: 0;
    width: 64px;
    text-align: center;
    padding-top: 4px;
}
.blog-date-day {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #005082;
    line-height: 1;
}
.blog-date-month {
    display: block;
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    margin-top: 4px;
}
.blog-body {
    flex: 1;
}
.blog-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.blog-title a {
    color: #005082;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-title a:hover {
    color: #005082;
}
.blog-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
    word-break: break-all;
}
.blog-link {
    font-size: 14px;
    font-weight: 600;
    color: #005082;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-link:hover {
    color: #003d63;
}

/* CTA Section */
.cta-section {
    background: #005082;
    padding: 80px 20px;
    text-align: center;
}

/* ===== Sub-page: showBanner ===== */
.showBanner {
    background: #005082;
    padding: 120px 20px 60px;
    text-align: center;
    color: #fff;
}
.showBanner svg {
    fill: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.showBanner h1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.showBanner h2 {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
}

/* ===== Sub-page: breadcrumb ===== */
.breadcrumb {
    list-style: none;
    display: flex;
    padding: 16px 0;
    margin: 0;
    font-size: 14px;
    gap: 8px;
}
.breadcrumb li {
    color: #999;
}
.breadcrumb li a {
    color: #005082;
    text-decoration: none;
}
.breadcrumb li a:hover {
    text-decoration: underline;
}
.breadcrumb li + li::before {
    content: "/";
    margin-right: 8px;
    color: #ccc;
}

/* ===== Sub-page: main container ===== */
.main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}
.main .container,
.main .container-lg {
    max-width: 100%;
    padding: 0;
}

/* ===== Sub-page: overview ===== */
.overview-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

/* ===== Sub-page: advantages grid ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.advantage-card {
    background: #fff;
    border-radius: 8px;
    padding: 28px 24px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.2s ease;
}
.advantage-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.advantage-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #005082;
    border-radius: 8px;
    margin-bottom: 16px;
    color: #fff;
    font-size: 20px;
}
.advantage-title {
    font-size: 18px;
    font-weight: 600;
    color: #005082;
    margin-bottom: 8px;
}
.advantage-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===== Sub-page: channels table ===== */
.channels-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}
.channels-table th {
    background: #005082;
    color: #fff;
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}
.channels-table td {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #555;
}
.channels-table tr:last-child td {
    border-bottom: none;
}
.channels-table tr:hover td {
    background: #f8fafc;
}

/* ===== Sub-page: features grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: #fff;
    border-radius: 8px;
    padding: 28px 24px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.2s ease;
}
.feature-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.feature-card .feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #005082;
    border-radius: 8px;
    margin-bottom: 16px;
    color: #fff;
    font-size: 20px;
}
.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #005082;
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===== Sub-page: tech columns ===== */
.tech-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.tech-column {
    background: #fff;
    border-radius: 8px;
    padding: 28px 24px;
    border: 1px solid #e0e0e0;
}
.tech-title {
    font-size: 18px;
    font-weight: 600;
    color: #005082;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #005082;
}
.tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tech-list li {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}
.tech-list li:last-child {
    border-bottom: none;
}
.tech-list li strong {
    color: #333;
}

/* ===== Sub-page: showMain (show/product) ===== */
.showMain {
    margin-top: 24px;
}
.showMainHead {
    text-align: center;
    margin-bottom: 32px;
}
.showMainHead h2 {
    font-size: 28px;
    font-weight: 700;
    color: #005082;
    margin-bottom: 8px;
}
.showMainHead h2 i {
    margin-right: 8px;
}
.showMainHead h3 {
    font-size: 16px;
    font-weight: 400;
    color: #888;
}
.showMainItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 16px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.2s ease;
}
.showMainItem:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.showMainItem h5 {
    font-size: 18px;
    font-weight: 600;
    color: #005082;
    margin-bottom: 6px;
}
.showMainItem p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}
.showMainItem a {
    color: #005082;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.showMainItem a:hover {
    color: #003d63;
}
.showMainItem .right a {
    display: inline-block;
    padding: 6px 16px;
    background: #005082;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
}
.showMainItem .right a:hover {
    background: #003d63;
}

/* ===== Sub-page: blog-meta & read-more (articles) ===== */
.blog-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}
.blog-meta time {
    color: #999;
}
.read-more {
    font-size: 14px;
    font-weight: 600;
    color: #005082;
    text-decoration: none;
    transition: color 0.2s;
}
.read-more:hover {
    color: #003d63;
}
.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}
.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    line-height: 1.6;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
/* Banner区域样式 */

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes rightToLeft {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
/*面包屑导航*/

/*首页详情*/
.v1MainInfo {
    background: #fff;
    padding: 10px;
}
.v1Masthead{
    padding-top: 30px;
    text-align: center;
}
.v1Masthead h3{
    font-size: 30px;
    color: #333;
}
.v1Masthead p{
    font-size: 14px;
    color: #858585;
    line-height: 30px;
    padding: 20px 10px 20px 10px;
}

.v1Feature{
    padding-top: 20px;
    font-size: 18px;
    line-height: 28px;
}
.v2Feature{
    display: flex;
    flex-wrap: wrap;
}
.v2Feature .v2Row{
    background: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 24px rgba(28,76,186,0.08);
    box-shadow: 0 2px 24px rgba(28,76,186,0.08);
    margin: 10px;
    text-align: center;
    width: 31%;
    padding: 0 10px;
}
.v2Feature p{
    color: #333;
    font-size:14px;
    margin: 10px 0px;
    line-height: 22px;
}
.v2Feature h2{
    font-size: 22px;
}


/* 关于页banner */

/* 内容详情 */
/* 演示页banner */
.shopBox{
    display: flex;
    max-width: 1300px;
    width: 100%;
    letter-spacing: normal;
}
.shopBox .productPic{
    width: 550px;
    margin: 50px 50px 0px 0px;
    border-radius: 10px;
}
.shopBox .productName{
    font-size: 35px;
}
.shopBox .productSubtitle{
    opacity: .8;
    margin: 20px 0;
    font-size: 14px;
}
.shopBox .productPrice{
    font-size: 35px;
    font-weight: 700;
}
.shopBox .productPrice span{
    font-size: 28px;
}
.shopBox .productBtn{
    background: #fd8b53;
    border: 1px solid #fd8b53;
    display: inline-block;
    border-radius: 22px;
    color: #fff;
    text-decoration: none;
    margin: 20px 0px;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 20px;
    letter-spacing: 1px;
}
.shopBox .productTip{
    background: rgba(0, 0, 0, 0.1);
    opacity: .6;
    max-width: 400px;
    padding: 10px;
    font-size: 13px;
    line-height: 23px;
}


/* 文章主体容器 */
.artcileBody {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    margin: 2rem 0;
    line-height: 1.8;
    color: #333;
}

/* 文章内容区域 */
.detailContent {
    font-size: 16px;
    color: #444;
}

/* 标题样式 */
.detailContent h1 {
    font-size: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.8rem;
    margin: 1.5rem 0;
    color: #222;
}

.detailContent h2 {
    font-size: 1.7rem;
    border-left: 4px solid #005082;
    padding-left: 1rem;
    margin: 1.8rem 0 1rem;
    color: #333;
}

.detailContent h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: #444;
}

/* 段落样式 */
.detailContent p {
    text-align: justify;
    color: #333;
    margin: 20px 0px;
}

/* 列表样式 */
.detailContent ul,
.detailContent ol {
    margin: 1rem 0;
}

.detailContent li {
    margin: 0.5rem 0;
}

/* 表格样式 */
.detailContent table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.detailContent th,
.detailContent td {
    padding: 0.75rem;
    border: 1px solid #ddd;
    text-align: left;
}

.detailContent th {
    background-color: #f5f5f5;
    font-weight: 600;
}

/* 引用样式 */
.detailContent blockquote {
    border-left: 4px solid #005082;
    background: #f9f9f9;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    color: #555;
    font-style: italic;
}

/* 链接样式 */
.detailContent a {
    color: #005082;
    text-decoration: none;
    transition: color 0.2s;
}

.detailContent a:hover {
    color: #003d63;
    text-decoration: underline;
}

/* 图片样式 */
.detailContent img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.articleCate{
    color: #333;
    font-size: 16px;
    margin: 10px 0px;
}
.articleItem{
    display: block;
    border: 1px solid #eee;
    border-radius: 4px;
    margin: 4px 0;
    color: #005082;
    padding: 5px 12px;
    font-size: 13px;
    text-decoration: none;
}
.articleItem:hover{
    background: #eee;
}
.articleItem i{
    font-size: 32px;
    color: #a1a1a1;
}

.indexItem{
    display: flex;
    margin: 12px 0px;
}
.indexItem .date{
    width: 50px;
    height: 55px;
    border: 1px solid #005082;
    border-radius: 6px;
    text-align: center;
    margin-right: 10px;
    line-height: 25px;
}
.indexItem .day{
    color: #fff;
    border-radius: 4px 4px 0px 0px;
    background: #005082;
    text-align: center;
    font-size: 16px;
}
.indexItem .title{
    flex: 1;
    font-size: 14px;
}
.indexItem .mouth{
    font-size: 14px;
}
.indexItem a{
    color: #005082;
    text-decoration: none;
}
.indexItem p{
    color: #c4cfdb;
}

.detailTitle{
    text-align: center;
    font-size: 30px;
    margin: 30px 0px;
}
.detailContent{
    line-height: 33px;
    font-size: 16px;
}
.detailContent h2{
    font-size: 22px;
    margin: 25px 0px 15px 0px;
}
.detailContent h3{
    font-size: 18px;
}
.detailContent ul{
    margin: 10px 22px;
}
.detailContent pre{
    font-size: 14px;
}
.detailContent img{
    max-width: 100%;
}

.detailContent .cnblogs_code{
    line-height: 23px;
    background-color: #f5f5f5;
    font-family: Courier New !important;
    font-size: 12px !important;
    border: 1px solid #ccc;
    padding: 5px;
    overflow: auto;
    margin: 5px 0;
    color: #000;
}

.detailContent a{
    text-decoration: none;
}
.tongji{
    display: flex;
}
.tongji .tongjiItem{
    background: #fff;
    margin: 10px;
    border-radius: 5px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:40px 0px;
}
.tongji .tongjiName{
    margin: 20px 0px 0px 0px;
    color: #52627B;
    font-size: 14px;
}
.tongji .tongjiLogo{
    width: 50px;
    height: 50px;
}
.tongji .tongjiQrcode{
    width: 140px;
    height: 140px;
}
.tongji .tongjiLink{
    background: #005082;
    padding: 7px 20px;
    display: flex;
    color: #fff;
    text-decoration: none;
    align-items: center;
    font-size: 12px;
    border-radius: 5px;
    margin-top: 20px;

}
.tongji .tongjiLink img{
    width: 20px;
    margin-right: 10px;
}
.tongji p{
    font-size: 12px;
    color: #878787;
    margin-top: 10px;
}
.shouquan{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.shouquanItem{
    flex: 1;
    display: flex;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
}
.shouquanItem img{
    width: 100px;
    height: 100px;
    margin: 10px 35px;
    object-fit: contain;
}
.shouquanItem h2{
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    color: #333333;
}
.shouquanItem p{
    padding: 10px 10px 0px 0;
    font-size: 14px;
    line-height: 25px;
    color: #666666;
}
.shouquanItem a{
    font-size: 14px;
    line-height: 20px;
    color: #005082;
    text-decoration: none;
}
/*底部*/
footer.footer {
    width: 100%;
    color: #aaa;
    background: #1f2730;
    text-align: left;
    font-size: 12px;
}
footer.footer ul {
    margin:10px 0px;
    list-style: none;
}
footer.footer ul li{
    list-style: none;
}
footer.footer ul li.f-tit {
    margin-bottom: 10px;
    font-size: 14px;
    color: #fff;
}
footer.footer a {
    color: #aaa;
    text-decoration: none;

}
footer.footer .address {
    line-height: 21px;
    text-align: center;
    background: #161e26;
    margin: 0;
    padding: 10px;
}


/* gradient-btn removed */
/* 文章主体容器 */

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 15px;
}

.page-numbers {
    display: flex;
    list-style: none;
    align-items: center;
}

.page-numbers li {
    margin: 0 5px;
}

.page-numbers a {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.page-numbers a:hover {
    background: #f1f1f1;
}

.page-numbers .current {
    background: #005082;
    color: white;
    border-color: #005082;
}

.page-numbers .dots {
    padding: 8px 15px;
    color: #777;
}

.footer {
    clear: both;
    font-family: Arial, sans-serif;
    color: #aaa;
    background: #1f2730;
}

.footer-content {
    display: flex;
    padding: 20px 10px;
    align-items: flex-start;
}

.footer-description {
    line-height: 23px;
    margin-right: 20px;
    flex: 1;
}

.footer-description .additional-info {
    margin-top: 10px;
}

.footer-image {
    text-align: center;
    line-height: 28px;
    margin-right: 20px;
}

.footer-image:last-child {
    margin-right: 0;
}

.footer-image img {
    display: block;
    margin: 0 auto;
}

.footer-address {
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    color: #666;
    background: #161e26;
}

.footer-address a {
    color: #666;
    text-decoration: none;
}

.footer-address a:hover {
    text-decoration: underline;
}



@media (max-width: 860px) {
    .v1Header{
        height: 50px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    .v1Header a img{
        width: 90px;
    }
    .v1Logo{
        font-size: 22px;
    }
    .v1Logo a{
        font-size: 22px;
        color: #005082;
    }
    .v1Logo i,.v1Logo span{
        display: none;
    }
    .v1Wrap{
        width: 100%;
        min-width: 100%;
    }
    .menuico {
        display: block;
    }
    .v1Menu {
        width: 50%;
        top: 50px;
        margin: 0;
        display: none;
        background: #fff;
        animation: rightToLeft 0.2s ease-in-out both;
        height: 100vh;
        position: fixed;
    }
    .v1Menu ul{
        flex-direction: column;
    }
    .v1Menu.visible {
        right: 0;
    }
    .v1Menu .nav-item{
        width: 100%;
        padding: 15px 0px;
        color: #ddd;
        border-bottom: 2px solid #d7d7d7;
        height: auto;
    }
    .v1Menu .nav-item.on{
        border-bottom: 2px solid #005082;
    }
    .v1Menu .nav-item:hover{
        border-bottom:2px solid #005082;
    }
    .v1Menu .nav-item a {
        padding: 0 18px;
        font-size: 16px;
        color: #666;
        border: 0;
        display: block;
    }
    .v1Menu li.navLogin{
        display: block;
    }
    .navLoginBtn{
        color: #005082;
        border: 2px solid #005082;
    }

    /* New responsive styles */
    .hero {
        padding: 120px 20px 80px;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .stats-inner {
        flex-direction: column;
        align-items: center;
    }
    .stat-item {
        width: 50%;
    }
    .section {
        padding: 48px 16px;
    }
    .section-title {
        font-size: 28px;
    }
    .section-desc {
        font-size: 16px;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .int-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sec-grid {
        grid-template-columns: 1fr;
    }
    .blog-item {
        flex-direction: column;
        gap: 12px;
    }
    .blog-date {
        width: auto;
        display: flex;
        align-items: baseline;
        gap: 8px;
    }
    .blog-date-day {
        font-size: 18px;
    }
    .cta-section h2 {
        font-size: 28px;
    }

    /* Sub-page responsive */
    .showBanner {
        padding: 100px 20px 40px;
    }
    .showBanner h1 {
        font-size: 26px;
    }
    .showBanner h2 {
        font-size: 15px;
    }
    .advantages-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    .tech-columns {
        grid-template-columns: 1fr;
    }
    .channels-table th,
    .channels-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
    .showMainItem {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* Legacy responsive overrides */
    .artcileBody .col-4,.artcileBody .col-6,.hignRun .col{
        width: 100%;
        flex: auto;
    }
    .tongji{
        display: block;
    }
    .tongji .tongjiItem{
        margin: 10px 0px;
    }
    .shouquan,.shouquanItem{
        display: block;
    }
    .shouquan .shouquanLogo,.shouquanItem h2{
        text-align: center;
    }
    .shopBox .productPic{
        display: none;
    }
    .artcileBody {
        padding: 1.5rem;
        margin: 0 10px;
    }
    .detailContent {
        font-size: 15px;
    }
    .detailContent h1 {
        font-size: 1.6rem;
    }
    .detailContent h2 {
        font-size: 1.4rem;
    }
    .detailContent h3 {
        font-size: 1.2rem;
    }
    .showBanner{
        display: none;
    }
    .pagination .pagenum{
        display: none;
    }
}

@media (max-width: 520px) {
    .int-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 28px;
    }
}
