.wrapper {
    width: 100%;
    max-width: 990px;
    margin: 0 auto;
    overflow: hidden;
}

.container {
    width: 100%;
    padding: 0 25px;
    margin: 0 auto;
    overflow: hidden;
}

.top-cont-left {
    overflow: hidden;
    width: calc(100% - 24px - 142px);
}

.top-cont-left .app-name-img {
    overflow: hidden;
    display: flex;
    justify-content: start;
    align-items: start;
}

.app-name-img .app-logo {
    overflow: hidden;
    width: 76px;
    height: 76px;
    border-radius: 5px;
    padding: 5px;
    background-color: #fff;
    position: relative;
}

.app-name-img .app-logo .logo-img {
    border-radius: 12px;
    object-fit: contain;
    width: 100%;
    box-shadow: 1px 1px 8px #dad9d9;
}

.app-name-img .app-name-intro {
    margin-left: 25px;
    overflow: hidden;
}

.top-cont-left .app-information {
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.app-information .information-item {
    overflow: hidden;
    font-size: 12px;
    padding: 18px 18px 18px 10px;
    color: #4b4b4b;
}

.information-item .start-img {
    overflow: hidden;
}

.information-item .start-img img {
    height: 14px;
    margin-left: 2px;
}

.information-item .reviews {
    margin-top: 5px;
}

.information-item .reviews.age-info img {
    width: 12px;
}

.information-item .start-img .age-num {
    border: 1px solid #000;
    padding: 0 3px;
    border-radius: 2px;
    color: #5f6368;
    font-size: 12px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.information-item:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 22px;
    position: absolute;
    background: #dad9d9;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.app-name-intro .name {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    color: #333;
}

.app-name-intro .intro {
    font-size: 12px;
    line-height: 20px;
}

/* .install-btn {
    background-color: #3d855f;
    overflow: hidden;
    border-radius: 8px;
    padding: 10px 8px;
    margin-top: 8px;
    height: 56px;
    color: #fff;
}

.install-btn:hover {
    background-color: #01533b;
    cursor: pointer;
}

.install-btn .install-txt {
    overflow: hidden;
    font-size: 16px;
}

.install-btn .install-txt img {
    width: 12px;
    margin-right: 6px;
} */

.program-btn {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.btn.program-cancel {
    border: 0px solid #a6a5a5;
    margin-right: 0;
    width: 0px;
    padding: 0;
    overflow: hidden;
    background: #fff;
}

.program-btn.click .btn.program-cancel {
    border: 1px solid #cecece;
    margin-right: 10px;
    width: calc((100% - 10px) / 2);
    padding: 0 20px;
    overflow: hidden;
    background: #fff;
}

.program-install,
.program-open {
    transition: all 0.5s ease;
    cursor: pointer;
}

.program-btn.click .btn.program-install,
.program-btn.click .btn.program-open {
    width: calc((100% - 10px) / 2);
    padding: 0 20px;
    background: #e3e3e3;
}

.screenshot-view {
    width: 100%;
    padding: 16px 0;
    overflow-x: auto;
    overflow-y: hidden;
}

.screenshot-view .screenshot {
    width: 100%;
    display: flex;
    overflow: hidden;
    justify-content: start;
    height: 164px;
    flex-wrap: nowrap;
    /* 防止换行 */
    min-width: max-content;
    /* 确保 flex 容器不会缩小到没有滚动 */
}

.screenshot-view .screenshot img {
    height: 100%;
}

.screenshot-view .screenshot a {
    display: inline-block;
    overflow: hidden;
    height: 100%;
    padding: 0 10px;
}

/* 简介 */
.description {
    margin-bottom: 15px;
    overflow: hidden;
    padding: 0 25px;
}

.description .title {
    color: #000;
    font-weight: 500;
    font-size: 18px;
    margin: 10px auto;
}

.description .intro {
    font-size: 12px;
    color: #4b4b4b;
    word-break: break-all;
    line-height: 20px;
}

/* 评论列表 */
.comment-list {
    overflow: hidden;
    margin-bottom: 15px;
    padding: 0 25px;
}

.comment-list .p-title {
    color: #000;
    font-size: 20px;
    margin-bottom: 15px;
}

.comment-list .large-num {
    /* overflow: hidden; */
    display: flex;
    justify-content: start;
    align-items: end;
}

.comment-list .large-num .num {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-right: 3px;
    color: #4c4c50;
    line-height: 43px;
}

.comment-list .large-num .num-txt {
    font-size: 12px;
}

.comment-list .review-count {
    font-size: 12px;
    color: #636366;
    margin: 5px auto;
}

.comment-list .list-view {
    overflow: hidden;
    margin-top: 10px;
    display: grid;
    gap: 20px;
    /* 设置列和行之间的间距 */
    grid-template-columns: repeat(3, 1fr);
}

/* 当屏幕宽度小于 900px 时，切换为两列布局 */
@media screen and (max-width: 900px) {
    .comment-list .list-view {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 当屏幕宽度小于 600px 时，切换为一列布局 */
@media screen and (max-width: 600px) {
    .comment-list .list-view {
        grid-template-columns: 1fr;
    }
}

.list-view .review-wrapper {
    padding: 13px 16px 16px;
    background-color: #f8f8f8;
    border-radius: 6px;
    align-self: start;
    margin-bottom: 0;
    background-color: #f0f0f0;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

@media screen and (max-width: 560px) {
    .top-content {
        flex-direction: column;
    }

    .top-cont-left {
        width: 100%;
    }
}

@media screen and (min-width: 600px) {
    .install-btn {
        width: 250px;
    }
}

.app-del-centered-container {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 100%;
    height: 50px;
    transform: translate(-50%, -50%);
    /* 将元素中心点移动到屏幕中心 */
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    color: black;
    font-weight: bold;
}

.true-install {
    background: #3d855f;
}

.is_disabled.true-install,
.is_loading.true-install {
    background: #e3e3e3;
}

@media screen and (min-width: 600px) {
    .true-install {
        width: 250px;
    }
}

.is_disabled .pr-install,
.is_loading .pr-install {
    color: #898989;
}

.is_loading .btn-loading {
    display: block;
}

.is_disabled.btn img,
.is_loading.btn img {
    filter: hue-rotate(0deg) saturate(200%) brightness(50%);
}

@keyframes spin2 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.pr-install {
    display: flex;
    align-items: center;
}

.btn img {
    width: 12px;
    margin-right: 6px;
}

.pr-open {
    display: none;
}

.program-btn.click .pr-open {
    display: flex;
    justify-content: center;
    width: 100%;
}

.program-btn.click .pr-install {
    display: none;
}

#open-chrome {
    z-index: 1000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.mask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

#open-chrome .bd {
    width: 90%;
    max-width: 600px;
    padding: 35px 35px 35px 50px;
    text-align: left;
    word-wrap: break-word;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
}

#open-chrome .bd .closed-btn {
    position: absolute;
    top: -1px;
    right: 9px;
    width: 30px;
    transform: translateY(-35px);
    cursor: pointer;
}

#open-chrome .bd p {
    color: #1f2024;
    text-indent: -1.5em;
    line-height: 1.8rem;
}

#open-chrome .bd strong {
    font-weight: bold;
}

#open-chrome .bd .btn {
    margin-top: 12px;
    text-align: center;
    background: #01875f;
    color: #fff;
}

