/* 关于我们页面样式 - 从 AboutView.vue 转换 */
.iconfont { color: var(--primary-color); }
.section-container {
  width: 100%;
  max-width: var(--max-width-view);
  margin: 0 auto;
  padding: 24px 16px;
}
.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: 20px auto;
  margin-bottom: 40px;
}
.handle-btn:hover { background-color: var(--primary-color-hover); }
.handle-btn .iconfont { font-size: var(--content-title); color: #fff; }
.module-title {
  font-size: var(--content-subhea);
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
  text-align: center;
}
.module-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}
/* 我们是谁 */
.who-we-are .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 24px;
  margin-bottom: 24px;
}
.who-we-are .text-content {
  flex: 1;
  min-width: 300px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.who-we-are .company-name {
  font-size: calc(var(--content-subhea) - 4px);
  margin-bottom: 16px;
  color: var(--primary-color);
  font-weight: 600;
}
.who-we-are .company-desc {
  color: var(--text-color2);
  line-height: 2.5;
  font-size: var(--font-size-base);
}
.who-we-are .brand-name { color: var(--primary-color); }
.who-we-are .company-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-image: url("../images/autoImg2.webp");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  padding: 30px;
}
.who-we-are .info-item {
  width: 60%;
  min-width: 200px;
  display: flex;
  align-items: center;
}
.who-we-are .info-item h4 {
  flex: 2;
  font-size: 20px;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.who-we-are .info-item h4 .iconfont { font-size: 24px; }
.who-we-are .info-item p {
  flex: 3;
  padding-left: 32px;
  color: #e8e8e8;
  font-size: var(--font-size-base);
}
@media (max-width: 992px) {
  .who-we-are .company-info { padding: 20px; }
  .who-we-are .info-item { width: 100%; }
  .who-we-are .info-item h4 { flex: 1; font-size: 16px; gap: 4px; }
  .who-we-are .info-item p { flex: 2; padding-left: 10px; }
}
/* 核心业务 */
.core-business .tab-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #e1e1e1;
}
.core-business .tab-nav div {
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: calc(var(--content-subhea) - 4px);
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  font-weight: 600;
}
@media (max-width: 768px) {
  .core-business .tab-nav div { font-size: calc(var(--content-subhea) - 7px) !important; padding: 10px !important; }
}
.core-business .core-business-content {
  background-color: #fff;
  padding: 40px 0px;
  border-radius: 8px;
  padding-bottom: 1px;
}
.dispute-handling {
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  padding: 20px;
}
.dispute-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 768px) { .dispute-container { flex-direction: column; } }
.left-section, .right-section {
  flex: 1;
  min-width: 300px;
}
.left-section .section-title, .right-section .section-title {
  font-size: calc(var(--font-size-base) + 4px);
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  position: relative;
  padding-left: 10px;
}
@media (max-width: 768px) {
  .left-section .section-title, .right-section .section-title { font-size: calc(var(--font-size-base) + 2px); }
}
.left-section .section-title::before, .right-section .section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background-color: var(--primary-color);
  border-radius: 2px;
}
.section-desc {
  font-size: var(--font-size-base);
  color: var(--text-color2);
  line-height: 1.6;
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}
.feature-item .iconfont {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-right: 12px;
  color: var(--primary-color);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item .item-content { flex: 1; }
.feature-item .item-title { font-size: 16px; font-weight: 600; color: #333; margin-bottom: 8px; }
.feature-item .item-desc { font-size: var(--font-size-base); color: var(--text-color2); line-height: 1.5; }
.process-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.process-numb {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 16px;
}
.process-number {
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  font-size: var(--font-size-base);
  font-weight: 700;
  flex-shrink: 0;
  margin-bottom: 8px;
}
.process-content { flex: 1; }
.process-title { font-size: 16px; font-weight: 600; color: #333; margin-bottom: 4px; }
.process-desc { font-size: var(--font-size-base); color: var(--text-color2); line-height: 1.5; }
/* 平台服务 */
.platform-service .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 24px;
}
@media (max-width: 768px) { .platform-service .service-grid { grid-template-columns: 1fr; } }
.platform-service .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;
}
.platform-service .service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.platform-service .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);
}
.platform-service .service-card .iconfont.icon-yamaxun { font-size: 22px; }
.platform-service .service-card .iconfont.icon-ebay { font-size: 32px; }
.platform-service .service-card .iconfont.icon-Shopee { font-size: 26px; }
.platform-service .service-card .iconfont.icon-logo_tiktok { font-size: 30px; }
.platform-service .card-header { display: flex; align-items: center; margin-bottom: 16px; }
.platform-service .platform-name { font-size: 18px; font-weight: 600; color: #333; }
.platform-service .service-list { list-style: none; padding: 0; margin: 0; }
.platform-service .service-list li { display: flex; align-items: center; margin-bottom: 8px; font-size: var(--font-size-base); color: var(--text-color2); }
.platform-service .check-icon { color: #ffc83d; margin-right: 6px; font-size: 12px; font-weight: bold; }
/* 优势 */
.seller-advantage .advantage-grid {
  display: flex; gap: 24px; justify-content: center; padding: 40px 20px;
  max-width: var(--max-width-view); margin: 0 auto;
}
@media (max-width: 992px) { .seller-advantage .advantage-grid { flex-direction: column; align-items: center; } }
.advantage-card {
  flex: 1; background: #fff; border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1); padding: 24px;
  min-width: 280px; transition: all 0.3s ease;
}
.advantage-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.card-badge {
  position: relative; display: flex; justify-content: center;
  align-items: center; margin-bottom: 24px;
}
.card-badge .icon-wrapper {
  width: 60px; height: 60px; border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center; z-index: 2; background: #fff;
}
.card-badge .icon-wrapper .iconfont { font-size: 28px; color: var(--primary-color); }
.advantage-title { font-size: 18px; font-weight: 600; color: #333; text-align: center; margin-bottom: 12px; }
.advantage-desc {
  font-size: var(--font-size-base); color: var(--text-color2); line-height: 1.6;
  text-align: left; display: flex; align-items: start; gap: 3px;
}
.advantage-desc::before {
  content: ""; display: inline-block; margin-top: 8px; width: 6px; height: 6px;
  border-radius: 3px; background-color: var(--primary-color); flex-shrink: 0;
}
/* 为什么选择我们 */
.why-choose-us .choose-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; max-width: var(--max-width-view); margin: 0 auto; padding: 0 20px;
}
@media (max-width: 768px) { .why-choose-us .choose-grid { grid-template-columns: 1fr; } }
.choose-item {
  background-color: #fff; border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); padding: 6px 24px; transition: all 0.3s ease;
}
@media (max-width: 768px) { .choose-item { display: flex; flex-direction: column; align-items: center; } }
.choose-item:hover { transform: translateY(-5px); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.choose-item .item-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background-color: #fef5e6; border-radius: 50%; margin-bottom: 16px;
}
.choose-item .item-icon .iconfont { font-size: 20px; color: var(--primary-color); }
.choose-item .item-title { font-size: 16px; font-weight: 600; color: #333; margin-bottom: 8px; }
.choose-item .item-desc { font-size: 12px; color: var(--text-color2); line-height: 1.5; }
.payTip_pc { display: block; }
.payTip_web { display: none; }
@media (max-width: 768px) { .payTip_pc { display: none !important; } .payTip_web { display: block !important; } }
.pay-tip { text-align: center; margin: 40px 0 20px; }
.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); }
@media (max-width: 768px) {
  .module-title { font-size: 20px; }
  .who-we-are .text-content { padding-right: 0; margin-bottom: 24px; }
}
.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; }
