.menu-list li a {
    padding: 0 10px;
}

/*中药配方颗粒*/
.granule-box {
    display: block;
}

.productIntro-box, .dmDesc-box, .imDesc-box {
    line-height: 24px;
    color: #333;
    background: #fff;
    border-radius: 3px;
    text-indent: 2em;
    padding: 20px;
    margin: -32px 0 20px;
    position: relative;
    z-index: 1;
}

.productIntro-box {
    background: #f5f5f5;
    margin-top: 0;
}

.product-list {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product-list li {
    width: auto;
    flex: 1;
    margin: 0 15px 15px 0;
}

.product-list li:nth-child(4n), .product-list li:last-child {
    margin-right: 0;
}

.productItem-box {
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
    padding: 10px 10px 0 10px;
    position: relative;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.product-list li:hover .productItem-box {
    box-shadow: 0 0 35px 0 rgba(154, 161, 171, .15);
    transition: all .2s;
}

.productImg-box {
    width: 240px;
    height: 220px;
    overflow: hidden;
    margin: 0 auto;
}

.productImg-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.product-list li:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.productItem-box h2 {
    height: 45px;
    margin: 0 -10px;
    padding: 0 10px;
    position: relative;
}

.productItem-box h2::before {
    content: "";
    width: 0;
    height: 3px;
    background: #90c42f;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.productItem-box h2 p {
    height: 40px;
    line-height: 40px;
    font-size: 17px;
    font-weight: bold;
    color: #333;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.productItem-box h2 i {
    display: none;
    height: 40px;
    line-height: 44px;
    font-size: 20px;
    color: #333;
    position: absolute;
    bottom: 5px;
    right: -20px;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.product-list li:hover h2::before {
    width: 100%;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.product-list li:hover h2 p {
    padding-right: 10px;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.product-list li:hover h2 i {
    right: 15px;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

/*智能调配系统*/
.merit-box {
    background: #f5f5f5;
    padding: 20px;
    margin-top: 5px;
}

.merit-box h2 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    color: #666;
}

.merit-box p {
    line-height: 24px;
    color: #666;
}

.merit-box p b {
    display: block;
    font-size: 15px;
    line-height: 30px;
    color: #333;
    padding-top: 10px;
}

.systemIntro-box {
    color: #666;
    /*background: rgba(57,216,188, .3);*/
    background: #f5f5f5;
    margin-bottom: 20px;
    padding: 20px;
}

.systemIntro-box p {
    line-height: 24px;
    text-indent: 2em;
}

.systemMain-box .title-name {
    font-size: 18px;
    font-weight: bold;
    padding: 20px 0 10px;
}

.systemMain-box .img-system {
    max-width: 100%;
    margin: 20px auto;
}

.showImg-list {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}

.showImg-list li {
    width: calc((100% - 15px) / 2);
    height: 20vw;
    margin: 0 15px 15px 0;
}

.showImg-list li:nth-child(2n) {
    margin-right: 0;
}

.showImg-list li .img-box {
    width: 100%;
    height: 20vw;
    overflow: hidden;
}

.showImg-list li .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.showImg-list li:hover .img-box img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.assemble-list li {
    width: calc((100% - 30px) / 3);
}

.assemble-list li:nth-child(2) {
    margin-right: 15px;
}

.assemble-list li:last-child {
    margin-right: 0;
}

.dmDesc-box, .imDesc-box {
    background: #f5f5f5;
    margin-top: 0;
}

.pcmg-list li {
    display: -webkit-flex;
    display: flex;
    background: #f5f5f5;
    margin-bottom: 20px;
    padding: 20px;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.pcmg-list li:hover {
    box-shadow: 0 0 35px 0 rgba(154, 161, 171, .15);
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.pcmg-list li:last-child {
    margin-bottom: 0;
}

.pcmg-list li .img-box {
    width: 238px;
    height: 218px;
    overflow: hidden;
}

.pcmg-list li .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.pcmg-list li:hover .img-box img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.pcmg-list li .desc-box {
    width: calc(100% - 238px);
    padding-left: 20px;
}

.pcmg-list li .desc-box p {
    line-height: 31px;
    font-size: 15px;
    color: #333;
}

.pcmg-list li .desc-box span {
    color: #656565;
}

#my-patentdrug-paging {
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 30px;
}

/*国内市场*/
.dm-list {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
}

.dm-list li {
    width: calc((100% - 15px) / 2);
    margin: 0 15px 15px 0;
}

.dm-list li:nth-child(2n) {
    margin-right: 0;
}

.dm-list li .img-box {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.dm-list li .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.dm-list li:hover .img-box img, .im-list li:hover .img-box img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

/*国际市场*/
.imDesc-box p {
    line-height: 30px;
    color: #333;
}

.im-list {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
}

.im-list li {
    width: calc((100% - 15px) / 2);
    margin: 0 15px 15px 0;
    position: relative;
}

.im-list li:nth-child(2n) {
    margin-right: 0;
}

.im-list li .img-box {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.im-list li .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .2s;
}

.im-list li:last-child {
    width: 100%;
}

.im-list li:last-child .img-box {
    height: auto;
}

/* 响应式布局 */
@media (max-width: 1350px) {
    .dm-list li .img-box {
        height: 24.5vw;
    }

    .im-list li .img-box {
        height: 23vw;
    }
}

@media (max-width: 768px) {
    .pcmg-list li {
        margin-bottom: 15px;
        padding: 15px;
    }

    .dm-list, .im-list {
        flex-direction: column;
    }

    .dm-list li, .im-list li {
        width: 100%;
        margin-right: 0;
    }

    .dm-list li .img-box {
        height: 46vw;
    }

    .im-list li .img-box {
        height: 42vw;
    }
}

@media (max-width: 640px) {
    .showImg-list li {
        width: 100%;
        height: 40vw;
        margin-right: 0 !important;
    }

    .showImg-list li .img-box {
        height: 40vw;
    }

    .pcmg-list li {
        flex-direction: column;
    }

    .pcmg-list li .img-box {
        margin: 0 auto;
    }

    .pcmg-list li .desc-box {
        width: 100%;
        padding-left: 0;
    }
}
