#fullscreen {
  width: 100vw;
  height: 100vh;
  background-color: var(--theme-color);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

* {
  margin: 0;
  padding: 0;
}

:root {
  --theme-color: #028760;
  --install-text-color: #ffe336;
}

span.obfuscated-raw-text,
span.obfuscated-word {
  background-color: inherit !important;
  color: inherit !important;
  cursor: inherit !important;
  font-size: inherit !important;
  font-style: normal !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  margin: 0 !important;
  padding: 0 !important;
  text-decoration: inherit !important;
  text-transform: inherit !important;
}

span.obfuscated-word {
  display: inline-block;
}

span.obfuscated-text {
  position: absolute;
  top: -99999px;
  z-index: -9999;
}

[dir="ltr"] span.obfuscated-text {
  right: 99999px;
}

[dir="rtl"] span.obfuscated-text {
  left: 99999px;
}

/*@font-face {*/
/*    font-family: 'Google Sans';*/
/*    src: url('../fonts/GoogleSans-Regular.ttf') format('truetype');*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Google Sans';*/
/*    src: url('../fonts/GoogleSans-Medium.ttf') format('truetype');*/
/*    font-weight: 500;*/
/*    font-style: normal;*/
/*}*/

body {
  color: #343434;
  font-size: 15px;
  background-color: #fff;
  /*font-family: Google Sans, sans-serif;*/
  line-height: inherit;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.wrapper .container {
  flex: 1;
  padding: 30px 20px 100px;
  max-width: 600px;
  margin: 0 auto;
}

.wrapper .container h1 {
  font-size: 24px;
  margin-bottom: 15px;
  text-align: center;
}

.wrapper .container p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

.wrapper .container img,
.wrapper .container video {
  display: block;
  max-width: 100%;
  border-radius: 10px;
  margin: 0 auto 20px;
}

.wrapper .container video {
  background-color: #000;
}

.wrapper .footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 16px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 1000;
}

.wrapper .footer .btn {
  display: inline-block;
  padding: 14px 32px;
  background: #1e88e5;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.wrapper .footer .btn:hover {
  background: #1565c0;
}

button {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-align: center;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #dcdfe6;
  color: #606266;
  -webkit-appearance: none;
  outline: none;
  transition: 0.1s;
  font-weight: 500;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  font-size: 14px;
}

.install {
  overflow: hidden;
  padding: 54px 22px 44px;
}

.install .top-placeholder {
  height: 54px;
}

.install .topbar {
  align-items: center;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  max-width: 770px;
  margin: 0 auto;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
  padding: 10px 13px;
}

.install .topbar.active {
  box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.3);
}

.install .topbar .topbar__left {
  height: 37px;
  width: 166px;
}

.install .topbar .topbar__right {
  height: 36px;
  width: 114px;
}

.install .topbar .right-box {
  display: flex;
  align-items: center;
}

.install .topbar .right-box img {
  width: 25px;
  height: 25px;
  margin-right: 20px;
}

.install .topbar .right-box img.avatar {
  width: 32px;
  height: 32px;
  margin-right: 0;
}

.install .topwrap {
  position: relative;
  display: flex;
  margin-bottom: 28px;
}

.install .topwrap .header-icon {
  align-items: center;
  display: flex;
  height: 74px;
  justify-content: center;
  margin-right: 22px;
  position: relative;
  width: 74px;
}

.install .topwrap .header-icon .toplogo {
  width: 74px;
  height: 74px;
  margin: 0 4px;
  border-radius: 20%;
  object-fit: cover;
  background-color: #f2f3f5;
}

.install .topwrap .header-icon .toplogo .hide {
  width: 50px;
  height: 50px;
}

.install .topwrap .header-icon .loading-circle {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 2px solid var(--theme-color);
  border-bottom-color: #faf9f7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.install .topwrap .right {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.install .topwrap .right .header__info-title {
  align-items: center;
  display: flex;
  margin-bottom: 2px;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.skeleton-name {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  min-height: 28px;
  width: 100px;
  border-radius: 4px;
  background: #ddd;
}
.skeleton-name-2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  min-height: 28px;
  width: 100px;
  border-radius: 4px;
}

.install .topwrap .right .header__info-title .name {
  color: #111;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 4px;
}

.install .topwrap .right .header__info-title .header__info-title-tag {
  flex: 0 0 20px;
  height: 20px;
  vertical-align: baseline;
  width: 20px;
  margin-left: 3px;
}

