﻿



.hero-bg {
    display: flex;
    align-items: flex-start;
    padding: 50px 0;
    gap: 30px;
}

.hero-overlay{
    width:66%;
}


.hero-content{
    width:32%;
}
.hero-badge{
    display:flex;
    flex-wrap:wrap;
    gap:5px;
}
.tipbj {
    font-size: 12px;
    background-color: #f5f5f5;
}

.hero-meta {
    margin-top: 20px;
    display:flex;
    flex-direction:column;
    gap:5px;
}

.hero-text {
    font-size:14px;
    margin-top:20px;
}

.content-main{
    background-color:#fff;
}

.meta-item {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}
    .meta-item i {
        width: 20px;
        color: #999999;
        text-align: center;
    }
    .meta-item a{
        width:90%;
        text-overflow:ellipsis;
        overflow:hidden;
        white-space:nowrap;
    }

    .btncolor {
        color: #333;
        border: 1px solid #eeeeee;
    }

.btnseze{
    font-size:14px;
}



.product-btm {
    display: flex;
    align-items:flex-start;
    gap: 30px;
    padding-bottom: 40px;
}
.product-bmcont {
    width: 66%;
    border: 1px solid #f5f5f5;
}
.section-header{
    border-bottom:1px solid #f5f5f5;
}
.sidebar-title {
    margin: 0;
    font-weight: 600;
}

.product-bmfab {
    width: 32%;
    border: 1px solid #f5f5f5;
}

table tbody tr th, table tbody tr td{
    padding:6px 10px;
    border:1px solid #cccccc;
}

.news-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
}

.sidebar-title{
    margin:0;
    font-weight:600;
}

.news-title > a {
    font-size: 14px;
    color: #666666;
}

.time-size{
    font-size:12px;
}

/*系统特性*/
.system-box{
    width:100%;
}
.system-bximg{
    width:100%;
}
.system-bximg img{
    width: 100%;
    height:auto;
}
/*最新发布*/
.release-ul {
    padding: 10px 0 0;
}
.release-li {
    width:100%;
    padding: 10px 0;
}
    .release-li a{
        display:flex;
        justify-content:space-between;
    }

.releaseli-left{
    width:65%;
}
.releaseli-letxt {
    font-size: 16px;
    color: #333333;
}
.releaseli-img {
    width: 30%;
    border-radius: 10px;
    border: 1px solid #eeeeee;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}
    .releaseli-img img{
        max-width:100%;
        max-height:100%;
    }


    @media (max-width: 1240px) {
        .wrap {
            width: 1100px;
        }
    }

/* ===== Carousel 轮播图样式 ===== */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    width: 66%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    color: #333;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    line-height: 1;
    padding: 0;
}

.carousel-arrow:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.carousel-prev {
    left: 12px;
}

.carousel-next {
    right: 12px;
}

.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.1);
}

.carousel-dot.active {
    background: #fff;
    transform: scale(1.2);
    border-color: transparent;
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
}
