﻿@charset "UTF-8";
/* 項目 */
.sticker__item {
  position: relative;
  overflow: hidden;
  background: url("../../images/2020kol/bg_sticker.jpg?t=20200112") center center no-repeat;
  width: 180px;
  height: 298px;
  margin: 0 auto;
  font-family: Helvetica, "Helvetica Neue", "蘋果儷中黑", "微軟正黑體", Verdana, Arial, sans-serif, "新細明體";
  line-height: 1;
  font-size: 16px;
}

.sticker__item * {
  box-sizing: border-box;
}

/* logo */
.sticker__logo {
  width: 116px;
  height: 46px;
  overflow: hidden;
  margin: 26px auto 7px;
  /* animation: bounceIn 8s 1s infinite; */
  position: absolute;
  left: 50%;
  top: -9px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}

.sticker__logo-link {
  display: block;
}

@-webkit-keyframes bounceIn {
  from, 2%, 3%, 4%, 5%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  2% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  3% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  4% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }
  5% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 2%, 3%, 4%, 5%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  2% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  3% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  4% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }
  5% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
.sticker__logo-img {
  width: 100%;
  max-width: 100%;
}

/* 圖片區 */
.sticker__imgbox {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  overflow: hidden;
  margin: 68px auto 15px;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.4);
}

/* 圖片 */
.sticker__img {
  border: 0;
  margin: 0;
  vertical-align: middle;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* 圖片-點擊 */
.sticker__img-link:active .sticker__img {
  opacity: 0.8;
}

.sticker__info {
  text-align: center;
  margin: 0 auto;
  width: 130px;
  height: 26px;
  padding: 0 5px;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

/* 作者*/
.sticker__author {
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  color: #F9E9A7;
  display: block;
  display: -webkit-box;
  max-width: 100%;
  max-height: 20px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 圖片-連結 */
.sticker__link {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  text-indent: -999999px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

[class*=sticker__shine] {
  opacity: 0;
}

.sticker__shine-1 {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  top: 64px;
  left: -11px;
  width: 40px;
  height: 40px;
  /* transform-origin:50% 50%; */
  -webkit-animation: shine 5s 0s infinite linear;
          animation: shine 5s 0s infinite linear;
}

@-webkit-keyframes shine {
  0% {
    transform: scale(0.8) rotate(0deg);
    -webkit-transform: scale(0.8) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    transform: scale(1) rotate(180deg);
    -webkit-transform: scale(1) rotate(180deg);
    filter: brightness(1.2);
    -webkit-filter: brightness(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(0.8) rotate(360deg);
    -webkit-transform: scale(0.8) rotate(360deg);
    opacity: 0.5;
  }
}

@keyframes shine {
  0% {
    transform: scale(0.8) rotate(0deg);
    -webkit-transform: scale(0.8) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    transform: scale(1) rotate(180deg);
    -webkit-transform: scale(1) rotate(180deg);
    filter: brightness(1.2);
    -webkit-filter: brightness(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(0.8) rotate(360deg);
    -webkit-transform: scale(0.8) rotate(360deg);
    opacity: 0.5;
  }
}
.sticker__shine-3 {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  top: 184px;
  left: -9px;
  width: 54px;
  height: 54px;
  /* transform-origin:50% 50%; */
  -webkit-animation: shine 5s 1s infinite linear;
          animation: shine 5s 1s infinite linear;
}

.sticker__shine-4 {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  top: 212px;
  right: 2px;
  width: 40px;
  height: 40px;
  /* transform-origin:50% 50%; */
  -webkit-animation: shine 5s 2s infinite linear;
          animation: shine 5s 2s infinite linear;
}

.sticker__shine-5 {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  top: 59px;
  right: 16px;
  width: 55px;
  height: 55px;
  /* transform-origin:50% 50%; */
  -webkit-animation: shine 5s 2s infinite linear;
          animation: shine 5s 2s infinite linear;
}

.sticker__shine-2 {
  pointer-events: none;
  position: absolute;
  z-index: 5;
  right: 74px;
  top: 4px;
  width: 32px;
  height: 32px;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  animation: shine2 4s 0.5s infinite linear;
  -webkit-animation: shine2 4s 0.5s infinite linear;
}

@keyframes shine2 {
  0% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    filter: brightness(1.3);
    -webkit-filter: brightness(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    opacity: 0.6;
  }
}
@-webkit-keyframes shine2 {
  0% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    filter: brightness(1.3);
    -webkit-filter: brightness(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    opacity: 0.6;
  }
}

/*# sourceMappingURL=pg_sticker.css.map */