/* 背景内容、tab */
.industry-bg {
    background-image: url(../img/industry-bg-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 410px;
    position: relative;
}

.bg-wrap h2 {
    font-size: 60px;
    color: #fff;
    text-align: center;
    padding-top: 122px;
    font-weight: 700;
}

.bg-wrap .tab-wrap {
    width: 1400px;
    position: absolute;
    bottom: -49.5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
}

.bg-wrap .tab-nav {
    width: 100%;
    display: flex;
    border: 1px solid rgba(0, 21, 85, 0.99);
    border-radius: 7px;
}

.bg-wrap .tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(0, 21, 85, 0.99);
    width: 25%;
    border: none;
    height: 99px;
    text-align: center;
    background-color: #fff;
    font-size: 28px;
}

.bg-wrap .tab-btn:nth-child(1) {
    border-radius: 7px 0 0 7px;
}

.bg-wrap .tab-btn:last-child {
    border-radius: 0px 7px 7px 0px;
}

.bg-wrap .tab-btn:nth-child(2) {
    border-left: 1px solid rgba(0, 21, 85, 0.99);
    border-right: 1px solid rgba(0, 21, 85, 0.99);
}

.bg-wrap .tab-btn:nth-child(3) {
    border-right: 1px solid rgba(0, 21, 85, 0.99);
}

.bg-wrap .tab-btn .icon {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 43px;
}

.bg-wrap .tab-btn:nth-child(1) .icon {
    width: 48px;
    height: 48px;
}

.bg-wrap .tab-btn:nth-child(2) .icon {
    width: 44.42px;
    height: 44.42px;
}

.bg-wrap .tab-btn:nth-child(3) .icon {
    width: 48.67px;
    height: 45.67px;
}

.bg-wrap .tab-btn:nth-child(4) .icon {
    width: 49.23px;
    height: 49.92px;
}

.bg-wrap .tab-btn.active {
    color: #fff;
}

.bg-wrap .tab-btn.active .icon {
    /* filter: brightness(0) invert(1); */
}

.bg-wrap .tab-btn.active {
    background-color: rgba(0, 21, 85, 0.99);
}

@media (max-width: 768px) {
    .bg-wrap h2 {
        font-size: 17px;
        padding-top: 44px;
    }

    .bg-wrap .tab-wrap {
        width: 100%;
        padding: 0 20px;
        position: absolute;
        bottom: -25px;
    }

    .bg-wrap .tab-btn {
        height: 50px;
        font-size: 12px;
        text-align: left;
        padding: 5px;
    }

    .bg-wrap .tab-btn .icon {
        margin-right: 5px;
    }

    .bg-wrap .tab-btn:nth-child(1) .icon {
        width: 15px;
        height: 15px;
    }

    .bg-wrap .tab-btn:nth-child(2) .icon {
        width: 14px;
        height: 14px;
    }

    .bg-wrap .tab-btn:nth-child(3) .icon {
        width: 14px;
        height: 15px;
    }

    .bg-wrap .tab-btn:nth-child(4) .icon {
        width: 14px;
        height: 14px;
    }
}

/* Tab内容 */
.tab-content {
    margin-top: 123px;
}

.content-item {
    margin-bottom: 74px;
}

.content-item h2 {
    font-size: 40px;
    font-weight: 700;
    color: rgba(0, 21, 85, 0.99);
    position: relative;
    padding-bottom: 34px;
    border-bottom: 0.2px solid #707070;
    margin-bottom: 48.5px;
}

.content-item .des {
    font-size: 24px;
    line-height: 40px;
}

.content-item h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1.5px;
    width: 157px;
    height: 3px;
    background: rgba(0, 21, 85, 0.99);
}

@media (max-width: 768px) {
    .industry-bg {
        height: 150px;
    }

    .tab-content {
        margin-top: 20px;
    }

    .content-item {
        margin-bottom: 20px;
    }

    .content-item:last-child {
        margin-bottom: 0px;
    }

    .content-item h2 {
        font-size: 16px;
        padding-bottom: 12px;
        margin-bottom: 20px;
    }

    .content-item .des {
        font-size: 13px;
        line-height: 26px;
    }

    .content-item h2::after {
        width: 65px;
        height: 2px;
    }

}

/* 应用案例 */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.product .product-list-1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10px;
    row-gap: 44px;
}

.product .product-list-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
    row-gap: 44px;
}

.product .product-item {
    border-radius: 7px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.product .product-list-1 .product-item {
    width: 460px;
}

.product .product-list-2 .product-item {
    width: 695px;
}

@media (max-width: 768px) {
    .product .tab-header {
        margin-top: 0px;
        display: block;
    }

    .product .tab-header h2 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .product .tab-nav {
        width: 100%;
    }

    .product .tab-btn {
        padding: 3px;
        width: 33.33%;
    }

    .product .tab-btn span {
        text-align: left;
        transform: scale(0.9);
    }

    .product .tab-content {
        font-size: 13px;
    }

    .product .product-list {
        display: block;
    }

    .product .product-item {
        margin-bottom: 20px;
    }

    .product .product-list-1 .product-item {
        width: 100%;
    }

    .product .product-list-2 .product-item {
        width: 100%;
    }

    .product .product-item:last-child {
        margin-bottom: 0px;
    }

    .product .product-title {
        font-size: 14px;
    }
}

.product .product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product .product-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product .product-img {
    width: 100%;
    height: 294px;
}

.product .product-info {
    width: 100%;
    height: 133px;
    line-height: 133px;
    padding: 0 30px;
    color: rgba(0, 21, 85, 0.99);
}

.product .product-title {
    width: 100%;
    font-weight: 700;
    font-size: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product .product-info:hover {
    background: linear-gradient(180deg, #001555 0%, #001555 100%);
    color: #fff;
    border: 1px solid #001555;
}

@media (max-width: 768px) {
    .product .tab-btn {
        padding: 6px;
        font-size: 14px;
    }

    .product .tab-btn .icon {
        width: 24px;
        height: 24px;
    }

    .product .product-img {
        height: 140px;
    }

    .product .product-info {
        height: auto;
        line-height: 20px;
        padding: 10px;
    }

    .product .product-title {
        font-size: 14px;
    }

    .product .product-title span {
        font-size: 14px;
    }

    .product .product-item:hover {
        transform: none;
    }
}