/* 使用了行内样式 */
/* .titleImg{
    background: url(images/typewriter-2325552.png);
    background-size: cover;
} */
.main{
    width: 100%;
}
/* 分类导航栏 */
.navBar{
    width: 100%;
    background-color: #eeeff1;
    height: 136px;
}
.product{
    width: 60%;
    background-color: #323D47;
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4,25%);
    grid-template-rows: repeat(2,50%);
}
/* 选中的 */
.pitchOn{
    background-color: white;
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 3;
    box-shadow: 0 0 10px #3C3C3C;
}
.product a{
    display: grid;
    justify-content: center;
    align-content: center;
}
.pitchOn h3{
    font-size: 36px;
}
.pitchOn h3::after{
    content: '';
    display: block;
    border-bottom: 3px solid #323D47;
    width: 90px;
    margin: 20px auto;
}
.product h4{
    color: white;
    font-size: 18px;
}
.product a:hover{
    box-shadow: 0 0 10px #3C3C3C;
    background-color: white;
    transition: background-color .3s ease-in-out;
}
.product a:hover .productH4{
    color: black !important;
    transition: color .3s ease-in-out;
}
/* 主要部分机型展示区 */
.mainValue{
    width: 53%;
    margin: 55px auto;
}
.mainValue h5::after{
    content: '';
    display: block;
    border-bottom: 3px solid #323D47;
    width: 100%;
    margin: 20px auto;
}
.productValue{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns:repeat(4,1fr);
    grid-template-rows:repeat(2,1fr);
    justify-content: center;
    grid-gap: 3%; 
}
.pd{
    height: 296px;
    width: 230px;
    background-color: white;
    border: 1px solid #AAAAAA;
}
.pd:hover{
    transition: all .2s  ease-in-out;
    box-shadow: 0 0 10px #AAAAAA;
    border: 1px solid #323D47 !important;
}
.noProduct{
    font-size: 2.25rem;
    margin-bottom: 25rem;
    text-align: center;
}
/* 产品详情图 */
.biaoQianZhi img{
    margin: 50px auto 0;
    width: 60%;
    display: block;
    height: auto;
}
/* vue加载完后显示 */
[v-cloak]{
    display: none;
}

/* productImg 产品列表 */
.productMain{
    position: relative;
    height: 100%;
}
.productMain img{
    width: 100%;
    height: auto;
}
.prodoctTitle{
    height: 35px;
    width: 100%;
    background-color: #323D47;
    position: absolute;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(2,50%);
    align-content: center;
}
.prodoctTitle span{
    background-color: white;
    color: #323D47;
    font-size: 12px;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    margin-left: 5px;
}
.prodoctTitle span:nth-child(1){
    font-size: 16px;
}
.prodoctTitle span:nth-child(2){
    color: white;
    background-color: #323D47;
    margin: 0;
}

/* 多端自适应 */
@media all and (max-width:1010px){
    .product {
        width: 75%;
    }
    .productValue {
        grid-template-columns: repeat(3,1fr);
        margin-bottom: 100px;
    }
    .noProduct{
        font-size: 1.75rem;
    }
}
@media all and (max-width:750px){
    .product {
        width: 100%;
    }
    .productValue {
        grid-template-columns: repeat(2,1fr);
        margin-bottom: 150px;
    }
    .mainValue {
        width: 75%;
        margin: 55px auto;
    }
    .biaoQianZhi img{
        width: 100%;
    }
    /* 产品详情页 返回按钮 */
    .goBack {
        margin: 15px 15px;
        font-family: "iconfont" !important;
        font-size: 35px;
    }
}
@media all and (max-width:550px){
    .productValue {
        grid-template-columns: repeat(1,1fr);
        margin-bottom: 150px;
        row-gap: 40px;
    }

    .pitchOn h3{
        font-size: 20px;
    }
    .product h4 {
        font-size: 14px;
    }
    .pd{
        margin: 0 auto;
    }
    .mainValue {
        width: 85%;
        margin: 55px auto;
    }
    .noProduct{
        font-size: 1.125rem;
    }
}
@media all and (max-width:320px){
    .productValue {
        grid-template-columns: repeat(1,1fr);
        margin-bottom: 150px;
        row-gap: 40px;
    }
    .pitchOn h3{
        font-size: 18px;
    }
    .product h4 {
        font-size: 12px;
    }
    .pd{
        margin: 0 auto;
    }
    .mainValue {
        width: 85%;
        margin: 55px auto;
    }
}