<style>
html,
body {
  height: 100%;
  font-size: 16px;
  font-family: 'Google Sans', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

[v-cloak] {
  display: none;
}

#app {
  height: 100%;
}

.logo {
  position: absolute;
  top: 48px;
  right: 0;
}

.logo img {
  width: 180px;
  height: 180px;
  border-width: 0;
  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);
}

@media screen and (min-width: 1280px) {
  .logo img {
    width: 240px;
  }
}

.header {
  position: fixed;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
  height: 56px;
  background: #fff;
  transition: box-shadow 0.2s ease-in-out;
}

@media screen and (min-width: 840px) {
  .header {
    height: 64px;
  }
}

.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);
}

.google-link {
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0 16px;
  color: rgb(95, 99, 104);
  font-weight: 500;
  font-size: 1.375rem;
  font-family: 'Google Sans', Roboto, Arial, sans-serif;
  line-height: 1.75rem;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
}

@media screen and (min-width: 840px) {
  .google-link {
    margin: 0 14px 0 28px;
  }
}

.google-logo {
  width: 40px;
  height: 40px;
  margin-right: 8px;
}

.header-tab {
  position: relative;
  display: flex;
  flex: 1 0 auto;
  will-change: transform;
  transform: none;
}

.tab-item {
  position: relative;
  min-width: auto;
  height: 64px;
  padding-right: 16px;
  padding-left: 16px;
  color: rgb(95, 99, 104);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 64px;
  text-transform: none;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.tab-item:hover {
  color: rgb(32, 33, 36);
}

.tab-item.active {
  color: #01875f;
}

.tab-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(100% - 32px);
  border-color: #01875f;
  border-top-width: 3px;
  border-top-style: solid;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  transform: translateX(-50%);
}

.header-right {
  display: flex;
  align-items: center;
  margin: 0 10px 0 auto;
}

.header-right .info-item {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 12px;
  color: rgb(95, 99, 104);
  font-size: 24px;
  background: transparent;
  cursor: pointer;
}

.header-right .info-item:hover {
}

.header-right .info-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-content {
  position: relative;
  min-height: 100%;
  margin-top: 56px;
}

@media screen and (min-width: 840px) {
  .main-content {
    margin-top: 64px;
  }
}

.top-content {
  position: relative;
  width: calc(100% - 48px);
  max-width: 1296px;
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  .top-content {
    width: calc(100% - 96px);
  }
}

@media screen and (min-width: 1280px) {
  .top-content {
    width: calc(100% - 144px);
  }
}

.app-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 48px;
}

.app-title img {
  width: 72px;
  height: 72px;
  margin: 7px 24px 0 0;
  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);
}

.app-title h1 {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 2rem;
  word-break: keep-all;
}

@media screen and (min-width: 960px) {
  .app-title {
    width: 500px;
  }
}

@media screen and (min-width: 840px) {
  .app-title {
    width: 500px;
  }

  .app-title img {
    display: none;
  }
}

@media screen and (min-width: 600px) {
  .app-title h1 {
    font-weight: 500;
    font-size: 2.75rem;
    font-family: 'Google Sans Display', Roboto, Arial, sans-serif;
    line-height: 3.25rem;
    letter-spacing: 0;
  }
}

@media screen and (min-width: 1280px) {
  .app-title h1 {
    font-size: 4rem;
    line-height: 4.75rem;
  }
}

.app-company {
  margin-top: 2px;
  color: #01875f;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.00625em;
}

@media screen and (min-width: 840px) {
  .app-company {
    margin-top: 16px;
  }
}

.app-sub-desc {
  color: rgb(95, 99, 104);
  font-size: 0.75rem;
  font-family: Roboto, Arial, sans-serif;
  line-height: 1rem;
  letter-spacing: 0.025em;
  fill: rgb(95, 99, 104);
  stop-color: rgb(95, 99, 104);
}

.app-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  margin: 16px 0 24px;
  padding: 12px 0;
  font-size: 14px;
}

@media screen and (min-width: 600px) {
  .app-score {
    justify-content: flex-start;
  }
}

.app-score-item {
  position: relative;
  min-width: 96px;
  padding: 0 16px;
}

