/* 产品中心 */
#home-product {
    width: 100%;
    background: #fff;
}

.product-box {
    width: 1200px;
    height: 100%;
    padding: 80px 0;
    margin: 0 auto;
}

.product-box-top {
    width: 100%;
    margin-bottom: 42px;
    display: flex;
    justify-content: space-between;
    padding-top:3.5em;
}

.product-title p:first-child {
    font-size: 30px;
    color: #393d3f;
    margin-bottom: 0;
}

.product-title p:last-child {
    font-size: 24px;
    color: #393d3f;
}

.product-nav ul {
    display: flex;
    margin-top: 34px;
}

.product-nav ul li {
    list-style: none;
    /* width: 88px; */
    height: 33px;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    text-align: center;
    line-height: 31px;
    color: #999999;
    margin-left: 8px;
    cursor: pointer;
    transition: background 0.4s;
    padding: 0 18px 0 18px;
}

.product-nav ul li:hover {
    height: 33px;
    line-height: 34px;
    background: #004088;
    border: none;
    color: #fff;
    padding: 0 19px 0 19px;
}
.product-nav ul li.pro-active{
    height: 33px;
    line-height: 34px;
    background: #004088;
    border: none;
    color: #fff;
    padding: 0 19px 0 19px;
}

.box-main {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
a{
    color: #393d3f;
}
.box-main a:hover{
    text-decoration: none;
    color: #393d3f
}
.product {
    width: 376px;
    height: 400px;
    margin-bottom: 20px;
    cursor: pointer;
}



.product:hover img {
    transform: scale(1.2);
}

.product-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-img img {
    transition: all 0.4s;

}

.product-msg {
    width: 100%;
    height: 100px;
    text-align: center;
    padding-top: 22px;
}

.product-msg p:first-child {
    font-size: 18px;
    line-height: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #393d3f;
}

.product-msg p:last-child {
    font-size: 16px;
    line-height: 30px;
    color: #b1b1b1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}