.install .topwrap .right .author {
  font-size: 16px;
  color: var(--theme-color);
  font-weight: bold;
  letter-spacing: -0.03rem;
  margin-bottom: 5px;
}

.skeleton-author {
  font-size: 16px;
  color: var(--theme-color);
  font-weight: bold;
  letter-spacing: -0.03rem;
  margin-bottom: 5px;
  min-height: 26px;
  background: #ddd;
}

.skeleton-author-2 {
  font-size: 16px;
  color: var(--theme-color);
  font-weight: bold;
  letter-spacing: -0.03rem;
  margin-bottom: 5px;
  min-height: 26px;
}

.install .topwrap .right .info {
  font-size: 15px;
}

.install .topwrap .right .header__info-play {
  align-items: center;
  color: #333;
  display: flex;
  font-size: 10px;
  font-weight: 400;
  height: 24px;
}

.install .topwrap .right .header__info-play .ic_dun {
  width: 10px;
  margin-right: 4px;
}

.install .installinfo {
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  margin-bottom: 30px;
}

.scroll-view_H {
  white-space: nowrap;
  width: 100%;
}

.uni-scroll-view,
.uni-scroll-view-content {
  width: 100%;
  height: 100%;
}

.uni-scroll-view {
  position: relative;
  -webkit-overflow-scrolling: touch;
  max-height: inherit;
}

.install .installinfo .item {
  position: relative;
  width: 34%;
}

.scroll-view-item_H,
.banner_view_item_H {
  display: inline-block;
  text-align: center;
}

.install .installinfo .item .num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.install .installinfo .item:nth-child(3) .num {
  border: 1px solid #000000;
  width: fit-content;
  margin: 0 auto;
  /*padding: 0 2px;*/
  font-size: 12px;
  font-weight: bold;
}

.installinfo .xingsvg,
.installinfo .tipsvg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

.installinfo .yearwebd {
  width: auto;
  height: 16px;
  vertical-align: middle;
}

.install .installinfo .item .info {
  font-size: 12px;
  margin-top: 6px;
}

.installinfo::-webkit-scrollbar,
.bannerinfo::-webkit-scrollbar {
  display: none;
}

