.banner {
    width: 100%;
    height: 230px;
    position: relative;
    background: url(../img/gtsx/xq1.png) no-repeat center center;
    background-size: cover;
    margin-top: 110px
}

.banner p {
    font-weight: 700;
    font-size: 38px;
    color: #fff;
    padding-top: 48px;
    text-align: center
}

.banner .search-container {
    width: 828px;
    height: 54px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 33px auto 0;
    border: 1px solid #fff
}

.banner .search-container .search-input {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 100%;
    border: none;
    padding: 0 20px;
    font-size: 16px
}

.banner .search-container .search-input:focus {
    outline: 0
}

.banner .search-container .search-btn {
    width: 55px;
    height: 100%;
    border: none;
    background: -webkit-gradient(linear, left top, right top, from(#1b7d85), to(#1c9da7));
    background: -webkit-linear-gradient(left, #1b7d85 0, #1c9da7 100%);
    background: linear-gradient(90deg, #1b7d85 0, #1c9da7 100%);
    cursor: pointer;
    position: relative
}

.banner .search-container .search-btn:hover {
    background: #175761
}

.banner .search-container .search-btn img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px
}

.more {
    font-size: 14px;
    color: #333
}

.section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding-bottom: 50px
}

.swiper-slide {
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.equipment-item {
    overflow: hidden;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 236px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #bdd1d3
}

.equipment-item:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px)
}

.equipment-item:hover .con {
    background-color: #1f6e78;
    color: #fff
}

.equipment-item .info {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 3px 15px;
    min-height: 25px;
    height: auto;
    background: #1f6e78;
    border-radius: 20px 0 0 0;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.equipment-item .img-box {
    width: 100%;
    padding: 30px 0 10px;
    height: 240px;
    overflow: hidden;
    text-align: center
}

.equipment-item .img-box img {
    min-height: 100%;
    max-width: 80%
}

.equipment-item .con {
    width: 100%;
    height: 60px;
    background: #e9f2f3;
    border-top: 1px solid #bdd1d3;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 10px;
    font-size: 14px;
    font-weight: 700;
    color: #333
}

.warp {
    min-height: 700px
}

.warp .tit {
    font-weight: 400;
    font-size: 16px;
    color: #333;
    margin: 40px 0 30px
}

body {
    position: relative;
    overflow-x: hidden
}

body .dh1 {
    position: absolute;
    left: 0;
    bottom: 500px;
    z-index: -1
}

body .dh2 {
    position: absolute;
    right: 0;
    top: 500px;
    z-index: -1
}

.rotation {
    -webkit-animation: rotation 300s linear infinite;
    animation: rotation 300s linear infinite
}

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@-webkit-keyframes reverse-rotation {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(-359deg);
        transform: rotate(-359deg)
    }
}

@keyframes reverse-rotation {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(-359deg);
        transform: rotate(-359deg)
    }
}

.reverse-rotation {
    -webkit-animation: reverse-rotation 300s linear infinite;
    animation: reverse-rotation 300s linear infinite
}

.breathing {
    -webkit-animation: breathing 10s ease-in-out infinite;
    animation: breathing 10s ease-in-out infinite
}

@-webkit-keyframes breathing {
    0% {
        scale: .95
    }

    50% {
        scale: 1
    }

    to {
        scale: .95
    }
}

@keyframes breathing {
    0% {
        scale: .95
    }

    50% {
        scale: 1
    }

    to {
        scale: .95
    }
}

.breathe-rotate {
    -webkit-animation: breathing 5s ease-in-out infinite, rotation 300s linear infinite;
    animation: breathing 5s ease-in-out infinite, rotation 300s linear infinite
}

.reverse-breathe-rotate {
    -webkit-animation: breathing 5s ease-in-out infinite, reverse-rotation 300s linear infinite;
    animation: breathing 5s ease-in-out infinite, reverse-rotation 300s linear infinite
}

@media screen and (max-width: 800px) {
    .banner {
        height: auto;
        margin-top: 0;
        padding-bottom: 1.3333333333rem;
    }

    .banner p {
        font-size: 1.0133333333rem;
        padding-top: 1.28rem;
    }

    .banner .search-container {
        width: 8rem;
        height: 1.44rem;
        margin: 0.88rem auto 0;
    }

    .banner .search-container .search-input {
        font-size: 0.4266666667rem;
        padding: 0 0.5333333333rem;
    }

    .banner .search-container .search-btn {
        width: 1.4666666667rem;
    }

    .banner .search-container .search-btn img {
        width: 0.5333333333rem;
        height: 0.5333333333rem;
    }

    .container {
        width: 92% !important;
        margin: 0 auto;
    }

    .section {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
        padding-bottom: 1.3333333333rem;
    }

    .equipment-item {
        width: 100%;
        border-radius: 0.5333333333rem;
    }

    .equipment-item .info {
        width: 100%;
        min-height: 0.6666666667rem;
        height: auto;
        font-size: 0.32rem;
        border-radius: 0.5333333333rem 0 0 0;
    }

    .equipment-item .img-box {
        padding: 0.8rem 0 0.2666666667rem;
        height: 6rem;
    }

    .equipment-item .img-box img {
        min-height: 90%;
        max-width: 90%;
    }

    .equipment-item .con {
        height: 1.6rem;
        padding: 0.2666666667rem 0;
        font-size: 0.3733333333rem;
    }

    .equipment-item .con .desc {
        font-size: 0.32rem;
    }

    .warp {
        min-height: 18.6666666667rem;
    }

    .warp .tit {
        font-size: 0.4266666667rem;
        margin: 1.0666666667rem 0 0.8rem;
    }

    body .dh1 {
        bottom: 13.3333333333rem;
        width: 4rem;
    }

    body .dh2 {
        top: 13.3333333333rem;
        width: 4rem;
    }
}

/*# sourceMappingURL=gtsblb.min.css.map */
