
.banner {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.banner > .banner-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden; /* 确保超出部分不显示 */
}

.banner > .banner-carousel > .item {
    position: absolute; /* 绝对定位，让每个item重叠 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner .banner-content {
    position: absolute;
    left: 30%;
    top: 17%;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.banner > .banner-content > .title-block {
    position: relative;
    width: auto;
    height: 36px;
    border: solid 2px #F28705;
    display: flex;

}

.banner > .banner-content > .title-block > .left {
    position: relative;
    padding: 8px 16px;
    width: auto;
    height: 100%;
    background: #F28705;
    color: white;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.banner > .banner-content > .title-block > .right {
    position: relative;
    padding: 8px 16px;
    width: auto;
    height: 100%;
    color: #F28705;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;

}

.banner > .banner-content > .title {
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.banner > .banner-content > .title > span {
    position: relative;
    padding: 0 10px 0 0;
    font-size: 58px;
    font-weight: 700;
    background: linear-gradient(90deg, #4377F0, #3BA3F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.banner > .banner-content > .item-list {
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.banner > .banner-content > .item-list > .table {
    position: relative;
    width: auto;
    height: auto;
    display: grid; /* 使用网格布局 */
    grid-template-columns: repeat(3, auto); /* 创建3列，每列自动适应内容宽度 */
    grid-template-rows: repeat(4, auto); /* 创建4行，每行自动适应内容高度 */
    gap: 15px 40px; /* 设置网格单元格之间的间隙 */
}

.banner > .banner-content > .item-list > .table > .item {
    font-size: 14px;
}

.banner > .banner-content > .item-list > .table > .item > i {
    color: #F28705;
    font-size: 12px;
}

.banner > .footer {
    position: absolute;
    padding: 0 13%;
    width: 100%;
    height: 148px;
    bottom: -94px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.banner > .footer > .panel {
    position: relative;
    padding: 20px;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.banner > .footer > .panel > .block {
    position: relative;
    padding: 20px 0;
    width: 20%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.banner > .footer > .panel > .block > img {
    position: relative;
    width: auto;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner > .footer > .panel > .block > .right {
    position: relative;
    padding: 5px 0;
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
}

.banner > .footer > .panel > .block > .right > .key {
    font-size: 16px;
    color: #3D3D3D;
}

.banner > .footer > .panel > .block > .right > .value {
    font-size: 26px;
    font-weight: 700;
}

.banner > .footer > .panel > .block > .right > .value > span {
    font-size: 16px;
    font-weight: normal;
}