* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100vh;
}

.banner {
    width: 100%;
    height: 100vh;
    background: red;
    display: flex;
    justify-content: center;
    align-items: center;

}



/* 全屏背景图片 */
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://picsum.photos/id/1039/1920/1080');
    background-size: cover;
    background-position: center;
    z-index: 0;

}

/* 白色覆盖层 - 随透明区域变化而调整 */
.white-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 99;
}

/* 矩形容器 - 位置由JS控制 */
.rect-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    overflow: hidden;
}

/* 绿色矩形 */
.green-rect {
    width: 100%;
    height: 100%;
    background-color: #07b53b;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 60px;
    font-weight: bolder;
    /* margin-top: 30px; */
    text-align: center;
    /* padding: 2rem; */
    padding-right: 20px;
    transform: translateX(-100%);
    /* 初始隐藏 */
}

/* 透明区域容器 - 与矩形初始位置和大小一致 */
.transparent-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    /* 初始隐藏 */
}

/* 动画类将由JS动态生成 */




/* !首页banner swiper */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
    /* 防止图片缩放时溢出 */
}

/* 图片缩放动画样式 */
.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 保持图片比例并填充容器 */
    animation: scaleLoop 8s ease-in-out infinite;
}

/* 定义缩放动画 */
@keyframes scaleLoop {
    0% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* 非当前显示的图片暂停动画 */
.swiper-slide:not(.swiper-slide-active) .banner-img {
    animation-play-state: paused;
}


.banner-content {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 142px;
}

.banner-content h1 {
    font-size: 140px;
    font-weight: bolder;
}

.banner-content h2 {
    font-size: 40px;
    text-indent: 8px;
    margin-bottom: 10px;
    margin-top: -15px;
    /* font-weight: bolder; */
}

.bc-download-text {
    display: flex;
    align-items: center;
    margin-top: 30px;
    margin-left: 10px;
}

.bc-download-text img {
    margin-right: 10px;
}

.bc-download-wrap {
    display: flex;
    margin-top: 20px;
    margin-left: 10px;
}

.bc-download-wrap li {
    width: 58px;
    height: 58px;
    border: 1px solid #fff;
    border-radius: 5px;
    margin-right: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-download-wrap li .bc-download-icon {
    width: 22px;
    height: 22px;
}

.bc-download-wrap li a {
    position: absolute;
    display: block;
    width: 58px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bc-download-wrap li a img {
    display: none;
    width: 20px;
    height: 20px;
}

.bc-download-wrap li a:hover {
    background: #07b53b;
}

.bc-download-wrap li a:hover img {
    display: block;
}

/* !页面内容 */
.title1-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title1-wrap span:nth-child(1) {
    font-size: 70px;
    color: #1e1e1e;
    margin-bottom: 20px;
    font-weight: bolder;
    text-indent: 1em;

}

.title1-wrap span:nth-child(2) {
    font-size: 20px;
    color: #616161;
    line-height: 1.6;

}

.service_list {
    position: relative;
    margin-top: 50px;
}

.service_list::after {
    content: '';
    position: absolute;
    height: 100%;
    border-left: 0.5px dashed #d4d4d4;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}


.service_list_item {
    height: 680px;
    /* background: red; */
    padding: 85px 0;
    position: relative;
    display: flex;
}

.service_list_item:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid rgba(30, 30, 30, .3);
    border-radius: 50%;
    box-sizing: border-box;
    top: -5px;
    left: calc(50% - 5px);
    background-color: #fff;
    z-index: 2;
}

.service_list_item::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid rgba(30, 30, 30, .3);
    border-radius: 50%;
    box-sizing: border-box;
    bottom: -5px;
    left: calc(50% - 5px);
    background-color: #fff;
    z-index: 2;
}



.item-left {
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
}

.item-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 30px;
}

.item-icon-border {
    border: 1px solid #c7c7c7;
    border-radius: 20px;
}

.item-icon-radius {
    border: 1px solid #c7c7c7;
    border-radius: 20px;
}

.item-title {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.item-tag {
    font-size: 18px;
    font-weight: 500;
    color: #07b53b;
    margin-bottom: 10px;
    font-weight: bold;
}

.item-desc {
    color: #777;
    line-height: 1.7;
    margin-bottom: 60px;
    font-size: 18px;
}

.item-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a7a7a7;
    color: #1e1e1e;
    width: 160px;
    height: 60px;
    padding: 0 10px;
    border-radius: 3px;

}

.item-btn:hover {
    background: #07b53b;
    color: #fff;
}

.item-btn:hover img {
    filter: invert(100%) brightness(1);
}

.item-btn img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.item-btn span {
    font-size: 14px;

    font-weight: bold;
}

.item-right {
    /* position: relative; */
    width: 50%;
    /* background: red; */

}

.item-thumb {
    position: absolute;
    width: 880px;
    height: auto;
    z-index: 2;
}

.item-btn-group {
    display: flex;
    align-items: center;
}

.item-btn-group .bc-download-wrap {
    margin: 0;
    /* margin-right: px; */
    position: relative;
    z-index: 3;
}

.item-btn-group .bc-download-wrap li {
    border: 1px solid #a7a7a7;
}


.service_list_item:nth-last-child(1):after {
    content: "·";
    display: flex;
    justify-content: center;
    padding-left: 1px;
    padding-top: -6px;
    align-items: center;
    font-size: 30px;
    color: #b2b2b2;
    /* box-sizing: border-box; */
    border: 1px solid #b2b2b2;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 50%;
    line-height: 10px;
}



/* !communication_list */
.communication_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* justify-content: center; */
}