.install .share-row {
  margin-bottom: 10px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.install .share-row .share-row__item {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 12px;
  max-width: 220px;
  border: none;
}

.install .share-row .share-row__item img {
  flex: 0 0 17px;
  height: 20px;
  width: 17px;
  margin-right: 10px;
}

.install .share-row .share-row__item div {
  color: #00a173;
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
}

.installinfo,
.bannerinfo {
  width: 100%;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

.install .installinfo .item {
  position: relative;
  width: 34%;
}

.install .installinfo .item .num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.install .installinfo .item .info {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 6px;
}

.install .installinfo .item:not(:last-child):after {
  position: absolute;
  content: "";
  top: 50%;
  margin-top: -12px;
  right: 0;
  width: 1px;
  height: 25px;
  background-color: #d4d3d1;
}

.install .installbtn {
  width: 90%;
  height: 40px;
  font-size: 14px;
  border-radius: 10px;
  margin: 15px;
  padding: 8px;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.installbtn-box {
  display: none;
  width: calc(100% - 48px);
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  border-radius: 10px;
  margin: 15px 24px;
  color: #ffffff;
}

.installbtn-box .install-btn__ing {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  padding: 8px;
  width: 100%;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #ffffff;
  border-radius: 10px;
  border: none;
}

.installbtn-box .install-btn__ing .install-btn__ing__rapid {
  align-items: center;
  color: #ffe336;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  justify-content: center;
  line-height: 21px;
}

.installbtn-box .install-btn__ing .install-btn__ing__rapid img {
  display: block;
  width: 12px;
  height: 18px;
}

.installbtn-box .install-btn__ing .install-btn__ing__countdown {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
}

.bannerinfo {
  padding: 15px 15px 0;
  box-sizing: border-box;
}

.bannerinfo .banner_view_item_H {
  position: relative;
  height: 224px;
  border-radius: 8px;
  overflow: hidden;
}

.bannerinfo .banner_view_item_H:not(:last-child) {
  margin-right: 12px;
}

.bannerinfo .banner_view_item_H .bannerimg {
  width: auto;
  height: 100%;
}

.img-scroll {
  margin-bottom: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
}

.img-scroll::-webkit-scrollbar {
  display: none;
}

.img-scroll__list {
  display: flex;
  flex-wrap: nowrap;
  /* background: #f2f3f5; */
  border-radius: 8px;
}

.img-scroll__view {
  flex: 0 0 126px; /* 固定宽度 */
  width: 126px;
  height: 224px; /* 固定高度 */
  border-radius: 8px;
  overflow: hidden;
  margin: 0 11px;
  background: #ddd; /* 占位色 */
  position: relative;
}

.img-scroll__view:first-child {
  margin-left: 0;
}
.img-scroll__view:last-child {
  margin-right: 0;
}

.img-scroll__view img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 不拉伸，裁切铺满 */
  display: block;
  opacity: 0; /* 先隐藏，等加载好再淡入 */
  transition: opacity 0.2s ease;
}

.fixedswiper {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #f7fafb;
  top: 0;
  z-index: 9;
  margin: 50px auto 0;
}

.fixedswiper .iconback {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 9;
  top: 20px;
  left: 20px;
  background: var(--theme-color);
  border-radius: 50%;
  padding: 5px;
}

.my-swipe {
  width: 100%;
}

.my-swipe .bannerimg {
  display: block;
  max-width: 100%; /* Ensure image doesn't exceed container width */
  max-height: 100%; /* Ensure image doesn't exceed container height */
}

.aboutapp {
  position: relative;
  margin-top: 30px;
}

.aboutapp .arrowsvg {
  position: absolute;
  top: 0;
  right: 0;
  width: 23px;
  height: 23px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.aboutapp .title {
  font-size: 20px;
  margin-bottom: 10px;
  padding-right: 30px;
}

.aboutapp .intro {
  color: #4e4e4e;
  line-height: 22px;
  font-size: 15px;
}

.skeleton-intro {
  color: #4e4e4e;
  line-height: 22px;
  font-size: 15px;
  background: #ddd;
  min-height: 110px;
  width: 100%;
}

.aboutapp .btngroup {
  display: flex;
  flex-flow: wrap;
  margin-bottom: 15px;
  margin-top: 15px;
}

.aboutapp .btngroup .govbtn {
  align-items: center;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 15px;
  color: #5f6368;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  height: 30px;
  justify-content: center;
  padding: 0 12px;
  width: fit-content;
  margin-right: 16px;
}

.aboutapp .btngroup .lottbtn {
  font-size: 16px;
  padding: 6px 12px;
  border: 1px solid #323232;
  border-radius: 8px;
  margin-left: 0;
  line-height: inherit;
}

.aboutapp .intro .tipsvg {
  width: 17px;
  height: 17px;
  vertical-align: text-bottom;
  margin-left: 4px;
}

.scorewrap {
  display: flex;
  margin-top: 20px;
  text-align: center;
  margin-bottom: 10px;
  align-items: center;
  justify-content: space-between;
}

.scorewrap .left {
  text-align: left;
}

.scorewrap .left .num {
  font-size: 58px;
  margin-bottom: 10px;
}

.scorewrap .left .amount {
  margin-top: 6px;
  color: #444;
  font-size: 12px;
}

.scorewrap .right {
  flex: 1;
  max-width: 180px;
  margin-left: 10px;
}

.scorewrap .right .item {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
  font-size: 11px;
  color: #444;
}

.scorewrap .right .item .progress-box {
  flex: 1;
  margin: 0 0 0px 10px;
}

.progress {
  background-color: #e3e3e3;
  border-radius: 5px;
  flex: 1;
  height: 9px;
  max-width: 166px;
  overflow: hidden;
  width: 100%;
  margin-left: 14.5px;
  margin-right: 14.5px;
}

.progress-bar {
  background: var(--theme-color);
  border-radius: 5px;
  height: 100%;
}

.evaluate {
  margin-top: 30px;
}

.evaluate .item:not(:last-child) {
  margin-bottom: 40px;
}

.evaluate .item .topwrap {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
}

.evaluate .item .topwrap .headimg {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.evaluate .item .topwrap .name {
  font-size: 16px;
  margin-left: 10px;
}

.evaluate .item .topwrap .lve {
  position: absolute;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 30px;
  height: 30px;
  right: 0px;
  top: 6px;
}

.evaluate .item .grade {
  display: flex;
  align-items: center;
  margin: 20px 0 16px;
}

.comments__list-stars {
  display: flex;
}

.evaluate .item .grade .date {
  font-size: 14px;
  margin-left: 10px;
}

.evaluate .item .comment {
  line-height: 23px;
  margin-bottom: 8px;
  font-size: 14px;
}

.evaluate .item .feedback {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.evaluate .item .feedback .ishelp {
  color: #626260;
  font-size: 14px;
}

.evaluate .item .feedback .groupbtn {
  display: flex;
}

.evaluate .item .feedback .groupbtn .isbtn {
  border: 1px solid #838184;
  margin-right: 12px;
  height: 30px;
  line-height: 30px;
  font-size: 15px;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 5px;
  color: #000;
}

.evaluate .item .feedback .groupbtn .isbtn.active {
  background-color: #c1e7ff;
  border-color: #c1e7ff;
}

.other {
  padding: 10px 30px;
  border: 1px solid #dfdedc;
  margin-top: 17px;
  border-radius: 8px;
}

.other .otherli {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.other .otherli .iconimg {
  display: block;
  width: 25px;
  height: 23px;
}

.other .otherli .otherdt {
  margin-left: 15px;
  flex: 1;
  line-height: 21px;
}

.other .otherdd {
  font-size: 12px;
  margin-left: 41px;
  margin-top: 8px;
}

.other .otherlink {
  display: block;
  color: var(--theme-color);
  font-weight: 600;
  font-size: 17px;
  margin: 20px 0;
  text-decoration: none;
}

.install .popup {
  display: none;
}

.install .popup .layer__mask {
  animation-duration: 0.35s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
}

.popup-content {
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.install .popup .popup-content {
  align-items: center;
  background-color: #fff;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  padding: 25px 20px;
  width: 75%;
}

.install .popup .popup-content .back_logo {
  display: block;
  width: 166px;
}

.install .popup .popup-content .back_title {
  font-size: 17px;
  line-height: 24px;
  margin-top: 20px;
  text-align: center;
}

.install .popup .popup-content .back_title span {
  color: var(--theme-color);
  font-weight: 500;
}

.install .popup .popup-content .back__content {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.23);
  display: flex;
  margin: 15px 0;
  padding: 20px;
  width: 80%;
}

.install .popup .popup-content .back__content .back__icon {
  border-radius: 20%;
  height: 70px;
  object-fit: cover;
  width: 70px;
  margin-right: 20px;
}

.install .popup .popup-content .back__content .back__info {
  border: 0 solid;
  box-sizing: border-box;
}

.install .popup .popup-content .back__content .back__info .back__info__title {
  align-items: center;
  display: flex;
}

.install
  .popup
  .popup-content
  .back__content
  .back__info
  .back__info__title
  span {
  color: #000;
  font-size: 22px;
  font-weight: 500;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.install
  .popup
  .popup-content
  .back__content
  .back__info
  .back__info__title
  img {
  height: 20px;
  width: 20px;
  margin-left: 5px;
}

.install
  .popup
  .popup-content
  .back__content
  .back__info
  .back__info__description {
  color: var(--theme-color);
  font-size: 15px;
  font-weight: 500;
  margin: 5px 0;
}

.install .popup .popup-content .back__content .back__info .back__info__play {
  align-items: center;
  color: #333;
  display: flex;
  font-size: 10px;
  font-weight: 500;
  height: 14px;
}

.install
  .popup
  .popup-content
  .back__content
  .back__info
  .back__info__play
  .ic_dun {
  margin-right: 4px;
  width: 10px;
}

.install .popup .popup-content .back__detail {
  align-items: center;
  display: flex;
}

.install .popup .popup-content .back__detail img {
  width: 70px;
  margin-right: 12px;
}

.install .popup .popup-content .back__detail .back__detail__introduction {
  color: #000;
  font-size: 14px;
  line-height: 18px;
  margin: 10px 0;
}

.install .popup .popup-content .back__detail .back__detail__introduction span {
  color: var(--theme-color);
  font-weight: 500;
}

.install .popup .popup-content .back__btn {
  align-items: center;
  background-color: var(--theme-color);
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-size: 14px;
  height: 35px;
  justify-content: center;
  margin-top: 15px;
  width: 100%;
}

.install .rb-loading {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 100px;
  max-width: 50%;
  height: 50px;
  transform: translate(-50%, -50%);
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  justify-content: center;
  line-height: 20px;
  margin: 0 auto;
  padding: 16px;
  text-align: center;
  z-index: 2000;
}

.install .rb-loading .loading__text {
  width: 100px;
  padding: 8px 12px;
}

.install .rb-loading .loading__icon {
  animation: loading-rotate 2s linear infinite;
  display: flex;
  height: 30px;
  margin-bottom: 8px;
  width: 30px;
}

.install .rb-loading .loading__icon svg {
  color: #fff;
  display: block;
  height: 100%;
  width: 100%;
}

.install .rb-loading .loading__icon svg circle {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  animation: loading-circular 1s ease-in-out infinite;
}

.install .rb-install-now-layer {
  background: rgba(0, 0, 0, 0.5);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.install .rb-install-now-layer .layer__body {
  position: absolute;
  top: 30%;
  left: 5%;
  right: 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  align-items: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 24px 24px;
  width: 75%;
}

.rb-install-now-layer .layer__body .install-now__header {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 37px;
}

.rb-install-now-layer .layer__body .install-now__header__title {
  align-items: center;
  display: flex;
  margin-bottom: 8px;
}

.rb-install-now-layer .layer__body .install-now__header__title img {
  width: 28px;
}

[dir="ltr"] .rb-install-now-layer .layer__body .install-now__header__title img {
  margin-right: 7px;
}

[dir="rtl"] .rb-install-now-layer .layer__body .install-now__header__title img {
  margin-left: 7px;
}

.rb-install-now-layer .layer__body .install-now__header__title span {
  color: #666;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 33px;
}

.rb-install-now-layer .layer__body .install-now__header__msg {
  align-items: center;
  border: 1px solid #747475;
  border-radius: 3px;
  color: #666;
  display: flex;
  font-size: 18px;
  font-weight: 400;
  height: 25px;
  padding: 0 10px;
}

.rb-install-now-layer .layer__body .install-now__main {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 108px;
  justify-content: center;
  width: 100%;
}

.rb-install-now-layer .layer__body .install-now__loading {
  align-items: center;
  color: var(--theme-color);
  display: flex;
  height: 100px;
  justify-content: center;
  position: relative;
  width: 100px;
}

.rb-install-now-layer .layer__body .install-now__loading svg {
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.rb-install-now-layer .layer__body .install-now__loading svg circle {
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  animation: loading-circular 1s ease-in-out infinite;
}

.rb-install-now-layer .layer__body .install-now__loading p {
  align-items: center;
  color: var(--theme-color);
  display: flex;
  font-size: 16px;
  font-weight: 600;
}

.rb-install-now-layer .layer__body .install-now__loading p span {
  text-align: center;
  width: 9px;
}

.rb-install-now-layer .layer__body .install-now__actived {
  align-items: center;
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.rb-install-now-layer .layer__body .install-now__actived__tag {
  align-items: center;
  background: rgba(2, 135, 96, 0.1);
  border: 1px solid var(--theme-color);
  border-radius: 14px;
  display: flex;
  height: 28px;
  justify-content: center;
  margin-bottom: 34px;
  padding: 0 11px;
}

.rb-install-now-layer .layer__body .install-now__actived__tag img {
  height: 20px;
  width: 20px;
  margin-right: 5px;
  margin-left: 5px;
}

.rb-install-now-layer .layer__body .install-now__actived__tag span {
  color: var(--theme-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.rb-install-now-layer .layer__body .install-now__actived__btn {
  align-items: center;
  background: var(--theme-color);
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  height: 45px;
  justify-content: center;
  width: 100%;
}

@keyframes loading-rotate {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

@keyframes loading-circular {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40;
  }

  to {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120;
  }
}

.install .description {
  position: relative;
}

.install .description .description__title {
  color: #202124;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 30px;
}

.install .description .description__right-arrow {
  height: 24px;
  position: absolute;
  top: 2px;
  right: 0;
  width: 24px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.install .description .description__content {
  color: #666;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 19px;
  margin-bottom: 30px;
  overflow-wrap: break-word;
  white-space: break-spaces;
}

.install .description .description__content img {
  display: inline-block;
  width: 12px;
  height: 12px;
}

.install .description .description__label {
  display: flex;
  flex-flow: wrap;
  margin-bottom: 15px;
  gap: 16px 12px;
}

.install .description .description__label .description__label-item {
  align-items: center;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 15px;
  color: #5f6368;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  height: 30px;
  justify-content: center;
  padding: 0 12px;
  width: -moz-fit-content;
  width: fit-content;
}

.install .description .description__data-safety {
  border: 1px solid #dadce0;
  border-radius: 7px;
  padding: 24px 26px 8px;
  width: 100%;
}

.install
  .description
  .description__data-safety
  .description__data-safety__item {
  display: flex;
  margin-bottom: 16px;
}

.install
  .description
  .description__data-safety
  .description__data-safety__item
  .item-icon {
  margin-right: 16px;
  align-items: center;
  display: flex;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.install
  .description
  .description__data-safety
  .description__data-safety__item
  .item-icon
  img {
  display: block;
  height: auto;
  max-width: 100%;
}

.install
  .description
  .description__data-safety
  .description__data-safety__item
  .item-content {
  flex: 1;
  overflow: hidden;
  word-break: break-all;
}

.install
  .description
  .description__data-safety
  .description__data-safety__item
  .item-content
  p {
  color: #444;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
}

.install .comments__br {
  background-color: #dadce0;
  height: 1px;
  margin: 40px 0 10px;
  width: 100%;
}

.install .footer .footer__section {
  padding-top: 15px;
}

.install .footer .footer__section .footer__section-title {
  color: #5f6368;
  font-size: 14px;
  font-weight: 500;
  padding-top: 14px;
}

.install .footer .footer__section .footer__section-item {
  color: #606468;
  font-size: 14px;
  padding-top: 14px;
}

.install .footer .footer__bottom {
  color: #606468;
  font-size: 13px;
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.install .footer .footer__bottom .mr-22 {
  margin-right: 22px;
}

.rb-menus .menus__placeholder {
  height: 54px;
  width: 100%;
}

.rb-menus .menus__body {
  background-color: #fff;
  border-top: 1px solid #dadce0;
  bottom: 0;
  display: flex;
  left: 0;
  margin: 0 auto;
  max-width: 750px;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 10;
}

.rb-menus .menus__item {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 54px;
  justify-content: center;
}

.rb-menus .menus__item > img {
  display: block;
  height: 24px;
  width: 24px;
}

.rb-menus .menus__item > .title {
  color: #5f6368;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 2px;
}

.rb-menus .menus__item.active > .title {
  color: #028760;
}

.up_qrcode {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 60px 0;
  transform: scale(1.3);
  width: 100%;
}

.up_qrcode__hand {
  height: 142px;
  position: relative;
  width: 233px;
}

.up_qrcode__hand-bg {
  height: 100%;
  width: 100%;
}

.up_qrcode__hand-light {
  animation: moveUpDown 3s infinite;
  height: 44px;
  position: absolute;
  top: 15px;
  width: 63px;
}

[dir="ltr"] .up_qrcode__hand-light {
  left: 78px;
}

[dir="rtl"] .up_qrcode__hand-light {
  right: 78px;
}

@keyframes moveUpDown {
  0% {
    top: 15px;
  }

  50% {
    top: 53px;
  }

  to {
    top: 15px;
  }
}

.up_qrcode__code {
  height: 135px;
  width: 135px;
}

.up_qrcode__prop {
  flex-direction: column;
  align-items: center;
  display: flex;
  width: 150px;
}

.up_qrcode__prop-code {
  width: 150px;
  height: 150px;
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}

.up_qrcode__prop-bg {
  width: 100%;
  position: absolute;
  top: 0;
}

[dir="ltr"] .up_qrcode__prop-bg {
  left: 0;
}

[dir="rtl"] .up_qrcode__prop-bg {
  right: 0;
}

.up_qrcode__prop-title {
  font-size: 14px;
  margin-top: 5px;
  text-align: center;
}

.up_qrcode__arrowhead {
  height: 51px;
  margin: 0 10px;
  width: 51px;
}

.up_qrcode__phone {
  align-items: center;
  border: 2px solid #1e1c24;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  height: 145px;
  padding: 10px 5px;
  width: 75px;
}

.up_qrcode__phone-icon {
  border-radius: 5px;
  height: 34px;
  margin-top: 10px;
  width: 34px;
}

.up_qrcode__phone-name {
  display: -webkit-box;
  font-size: 7px;
  font-weight: 500;
  height: 20px;
  margin-top: 10px;
  width: 100%;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-align: center;
}

.up_qrcode__phone-btn {
  align-items: center;
  background: #028760;
  border-radius: 3px;
  color: #ffe336;
  display: flex;
  font-size: 6px;
  justify-content: center;
  margin-top: 20px;
  padding: 5px 0;
}

.up_qrcode__phone-btn,
.share-fission-container {
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}

.install .openPwaModal {
  display: none; /* 初始隐藏 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
  z-index: 9999;
  animation: fadeIn 0.3s ease; /* 淡入动画 */
}

.install .openPwaModal .modalContent {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #fff;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  animation: slideUp 0.3s ease;
}

.openPwaButton {
  display: block;
  margin: 15px auto 0;
  padding: 10px 20px;
  background-color: var(--theme-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.closeModal {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

/* 淡入动画 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 底部滑动动画 */
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.browser_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 99999;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
}

.browser_overlay .svg-img {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 28px;
  color: white;
}

.wh-lottery-layer {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.wh-lottery-layer .lottery__mask {
  animation-duration: 0.35s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px 10px 0 0;
  bottom: 0;
  height: 100%;
  max-width: 750px;
  opacity: 0;
  overflow-y: auto;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 12;
}

.wh-lottery-layer .lottery__content {
  align-items: center;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
  display: flex;
  flex-direction: column;
  opacity: 0;
  padding: 20px 0;
  position: relative;
  visibility: hidden;
  width: 100%;
  z-index: 13;
}

.wh-lottery-layer .lottery__close-icon {
  cursor: pointer;
  height: 24px;
  position: absolute;
  top: 20px;
  width: 24px;
}

[dir="ltr"] .wh-lottery-layer .lottery__close-icon {
  right: 20px;
}

[dir="rtl"] .wh-lottery-layer .lottery__close-icon {
  left: 20px;
}

.wh-lottery-layer .lottery__title {
  background: url(/images/turntable/title.webp) no-repeat 50%;
  background-size: 100% 100%;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  height: auto;
  margin-top: 30px;
  padding: 14px 10px 10px;
  text-align: center;
  width: 90%;
}

.wh-lottery-layer .lottery__wheel {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: -10% 0 -5%;
  padding-top: 100%;
  position: relative;
  width: 100%;
}

.wh-lottery-layer .lottery__wheel-light {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

[dir="ltr"] .wh-lottery-layer .lottery__wheel-light {
  left: 0;
}

[dir="rtl"] .wh-lottery-layer .lottery__wheel-light {
  right: 0;
}

.wh-lottery-layer .lottery__wheel-disc {
  height: 65%;
  position: absolute;
  top: 23%;
  width: 65%;
  z-index: 2;
}

.wh-lottery-layer .lottery__wheel-gold1 {
  bottom: 10%;
  height: 24%;
  position: absolute;
  width: 24%;
  z-index: 1;
}

[dir="ltr"] .wh-lottery-layer .lottery__wheel-gold1 {
  right: 10%;
}

[dir="rtl"] .wh-lottery-layer .lottery__wheel-gold1 {
  left: 10%;
}

.wh-lottery-layer .lottery__wheel-gold2 {
  bottom: 10%;
  height: 24%;
  position: absolute;
  width: 24%;
  z-index: 1;
}

[dir="ltr"] .wh-lottery-layer .lottery__wheel-gold2 {
  left: 10%;
}

[dir="rtl"] .wh-lottery-layer .lottery__wheel-gold2 {
  right: 10%;
}

.wh-lottery-layer .lottery__wheel-gold3 {
  bottom: 10%;
  height: 12%;
  position: absolute;
  width: 12%;
  z-index: 4;
}

[dir="ltr"] .wh-lottery-layer .lottery__wheel-gold3 {
  right: 24%;
}

[dir="rtl"] .wh-lottery-layer .lottery__wheel-gold3 {
  left: 24%;
}

.wh-lottery-layer .lottery__wheel-needle {
  height: auto;
  position: absolute;
  top: 18%;
  width: 22%;
  z-index: 4;
}

.wh-lottery-layer .lottery__wheel-prize {
  height: 57%;
  position: absolute;
  top: 27%;
  width: 57%;
  z-index: 3;
}

.wh-lottery-layer .lottery__wheel-circle {
  height: 61%;
  position: absolute;
  top: 25%;
  width: 61%;
  z-index: 3;
}

.wh-lottery-layer .lottery__wheel-go {
  height: 20%;
  position: absolute;
  top: 45%;
  width: 20%;
  z-index: 4;
}

.wh-lottery-layer .lottery__app-name {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  width: 90%;
}

.wh-lottery-layer .lottery__app-desc {
  color: #fff;
  font-size: 13px;
  text-align: center;
  width: 90%;
}

.lottery__container.lottery--visible .lottery__content,
.lottery__container.lottery--visible .lottery__mask {
  animation-name: fade-in;
}

.lottery__container.lottery--hidden .lottery__content {
  animation-duration: 0.15s;
}

.lottery__container.lottery--hidden .lottery__content,
.lottery__container.lottery--hidden .lottery__mask {
  animation-name: fade-out;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  to {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }

  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes loading-rotate {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

@keyframes loading-circular {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40;
  }

  to {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120;
  }
}

.rd-key {
  display: none;
  height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  width: 0;
}

/* === skeleton for app_icon === */
.app-icon {
  width: 72px;
  height: 72px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.app-icon.is-loading {
  background: #f2f3f5;
}

.app-icon.is-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(242, 243, 245, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(242, 243, 245, 0) 100%
  );
  transform: translateX(-100%);
  animation: skeleton-shimmer 1.2s infinite;
}

@keyframes skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.app-icon.loaded {
  background: none;
}
.app-icon.loaded::before {
  display: none;
}
.app-icon.loaded img {
  opacity: 1;
}

/* ========== Android 弹窗（按设计尺寸优化版） ========== */
.android-dialog {
  position: fixed;
  inset: 0;
  z-index: 30001;
  display: none;
  background: rgba(0, 0, 0, 0.5); /* 半透明灰色背景 */
}

.android-dialog-mask {
  display: none;
}

.android-dialog-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 78vw; /* 弹窗宽度占屏幕约 78% */
  max-width: 290px; /* 大屏上最大不超过 290px */
  min-width: 220px; /* 小屏最小宽度 220px */
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  padding: 18px 14px 16px;
  text-align: center;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  animation: toggleScale 1.5s infinite both;
}

.android-dialog-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.android-dialog-desc {
  font-size: 13px;
  color: #333;
  line-height: 1.45;
  margin-bottom: 14px;
}

.android-box-btn {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.android-btn {
  flex: 1;
  border-radius: 5px;
  font-size: 13px;
  font-weight: normal;
  color: #fff; /* ✅ 白色字体 */
  text-align: center;
  line-height: 1.2;
  padding: 9px 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.android-btn:active {
  opacity: 0.85;
}

.android-btn-confirm {
  background-color: #01875f; /* ✅ 绿色按钮 */
}

.android-btn-open {
  background-color: #f3c738; /* ✅ 黄色按钮 */
  color: #fff; /* ✅ 统一白字 */
}

@keyframes toggleScale {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(0.97);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
/* 通知弹窗整体容器 */
#push-softprompt {
  position: fixed;
  inset: 0;
  z-index: 99999;
}
#push-softprompt[aria-hidden="true"] {
  display: none;
}

/* 无遮罩背景 */
#push-softprompt .psp-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

/* 顶部居中卡片 */
#push-softprompt .psp-card {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 380px);
  height: 130px;
  background: linear-gradient(180deg, #dadbe2 0%, #dcdeea 100%);
  color: #f5f6fa;
  border-radius: 18px;
  padding: 26px 18px 32px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(224, 206, 206, 0.06);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC",
    "Noto Sans", sans-serif;
  backdrop-filter: blur(6px);
}

/* 关闭按钮 */
#push-softprompt .psp-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #9ca3af;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s ease;
}
#push-softprompt .psp-close:hover {
  color: #ffffff;
}

/* 图标 + 文案 */
#push-softprompt .psp-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 6px 6px 20px;
}
#push-softprompt .psp-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
#push-softprompt .psp-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #111112;
}

/* 主按钮（渐变 + 轻阴影） */
#push-softprompt .psp-cta {
  width: 100%;
  margin-top: 14px;
  padding: 14px 16px;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.2px;
  background: linear-gradient(90deg, #7b61ff 0%, #f472b6 50%, #ff7b6b 100%);
  box-shadow: 0 8px 20px rgba(255, 118, 141, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#push-softprompt .psp-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 118, 141, 0.4);
}
#push-softprompt .psp-cta:active {
  transform: scale(0.98);
}

/* === 针对超小屏手机（宽 < 360px）微调 === */
@media (max-width: 360px) {
  .android-dialog-box {
    width: 84vw;
    padding: 16px 12px 14px;
  }
  .android-dialog-title {
    font-size: 15px;
  }
  .android-dialog-desc {
    font-size: 12px;
  }
  .android-btn {
    font-size: 12px;
    padding: 8px 0;
  }
}

/* === 针对大屏平板（宽 > 480px）收缩尺寸 === */
@media (min-width: 480px) {
  .android-dialog-box {
    width: 260px;
    padding: 16px 12px 14px;
  }
  .android-dialog-title {
    font-size: 15px;
  }
  .android-dialog-desc {
    font-size: 12.5px;
  }
  .android-btn {
    font-size: 12px;
    padding: 8px 0;
  }
}
