/* 点击按钮 */
.list_more_botton {
    width: 100%;
    padding: 10px 0 16px 0;
}

.list_more_botton span {
    width: 40%;
    background-color: #fd654e;
    background-image: linear-gradient(180deg, #fd654e 0%, #f28c29 100%);
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 10px 0;
    border-radius: 20px;
}

.list_more_botton span a {
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    font-weight: bold;
}

@media only screen and (min-width: 750px) {
    .list_more_botton {

        padding: 20px 0 32px 0;
    }

    .list_more_botton span {
        padding: 20px 0;
        border-radius: 40px;
    }

    .list_more_botton span a {
        font-size: 28px;
        line-height: 44px;
    }
}

/* 清洁海绵开始 */
/* 第一部分 */
.magic {
    background: url(/style/img/cleaningsponge/magicback.png);
    background-size: cover;
    padding: 30px 0 10px 0;
}

.magic ul {
    list-style: none;
    display: flex;
    /* justify-content: center; */
    flex-direction: column;
}

.magic ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 30px 0 0 0;
}

.magic ul li img {
    width: 200px;
    height: 200px;
}

.magic ul li h4 {
    width: 100%;
    text-align: center;
    /* word-break: break-all; */
    /*文本框不随内容变长 自动换行，断开英文单词 */
    word-break: break-word;
    text-overflow: ellipsis;
    /*可以用来多行文本的情况下，用省略号“…”隐藏超出范围的文本 。 */
    display: -webkit-box;
    /*    必须结合的属性 ，将对象作为弹性伸缩盒子模型显示 。 */
    -webkit-box-orient: vertical;
    /*从上到下垂直排列子元素（设置伸缩盒子的子元素排列方式） */
    -webkit-line-clamp: 2;
    /* 这里是超出几行省略 */
    overflow: hidden;
}

.magic ul li p {
    font-size: 10px;
    color: #333;
    line-height: 15px;
    text-align: left;
    width: 100%;
    /* word-break: break-all; */
    /*文本框不随内容变长 自动换行，断开英文单词 */
    word-break: break-word;

    text-overflow: ellipsis;
    /*可以用来多行文本的情况下，用省略号“…”隐藏超出范围的文本 。 */
    display: -webkit-box;
    /*    必须结合的属性 ，将对象作为弹性伸缩盒子模型显示 。 */
    -webkit-box-orient: vertical;
    /*从上到下垂直排列子元素（设置伸缩盒子的子元素排列方式） */
    -webkit-line-clamp: 2;
    /* 这里是超出几行省略 */
    overflow: hidden;
}

.p1 {
    margin-top: 5px;
}

@media only screen and (min-width: 750px) {
    .magic {
        padding: 40px 0 20px 0;
    }

    .magic ul li {
        margin: 60px 0 0 0;
    }

    .magic ul li img {
        width: 400px;
        height: 400px;
    }

    .magic ul li p {
        font-size: 20px;
        color: #333;
        line-height: 30px;
    }

    .p1 {
        margin-top: 10px;
    }
}

/* 第二部分 */
.composite {
    background: url(/style/img/cleaningsponge/comositeback.jpg);
    background-size: cover;
    padding-top: 20px;
    padding-bottom: 10px;
}

.composite ul {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-top: 15px;
}

.composite ul li {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 48%;
    height: 200px;
}

.composite ul li img {
    width: 175px;
}

.composite ul li h4 {
    width: 100%;
    margin-top: 10px;
    text-align: left;
    word-break: break-word;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 48px;
}

.composite ul li p {
    font-size: 10px;
    color: #333;
    line-height: 15px;
    text-align: left;
    width: 100%;
    word-break: break-all;
    /*文本框不随内容变长 自动换行，断开英文单词 */
    text-overflow: ellipsis;
    /*可以用来多行文本的情况下，用省略号“…”隐藏超出范围的文本 。 */
    display: -webkit-box;
    /*    必须结合的属性 ，将对象作为弹性伸缩盒子模型显示 。 */
    -webkit-box-orient: vertical;
    /*从上到下垂直排列子元素（设置伸缩盒子的子元素排列方式） */
    -webkit-line-clamp: 2;
    /* 这里是超出几行省略 */
    overflow: hidden;
}

