@import url(https://fonts.googleapis.com/earlyaccess/cwtexfangsong.css);
body{
    font-family: 嚙踐�TeXFangSong嚙踝蕭, serif;
    padding:0;
    margin:0;
}
.bg {

 
    background-position: top center;
    background-position-y: 58px

}

.act-main {
    width:100%;
    max-width: 1200px;
    margin: 0 auto;
}
.act-main img{
    width:100%;
    animation: breathe 3s ease-in-out infinite
}

@keyframes breathe {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.act-block {
    width: 1100px;
    margin: 0 auto 38px;

}

.act-product-block {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: #661c1cda;
    gap: 20px;
    grid-gap:20px;
    border-radius: 0 0 5px 5px;
    padding: 15px;
}

.act-block-banner {
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px 5px 0 0;
    background:#ff5c61;
}

.act-block-banner-title {
    font-size: 36px;
    font-weight: bold;
    padding: 10px 0;
    color: #9c2f00; /*FFF8DC*/
    text-shadow: 1px 5px 5px #ffffff; /*913639*/
}

.act-product {
    /*border: 1px solid #d6d5d7;*/
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    flex: 1 1 auto;
    border-radius: 10px;
    background:#fffdf9;
    transition: transform 0.3s ease;
}
.act-product:hover{
    transform: scale(1.2);
    /*transform-origin: top;*/
    border: 2px solid #ffa826;
    box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.5);
    
}

.act-product img{
    width: 230px;
    height: 210px;
    object-fit: contain;
}
.act-product-slogan {
    color: #000000;
    border-radius: 20px;
    background: #fff066 ; /*fff066*/
    padding: 5px;
    text-align: center;
    margin: 15px 0;
}

.act-product-name,
.act-product-name a,
.act-product-name a:hover {
    font-weight: bold;
    color: #000;
    text-decoration: none;
    margin-bottom: 10px
}

.act-product-priceset {
    display: flex;
    justify-content: space-around;
    align-items: center
}

.act-product-pricelabel {
    color: #ffffff;
    font-size: 14px;
    border-radius: 10px;
    padding: 5px 10px;
    background:#25b338;
}

.act-product-price {
    color: #f75322;
    font-size: 30px;
    font-weight: bold;
}

@media screen and (max-width: 1024px) {

    .act-product-block {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {

    .act-main,
    .act-block {
        width: 100%;
    }

    .act-product-block {
        grid-template-columns: 1fr 1fr;
    }

    .act-block-banner {
        text-align: center;

    }

    .act-block-banner-title {
        font-size: 24px;
        padding: 15px;
    }

}

@media screen and (max-width: 450px) {
    .act-product-block {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        background: #fff;
    }
}