.app-score-item:nth-child(2),
.app-score-item:nth-child(3) {
  padding: 0 24px;
}

.app-score-item:first-child {
  padding-left: 0;
}

.app-score-item:not(:first-child)::before {
  position: absolute;
  top: calc(50% - 12px);
  left: 0;
  display: block;
  width: 1px;
  height: 24px;
  background-color: rgb(232, 234, 237);
  content: '';
}

.app-score-item .top img {
  min-width: 16px;
  height: 16px;
}

.app-score-item .top {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  color: rgb(32, 33, 36);
  font-weight: 500;
  font-size: 0.875rem;
  font-family: 'Google Sans', Roboto, Arial, sans-serif;
  line-height: 1.25rem;
  letter-spacing: 0.0178571429em;
  white-space: nowrap;
  fill: rgb(32, 33, 36);
  stop-color: rgb(32, 33, 36);
}

.app-score-item .bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  color: rgb(95, 99, 104);
  font-size: 0.75rem;
  font-family: Roboto, Arial, sans-serif;
  line-height: 1rem;
  letter-spacing: 0.025em;
  white-space: nowrap;
  fill: rgb(95, 99, 104);
  stop-color: rgb(95, 99, 104);
}

.app-score-item .rate {
  display: flex;
  align-items: center;
}

.app-score-item .google-material-icons {
  font-size: 12px;
}

.app-install {
  display: flex;
  flex-direction: column;
  align-items: unset;
}

@media screen and (min-width: 600px) {
  .app-install {
    flex-direction: row;
    align-items: center;
  }
}

