/**动画开始**/
@keyframes scaless{
    0%{
        transform: scale(1);
    }
    50%,75%{
        transform: scale(3);
    }
    78%,100%{
        transform: scale(0);
    }
}
/* 定义动画名称 */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* 将动画应用到 menu-list 的 li 元素上 */
.menu-list li {
    animation: fadeInScale 1s ease-in-out forwards;
    opacity: 0;
}
/**动画结束**/
.bg{
    background: url(../img/bg.jpg) no-repeat;
    background-size: cover;
    background-position: left bottom;
    width: 100%;
    min-height: 100vh;
}
.normal-page{
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.header-box{padding:10px 0.8rem;}
.logo{
    width: 6rem;
}
.menu-list{
    position: relative;
    margin-top: 34%;
    text-align: left;
    z-index: 99;
    padding-left: 0;
}
.menu-list li{
    margin:20px 0;
    padding-left:20px;
    width: 30%;
    position: relative;
    border-bottom: 1px solid #fff;
}
.menu-list li::after{
    content: '';
    display: block;
    position: absolute;right: -4px;top:20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.7;
    background: radial-gradient(circle at center, #ffffff, #ffffff);
    /* animation: scaless 1s infinite cubic-bezier(0,0,.49,1.02); */
}
.menu-list li a{
    color:#fff;
}

/* 列表页 */
.pro-list{
    height: 91vh;overflow-y:auto;
}
.pro-list .list{
    padding-left:0;
    padding-top: 16px;
    display: flex;flex-direction: column;
	margin-top: 6vh;
}
.pro-list .list li{
    display: flex;flex-direction: column;
    gap: calc(min(calc(100vw / 36), calc(1800px / 36))* 4);
    grid-template-columns: repeat(1, minmax(0, 1fr));
	margin-bottom:4vh;
}
.list-img-box{
    position: relative;height: 0;padding-top: 62.5%;
}
.list-img{
    width: 100%;
    height: 5vh;
    overflow: hidden;bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
}
.list-img img{
    width: 100%;height: 100%;
    object-fit: cover;
}
.list-content{
    width: 92%;
    margin: calc(min(calc(100vw / 18), calc(1800px / 18))* -2) auto 4vh auto;
    padding:4vh 4vh;
    background: linear-gradient(90deg, #fff 35.34%, hsla(0, 0%, 100%, .968) 79.74%, hsla(0, 0%, 100%, .93) 99.97%);
    box-shadow: 0 0 14px rgba(0,0,0,.08);
    z-index: 50;
    text-align: left;
}
.list-content a{
	display: block;
	text-align: right;	
}



/* 详情页 */
.product-img{
    width: 100%;
    padding:10px 0;
}

.product-img img{
    width: 100%;
}
.detail-content h4{
	text-align: center;
    color:#111827;
}
.detail-content .date{
    text-align: center;
    display: block;
}
.detail-content .num{
    color:#d9d9d9;
}
.detail-content{
    list-style: disc;
    text-align: left;
	margin: 1.25rem;
}
.detail-content img {
	width: auto;
	margin: 0 auto;
	max-width: 100%;
	margin-left：auto；margin-right：auto；
}
.detail-content p{
    text-align: left;
	margin: 0;
	padding: 0;
}
/* 详情列表页 */
.list-pro{padding-left: 0;}
.list-pro li a{
    display: flex;justify-content: space-between;align-items: center;
    border-bottom:1px solid #eee;
    padding:2vh 0;color:#6b7280;
}
.list-pro li img{
    width: 16vh;
    height: 8vh;overflow: hidden;
    object-fit: cover;
}