@charset "UTF-8";
/* =========================
   Modern Reset for RWD Page
========================= */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

* {
  margin: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

input,
textarea {
  outline: none;
}

textarea {
  resize: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  color: #666;
  background: #000;
  font-size: 16px;
  background: url("../images/bg-pattern.jpg") center center/15%;
}
@media (min-width: 1200px) {
  body {
    background-size: 5%;
  }
}
body.page-ios, body.page-android, body.page-ios-guide {
  background: #fff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-ios-guide {
  color: #333;
}
.page-ios-guide .ios-guide {
  width: 100%;
  min-height: 100vh;
  background: #fff;
}
.page-ios-guide .ios-guide-doc {
  width: min(100%, 750px);
  margin: 0 auto;
  background: #fff;
  padding: 48px 54px 64px;
}
.page-ios-guide .ios-guide-doc img {
  display: block;
  width: 100%;
  height: auto;
}
.page-ios-guide .ios-guide-content h1 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: #333;
  font-size: 28px;
  font-weight: 700;
}
.page-ios-guide .ios-guide-content h1:before {
  content: "";
  flex: none;
  width: 40px;
  height: 40px;
  background: url("../images/apple.png") center/contain no-repeat;
}
.page-ios-guide .ios-guide-content h2 {
  margin: 60px 0 28px;
  color: #333;
  font-size: 24px;
  font-weight: 700;
}
.page-ios-guide .ios-guide-content p {
  color: #555;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
}
.page-ios-guide .ios-guide-content ol {
  display: grid;
  gap: 42px;
  margin-top: 20px;
  counter-reset: ios-guide-step;
}
.page-ios-guide .ios-guide-content li {
  counter-increment: ios-guide-step;
  color: #777;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
}
.page-ios-guide .ios-guide-content li:before {
  content: counter(ios-guide-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 4px;
  border: 2px solid #9a9a9a;
  border-radius: 50%;
  color: #777;
  font-size: 14px;
  line-height: 1;
  vertical-align: 2px;
}
.page-ios-guide .ios-guide-content li p {
  display: inline;
}
.page-ios-guide .ios-guide-content li img {
  width: min(100%, 432px);
  margin: 24px auto 0;
}
.page-ios-guide .ios-guide-content > p:last-child {
  margin-top: 92px;
  color: #a7a7a7;
  text-align: center;
}
@media (max-width: 576px) {
  .page-ios-guide .ios-guide-doc {
    padding: 32px 24px 48px;
  }
  .page-ios-guide .ios-guide-content h1 {
    gap: 10px;
    font-size: 20px;
  }
  .page-ios-guide .ios-guide-content h1:before {
    width: 28px;
    height: 28px;
  }
  .page-ios-guide .ios-guide-content h2 {
    margin-top: 40px;
    font-size: 18px;
  }
  .page-ios-guide .ios-guide-content p,
  .page-ios-guide .ios-guide-content li {
    font-size: 16px;
  }
  .page-ios-guide .ios-guide-content ol {
    gap: 34px;
  }
  .page-ios-guide .ios-guide-content li img {
    margin-top: 16px;
  }
  .page-ios-guide .ios-guide-content > p:last-child {
    margin-top: 56px;
  }
}

.detail-view {
  display: none;
  position: relative;
  padding: 12px 0 40px;
}
.detail-view .detail-back {
  display: flex;
  gap: 8px;
  align-items: center;
  background: transparent;
  border: none;
  color: #222;
  font-size: 14px;
  margin-bottom: 12px;
  cursor: pointer;
}
.detail-view .detail-back .back-icon {
  width: 32px;
  height: 32px;
  flex: none;
  display: inline-block;
  vertical-align: middle;
  color: #222; /* SVG uses currentColor */
}
.detail-view .detail-back .back-text {
  color: #222;
  font-size: 14px;
}
.detail-view .detail-body {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.detail-view .detail-body img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.detail-view.open {
  display: block;
}

@media (min-width: 1200px) {
  .mask-box {
    background-size: 5%;
  }
}

header {
  background-color: #592d88;
  color: #fff;
}
header div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}
header div ul {
  display: flex;
  gap: 1rem;
}
header div ul li {
  list-style: none;
  border: 1px solid #fff;
  border-radius: 2rem;
  padding: 0.2rem 1rem;
}
@media (min-width: 1200px) {
  header div ul {
    gap: 2rem;
  }
  header div ul li {
    padding: 0.2rem 1.5rem;
  }
}
header div h1 {
  display: flex;
  align-items: center;
}
header div h1 .brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
header div h1 .title {
  font-size: 1.2rem;
  font-weight: bold;
}
header .sponsor {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0.5rem 0;
  overflow: visible;
  white-space: nowrap;
}
header .sponsor li {
  list-style: none;
}
header .sponsor .sponsor-link {
  flex: none;
}
header .sponsor .sponsor-link a {
  display: block;
}
header .sponsor .sponsor-more {
  position: relative;
  flex: none;
}
header .sponsor .sponsor-more[hidden] {
  display: none;
}
header .sponsor .sponsor-more.is-open .sponsor-more-btn:after {
  transform: rotate(180deg);
}
header .sponsor .sponsor-more.is-open .sponsor-more-list {
  display: grid;
}
header .sponsor .sponsor-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}
header .sponsor .sponsor-more-btn:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 8px 0;
  border-color: currentColor transparent transparent;
  transition: transform 120ms ease;
}
header .sponsor .sponsor-more-list {
  z-index: 20;
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  max-width: 70vw;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  color: #333;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  gap: 0;
}
header .sponsor .sponsor-more-list li {
  min-width: 0;
}
header .sponsor .sponsor-more-list a {
  display: block;
  overflow: hidden;
  padding: 8px 10px;
  border-radius: 6px;
  color: inherit;
  text-overflow: ellipsis;
}
header .sponsor .sponsor-more-list a:hover {
  background: #f3eef8;
}

