*{
    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 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: #0d6efd;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    margin-left: 20px;
    transition: all 0.3s ease;
    border: 2px solid #0d6efd;
}

.navLoginBtn:hover {
    background: transparent;
    color: #0d6efd;
}

/* 移动端菜单按钮样式 */
.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: #2d8cf0;
    transition: all 0.3s ease-in-out;
}

.menuico:before {
    top: 0;
}
.menuico span{
    top: 8px;
}
.menuico:after {
    top: 16px;
}
/*新banner*/
.newBanner{
    width: 100%;
    padding-top: 50px;
    height: 496px;
    position: relative;
    background-color: #3641c5 !important;
}
.newBannerMiddle{
    width: 1200px;
    margin: 0 auto;
}
.newBannerImg{
    position: absolute;
    right: 0px;
    width: 1600px;
    height: 496px;
    background: url("../images/i-banner.png") no-repeat center center;
    background-size: cover;
}
.newBannerDesc{
    position: absolute;
    top: 100px;
}
.newBannerDesc h3 {
    margin-top: 58px;
    margin-bottom: 10px;
    font-size: 44px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 55px;
}
.newBannerSubtitle{
    margin-bottom: 47px;
    font-size: 20px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 33px;
}
.newBannerBtn{
    display: block;
    width: 150px;
    height: 50px;
    line-height: 50px;
    background: #417FFF;
    border-radius: 4px;
    font-size: 20px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
}
.newBannerBtn:hover{
    color: #FFFFFF;
}
.whyUse{
    width: 1160px;
    margin: 0 auto;
    background: #fff;
    position: relative;
    top: -86px;
    box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 30px 20px;
}
/* Banner区域样式 */


