/* Banner样式 */
.banner {
  width: 100%;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 452px;
  display: block;
  vertical-align: middle;
  object-fit: cover;
}

/* 自定义样式 */
.swiper-container {
  width: 100%;
  height: 452px;
  position: relative;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 452px;
  object-fit: cover;
}

/* 自定义导航按钮 */
.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #333;
  font-weight: bold;
  transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
}

/* 自定义分页指示器 */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 0.6;
  margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #aadbde;
}

aside {
  width: 22.5%;
}

@media screen and (max-width: 768px) {
  aside {
    display: none;
  }
}

main {
  flex: 1;
  width: 100%;
}

section {
  margin-bottom: 15px;
}

/* 博客列表 */
.blog-list {
  background: #fff;
  border-radius: 8px;
}

.blog-title {
  color: #333;
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #5abfb7;
}

.blog-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 20px;
}

.blog-item {
  display: flex;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateX(5px);
}

.blog-image {
  height: 80px;
  flex-shrink: 0;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.blog-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-info p {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-info time {
  font-size: 12px;
  color: #999;
}

/* 响应式布局补充 */
@media screen and (max-width: 1024px) {
  .blog-section {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .blog-item {
    gap: 10px;
  }

  .blog-image {
    height: 60px;
  }

  .blog-info p {
    font-size: 13px;
  }
}

.section-title {
  background-color: #f1f1f1;
  line-height: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.section-title h2 {
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
  color: #fff;
  background-color: #ffb76b;
  font-size: 1.3rem;
  position: relative;
  z-index: 2;
}

.section-title h2::after {
  content: '';
  position: absolute;
  right: -10px;
  width: 15px;
  height: 40px;
  background-color: #ffb76b;
  transform: skewX(-15deg);
  z-index: 1;
}

.service-card {
  padding: 20px;
  height: 120px;
  background: linear-gradient(to bottom, #fff 60%, #ddd);
  border: 1px solid #e5e5e5;
  margin: 0 10px;
  overflow: hidden;
}

.service-card .service-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #000;
}

.service-card .service-title::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  width: 10px;
  height: 8px;
  background-color: #aadbde;
  clip-path: polygon(0 0, 15% 50%, 0 100%, 85% 100%, 100% 50%, 85% 0);
}

.service-card .service-desc {
  font-size: 0.75rem;
  color: #666;
}

.service-card .service-desc p {
  width: 190px;
}

.service-card .service-desc img {
  width: 60px;
  float: right;
  margin-left: 15px;
}

.fee-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fee-card:hover {
  transform: translateY(-5px);
}

.fee-content {
  display: flex;
  flex-direction: column;
}

.fee-image {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 3px solid #aadbde;
  overflow: hidden;
  padding: 5px;
}

.fee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.fee-content h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.4;
  height: 53px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fee-description {
  position: relative;
  padding: 20px 0;
  margin: 20px 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  flex: 1 auto;

  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 769px) {
  .fee-description {
    height: 150px;
  }
}

.fee-description::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-top: 1px dashed #ddd;
}

.fee-description::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px dashed #ddd;
}

.detail-button {
  display: inline-block;
  padding: 10px 30px;
  background: linear-gradient(to bottom, #fff 60%, #ddd);
  color: #6ac8d0;
  border: 1px solid #e5e5e5;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s ease;
  margin-top: auto;
  font-weight: 700;
}

.detail-button:hover {
  opacity: 0.7;
}

.feature-card {
  background: #fff;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #5abfb7;
  padding: 5px;
  margin-bottom: 20px;
  background: #fff;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  padding: 20px;
}

.feature-card h3 {
  color: #333;
  font-size: 20px;
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex: 1;
}

@media (min-width: 769px) {
  .feature-card p {
    min-height: 290px;
  }
}

.feature-button {
  display: inline-block;
  padding: 10px 30px;
  background: linear-gradient(to bottom, #fff 60%, #ddd);
  color: #6ac8d0;
  border: 1px solid #e5e5e5;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s ease;
  margin-top: auto;
  font-weight: 700;
}

.feature-button:hover {
  opacity: 0.7;
}

.category-item {
  text-decoration: none;
  color: #333;
  text-align: center;
  transition: transform 0.3s ease;
  display: block;
  padding: 0 5px;
}

.category-item:hover {
  transform: translateY(-5px);
}

.category-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
}

.section-main .category-image {
  margin-bottom: 0;
}
.section-main .category-name {
  margin: 10px 0;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-item:hover .category-image img {
  transform: scale(1.1);
}

.category-name {
  font-size: 14px;
  color: #333;
  display: block;
  margin-top: 10px;
}

/* 公司介绍卡片 */
.company-card {
  background: #fff;
  border: 1px solid #ddd;
  overflow: hidden;
}

.company-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-info {
  padding: 20px;
}

.info-item {
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.info-item:last-child {
  border-bottom: none;
}

.intro-card {
  background: #fff;
  border-radius: 8px;
}

.card-title {
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #5abfb7;
}

.card-content {
  display: flex;
  gap: 30px;
  flex-direction: column;
}

.article {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

.article p {
  margin-bottom: 15px;
}

.article p:last-child {
  margin-bottom: 0;
}

.image-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.grid-item:hover img {
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .card-title {
    font-size: 20px;
  }

  .article {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .image-grid {
    grid-template-columns: 1fr;
  }

  .intro-card {
  }
}

/* 广州生活市场样式 */
.market-intro {
  padding: 60px 0;
  overflow: hidden;
}

.market-intro .section-title {
  margin-bottom: 40px;
}

.market-intro .market-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.market-images {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.market-intro2 .market-images {
  flex-direction: column;
  width: 20%;
}

.image-item {
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-item:hover img {
  transform: scale(1.05);
}

.market-info {
  flex: 1.5;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.market-desc {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #ff0000;
  border-radius: 4px;
}

.market-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.market-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.market-list .icon {
  font-size: 20px;
  margin-right: 15px;
  min-width: 30px;
  text-align: center;
}

.market-list .text {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

@media screen and (max-width: 1200px) {
  .market-content {
    flex-direction: column;
  }

  .market-images {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .market-intro2 .market-images {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .market-intro2 .market-images .image-item {
    width: calc(50% - 15px);
    gap: 15px;
  }

  .market-info {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .market-intro .section-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .market-desc {
    font-size: 14px;
    padding: 10px;
  }

  .market-list .text {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .image-item {
    width: 100%;
  }
}

/* 实绩商品照片展示区域样式 */
.products-showcase {
}

.showcase-card {
}

.showcase-title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 30px;
  text-indent: 30px;
  height: 76px;
  line-height: 76px;
  background: #6699cc url(../images/oem-wave-bg.jpg);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.showcase-item {
  aspect-ratio: 1;
  overflow: hidden;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.showcase-item:hover img {
  transform: scale(1.1);
}

/* 响应式布局 */
@media screen and (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .showcase-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .showcase-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .showcase-card {
    padding: 20px;
  }
}

/* 订单流程区域样式 */
.order-process {
  padding: 40px 0;
  background-color: #fff;
}

.process-card {
}

.process-title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 30px;
  padding: 10px 20px;
  background-color: #ff9966;
  display: inline-block;
  border-radius: 4px;
}

.process-grid {
  display: grid;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* 第一排6个 */
.process-grid:first-child {
  grid-template-columns: repeat(6, 1fr);
}

/* 第二排5个 */
.process-grid:last-child {
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
}

.step-card {
  background: #fff;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-number {
  background-color: #5abfb7;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
}

.step-icon {
  width: 60px;
  height: 60px;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-desc {
  color: #666;
  font-size: 12px;
  line-height: 1.4;
}

/* 响应式布局 */
@media screen and (max-width: 1200px) {
  .process-grid:first-child {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-grid:last-child {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .process-grid:first-child,
  .process-grid:last-child {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-title {
    font-size: 20px;
  }

  .step-number {
    font-size: 12px;
  }

  .step-desc {
    font-size: 11px;
  }
}

@media screen and (max-width: 480px) {
  .process-grid:first-child,
  .process-grid:last-child {
    grid-template-columns: 1fr;
  }
}

/* 工场视察・検品代行区域样式 */
.factory-inspection {
  padding: 60px 0;
}

.factory-inspection .section-title {
  margin-bottom: 40px;
}

.inspection-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.inspection-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #eee;

  display: flex;
  padding: 30px;
  gap: 30px;
  align-items: center;
}

@media (max-width: 768px) {
  .inspection-card {
    flex-direction: column;
  }
}

.content-text {
  flex: 1;
}

.content-text h3 {
  color: #333;
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.content-text h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #5abfb7;
}

.content-text p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

.content-image {
  flex: 0 0 300px;
  height: 200px;
  overflow: hidden;
  border-radius: 4px;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.inspection-card:hover .content-image img {
  transform: scale(1.05);
}

/* 响应式布局 */
@media screen and (max-width: 768px) {
  .card-content {
    flex-direction: column;
    padding: 0 20px;
  }

  .content-image {
    flex: 0 0 200px;
    order: -1;
    width: 100%;
  }

  .content-text h3 {
    font-size: 18px;
  }

  .content-text p {
    font-size: 13px;
  }

  .factory-inspection .section-title {
    font-size: 20px;
  }
}

/* 费用表格区域样式 */
.fee-table-section {
}

.table-card {
}

.table-card .card-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #5abfb7;
}

.fee-table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.fee-table th,
.fee-table td {
  padding: 15px;
  border: 1px solid #eee;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
}

.fee-table th {
  background-color: #f9f9f9;
  font-weight: bold;
  color: #333;
}

.header-row .header-cell {
  background-color: #5abfb7;
  color: #fff;
  text-align: center;
  padding: 20px 15px;
}

.sub-header .rate-note {
  background-color: #ff9966;
  color: #fff;
  text-align: right;
  padding: 10px 15px;
  font-size: 12px;
}

.fee-table td {
  color: #666;
}

.note-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 4px;
  margin-top: 30px;
}

.note-text {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.price-button {
  display: inline-block;
  padding: 10px 30px;
  background-color: #fff;
  color: #5abfb7;
  text-decoration: none;
  border: 2px solid #5abfb7;
  border-radius: 25px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.price-button:hover {
  background-color: #5abfb7;
  color: #fff;
}

/* 响应式布局 */
@media screen and (max-width: 768px) {
  .table-card {
    padding: 20px;
  }

  .table-card .card-title {
    font-size: 20px;
  }

  .fee-table th,
  .fee-table td {
    padding: 10px;
    font-size: 13px;
  }

  .note-card {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .note-text {
    font-size: 13px;
  }
}

/* 选项服务区域样式 */
.option-service {
  padding: 60px 0;
  background-color: #fff;
}

.option-service .section-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ff9966;
  display: inline-block;
  background-color: #fff;
}

.option-service .service-items {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.option-service .service-item {
  flex: 1;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.option-service .service-item:hover {
  transform: translateY(-5px);
}

.option-service .service-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background-color: #5abfb7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  margin-bottom: 30px;
}

.option-service .service-icon img {
  width: 50px;
  height: 50px;
  transform: rotate(-45deg);
  filter: brightness(0) invert(1);
}

.option-service .service-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.option-service .service-desc p {
  margin: 0;
  text-align: center;
}

.pdf-link {
  text-align: center;
  margin-top: 40px;
}

.pdf-button {
  display: inline-block;
  padding: 12px 40px;
  background-color: #fff;
  color: #5abfb7;
  text-decoration: none;
  border: 2px solid #5abfb7;
  border-radius: 25px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.pdf-button:hover {
  background-color: #5abfb7;
  color: #fff;
}

/* 响应式布局 */
@media screen and (max-width: 768px) {
  .service-items {
    flex-direction: column;
    gap: 20px;
  }

  .service-item {
    padding: 15px;
  }

  .service-icon {
    width: 80px;
    height: 80px;
  }

  .service-icon img {
    width: 40px;
    height: 40px;
  }

  .service-desc {
    font-size: 13px;
  }

  .option-service .section-title {
    font-size: 20px;
  }

  .pdf-button {
    font-size: 14px;
    padding: 10px 30px;
  }
}

/* 阿里巴巴介绍区域样式 */
.alibaba-intro {
  padding: 60px 0;
}

.alibaba-intro .intro-card {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.alibaba-intro .card-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
  padding: 10px 20px;
  background-color: #ff9966;
  color: #fff;
  display: inline-block;
  border-radius: 4px;
}

.banner-image {
  width: 100%;
  height: 200px;
  margin-bottom: 30px;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.banner-image:hover img {
  transform: scale(1.05);
}

.intro-content {
  padding: 0 20px;
}

.intro-content h3 {
  color: #333;
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #5abfb7;
  display: inline-block;
}

.article {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

.article p {
  margin-bottom: 15px;
}

.article p:last-child {
  margin-bottom: 0;
}

/* 响应式布局 */
@media screen and (max-width: 768px) {
  .alibaba-intro .intro-card {
    padding: 20px;
  }

  .alibaba-intro .card-title {
    font-size: 20px;
    padding: 8px 15px;
  }

  .banner-image {
    height: 150px;
    margin-bottom: 20px;
  }

  .intro-content {
    padding: 0;
  }

  .intro-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .article {
    font-size: 13px;
  }
}

/* 仕入れサイト列表区域样式 */
.purchase-sites {
  padding: 60px 0;
  background-color: #fff;
}

.sites-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sites-card .card-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #5abfb7;
}

.sites-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.site-logo {
  flex: 0 0 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
}

.site-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15px;
}

.site-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.site-info h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
}

.site-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.site-link {
  color: #5abfb7;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.site-link:hover {
  color: #4ba39c;
}

/* 响应式布局 */
@media screen and (max-width: 768px) {
  .sites-card {
    padding: 20px;
  }

  .sites-card .card-title {
    font-size: 20px;
  }

  .site-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
  }

  .site-logo {
    flex: 0 0 100px;
    height: 100px;
  }

  .site-info h3 {
    font-size: 16px;
  }

  .site-desc {
    font-size: 13px;
    margin: 10px 0;
  }
}

/* 添加布局容器样式 */
.comparison-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 30px;
}

/* 左侧表格卡片样式 */
.comparison-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
}

.comparison-card .card-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #5abfb7;
}

.table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #eee;
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  border: 1px solid #eee;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}

.comparison-table th {
  background-color: #5abfb7;
  color: #fff;
  font-weight: normal;
}

.comparison-table tr:first-child th:first-child {
  background-color: #ff9966;
}

.comparison-table td:first-child {
  background-color: #f9f9f9;
  font-weight: bold;
  text-align: left;
}

.comparison-table td {
  color: #666;
}

.table-notes {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 4px;
  margin-bottom: 30px;
}

.table-notes p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.table-notes p:last-child {
  margin-bottom: 0;
}

.action-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 4px;
}

.action-text h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 5px;
}

.action-text p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.action-link {
  color: #5abfb7;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.action-link:hover {
  color: #4ba39c;
}

/* 响应式布局 */
@media screen and (max-width: 768px) {
  .comparison-card {
    padding: 20px;
  }

  .comparison-card .card-title {
    font-size: 20px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px;
    font-size: 12px;
  }

  .table-notes {
    padding: 15px;
  }

  .table-notes p {
    font-size: 12px;
  }

  .action-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .action-text h3 {
    font-size: 16px;
  }

  .action-text p {
    font-size: 12px;
  }
}

/* 可导入商品列表区域样式 */
.importable-products {
  padding: 60px 0;
  background-color: #fff;
}

.products-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
}

.products-card .card-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
  padding: 10px 20px;
  background-color: #ff9966;
  color: #fff;
  display: inline-block;
  border-radius: 4px;
}

.product-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.category-item {
  text-align: center;
  position: relative;
}

.category-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 40px;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-icon {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.check-icon img {
  width: 20px;
  height: 20px;
}

.category-item h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
}

.category-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.notice-card {
  background-color: #e6f4f1;
  border-radius: 8px;
  padding: 20px;
}

.notice-card h3 {
  color: #333;
  font-size: 16px;
  margin-bottom: 10px;
}

.notice-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* 响应式布局 */
@media screen and (max-width: 1024px) {
  .product-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .products-card {
    padding: 20px;
  }

  .products-card .card-title {
    font-size: 20px;
    padding: 8px 15px;
  }

  .product-categories {
    grid-template-columns: 1fr;
  }

  .category-image {
    width: 80%;
    margin: 0 auto 40px;
  }

  .check-icon {
    bottom: 80px;
  }

  .category-item h3 {
    font-size: 16px;
  }

  .category-item p {
    font-size: 13px;
  }

  .notice-card {
    padding: 15px;
  }

  .notice-card h3 {
    font-size: 14px;
  }

  .notice-card p {
    font-size: 12px;
  }
}

/* 不可导入商品列表区域样式 */
.non-importable {
  padding: 60px 0;
}

.non-importable .products-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
}

.non-importable .card-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  padding: 10px 20px;
  background-color: #ff9966;
  color: #fff;
  display: inline-block;
  border-radius: 4px;
}

.description {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 40px;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
}

.forbidden-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.forbidden-item {
  text-align: center;
  position: relative;
  padding: 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.forbidden-item:hover {
  transform: translateY(-5px);
}

.category-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 40px;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cross-icon {
  position: absolute;
  bottom: 148px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cross-icon img {
  width: 20px;
  height: 20px;
}

.forbidden-item h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
}

.forbidden-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* 响应式布局 */
@media screen and (max-width: 1024px) {
  .forbidden-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .non-importable .products-card {
    padding: 20px;
  }

  .non-importable .card-title {
    font-size: 20px;
    padding: 8px 15px;
  }

  .description {
    font-size: 13px;
    padding: 12px;
    margin-bottom: 30px;
  }

  .forbidden-categories {
    grid-template-columns: 1fr;
  }

  .category-image {
    margin-bottom: 30px;
  }

  .cross-icon {
    bottom: 80px;
  }

  .forbidden-item h3 {
    font-size: 16px;
  }

  .forbidden-item p {
    font-size: 13px;
  }
}

.notice-section {
  background-color: #fff;
}

.notice-title {
  font-size: 24px;
  font-weight: bold;
  color: #ff0000;
  margin-bottom: 20px;
}

.notice-box {
  background-color: #fff5f5;
  border: 2px solid #ff0000;
  border-radius: 4px;
  padding: 30px 30px 30px 45px;
}

.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice-list li {
  margin-bottom: 25px;
}

.notice-list li,
.notice-list p {
  text-align: justify;
}

.notice-list li:last-child {
  margin-bottom: 0;
}

.notice-list h3 {
  font-size: 16px;
  color: #ff0000;
  margin-bottom: 10px;
  font-weight: normal;
}

.notice-list p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 10px;
  margin-left: 20px;
}

.notice-list p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .notice-section {
  }

  .notice-title {
    font-size: 20px;
  }

  .notice-list h3 {
    font-size: 15px;
  }

  .notice-list p {
    font-size: 13px;
    margin-left: 15px;
  }
}

.attend-intro .section-title {
  font-size: 28px;
}

.attend-content {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.attend-content .attend-text {
  width: 60%;
  padding-right: 30px;
}

.attend-content .attend-image {
  flex: 1;
}

.attend-content .attend-image img {
  width: 100%;
  height: 240px;
}

.attend-fee .fee-info {
  position: relative;
}

.attend-fee .fee-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 40px;
}

.attend-fee .fee-text p {
  color: #ffb300;
  font-size: 18px;
  font-weight: 700;
}

.attend-fee img {
  height: 200px;
}

.support-details .section-title {
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
}

.support-content {
  background-color: #fff;
  border-radius: 8px;
}

.support-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.support-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.support-item h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
  position: relative;
}

.support-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.border-start {
  border-left: 4px solid #7eccd4;
  padding-left: 15px;
}

.support-item p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .support-details {
    padding: 40px 0;
  }

  .support-details .section-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .support-content {
    padding: 20px;
  }

  .support-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .support-item h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .support-item p {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* 会社概要页面样式 */
.greeting-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  column-gap: 15px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .greeting-layout {
    grid-template-columns: auto;
  }
}

.greeting-section .section-title {
  margin-bottom: 40px;
  color: #333;
  font-weight: bold;
}

.greeting-content {
  max-width: 1200px;
  margin: 0 auto;
}

.greeting-main img {
  width: 50%;
  height: auto;
  margin-right: 30px;
  /*float: left;*/
}

.greeting-main p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #333;
  font-size: 16px;
}

.greeting-main p:first-child {
  font-size: 24px;
  /*font-weight: bold;*/
  color: #1a1a1a;
  margin-bottom: 30px;
}

/* 业务内容区域样式 */
.business-content {
  margin: 60px 0;
}

.content-card {
  background: #fff;
  border-radius: 8px;
  margin: 0 auto;
}

.content-title {
  font-size: 24px;
  color: #fff;
  background-color: #ff9966;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 4px;
  margin-bottom: 30px;
}

.content-text {
  margin-bottom: 30px;
}

.content-text p {
  color: #333;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
  padding-left: 15px;
}

.business-content .content-text p::before {
  content: '*';
  display: inline-block;
  color: #7eccd4;
  font-size: 20px;
  font-weight: 500;
  vertical-align: middle;
  transform: translateX(-5px);
  float: left;
}

.content-text p:last-child {
  margin-bottom: 0;
}

main .contact-info {
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.contact-info p {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
  text-align: center;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info .company {
  font-weight: bold;
  color: #333;
}

/* 响应式布局 */
@media screen and (max-width: 768px) {
  .business-content {
  }

  .content-card {
  }

  .content-title {
    font-size: 20px;
    padding: 8px 15px;
  }

  .content-text p {
    font-size: 14px;
  }

  .contact-info p {
    font-size: 13px;
  }
}

/* 联系表单区域样式 */
.contact-form {
  padding: 60px 0;
  background-color: #fff;
}

.form-card {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
}

.form-header {
  position: relative;
  margin-bottom: 30px;
  background: rgb(0, 200, 255);
  height: 132px;
}

.form-title {
  font-size: 28px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-content {
}

.form-main {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
}

.contact-form-content {
  flex: 1;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.form-group.full-width {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #333;
  font-size: 14px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.submit-btn {
  background-color: #7eccd4;
  color: #fff;
  border: none;
  padding: 12px 40px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #6bb1b7;
}

.qr-codes2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qr-codes2 .qr-item {
  text-align: center;
}

.qr-codes2 .qr-item img {
  width: 150px;
  height: 150px;
  margin-bottom: 10px;
}

.qr-codes2 .qr-item p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

/* 响应式布局 */
@media screen and (max-width: 768px) {
  .form-content {
    padding: 20px;
  }

  .form-main {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .form-title {
    font-size: 24px;
    left: 20px;
  }

  .qr-codes {
    flex-direction: row;
    justify-content: center;
    margin-top: 30px;
  }

  .qr-item img {
    width: 120px;
    height: 120px;
  }

  .qr-item p {
    font-size: 12px;
  }
}

/* Q&A卡片区域样式 */

.qa-section .section-title {
  color: #333;
  font-weight: bold;
}

.qa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.qa-grid > :last-child {
  grid-column: 1 / -1;
}

.qa-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  transition: transform 0.3s ease;
}

.qa-card:hover {
  transform: translateY(-5px);
}

.qa-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.q-mark {
  font-size: 24px;
  font-weight: bold;
  color: #7eccd4;
  line-height: 1;
}

.qa-header h3 {
  font-size: 18px;
  color: #333;
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

.qa-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.a-mark {
  font-size: 24px;
  font-weight: bold;
  color: #ff9966;
  line-height: 1;
}

.qa-content p {
  margin: 0;
  color: #666;
  line-height: 1.6;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .qa-grid {
    grid-template-columns: 1fr;
  }

  .qa-card {
    padding: 20px;
  }

  .qa-header h3 {
    font-size: 16px;
  }

  .q-mark,
  .a-mark {
    font-size: 20px;
  }

  .qa-content p {
    font-size: 14px;
  }
}

/* 博客文章展示区域样式 */

.main-blog-card {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 40px;
  overflow: hidden;
}

.main-blog-card .blog-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
}

.main-blog-card .blog-image {
  height: 400px;
  overflow: hidden;
}

.main-blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.main-blog-card .blog-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-blog-card .date {
  color: #999;
  font-size: 14px;
  margin-bottom: 15px;
}

.main-blog-card .blog-title {
  font-size: 24px;
  color: #333;
  margin: 0 0 20px;
  line-height: 1.4;
}

.main-blog-card .blog-desc {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* 小文章卡片列表样式 */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card .date {
  color: #999;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

.blog-card .blog-title {
  font-size: 18px;
  color: #333;
  margin: 0 0 15px;
  line-height: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card .blog-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card .blog-image {
  height: 180px;
  overflow: hidden;
  border-radius: 4px;
}

.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

@media screen and (max-width: 1024px) {
  .main-blog-card .blog-content {
    grid-template-columns: 1fr;
  }

  .main-blog-card .blog-image {
    height: 300px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .main-blog-card .blog-title {
    font-size: 20px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card .blog-image {
    height: 200px;
  }
}

/* 博客区域布局 */
.blog-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-content-area {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
}
