/* 1.首页 */
/* 1-1.产地 */
.mod1 {
  padding: 113px 0 117px;
}

.mod1 .pic {
  width: 100%;
  margin-top: 40px;
}

.mod1 ul {
  margin-top: 45px;
  display: flex;
  justify-content: space-between;
}

.mod1 li {
  font-size: 20px;
  text-align: center;
}

.mod1 li a {
  display: block;
}

.mod1 li p {
  margin-top: 10px;
}

.mod1 li img {
  width: 63px;
  height: 63px;
  border-radius: 50%;
}

@media (max-width: 1400px) {
  .mod1 {
    padding: 90px 0;
  }
  .mod1 .pic {
    margin-top: 30px;
  }
  .mod1 ul {
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .mod1 li {
    font-size: 16px;
  }
  .mod1 li p {
    margin-top: 7px;
  }
}

@media (max-width: 1000px) {
  .mod1 {
    padding: 37px 0 37px;
  }
  .mod1 .pic {
    margin-top: 20px;
  }
  .mod1 ul {
    margin-top: 20px;
  }
  .mod1 li {
    font-size: 14px;
    color: #000000;
  }
  .mod1 li img {
    width: 40px;
    height: 40px;
  }
  .mod1 li p {
    margin-top: 5px;
  }
}

@media (max-width: 768px) {
  .mod1 ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .mod1 li {
    width: 20%;
    font-size: 12px;
  }
  .mod1 li:nth-child(n + 6) {
    margin-top: 13px;
  }
  .mod1 li img {
    width: 32px;
    height: 32px;
  }
  .mod1 li p {
    margin-top: 3px;
  }
}

@media (max-width: 480px) {
  .mod1 li {
    width: 25%;
  }
  .mod1 li:nth-child(n + 6) {
    margin-top: 0;
  }
  .mod1 li:nth-child(n + 5) {
    margin-top: 13px;
  }
}

/* 1-2.原料 */
.mod2 {
  background: url(./../../../images/mod2-bg.png) no-repeat center/cover;
}

.mod2 .cons {
  width: 100%;
  height: auto;
  padding: 55px 0 75px;
  background-color: rgba(0, 0, 0, 0.5);
}

.mod2 .pic {
  width: 86%;
  margin: 63px auto 0;
}

@media (max-width: 480px) {
  .mod2 .cons {
    padding: 32px 0 43px;
  }
    .mod2 .cons img{
        width:120%;
    }
    .mod2 .pic {
        width: 100%;
        margin: 23px auto 0;
    }
    .mod2 .pic::-webkit-scrollbar{
        display:none;
    }
    .mod2 .cons .inside{
        width:100%;
    }
}

/* 1-3.合作伙伴 */
.mod3 {
  padding: 90px 0 140px;
  background-color: #fafdff;
}

.mod3 .inside {
  width: 1766px;
}

@media (max-width: 1766px) {
  .mod3 .inside {
    width: 1400px;
  }
}

@media (max-width: 1400px) {
  .mod3 .inside {
    width: 93%;
  }
    .mod3{
        padding:70px 0 100px 0;
    }
}
@media (max-width: 1000px) {
    .mod3 {
        padding: 30px 0;
    }
  
}



    /* 2.资讯 */
    /* 2-1.资讯列表 */
    .news ul {
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .news li a {
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        padding: 40px 0;
        border-bottom: 1px solid #e2e2e2;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items:center;
        cursor: pointer;
        transition: all 0.3s;
    }

        .news li a:first-child {
            padding-top: 0;
        }

        .news li a:last-child {
            border-bottom: none;
        }

        .news li a .left {
            font-family: "Arial";
            width: 110px;
            height: auto;
            color: #2e2e2e;
            overflow: hidden;
            text-align: center;
            font-weight: bold;
            margin-top: 13px;
            transition: all 0.3s;
        }

            .news li a .left p {
                font-size: 90px;
                line-height: 90px;
                font-weight: bold;
                border-bottom: 1px solid #9e9e9e;
            }

            .news li a .left span {
                display: block;
                font-size: 27px;
                line-height: 27px;
                font-weight: bold;
                margin-top: 13px;
            }

        .news li a .img {
            width: 370px;
            height: auto;
            overflow: hidden;
            border-radius: 30px 10px 30px 10px;
        }

        .news li a .right {
            font-family: "PingFang-SC-Regular";
            width: 820px;
            height: 100%;
            box-sizing: border-box;
        }

            .news li a .right h3 {
                margin-top: 13px;
                font-size: 28px;
                line-height: 37px;
                /* 超出隐藏 */
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                color: #393939;
                font-weight: normal;
                transition: all 0.3s;
            }

            .news li a .right .desc {
                font-size: 20px;
                margin-top: 28px;
                line-height: 43px;
                color: #707070;
                /* 文字最多显示几行 */
                overflow: hidden;
                text-overflow: ellipsis; /* 超出部分省略号 */
                word-break: break-all; /* break-all(允许在单词内换行。) */
                display: -webkit-box; /* 对象作为伸缩盒子模型显示 */
                -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式 */
                -webkit-line-clamp: 3; /* 显示的行数 */
                max-height: 80rpx; /* 设置最大高度，根据行高，要几行乘以几倍 */
            }

            .news li a .right p {
                display: block;
                font-size: 14px;
                color: #393939;
                margin-top: 62px;
                font-weight: bold;
            }

                .news li a .right p span {
                    margin-right: 17px;
                }

        .news .active,
        .news li a:hover {
            border-bottom: 1px solid #959ba9;
            transition: all 0.3s;
        }

            .news .active:last-child,
            .news li a:last-child:hover {
                border-bottom: 0 solid #959ba9;
            }

            .news .active .right h3,
            .news li a:hover .right h3,
            .news li a:hover .left,
            .news .active .left,
            .news li a:hover .right p,
            .news .active .right p {
                color: #26469c;
                transition: all 0.3s;
            }

                .news li a:hover .left p,
                .news .active .left p {
                    border-bottom: 1px solid #7988cf;
                }

    @media (max-width: 1400px) {
        .news li a {
            padding: 30px 0;
        }

            .news li a .left {
                width: 70px;
            }

                .news li a .left p {
                    font-size: 50px;
                    line-height: 50px;
                }

                .news li a .left span {
                    font-size: 18px;
                }

            .news li a .img {
                width: 280px;
            }

            .news li a .right {
                width: calc(100% - 420px);
            }

                .news li a .right h3 {
                    font-size: 24px;
                    margin-top: 0;
                }

                .news li a .right .desc {
                    font-size: 16px;
                    line-height: 32px;
                    margin-top: 17px;
                }

                .news li a .right p {
                    margin-top: 43px;
                }
    }

    @media (max-width: 1000px) {
        .news li a {
            padding: 20px 0;
            flex-wrap: wrap;
        }

            .news li a .left {
                width: 100%;
                margin-bottom: 17px;
                margin-top: 0;
                display:none;
            }

                .news li a .left p {
                    display: inline-block;
                    font-size: 23px;
                    line-height: 23px;
                    padding: 0 13px 3px;
                 
                }

                .news li a .left span {
                    font-size: 14px;
                    line-height: 14px;
                    padding-top: 5px;
                    margin-top: 0;
                }

            .news li a .img {
                width: 120px;
                border-radius:6px;
            }

            .news li a .right {
                width: calc(100% - 135px);
                padding-left: 0;
                margin-top: 0;
            }

                .news li a .right h3 {
                    font-size: 16px;
                    line-height: 16px;
                    margin-top: 0;
                }

                .news li a .right .desc {
                    margin-top: 7px;
                    font-size: 12px;
                    line-height: 21px;
                    -webkit-line-clamp: 2; /* 显示的行数 */
                }

                .news li a .right p {
                    margin-top: 7px;
                    font-size: 12px;
                    display:none;
                }
    }

    /* 2-2.资讯详情 */
    .news-det {
        font-family: "PingFang-SC-Regular";
    }

        .news-det h1 {
            text-align: center;
            font-size: 24px;
            line-height: 42px;
            font-weight: bold;
            color: #000000;
        }

        .news-det .time {
            text-align: center;
            margin-top: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #ececec;
        }

            .news-det .time p {
                display: inline-block;
                color: #c4c4c4;
                margin: 0 10%;
            }

                .news-det .time p img {
                    width: 18px;
                    height: 18px;
                    margin-right: 3px;
                    vertical-align: middle;
                    margin-bottom: 1px;
                }


        .news-det .cons {
            margin-top: 38px;
            font-size: 18px;
            color: #000000;
            line-height: 34px;
            /* 文字对齐 */
            text-align: justify;
        }

    /*.news-det .cons img {
  display: block;
  margin: 0 auto;
}*/

    @media (max-width: 1400px) {
        .news-det h1 {
            font-size: 20px;
            line-height: 37px;
        }

        .news-det .time {
            margin-top: 32px;
            padding-bottom: 15px;
        }

            .news-det .time p:nth-child(1) {
                margin-right: 280px;
            }

        .news-det .cons {
            margin-top: 27px;
            font-size: 16px;
            line-height: 32px;
        }
    }

    @media (max-width: 1000px) {
        .news-det h1 {
            font-size: 20px;
            line-height: 30px;
        }
        .news-det .time p{
            font-size:14px;
        }
        .news-det .time {
            margin-top: 23px;
            padding-bottom: 9px;
        }

            .news-det .time p:nth-child(1) {
                margin-right: 23px;
            }

        .news-det .cons {
            margin-top: 23px;
            font-size: 14px;
            line-height: 27px;
        }

        .news-det .time p img {
            width: 13px;
            height: 13px;
            margin-right: 2px;
        }

    }

    /* 2-3.上一篇下一篇 */
    .cut {
        margin-top: 120px;
        display: flex;
        justify-content: space-between;
    }

        .cut .prev,
        .cut .next {
            width: calc(50% - 20px);
            background-color: #dde1f3;
            padding: 22px;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
        }

        .cut em {
            display: block;
            font-size: 20px;
        }

        .cut h3 {
            font-size: 20px;
            margin-top: 15px;
            color: #000000;
        }

        .cut p {
            font-size: 14px;
            line-height: 23px;
            color: #666666;
            /* 文字对齐 */
            text-align: justify;
            text-align-last: left;
            text-justify: inter-ideograph;
            margin-top: 8px;
        }

        .cut a {
            display: block;
            width: 140px;
            height: 48px;
            text-align: center;
            line-height: 48px;
            background-color: #ffffff;
            color: #959595;
            margin-top: 50px;
            font-size: 14px;
        }

            .cut a.active,
            .cut a:hover {
                color: #ffffff;
                background-color: #1b35ae;
            }

    @media (max-width: 1400px) {
        .cut {
            margin-top: 75px;
        }
    }

    @media (max-width: 1000px) {
        .cut {
            margin-top: 43px;
        }

            .cut .prev,
            .cut .next {
                width: calc(50% - 10px);
                padding: 22px 13px;
                border-top-left-radius: 10px;
                border-top-right-radius: 10px;
            }

            .cut em {
                font-size: 16px;
            }

            .cut h3 {
                font-size: 16px;
            }

            .cut p {
                font-size: 12px;
                line-height: 19px;
            }

            .cut a {
                width: 120px;
                height: 32px;
                line-height: 32px;
                margin-top: 32px;
                font-size: 12px;
            }
    }

    @media (max-width: 768px) {
        .cut {
            flex-direction: column;
        }

            .cut .prev,
            .cut .next {
                width: 100%;
                padding: 22px 13px;
                border-top-left-radius: 0;
                border-top-right-radius: 0;
            }

            .cut .next {
                margin-top: 19px;
            }
    }

    /* 3.宠物课堂 */
    .room ul {
        width: 100%;
        height: auto;
    }

    .room li a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
        cursor: pointer;
    }

    .room li:not(:first-child) {
        margin-top: 30px;
    }

    .room li a img {
        width: 320px;
        height: 100%;
        overflow: hidden;
    }

    .room li a .right {
        width: calc(100% - 320px);
        height: 100%;
        box-sizing: border-box;
        padding-left: 40px;
    }

    .room li a h3 {
        font-size: 20px;
        line-height: 32px;
        /* 超出隐藏 */
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #000000;
        font-weight: bold;
        transition: all 0.3s;
    }

    .room li a em {
        display: block;
        color: #bfbfbf;
        font-size: 14px;
        margin-top: 16px;
    }

    .room li a p {
        font-size: 16px;
        margin-top: 30px;
        line-height: 24px;
        color: #6a6a6a;
        /* 文字最多显示几行 */
        overflow: hidden;
        text-overflow: ellipsis; /* 超出部分省略号 */
        word-break: break-all; /* break-all(允许在单词内换行。) */
        display: -webkit-box; /* 对象作为伸缩盒子模型显示 */
        -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式 */
        -webkit-line-clamp: 2; /* 显示的行数 */
        max-height: 80rpx; /* 设置最大高度，根据行高，要几行乘以几倍 */
    }

    .room li a span {
        display: block;
        width: 80px;
        height: 36px;
        text-align: center;
        line-height: 34px;
        background-color: #999999;
        margin-top: 39px;
        transition: all 0.3s;
    }

        .room li a span img {
            width: 34px;
            height: auto;
        }

    .room .active h3,
    .room li a:hover h3 {
        color: #1b35ae;
        transition: all 0.3s;
    }

    .room .active a,
    .room li a:hover span {
        background-color: #1b35ae;
        transition: all 0.3s;
    }

    @media (max-width: 1400px) {
        .room li a:not(:first-child) {
            margin-top: 20px;
        }

        .room li a img {
            width: 280px;
        }

        .room li a .right {
            width: calc(100% - 280px);
            padding-left: 30px;
        }

        .room li a h3 {
            font-size: 18px;
        }

        .room li a em {
            margin-top: 10px;
        }

        .room li a p {
            margin-top: 19px;
            line-height: 29px;
        }

        .room li a span {
            margin-top: 23px;
        }

            .room li a span img {
                width: 27px;
                height: auto;
            }
    }

    @media (max-width: 1000px) {
        .room li a:not(:first-child) {
            margin-top: 15px;
        }

        .room li a img {
            width: 130px;
        }

        .room li a .right {
            width: calc(100% - 130px);
            padding-left: 15px;
        }

        .room li a h3 {
            font-size: 14px;
            line-height: 23px;
        }

        .room li a em {
            margin-top: 5px;
            font-size: 14px;
        }

        .room li a p {
            margin-top: 3px;
            font-size: 14px;
            line-height: 20px;
        }

        .room li a span {
            margin-top: 7px;
            width: 50px;
            height: 23px;
            line-height: 22px;
            display:none;
        }

            .room li a span img {
                width: 17px;
                height: auto;
            }
        .room li:not(:first-child){
            margin-top:20px;
        }
    }

    /* 4.宠物工厂 */
    /* 4-1.视频 */
    .video {
        width: 100%;
        height: auto;
        position: relative;
    }

        .video .cover {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video .play {
            width: 100%;
            height: 100%;
            cursor: pointer;
            position: absolute;
            top: 0;
            left: 0;
            background-color: rgba(0, 0, 0, 0.4);
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .video .play img {
                width: 64px;
                height: 64px;
            }

    .video-desc {
        font-size: 18px;
        margin-top: 30px;
        line-height: 32px;
        color: #6a6a6a;
        /* 文字对齐 */
        text-align: justify;
        text-align-last: left;
        text-justify: inter-ideograph;
        margin-bottom:50px;
    }

    @media (max-width: 1400px) {
        .video-desc {
            font-size: 16px;
            margin-top: 20px;
        }

        .video .play img {
            width: 43px;
            height: 43px;
        }
    }

    @media (max-width: 1000px) {
        .video-desc {
            font-size: 14px;
            margin-top: 10px;
            line-height: 29px;
            margin-bottom:20px;
        }

        .video .play img {
            width: 37px;
            height: 37px;
        }
    }

    /* 视频播放容器 */
    .video-container {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        width: 70%;
        height: auto;
        z-index: 300;
        overflow: hidden;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 1);
        /* 蓝色阴影 */
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.7);
        cursor: pointer;
        border-radius: 10px;
        border: 3px solid #000;
    }

        .video-container img {
            width: 37px;
            height: 37px;
            position: absolute;
            right: 16px;
            top: 16px;
            cursor: pointer;
            z-index: 300;
        }

        .video-container video {
            width: 100%;
            height: auto;
            object-fit: fill;
            border-radius: 10px;
        }

    @media (max-width: 1400px) {
        .video-container {
            width: 85%;
            border: 2px solid #000;
        }

            .video-container img {
                width: 32px;
                height: 32px;
            }
    }

    @media (max-width: 1000px) {
        .video-container {
            width: 95%;
            padding: 0;
            border-radius: 5px;
            border: 1px solid #000;
        }

            .video-container img {
                width: 23px;
                height: 23px;
                right: 7px;
                top: 7px;
            }

            .video-container video {
                border-radius: 5px;
            }
    }

    /* 4-2.工厂 */
    .plant {
        margin: 100px 0 43px;
    }


        .plant li {
            width: 100%;
            display:flex;
            justify-content:space-between;
            align-items:center; 
            position: relative;
            margin-top:30px;
        }
            .plant li:nth-child(even){
                flex-direction:row-reverse;
            }

            .plant li .img {
                width: 48%;
                height: 100%;
            }

                .plant li .img img {
                    width: 100%;
                    height: 100%;
                }


            .plant li .txt {
                width: 52%;
                height: auto;
                color: #333;
              
            }
            .plant li .txts {
                width: 105%;
                position: relative;
                left: -5%;
                box-sizing: border-box;
                background-color: #FFF;
                padding: 72px 77px 90px 90px;
                border-radius: 15px;
            }
            .plant li:nth-child(even) .txts {
                left: 0;
                padding: 72px 90px 90px 77px;
            }

            .plant li h3 {
                font-size: 24px;
            }

            .plant li p {
                font-size: 16px;
                line-height: 32px;
                margin-top: 32px;
                /* 文字对齐 */
                text-align: justify;
                text-align-last: left;
                text-justify: inter-ideograph;
            }

    @media (max-width: 1400px) {
        .plant {
            margin: 75px 0 43px;
        }

            .plant li .txts {
                padding: 60px 70px 70px 75px;
            }
            .plant li:nth-child(even) .txts {
                padding: 60px 75px 70px 70px;
            }
            .plant li h3 {
                font-size: 20px;
            }

                .plant li p {
                    font-size: 14px;
                    line-height: 27px;
                    margin-top: 19px;
                }
    }

    @media (max-width: 1000px) {
        .plant {
            margin: 43px 0 43px;
        }

            .plant li {
                flex-direction: column !important;
                border-radius:15px;
                overflow:hidden;
            }
                .plant li .img, .plant li .txt{
                    width:100%;
                }
                .plant li .txts{
                    padding:30px !important;
                    left:0;
                    width:100%;
                    border-radius:0;
                }

                .plant li h3 {
                    font-size: 16px;
                }

                .plant li p {
                    font-size: 14px;
                    line-height: 21px;
                    margin-top: 13px;
                }
    }


    /* 5.产品 */
    /* 5-1.侧栏 */
    .side {
        width: 100%;
        height: auto;
        overflow: auto;
        padding-bottom: 100px;
    }

        .side aside {
            float: left;
            width: 320px;
            height: auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 3px 3px 7px 0px rgba(0, 0, 0, 0.12);
            background-color:#fff;
        }

        .side .side-contents {
            float: right;
            width: calc(100% - 320px);
            padding-left: 40px;
        }

        .side aside h3 {
            width: 100%;
            height: auto;
            padding: 43px 30px;
            color: #fff;
            font-size: 40px;
            text-align: center;
            background-color: #1b35ae;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            border-bottom: 2px solid #ffffff;
        }

        .side aside ul {
            width: 100%;
            height: auto;
            background-color: #ffffff;
        }

            .side aside ul li {
                width: 100%;
                height: auto;
                background-color: #ffffff;
            }

                .side aside ul li a {
                    display: block;
                    width: 84%;
                    height: auto;
                    font-weight: bold;
                    color: #333333;
                    box-sizing: border-box;
                    padding: 20px 0;
                    border-bottom: 1px solid #e7e7e7;
                    margin: 0 auto;
                }

            .side aside ul .band .first {
                width: 100%;
                padding: 20px 8%;
                background-color: #8c99d6;
                color: #ffffff;
                border-bottom: 0;
            }

            .side aside ul li .second a {
                color: #999999;
                font-weight: normal;
            }

            .side aside ul li .first {
                display: flex;
                flex-wrap: wrap;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }

                .side aside ul li .first span {
                    width: calc(100% - 27px);
                }

                .side aside ul li .first img {
                    width: 16px;
                    height: 16px;
                }

            .side aside ul li .second {
                display: none;
            }

                .side aside ul li .second a {
                    padding: 17px 30px;
                }

            .side aside ul li .first img:nth-child(1) {
                display: inline-block;
            }

            .side aside ul li .first img:nth-child(2) {
                display: none;
            }

            /*.side aside ul .active .first img:nth-child(2),
.side aside ul li:hover .first img:nth-child(2) {
  display: inline-block;
}

.side aside ul .active .first img:nth-child(1),
.side aside ul li:hover .first img:nth-child(1) {
  display: none;
}

.side aside ul .band.active .first img:nth-child(1),
.side aside ul .band:hover .first img:nth-child(1) {
  display: inline-block;
}*/

            .side aside ul .active .second,
            .side aside ul li:hover .second {
                display: block;
            }

                .side aside ul .active .second .active,
                .side aside ul li .second a:hover {
                    color: #1b35ae;
                }

        .side aside p {
            width: 100%;
            height: 32px;
            line-height: 32px;
            text-align: right;
            color: #e93a26;
            font-size: 14px;
            background-color: #ffffff;
            box-sizing: border-box;
            padding: 0 7px;
            display: none;
            cursor: pointer;
        }

        .side aside .code {
            width: 100%;
            height: auto;
            text-align: center;
            padding: 30px 8% 43px;
        }

            .side aside .code .img {
                width: 126px;
                height: 126px;
                margin: 0 auto;
            }

            .side aside .code span {
                color: #666666;
                display: block;
                margin-top: 13px;
            }

        .side .side-contents .aside {
            display: none;
            width: 100%;
            height: auto;
            box-sizing: border-box;
            padding-bottom: 9px;
            border-bottom: 1px solid #999999;
            margin-bottom: 9px;
            line-height: 23px;
        }

            .side .side-contents .aside span {
                font-size: 14px;
            }

            .side .side-contents .aside img {
                float: right;
                width: 23px;
                height: 23px;
                cursor: pointer;
            }

    @media (max-width: 1400px) {
        .side aside {
            width: 240px;
        }

        .side .side-contents {
            width: calc(100% - 240px);
            padding-left: 20px;
        }

        .side aside h3 {
            font-size: 27px;
            padding: 37px 20px;
        }

        .side aside ul li a {
            width: 100%;
            padding: 20px 13px;
        }

        .side aside ul li .second a {
            padding: 15px 20px;
        }

        .side aside ul .band .first {
            padding: 20px 13px;
        }

        .side aside ul .active .first,
        .side aside ul li:hover .first {
            padding: 20px 13px;
        }

        .side aside ul li .first span {
            width: calc(100% - 25px);
        }

        .side aside .code {
            padding: 30px 0 43px;
        }

            .side aside .code .img {
                width: 90px;
                height: 90px;
            }

            .side aside .code span {
                margin-top: 7px;
            }
    }

    @media (max-width: 1000px) {
        .side {
            padding: 0;
            padding-bottom: 75px;
        }

            .side aside {
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 95%;
                display: none;
                z-index: 300;
                background-color: #f7f7f7;
                box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.12);
                border-radius: 5px;
            }

                .side aside p {
                    display: block;
                }

            .side .side-contents .aside {
                display: block;
            }

            .side .side-contents {
                width: 100%;
                padding-left: 0;
            }

            .side aside h3 {
                font-size: 16px;
                font-weight: normal;
                padding: 20px 13px;
            }

            .side aside ul {
                margin-top: 0;
                width: 100%;
                height: 45vh;
                overflow-x: hidden;
                overflow-y: scroll;
            }

                .side aside ul li a {
                    padding: 13px 7px;
                    font-size: 13px;
                }

                .side aside ul .band .first {
                    padding: 13px 7px;
                }

                .side aside ul .active .first,
                .side aside ul li:hover .first {
                    padding: 13px 7px;
                }

                .side aside ul li .second a {
                    padding: 13px 7px;
                }

                .side aside ul li .first span {
                    width: calc(100% - 15px);
                }

                .side aside ul li .first img {
                    width: 10px;
                    height: 10px;
                }

            .side aside .code {
                display: none;
            }
    }

    /* 5-2.商品 */
    .goods {
        display: flex;
        flex-wrap: wrap;
    }

        .goods li {
            width: calc((100% / 3) - 18px);
            background-color: #ffffff;
            box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
        }

            .goods li:not(:nth-child(3n)) {
                margin-right: 27px;
            }

            .goods li:nth-child(n + 4) {
                margin-top: 27px;
            }

            .goods li .img {
                width: 100%;
                height: auto;
                background-color: #f6fafc;
                text-align: center;
            }

                .goods li .img img {
                    width: 223px;
                }

            .goods li p {
                font-size: 18px;
                padding: 15px 7px;
                border-bottom: 2px solid #f3f3f3;
                text-align: center;
                /* 超出隐藏 */
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            .goods li a {
                display: block;
            }

            .goods li span {
                display: block;
                width: 110px;
                height: 37px;
                line-height: 35px;
                color: #1b35ae;
                border: 1px solid #1b35ae;
                margin: 21px auto;
                text-align: center;
                font-size: 14px;
                transition: all 0.3s;
            }

            .goods li:hover span,
            .goods .active span {
                background-color: #1b35ae;
                color: #ffffff;
                transition: all 0.3s;
            }

    @media (max-width: 1400px) {
        .goods li {
            width: calc((100% / 3) - 10px);
        }

            .goods li:not(:nth-child(3n)) {
                margin-right: 15px;
            }

            .goods li:nth-child(n + 4) {
                margin-top: 15px;
            }

            .goods li .img img {
                width: 180px;
            }

            .goods li p {
                font-size: 16px;
            }

            .goods li span {
                width: 90px;
                height: 32px;
                line-height: 30px;
                font-size: 12px;
            }
    }

    @media (max-width: 1000px) {
        .goods li {
            border-radius: 5px;
            border: 2px solid #f3f3f3;
            box-shadow: 0 0 0 0;
        }
    }

    @media (max-width: 768px) {
        .goods li {
            width: calc((100% / 2) - 5px);
        }

            .goods li:not(:nth-child(3n)) {
                margin-right: 0;
            }

            .goods li:nth-child(n + 4) {
                margin-top: 0;
            }

            .goods li:not(:nth-child(2n)) {
                margin-right: 10px;
            }

            .goods li:nth-child(n + 3) {
                margin-top: 10px;
            }

            .goods li .img img {
                width:auto;
                height:145px;
            }

            .goods li p {
                font-size: 14px;
                padding: 7px 7px;
            }

            .goods li span {
                width: 80px;
                height: 27px;
                line-height: 25px;
                margin: 13px auto;
                font-size: 10px;
            }
        .goods-det .txt ul li{
            margin-right:20px !important;
            margin-top:20px !important;
        }
    }

    /* 5-3.商品详情 */
    .goods-det {
        width: 100%;
        height: auto;
        background-color: rgba(246,250,252,.6);
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        background-color:#fff;
    }

        .goods-det .pic {
            width: 380px;
        }

            .goods-det .pic img {
                width: 100%;
                display: block;
            }

        .goods-det .txt {
            width: 62%;
            padding: 30px 30px 90px;
        }

            .goods-det .txt .name h1 {
                font-size: 24px;
                font-weight: bold;
                padding-left: 20px;
                border-left: 5px solid #1b35ae;
            }

            .goods-det .txt .name p {
                font-size: 18px;
                color: #7b7d7e;
                margin-top: 5px;
            }

            .goods-det .txt .spec {
                margin-top: 30px;
            }

                .goods-det .txt .spec p {
                    font-size: 24px;
                    color: #000000;
                    font-weight: bold;
                    margin-top: 5px;
                }

                .goods-det .txt .spec span {
                    display: block;
                    font-size: 20px;
                    color: #7b7d7e;
                    margin-top: 5px;
                }

            .goods-det .txt .tags {
                width: 230px;
                height: 62px;
                background-color: #ffffff;
                border: 1px solid #707070;
                color: #707070;
                text-align: center;
                line-height: 60px;
                font-size: 24px;
                margin: 30px 0 0 0;
                border-radius: 30px;
            }

            .goods-det .txt ul {
                display: flex;
                justify-content: unset;
                flex-wrap: wrap;
            }

                .goods-det .txt ul li {
                    min-width: 25%;
                    margin-right: 30px;
                    margin-top: 30px;
                }

                .goods-det .txt ul p em {
                    font-size: 40px;
                    color: #000000;
                    font-weight: bold;
                    line-height: 40px;
                }

                .goods-det .txt ul p i {
                    font-size: 24px;
                    font-weight: bold;
                    color: #7b7d7e;
                }

                .goods-det .txt ul span {
                    font-size: 20px;
                    color: #7b7d7e;
                }

            .goods-det .txt .desc {
                margin-top: 30px;
                font-size: 18px;
                color: #7b7d7e;
                line-height: 34px;
                /* 文字对齐 */
                text-align: justify;
                text-align-last: left;
                text-justify: inter-ideograph;
            }

            .goods-det .txt .spot {
                margin-top: 30px;
                font-size: 18px;
                color: #7b7d7e;
                line-height: 34px;
                /* 文字对齐 */
                text-align: justify;
                text-align-last: left;
                text-justify: inter-ideograph;
            }

                .goods-det .txt .spot p {
                    display: flex;
                }

                    .goods-det .txt .spot p span:nth-child(1) {
                        color: #000000;
                        font-size: 12px;
                        margin-right: 7px;
                        vertical-align: middle;
                        margin-top: 3px;
                    }

    @media (max-width: 1400px) {
        .goods-det .pic {
            width: 360px;
        }

        .goods-det .txt {
            width: 60%;
        }

            .goods-det .txt .name h1 {
                font-size: 20px;
                padding-left: 10px;
            }

            .goods-det .txt .name p {
                font-size: 16px;
                margin-top: 3px;
            }

            .goods-det .txt .spec {
                margin-top: 20px;
            }

                .goods-det .txt .spec p {
                    font-size: 20px;
                    line-height: 27px;
                }

                .goods-det .txt .spec span {
                    font-size: 18px;
                }

            .goods-det .txt .tags {
                width: 180px;
                height: 52px;
                line-height: 50px;
                font-size: 20px;
                margin: 20px 0 0 0;
                border-radius: 30px;
            }

            .goods-det .txt ul p em {
                font-size: 30px;
                line-height: 30px;
            }

            .goods-det .txt ul p i {
                font-size: 20px;
            }

            .goods-det .txt ul span {
                font-size: 16px;
            }

            .goods-det .txt .desc {
                margin-top: 20px;
                font-size: 16px;
                line-height: 32px;
            }

            .goods-det .txt .spot {
                margin-top: 20px;
                font-size: 16px;
                line-height: 32px;
            }

                .goods-det .txt .spot p span:nth-child(1) {
                    font-size: 7px;
                    margin-right: 7px;
                    margin-top: 0;
                }
    }

    @media (max-width: 1000px) {
      
        body, html {
            overflow-y: auto;
        }
        .goods-det {
            flex-direction: column-reverse;
            align-items: center;
            padding-bottom: 0;
        }

            .goods-det .pic {
                width: 50%;
                height: auto;
                border: 0 solid #777777;
                margin-top: 10px;
                margin-bottom:20px;
            }

                .goods-det .pic img {
                    width: 100%;
                    margin-top: 0;
                    margin-left: 0;
                }

            .goods-det .txt {
                width: 100%;
                padding: 15px;
            }

                .goods-det .txt .name h1 {
                    font-size: 16px;
                    padding-left: 5px;
                    border-left: 3px solid #1b35ae;
                }

                .goods-det .txt .name p {
                    font-size: 14px;
                }

                .goods-det .txt .spec {
                    margin-top: 15px;
                }

                    .goods-det .txt .spec p {
                        font-size: 18px;
                        line-height: 20px;
                    }

                    .goods-det .txt .spec span {
                        font-size: 14px;
                        margin-top:10px;
                    }

                .goods-det .txt .tags {
                    width: 120px;
                    height: 32px;
                    line-height: 30px;
                    font-size: 14px;
                    margin: 15px 0 20px;
                    border-radius: 20px;
                }

                .goods-det .txt ul p em {
                    font-size: 24px;
                    line-height: 24px;
                }

                .goods-det .txt ul p i {
                    font-size: 16px;
                }

                .goods-det .txt ul span {
                    font-size: 12px;
                }

                .goods-det .txt .desc {
                    margin-top: 15px;
                    font-size: 13px;
                    line-height: 27px;
                }

                .goods-det .txt .spot {
                    margin-top: 15px;
                    font-size: 13px;
                    line-height: 27px;
                }

                    .goods-det .txt .spot p span:nth-child(1) {
                        font-size: 5px;
                    }
    }

    /* 6.关于我们 */
    /* 6-1.文字介绍 */
    .mod4 .desc {
        width: 70%;
        text-align: center;
        font-size: 18px;
        line-height: 37px;
        margin: 37px auto 90px;
    }

    @media (max-width: 1400px) {
        .mod4 .desc {
            width: 70%;
            font-size: 16px;
            line-height: 32px;
            margin: 27px auto 75px;
        }
    }

    @media (max-width: 1000px) {
        .mod4 .desc {
            width: 100%;
            font-size: 13px;
            line-height: 27px;
            margin: 19px auto 53px;
        }
    }

    /* 6-2.科学配方 */
    .recipe {
        padding-bottom: 100px;
    }

    .mark {
        width: 74%;
        height: auto;
        margin: 75px auto 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

        .mark li {
            width: 37%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .mark li:nth-child(n + 3) {
                margin-top: 75px;
            }

            .mark li .icon {
                width: 110px;
            }

            .mark li .txt {
                width: calc(100% - 137px);
            }

                .mark li .txt p {
                    font-size: 24px;
                }

                .mark li .txt span {
                    font-size: 18px;
                    margin-top: 5px;
                    display: inline-block;
                }

    @media (max-width: 1400px) {
        .mark {
            margin: 43px auto 0;
        }

            .mark li:nth-child(n + 3) {
                margin-top: 43px;
            }

            .mark li .icon {
                width: 75px;
            }

            .mark li .txt {
                width: calc(100% - 90px);
            }

                .mark li .txt p {
                    font-size: 20px;
                }

                .mark li .txt span {
                    font-size: 16px;
                }
    }

    @media (max-width: 1400px) {
        .mark {
            width: 100%;
            margin: 32px auto 0;
        }

            .mark li:nth-child(n + 3) {
                margin-top: 32px;
            }

            .mark li {
                width: 48%;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }

                .mark li .icon {
                    width: 60px;
                }

                .mark li .txt {
                    width: 100%;
                    text-align: center;
                    margin-top: 13px;
                }

                    .mark li .txt p {
                        font-size: 16px;
                    }

                    .mark li .txt span {
                        font-size: 12px;
                    }
    }

    /* 6-3.科学配2 */
    .core {
        width: 80%;
        height: auto;
        margin: 180px auto 0;
        display: flex;
        flex-wrap: wrap;
    }

        .core li {
            width: calc((100% / 3) - 42px);
            height: auto;
            text-align: center;
            color: #666666;
        }

            .core li:not(:nth-child(3n)) {
                margin-right: 63px;
            }

            .core li:nth-child(n + 4) {
                margin-top: 63px;
            }

            .core li .img {
                border-radius: 23px;
                overflow: hidden;
                border: 2px solid #e2e2e2;
            }

            .core li p {
                font-size: 20px;
                margin-top: 20px;
                line-height: 32px;
            }

            .core li span {
                font-size: 16px;
                margin-top: 7px;
                line-height: 27px;
            }

    @media (max-width: 1400px) {
        .core {
            margin: 75px auto 0;
        }

            .core li {
                width: calc((100% / 3) - 20px);
            }

                .core li:not(:nth-child(3n)) {
                    margin-right: 30px;
                }

                .core li:nth-child(n + 4) {
                    margin-top: 30px;
                }

                .core li p {
                    font-size: 18px;
                    margin-top: 10px;
                }

                .core li span {
                    font-size: 14px;
                    margin-top: 3px;
                    line-height: 27px;
                }
    }

    @media (max-width: 1000px) {
        .core {
            margin: 43px auto 0;
        }

            .core li {
                width: calc(50% - 15px);
            }

                .core li .img {
                    border-radius: 20px;
                }

                .core li:not(:nth-child(3n)) {
                    margin-right: 0;
                }

                .core li:nth-child(n + 4) {
                    margin-top: 0;
                }

                .core li:not(:nth-child(2n)) {
                    margin-right: 15px;
                }

                .core li:nth-child(n + 3) {
                    margin-top: 15px;
                }

                .core li p {
                    font-size: 16px;
                    line-height: 27px;
                    margin-top: 7px;
                }

                .core li span {
                    font-size: 12px;
                    margin-top: 0;
                    line-height: 23px;
                }
    }

    @media (max-width: 480px) {
        .core {
            width: 100%;
        }
    }

    /* 7.联系我们 */
    .contact {
        padding-bottom: 100px;
    }

        .contact .inside {
            display: flex;
            justify-content: space-between;
        }

        .contact .left {
            width: 39%;
            color: #ffffff;
            text-align: center;
            box-shadow:0 3px 10px rgba(0,0,0,.16);
            border-radius:15px;
            overflow:hidden;
        }

        .contact .right {
            width: 57%;
            background: url(./../../../images/contact.png) no-repeat center/cover;
            border-radius: 15px;
            overflow: hidden;
        }

        .contact .top {
            width: 100%;
            padding: 55px 20px 37px;
            background-color: #1b35ae;
            border-radius: 15px;
        }

            .contact .top p {
                font-size: 24px;
                line-height: 37px;
            }

            .contact .top span {
                display: block;
                font-size: 20px;
                line-height: 37px;
                margin-top: 13px;
            }

            .contact .top a {
                display: block;
                width: 170px;
                height: 50px;
                background-color: #fff;
                text-align: center;
                color: #1b35ae;
                line-height: 50px;
                font-size: 16px;
                margin: 32px auto 0;
                border-radius: 25px;
            }

        .contact .way {
            width: 100%;
            padding: 48px 20px 95px;
            background-color: #fff;
            border-radius:15px;
        }

            .contact .way p:not(:first-child) {
                margin-top: 30px;
            }

            .contact .way p {
                font-size: 18px;
                line-height: 32px;
                color:#333;
            }

            .contact .way span {
                display: block;
            }

        .contact .right .cons {
            width: 100%;
            height: 100%;
            background-color: rgba(102, 102, 102, 0.5);
            padding: 60px;
            color: #ffffff;
        }

        .contact .right h3 {
            text-align: center;
            font-size: 24px;
        }

        .contact ul {
            margin-top: 43px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

            .contact ul li {
                width: 100%;
                height: auto;
            }

                .contact ul li:nth-child(n + 3) {
                    margin-top: 30px;
                }

                .contact ul li:nth-child(-n + 2) {
                    width: 48%;
                }

                .contact ul li span {
                    display: block;
                    font-size: 18px;
                }

                .contact ul li input[type="text"] {
                    width: 100%;
                    height: 50px;
                    margin-top: 10px;
                    outline: 0;
                    border: 0;
                    background-color: #ffffff;
                    font-size: 16px;
                    color: #707070;
                    padding: 0 20px;
                    border-radius:8px;

                }

                .contact ul li:last-child {
                    display: flex;
                    justify-content: space-between;
                    cursor: pointer;
                }

                    .contact ul li:last-child input[type="checkbox"] {
                        width: 17px;
                        height: 17px;
                        border: 0;
                        outline: 0;
                    }

                    .contact ul li:last-child label {
                        width: calc(100% - 23px);
                        font-size: 14px;
                        font-weight: normal;
                        line-height: 16px;
                        cursor: pointer;
                    }

        .contact .submit {
            display: block;
            width: 170px;
            height: 50px;
            background-color: #ffffff;
            text-align: center;
            color: #000000;
            line-height: 50px;
            font-size: 16px;
            margin: 90px auto 0;
            cursor: pointer;
            border-radius:25px;
        }

    @media (max-width: 1000px) {
        .contact .inside {
            flex-direction: column;
        }

        .contact .left {
            width: 100%;
        }

        .contact .right {
            width: 100%;
            margin-top: 10px;
        }

        .contact .top {
            padding: 23px 13px;
        }

            .contact .top p {
                font-size: 18px;
                line-height: 32px;
            }

            .contact .top span {
                font-size: 16px;
                line-height: 23px;
                margin-top: 7px;
            }

            .contact .top a {
                width: 120px;
                height: 37px;
                line-height: 37px;
                font-size: 12px;
                margin: 23px auto 0;
               

            }

        .contact .way {
            margin-top: 10px;
            padding: 27px 13px;
        }

            .contact .way p:not(:first-child) {
                margin-top: 15px;
            }

            .contact .way p {
                font-size: 14px;
                line-height: 27px;
            }

        .contact .right .cons {
            padding: 30px;
        }

        .contact .right h3 {
            font-size: 20px;
        }

        .contact ul {
            margin-top: 23px;
        }

            .contact ul li:nth-child(-n + 2) {
                width: 100%;
            }

            .contact ul li:nth-child(n + 3) {
                margin-top: 0;
            }

            .contact ul li:nth-child(n + 2) {
                margin-top: 15px;
            }

            .contact ul li span {
                font-size: 14px;
            }

            .contact ul li input[type="text"] {
                height: 37px;
                margin-top: 5px;
                font-size: 12px;
                padding: 0 13px;
            }

            .contact ul li:last-child input[type="checkbox"] {
                width: 13px;
                height: 13px;
            }

            .contact ul li:last-child label {
                width: calc(100% - 20px);
                font-size: 12px;
                line-height: 23px;
            }

        .contact .submit {
            width: 120px;
            height: 37px;
            line-height: 37px;
            font-size: 12px;
            margin: 32px auto 0;
        }
    }

    /* 8.查询防伪 */
    .fake {
        margin-bottom: 100px;
    }

        .fake .tabs {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 10px;
            border-bottom: 1px solid #000000;
        }

            .fake .tabs span {
                display: block;
                color: #000000;
                font-size: 20px;
                line-height: 20px;
                font-weight: bold;
                border-left: 5px solid #1b35ae;
                padding-left: 10px;
            }

            .fake .tabs a {
                font-size: 16px;
                color: #1b35ae;
            }

        .fake li:not(:first-child) {
            margin-top: 30px;
        }

        .fake li .cons {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .fake li .cons .img {
                width: 50%;
            }

            .fake li .cons .right {
                width: 50%;
                padding-left: 73px;
            }

                .fake li .cons .right .item:not(:first-child) {
                    margin-top: 90px;
                }

                .fake li .cons .right h2 {
                    color: #000000;
                    font-size: 20px;
                    margin-bottom: 20px;
                    font-weight: bold;
                }

                .fake li .cons .right p {
                    font-size: 18px;
                    line-height: 32px;
                }

                .fake li .cons .right a {
                    display: inline-block;
                    margin-top: 57px;
                    position: relative;
                }

                .fake li .cons .right span {
                    display: block;
                    width: 150px;
                    height: 57px;
                    background-color: #ffffff;
                    text-align: center;
                    color: #000000;
                    line-height: 55px;
                    font-size: 18px;
                    border: 1px solid #c0c0c0;
                    border-radius: 10px;
                    box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
                    transition: all 0.5s;
                }

                .fake li .cons .right a:hover img {
                    display: none;
                }

                .fake li .cons .right a:hover span {
                    background-color: #1B35AE;
                    color: #fff;
                }

                .fake li .cons .right img {
                    display: block;
                    width: 32px;
                    position: absolute;
                    right: 25px;
                    bottom: -20px;
                }

    @media (max-width: 1400px) {
        .fake li .cons .right {
            padding-left: 32px;
        }

            .fake li .cons .right .item:not(:first-child) {
                margin-top: 85px;
            }

            .fake li .cons .right a {
                margin-top: 32px;
            }

            .fake li .cons .right h2 {
                margin-bottom: 10px;
            }
    }

    @media (max-width: 1000px) {
        .fake li .cons {
            flex-direction: column;
        }

        .fake .tabs {
            padding-bottom: 7px;
            margin-bottom: 13px;
        }

            .fake .tabs span {
                font-size: 16px;
                line-height: 16px;
                border-left: 2px solid #1b35ae;
                padding-left: 5px;
            }

            .fake .tabs a {
                font-size: 12px;
            }

        .fake li .cons .right {
            width: 100%;
            padding-left: 0;
            margin-top: 23px;
        }

            .fake li .cons .right .item:not(:first-child) {
                margin-top: 23px;
            }

            .fake li .cons .right a {
                margin: 0 auto;
                margin-top: 23px;
                display: block;
                width: 110px;
            }
        .fake{
            margin-bottom:30px;
        }

        .fake li .cons .right h2 {
            font-size: 16px;
        }

            .fake li .cons .right p {
                font-size: 14px;
                line-height: 27px;
            }

            .fake li .cons .right span {
                width: 100%;
                height: 37px;
                line-height: 35px;
                font-size: 12px;
                border-radius: 5px;
            }

            .fake li .cons .right img {
                width: 23px;
                margin-top: -10px;
                margin-left: 60px;
            }
    }

    /* 9.质检报告 */
    .report {
        margin-bottom: 100px;
    }

    /* 9-1.筛选 */
    .filter {
        display: flex;
        justify-content: space-between;
    }

        .filter li {
            height: 70px;
            display: flex;
            justify-content: space-between;
            background-color: #f7f7f7;
            padding: 0 30px;
            cursor: pointer;
            position: relative;
        }

            .filter li:not(:last-child) {
                margin-right: 60px;
            }

            .filter li:nth-child(-n + 2) {
                width: calc(25% - 45px);
            }

            .filter li:nth-child(3) {
                flex: 2;
            }

            .filter li .icon {
                width: 30px;
                height: 100%;
                text-align: center;
                line-height: 70px;
            }

            .filter li:nth-child(-n + 2) .icon img {
                width: 23px;
            }

            .filter li:nth-child(3) .icon img {
                width: 27px;
            }

            .filter li input,
            .filter li span {
                width: calc(100% - 30px);
                height: 100%;
                border: 0;
                outline: 0;
                background-color: transparent;
                font-size: 18px;
                color: #7b7b7b;
            }

            .filter li .select {
                position: absolute;
                left: 0;
                top: 70px;
                z-index: 1000;
                width: 100%;
                position: absolute;
                left: 0;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
                background: #fff;
                border: 1px solid #ddd;
                box-shadow: 2px 3px 3px rgb(0 0 0 / 11%);
                border-radius: 3px;
                overflow: hidden;
                overflow-y: auto;
                max-height: 250px;
                display: none;
            }

                .filter li .select p {
                    padding: 15px;
                    position: relative;
                    border-bottom: 1px solid #f5f5f5;
                    font-size: 18px;
                }


            .filter li span {
                line-height: 70px;
            }

    @media (max-width: 1400px) {
        .filter li:not(:last-child) {
            margin-right: 20px;
        }

        .filter li:nth-child(-n + 2) {
            width: calc(25% - 15px);
        }

        .filter li {
            height: 50px;
            padding: 0 20px;
        }

            .filter li .icon {
                width: 23px;
                line-height: 50px;
            }

            .filter li:nth-child(-n + 2) .icon img {
                width: 17px;
            }

            .filter li:nth-child(3) .icon img {
                width: 20px;
            }

            .filter li input,
            .filter li span {
                width: calc(100% - 23px);
                font-size: 16px;
            }

            .filter li span {
                line-height: 50px;
            }
    }

    @media (max-width: 1000px) {
        .filter {
            flex-wrap:wrap;
        }

            .filter li:not(:last-child) {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .filter li:nth-child(1), .filter li:nth-child(2) {
                width: 48%;
            }

            .filter li:nth-child(3) {
                flex: 1;
                width: 100%;
            }

            .filter li {
                height: 37px;
                padding: 0 13px;
            }

                .filter li .icon {
                    width: 15px;
                    line-height: 37px;
                }

                .filter li:nth-child(-n + 2) .icon img {
                    width: 12px;
                }

                .filter li:nth-child(3) .icon img {
                    width: 15px;
                }

                .filter li input,
                .filter li span {
                    width: calc(100% - 15px);
                    height: 37px;
                    font-size: 13px;
                }

                .filter li span {
                    line-height: 37px;
                }
    }

    /* 9-2.列表 */
    .pro {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
    }

        .pro li {
            width: calc((100% / 4) - 45px);
            height: auto;
            margin-top: 40px;
        }

            .pro li:not(:nth-child(4n)) {
                margin-right: 60px;
            }

            .pro li p {
                text-align: center;
                font-size: 18px;
                line-height: 32px;
                color: #000000;
                /* 超出隐藏 */
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                padding: 10px 0;
                background-color: #ffffff;
                box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
            }

            .pro li:hover p,
            .pro .active p {
                color: #004282;
            }

    @media (max-width: 1400px) {
        .pro li {
            width: calc((100% / 4) - 15px);
            margin-top: 30px;
        }

            .pro li:not(:nth-child(4n)) {
                margin-right: 20px;
            }

            .pro li p {
                font-size: 16px;
            }
    }

    @media (max-width: 1000px) {
        .pro li {
            width: calc((100% / 3) - 10px);
            margin-top: 20px;
        }

            .pro li:not(:nth-child(4n)) {
                margin-right: 0;
            }

            .pro li:not(:nth-child(3n)) {
                margin-right: 15px;
            }

            .pro li p {
                box-shadow: 0 0 0 0;
                border: 1px solid #f7f7f7;
            }
    }

    @media (max-width: 680px) {
        .pro li {
            width: calc((100% / 2) - 5px);
        }

            .pro li:not(:nth-child(3n)) {
                margin-right: 0;
            }

            .pro li:not(:nth-child(2n)) {
                margin-right: 10px;
            }

            .pro li p {
                font-size: 14px;
                padding: 7px 0;
            }
        .report {
            margin-bottom: 50px;
        }
    }
