:root {
  --main-color: #01875f;
  --main-hover-color: #01533b;
}
:root[data-type="google"] {
  --main-color: #01875f;
  --main-hover-color: #01533b;
}

@font-face {
  font-family: 'Google-Sans';
  src: url('/assets/fonts/Google-Sans.eot?#iefix') format('embedded-opentype'),
    url('/assets/fonts/Google-Sans.woff2') format('woff2'),
    url('/assets/fonts/Google-Sans.ttf')  format('truetype'),
    url('/assets/fonts/Google-Sans.svg#Google-Sans') format('svg');
  font-weight: normal;
  font-display: fallback;
  font-style: normal;
}

html, body {
  width: 100%;
  height: 100%;
}
html, body, div, iframe, ul, li, p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}
ul, li {
  list-style: none;
}
h1, h2, h3, h4, h5, h6, em, strong, a {
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  font-weight: 600;
}
a {
  cursor: pointer;
  text-decoration: none;
}
button {
  background: none;
  border: none;
}
body {
  font-family: 'Google-Sans', sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #5f6368;
}

.main-body {
  background: #1e2126;
  overflow: hidden;
}
.iframe-box {
  width: 100%;
  height: 100%;
  overflow: auto;
  border: none;
}

.main-up, .information-list, .btn-box, .banner-imgs-box, .introduce {
  margin: 24px 24px 0;
}

.main-up {
  display: flex;
  align-items: center;
}
.main-up .logo {
  position: relative;
  width: 72px;
  height: 72px;
  margin-right: 24px;
  border-radius: 20%;
}
.main-up .logo.ami {
  overflow: hidden;
}
.main-up .logo img {
  display: block;
  width: 100%;
}
.main-up .logo .box, .loading-ci .box {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-left: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  border-radius: 50%;
  animation: turn 1s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes turn {
  100% {
    transform: rotateZ(-1turn);
  }
}
.main-up .logo.ami img {
  width: 50%;
  margin: 18px auto;
  animation: all 0.3;
}
.main-up .logo.ami .box {
  display: block;
}
.main-up .info h1 {
  color: #202124;
  font-size: 24px;
  margin-bottom: 0.75rem;
}
.main-up .info h2 {
  margin-top: 5px;
  color: var(--main-color);
  font-size: 16px;
  font-family: 'Google-Sans', sans-serif;
  margin-bottom: 5px;
}
.main-up .info p {
  font-size: 12px;
}

.information-list {
  display: flex;
  align-items: center;
}
.information-list li {
  position: relative;
  flex: 1;
  text-align: center;
}
.information-list li img {
  width: 12px;
}
.information-list li img.large {
  width: 28px;
}
.information-list li strong {
  display: block;
  height: 28px;
  line-height: 28px;
  font-weight: 600;
  color: #202124;
}
.information-list li p {
  font-size: 12px;
}
.information-list li:before {
  background-color: rgb(232, 234, 237);
  content: "";
  display: block;
  height: 24px;
  left: 0;
  position: absolute;
  top: calc(50% - 12px);
  width: 1px;
}
.information-list li:first-child:before {
  display: none;
}

.btn-box {
  position: relative;
  overflow: hidden;
}
.shiny:after {
  animation: shiny-btn-anim 4s ease-in-out infinite;
  background-color: #fff;
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: -180px;
  width: 30px;
}
@keyframes shiny-btn-anim {
  0% {
    opacity: 0;
    transform: scale(0) rotate(45deg);
  }
  80% {
    opacity: 0.5;
    transform: scale(0) rotate(45deg);
  }
  81% {
    opacity: 1;
    transform: scale(4) rotate(45deg);
  }
  100% {
    opacity: 0;
    transform: scale(50) rotate(45deg);
  }
}
.btn {
  display: block;
  width: 100%;
  padding: 10px 8px;
  background: var(--main-color);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
}
.btn.big {
  padding: 15px 8px;
  font-size: 18px;
}
.btn:hover {
  background: var(--main-hover-color);
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn:disabled:hover {
  background: var(--main-color);
}
.btn:active {
  background: var(--main-color);
}
.btn .con {
  display: flex;
  flex-direction: column;
}
.btn .con p {
  display: flex;
  justify-content: center;
  margin-bottom: 3px;
  gap: 5px;
  font-size: 15px;
  color: #ffe336;
}
.btn .con img {
  width: 12px;
}
.btn+.btn {
  margin-top: 8px;
}

.installation {
  display: block;
  position: relative;
  background: var(--main-color);
  border-radius: 10px;
  width: 0%;
}

.banner-imgs-box {
  overflow-x: auto;
  overflow-y: hidden;
}
.banner-imgs {
  display: flex;
  flex-wrap: nowrap;
  width: fit-content;
  height: 240px;
}
.banner-imgs li {
  border-radius: 8px;
  height: 224px;
  margin-right: 11px;
  overflow: hidden;
}
.banner-imgs li img {
  display: block;
  height: 100%;
}
.banner-imgs-box.landscape .banner-imgs, .banner-imgs-box.landscape .banner-imgs li {
  height: 168px;
}
.introduce {
  padding-bottom: 16px;
}
.introduce h2 {
  margin-bottom: 20px;
  color: #202124;
}
.introduce>div {
  line-height: 1.45;
}
#Loading, #Install, #Installing, #Play {
  display: none;
  font-size: 15px;
  letter-spacing: .0178571429em;
}
body[data-type="LOADING"] #Loading {
  display: block;
}
body[data-type="INSTALL"] #Install {
  display: block;
}
body[data-type="INSTALLING"] #Install {
  display: block;
}
body[data-type="PLAY"] #Play {
  display: block;
}

