body {
  width: 100%;
  min-width: 1400px;
  margin: 0;
  font-family: "微软雅黑", Arial, sans-serif;
  background: #f5f8fd;
}

.header {
  background: #eaf0f7;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-content {
  width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-left span {
  display: flex;
  align-items: center;
  color: #333;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-right a {
  margin-left: 20px;
  color: #666;
  text-decoration: none;
}

.login-btn {
  background: #4d8fff;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 6px 18px;
  margin-left: 20px;
  cursor: pointer;
}

.main {
  background: url(../iamges/banner.png) no-repeat center center;
  background-size: cover;
}

.main-content {
  width: 1400px;
  margin: 0 auto;
  display: flex;
}

.sidebar {
  width: 235px;
  background: #004BD0;
  position: relative;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  padding: 8px 20px;
  border-bottom: 1px solid #fff;
  cursor: pointer;
  color: #fff;
}

.sidebar-list li:hover,
.sidebar-list li.active {
  background: #fff;
  color: #333;
}

.sidebar-list li:hover span,
.sidebar-list li.active span {
  color: #333;
}

.sidebar-list li:hover .text,
.sidebar-list li.active .text {
  color: #2A61EF;
  font-weight: bold;
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.sidebar-list li span {
  color: #fff;
  font-size: 14px;
}

.main-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  margin-top: 40px;
}

.logo-placeholder {
  width: 180px;
  height: 50px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #888;
}

.search-bar {
  margin: 30px 0;
  display: flex;
  align-items: center;
}

.search-input {
  width: 400px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 20px 0 0 20px;
  padding: 0 20px;
  font-size: 16px;
}

.search-btn {
  width: 50px;
  height: 40px;
  background: #3386ff;
  border: none;
  border-radius: 0 20px 20px 0;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.nav {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.nav a {
  margin: 0 20px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
}

.nav .active {
  color: #3386ff;
  border-bottom: 2px solid #3386ff;
  padding-bottom: 4px;
}

.slogan {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  margin-top: 60px;
}

.slogan-box {
  display: flex;
  flex-direction: flex;
  align-items: center;
}

.sub-slogan {
  color: #fff;
  font-size: 18px;
  margin: 20px 0;
  padding: 10px 30px;
}

.sub-slogan.blue {
  background: url(../iamges/text_bgk_blue.png) no-repeat center center;
  color: #fff;
  font-size: 18px;
  margin: 20px 0;
}

.sub-slogan.orange {
  background: url(../iamges/text_bgk_orange.png) no-repeat center center;
  color: #fff;
  font-size: 18px;
  margin: 20px 0;
}

.form-box {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  width: 400px;
  padding: 20px;
  margin: 38px 0;
}

.form-title {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.form-title span {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #333;
}

.form-title img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.form-tags {
  display: flex;
  margin-bottom: 20px;
}

.form-tag {
  background: #f5f8fd;
  color: #3386ff;
  border-radius: 6px;
  padding: 4px 12px;
  margin-right: 6px;
  font-size: 14px;
  display: inline-block;
}

.form-input {
  display: flex;
  height: 50px;
  border: 1px solid #e0e6ed;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 0 12px;
  font-size: 16px;
}

.form-btn {
  width: 100%;
  height: 44px;
  background: #3386ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}

.form-tip {
  display: flex;
  align-items: center;
  color: #999;
  font-size: 12px;
  margin-bottom: 30px;
}

.form-tip img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

/* 搜索区块和热搜导航区块样式 */
.search-nav-wrapper {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(51, 138, 255, 0.06);
  padding: 32px 0 0 0;
}

.search-area {
  width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 120px;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 25px;
}

.logo-box img {
  height: 55px;
}

.logo-desc {
  color: #888;
  font-size: 14px;
  line-height: 1.5;
}

.search-box-v2 {
  flex: 1;
  display: flex;
  align-items: center;
  border: 2px solid #338aff;
  border-radius: 8px;
  background: #fff;
  height: 56px;
  max-width: 900px;
  min-width: 400px;
  box-sizing: border-box;
}

.search-input-v2 {
  flex: 1;
  border: none;
  outline: none;
  font-size: 20px;
  padding: 0 24px;
  height: 100%;
  background: transparent;
  color: #333;
}

.search-btn-v2 {
  width: 66px;
  height: 44px;
  margin-right: 10px;
  background: linear-gradient(138deg, #5F8CFE 0%, #2A61EF 100%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: none;
  padding: 0 36px;
  font-size: 20px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}

.search-btn-v2:hover {
  background: #2266cc;
}

.search-btn-text {
  font-size: 16px;
  margin-right: 8px;
}

.search-btn-icon {
  font-size: 22px;
}

.hot-nav {
  width: 1000px;
  padding-left: 350px;
  margin: 12px auto 0 auto;
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 16px;
  color: #666;
}

.hot-icon {
  color: #ff6600;
  font-size: 18px;
  margin-right: 2px;
}

.hot-text {
  color: #ff6600;
  font-weight: bold;
  margin-right: 8px;
}

.hot-link {
  color: #666;
  cursor: pointer;
  transition: color 0.2s;
}

.hot-link:hover {
  color: #338aff;
}

/* 横向菜单栏样式 */
.horizontal-menu-bar {
  width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

.sidebar-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 235px;
  padding: 20px 0;
  background: #E9F4FF;
  font-weight: bold;
  font-size: 18px;
}

.sidebar-title img {
  margin-right: 10px;
}

.sidebar-title span {
  font-weight: bold;
  font-size: 16px;
  color: #2A61EF;
  line-height: 21px;
  text-align: right;
  font-style: normal;
}

.menu-coverer {
  display: flex;
  align-items: center;
  margin-top: 13px;
  height: 48px;
  gap: 40px;
}

.menu-container {
  display: flex;
  align-items: flex-end;
  margin-bottom: -13px;
}

.menu-item {
  color: #333;
  font-size: 18px;
  text-decoration: none;
  padding: 0 8px 0 8px;
  position: relative;
  transition: color 0.2s;
  line-height: 48px;
}

.menu-item.active {
  color: #338aff;
  font-weight: bold;
}

.menu-item.active::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 22px;
  height: 3px;
  background: linear-gradient(138deg, #5F8CFE 0%, #2A61EF 100%);
}

.menu-item:hover {
  color: #338aff;
}

/* 拼团卡片区块样式 */
.group-card-wrapper {
  width: 1400px;
  margin: 40px auto 0 auto;
  display: flex;
  gap: 24px;
}

.group-card-left {
  width: 235px;
  background: url(../iamges/team_bgk.png) no-repeat center center;
  background-size: cover;
  border-radius: 8px;
  color: #fff;
  padding: 32px 0 0 0;
  text-align: center;
}

.group-card-left-user {
  display: flex;
  align-items: center;
  padding: 0 25px;
  margin-bottom: 30px;
}

.group-avatar {
  width: 80px;
  height: 80px;
  margin-right: 10px;
  background: #fff;
  border-radius: 50%;
  color: #3386ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.group-user {
  font-size: 20px;
  font-weight: bold;
}

.group-tag {
  width: 210px;
  height: 76px;
  border-top-right-radius: 38px;
  border-bottom-right-radius: 38px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.group-tag.active {
  background: #fff;
  color: #3167F1;
}

.group-tag img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.group-card-center {
  width: 435px;
  background: #fff;
  border-radius: 8px;
  margin-right: 0;
}

.group-invite-title {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 20px;
  background: linear-gradient(138deg, #5F8CFE 0%, #2A61EF 100%);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.group-invite-title img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.group-invite-title span {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.group-invite-list {
  padding-top: 38px;
  display: flex;
  flex-wrap: wrap;
}

.group-invite-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  margin-bottom: 70px;
}

.group-invite-item img {
  width: 55px;
  height: 55px;
  margin-bottom: 10px;
}


.group-invite-save {
  border-top: 1px solid #E5E5E5;
  padding: 25px 20px;
  font-size: 18px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.group-invite-save span {
  color: #ff3b3b;
  font-size: 24px;
  font-weight: bold;
}

.group-card-right {
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #fff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.group-seckill-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #F8A300 0%, #F8B804 100%);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 0 20px;
}

.group-seckill-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.group-seckill-title img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.group-seckill-timer {
  font-size: 16px;
  color: #fff;
}

.group-seckill-timer span {
  font-weight: bold;
}

.group-seckill-content {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.group-seckill-card {
  flex: 1;
  background: #fff;
  margin-bottom: 12px;
  box-shadow: 0px 4px 13px 0px #ECF3FE;
}

.group-seckill-card-header {
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.group-seckill-card-header.gray {
  background: linear-gradient(138deg, #fec642 0%, #ffa359 100%);
}

.group-seckill-card-header.blue {
  background: linear-gradient(138deg, #5F8CFE 0%, #2A61EF 100%);
}

.group-seckill-card-header.gold {
  background: linear-gradient(142deg, #39bfb2 0%, #188516 100%);
}

.group-seckill-card-title {
  font-size: 24px;
  font-weight: bold;
  color: #3386ff;
  margin-bottom: 8px;
  text-align: center;
}

.group-seckill-card-desc {
  color: #888;
  font-size: 12px;
  text-align: center;
}

.group-seckill-card-list {
  padding-left: 18px;
  color: #3386ff;
  font-size: 14px;
  margin-bottom: 12px;
  margin-top: 16px;
}

.group-seckill-card-list li {
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.group-seckill-card-list li:first-child .list-icon-jt {
  position: absolute;
  width: 24px;
  height: 24px;
  right: 0;
  bottom: 0;
}

.group-seckill-card-list li:last-child .list-icon-jt {
  position: absolute;
  width: 24px;
  height: 24px;
  right: 0;
  bottom: 0;
}

.group-seckill-card-list li:nth-child(2) .list-icon-jt {
  position: absolute;
  width: 24px;
  height: 24px;
  right: 0;
  bottom: 0;
}

.group-seckill-list-icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.group-seckill-card-tags {
  display: flex;
  gap: 8px;
  padding: 0 18px;
  margin-bottom: 12px;
}

.group-seckill-card-tag {
  background: #fff;
  color: #3386ff;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 12px;
  border: 1px solid #2B61EE;
}

.group-seckill-card-price-box {
  display: flex;
  align-items: center;
  padding: 0 18px;
  margin-bottom: 12px;
}

.group-seckill-card-price {
  font-size: 22px;
  color: #ff3b3b;
  font-weight: bold;
  display: inline-block;
}

.group-seckill-card-subsidy {
  background: #eaf0f7;
  color: #3386ff;
  border-radius: 8px;
  padding: 2px 8px;
  font-size: 12px;
  margin-left: 8px;
}

.group-seckill-card-btns {
  padding: 0 18px;
  margin-top: 16px;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
}

.group-seckill-btn {
  flex: 1;
  height: 40px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.group-seckill-btn-outline {
  background: #fff;
  color: #3386ff;
  border: 1px solid #3386ff;
}

.group-seckill-btn-gradient {
  background: linear-gradient(90deg, #3386ff, #4d8fff);
  color: #fff;
  border: none;
}

.group-seckill-card-header * {
  color: #fff !important;
}

.group-seckill-content-box {
  width: 1400px;
  margin: 40px auto 0 auto;
  display: flex;
  gap: 24px;
}

.group-seckill-content-box .group-seckill-card {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 0;
  padding-bottom: 16px;
}

.group-seckill-content-box .group-seckill-card .group-seckill-card-header {
  padding: 15px 0;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.group-seckill-content-box .group-seckill-card .group-seckill-card-list {
  padding-left: 18px;
  color: #3386ff;
  font-size: 14px;
  margin-bottom: 20px;
}

.group-seckill-content-box .group-seckill-card .group-seckill-card-list li {
  margin-bottom: 16px;
}

.group-seckill-content-box .group-seckill-card:nth-child(1) .group-seckill-card-header {
  background: linear-gradient(138deg, #fec642 0%, #ffa359 100%);
}

.group-seckill-content-box .group-seckill-card:nth-child(2) .group-seckill-card-header {
  background: linear-gradient(138deg, #5F8CFE 0%, #2A61EF 100%);
}

.group-seckill-content-box .group-seckill-card:nth-child(3) .group-seckill-card-header {
  background: linear-gradient(142deg, #39bfb2 0%, #188516 100%);
}

.dot-view {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}

.dot-view span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(138deg, #B3BDC6 0%, #B3BCC4 100%);
  margin: 0 5px;
}

.dot-view span:nth-child(1) {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(138deg, #5F8CFE 0%, #2A61EF 100%);
  margin: 0 5px;
}

.compony-view {
  background: url(../iamges/company.png) no-repeat center center;
  background-size: cover;
  margin: 40px auto 0;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.compony-content {
  width: 1400px;
  margin: 0 auto;
  display: flex;
}

.compony-content-left {
  background: url(../iamges/company_left_bgk.png) no-repeat center center;
  background-size: cover;
  width: 235px;
  height: 998px;
  border-radius: 8px 0 0 8px;
  margin-right: 20px;
}

.vertical-menu {
  list-style: none;
  margin: 0;
  padding: 60px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.vertical-menu li {
  padding: 18px 40px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  border-radius: 0 28px 28px 0;
  margin-bottom: 8px;
  transition: background 0.2s, color 0.2s;
}

.vertical-menu li img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.vertical-menu li.active {
  background: rgba(255, 255, 255, 0.95);
  color: #5A5DF2;
  font-weight: bold;
}

.vertical-menu-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 24px;
}

.vertical-menu-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: middle;
}

.compony-content-right {
  flex: 1;
  padding: 0 30px;
  background: #fff;
  border-radius: 0 8px 8px 0;
}

.tab-nav {
  display: flex;
  align-items: center;
  padding: 0 0 0 40px;
  height: 60px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom: 1px solid #dbe6f7;
  position: relative;
}

.tab-item {
  font-size: 20px;
  color: #3B4A6B;
  font-weight: 500;
  margin-right: 48px;
  cursor: pointer;
  position: relative;
  padding-bottom: 8px;
  transition: color 0.2s;
}

.tab-item.active {
  color: #5A5DF2;
  font-weight: bold;
}

.tab-item.active::after {
  content: '';
  display: block;
  width: 48px;
  height: 8px;
  background: #5A5DF2;
  border-radius: 4px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -12px;
}

.tab-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 24px;
  padding: 20px 0;
}

.tab-content .group-seckill-card {
  flex: 0 0 calc(33.333% - 24px);
  max-width: calc(33.333% - 24px);
  min-width: 340px;
  margin: 0;
}

.footer-info {
  margin: 40px auto 0 auto;
  background: #363636;
  padding: 48px 0 40px 0;
  display: flex;
  justify-content: center;
}

.footer-content {
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 2.2;
}

.transfer-view {
  margin-top: 65px;
  display: flex;
  width: 100%;
  min-height: 600px;
  border-radius: 8px;
}

.transfer-content {
  width: 1400px;
  min-width: 1400px;
  margin: 0 auto;
  display: flex;
}

.transfer-content-left {
  background: url(../iamges/orange_bgk.png) no-repeat center center;
  background-size: cover;
  width: 235px;
  height: 998px;
  border-radius: 8px 0 0 8px;
  margin-right: 20px;
}

.transfer-content-left .vertical-menu {
  list-style: none;
  margin: 0;
  padding: 60px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.transfer-content-left .vertical-menu li {
  padding: 18px 40px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  border-radius: 0 28px 28px 0;
  margin-bottom: 8px;
  transition: background 0.2s, color 0.2s;
}

.transfer-content-left .vertical-menu li img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.transfer-content-left .vertical-menu li.active {
  background: rgba(255, 255, 255, 0.95);
  color: #F67B56;
  font-weight: bold;
}

.transfer-content-left .vertical-menu-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 24px;
}

.transfer-content-left .vertical-menu-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: middle;
}

.transfer-content-right {
  flex: 1;
  padding: 0 30px;
  background: #fff;
  border-radius: 0 8px 8px 0;
}

.transfer-content-right .tab-nav {
  display: flex;
  align-items: center;
  padding: 0 0 0 40px;
  height: 60px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom: 1px solid #dbe6f7;
  position: relative;
}

.transfer-content-right .tab-item {
  font-size: 20px;
  color: #3B4A6B;
  font-weight: 500;
  margin-right: 48px;
  cursor: pointer;
  position: relative;
  padding-bottom: 8px;
  transition: color 0.2s;
}

.transfer-content-right .tab-item.active {
  color: #F67B56;
  font-weight: bold;
}

.transfer-content-right .tab-item.active::after {
  content: '';
  display: block;
  width: 48px;
  height: 8px;
  background: linear-gradient(138deg, #FB7E24 0%, #EF5922 100%);
  border-radius: 4px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -12px;
}

.transfer-tab-content {
  padding: 0 0 32px 0;
}

.transfer-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  padding: 32px 32px 24px 32px;
  margin-top: 32px;
  position: relative;
  border: none;
}

.transfer-card:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 0;
  height: 1px;
  background: #e3eaf2;
}

.transfer-card .card-left {
  flex: none;
  margin-right: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transfer-card .card-left .shop-icon {
  width: 60px;
  height: 60px;
  background: #ffe9b2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.card-main {
  flex: 1;
  min-width: 0;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.card-title {
  font-size: 16px;
  font-weight: bold;
  color: #2d3a4a;
}

.card-no {
  font-size: 15px;
  color: #8a99b1;
  margin-left: 8px;
}

.btn-copy {
  background: #eaf2ff;
  color: #5a8eff;
  border: none;
  border-radius: 6px;
  padding: 2px 16px;
  font-size: 14px;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-copy:hover {
  background: #d6e6ff;
}

.card-info-row {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.info-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  color: #2d3a4a;
  font-weight: bold;
  line-height: 1.1;
}

.info-label-desc {
  font-size: 13px;
  color: #b0b8c9;
  font-weight: normal;
  margin-top: 8px;
  line-height: 1.1;
  letter-spacing: 1px;
}

.card-desc {
  font-size: 14px;
  color: #b0b8c9;
  margin-top: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-right {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 180px;
  margin-left: 32px;
  margin-top: 4px;
}

.card-price {
  font-size: 16px;
  color: #ff2222;
  font-weight: bold;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-align: right;
}

.btn-wechat {
  width: 115px;
  height: 30px;
  background: linear-gradient(90deg, #5a8eff 0%, #2d6fff 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-wechat:hover {
  background: linear-gradient(90deg, #2d6fff 0%, #5a8eff 100%);
}

.btn-consult {
  width: 115px;
  height: 30px;
  background: #fff;
  color: #2d6fff;
  border: 1px solid #2d6fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-consult:hover {
  background: #eaf2ff;
  color: #1a4dbf;
}

.transfer-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 32px 0 32px;
  font-family: inherit;
}

.header-title {
  font-size: 16px;
  font-weight: bold;
  color: #2d3a4a;
  margin-right: 24px;
}

.header-desc {
  font-size: 16px;
  color: #8a99b1;
  margin-right: 16px;
}

.header-count {
  color: #ff2222;
  font-size: 16px;
  font-weight: bold;
  margin: 0 4px;
}

.header-more {
  font-size: 16px;
  color: #8a99b1;
  cursor: pointer;
  margin-left: auto;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.header-more:hover {
  color: #2d6fff;
}

.transfer-header-bar .header-title,
.transfer-header-bar .header-desc,
.transfer-header-bar .header-count,
.transfer-header-bar .header-more,
.transfer-card .card-title,
.transfer-card .info-label,
.transfer-card .card-price {
  font-size: 16px !important;
}

.transfer-card .info-label-desc {
  font-size: 13px !important;
}

.advisor-info {
  background: url(../iamges/gwtd.png) no-repeat center center;
  background-size: cover;
  height: 946px;
  margin-top: 40px;
}

.advisor-info-content {
  width: 1400px;
  min-width: 1400px;
  margin: 0 auto;
}

.advisor-info-title {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding-top: 60px;
}

.advisor-info-tabview {
  display: flex;
  background-color: rgba(255, 255, 255, 0.57);
  border-radius: 24px 0px 24px 0px;
  width: 800px;
  height: 100px;
  margin: 30px auto 40px;
}

.advisor-info-tab-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  font-size: 24px;
  color: #333;
  text-align: center;
}

.advisor-info-tab-item.active {
  background: linear-gradient(138deg, #5F8CFE 0%, #2A61EF 100%);
  color: #fff;
  font-weight: bold;
}

.advisor-list {
  width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.advisor-list-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  width: 285px;
  padding: 28px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advisor-card-content {
  display: flex;
  align-items: center;
}

.advisor-card-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f5f6fa;
  overflow: hidden;
  margin-bottom: 12px;
  margin-right: 12px;
  border: 4px solid #f2f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advisor-card-info {
  display: flex;
  flex-direction: column;
}

.advisor-card-name {
  font-size: 22px;
  font-weight: bold;
  color: #222;
  margin-bottom: 6px;
}

.advisor-card-desc {
  font-size: 16px;
  color: #888;
  margin-bottom: 24px;
}

.advisor-card-btn {
  width: 100%;
  height: 44px;
  margin-top: 12px;
  background: linear-gradient(90deg, #6da8ff 0%, #2d6fff 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.advisor-card-btn:hover {
  background: linear-gradient(90deg, #2d6fff 0%, #6da8ff 100%);
}

.global-baili-view {
  background: #fff;
  border-radius: 8px;
  padding: 32px 30px 48px;
  width: 1340px;
  min-width: 1340px;
  margin: -160px auto 0;
}

.baili-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #2d3a4a;
  margin-bottom: 32px;
}

.baili-search-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 8px;
  width: 600px;
  height: 54px;
  border: 1px solid rgba(10, 89, 229, 1);
  margin: 25px auto 30px;

}

.baili-search-input {
  width: 420px;
  height: 44px;
  border: none;
  border-radius: 22px 0 0 22px;
  padding: 0 20px;
  font-size: 18px;
  background: #fff;
  outline: none;
}

.baili-search-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 66px;
  height: 44px;
  margin-right: 10px;
  background: linear-gradient(138deg, #5F8CFE 0%, #2A61EF 100%);
  border-radius: 10px;
  cursor: pointer;
}

.baili-content {
  display: flex;
  gap: 32px;
}

.baili-left,
.baili-right {
  background: #f7f8fa;
  border-radius: 8px;
  padding: 20px;
}

.baili-left {
  flex: 1;
}

.baili-right {
  width: 500px;
  display: flex;
  flex-direction: column;
}

.baili-tabs {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  gap: 24px;
}

.baili-tab {
  font-size: 18px;
  color: #8a99b1;
  cursor: pointer;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border 0.2s;
}

.baili-tab.active {
  color: #2d6fff;
  border-bottom: 2px solid #2d6fff;
  font-weight: bold;
}

.baili-tab-more {
  margin-left: auto;
  color: #8a99b1;
  font-size: 16px;
  cursor: pointer;
}

.baili-news-list {
  margin-bottom: 12px;
}

.baili-news-row {
  display: flex;
  gap: 60px;
  margin-bottom: 18px;
}

.baili-news-card {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 12px;
  display: flex;
}

.baili-news-card img {
  width: 130px;
  height: 83px;
  border-radius: 6px;
}

.baili-news-title {
  font-size: 16px;
  font-weight: bold;
  color: #2d3a4a;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.baili-news-date {
  font-size: 13px;
  color: #b0b8c9;
  margin-bottom: 20px;
}

.baili-news-desc {
  font-size: 14px;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.baili-news-list-row {
  display: flex;
  gap: 60px;
}

.baili-news-list-simple {
  flex: 1;
  margin-top: 8px;
}

.baili-news-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #e3eaf2;
  font-size: 15px;
  color: #2d3a4a;
}

.baili-news-simple-title {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.baili-news-simple-date {
  color: #b0b8c9;
  font-size: 13px;
  margin-left: 16px;
}

.baili-right-header {
  font-size: 18px;
  font-weight: bold;
  color: #2d3a4a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.baili-right-more {
  color: #8a99b1;
  font-size: 16px;
  cursor: pointer;
}

.baili-qa-list {
  flex: 1;
}

.baili-qa-item {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e3eaf2;
}

.baili-qa-q {
  font-size: 15px;
  font-weight: bold;
  color: #2d3a4a;
  margin-bottom: 4px;
}

.baili-qa-a {
  font-size: 15px;
  color: #8a99b1;
  line-height: 1.6;
}

.service-platform-view {
  background: url(../iamges/fw_bgk.png) no-repeat center center;
  background-size: cover;
  width: 100%;
  min-width: 1400px;
  height: 620px;
  margin-top: 40px;
  display: flex;
}

.service-platform-center {
  width: 1400px;
  min-width: 1400px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.service-platform-title {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  margin-top: 60px;
  margin-bottom: 32px;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.service-platform-types {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
}

.service-type {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-check {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url('images/check_icon.png') no-repeat center center;
  background-size: cover;
  margin-right: 4px;
}

.service-flow-card {
  position: relative;
  background: #fff;
  border-radius: 8px;
  width: 1050px;
  min-width: 1050px;
  margin: 0 auto;
  margin-top: 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 32px 112px;
  position: relative;
}

.position-block {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 70px;
  height: 8px;
  background: linear-gradient(138deg, #5F8CFE 0%, #2A61EF 100%);
}

.service-flow-title {
  font-size: 32px;
  font-weight: bold;
  color: #2d3a4a;
  margin-bottom: 32px;
}

.service-flow-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.service-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
  position: relative;
}

.service-step-icon {
  width: 72px;
  height: 72px;
  border: 2px dashed #b3c6f7;
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f8fa;
}

.service-step-icon img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.service-step-text {
  font-size: 20px;
  color: #222;
  font-weight: bold;
  margin-top: 4px;
}

.service-flow-progress {
  width: 920px;
  min-width: 920px;
  margin: 0 auto;
  background: url(../iamges/process.png) no-repeat center center;
  background-size: cover;
  height: 16px;
}

.advantage-list {
  width: 1400px;
  min-width: 1400px;
  margin: 60px auto 40px auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 8px;
  padding: 48px 0 32px 0;
}

.advantage-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.advantage-icon {
  width: 64px;
  height: 64px;
  border: 2px dashed #b3c6f7;
  border-radius: 8px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.advantage-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.advantage-title {
  font-size: 22px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.advantage-desc {
  font-size: 16px;
  color: #888;
  margin-top: 0;
}

/* sidebar 右侧弹窗样式 */
.sidebar-popup {
  display: none;
  position: absolute;
  left: 95%;
  top: 0;
  margin-left: 16px;
  width: 1100px;
  height: 650px;
  /* gap: 60px; */
  box-shadow: 0px 0px 15px 0px #8d8c8c;
  border-radius: 8px;
  min-height: 300px;
  background: #fff;
  padding: 32px 24px;
  z-index: 2000;
}



/* 弹窗显示状态 */
.sidebar-popup.show {
  display: inline-block;
  flex-wrap: wrap;
}

.popup-group {
  display: block;
  width: 500px;    padding-bottom: 40px;
}

.popup-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.popup-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 12px;
}

.popup-title img {
  width: 20px;
  height: 20px;
}

.popup-row {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}
.popup-row span{max-width: 158px;height: 19px;overflow: hidden}