@media only screen and (min-width: 750px) {
    .composite ul li p {
        font-size: 14px;
        line-height: 18px;
    }
}

@media only screen and (min-width: 750px) {
    .composite {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .composite ul {
        margin-top: 30px;
    }

    .composite ul li {
        height: 320px;
    }

    .composite ul li img {
        width: 350px;
    }

    .composite ul li h4 {
        margin-top: 20px;
        height: 70px;
    }

    .composite ul li p {
        font-size: 20px;
        color: #333;
        line-height: 30px;
    }
}

/* 第三部分 */
/* 3个li以及div */
.cellulose {
    padding-top: 15px;
    background: url(/style/img/cleaningsponge/cellulose.jpg);
    background-size: cover;
    background-position-y: 90%;
}

.cellulose ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.cellulose ul li {
    width: 98%;
    height: 125px;
    border-radius: 20px;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

/* .cellulose ul li div {
    max-width: 50%;
    width: 50%;
} */

.p2 {
    margin-top: 10px;
}

@media only screen and (min-width: 750px) {
    .cellulose {
        padding-top: 20px;
        background-position-y: 100%;
    }

    .cellulose ul li {
        height: 250px;
        border-radius: 40px;
        margin-top: 20px;
    }

    .p2 {
        margin-top: 20px;
    }
}

.cleeulose_lione {
    background: url(/style/img/cleaningsponge/celluback1.jpg);
    background-size: cover;
    justify-content: flex-end;
}

.cleeulose_lione div {
    margin-right: 3%;
}

.cleeulose_lione h3 {
    text-align: left;
}

.cleeulose_tow {
    background: url(/style/img/cleaningsponge/celluback2.jpg);
    background-size: cover;
    justify-content: flex-start;
}

.cleeulose_tow div {
    margin-left: 10%;
}

.cleeulose_tow h3 {
    text-align: left;
}

.cleeulose_three {
    background: url(/style/img/cleaningsponge/celluback3.jpg);
    background-size: cover;
    justify-content: flex-end;
}

.cleeulose_three div {
    margin-right: 3%;
}

.cleeulose_three h3 {
    text-align: right !important;
}

.cleeulose_three p {
    text-align: right !important;
}


/* li内容字体 */
.cellulose ul li h3 a {
    -webkit-background-clip: text;
    -webkit-text-stroke: 15px #f9111100;
    background-color: #97d1f5;
    color: #fff;
    padding: 5px;
    border-radius: 15px;
}

.cellulose ul li p {
    font-size: 10px;
    color: #666;
    line-height: 15px;
    text-align: left;
    width: 100%;
    word-break: break-all;
    /*文本框不随内容变长 自动换行，断开英文单词 */
    text-overflow: ellipsis;
    /*可以用来多行文本的情况下，用省略号“…”隐藏超出范围的文本 。 */
    display: -webkit-box;
    /*    必须结合的属性 ，将对象作为弹性伸缩盒子模型显示 。 */
    -webkit-box-orient: vertical;
    /*从上到下垂直排列子元素（设置伸缩盒子的子元素排列方式） */
    -webkit-line-clamp: 2;
    /* 这里是超出几行省略 */
    overflow: hidden;
}

@media only screen and (min-width: 750px) {
    .cellulose ul li h3 a {
        -webkit-background-clip: text;
        -webkit-text-stroke: 20px #f9111100;
        background-color: #97d1f5;
        color: #fff;
        padding: 10px;
        border-radius: 30px;
    }

    .cellulose ul li p {
        font-size: 20px;
        line-height: 30px;
    }
}

/* <!-- 第四部分视频 --> */
.emery {
    padding-top: 28px;

}

.emery>div {
    margin-top: 16px;
}

.emery>div video {
    width: 100%;
    height: 175px;
}

@media only screen and (min-width: 750px) {
    .emery {
        padding-top: 56px;
    }

    .emery>div {
        margin-top: 32px;
    }

    .emery>div video {
        height: 350px;
    }
}

.emery>div p {
    font-size: 14px;
    color: #333;
    line-height: 20px;
    text-align: justify;
    word-break: break-all;
    /*文本框不随内容变长 自动换行，断开英文单词 */
    padding: 3%;
    background: url(/style/img/cleaningsponge/emery.jpg);
    margin-top: -5px;
    box-shadow: 0px 0px 9px #666;
}

.emery>div p a {
    padding: 2px 5px;
    /* background: #3458f6; */
    float: right;
    border-radius: 10px;
    margin-top: 5px;
    color: #3458f6;
    font-weight: bold;
}

@media only screen and (min-width: 750px) {
    .emery>div p {
        font-size: 20px;
        line-height: 30px;
    }

    .emery>div p a {
        padding: 4px 10px;
        border-radius: 20px;
        margin-top: 10px;
    }
}

/* 第五部分两个产品 */
.bamboo {
    padding-top: 35px;
}

@media only screen and (min-width: 750px) {
    .bamboo {
        padding-top: 70px;
    }
}

.bamboo ul {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.bamboo ul li {
    display: flex;

    width: 95%;
    height: 200px;

}

@media only screen and (min-width: 750px) {
    .bamboo ul li {

        height: 400px;
    }
}

.bamboo ul li h3 a {
    color: #fff;
}

.bamboo ul li p {
    font-size: 10px;
    color: rgb(255, 255, 255);
    line-height: 15px;
    width: 80%;
    /* word-break: break-all; */
    /*文本框不随内容变长 自动换行，断开英文单词 */
    word-break: break-word;
    text-align: justify;

}

.bamboo_lione h3 {
    text-align: left;
}

.bamboo_lione p {
    text-align: left;
}

.bamboo_litwo h3 {
    text-align: right;
}

.bamboo_litwo p {
    text-align: right;
}

@media only screen and (min-width: 750px) {

    .bamboo ul li p {
        font-size: 20px;
        line-height: 30px;
    }
}

.bamboo_lione {
    background: url(/style/img/cleaningsponge/bambooback2.jpg);
    background-size: cover;
    border-radius: 10px;
    position: relative;
    left: 5%;
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: 20px;
}

.bamboo_lione div {
    margin-left: 3%;
    margin-bottom: 5%;
}

.bamboo_litwo {
    background: url(/style/img/cleaningsponge/bambooback1.jpg);
    background-size: cover;
    border-radius: 10px;
    float: left;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: 10px;
}

.bamboo_litwo div {
    margin-right: 3%;
    margin-top: 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media only screen and (min-width: 750px) {

    .bamboo_lione {
        border-radius: 20px;
        margin-top: 40px;
    }

    .bamboo_litwo {
        border-radius: 20px;
        margin-top: 40px;
    }
}

/* 清洁海绵结束 */

/* 工业海绵开始 */
/* 主题背景 */
.industrialfoam_back {
    background: url(/style/img/industrialfoam/industrialfoam_back.jpg);
    background-size: cover;
}

/* 第一部分 */
.features {
    padding: 30px 0 10px 0;
}

.features ul {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.features ul li {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 30%;
    margin-top: 20px;
}

.features ul li img {
    width: 110px;
    height: 110px;
}

.features ul li h4 {
    font-size: 14px;
    color: #333;
    font-weight: 400;
    text-align: center;
    /* word-break: break-all; */
    /*文本框不随内容变长 自动换行，断开英文单词 */
    word-break: break-word;
    /* 以英文单词为单位换行 */
    text-overflow: ellipsis;
    /*可以用来多行文本的情况下，用省略号“…”隐藏超出范围的文本 。 */
    display: -webkit-box;
    /*    必须结合的属性 ，将对象作为弹性伸缩盒子模型显示 。 */
    -webkit-box-orient: vertical;
    /*从上到下垂直排列子元素（设置伸缩盒子的子元素排列方式） */
    -webkit-line-clamp: 2;
    /* 这里是超出几行省略 */
    overflow: hidden;
}

@media only screen and (min-width: 750px) {
    .features {
        padding: 40px 0 20px 0;
    }

    .features ul li {
        margin-top: 40px;
    }

    .features ul li img {
        width: 220px;
        height: 220px;
    }
}

/* 第二部分 */
.industrial {
    padding: 30px 0 10px 0;
}

.industrial ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 6%;
}

.industrial ul li {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 355px;
    height: 180px;
    padding-top: 4%;
}

.industrial ul li img {
    height: 150px !important;
    border-radius: 10px;
}

.industrial ul li h4 {
    text-align: left;
    word-break: break-all;
    /*文本框不随内容变长 自动换行，断开英文单词 */
    text-overflow: ellipsis;
    /*可以用来多行文本的情况下，用省略号“…”隐藏超出范围的文本 。 */
    display: -webkit-box;
    /*    必须结合的属性 ，将对象作为弹性伸缩盒子模型显示 。 */
    -webkit-box-orient: vertical;
    /*从上到下垂直排列子元素（设置伸缩盒子的子元素排列方式） */
    -webkit-line-clamp: 2;
    /* 这里是超出几行省略 */
    overflow: hidden;
}

@media only screen and (min-width: 750px) {
    .industrial {
        padding: 40px 0 20px 0;
    }

    .industrial ul li {
        width: 710px;
        height: 360px;
    }

    .industrial ul li img {
        height: 300px !important;
        border-radius: 20px;
    }
}

/* 第三部分 */
.inhot {
    padding-top: 30px;
}

.inhot ul {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2%;
}

.inhot ul li {
    display: flex;
    flex-direction: column;
    width: 172px;
    height: 225px;
    border-radius: 10px;
    margin-top: 4%;
}

.inhot ul li div {
    height: 60px;
    background: rgba(51, 51, 51, 0.479);
    display: flex;
    align-items: center;
    margin-top: -66px;
    z-index: 99;
    border-radius: 0 0 25px 25px;
    padding: 0 5%;
}

.inhot ul li div h4 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #fff;
    text-align: left;
}

.inhot ul li div h4 a {
    color: #fff;
}

@media only screen and (min-width: 414px) {
    .inhot {
        padding-top: 33px;
    }




}

@media only screen and (min-width: 750px) {
    .inhot {
        padding-top: 60px;
    }

    .inhot ul li {

        width: 344px;
        height: 450px;
        border-radius: 20px;

    }

    .inhot ul li div {
        height: 120px;
        margin-top: -132px;
        border-radius: 0 0 50px 50px;
    }

    .inhot ul li div h4 {
        font-size: 28px;
        font-weight: 400;
        line-height: 40px;
    }


}

/* 第四部分 */
.applications {
    padding-top: 40px;

}

.applications ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.applications ul {
    padding-top: 30px;
}

.applications ul li {
    width: 98%;
    height: 125px;
    border-radius: 20px;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.applications ul li>div {
    width: 70%;
}

@media only screen and (min-width: 750px) {
    .applications {
        padding-top: 80px;

    }

    .applications ul {
        padding-top: 60px;
    }

    .applications ul li {
        height: 250px;
        border-radius: 40px;
        margin-top: 20px;
    }


}

.applications_lione {
    background: url(/style/img/industrialfoam/applications1.jpg);
    background-size: cover;
    justify-content: flex-end;
}

.applications_lione div {
    margin-right: 3%;
}

.applications_lione h3 {
    text-align: right;
}

.applications_tow {
    background: url(/style/img/industrialfoam/applications2.jpg);
    background-size: cover;
    justify-content: flex-start;
}

.applications_tow div {
    margin-left: 3%;
}

.applications_tow h3 {
    text-align: left;
}

.applications_three {
    background: url(/style/img/industrialfoam/applications3.jpg);
    background-size: cover;
    justify-content: flex-end;
}

.applications_three div {
    margin-right: 3%;
}

.applications_three h3 {
    text-align: right !important;
}

.applications_four {
    background: url(/style/img/industrialfoam/applications4.jpg);
    background-size: cover;
    justify-content: flex-start;
}

.applications_four div {
    margin-left: 3%;
}

.applications_four h3 {
    text-align: left;
}

/* li内容字体 */
.applications ul li h3 a {
    -webkit-background-clip: text;
    -webkit-text-stroke: 15px #f9111100;
    background-color: #97d1f5;
    color: #fff;
    padding: 5px;
    border-radius: 15px;
}

.applications ul li p {
    font-size: 10px;
    color: #333;
    line-height: 15px;
    text-align: left;
    width: 100%;
    /* word-break: break-all; */
    /*文本框不随内容变长 自动换行，断开英文单词 */
    /* text-align: justify; */
}

@media only screen and (min-width: 750px) {
    .applications ul li h3 a {
        -webkit-background-clip: text;
        -webkit-text-stroke: 20px #f9111100;
        background-color: #97d1f5;
        color: #fff;
        padding: 10px;
        border-radius: 30px;
    }

    .applications ul li p {
        font-size: 20px;
        line-height: 30px;
    }
}

/* 新闻列表页 */
.list_news {
    padding-top: 12px;
}

@media only screen and (min-width: 750px) {
    .list_news {
        padding-top: 24px;
    }
}

.list_news ul li {
    width: 100%;
    height: 120px;
    border-bottom: 1px solid #eee;
}

.list_news ul li:nth-last-child(1) {
    background: #999;
}

.list_news ul li:nth-child(6) {
    border-bottom: none;
}

.list_news ul li>div {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

@media only screen and (min-width: 750px) {
    .list_news ul li {
        height: 240px;
    }
}

.list_news ul li>div>span {
    width: 6%;
    display: block;
    height: 65%;
    text-align: center;
    line-height: 34px;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    background-size: 100%;
    background-repeat: no-repeat;
}

@media only screen and (min-width: 750px) {
    .list_news ul li>div>span {
        line-height: 68px;
        font-size: 28px;
    }
}

.list_news_remen1 span {
    background: url(/style/img/list/remen1.png);
    color: #fff !important;
}

.list_news_remen2 span {
    background: url(/style/img/list/remen2.png);
    color: #fff !important;
}

.list_news_remen3 span {
    background: url(/style/img/list/remen3.png);
    color: #fff !important;
}

.list_news_tag {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 70px;
    width: 65%;
}

.list_news_tag h3 {
    text-align: left;
    word-break: break-word;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list_news_tag h3 a {
    color: #333;
}

.list_news_tag h4 {
    text-align: left;
}

.list_news_tag h4 a {
    color: #999;
}

.list_news_img {
    width: 18%;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

@media only screen and (min-width: 750px) {
    .list_news_tag {
        height: 140px;
    }

    .list_news_img {
        height: 160px;
        border-radius: 20px;
    }
}

/* faq列表页 */
.list_faq {
    padding-top: 27px;
}

.faq_item {
    margin-top: 20px;
}

.faq_container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

.faq_item ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.faq_item li {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden
}

.faq_question {
    background-color: rgba(43, 147, 255, 0.03);
    color: #333;
    padding: 18px 20px;
    width: 100%;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease
}

.faq_question.active {
    color: rgb(43, 147, 255);
}

.faq_question:after {
    content: '+';
    font-size: 22px;
    font-weight: bold;
    transition: transform 0.3s ease
}

.faq_question.active:after {
    transform: rotate(45deg)
}

.faq_answer {
    background-color: white;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background: rgba(43, 147, 255, 0.08);
}

.faq_answer h6 {
    margin: 0;
    padding: 20px 0;
    color: #555;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}

.faq_answer p {
    margin: 12px 0
}

.faq_answer b {
    color: #333
}

.faq_answer ul {
    padding-left: 20px;
    margin: 12px 0
}

.faq_answer li {
    margin-bottom: 8px;
    box-shadow: none;
    list-style-type: disc
}

@media (max-width:768px) {
    .faq_question {
        font-size: 16px;
        padding: 15px 15px
    }

    .faq_answer h6 {
        font-size: 14px
    }

    .faq_container {
        padding: 10px
    }
}


/* 博客列表页 */
.list_blog {
    padding-top: 27px;
}

.list_blog ul {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.list_blog ul li {
    height: 80px;
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(43, 147, 255, 0.03);
    box-shadow: 0 2px 4px 0px rgba(16, 79, 185, .2);
}

.list_blog ul li a {
    height: auto;
}

.list_blog ul li img {
    width: 80px;
    height: 60px;
    border-radius: 10px;
}

.list_blog ul li>div {
    width: 75%;
    height: auto;

}

.list_blog ul li h3 {
    text-align: left;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
}

.list_blog ul li h3 a {
    color: #333;
    text-transform: capitalize;
}


.list_blog ul li h6 {
    text-align: right;
    color: #999;
    font-weight: 400;
    margin-top: 4px;
    word-break: break-all;
    line-height: 14px;
}

.list_blog ul li h6 a {
    color: #999;
}

@media only screen and (min-width: 750px) {
    .list_blog {
        padding-top: 54px;
    }

    .list_blog ul li {
        height: 160px;
        margin-top: 30px;
    }

    .list_blog ul li img {
        width: 160px;
        height: 120px;
        border-radius: 20px;
    }


    .list_blog ul li h6 {
        margin-top: 8px;
        line-height: 28px;
    }
}

/* 联系我们 */

.list_contact {
    padding-top: 27px;
}

.list_contact ul {
    width: 75%;
    margin: 26px auto;
    padding: 8%;
    border-radius: 15px;
    box-shadow: 0 0 10px #5eacff8f;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}


@media only screen and (min-width: 750px) {
    .list_contact {
        padding-top: 54px;
    }

    .list_contact ul {
        margin: 52px auto;
        border-radius: 30px;
    }
}

.list_contact ul li {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.list_contact ul li img {
    width: 30px;
    height: 30px;
}

@media only screen and (min-width: 750px) {
    .list_contact ul li {
        margin-top: 20px;
    }

    .list_contact ul li img {
        width: 60px;
        height: 60px;
    }
}

.list_contact ul li h3 {
    width: 90%;
    text-align: left;
    text-transform: none;
    /* text-indent: 1em; */
    background: -webkit-linear-gradient(left, #5eadff, #5eadff) 0 0 no-repeat;
    /*设置线性渐变*/
    -webkit-background-size: 200px;
    /*设置背景大小*/
    -webkit-background-clip: text;
    /*背景被裁剪到文字*/
    -webkit-text-fill-color: rgb(0 0 0 / 20%);
    /*设置文字的填充颜色*/
    -webkit-animation: shine 6s infinite;
    /*设置动画*/
    margin-left: 5%;
}

.list_contact ul li h3 span {
    padding: 0 8px;
    border-radius: .5rem;
    margin-left: .7rem;
    min-width: 5rem;
    height: 1.8rem;
    line-height: 1.8rem;
    display: inline-block;
    text-align: center;
    text-transform: capitalize;
    cursor: pointer;
    color: white !important;
}

@-webkit-keyframes shine {

    /*创建动画*/
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

/*关于我们较长 */
/* <!-- aboutenda --> */
.aboutenda h1 {
    color: #333;
    text-align: left;
    font-weight: 500;
    text-transform: capitalize;
    margin: 17px auto 25px 16px;
}

.aboutenda video {
    width: 100%;
    height: 200px;
}

.aboutenda p {
    font-size: 14px;
    line-height: 20px;
    color: #333;
    padding: 5px 15px;
    max-width: 100%;
    text-align: justify;
}

@media only screen and (min-width: 750px) {
    .aboutenda video {
        height: 400px;
    }

    .aboutenda p {
        font-size: 20px;
        line-height: 40px;
        padding: 10px 35px;
    }
}

/* <!-- service --> */
.service h1 {
    margin-top: 29px;
    margin-bottom: 25px;
}

.service h6 {
    color: #333;
    text-align: left;
    font-weight: 400;
}

.service h3 {
    color: #333;
    text-align: left;
    font-size: 20px;
    font-weight: bolder;
}

.service>div {
    width: 100%;
    background: url(/style/img/list/service.back.png);
    background-size: cover;
}

.service>div>div {
    width: 98%;
    margin: 0 auto;
    padding: 21px 0 30px 0;
}

@media only screen and (min-width: 750px) {
    .service>div>div {
        padding: 42px 0 60px 0;
    }
}

.service>div>div ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
    padding: 2% 0;
    margin: 0 auto;
}

.service>div>div ul h2 {
    font-size: 16px;
    line-height: 20px;
    color: #333;
    text-align: left;
}

.service>div>div ul span {
    width: 20px;
    text-align: center;
    display: inline-block;
}


.service>div>div ul li {
    width: 95%;
    height: 90px;

    margin-top: 17px;
    border-radius: 5px;
    transition: .2s;
    padding: 2% 0;
}

.service>div>div ul li div {
    display: flex;
    justify-content: flex-start;

}

.service>div>div ul li p {

    font-size: 14px;
    line-height: 20px;

    color: #333;
    text-align: left;
    padding-left: 20px;
    margin-top: 5px;
}

.services_hover {
    background: #333;
}

.services_hover h2 {
    color: #fff !important;
}

.services_hover span {
    color: #fff !important;
}

.services_hover p {
    color: #ffffff !important;
}

.service>div>div ul li:nth-child(1) {
    margin-top: 12px !important;
}


@media only screen and (min-width: 750px) {
    .service>div>div ul h2 {
        font-size: 20px;
        line-height: 32px;
    }

    .service>div>div ul li {
        height: 130px;
        padding: 4px;
        margin-top: 34px;
        border-radius: 10px;
    }

    .service>div>div ul li p {
        font-size: 16px;
        line-height: 28px;
        padding-left: 40px;
        margin-top: 10px;
    }

    .service>div>div ul li:nth-child(1) {
        margin-top: 24px !important;
    }


}

/* <!-- certificate --> */
.certificate {
    padding-top: 29px;
}

.certificate ul {

    /* height: 120px; */
    background: #eeeeee69;
    margin: 5% auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 5% 0;
}

.certificate ul li {
    width: 45%;
    /* height: 102px; */
    text-align: center;
    margin: 2% 0;
}

.certificate ul li img {
    width: 100%;
}

/* customer visit */
.customervisi {
    padding-top: 30px;
}

.customervisi img {
    margin-top: 15px;
}

@media only screen and (min-width: 750px) {
    .customervisi {
        padding-top: 60px;
    }

    .customervisi img {
        margin-top: 30px;
    }
}

/* <!-- 恩达SPONGE FACTORY --> */
.about_gongc {
    padding-top: 30px;
    padding-bottom: 10px;
}

.about_gongc ul {
    padding-top: 5px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.about_gongc ul li {
    width: 46%;
    height: auto;
    margin-top: 1.5%;
}

@media only screen and (min-width: 750px) {
    .about_gongc {
        padding-top: 60px;
        padding-bottom: 20px;
    }

    .about_gongc ul {
        padding-top: 10px;
    }
}

/* 产品子列表 */
.list_chanpin {
    padding-top: 27px;
}

.list_chanpin ul {
    padding-top: 15px;
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.list_chanpin ul li {
    height: 150px;
    width: 47%;
    box-shadow: 0 0 10px #99999960;
    border-radius: 10px;
    margin-top: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    background-color: #fff;
}

.list_tupian {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}


.list_miaosu {
    width: 100%;
}


.list_chanpin ul li h4 {
    text-align: left;
    font-weight: 400;
    /* text-indent: 6%; */
    padding-left: 6%;
    font-size: 16px;
    margin-top: 2px;
    word-break: break-all;
    /*文本框不随内容变长 自动换行，断开英文单词 */
    text-overflow: ellipsis;
    /*可以用来多行文本的情况下，用省略号“…”隐藏超出范围的文本 。 */
    display: -webkit-box;
    /*    必须结合的属性 ，将对象作为弹性伸缩盒子模型显示 。 */
    -webkit-box-orient: vertical;
    /*从上到下垂直排列子元素（设置伸缩盒子的子元素排列方式） */
    -webkit-line-clamp: 2;
    /* 这里是超出几行省略 */
    overflow: hidden;
}

.list_chanpin ul li h4 a {
    color: #333;
}

.list_chanpin ul li h6 {
    text-align: left;
    color: #999;
    font-weight: 400;
    word-break: break-all;
    line-height: 14px;
    /* text-indent: 6%; */
    padding-left: 6%;
    word-break: break-all;
    /*文本框不随内容变长 自动换行，断开英文单词 */
    text-overflow: ellipsis;
    /*可以用来多行文本的情况下，用省略号“…”隐藏超出范围的文本 。 */
    display: -webkit-box;
    /*    必须结合的属性 ，将对象作为弹性伸缩盒子模型显示 。 */
    -webkit-box-orient: vertical;
    /*从上到下垂直排列子元素（设置伸缩盒子的子元素排列方式） */
    -webkit-line-clamp: 1;
    /* 这里是超出几行省略 */
    overflow: hidden;
}

.list_chanpin ul li h6 a {
    color: #999;
}

@media only screen and (min-width: 750px) {
    .list_chanpin {
        padding-top: 54px;
    }

    .list_chanpin ul {
        padding-top: 30px;
    }

    .list_chanpin ul li {
        height: 300px;
        box-shadow: 0 0 20px #99999960;
        border-radius: 20px;
        margin-top: 30px;

    }

    .list_tupian {
        height: 200px;
        border-radius: 20px 20px 0 0;
    }

    .list_chanpin ul li h4 {
        font-size: 30px !important;
        line-height: 40px !important;
        margin-top: 4px !important;
    }



    .list_chanpin ul li h6 {
        line-height: 28px;
    }

}

/* 边界背景--列表页独有 */
.list_back .list_page a {
    background: #fff;
}

.list_back {
    background: url(/style/img/list/liebiaoback-3.png);
    background-size: cover;
}

.list_back .list_page {
    padding: 26px 0 52px 0;
}

.list_back_form {
    position: relative;
    margin-top: -40px;
}

@media only screen and (min-width: 414px) {
    .list_back {
        background: url(/style/img/list/liebiaoback-4.png);
        background-size: cover;
    }

    .list_back_form {
        position: relative;
        margin-top: -45px;
    }
}

@media only screen and (min-width: 750px) {
    .list_back {
        background: url(/style/img/list/liebiaoback-7.png);
        background-size: cover;
    }

    .list_back_form {
        position: relative;
        margin-top: -84px;
    }

    .list_back .list_page {
        padding: 52px 0 104px 0;
    }
}