.show-logo, .sold-out {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.show-logo img, .sold-out img {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 8px;
}
.show-logo p, .sold-out p {
  margin-top: 3rem;
  font-weight: 600;
  font-size: 2rem;
}
.show-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.show-btn, #pop-show, #loading-box {
  display: none;
}

.mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background-color: #fff;
  transition: box-shadow 0.2s ease-in-out;
}
.header.scroll {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}
.header .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 55px;
  padding: 0 22px;
  box-sizing: border-box;
  transition: box-shadow 0.2s ease-in-out;
}
.header .box.fixed {
  box-shadow:0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2);
}
.header .box .l a {
  display: flex;
  align-items: center;
  font-size: 22px;
  color: rgb(95, 99, 104);
  font-family: "Google-Sans", Roboto, Arial, sans-serif;
  gap: 10px;
  white-space: nowrap;
}
.header .box .l a svg {
  width: 40px;
  height: 40px;
}
.header .box .l img {
  width: 40px;
  height: 40px;
}
.header .box .r {
  display: flex;
  align-items: center;
}
.header .box .r a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 10px;
  border-radius: 100%;
  transition: background 0.2s ease-in-out;
}
.header .box .r a:hover {
  background: #eee;
}
.play-protect {
  display: block;
  position: relative;
  margin: 0 2px 0 0;
  background: url('/imgs/google/play-protect.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 15px;
  height: 15px;
  float: left;
  overflow: hidden;
}
.progress {
  display: block;
  margin: 0 0 0.10rem 0;
  position: relative;
  font-weight: 600;
  overflow: hidden;
}
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 56px;
  background-color: #fff;
  border-top: 1px solid rgb(218, 220, 224);
}
.footer ul {
  display: flex;
  height: 56px;
  align-items: center;
  justify-content: center;
}
.footer ul li {
  flex: 1;
  text-align: center;
  overflow: hidden;
}
.footer ul span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footer ul li p {
  width: 24px;
  height: 24px;
  margin: 0 auto 2px;
  overflow: hidden;
}
.footer ul li a {
  color: rgb(95, 99, 104);
}
.footer ul li a:hover, .footer ul li.active a {
  color: var(--main-color);
}
.footer ul li a:hover img, .footer ul li.active a img {
  filter: drop-shadow(var(--main-color) 80px 0);
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  transform: translateX(-80px);
}
.body {
  padding: 80px 0;
}
.google-share-btns {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  gap: 20px;
}
.google-share-btns li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.google-share-btns svg {
  fill: var(--main-color);
}
:root[data-type="google"] .banner-imgs-box {
  margin-top: 70px;
}
:root[data-type="google"] .introduce h2 {
  font-size: 18px;
  font-weight: bold;
}
:root[data-type="google"] .main-up .logo img {
  border-radius: 20%;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}
.update-box {
  margin: 24px 24px 0;
}
.update-box h3 {
  font-weight: bold;
  color: rgb(32, 33, 36);
}
.update-box p {
  margin-top: 4px;
}
.data-safety-list {
  margin: 20px 24px;
  border: rgb(218, 220, 224) 1px solid;
  border-radius: 8px;
  padding: 20px;
}
.data-safety-list li {
  display: flex;
  align-items: flex-start;
}
.data-safety-list li+li {
  margin-top: 20px;
}
.data-safety-list li img {
  margin-right: 20px;
}
.data-safety-list li p {
  font-size: 12px;
}
.data-safety-list li p span {
  text-decoration: underline;
}
.data-safety-list>p {
  margin-top: 20px;
  color: var(--main-color);
}
