.afterpay-page{
    box-sizing: border-box;
    width: 1000px;
    margin: 0 auto;
}

.afterpay-page *{
    box-sizing: border-box;
}

.afterpay-section-title{
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin: 30px 0;
}

.afterpay-p2-wrapper{
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
}

.afterpay-p2-thumbnail{
    width: 310px;
    margin-bottom: 20px;
    cursor: pointer;
}

.afterpay-p2-thumbnail img{
    width: 100%;
    object-fit: cover;
}

.afterpay-p2-big{
    position: fixed;
    z-index: 100;
    display: flex;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    transform: scale(0);
    transform-origin: 50% ;
    transition:all .2s linear;
}

.afterpay-p2-big.active{
    transform: scale(1);
}

.afterpay-p2-bg{
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.afterpay-p2-big-close{
    width: 40px;
    height: 40px;
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
}


.afterpay-p2-big-img{
    margin: auto;
    opacity: 0;
    box-shadow:  0 0 10px 4px rgba(0,0,0,0.1);
    max-height: 80vh;
    max-width: 80%;
    display: none;

    transition:opacity .2s ease-in-out ;
}

.afterpay-p2-big-img.active{
    display: block;
    opacity: 1;
}

/*product*/
.afterpay-cate-title{
    font-size: 20px;
    background-color: #eee;
    padding:0 20px;
    height: 40px;
    line-height: 40px;
    margin: 0 0 20px 0;
}

.afterpay-product-list{
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
    margin-bottom: 50px;
}

.afterpay-product-box{
    width: 22%;
    padding: 10px;
    position: relative;
    margin: 0 15px;
}

.afterpay-product-img{
    width: 200px;
    height: 200px;
    object-fit: cover;
    display: block;

}

.afterpay-product-label{
    position: absolute;
    left: 0;
    top: 0;
    background-color: #e5405e;
    color: #fff;
    padding: 2px 10px ;
    height: 50px;
}

.afterpay-product-label i{
    font-style: normal;
    display: inline-block;
    float: left;
}

.afterpay-product-label i:first-child{
    font-size: 30px;
    width: 50%;
    margin:14px 0 0 0;
}

.afterpay-product-label i:nth-child(2){
    font-size: 12px;
    margin-top: 11px;
    width: 40%;
    margin-left: 5px;
    line-height: 1;
}

.afterpay-product-title{
    font-size: 14px;
    color: #333;
    margin: 10px 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 35px;
}

.afterpay-product-discount{
    color: #426eab;
    font-size: 16px;
    margin: 0 5px 0 0;
    font-weight: bold;
    display: inline-block;
}

.afterpay-product-discount span{
    color: #426eab;
    font-size: 24px;
}

.afterpay-product-origin{
    display: inline-block;
    margin: 0;
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.afterpay-product-origin span{
    font-size: 16px;
}

.afterpay-product-text{
    font-size: 14px;
    margin: 2px 0;
}

.afterpay-product-text span{
    color: #e5405e;
}

.afterpay-product-link{
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 10px 0 0 0;
    text-decoration: none;
}

.afterpay-logo{
    float: right;
    margin-left: 10px;
    display: inline-block;
    height: 18px;
    width: 80px;
    background: url("../image/afterpay/afterpay_logo.svg") no-repeat center bottom/contain;
}

.afterpay-p3{
    margin-top: 50px;
}

.afterpay-p3-title{
    font-size: 20px;
    text-align: center;
    background-color: #eee;
    height: 40px;
    line-height: 40px;
    font-weight: normal;

}

.afterpay-p3-wrapper{
    margin: 20px 0;
}

.afterpay-p3-item{
    margin-bottom: 30px;
}

.afterpay-p3-subtitle{
    font-weight: bold;
    font-size: 16px;
    margin: 0 0 5px 0;
}

.afterpay-p3-text{
    margin: 0;
    font-size: 14px;
}




















