
body {
    margin: 0;
    padding: 0;
    font-family: "Source Han Sans", "Noto Sans CJK SC", Arial, sans-serif;
    overflow-x: hidden; 
}


.top {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-bottom: 0px solid #ddd;
    height:40px;
    padding: 3px;
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    z-index: 991;
    
}

/* 导航栏 */
.menu-icon {
    font-size: 37px;
    color: rgb(160, 160, 160);
    cursor: pointer;
    margin-left: 7px;
    margin-right: 5px;
}

/* 搜索栏 */
.search-bar {
    width: 100%; 
    height: 35px;
    margin-top: 3px;
    margin-right: 3px;
}


#searchinput {
    background-color: #eeeeee;
    width: 100%;
    height: 35px;
    border: 1px solid #eeeeee;
    border-radius: 7px;
    box-sizing: border-box;
    padding: 5px;
    font-size: 15px;
    color: gray; 
    text-align: center; 
}


/* 筛选框 */
.filters {
    display: flex;
    height:37px;
    position: fixed; 
    margin-top: 3px;
    top: 43px;
    left: 0;
    right: 0;
    z-index: 990; 
}

.filters select {
    border:none;
    padding: 5px;
    width: 100%;
    font-size: 14px;
    text-align: center; 
}

#producttype {
    background-color: #ffffff;
    color:#7a7a7a;    
}

#pricetype {
    background-color: #ffffff;
    color:#7a7a7a;    
}  

.product-list {  
    flex-wrap: wrap;
    margin-left: 7px;
    margin-right: 7px;
    margin-top: 83px;
    gap: 7px;
}

a {
    text-decoration: none;
}

.product-content {
    background-color: #ffffff;
    width: 100%;   
    height: auto;
    box-sizing: border-box;
    border-top: 1px solid #f1f1f1;
    display: flex;
} 

.product-image {
    width: 100px;
    height: 100px; 
    margin-left: 20px; 
    margin-top: 7px;
    margin-bottom: 5px;
}

.product-infor {
    background-color: #ffffff;
    overflow: auto; 
    margin-top:5px;
    margin-left:17px;

    display: flex;
    flex-direction: column; 
    min-height: 100px;

}

.countdown-container {
    display: flex;
    align-items: center;
    font-size: 10px;
    margin-top: auto;
    margin-bottom: 3px;
}

.countdown-message {
    color: rgb(255, 255, 255);
    background-color: #ff0000;
    border: 0.5px solid rgb(255, 0, 0);
    padding:1px;
}

.countdown {
    border: 1px solid rgb(255, 0, 0);
    color: red;
    padding-top: 2px;
    padding-left: 2px;
    padding-right: 2px;
}

.product-title {
    color: #000;
    font-size: 15px;
    overflow:auto; 
    margin: 0px;
}

.product-price { 
    margin-top:2px;
    color: #171717;
    font-size: 12px;
    white-space: pre-wrap; 
    word-wrap: break-word;
    overflow:auto; 
}


.product-price-type {
    font-size: 12px;
    color: rgb(255, 0, 0);
    margin-right: 5px;
}


.product-detail {
    white-space: normal; /* 保留空格和换行符 */
    word-wrap: break-word; /* 自动换行 */
    line-height: 1.5; 
    color: #5e5e5e;
    font-size: 13px;
    padding-top: 3px;
    padding-left: 137px;
} 

.no-data {
  font-size: 12px;
  color: #5e5e5e;
  text-align: center;
  margin-top: 100px;
}