body{
    background-color: #F5F6F8;
}
.banner-mask{
    background-color: rgba(0,0,0,.3);
}
.product-outer{
    max-width: 910px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 15px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}
.product-left{
    width: 240px;
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 84px;
}
.product-left .filter .tt{
    font-size: 18px;
    font-weight: bold;
}
.product-left .filter .tt .iconfont{
    color: #285bdb;
    font-size: 20px;
}
.product-left .filter .ipt{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #E0E0E0;
    height: 40px;
    border-radius: 8px;
    padding: 0 10px;
    gap: 10px;
}
.product-left .filter .ipt input{
    outline: none;
    font-size: 14px;
    flex: 1;
}
.product-left .category{
    margin-top: 20px;
}
.product-left .category h3{
    font-weight: bold;
    font-size: 14px;
}
.product-left .category ul{
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}
.product-left .category ul li{
    height: 36px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 10px;
    border-radius: 8px;
    transition: all .3s;
}
.product-left .category ul li a{
    display: block;
    width: 100%;
    font-size: 14px;
    color: #666;
}
.product-left .category ul li:hover{
    background-color: #f5f6f8;
    transform: translateX(4px);
}
.product-left .category ul li.active{
    background-color: #285bdb;
    color: #fff;
}
.product-left .category ul li.active a{
    color: #fff;
}

.product-right{
    flex: 1;
}
.product-right .tt{
    font-size: 14px;
    color: #666;
}
.product-right ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
}
.product-right ul li{
    width: calc(50% - 24px / 2);
    background-color: #fff;
    border-radius: var(--default-border-radius);
    overflow: hidden;
}
.product-right ul li:hover{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
    transform: translateY(-8px);
    transition: all .3s;
}
.product-right ul li .img-box{
    position: relative;
    aspect-ratio: 2.88/3;
}
.product-right ul li .img-box .labels{
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.product-right ul li .img-box .cate{
    font-size: 12px;
    color: #fff;
    height: 26px;
    border-radius: 13px;
    padding: 0 15px;
    background-color: #285bdb;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-right ul li .img-box .model{
    font-size: 12px;
    height: 26px;
    border-radius: 13px;
    padding: 0 15px;
    border: 1px solid #26425F;
    color: #26425F;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-right ul li .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-right ul li .info{
    padding: 24px;
    color: #111;
}
.product-right ul li .info h3{
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
}
.product-right ul li .info p{
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}
.product-right ul li .info .labels{
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    gap: 10px;
}
.product-right ul li .info .labels .label{
    background-color: #f5f6f8;
    padding: 4px 8px;
    font-size: 12px;
    color: #666;
    border-radius: 6px;
}
.product-inquiry-wrap{
    margin: 40px auto 0;
    max-width: 910px;
    width: calc(100% - 30px);
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 20px;
    padding: 28px;
    color: #1a1a1a;
    box-shadow: 0 18px 40px rgba(26, 56, 86, 0.08);
}
.product-inquiry-head h2{
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}
.product-inquiry-head p{
    margin-top: 8px;
    font-size: 13px;
    color: #6b7788;
}
.product-inquiry-form{
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.product-inquiry-form .row{
    display: flex;
    gap: 14px;
}
.product-inquiry-form .ipt,
.product-inquiry-form .txt{
    background: #f7f9fc;
    border: 1px solid #e4eaf1;
    border-radius: 10px;
    padding: 0 12px;
}
.product-inquiry-form .ipt{
    flex: 1;
    height: 44px;
    display: flex;
    align-items: center;
}
.product-inquiry-form .ipt input,
.product-inquiry-form .txt textarea{
    width: 100%;
    color: #1a1a1a;
    background: transparent;
    outline: none;
    font-size: 14px;
}
.product-inquiry-form .ipt input::placeholder,
.product-inquiry-form .txt textarea::placeholder{
    color: #8a97a8;
}
.product-inquiry-form .txt{
    padding-top: 12px;
    padding-bottom: 12px;
}
.product-inquiry-form .txt textarea{
    min-height: 100px;
    resize: vertical;
}
.product-inquiry-form .sub button{
    height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    background-color: #EF8201;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(239, 130, 1, 0.18);
}
.product-inquiry-form .sub button:hover{
    background-color: #d07301;
}

@media screen and (max-width: 940px) {
    .product-right ul{
        gap: 15px;
    }
    .product-outer{
        gap: 20px;
    }
    .product-right ul li{
        width: calc(50% - 15px / 2);
    }
}

@media screen and (max-width: 768px) {

    .product-left{
        position: relative;
        top: 0;
    }
    .product-outer{
        flex-direction: column;
        padding-top: 50px;
    }
    .product-inquiry-wrap{
        margin-top: 30px;
        padding: 22px;
        border-radius: 18px;
    }
    .product-inquiry-form .row{
        flex-direction: column;
    }
    .product-inquiry-form .row .ipt{
        flex: auto;
    }
}

@media screen and (max-width: 580px) {

    .product-left{
        width: 100%;
    }
    .product-right ul{
        flex-direction: column;
    }
    .product-right ul li{
        width: 100%;
    }
    .product-inquiry-wrap{
        width: calc(100% - 24px);
        padding: 18px;
    }
}