.container {
  width: min(100% - 32px, 1400px);
  margin: 0 auto;
}

.content {
  padding-bottom: 5rem;
}
@media (min-width: 1200px) {
  .content {
    min-width: 0;
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  .page-index {
    width: min(100% - 32px, 1400px);
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .page-index {
    display: grid;
    grid-template-columns: minmax(0, 60%) minmax(360px, 36%);
    gap: clamp(24px, 4vw, 64px);
    align-items: center;
    min-height: calc(100vh - 120px);
  }
}

.pc-deco-right {
  display: none;
}
@media (min-width: 1200px) {
  .pc-deco-right {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  .pc-deco-right img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
}

.pc-deco-left {
  display: none;
}
@media (min-width: 1200px) {
  .pc-deco-left {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 250px;
  }
  .pc-deco-left img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
}

.kv {
  position: relative;
  width: 100%;
  aspect-ratio: 375/390;
  overflow: hidden;
}
.kv .kv__inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.kv .kv__inner .kv__title {
  position: absolute;
  width: 80%;
  bottom: 12%;
  left: 0%;
}
.kv .kv__inner .kv__road {
  position: absolute;
  width: 35%;
  bottom: 0;
  left: 10%;
}
.kv .kv__inner .kv__heightLight {
  mix-blend-mode: color-dodge;
  position: absolute;
  width: 100%;
  top: 0;
  filter: brightness(0.8);
}
.kv .kv__inner .kv__group {
  position: absolute;
  width: 85%;
  bottom: 0;
  right: -5%;
}
.kv .kv__inner .kv__group .kv__light {
  position: absolute;
  width: 35%;
  top: 10%;
  right: 0%;
  mix-blend-mode: screen;
  transform-origin: center;
  animation: kvLightFlicker 4.8s ease-in-out infinite;
  will-change: opacity, filter, transform;
}
.kv .kv__inner .kv__group .kv__girl {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .kv {
    aspect-ratio: 375/220;
  }
  .kv .kv__inner .kv__road {
    width: 20%;
  }
  .kv .kv__inner .kv__heightLight {
    width: 60%;
    top: -40px;
  }
  .kv .kv__inner .kv__title {
    width: 50%;
    bottom: 9%;
    left: 5%;
  }
  .kv .kv__inner .kv__group {
    width: 50%;
    bottom: 0%;
    right: 5%;
  }
}
@media (min-width: 1200px) {
  .kv {
    justify-self: end;
    width: min(100%, 560px);
    aspect-ratio: 100/158;
    order: 1;
  }
  .kv .kv__inner .kv__road {
    width: 35%;
  }
  .kv .kv__inner .kv__heightLight {
    width: 100%;
    top: -10%;
  }
  .kv .kv__inner .kv__title {
    width: 80%;
    bottom: 15%;
    left: 15%;
  }
  .kv .kv__inner .kv__group {
    width: 90%;
    bottom: 25%;
    right: 0%;
  }
}

@keyframes kvLightFlicker {
  0%, 100% {
    opacity: 0.78;
    filter: brightness(0.9) drop-shadow(0 0 4px rgba(255, 255, 255, 0.45));
    transform: scale(0.98);
  }
  35% {
    opacity: 1;
    filter: brightness(1.35) drop-shadow(0 0 14px rgba(255, 255, 255, 0.9));
    transform: scale(1.05);
  }
  55% {
    opacity: 0.68;
    filter: brightness(0.75) drop-shadow(0 0 3px rgba(255, 255, 255, 0.35));
    transform: scale(0.96);
  }
  72% {
    opacity: 1;
    filter: brightness(1.55) drop-shadow(0 0 18px rgb(255, 255, 255));
    transform: scale(1.08);
  }
}
@media (prefers-reduced-motion: reduce) {
  .kv .kv__inner .kv__group .kv__light {
    animation: none;
  }
}
.tab-btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 16px 0;
  padding: 0 16px;
}
.tab-btn-group .tab-btn {
  --tab-rgb: 248, 238, 39;
  --tab-color: rgb(var(--tab-rgb));
  padding: 8px 16px;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  width: clamp(100px, 33vw, 250px);
  border: 1px solid #fff;
  box-shadow: inset 0 0 10px rgba(var(--tab-rgb), 0.95), 0 0 10px rgba(var(--tab-rgb), 0.95);
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.tab-btn-group .tab-btn--latest {
  --tab-rgb: 255, 5, 191;
}
.tab-btn-group .tab-btn--hami {
  --tab-rgb: 46, 245, 255;
}
.tab-btn-group .tab-btn.is-active, .tab-btn-group .tab-btn:hover {
  background-color: rgba(var(--tab-rgb), 0.18);
  transform: translateY(-2px);
  box-shadow: inset 0 0 14px rgba(var(--tab-rgb), 1), 0 0 16px rgba(var(--tab-rgb), 1);
}

.tab-content {
  --tab-content-rgb: 46, 245, 255;
  margin: 16px;
  background-color: #000;
  border-radius: 4px;
  border: 1px solid #fff;
  box-shadow: inset 0 0 10px rgba(var(--tab-content-rgb), 0.95), 0 0 10px rgba(var(--tab-content-rgb), 0.95);
  min-height: 400px;
  padding: 1em;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.tab-content--exclusive {
  --tab-content-rgb: 248, 238, 39;
}
.tab-content--latest {
  --tab-content-rgb: 255, 5, 191;
}
.tab-content--hami {
  --tab-content-rgb: 46, 245, 255;
}
.tab-content ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.tab-content ul .tab-content__item {
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease;
}
.tab-content ul .tab-content__item.is-active {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 10px rgba(var(--tab-content-rgb), 0.85));
}
.tab-content ul .tab-content__item--empty {
  cursor: default;
  grid-column: 1/-1;
  color: #fff;
}
.tab-content ul .item-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: rgba(var(--tab-content-rgb), 0.12);
}
.tab-content ul .item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tab-content ul p {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #fff;
}
@media (min-width: 1200px) {
  .tab-content ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.btn-group li {
  list-style: none;
  padding: 8px 16px;
  background-color: #592d88;
  color: #fff;
  border-radius: 4px;
  transition: all 400ms ease;
}
.btn-group li:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.btn-group li a,
.btn-group li button {
  display: block;
  color: inherit;
}

footer {
  width: 100%;
  padding: 8px;
  position: fixed;
  bottom: 0;
  background: linear-gradient(0deg, rgba(3, 3, 3, 0.8392156863) 90%, rgba(1, 6, 13, 0) 100%);
}
footer .note {
  color: #fff;
  font-size: 12px;
  text-align: center;
  display: block;
  margin-top: 4px;
}
@media (min-width: 1200px) {
  footer {
    background: transparent;
    position: absolute;
    right: max(16px, (90vw - 1400px) / 2);
    width: min((90vw - 32px) / 2, 700px);
    bottom: 5%;
  }
}

.page-ios {
  flex-direction: column;
}
.page-ios main {
  font-size: 12px;
}
.page-ios .app-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  width: 100%;
}
.page-ios .app-info .app-logo {
  width: 100px;
  height: 100px;
}
.page-ios .app-info .app-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-ios .app-info .app-info-rig {
  flex: 1;
}
.page-ios .app-info .app-info-rig strong {
  font-size: 1.2rem;
  font-weight: bold;
}
.page-ios .app-info .app-info-rig p {
  margin-top: 4px;
  color: #666;
}
.page-ios .app-info .app-info-rig .dwonload-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.page-ios .app-info .app-info-rig .dwonload-group .btn {
  padding: 8px 16px;
  background-color: #592d88;
  color: #fff;
  border-radius: 2rem;
  text-decoration: none;
  text-align: center;
}
.page-ios .app-info .app-info-rig .dwonload-group .btn.download {
  background-color: #ff2e70;
  width: 50%;
  max-width: 350px;
}
.page-ios .app-info .app-info-rig .dwonload-group .btn.failed {
  background-color: #aeaeae;
}
.page-ios .app-intro,
.page-ios .comment-box,
.page-ios .information-box {
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid #e5e5e5;
  width: 100%;
}
.page-ios .app-intro .app-intro-con {
  position: relative;
  line-height: 1.8;
  font-size: 14px;
  height: 5.4em;
  overflow: hidden;
}
.page-ios .app-title {
  margin-bottom: 0.85em;
  font-size: 20px;
}
.page-ios .app-show {
  padding: 0 0 20px;
  margin: 0 auto;
  background: #fff;
  color: #8e8f92;
  width: 100%;
}
.page-ios .app-show .app-age {
  float: right;
  text-align: right;
}
.page-ios .app-show .app-score strong,
.page-ios .app-show .app-age strong {
  font-size: 16px;
  font-weight: bold;
}
.page-ios .app-show .app-score img {
  width: 80px;
  margin-left: 5px;
}
.page-ios .app-show .app-score p {
  color: #d8d8d8;
  font-size: 12px;
}
.page-ios .comment-right {
  float: right;
  width: 63.38308%;
}
.page-ios .comment-right .comment-star-list li {
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-ios .comment-right .comment-star-list li .comment-star {
  position: relative;
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #ffffff;
}
.page-ios .comment-right .comment-star-list li .comment-star:before {
  content: "★★★★★";
}
.page-ios .comment-right .comment-star-list li .comment-star:after {
  content: "★★★★★";
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: #8a8a8a;
  width: 0;
  white-space: nowrap;
}
.page-ios .comment-right .comment-star-list li:nth-child(1) .comment-star:after {
  width: 100%;
}
.page-ios .comment-right .comment-star-list li:nth-child(2) .comment-star:after {
  width: 80%;
}
.page-ios .comment-right .comment-star-list li:nth-child(3) .comment-star:after {
  width: 60%;
}
.page-ios .comment-right .comment-star-list li:nth-child(4) .comment-star:after {
  width: 40%;
}
.page-ios .comment-right .comment-star-list li:nth-child(5) .comment-star:after {
  width: 20%;
}
.page-ios .comment-right .comment-progress {
  position: relative;
  width: calc(100% - 56px);
  height: 2px;
  background: #e9e9ec;
  border-radius: 2px;
}
.page-ios .comment-right .comment-progress div {
  position: absolute;
  width: 0;
  height: 2px;
  background: #4a4a4e;
  border-radius: 2px;
}
.page-ios .comment-right .comment-star,
.page-ios .comment-right .comment-progress {
  display: inline-block;
  vertical-align: middle;
}
.page-ios .comment-right p {
  margin-top: 5px;
  color: #7b7b7b;
  text-align: right;
}
.page-ios .comment-star-list li:nth-child(1) .comment-progress div {
  width: 90%;
}
.page-ios .comment-star-list li:nth-child(2) .comment-progress div {
  width: 10%;
}
.page-ios .comment-left strong {
  font-size: 60px;
  line-height: 43px;
  color: #4a4a4e;
  font-weight: bold;
}
.page-ios .comment-left p {
  width: 91px;
  text-align: center;
  color: #7b7b7b;
  margin-top: 10px;
}
.page-ios .information-list li {
  line-height: 3.5;
  border-bottom: #f2f2f2 1px solid;
  overflow: hidden;
}
.page-ios .information-list li:last-child {
  border: none;
}
.page-ios .information-list li .l {
  float: left;
  color: #737379;
}
.page-ios .information-list li .r {
  overflow: hidden;
  text-align: right;
}

/* Android 可点击列表（类似示意图） */
.page-android .settings-wrap {
  padding: 12px 0 24px;
}
.page-android .settings-list {
  display: block;
  padding: 0;
  margin: 0;
}
.page-android .settings-list li {
  list-style: none;
  margin: 10px 0;
}
.page-android .settings-list li a.settings-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 3rem;
  padding: 12px 14px;
  border: 1px solid #f2f2f4;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.page-android .settings-list li a.settings-item .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-android .settings-list li a.settings-item .icon img {
  width: 26px;
  height: auto;
}
.page-android .settings-list li a.settings-item .text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page-android .settings-list li a.settings-item .text strong {
  color: #222;
  font-size: 0.85rem;
}
.page-android .settings-list li a.settings-item .text .sub {
  color: #8b8b8b;
  font-size: 0.85rem;
}
.page-android .settings-list li a.settings-item .btn {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 2px solid #ff2e70;
  color: #ff2e70;
  font-weight: 700;
  background: transparent;
  font-size: 0.85rem;
}
.page-android .settings-list li a.settings-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .page-android .settings-list li a.settings-item {
    padding: 14px 16px;
  }
}

.mask-box {
  z-index: 999;
  position: relative;
  display: none;
}
.mask-box .mask-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.mask-box .mask-pop {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 300px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
}
.mask-box .mask-pop .mask-colsed {
  z-index: 2;
  position: absolute;
  right: 15px;
  top: 15px;
  width: 15px;
}
.mask-box .mask-pop .copy-url-img {
  display: block;
  width: 100%;
}
.mask-box .mask-pop .copy-url {
  position: relative;
  margin: 20px 30px;
  height: 36px;
  line-height: 36px;
  background: #f1f6f9;
  border-radius: 18px;
  overflow: hidden;
}
.mask-box .mask-pop .copy-url input {
  padding-left: 20px;
  color: #535352;
  border: none;
  background: none;
  outline: 0;
}
.mask-box .mask-pop .copy-url button {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 15px;
  height: 36px;
  line-height: 36px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(34, 125, 249)), to(rgb(0, 203, 250)));
  background: -o-linear-gradient(left, rgb(34, 125, 249), rgb(0, 203, 250));
  background: linear-gradient(90deg, rgb(34, 125, 249), rgb(0, 203, 250));
  color: #fff;
  border-radius: 0 18px 18px 0;
}/*# sourceMappingURL=all.css.map */
