/* 基础样式重置 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/* 全局样式 */
body {
	font-family: '微软雅黑', Tahoma, Geneva, Verdana, sans-serif;
	color: #333;
	line-height: 1.6;
}
.items-start {align-items: flex-start;}
.flex {display: flex;}
.mgb40{margin-bottom: 40px;}


.inner-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 0;
}

/* 头部区域样式 */
.header-section {
	margin-bottom: 30px;
}
.main-title {
   font-size: 36px;
   font-weight: 700;
   color: #1D2129;
   text-align: center;
}
.h-desc {
   font-size: 16px;
   color: #666;
   line-height: 1.8;
	text-align: center;
}

/* 第二部分：4个切换块 */
.tabs-section {
	background-color: #f2f6fe;
	border-radius: 10px;
	padding: 30px;
}
.wl-tab-wrap{
  	display: flex;
	gap: 20px;
}
/*.tabs-container {*/
/*	display: flex;*/
/*	flex-wrap: wrap;*/
/*	gap: 20px;*/
/*	justify-content: center;*/
/*}*/

.tab-item {
	width: 260px;
	background-color: white;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 10px;
	cursor: pointer;
	display: flex;
	align-items: flex-start;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.tab-item.active {
	border-color: #165DFF;
}

.tab-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	flex-shrink: 0;
}

.tab-item.active .tab-icon {
	background-color: rgba(22, 93, 255, 0.1);
	color: #165DFF;
}

.tab-item:not(.active) .tab-icon {
	background-color: #f1f1f1;
	color: #888;
}

.tab-content {
	flex-grow: 1;
}

.tab-title {
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 5px;
}

.tab-desc {
	color: #666;
	font-size: 14px;
}

/* 第三部分：内容展示区 */
.content-section {
	background-color: #f2f6fe;
	border-radius: 10px;
	padding: 40px;
}

.content-item {
	display: none;
	animation: fadeIn 0.5s ease;
}

.content-item.active {
	display: block;
}

.content-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: center;
}

.content-text {
	flex: 1;
	min-width: 300px;
}

.content-image {
	flex: 1;
	min-width: 300px;
}

.content-image img {
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.content-subtitle {
	color: #165DFF;
	font-weight: 500;
	margin-bottom: 10px;
}

.content-main-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.3;
}

.content-list {
	margin-bottom: 25px;
}

.content-list-title {
	font-weight: 600;
	margin-bottom: 15px;
}

.content-list ul {
	list-style: none;
	padding-left: 5px;
}