.app-install button {
  min-width: 160px;
  height: 36px;
  min-height: 36px;
  margin: 6px 0;
  padding: 8px 16px;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  background: #01875f;
  transition: border 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.app-install button:hover {
  background: #056449;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

@media screen and (min-width: 1280px) {
  .app-install button {
    min-width: 200px;
    height: 44px;
    min-height: 44px;
    margin: 2px 0;
    padding: 10px 16px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.app-install-link {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  .app-install-link {
    margin: 0;
    padding-left: 16px;
  }
}

.app-install-link-item {
  display: flex;
  align-items: center;
  min-width: 48px;
  height: 48px;
  padding: 12px;
  font-size: 24px;
  fill: #01875f;
  cursor: pointer;
}

.app-install-link-item svg {
  flex-shrink: 0;
  margin-right: 8px;
}

.app-install-link-item div {
  color: #01875f;
  font-weight: 500;
  font-size: 0.875rem;
}

@media screen and (min-width: 600px) {
  .app-install-link-item div {
    display: none;
  }

  .app-install-link-item svg {
    margin-right: 0;
  }
}

@media screen and (min-width: 1280px) {
  .app-install-link-item div {
    display: block;
  }

  .app-install-link-item svg {
    margin-right: 8px;
  }
}

.app-compatibility {
  display: flex;
  align-items: center;
  margin-top: 16px;
  padding: 4px 0;
  color: rgb(95, 99, 104);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.app-compatibility .google-material-icons {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 12px;
  font-size: 20px;
}

@media screen and (min-width: 960px) {
  .bottom-content {
    display: flex;
    justify-content: space-between;
  }

  .bottom-content-left {
    width: calc(100% - 348px);
  }

  .bottom-content-right {
    width: 276px;
  }
}

@media screen and (min-width: 1280px) {
  .bottom-content-left {
    width: calc(100% - 436px);
  }

  .bottom-content-right {
    width: 364px;
  }
}

.bottom-content-right {
  padding-top: 20px;
}

@media screen and (min-width: 600px) {
  .bottom-content-right {
    margin-bottom: 16px;
  }
}

.app-preview {
  display: flex;
  justify-content: space-between;
  margin-top: 72px;
}

.app-preview-swiper {
  display: flex;
  height: 100%;
  margin-bottom: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
}

.app-preview-slide {
  flex-shrink: 0;
  min-width: 92px;
  height: 204px;
  margin-right: 12px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15);
  scroll-snap-align: start;
}

.app-preview-slide:last-child {
  margin-right: 0;
}

@media screen and (min-width: 1280px) {
  .app-preview-slide {
    height: 296px;
  }
}

.app-desc {
  width: 100%;
  padding-top: 20px;
}

@media screen and (min-width: 600px) {
  .app-desc {
    margin-bottom: 16px;
  }
}

.app-desc-title {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  color: rgb(32, 33, 36);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.5rem;
}

@media screen and (min-width: 600px) {
  .app-desc-title {
    justify-content: start;
  }
}

.app-desc-title h2 {
  margin-right: 16px;
}

.app-desc-title i {
  padding-left: 12px;
  color: rgb(95, 99, 104);
  font-size: 20px;
  cursor: pointer;
}

.app-desc-content {
  display: -webkit-box;
  max-height: 7.5rem;
  overflow: hidden;
  color: rgb(95, 99, 104);
  font-size: 0.875rem;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.25rem;
  letter-spacing: 0.0142857143em;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  line-clamp: 6;
}

.app-update-date {
  margin-top: 24px;
}

.app-update-date-title {
  color: rgb(32, 33, 36);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.app-update-date-text {
  margin-top: 4px;
  color: rgb(95, 99, 104);
  font-size: 0.875rem;
}

.app-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 12px;
  margin-top: 28px;
  margin-bottom: 4px;
  cursor: pointer;
}

@media screen and (min-width: 600px) {
  .app-tag {
    margin-bottom: 0;
  }
}

.app-tag-item {
  display: flex;
  align-items: center;
  height: 32px;
  padding: 0 15px;
  border: 1px solid rgb(218, 220, 224);
  border-radius: 16px;
  color: rgb(95, 99, 104);
  font-weight: 500;
  font-size: 0.875rem;
}

.app-privacy {
  padding-top: 20px;
  color: rgb(95, 99, 104);
  font-size: 0.875rem;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.25rem;
}

@media screen and (min-width: 600px) {
  .app-privacy {
    margin-bottom: 16px;
  }
}

.app-privacy-block {
  margin-top: 30px;
  padding: 20px 20px 0;
  border: 1px solid rgb(218, 220, 224);
  border-radius: 8px;
}

@media screen and (min-width: 600px) {
  .app-privacy-block {
    margin-bottom: 16px;
  }
}

.app-privacy-item {
  display: flex;
  align-items: flex-start;
}

.app-privacy-item:not(:first-child) {
  margin-top: 20px;
}

.app-privacy-item img {
  width: 20px;
  height: 20px;
  margin-right: 20px;
}

.app-privacy-detail {
  display: inline-flex;
  align-items: center;
  height: 36px;
  margin: 10px 0;
  padding: 0 8px;
  border-radius: 4px;
  color: #01875f;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
}

.app-privacy-detail:hover {
  color: #056449;
  background: #f7f9fe;
}

.comment {
  padding-top: 20px;
}

.comment .app-tag {
  display: inline-flex;
  margin-top: 0;
  margin-bottom: 12px;
}

.comment .app-tag-item {
  border: none;
  background: #e6f3ef;
}

.comment .app-tag i {
  flex-shrink: 0;
  margin-right: 4px;
  color: #056449;
  font-size: 16px;
}

.comment .app-tag .phone {
  margin: 6px 4px;
  color: #056449;
}

.comment-rate {
  display: grid;
  flex-grow: 1;
  grid-template-columns: max-content auto;
  padding-top: 24px;
  padding-bottom: 16px;
  column-gap: 24px;
}

@media screen and (min-width: 960px) {
  .comment-rate {
    padding-bottom: 20px;
  }
}

.comment-rate-text {
  color: rgb(32, 33, 36);
  font-size: 3.5rem;
  line-height: 4rem;
  letter-spacing: 0;
}

.comment-star {
  display: flex;
  align-items: center;
}

.comment-star-item {
  display: inline-block;
  width: 16px;
  height: 16px;
  line-height: 16px;
  fill: rgb(241, 243, 244);
}

.comment-star-item.active {
  fill: #01875f;
}

.comment-count {
  margin-top: 8px;
  color: rgb(95, 99, 104);
  font-size: 0.75rem;
}

.comment-bar {
  display: grid;
  grid-template-columns: max-content auto;
  align-items: center;
}

.comment-bar-text {
  padding-right: 16px;
  font-size: 0.75rem;
  font-family: Roboto, Arial, sans-serif;
  line-height: 1rem;
  letter-spacing: 0.025em;
}

.comment-bar-item {
  height: 10px;
  border-radius: 9999px;
  overflow: hidden;
  background: rgb(232, 234, 237);
}

.comment-bar-item-fill {
  height: 100%;
  border-radius: inherit;
  background: #01875f;
}

.comment-block {
  padding: 16px 0;
}

@media screen and (min-width: 960px) {
  .comment-block {
    padding: 20px 0;
  }
}

.comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}

.comment-header-info {
  display: grid;
  grid-column-gap: 16px;
  grid-template-columns: repeat(2, max-content);
  align-items: center;
}

.comment-header-info img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
}

.comment-header-name {
  color: rgb(32, 33, 36);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.comment-single-rate {
  display: flex;
  align-items: center;
  margin-top: 16px;
}

.comment-single-rate .comment-star-item {
  width: 12px;
  height: 12px;
  line-height: 12px;
}

.comment-date {
  margin-left: 1ch;
  color: rgb(95, 99, 104);
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.025em;
}

.comment-content {
  margin-top: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  overflow-wrap: anywhere;
}

.comment-helpful-count {
  margin-top: 16px;
  font-size: 0.75rem;
}

.comment-help {
  display: flex;
  align-items: center;
  margin-top: 12px;
  font-size: 0.75rem;
}

.comment-help-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-left: 24px;
  font-weight: 500;
  font-size: 0.875rem;
}

.comment-help-btn-item {
  padding: 1px 15px;
  border: 1px solid rgb(218, 220, 224);
  border-radius: 9999px;
  cursor: pointer;
}

.comment-check {
  display: inline-flex;
  align-items: center;
  height: 52px;
  margin: 6px 0;
  padding: 0 8px;
  color: #01875f;
  font-weight: 500;
}

@media screen and (min-width: 600px) {
  .comment-check {
    margin-bottom: 16px;
  }
}

@media screen and (min-width: 1280px) {
  .comment-check {
    margin-bottom: 24px;
  }
}

.comment-report {
  display: flex;
  align-items: center;
  padding-top: 20px;
  color: rgb(32, 33, 36);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  cursor: pointer;
}

@media screen and (min-width: 600px) {
  .comment-report {
    margin-bottom: 16px;
  }
}

@media screen and (min-width: 1280px) {
  .comment-report {
    margin-bottom: 24px;
  }
}

.comment-report i {
  margin-right: 16px;
  font-size: 18px;
}

.footer {
  padding-bottom: 16px;
  color: rgb(95, 99, 104);
}

.divider {
  width: 100%;
  margin-bottom: 36px;
  padding-top: 36px;
  border-bottom: 1px solid rgb(232, 234, 237);
}

.footer-link {
  display: grid;
  grid-template-columns: 1fr;
  font-size: 0.875rem;
  row-gap: 24px;
}

@media screen and (min-width: 840px) {
  .footer-link {
    grid-template-columns: 244px auto;
    column-gap: 16px;
  }
}

@media screen and (min-width: 1280px) {
  .footer-link {
    grid-template-columns: 266px auto;
    column-gap: 24px;
  }
}

.footer-link-title {
  font-weight: 500;
}

.footer-link > div > div {
  line-height: 32px;
}

.footer-about {
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
}

.footer-about > div {
  margin-right: 24px;
  font-size: 0.75rem;
  line-height: 48px;
}

@media screen and (min-width: 1280px) {
  .footer-about div {
    margin-right: 32px;
  }
}

.support-item {
  display: flex;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
}

.support-item:hover {
  background: #a9a9a917;
}

.support-item:first-child {
  padding-top: 0;
}

.support-item i {
  margin-right: 16px;
  color: rgb(95, 99, 104);
  font-size: 18px;
}

.support-item > div {
  color: rgb(32, 33, 36);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.support-item-email {
  color: rgb(95, 99, 104);
  font-weight: 400;
  font-family: Roboto, Helvetica, Arial, sans-serif;
}
</style>
