/* 账户申诉页面样式 - 从 accountView.vue 转换 */
@keyframes iconAnmation {
  0% { opacity: 0; transform: translateX(-50%); }
  100% { opacity: 1; transform: translateX(50%); }
}
/* 标题通用样式 */
.account-title {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 30px 0; margin-top: 80px;
}
.account-title h3 {
  font-size: var(--content-subhea) !important; font-weight: 600; margin-bottom: 10px;
  color: #333; text-align: center;
}
.account-title p {
  font-size: 14px; color: #999; margin-bottom: 15px; text-align: center; max-width: 800px;
}
.account-title::after {
  content: ""; display: block; width: 60px; height: 3px; background-color: var(--primary-color);
}
/* accountComp 标题 */
.account-comp-title { margin-top: 30px !important; }
/* accountComp 图片 */
.account-img { max-width: 1200px; margin: 0 auto; }
.account-img img { width: 100%; height: auto; }
/* 容器 */
.account-container {
  max-width: var(--max-width-view); width: 80vw; margin: 0 auto; padding: 0 15px;
}
/* 服务网格 */
.service-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; padding: 24px;
}
@media (max-width: 768px) { .service-grid { grid-template-columns: 1fr; padding: 12px !important; } }
.service-list { list-style: none; padding: 0; margin: 0; }
.service-list li {
  display: flex; align-items: center; margin-bottom: 8px;
  font-size: var(--font-size-base); color: #828282;
}
.service-list .check-icon { color: #ffc83d; margin-right: 6px; font-size: 12px; font-weight: bold; font-style: normal; }
.service-card {
  background: #fff; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  padding: 24px; transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.service-card > .iconfont {
  display: flex; align-items: center; justify-content: center; height: 40px; width: 30%;
  border-radius: 8px; background: #fdf8eb; font-size: 15px; margin-right: 12px; color: var(--primary-color);
}
.service-card > .iconfont.icon-yamaxun { font-size: 22px; }
.service-card > .iconfont.icon-ebay { font-size: 32px; }
.service-card > .iconfont.icon-Shopee { font-size: 26px; }
.service-card > .iconfont.icon-logo_tiktok { font-size: 30px; }
.card-header { display: flex; align-items: center; margin-bottom: 16px; }
.card-header .platform-name { font-size: 18px; font-weight: 600; color: #333; }
/* 核心优势 */
.hint-box2 {
  display: flex; align-items: center; justify-content: space-evenly;
  max-width: 1200px; margin: 0 auto; list-style: none; padding: 0;
}
.hint-item {
  display: flex; flex-direction: column; align-items: center; width: 18%; min-width: 180px;
  padding: 20px 10px; margin: 10px 0; background-color: #f7f7f7; border-radius: 10px;
}
.hint-item .iconfont { font-size: var(--content-title); margin: 0 8px 0 0; color: var(--primary-color); flex-shrink: 0; }
.hint-item h4 { font-size: var(--font-size-base); font-weight: 600; margin-bottom: 5px; word-break: break-all; }
.hint-item p { color: var(--text-color2); font-size: 12px; line-height: 1.4; word-break: break-all; }
/* 救援提示 */
.rescue { width: 90%; margin: 30px auto; position: relative; overflow: hidden; border-radius: 8px; }
.rescue .text {
  width: 100%; height: 100%; font-size: var(--banner-subhead); color: rgb(254, 153, 6);
  font-weight: 600; display: flex; justify-content: center; align-items: center;
  text-align: center; white-space: nowrap; letter-spacing: 4px;
}
.rescue .text::after, .rescue .text::before {
  content: ""; display: block; width: 20vw; height: 1px; background-color: rgba(254, 153, 6, 0.6); margin: 0 10px;
}
/* 服务流程 */
.flow-serve { margin: 40px 0; }
.flow-Join-list {
  width: 100%; margin: 0 auto; padding: 0; list-style: none;
  display: flex; flex-wrap: wrap; justify-content: space-evenly;
}
.flow-Join-item {
  min-width: 120px; max-width: 200px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.flow-Join-item.flow-Join-iconAnm { flex-shrink: 0 !important; width: 90px !important; min-width: 90px; }
.icon-box {
  width: 90px; height: 90px; border-radius: 50%; display: flex;
  justify-content: center; align-items: center; margin-bottom: 15px;
}
.icon-box .iconfont { font-size: var(--banner-subhead); }
.iconAnm { animation: iconAnmation 1s infinite alternate; }
.flow-Join-tit { color: #686767; margin-bottom: 10px; font-size: calc(var(--content-subhea) - 6px); font-weight: 600; }
.flow-Join-text { width: 100%; color: #828282; font-size: 13px; line-height: 1.6; }
.flow-btn-wrap { display: flex; justify-content: center; margin: 40px 0; }
.flow-btn-wrap .handle-btn {
  background-color: var(--primary-color); color: #fff; border: none; padding: 10px 20px;
  border-radius: 4px; font-size: calc(var(--font-size-base) + 2px); font-weight: bold;
  cursor: pointer; box-shadow: 0 4px 6px rgba(0,0,0,0.1); display: flex;
  align-items: center; justify-content: center; margin: 0 auto; margin-bottom: 40px;
}
.flow-btn-wrap .handle-btn:hover { background-color: var(--primary-color-hover); }
.flow-btn-wrap .handle-btn .iconfont { font-size: var(--content-title); }
/* 实战成果 */
.result {
  width: 100%; margin: 50px auto; display: flex; flex-wrap: wrap;
  justify-content: center; gap: 20px;
}
.result .box {
  flex: 1; min-width: 250px; max-width: 300px; box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px; text-align: center; padding: 30px 20px; background-color: #fff;
  transition: transform 0.3s ease;
}
.result .box:hover { transform: translateY(-5px); }
.result .box h4 { color: #fe9906; font-size: 32px; margin-bottom: 15px; font-weight: 700; }
.result .box p { font-size: 14px; color: #686767; }
/* 收费说明 */
.text_web { display: none; }
.text_pc { display: block; }
@media (max-width: 768px) { .text_web { display: block; } .text_pc { display: none !important; } }
.pay-tip { text-align: center; margin: 40px 0 20px; }
@media (max-width: 768px) { .pay-tip { padding: 0 55px; } }
.pay-tip p {
  background-color: var(--primary-color); color: #fff; font-weight: bold; padding: 15px 0;
  border-radius: 6px; font-size: 1.1rem; display: inline-block; width: 100%;
  max-width: 400px; cursor: pointer;
}
.pay-tip p:hover { background-color: rgba(249, 150, 0, 0.8); }
/* 弹窗 */
.shensu-box { width: 100vw; height: 100vh; background-color: rgba(0,0,0,0.4); position: fixed; top: 30px; left: 0; z-index: 999; display: none; }
.shensu-box.active { display: block; }
/* 移动端适配 */
@media (max-width: 768px) {
  .account-container { width: 95vw; }
  .about-us-header .header-content .title { font-size: calc(var(--banner-subhead) + 2px); }
  .about-us-header .header-content .subtitle { font-size: 18px; }
  .hint-box2 { width: calc(100% - 20px); padding: 10px 5px; margin: 15px 0 30px; flex-wrap: wrap; }
  .hint-item { width: 45%; min-width: 150px; min-height: 170px; }
  .hint-item h4 { font-size: 14px; }
  .hint-item p { font-size: 12px; }
  .account-title { margin: 20px 0; margin-top: 50px; }
  .account-title h3 { font-size: 18px; padding: 0 10px; }
  .account-title p { font-size: 12px; padding: 0 10px; }
  .account-title::after { width: 40px; height: 2px; }
  .rescue { margin: 20px auto; }
  .rescue .text { font-size: 18px; letter-spacing: 0; }
  .rescue .text::after, .rescue .text::before { width: 12vw; margin: 0 5px; }
  .flow-serve .flow-Join-list { gap: 15px; }
  .flow-serve .flow-Join-item { min-width: 100px; width: 150px; padding: 5px; box-shadow: 0 0 10px rgba(0,0,0,0.1); border-radius: 4px; }
  .flow-serve .icon-box { width: 60px; height: 60px; }
  .flow-serve .icon-box .iconfont { font-size: 20px; }
  .flow-Join-tit { font-size: 14px; }
  .flow-Join-text { font-size: 12px; }
  .flow-Join-iconAnm { display: none !important; }
  .result { gap: 15px; margin: 30px auto; }
  .result .box { padding: 20px 15px; min-width: auto; width: 100%; }
  .result .box h4 { font-size: 28px; margin-bottom: 10px; }
  .result .box p { font-size: 12px; }
  .charge-box { margin: 0 auto 30px; }
  .charge-box .charge { font-size: 12px; padding: 10px 20px; letter-spacing: 1px; }
}
@media (max-width: 375px) {
  .hint-box2 .hint-item { width: 100%; justify-content: center; text-align: center; }
  .rescue .text { font-size: 16px; }
  .flow-serve .flow-Join-list .flow-Join-item { min-width: 80px; }
}
