.productmain {
    padding-top: 60px;
    padding-bottom: 80px;
}
.productmain .title {
    font-size: 36px;
    color: #000;
    font-weight: bold;
    text-align: center;
}
.productmain .des {
    text-align: center;
    margin-top: 24px;
    font-size: 16px;
    line-height: 28px;
    color: #888888;
}
.productmain .typewrap {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap; /* 防止内容换行 */  
} 
.productmain .typewrap a {
    display: inline-block;
    width: 140px;
    height: 50px;
    border-radius: 25px;
    background-color: #f1f2f4;
    margin-right: 20px;
    text-align: center;
    line-height: 50px;
    color: #444444;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.productmain .typewrap a.active {
    background-color: #007fe8;
    color: #fff;
}
.productmain .typewrap::-webkit-scrollbar{width:0px;height:0px;overflow:auto}

.mainwrap {
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
}
.mainwrap .productitem {
    width: calc((100% - 75px)/4);
    margin-right: 25px;
    margin-bottom: 30px;
    border: 1px solid #eeeeee;
}
.mainwrap .productitem:nth-child(4n){
    margin-right: 0;
}

.mainwrap .productitem .pic {
    padding: 30px 20px;
    overflow: hidden;
}
.mainwrap .productitem .pic img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    transition: all 1.0s;
}
.mainwrap .productitem h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    border-top: 1px solid #eeeeee;
    padding-left: 30px;
    font-size: 18px;
    color: #000;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.mainwrap .productitem h2 i {
    font-style: normal;
    width: calc(100% - 60px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.mainwrap .productitem h2 span {
    width: 60px;
    height: 60px;
    font-size: 21px;
    line-height: 60px;
    text-align: center;
    border-left: 1px solid #eeeeee;
    color: #aaaaaa;
}
.mainwrap .productitem:hover img{
    transform: scale(1.2);
}
.mainwrap .productitem:hover h2 span {
    color: #00911a;
}

/* 产品详情 */
.productdetail {
    padding-top: 60px;
    padding-bottom: 80px;
}
.productdetail .infomain {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.productdetail .infomain .pic {
    width: 600px;
    overflow: hidden;
}
.productdetail .infomain .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.productdetail .infomain .info  {
    flex: 1;
    margin-left: 60px;
}
.productdetail .infomain .info h2 {
    font-size: 30px;
    line-height: 46px;
    color: #000;
    font-weight: bold;
}
.productdetail .infomain .info p {
    margin-top: 30px;
    line-height: 32px;
    font-size: 18px;
    color: #666666;
}
.productdetail .infomain .info .contactwrap {
    display: flex;
    margin-top: 30px;
}
.productdetail .infomain .info .contactwrap a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    background-color: #df2f36;
    color: #fff;
    margin-right: 20px;
    font-size: 20px;
}
.productdetail .infomain .info .contactwrap a:nth-child(2){
    background-color: #007fe8;
}
.productdetail .infomain .info .contactwrap a span {
    font-size: 30px;
    margin-right: 15px;
}   
.productdetail .infomain .info .contactwrap a:last-child{
    margin-right: 0;
}
.productdetail .infonav {
    margin-top: 80px;
    display: flex;
    align-items: center;
    height: 80px;
    border-bottom: 1px solid #e5e5e5;
}
.productdetail .infonav a {
    width: 220px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 20px;
    color: #444444;
}
.productdetail .infonav a.active {
    color: #fff;
    background-color: #007fe8;
    font-weight: bold;
}

/* 详情 */
.section {
    padding-top: 50px;
    padding-bottom: 60px;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
}   
.section h2 {
    font-size: 30px;
    line-height: 46px;
    color: #000000;
    font-weight: bold;
}
.section .cotent {
    margin-top: 30px;
    width: 100%;
    font-size: 18px;
    line-height: 34px;
    color: #444444;
}   
.recomwrap {
    margin-top: 60px;
    width: 100%;
}
.recomwrap h2 {
    font-size: 30px;
    line-height: 46px;
    font-weight: bold;
    color: #000;
}
.recomwrap .recommain {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}
.recomwrap .recommain .recomitem {
    width: calc((100% - 75px)/4);
    margin-right: 25px;
    border: 1px solid #eeeeee;
    margin-bottom: 15px;
}
.recomwrap .recommain .recomitem:nth-child(4n){
    margin-right: 0;
} 

.recomwrap .recommain .recomitem .pic {
    padding:30px 20px;
    overflow: hidden;
}
.recomwrap .recommain .recomitem .pic img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    transition: all 1.0s;
}
.recomwrap .recommain .recomitem:hover img {
    transform: scale(1.2);
}   
.recomwrap .recommain .recomitem h4 {
    display: flex;
    justify-content: space-between;
    height: 60px;
    border-top: 1px solid #eeeeee;
    padding-left: 30px;
    font-size: 18px;
    font-weight: bold;
    line-height: 60px;
}
.recomwrap .recommain .recomitem h4 i {
    font-style: normal;
    width: calc(100% - 60px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.recomwrap .recommain .recomitem h4 span {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-left: 1px solid #eeeeee;
    font-size: 20px;
    color: #aaaaaa;
}
.recomwrap .recommain .recomitem:hover h4 span {
    color: #00911a;
}


@media only screen and (max-width: 600px) {
    .productmain .typewrap {
        display: block;
    }
    .productmain {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .mainwrap {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .mainwrap .productitem {
        width: calc((100% - 15px)/2);
        margin-right: 15px;  
        margin-bottom: 15px;  
    }
    .mainwrap .productitem:nth-child(2n){
        margin-right: 0px;
    }
    .mainwrap .productitem .pic {
        padding: 15px 10px;
    }
    .mainwrap .productitem h2 {
        padding-left: 15px;
        font-size: 14px;
    }
    .mainwrap .productitem h2 span {
        font-size: 16px;
    }

    /* 产品详情 */
    .productdetail {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .productdetail .infomain {
        flex-direction: column;
    }
    .productdetail .infomain .pic {
        width: 100%;
    }
    .productdetail .infomain .info {
        flex: none;
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }
    
    .productdetail .infomain .info .contactwrap a {
        width: calc((100% - 20px)/2);
        height: 60px;
        line-height: 60px;
    }
    .productdetail .infonav {
        margin-top: 40px;
        height: 60px;
    }
    .productdetail .infonav a {
        height: 60px;
        width: calc(100%/4);
        line-height: 60px;
        font-size: 15px;
    }

    .recomwrap .recommain .recomitem {
        width: calc((100% - 15px)/2);
        margin-right: 15px;
    }
    .recomwrap .recommain .recomitem:nth-child(2n){
        margin-right: 0;
    }
    .recomwrap .recommain .recomitem .pic {
        padding: 15px 10px;
    }
    .recomwrap .recommain .recomitem h4 {
        font-size: 14px;
        padding-left: 15px;
    }

    .section h2 {
        font-size: 25px;
    }
    .recomwrap h2 {
        font-size: 25px;
    }

}

@media only screen and (min-width: 601px) and (max-width: 1199px) {
    .productmain .typewrap {
        display: block;
    }
    .productmain {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .mainwrap {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .mainwrap .productitem {
        width: calc((100% - 15px)/2);
        margin-right: 15px;  
        margin-bottom: 15px;    
    }
    .mainwrap .productitem:nth-child(2n){
        margin-right: 0px;
    }
    .mainwrap .productitem .pic {
        padding: 15px 10px;
    }
   
    .mainwrap .productitem h2 {
        padding-left: 15px;
        font-size: 14px;
    }
    .mainwrap .productitem h2 span {
        font-size: 16px;
    }

     /* 产品详情 */
     .productdetail {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .productdetail .infomain {
        flex-direction: column;
    }
    .productdetail .infomain .pic {
        width: 100%;
    }
    .productdetail .infomain .info {
        flex: none;
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }

    .recomwrap .recommain .recomitem {
        width: calc((100% - 15px)/2);
        margin-right: 15px;
    }
    .recomwrap .recommain .recomitem:nth-child(2n){
        margin-right: 0;
    }
    .recomwrap .recommain .recomitem .pic {
        padding: 15px 10px;
    }
   
    .recomwrap .recommain .recomitem h4 {
        font-size: 14px;
        padding-left: 15px;
    }

    .section h2 {
        font-size: 25px;
    }
    .recomwrap h2 {
        font-size: 25px;
    }
}