/* 主要内容区域 */
.hero-section {
    width: 100%;
    padding-top: 120px;
    padding-bottom: 80px;
    background: url(../../assets/img/cloud/f3fd4c8b93c004e1a31fa214887ce020.png) center/cover no-repeat;
    color: #fff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1c1d1f;
}

.hero-description {
    font-size: 16px;
    line-height: 29px;
    margin-bottom: 30px;
    color: #626266;
    max-width: 700px;
}

.btn {
    display: inline-block;
    background-color: #0080ff;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s;
    text-align: center;
    cursor: pointer;
}

.btn:hover {
    background-color: #0066cc;
}

/* 产品规格部分 */
.section-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 60px 0 20px;
    color: #1c1d1f;
}

.section-subtitle {
    font-size: 14px;
    text-align: center;
    margin-bottom: 40px;
    color: #1c1d1f;
}

.product-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    width: 100%;
    max-width: 693px;
    border: 1px solid #eff1f3;
    border-radius: 4px;
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 20px;
    border-bottom: 1px solid #f5f5f5;
    background: url(../../assets/img/cloud/5aa816eab2793845e1e45303e1824b28.png) 100% no-repeat;
    background-size: 100% 100%;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #323235;
}

.card-description {
    font-size: 14px;
    color: #323235;
    margin-bottom: 15px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.card-tag {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.tag-icon {
    width: 14px;
    height: 14px;
    margin-right: 5px;
}

/* 产品卡片规格行样式调整 */
.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 100px;
}

.spec-label,
.spec-value {
    flex: 1;
    padding: 0 5px;
}

.spec-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.spec-value {
    font-size: 14px;
    color: #333;
    font-weight: 400;
}

/* 确保卡片主体有足够的内边距 */
.card-body {
    padding: 15px 0 5px 20px;
    border-bottom: 1px solid #eee;
}

.spec-label {
    font-size: 14px;
    color: #323235;
}

.spec-value {
    font-size: 16px;
    color: #323235;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #f5f5f5;
}

.price {
    display: flex;
    align-items: baseline;
}

.price-symbol {
    font-size: 16px;
    color: #f33e3e;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: #f33e3e;
    margin-left: 5px;
}

.buy-btn {
    background-color: #fff;
    color: #549aff;
    border: 1px solid #549aff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.buy-btn:hover {
    background-color: #549aff;
    color: #fff;
}

/* 产品优势部分 */
.advantages-section {
    padding: 60px 0;
    background: url(../../assets/img/cloud/4960589af38d3a6148a01bc96440c6dc.png) center/cover no-repeat;
}

.advantages-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
}

.advantage-icon {
    width: 66px;
    height: 72px;
}

/* 产品优势部分样式调整 */
.advantages-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    /* background-color: #fff; */
    border-radius: 8px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}

.advantage-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

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

.advantage-item {
    width: 250px;
    text-align: center;
}

.advantage-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1c1d1f;
}

.advantage-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #1c1d1f;
}

/* 功能特性部分 */
.features-section {
    padding: 60px 0;
    background-color: #fff;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    width: 100%;
    max-width: 453px;
    padding: 30px;
    border: 1px solid #eff1f3;
    border-radius: 4px;
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 36px;
    height: 32px;
    margin: 0 auto 20px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #1c1d1f;
}

.feature-desc {
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    color: #1c1d1f;
    width: 344px;
}

/* 应用场景部分 */
.scenarios-section {
    padding: 60px 0;
    background-color: rgba(245, 247, 250, 1);
}

/* 选项卡容器样式 */
.tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 30px;
}

/* 选项卡样式 */
.tab {
    padding: 12px 24px;
    margin: 0 10px;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab.active {
    color: #0066ff;
    font-weight: 500;
}

.tab.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0066ff;
}

.tab:hover {
    color: #0066ff;
}

/* 选项卡内容样式 */
.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 100%;
}

.tab-content.active {
    display: flex;
    opacity: 1;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.tab-contents {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.content-image {
    width: 45%;
    border-radius: 8px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    object-fit: cover;
}

.content-text {
    width: 55%;
}

.content-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.content-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.content-features {
    margin-bottom: 24px;
}

.content-features h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.feature-points p {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.dot {
    display: inline-block;
    width: 13px;
    height: 13px;
    /* background-color: #1890ff; */
    border-radius: 50%;
    margin-right: 8px;
    /* margin-top: 8px; */
    background: url(../../assets/img/cloud/cc1661e08a31b1884e9bb22becb11e36.png) center/cover no-repeat;
}

.content-tags {
    display: flex;
    gap: 12px;
}

.content-tag {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.tag-small-icon {
    width: 48px;
    height: 39px;
    margin-right: 10px;
}

.content-features {
    margin-bottom: 20px;
}

.content-features h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.content-features p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* 服务特点部分 */
.service-section {
    background-color: #1A1C2A;
    padding: 20px 0;
}

.services-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.services-container img {
    height: 32px;
    object-fit: contain;
}

.label_13,
.label_14,
.label_15,
.label_16 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    color: #fff;
}

.service-text {
    font-size: 14px;
    color: #fff;
}