/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

body {
    background-color: #f5f5f5;
}

/* Banner样式 */
.banner {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.banner img {
    width: 100%;
    display: block;
}

/* 主容器样式 */
.container {
    width: 1200px;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* 左侧导航样式 */
.leftNav {
    width: 210px;
    border-radius: 12px;
    margin-right: 32px;
    padding: 32px 0 32px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.left-nav ul {
    list-style: none;
}

.left-nav li {
    position: relative;
    padding: 15px 0;
    padding-left: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.left-nav li.active {
    background-color: #fff;
}

.left-nav li .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    margin-right: 10px;
    vertical-align: middle;
}

.left-nav li.active .dot {
    background-color: #ff6600;
}

.left-nav li .nav-text {
    display: inline-block;
    font-size: 16px;
    color: #333;
    vertical-align: middle;
}

.left-nav li .nav-line {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background-color: #ff6600;
    transition: all 0.3s ease;
}

.left-nav li.active .nav-line {
    height: 20px;
}

/* 右侧内容区样式 */
.rightContent {
    flex: 1;
    margin-left: 242px; /* 210px width + 32px right margin */
}

.content-section {
    display: none;
}

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

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.content-box {
    margin-top: 20px;
}

.content-text {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.orange-box {
    background-color: #ff6600;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
}

.box-icon {
    width: 40px;
    height: 40px;
    background-image: url(../../images/core/xyjrfw/s6Bg1.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 20px;
    flex-shrink: 0;
}

.box-content {
    flex-grow: 1;
    line-height: 1.8;
}

/* 软件优势样式 */
.software-advantage {
    width: 1200px;
    margin: 40px auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.advantage-content {
    margin-top: 40px;
}

.advantage-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.advantage-item {
    width: 48%;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.item-number {
    font-size: 36px;
    font-weight: bold;
    color: #ff6600;
    margin-right: 20px;
    opacity: 0.8;
}

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

.item-image {
    width: 100%;
    height: 150px;
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-image img {
    max-width: 100%;
    max-height: 100%;
}

.item-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

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

/* 经验优势样式 */
.experience-advantage {
    width: 1200px;
    margin: 40px auto 60px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.experience-content {
    margin-top: 40px;
}

.exp-adv-list {
    margin-top: 32px;
}

.exp-adv-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.exp-num-box {
    width: 105px;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    flex-shrink: 0;
    position: relative;
}

.exp-num-1 {
    background: url(../../images/core/xyjrfw/s6Bg1.png) no-repeat center center;
	background-size: 100% 100%;
}

.exp-num-2 {
    background: url(../../images/core/xyjrfw/s6Bg2.png) no-repeat center center;
	background-size: 100% 100%;
}

.exp-num-box span {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    position: relative;
    z-index: 2;
}

.exp-content {
    flex: 1;
	padding: 50px 0;
	padding-left: 150px;
	padding-right: 50px;
}

.exp-adv-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
	text-align: center;
}

.exp-adv-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* 响应式调整 */
@media screen and (max-width: 1200px) {
    .container,
    .software-advantage,
    .experience-advantage {
        width: 95%;
    }
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .left-nav,
    .right-content {
        width: 100%;
    }
    
    .advantage-item {
        width: 100%;
    }
}

/* 右侧内容区自定义补充 */
.orange-box-design {
    background-image: linear-gradient(-90deg, #fb8a20, #f53b2c);
    border-radius: 10px;
    padding: 18px 24px;
    margin: 18px 0 32px 0;
}
.orange-box-design div{
	display: block;
}
.orange-title{
	font-size: 34rpx;
	color: #fff;
	margin-bottom: 16px;
}
.orange-icon {
    width: 32px;
    height: 32px;
    margin-right: 18px;
}
.orange-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.8;
}
.imgMain{
	width: 100%;
	height: 294px;
}
.imgMain img{
	width: 100%;
	height: 100%;
}
.soft-adv-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 0;
    margin: 32px 0 0 0;
    justify-content: space-between;
}
.soft-adv-item {
    width: 48%;
    background: #f8f8f8;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    padding: 18px 18px 18px 18px;
    margin-bottom: 0;
    min-height: 110px;
}
.soft-num {
    width: 56px;
    height: 56px;
    margin-right: 18px;
    flex-shrink: 0;
}
.soft-adv-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}
.soft-adv-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .soft-adv-item { width: 100%; }
    .soft-adv-list { flex-direction: column; gap: 0; }
}

/* Footer 样式 */
footer {
    background-color: #232429;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 20px;
}

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: normal;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-border {
    width: 1px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 20px;
}

.footer-contact p {
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    cursor: pointer;
}

.social-icon img {
    width: 30px;
}

#qr-popup {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 100;
}

#qr-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 40px;
}

.footer-app {
    text-align: center;
}

.footer-app img {
    width: 120px;
    margin-bottom: 10px;
}

.footer-app p {
    font-size: 14px;
    margin: 0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    position: relative;
}

@media (max-width: 900px) {
    .soft-adv-item { width: 100%; }
    .soft-adv-list { flex-direction: column; gap: 0; }
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-border {
        width: 80%;
        height: 1px;
        margin: 20px auto;
    }
    .footer-app {
        margin-top: 20px;
    }
}

/* 软件优势部分样式 */
.software-advantages-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    position: relative;
}

.software-left-column, .software-right-column {
    width: 30%;
}

.item-1, .item-2 {
    text-align: right;
}

.software-center {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.software-phone-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: flex;
    justify-content: center;
}

.software-phone-image img {
    width: 100%;
    height: auto;
}

.software-item {
    padding: 20px;
    position: relative;
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateY(30px);
}

.software-number-box {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.software-number {
    font-size: 36px;
    color: #ff6b58;
    font-weight: bold;
    line-height: 1;
}

.item-1 .software-number-box,
.item-2 .software-number-box {
    margin-left: auto;
}

.software-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

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

/* 软件优势项目的显示状态 */
.software-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 软件优势项目的悬停效果 */
/* This effect is replaced by the new one below */

/* 软件优势图标的悬停效果 */
.software-item.visible:hover .software-number-box {
    transform: rotate(10deg);
}

/* 资料优势部分样式 */
.data-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-header {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tab-item {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    color: #999;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b4a;
    transition: width 0.3s ease;
}

.tab-item:hover::after, .tab-item.active::after {
    width: 100%;
}

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

.data-desc {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.resource-image {
    text-align: center;
    position: relative;
}

.resource-image img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 图片淡入淡出效果 */
.fade-image {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 调整轮播点到图片上方 */
.carousel-dots {
	width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px; /* 改为下边距 */
	position: absolute;
	left: 0;
	bottom: 20px;
	z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #ff6b4a;
    transform: scale(1.2);
}

/* 经验优势项目的初始隐藏状态 */
.exp-adv-item {
    margin-bottom: 32px;
    position: relative;
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateY(30px);
}

/* 经验优势项目的显示状态 */
.exp-adv-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 优化我们添加的悬停效果 */
/* This effect is replaced by the new one above */

/* Add additional hover effect for experience advantage items */
.exp-adv-item:hover .exp-num-1, .exp-adv-item:hover .exp-num-2 {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Add hover effect to experience advantage number elements */
.exp-adv-item:hover .exp-num-1,
.exp-adv-item:hover .exp-num-2 {
    box-shadow: 0 0 15px rgba(230,0,18,0.3);
}

/* Title hover effect for software items */
.software-item:hover .software-title {
    color: #e60012;
    transition: color 0.3s ease;
}

/* Description hover effect for experience advantage items */
.exp-adv-item:hover .exp-adv-desc {
    color: #e60012;
    transition: color 0.3s ease;
}

/* These effects will work when items are visible */
.software-item.visible:hover .software-title {
    color: #e60012;
    transition: color 0.3s ease;
}

.exp-adv-item.visible:hover .exp-adv-desc {
    color: #e60012;
    transition: color 0.3s ease;
}

/* Software numbers hover effect */
.software-item:hover .software-number {
    color: #e60012;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Make the items properly respond to hover when they become visible */
.software-item.visible:hover {
    background-color: rgba(255,255,255,0.9);
    box-shadow: 0 5px 15px rgba(230,0,18,0.15);
    transform: translateY(-5px);
    z-index: 10;
}

.exp-adv-item.visible:hover {
    background-color: rgba(255,255,255,0.9);
    box-shadow: 0 5px 15px rgba(230,0,18,0.15);
    transform: translateY(-5px);
}