.flat-btn {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-flat {
    background: #0d6efd;
    color: white;
    border: 2px solid #0d6efd;
}

.btn-primary-flat:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-flat {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-flat:hover {
    background: white;
    color: #0d6efd;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/*面包屑导航*/
.breadcrumb{
    margin:20px 15px;
}
.breadcrumb > li {display: inline-block;}
.breadcrumb > li + li::before {content: "/\00a0";padding: 0 5px;color: #ccc;}
.breadcrumb li a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
}
/*首页banner*/
.vedioBanner{
    height: 760px;
    overflow: hidden;
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
}
.vedioBanner video{
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 0;
    width: 2400px;
    margin-left: -1200px;
}
.vedioBannerIntro {
    width: 1000px;
    margin-top: 30px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    z-index: 99;
    -webkit-animation: fadeInDown 0.5s ease-in;
    -moz-animation: fadeInDown 0.5s  ease-in;
    -o-animation: fadeInDown 0.5s  ease-in;
    animation: fadeInDown 0.5s  ease-in;
}
@keyframes fadeInDown {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}
.vedioBannerIntro h2 {
    margin-bottom: 20px;
    padding: 0 20px;
    font-weight: bold;
    font-size: 50px;
    color: #fff;
    font-family: "microsoft yahei light",PingFangSC-Ultralight,sans-serif;
    line-height: 1.5;
}
.vedioBannerIntro a{
    text-decoration: none;
    padding: 12px 20px;
    margin: 5px 8px;
    font-size: 16px;
}
.vedioBannerIntro h3 span {
    margin: 0 3px;
    font-family: "microsoft yahei";
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -webkit-gradient(linear, left top, right top, from(#0d6efd), to(#2aeb91));
    background-image: -webkit-linear-gradient(left, #0d6efd, #2aeb91);
    background-image: -moz-linear-gradient(left, #0d6efd, #2aeb91);
    background-image: linear-gradient(to right, #0d6efd, #2aeb91);
}
.vedioBannerIntro p{
    font-size: 28px;
}


.flat-btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin: 0 8px;
    border: none;
    cursor: pointer;
}

.btn-primary-flat {
    background-color: #1976D2;
    color: white;
}

.btn-primary-flat:hover {
    background-color: #1565C0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.btn-outline-flat {
    background-color: white;
    color: #1976D2;
    border: 2px solid #1976D2;
}

.btn-outline-flat:hover {
    background-color: #E3F2FD;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-header {
    position: relative;
    padding: 18px 20px;
    background-color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    text-align: center;
    z-index: 9;
    color: #fa541c;
    font-weight: 500;
    border-bottom: 1px solid rgba(250, 84, 28, 0.1);
}

.feature-main {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.feature-intro {
    text-align: center;
    margin-bottom: 60px;
}

.feature-intro__title {
    font-size: 36px;
    color: #262626;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.feature-intro__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #fa541c;
    border-radius: 3px;
}

.feature-intro__subtitle {
    font-size: 20px;
    color: #6c757d;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-intro__desc {
    font-size: 16px;
    color: #6c757d;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.feature-item {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(0, 0, 0, 0.1);
}

.feature-item__title {
    font-size: 22px;
    color: #262626;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.feature-item__title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #fa541c;
}

.feature-item__desc {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.8;
}

/*首页详情*/
.v1MainInfo {
    background: #fff;
    padding: 10px;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 15px 0px;
    font-size: 22px;
    color: #fff;
    border-radius: .75rem;
    fill: currentColor;
}
.preview {
    background: url(../images/pc.png) no-repeat top center;
    height: 617px;
    padding-top: 24px;
}
.jumbotron {
    display: block;
    width: 814px;
    margin:0 auto;
}
.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*/
.aboutBanner{
    height: 550px;
    background-color: #3369FF;
    background-image: linear-gradient(to right, #0d6efd, #2aadeb);
    display: flex;
    color: #fff;
    padding-top: 140px;
}
.aboutBanner  .container{
    display: flex;
    justify-content: center;
}
.aboutBanner .imgDesc{
    width: 500px;
}
.aboutBannerBox{
    display: inline-block;
    letter-spacing: 2px;
}

.aboutBannerBox h2{
    font-size: 32px;
    font-weight: 500;
    margin: 30px 0px;
}
.aboutBannerBox h3{
    font-size: 20px;
    margin: 15px 0px;
}
.aboutBannerBox h4{
    font-size: 16px;
    margin: 15px 0px;
}
.aboutBannerBox a{
    text-decoration: none;
    margin: 30px 20px 0px 0px;
    border-radius: 5px;
    padding: 8px 30px 10px;
    color: #ffffff;
    font-size: 18px;
    transition: background .15s linear,color .15s
}

/*内容详情*/
.reason{
    padding-top: 20px;
}
.reason h2{
    padding: 20px 0px;
    font-size: 28px;
    color: #040000;
}
.reason h3{
    font-size: 26px;
    padding: 20px 0px;
}
.reason h4{
    padding-top: 20px;
    padding-bottom: 30px;
    font-size: 22px;
    color: #524f4f;
}
.reason p{
    line-height: 30px;
    font-size: 14px;
}
.reason ul{
    text-align: left;
    font-size: 14px;
    line-height: 35px;
    padding-left: 35px;
}
/*演示页banner*/
.showBanner{
    background:linear-gradient(rgba(107,107,107,0.9), rgba(0, 0, 0, 0.2)),
    url("../images/article-bg.avif") no-repeat center / cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    letter-spacing: 3px;
    padding:50px 10px 40px 10px;
}
.showBanner h1{
    margin-top: 20px;
    font-size: 30px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.showBanner h2{
    font-size: 20px;
    margin-top: 26px;
    font-weight: 400;
    color: #f5f5f5;
}
.showMainHead{
    margin: 20px 0px;
    text-align: center;
    color: rgba(0,0,0,.85);
    font: 14px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;
}
.showMainHead h2{
    font-size: 22px;
}
.showMainHead h3{
    font-size: 16px;
    margin-top: 30px;
}
.showMainItem{
    max-width: 630px;
    margin: 20px auto;
    background: linear-gradient(90deg, #4E7DF7 0%, #86AAFF 100%);
    border-radius: 10px;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    min-height: 150px;
    line-height: 26px;
}
.showMainItem a{
    text-decoration: none;
    color: #fff;
}
.showMainItem .left{
    width: 60px;
}
.showMainItem .middle{
    flex: 1;
}
.showMainItem .left i{
    font-size: 38px;
}
.showMainItem h5{
    font-size: 16px;
    margin-bottom: 10px;
}
.showMainItem .right a{
    background: #fff;
    padding: 2px 10px;
    color: #555;
    border-radius: 13px;
    font-size: 12px;
    display: inline-block;
}
.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 #1e88e5;
    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 #1e88e5;
    background: #f9f9f9;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    color: #555;
    font-style: italic;
}

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

.detailContent a:hover {
    color: #0d47a1;
    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: #3555cc;
    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 #3555cc;
    border-radius: 6px;
    text-align: center;
    margin-right: 10px;
    line-height: 25px;
}
.indexItem .day{
    color: #fff;
    border-radius: 4px 4px 0px 0px;
    background: #3555cc;
    text-align: center;
    font-size: 16px;
}
.indexItem .title{
    flex: 1;
    font-size: 14px;
}
.indexItem .mouth{
    font-size: 14px;
}
.indexItem a{
    color: #007bff;
    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: #2d8cf0;
    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: #2A7EFB;
    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 {
    user-select: none;
    -moz-user-select: none;
    background-image:linear-gradient(89.78deg, #C8BDFF -31.69%, #BAA6FF -22.78%, #6721FF 27.93%, #00CBFF 99.79%);
    border: medium none;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 0;
    padding: 19px 30px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}
/* 主要内容区 */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
    position: relative;
}

.section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #3498db;
    margin: 15px auto;
}

/* 产品概述 */
.overview {
    background-color: white;
}

.overview-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.overview-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.overview-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.overview-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 核心优势 */
.advantages {

}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.advantage-card:hover {
    transform: translateY(-10px);
}

.advantage-icon {
    font-size: 40px;
    color: #3498db;
    margin-bottom: 20px;
}

.advantage-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* 渠道支持 */
.channels {

}

.channels-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background: #fff;
}

.channels-table th, .channels-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.channels-table th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #2c3e50;
}

.channels-table tr:hover {
    background-color: #f5f9ff;
}

/* 特色功能 */
.features {

}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 24px;
    color: #ff6b00;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* 技术架构 */
.tech-stack {

}

.tech-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.tech-column {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
}

.tech-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.tech-list {
    list-style-type: none;
}

.tech-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
}

.tech-list li:last-child {
    border-bottom: none;
}

/* 功能区块样式 */
.features-section {
    max-width: 1320px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    color: #4f46e5;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.section-header p {
    color: #6b7280;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #2aadeb;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    border-radius: 12px;
}

.feature-icon img {
    width: 32px;
    height: 32px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.feature-desc {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    color: #2aadeb;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.feature-link:hover {
    color: #4338ca;
}

.feature-link::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.feature-link:hover::after {
    transform: translateX(4px);
}

/* 功能区块样式 */
.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature-group {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.feature-card {
    flex: 1 1 300px;
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #0d6efd;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:#0d6efd;
    border-radius: 12px;
    color: white;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h2 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.feature-card p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

/*动画效果*/
@keyframes down {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        opacity: 0
    }

    to {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1
    }
}
/* 定义从右到左的渐显动画 */
@keyframes rightToLeft {
    0% {
        /* 起始状态：位于右侧（自身宽度100%的位置），完全透明 */
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        /* 结束状态：回到原位，完全不透明 */
        transform: translateX(0);
        opacity: 1;
    }
}

.blog-item {
    background: #fff;
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    line-height: 30px;
}

.blog-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-title a {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    text-decoration: none;
}

.blog-meta {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-excerpt {
    color: #555;
    margin-bottom: 15px;
    word-break: break-all;
}

.read-more {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* 分页样式 */
.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: #3498db;
    color: white;
    border-color: #3498db;
}

.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: 26px;
        color: #0188fb;
    }
    .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 #3369FF;
    }
    .v1Menu .nav-item:hover{
        border-bottom:2px solid #3369FF;
    }
    .v1Menu .nav-item a {
        padding: 0 18px;
        font-size: 16px;
        color: #666;
        border: 0;
        display: block;
    }
    .v1Menu li.navLogin{
        display: block;
    }
    .navLoginBtn{
        color: #0d6efd;
        border: 2px solid #0d6efd;
    }
    .v1VedioBanner video {
        display: none;
    }

    .v1BannerIntro h2 {
        margin-top: 20px;
        font-size: 30px;
        line-height: 36px;
    }
    .v1BannerIntro h2 span{
        background-color: #2aeb91;
        color: #2aeb91;
    }

    .aboutBannerBox h1{
        font-size: 38px;
    }
    .aboutBannerBox h2{
        font-size: 28px;
    }
    .aboutBanner .imgDesc{
        display: none;
    }
    .newBannerDesc{
        padding: 0px 10px;
        top: 60px;
    }
    .newBannerImg{
        display: none;
    }
    .whyUse{
        width: 100%;
        padding: 20px 0px;
        top: 0px;
    }
    .preview{
        display: none;
    }
    .v1Feature .gifIntro{
        display: none;
    }
    .artcileBody .col-4,.artcileBody .col-6,.hignRun .col{
        width: 100%;
        flex: auto;
    }
    .v2Feature .v2Row{
        width: 100%;
    }
    .tongji{
        display: block;
    }
    .tongji .tongjiItem{
        margin: 10px 0px;
    }
    .shouquan,.shouquanItem{
        display: block;
    }
    .shouquan .shouquanLogo,.shouquanItem h2{
        text-align: center;
    }
    .shopBox .productPic{
        display: none;
    }
    .feature-intro__title {
        font-size: 28px;
    }

    .feature-intro__subtitle {
        font-size: 18px;
    }

    .feature-item {
        min-width: 100%;
        margin-bottom: 30px;
    }

    .feature-item:not(:last-child)::after {
        display: none;
    }

    .feature-list {
        gap: 20px;
    }

    .feature-card {
        flex: 1 1 100%;
    }

    .feature-group {
        padding: 0 10px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-description {
        min-width: 100%;
        margin-bottom: 10px;
    }

    .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;
    }
    .main{
        padding-top: 50px;
    }
    .blog-list {
        margin:0 15px;
    }
    .blog-item {
        padding: 15px;
    }

    .blog-title {
        font-size: 1rem;
        word-break: break-all;
    }
    .pagination .pagenum{
        display: none;
    }
}