.btn.btn-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

#open-chrome .bd p:nth-of-type(2) {
    margin: 30px 0 12px;
}

#open-chrome .bd p {
    color: #1f2024;
    text-indent: -1.5em;
}

#open-chrome .bd .url-show {
    display: block;
    width: 100%;
    padding: 10px 8px;
    border: #e0e0e0 1px solid;
    border-radius: 8px;
    color: #5f6268;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
    margin-top: 10px;
}

#overlay {
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

#overlay img {
    max-width: 80%;
    max-height: 80%;
    transition: transform 0.5s;
}

#overlay.show {
    opacity: 1;
    visibility: visible;
}

#overlay.show img {
    transform: scale(1.05);
}

.header__container {
    display: flex;
    align-items: center;
    padding: 17px 0 18px;
    margin: 0 10px;
}

.btn:hover {
    cursor: pointer;
    opacity: .8;
}

.program-info-instal {
    display: flex;
    flex-direction: column;
    display: none;
}

.program-info-instal.open {
    display: flex;
}

figure.rating-stars {
    margin-bottom: 3px;
    display: inline-block;
}

.review-text-content {
    word-break: break-all;
    word-wrap: break-word;
}

span.star-container,
span.star-filled {
    display: inline-block;
    height: 9.5px;
    background-image: url(https://static.pwago.com/images/stars-lg.svg);
    background-size: 10px 19px;
}

span.star-container {
    width: 100px;
    background-position: 0 22px;
    height: 21px;
    background-size: 20px 43px;
}

span.star-filled {
    height: 21px;
    background-size: 20px 43px;
}

span.star-filled.stars1 {
    width: 20px;
}

span.star-filled.stars2 {
    width: 40px;
}

span.star-filled.stars3 {
    width: 60px;
}

span.star-filled.stars4 {
    width: 80px;
}

span.star-filled.stars5 {
    width: 100px;
}

span.reviewer-name {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

time.review-date {
    flex-shrink: 0;
    white-space: nowrap;
}

.review-meta {
    font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "Apple WebExp Icons Custom", "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-bottom: 15px;
    color: #636366;
    font-size: 12px;
    line-height: 1.33337;
    font-weight: 600;
    letter-spacing: 0;
    margin-top: 5px;
}

blockquote.review-text {
    height: 72px;
    mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0) 18.0001px, rgb(0, 0, 0) 18.0001px), linear-gradient(270deg, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0) 16.4px, rgb(0, 0, 0) 52.4002px);
    font-size: 13px;
    line-height: 1.38462;
    font-weight: 400;
}

