.object {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 999;
}
.menu-list {
    position: fixed;
    /*padding: 0 10px;*/
    background-color: #fff;
    display: none;
    font-size: 14px;
    border-top: 1px solid #eee;
    z-index: 999;
    /*top: 1px;*/
}
.pro, .new {
    display: none;
}
.pc-item {
    cursor: pointer;
    line-height: 44px;
    border-bottom: 1px solid #1e50ae;
    padding: 0 12px;
    white-space: nowrap;
}
.pc-item:hover {
    color: #1e50ae;
}
.pc-item:nth-last-of-type(1) {
    border-bottom: none;
}
.banner {
    width: 100%;
    max-height: 600px;
}
.banner img {
    width: 100%;
}
.swiper-pagination-bullet {
    width: 20px !important;
    border-radius: 5px !important;
}
.current-lo {
    display: flex;
    align-items: center;
    padding: 1.7vw 12.5% 0;
}
.current-lo span:nth-last-of-type(1) {
    color: #1e50ae;
}
.products {
    padding:5.7vw 12.5%;
}
.p-title {
    color: #333;
    font-size: 26px;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'cjwlbold';
}
.p-list22 {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}
.p-item22 {
    width: 100%;
    padding: 5%;
}
.p-item22:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    transition: all .3s;
}
/* 商品项 */
.g-img-box {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
}
.g-img {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.g-title {
    color: #000;
    font-size: 20px;
    margin: 15px 0 5px;
    text-align: center;
    font-family: 'cjwlbold';
    font-weight: bold;
}
.model {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
    text-align: center;
}
/* 动画效果 */
.animation {
    -webkit-animation: scale-up-center .4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-center .4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.fixed-contact {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999;
}

/* 工商信息页面的样式 */
.project-list {
    width: 100%;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}
.project-img-box {
    width: 100%;
    overflow: hidden;
}
.project-img-box:hover .project-img {
    transform: scale(1.2);
    transition: all .4s ease-in-out;
}
.project-img {
    width: 100%;
}
@media (max-width: 750px) {
    .g-title {
        font-size: 16px;
    }
    .products {
        padding: 10px 12px;
    }
    .p-list22 {
        grid-template-columns: repeat(2, 1fr);
    }
}