

/* !banner部分 */
.banner-wrap {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
}

/* 超小屏幕（手机竖屏，默认） */
.banner-wrap {
    height: 100vh;
    /* 手机默认高度 */
}

/* 小屏幕（手机横屏，≥576px） */
@media (min-width: 576px) {
    .banner-wrap {
        height: 100vh;
    }
}

/* 中屏幕（平板，≥768px） */
@media (min-width: 768px) {
    .banner-wrap {
        height: 95vh;
    }
}

/* 大屏幕（笔记本，≥992px） */
@media (min-width: 992px) {
    .banner-wrap {
        height: 95vh;
    }
}

/* 超大屏幕（桌面，≥1200px） */
@media (min-width: 1200px) {
    .banner-wrap {
        height: 95vh;
    }
}

/* 特大屏幕（大屏显示器，≥1400px） */
@media (min-width: 1400px) {
    .banner-wrap {
        height: 95vh;
    }
}



.banner-content {}

.bannder-bg-lg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.bannder-bg {
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(315deg, #eb4eb1, #9257f9 50%, #3150ed);
}

.banner-text-inner {
    color: #fff;
}

.banner-text-inner h1 {
    font-weight: bold;
    text-align: center;
    /* padding: 0 10%; */
}

@media (max-width: 576px) {
    .banner-text-inner h1 {
        font-weight: bold;
        width: 100%;
        text-align: center;
        font-size: 20px;
        /* padding: 0; */
        margin: 60px 0;
    }
}

.banner-text-inner .desc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.banner-text-inner .desc li {
    /* width: 45%; */
    border: 4px solid #fff;
    border-radius: 1000px;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    margin-right: 5px;
}

.banner-text-inner .desc li p strong {
    font-size: 24px;
    font-weight: bolder;
}

.banner-text-inner .desc li p {
    font-size: 18px;
}


.banner-text-inner .desc li span {
    font-weight: bold;
}

.banner-btn-group {
    padding: 0 10px;
}

.banner-btn-group .btn {
    margin: 0 5px;
    background: #fff;
    color: #5b39c9;
    text-decoration: none;
    font-weight: bolder;
    padding: 15px 0;
    font-size: 20px;
}

.banner-right-image {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-animation: bounce 1s ease-in-out 0s infinite alternate;

    animation: bounce 1s ease-in-out 0s infinite alternate
}

.banner-right-image img {
    width: 80%;
    height: auto;
}

@keyframes bounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
}


/* !下载列表 */
.download-list {
    position: relative;
    padding: 100px 0;
}

.download-item {
    /* 基础样式 */
    border: 3px solid #f3f4f6;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 0.4s ease;
    /* 统一过渡动画 */

    /* 初始padding值 */
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

.download-item img:nth-of-type(1) {
    width: 100%;
    height: auto;
}

/* 鼠标移入时通过调整padding实现边框变高效果 */
.download-item:hover {
    border-color: #5b39c9;
    /* 边框变色 */
    /* padding-top: 55px; */
    /* 上padding增加 */
    /* padding-bottom: 55px; */
    /* 下padding增加 */
    box-shadow: 0 4px 12px rgba(91, 57, 201, 0.1);
    /* 增加阴影增强立体感 */
}


.download-item span {
    color: #36324a;
    font-size: 24px;
}

.download-item a.dw-btn {
    padding: 15px 60px;
    border-radius: 100px;
    border: 2px solid #5b39c9;
    color: #5b39c9;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
    margin-top: 20px;
    /* 确保按钮位置稳定 */
}

/* 按钮背景填充效果 */
.download-item a.dw-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: #5b39c9;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

/* 鼠标移入download-item时触发按钮动画 */
.download-item:hover a.dw-btn {
    color: white;
    /* 文字变白 */
}

.download-item:hover a.dw-btn::after {
    width: 400px;
    height: 400px;
}




.product-intro span:nth-of-type(1) {
    display: inline-block;
    background: linear-gradient(315deg, #eb4eb1, #9257f9 50%, #3150ed);
    color: #fff;
    border-radius: 50px;
    padding: 10px 30px;
}

.product-intro h2 {
    color: #36324a;
    font-weight: 600;
    line-height: 54px;
    margin: 50px 0;
}

.product-intro p {
    font-size: 24px;
    color: #6f6c7f;
    line-height: 38px;
}

.prodcut-img {
    width: 100%;
}


/* !新闻 */
.single-blog-inner {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.post-image {
    position: relative;
}

.post-image img {
    width: 100%;
    max-height: 300px;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

.post-date p {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #333;
    font-weight: bold;
}

.post-date p span {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 2px;
}

.post-content {
    padding: 20px;
}

.post-title h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.post-title h3 a {
    color: #222;
    text-decoration: none;
}

.post-title h3 a:hover {
    color: #5b39c9;
}

.post-details p {
    font-size: 14px;
    color: #666;
    line-height: 24px;
    margin-bottom: 20px;
}

.blog-btn {
    font-size: 14px;
    color: #5b39c9;
    text-decoration: none;
    font-weight: 500;
}

.blog-btn:hover {
    text-decoration: underline;
}

