
body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

/*#header-container {*/
/*    width: 100%;*/
/*    background: #fff;*/
/*    height: 3.125vw; !* 60px / 1920 * 100 *!*/
/*    !* border-bottom: 0.052vw solid #eee; *!*/
/*}*/

.content-list {
    display: flex;
    flex: 1;
    margin-top: 1.042vw; /* 20px / 1920 * 100 */
    min-height: 50vh;
}

.main-content {
    flex: 1;
    margin: 0 1.042vw; /* 20px / 1920 * 100 */
    
}

.header-image {
    width: 100%;
    height: 7.813vw; /* 150px / 1920 * 100 */
    background-color: #333;
    margin-bottom: 1.042vw; /* 20px / 1920 * 100 */
    display: flex;
    align-items: center;

    color: white;
}

.header-image {
    width: 100%;
    height: 7.813vw; /* 150px / 1920 * 100 */
    /*background-color: #333;*/
    background-image: url('/assets/images/product_bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-bottom: 1.042vw; /* 20px / 1920 * 100 */
    display: flex;
    align-items: center;
    color: white;
}

.header-image h1 {
    font-size: 2.25vw;
    color: white;
    margin-left: 1.542vw;
}

.product-grid {
    display: grid;
    gap: 1.042vw; /* 20px / 1920 * 100 */
}

.product-card {
    cursor: pointer;
    /*border: 0.052vw solid #ddd; !* 1px / 1920 * 100 *!*/
    border: 0.052vw solid rgba(51, 153, 255, 0.38); /* 1px / 1920 * 100 */
    padding: 1.042vw; /* 20px / 1920 * 100 */
    display: grid;
    grid-template-columns: 10.417vw 1fr; /* 200px / 1920 * 100 */
    gap: 1.042vw; /* 20px / 1920 * 100 */
    /* background: #fff; */
}

.product-image {
    width: 100%;
    height: 7.813vw; /* 150px / 1920 * 100 */
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 添加图片响应式样式 */
.product-image img {
    width: 120%;
    height: 120%;
    object-fit: cover; /* 保持图片比例并填充容器 */
    object-position: center; /* 居中显示图片 */
    transition: transform 0.3s ease; /* 添加悬停效果的过渡动画 */
}
.product-title {
    text-align: center;
    margin-left: 0.625vw; /* 12px / 1920 * 100 */
    font-size: 0.9vw;
    font-weight: 10px;
    margin-top: 20px;
    color: rgb(99, 99, 234);
}

.product-details h3 {
    margin-bottom: 0.521vw; /* 10px / 1920 * 100 */
    color: #333;
    font-size: 1.55vw;
}

.product-features {
    list-style: none;
    padding-left: 0.1vw;
    margin-top: 0.521vw; /* 10px / 1920 * 100 */
}

.product-features li {
    margin-bottom: 0.26vw; /* 5px / 1920 * 100 */
    position: relative;
    padding-left: 1.81vw; /* 15px / 1920 * 100 */
    font-size: 1.05vw;
}

.product-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    padding-left: 1.1vw; /* 15px / 1920 * 100 */
}

/*#footer-container {*/
/*    width: 100%;*/
/*    background: #333;*/
/*    color: white;*/
/*    padding: 1.042vw 0; !* 20px / 1920 * 100 *!*/
/*    margin-top: 1.042vw; !* 20px / 1920 * 100 *!*/
/*}*/
.no-product {
    text-align: center;
    font-size: 0.9375vw;
    color: #999;
    margin-top: 2.6042vw;
    margin-bottom: 2.6042vw;
}