.collumn {
    flex-direction: column;
}

.collumn .top-cont-left {
    width: 100%;
}

.collumn .program-btn {
    width: 100%;
}

.primary-text {
    color: #0b57cf !important;
}

.star-num {
    font-weight: bold;
}

.subscribe-btn {
    background-color: #00875f;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.subscribe-btn:hover {
    background-color: #005f43;
    color: #fff;
}


.modal-content {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    gap: 20px;
    border-radius: 20px;
    background-color: #fefefe;
    margin: auto;
    padding: 55px 20px 30px;
    border: 1px solid #888;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.modal-text {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
}


.iframe-box {
    width: 100%;
    height: 100%;
    overflow: auto;
    border: none;
}

.showbox {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.loader {
    position: relative;
    margin: 0 auto;
    width: 76px;
}

.loader::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.circular {
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.circular.animation {
    animation: rotate 2s linear infinite;
}

.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite;
    stroke: #0b57cf;
    stroke-linecap: round;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 899, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes color {
    100% {
        stroke: #00875f;
    }

    0% {
        stroke: #00875f;
    }

    40% {
        stroke: #00875f;
    }

    66% {
        stroke: #00875f;
    }

    80% {
        stroke: #00875f;
    }

    90% {
        stroke: #00875f;
    }
}
.close-button{
    width: 26px;
    height: 26px;
    cursor:pointer;
    position: absolute;
    top:10px;
    right:10px;
    border: 2px solid #7f7f7f;
    border-radius: 50%;
  }
  .close-button::before, .close-button::after{
    contain: '';
    position: absolute;
    width: 5px;
    height: 100%;
    background-color: #515151;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  
.close-button::before{
    transform: translateX(-50%) rotate(45deg);
  }
  
  .close-button::after{
    transform: translateX(-50%) rotate(-45deg);
  }
  
  .close-button {
    /* 设置按钮样式 */
    cursor: pointer;
  }
  
  .close-button::before,
  .close-button::after {
    /* 设置 X 形状的两个线条 */
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 3px;
    transform: translate(-50%, -50%);
  }
  
  .close-button::before {
    /* 设置水平线条 */
    transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .close-button::after {
    /* 设置垂直线条 */
    transform: translate(-50%, -50%) rotate(-45deg);
  }