.goods_one {
    padding: 20px 0;
}

.goods_one .title {
    margin: 30px 0;
}

.goods_one_box {
    display: flex;
    justify-content: space-between;
}

.goods_one_item {
    flex: 1;
    margin-right: 30px;
}

.goods_one_item_img {
    margin: 0 auto;
    width: 60px;
    height: 60px;
}

.goods_one_item_tit {
    font-size: 16px;
    font-weight: bold;
    margin: 5px 0;
    color: #006b93;
    text-align: center;
}

.goods_one_item_text {
    font-size: 14px;
    color: #999;
}

.goods_tow_box_content {
    width: 60%;
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
}

.goods_three_titel {
    margin: 0 auto;
    width: 80%;
    font-size: 24px;
    font-weight: bold;
    color: #006b93;
    text-align: center;
}

.goods_three_list {
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.goods_three_list .goods_one_item {
    flex: unset;
    width: calc(33.33% - 50px);
    margin-bottom: 20px;
}

.goods_three_more .contact_us {
    width: max-content;
    margin: 20px auto 0;
    padding: 0 30px;
}

.goods_five_box {
    position: relative;
    padding: 0 20px;
}

.goods_five_img {
    /* width: 240px;
    height: 240px;
    padding: 10px; */
    box-sizing: border-box;
}

.goods_five_text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.goods_five_title {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    flex: 1;
    overflow: hidden;
}

.goods_five_link a {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #EA7404;
    letter-spacing: 2px;
    padding: 5px 10px;
}

.goods_five_box .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: -15px;
}

.goods_five_box .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: -15px;
}

@media screen and (max-width:768px) {
    .goods_one_box {
        flex-wrap: wrap;
    }
    .goods_one_item {
        width: calc(50% - 5px);
        flex: unset;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .goods_one_item:nth-child(even) {
        margin-right: 0;
    }
    .goods_tow_box_content {
        width: 100%;
    }
    .goods_three_list .goods_one_item {
        width: calc(50% - 5px);
        
    }
}