/*
**************************
(C)2016 www.lihk.cn
update: 2025-02-01
person: LiCong
**************************
*/

html,
body,
dl,
dd,
dt,
p {
    margin: 0;
    padding: 0;
}

body {
    background: #FFF;
}

.banner,
.product {
    margin: 0 auto;
    text-align: center;
    max-width: 1240px;
}

.banner img {
    max-width: 100%;
}

.product {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px 10px;
}

.product dl {
    box-sizing: border-box;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.2s;
    margin: 15px;
    width: 100%;
    flex-basis: calc(100%/4 - 30px);
}

.product dd img {
    max-width: 100%;
    border-radius: 8px;
}

.product dt a {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 10px;
    display: block;
    transition: color 0.2s;
}

.product dt p {   
    color: #999;
    margin-top: 5px;
    font-size: 0.82rem;
}

.footer {
    font-size: 0.75rem;
    line-height: 22px;
    font-family: "微软雅黑", Arial, "宋体";
    color: #333;
    text-align: center;
    padding-bottom: 10px;
}

.footer a {
    color: #666;
    text-decoration: none;
}

.footer span {
    padding: 0 5px;
}

@media (max-width: 768px) {
    .product dl {
        flex-basis: calc(100%/2 - 30px);
    }
}

@media (min-width: 768px) {
    .product dl:hover {
        transform: translateY(-10px);
    }
    .product dt a:hover {
        color: #007bff;
    }
}