body {
    min-height: 100vh;
    overflow: auto;
    overflow-x: hidden;
    background: #efefef;
}

.p-d-banner {
    background-image: url('/assets/images/product/1.png');background-size: cover;background-position: center;height: 310px;width: 100vw;
}

.p-d-banner-cate {
    width:70vw;
    height: 100%;
    display: flex;
    justify-content: center;flex-direction: column;margin: 0 auto;
}

.p-d-banner-title {
    font-size:32px;color:#fff;font-weight: bold;width:340px;text-align: left;
}
.p-d-banner-sub-title {
    font-size:26px;color:#fff;width:340px;text-align: left;
}

.p-d-main {
    width:85vw;
    margin:8vh auto;
    box-sizing: border-box;
    padding:20px;
    background: #fff;
}
.p-d-main-left {
    width: 40%;
    box-sizing: border-box;
    border: 1px solid #deeded;
    border-radius: 8px;
}
.p-d-main-right {
    width: 60%;
    padding:10px 20px;
    box-sizing: border-box;
}

ul li {
    list-style:none
}

.w-item {
    width: 15%;
    display: inline-block;
}

.c-content>p {
    white-space: pre-wrap;
}

@media (max-width: 768px) {
    .p-d-main {
        width:90%;
        flex-direction: column;
    }

    .p-d-main-left {
        width:100%;
    }

    .p-d-main-right {
        width:100%;
    }

    .w-item {
        width: 100%;
        display: block;
    }
}