@charset "UTF-8";
.giftbag {
	margin: 3%;
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 4px 18px 0 rgba(76, 111, 135, .1);
}

.giftbag li {
	padding: 0.3rem 0.3rem 0.3rem 0.3rem;
	list-style: none;
}

.giftbag li:last-child .giftbag-box {
	border: none;
}

.giftbag-box {
	display: flex;
	border-bottom: 0.01rem solid #eae6e6;
	height: 1.92rem;
}

.giftbag-left {
	-webkit-box-flex: 0;
	height: inherit;
	display: -webkit-box;
	-webkit-box-pack: center;
	-webkit-box-align: center;
}

.giftbag-left img {
	width: 1.9rem;
	height: 1.9rem;
}

.giftbag-right {
	padding-left: 0.2rem;
	width: 100%;
}

.giftbag-title {
	font-size: .3rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 0.2rem;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: 600;
}

.giftbag-prize {
	display: flex;
	position: relative;
	left: -4px;
	/* top: 1px; */
}

.giftbag-prize div {
    border-radius: 11px;
    border: .5px solid #b19b6e;
    font-size: 10px;
    color: #b19b6e;
    text-align: center;
    padding: 1px 5px;
    margin-right: 5px;
    margin-left: 3px;
    display: inline-block;
    font-weight: 300;
}

.giftbag-prize div:first-child {
	margin-left: 0;
}

.giftbag-prize div:last-child {
	margin-right: 0;
}

.giftbag-bot {
	display: flex;
	justify-content: space-between;
	line-height: 0.33rem;
}

.giftbag-point {
	color: #DEB887;
	font-size: 14px;
	line-height: 0.5rem;
	font-weight: 300;
}

.giftbag-buy {
	background-color: #38b48b;
	border-radius: 12px;
	line-height: 0.5rem;
	color: white;
	width: 1.5rem;
	text-align: center;
	font-weight: 600;
	font-size: 14px;
	box-shadow: 0 0.8vw 3.2vw 0 hsl(0deg 0% 60% / 50%);
}

.giftbag .m3 {
	margin-top: 0.13rem;
	margin-bottom: 10px;
}

.timescard {
	margin: 3%;
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 4px 18px 0 rgba(76, 111, 135, .1);
}

.timescard-top {
	position: relative;
	height: 2.3rem;
	margin-top: 3%;
}

li:first-child .timescard-top {
	margin-top: 0;
}

.timescard-box {
	display: flex;
	height: 2.3rem;
	color: white;
	flex-direction: column;
	justify-content: space-between;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 2;
	box-sizing: border-box;
	padding: 3%;
	border-radius: 12px;
}

.timescard-title {
	font-size: 16px;
	font-weight: 600;
	text-shadow: 1px 1px 1px #9a9494;
}

.timescard-date {
	font-size: 14px;
	font-weight: 300;
	margin-top: 0.1rem;
	text-shadow: 1px 1px 1px #9a9494;
}

.timescard-bot {
	display: flex;
	justify-content: space-between;
}

.timescard-point {
	font-size: 0.3rem;
	line-height: 0.5rem;
	font-weight: 600;
	text-shadow: 1px 1px 1px #9a9494;
}

.timescard-buy {
	background-color: #38b48b;
	border-radius: 0.3rem;
	font-size: 0.25rem;
	line-height: 0.5rem;
	color: white;
	width: 1.5rem;
	text-align: center;
	box-shadow: 0 0.8vw 3.2vw 0 hsl(0deg 0% 43% / 50%);
}

.timescard-bg {
	height: 2.3rem;
	object-fit: cover;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	z-index: 1;
	border-radius: 12px;
}

.timescard-bgcolor {
	height: 2.3rem;
	object-fit: cover;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	background: -webkit-linear-gradient(bottom left, #43a239, #3f9234);
	border-radius: 12px;
	box-shadow: 0 4px 18px 0 rgb(76 111 135 / 10%);
}
.anim-slide:nth-of-type(1) {
    -webkit-animation: slide .5s ease 0s backwards;
    animation: slide .5s ease 0s backwards
}

.anim-slide:nth-of-type(2) {
    -webkit-animation: slide .5s ease .1s backwards;
    animation: slide .5s ease .1s backwards
}

.anim-slide:nth-of-type(3) {
    -webkit-animation: slide .5s ease .2s backwards;
    animation: slide .5s ease .2s backwards
}

.anim-slide:nth-of-type(4) {
    -webkit-animation: slide .5s ease .2s backwards;
    animation: slide .5s ease .2s backwards
}

.anim-slide:nth-of-type(5) {
    -webkit-animation: slide .5s ease .2s backwards;
    animation: slide .5s ease .2s backwards
}

@-webkit-keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 32px, 0);
        transform: translate3d(0, 32px, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 32px, 0);
        transform: translate3d(0, 32px, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}