﻿.product .header img{
    width: 100%;
    display: block;
}

.router{
    top: 10px;
    left: 24px;
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    padding: 10px 0;
    /* width: 100%; */
}
.router span{
    padding: 0 8px;
}

.headertitle{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-transform: uppercase;
    font-size: 34px;
    color: #fff;
}

.subnav{
    color: #666;
    border-bottom-color:rgb(217, 223, 224);
    border-bottom-style:solid;
    border-bottom-width:0.8px;
}
.subnavbox{
    width: 80%;
    max-width: 1200px;
    margin:0 auto;
    /* overflow-x: scroll; */
    /* overflow-y: hidden; */
}
.subnavbox li span{
    padding: 16px 0;
    display: inline-block;
    cursor: pointer;
}
.subnavbox ul{
    min-width: 800px;
}

.subnavbox .this{
    color: #007aff;
}
.subnavbox .this span::after{
    content:"";
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #007aff;
}


.contentbox{
    margin: 50px 60px;
}
.contentbox .titlebox{
    margin-bottom: 32px;
}
.contentbox form{
    display: flex;
    align-items: center;
}
.contentbox p{
    color: #666;
    font-size: 20px;
    font-weight: 700;
}
.contentbox .selectbox{
    height: 34px;
    padding: 5px 10px;
    border: 1px solid #f1f1f1 !important;
    outline: none;
}
.inputbox{
    height: 34px;
    padding: 5px 10px;
    border: 1px solid #f1f1f1 !important;
    outline: none;
    margin: 0 12px;
}
.btn{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #369ce0;
    height: 34px;
    width: 60px;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    outline: none;
    border: none;
}
.btn svg{
    width: 16px;
}

.paginate{
    margin-top: 40px;
}
.paginate .item.current {
    border-color: #369ce0;
    background-color: #369ce0;
    color: #fff;
}

.paginate .item {
    width: 40px;
    height: 40px;
    margin: 0 1px 5px 5px;
    line-height: 40px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    color: #999;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.contentbox .list ul{
    display: flex;
    flex-wrap: wrap;
    gap: 24px 12px;
}
.contentbox .list ul li{
    flex:  0 0 calc(25% - 12px);
}
.contentbox .list ul li .pic img{
    width: 100%;
}
.contentbox .list .name{
    font-size: 14px;
    color: #666;
    margin-top: 20px;
}
.contentbox .list .details{
    color: #369ce0;
    font-size: 12px;
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.contentbox .list .details img{
    width: 20px;
    margin-left: 12px;
}
@media (min-width: 1000px) and (max-width: 1200px) {
    .contentbox .list ul li{
        flex:  0 0 calc(33.3% - 12px);
    }
}
@media (max-width: 1000px) {
    .contentbox {
        margin: 30px 20px;
    }    
    .titlebox{
        display: block;
    }
    .titlebox form{
        margin-top: 20px;
    }
    .contentbox .list ul li{
        flex:  0 0 calc(50% - 12px);
    }
    .subnavbox{
        overflow-x: scroll;
        overflow-y: hidden;
    }
    .headertitle {
        font-size: 20px;
    }
}
@media (max-width: 500px) {
    .contentbox {
        margin: 20px 10px;
    }    
    .titlebox{
        display: block;
    }
    .titlebox form{
        margin-top: 20px;
    }
    .contentbox .list ul li{
        flex:  0 0 calc(100%);
    }
}