.communication_list li {
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.communication_list li span:nth-of-type(1) {
    font-size: 24px;
    margin: 36px auto 12px;
    font-weight: 700;
}

.communication_list li span:nth-of-type(2) {
    display: block;
    width: 360px;
    height: 10px;
    font-size: 14px;
    color: #616161;
    text-align: center;
}

.communication_list li:nth-child(-n+3) {
    /* 样式只应用于前3个带 .item 类的元素 */
    margin-bottom: 60px;
}

.product-wrap {
    display: flex;
}

.product-menu-wrap {
    width: 300px;
    position: relative;
}

.product-menu {
    width: 300px;

    /* background: blue; */

}

.product-menu-fixed {
    position: fixed;
    left: 365px;
    bottom: 50%;
    transform: translateY(50%);
    transition: all 0.2s;
}

.product-menu .menu-item {
    width: auto;
    /* max-width: 200px; */

    border-radius: 100px;
    border: 1px solid rgba(30, 30, 30, .2);
    font-weight: bolder;
    font-size: 12px;
    color: rgba(30, 30, 30, .7);
    padding: 8px 15px;
    /* display: inline-block; */
    float: left;
    clear: left;
    text-align: center;
    margin-bottom: 16px;
}

.menu-item-active {
    background: #07b53b;
    color: #fff !important;
}


.product-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* 3列，等宽 */
    gap: 50px;
    /* 网格间距 */
    min-height: 600px;
}

.product-item {
    width: 270px;
    height: 340px;
    background: #fff;
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, .1);
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 35px;
    border-radius: 5px;
    overflow: hidden;
}

.product-item .product-item-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 16px;
}

.product-item .product-item-title {
    font-size: 22px;
    font-weight: bolder;
    margin-bottom: 8px;
    color: #1e1e1e;
}

.product-item .product-item-desc {
    color: #616161;
    font-size: 14px;
}

.product-item .item-btn-group {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    left: 0;
    top: 0;
    transition: all 0.5s;
    /* 移到初始状态这里 */
}

.product-item:hover .item-btn-group {
    background: rgba(0, 0, 0, 0.85);
    opacity: 1;
    /* 移除这里的transition */
}

.product-item:hover .item-btn-group a {
    border: 1px solid #fff;
    width: 150px;
    height: 50px;
    padding-left: 16px;
    margin-bottom: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    border-radius: 5px;
}

.product-item:hover .item-btn-group img {
    width: 20px;
    height: 20px;
}

.product-item:hover .item-btn-group a:hover {
    background: #07b53b;
    border: none;

}

.product-item:hover .item-btn-group a img {
    margin-right: 10px;
}

.a-icon {
    display: block;
}

.d-icon {
    display: none;
}

.product-item:hover .item-btn-group a:hover .a-icon {
    display: none;
}

.product-item:hover .item-btn-group a:hover .d-icon {
    display: block;
}