/* 全局样式 */
* {
    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;
}
.orange-box-design .li{
	display: flex;
	align-items: flex-start;
}
.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/twjrfw/icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 20px;
    flex-shrink: 0;
}

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

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

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

/* 右侧内容区自定义补充 */
.orange-box-design {
    background-image: linear-gradient(-90deg, #fb8a20, #f53b2c);
    border-radius: 10px;
    padding: 28px 24px;
    margin: 18px 0 32px 0;
    display: flex;
    align-items: flex-start;
}

.orange-title{
    font-size: 18px;
    color: #fff;
    margin-bottom: 16px;
}

.orange-icon {
    width: 22px;
    height: 22px;
    margin-right: 18px;
    flex-shrink: 0;
}

.orange-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.8;
    flex: 1;
}

.imgMain{
    width: 100%;
    height: 294px;
}

.imgMain img{
    width: 100%;
    height: 100%;
}

/* 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) {
    .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;
    }
}