.text-secondary {
	--tw-text-opacity: 1;
	color: rgb(54 207 201 / var(--tw-text-opacity, 1));
}
.mt-1 {
	margin-top: 0.25rem;
}
.mr-2 {
	margin-right: 0.5rem;
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.content-highlight {
	background-color: rgba(22, 93, 255, 0.1);
	color: #165DFF;
	padding: 10px 15px;
	border-radius: 6px;
	display: inline-block;
	font-weight: 500;
}

.number-content {
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 80px;
	color: #ddd;
	font-weight: bold;
}

/* 外贸网站部分 */
.google-section {
	background-color: #f2f6fe;
	padding: 60px 0;
}

.google-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.image-wl-con {
	width: 787px;
	height: 511px;
	margin: 0 auto 30px;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
}

.main-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.image-wl-con:hover .image-overlay {
	opacity: 1;
}

.zoom-icon {
	width: 60px;
	height: 60px;
	background-color: rgba(255,255,255,0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #165DFF;
	font-size: 24px;
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.image-wl-con:hover .zoom-icon {
	transform: scale(1);
}

.google-desc {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 30px;
	color: #666;
}

.buy-btn {
	display: inline-block;
	background-color: #ff1616;
	color: white;
	padding: 12px 30px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	width: fit-content;
}

.buy-btn:hover {
	background-color: #0E4CD1;
	transform: translateY(-2px);
}

/* 图片弹窗 */
.image-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	z-index: 1000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.modal-image {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
}

/* 价格模块 */
.pricing-section {
	padding: 60px 0;
}

.pricing-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}


.pricing-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin-bottom: 20px;
}

.price-card {
	width: 278px;
	background-color: white;
	border: 1px solid rgba(56, 142, 255, 0.29);
	border-radius: 8px;
	padding: 25px;
	display: flex;
	flex-direction: column;
}

.card-title {
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 20px;
	flex-shrink: 0;
}

.card-price {
	color: #333;
	margin-bottom: 25px;
	flex-shrink: 0;
	font-family: Arial, Helvetica, sans-serif;
}
.card-price span{
	display: inline-block;
	font-weight: 700;
	font-size: 46px;
}
.card-price sup {
  font-size: 24px;
  position: relative; 
  top: -15px; 
}

.card-btn {
	width: 100%;
	height: 54px;
	background-color: #f2f6fe;
	color: #165DFF;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: 500;
	margin-bottom: 25px;
	transition: all 0.3s ease;
	flex-shrink: 0;
	cursor: pointer;
}

.card-btn:hover {
	background-color: #165DFF;
	color: white;
}

.card-stars {
	color: #FACC15;
	margin-bottom: 5px;
	flex-shrink: 0;
}
.card-stars span{color: #333;}

.card-diagram-title {
	font-weight: 500;
	margin-bottom: 15px;
	flex-shrink: 0;
}
.card-diagram-title span{color: #165DFF;}

.card-diagram {
	width: 100%;
	height: auto;
	border-radius: 6px;
	flex-grow: 1;
	object-fit: cover;
}

/* 疑问解答模块 */
/* .faq-section {
	padding: 60px 0;
	background-color: #f2f6fe;
} */

.faq-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.faq-container {
	background-color: #f2f6fe;
	border-radius: 10px;
	padding: 40px;
}

/* .faq-title {
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 20px;
}

.faq-subtitle {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 40px;
	color: #666;
} */

.faq-content {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.faq-text {
	flex: 1;
	min-width: 300px;
	background-color: white;
	padding: 25px;
	border-radius: 8px;
}

.faq-text-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}

.faq-text p {
	color: #666;
	margin-bottom: 15px;
}

.faq-items {
	flex: 1;
	min-width: 300px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	cursor: pointer;
}

.faq-item {
	width: 483px;
	height: 57px;
	background-color: white;
	border-radius: 8px;
	display: flex;
	align-items: center;
	padding: 0 15px;
	text-decoration: none;
	color: #333;
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-item-icon {
	width: 42px;
	height: 42px;
	background-color: #f3f8fa;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	color: #165DFF;
}

/* 动画效果 */
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* 响应式调整 */
@media (max-width: 1200px) {
	.price-card {
		width: 340px;
	}
	.card-btn {
		width: 290px;
	}
	.faq-item {
		width: 100%;
	}
}

@media (max-width: 992px) {
	.tabs-container {
		flex-direction: column;
		align-items: center;
	}
	.tab-item {
		width: 100%;
		max-width: 500px;
	}
	.image-wl-con {
		width: 100%;
		height: auto;
	}
}

@media (max-width: 768px) {
	.main-title, .google-title, .pricing-title, .faq-title {
		font-size: 24px;
	}
	.content-main-title {
		font-size: 20px;
	}
	.price-card {
		width: 100%;
		height: auto;
		margin-bottom: 20px;
	}
	.card-btn {
		width: 100%;
	}
	.content-section, .tabs-section, .faq-container {
		padding: 20px;
	}
}

/*8个特点*/
.wltd-bgc{
    padding: 40px;
}
.layout-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
/* 左侧窄文本区（约35%宽度，保留核心标题） */
.narrow-text {
    flex: 1 1 400px;
    padding: 35px 30px;
    border-right: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(/static/skin/images/bj02.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
}

.text-title {
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 600;
}

.text-desc {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

/* 右侧8卡片区：2列4行网格 */
.feature-cards {
    flex: 2 1 700px;
    padding: 30px;
    background: #fafbfc;
    display: grid;
    /* 2列，每列宽度自适应，间距15px */
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    align-items: stretch; /* 卡片高度统一 */
}

/* 单个特点卡片：上图标+下文本+专属色块 */
.feature-card {
    background: #fff;
    border-radius: 8px;
    padding: 22px 15px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 卡片悬停效果 */
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* 图标样式（统一大小，与特点匹配） */
.feature-card .fa {
    font-size: 30px;
    margin-bottom: 12px;
}

/* 8个卡片专属色块（浅色系区分，不刺眼） */
.card-1 .fa { color: #3b82f6; }
.card-2 .fa { color: #ef4444; }
.card-3 .fa { color: #f59e0b; }
.card-4 .fa { color: #dc2626; }
.card-5 .fa { color: #10b981; }
.card-6 .fa { color: #06b6d4; }
.card-7 .fa { color: #e11d48; }
.card-8 .fa { color: #8b5cf6; }

/* 卡片文本（对应8个特点，简洁清晰） */
.feature-card p {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 响应式调整：小屏幕优化 */
@media (max-width: 900px) {
    /* 左侧文本区与右侧卡片区上下排列 */
    .narrow-text {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
        flex: 1 1 100%;
        padding: 25px 20px;
    }
    .feature-cards {
        flex: 1 1 100%;
        padding: 25px 20px;
        /* 小屏幕1列显示，避免拥挤 */
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .text-title {
        font-size: 1.5rem;
    }
}


/*4个说明*/
.wlsm-bgc{
    background-color: #f2f6fe;
}
.outer-link-module {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}


/* 内容条目容器 */
.content-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* 每个条目样式 */
.item {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}

/* 左侧标题框 */
.left-box {
  width: 260px;
  background-color: #fff;
  border-radius: 8px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* 图标样式 */
.icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #165DFF;
}

.left-box h3 {
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.arrow {
  color: #ccc;
  font-size: 20px;
  flex-shrink: 0;
}

.right-box {
 flex: 1;
 min-width: 0;
 background-color: #fff;
 background-image: linear-gradient(135deg, #f9fbff 0%, #ffffff 100%);
 border-radius: 10px;
 padding: 20px 24px; 
 box-shadow: 0 4px 12px rgba(22, 93, 255, 0.08); 
 border-left: 3px solid #165DFF; 
 transition: all 0.3s ease;
}

.right-box p {
 font-size: 15px;
 color: #333; 
 line-height: 1.8; 
 font-weight: 450; 
}

.right-box p::first-letter {
 font-size: 1.8em;
 color: #165DFF;
 font-weight: bold;
 margin-right: 2px;
}

.right-box:hover {
 box-shadow: 0 6px 16px rgba(22, 93, 255, 0.12);
 transform: translateY(-2px);
}

.arrow {
 color: #165DFF; 
 font-size: 22px;
 font-weight: bold;
 flex-shrink: 0;
 transition: all 0.3s ease;
}

.item:hover .arrow {
 transform: scale(1.2); 
}

@media (max-width: 991px) {
  .outer-link-module {
    padding: 30px 15px;
  }
  
  .left-box {
    width: 220px; 
    padding: 12px 15px;
  }
  
 .right-box {
     padding: 18px 20px;
   }
   .right-box p {
     font-size: 14px;
   }
}

@media (max-width: 767px) {
  .item {
    flex-direction: column; 
    align-items: flex-start;
    gap: 10px;
  }
  
  .left-box {
    width: 100%;
    max-width: none;
  }
  
  .right-box {
border-left: none;
border-top: 3px solid #165DFF; 
}
.arrow {
color: #165DFF;
}
}

@media (max-width: 575px) {
  .outer-link-module {
    padding: 20px 10px;
  }
  .content-list {
    gap: 20px;
  }
  
  .left-box {
    padding: 10px 12px;
    gap: 10px;
  }
  
  .icon {
    width: 28px;
    height: 28px;
  }
  
  .left-box h3 {
    font-size: 15px;
  }
  
   .right-box {
      padding: 15px 18px;
    }
    .right-box p {
      font-size: 13px;
      line-height: 1.7;
    }
  
  .arrow {
    font-size: 18px;
  }
}