.nav-tab {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    padding: 5px 0;
}

.nav-tab:hover {
    color:#3652D5;
}

.nav-tab.active {
    color: #3652D5 !important;
    border-bottom: 3px solid #3652D5;
}
.about-box-item{
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 90%;
}

.about-box-li{
  border-radius: 0.5rem;
  padding: 0.5rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  flex: 1 1 0%;
}

.about-box-desc{
    font-weight: 600;
    font-size: 18px;
    margin-right: 10px;
}

.value-item{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap:1rem;
}

.gradient-box-1 {
    background: linear-gradient(to bottom, #E1F6E6, #FFFFFF);
}

.gradient-box-2 {
    background: linear-gradient(to bottom, #F7F1DE, #FFFFFF);
}

.gradient-box-3 {
    background: linear-gradient(to bottom, #EBEDF7, #FFFFFF);
}

.about-container {
    margin-top: -100px;
}

.team-gradient {
    background: linear-gradient(to bottom,
            #E2E6FF, #ECEFFF, #ECE9FF,
            #EDE9FF, #E6E9FF, #FFFFFF);
    border-radius: 0.75rem;
    height: 200px;
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    padding: 0.5rem;
}
.team-gradient-div{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    gap:10px;
}
.team-gradient-img {
    width: 40%;
    height: 100%;
    object-fit: cover;

}
.team-gradient-desc{
    margin: 20px 0px;
    flex: 1;
}


.team-slide {
    display: none;
}

.team-slide.active {
    display: flex;
}

.value-card {
    height: 300px;
}

.value-card .value-card-div {
    height: 95%;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #F1F2FF;
    border: 1px solid #DADCFF;
    border-radius: 16px;
    position: absolute;
    bottom: 0;
}

.value-card:hover .value-card-div {
    height: 100%;
    background: linear-gradient(to bottom, #B5BEFF, #ECEFFF, #FFFFFF);
    border: 1px solid #B2BCFF;
    border-radius: 20px;
    position: relative;

}

.value-text {
    font-weight: bold;
    color: #333;
    z-index: 2;
}

.value-bg-img {
    right: 0;
    bottom: 0;
    z-index: 1;
}

.news-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 15px 0;
}
.news-desc{
    font-size: 16px;
    color: #8f8f8f;
    overflow: hidden;                /* overflow-hidden */
    display: -webkit-box;            /* line-clamp-3 需要的容器类型 */
    -webkit-box-orient: vertical;    /* 文字垂直排列 */
    -webkit-line-clamp: 3;           /* line-clamp-3 限制显示3行 */
    text-overflow: ellipsis;         /* text-ellipsis 文字超出显示省略号 */
}

.news-content {
    flex-grow: 1;
    color: #666;
    line-height: 1.6;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.news-date {
    color: #888;
    font-size: 14px;
}

.news-more {
    color: #1634FF;
    font-weight: bold;
    text-decoration: none;
}
.news-contact-box{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.news-contact-address{
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.news-contact-address-item{
    display: flex;
  align-items: center;
  font-size: 16px;
  color: #282626;
}

#team .layui-carousel .layui-carousel-arrow{
    top: 94%;
    background-color: #fff;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

#team .layui-carousel .layui-carousel-arrow {
    left: unset !important;
    right: 66px;
}
#team .layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type=add]{
    right: 20px;
}

#team .layui-carousel,
#team .layui-carousel>[carousel-item]>*{
    background-color: unset;
}
#team .layui-carousel>[carousel-item]:before{
    display: none;
}

html {
    scroll-padding-top: 150px;
}

@media (min-width: 640px) {
    .value-item{
        grid-template-columns: repeat(2, 1fr);
        gap:2rem;
    }
    .team-gradient{
        height: 300px;
    }
    .team-gradient-div{
        gap: 1.5rem;
    }
    .team-gradient-desc{
        font-size: 18px;
        margin-right: 1rem;
    }
}

/* xl 屏幕 */
@media (min-width: 1280px) {
    .value-item{
        grid-template-columns: repeat(4, 1fr);
        gap:2rem;
    }
    .team-gradient{
        height: 500px;
    }
    .team-gradient-div{
        gap: 1.5rem;
    }
    .team-gradient-img {
        width: 30%;
    }
    .team-gradient-desc{
        font-size: 24px;
        margin-right: 1rem;
    }
}