		a {
		  text-decoration: none;
		  color:#000;
		}	
/* ========== 第三部分：点击拉动式百叶窗 ========== */
        .blinds-section {
            width: 100%;
            padding: 50px 0;
            margin: 0 auto;
        }

        .blinds-container-wrapper {
            display: flex;
            justify-content: center;
            min-height: 390px;
            width: 100%;
        }

        .blinds-container-wrapper ul {
            display: flex;
            width: 80%;
            max-height: 390px;
            height: auto;
            overflow: hidden;
            margin: 0 auto;
        }

        .blinds-container-wrapper li {
            max-height: 390px;
            height: auto;
            transition: all 1s ease;
            cursor: pointer;
            width: 115px;
            background-color: #f9f9f9;
            position: relative;
            overflow: hidden;
        }

        .blinds-container-wrapper li:first-child {
            width: 77.6%;
        }

        .blinds-container-wrapper li.shrink {
            width: 115px;
            background-color: #47d1c3;
        }

        .blinds-container-wrapper li.expand {
            width: 77.6%;
        }

        .content-left {
            width: 115px;
            max-height: 390px;
            height: 100%;
            background-color: #00c4b4;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 20px 0;
            flex-shrink: 0; /* 禁止压缩 */
        }

        .blinds-container-wrapper li[data-index="1"] .content-left,
        .blinds-container-wrapper li[data-index="2"] .content-left,
        .blinds-container-wrapper li[data-index="3"] .content-left {
            border-left: 3px solid #ffffff;
        }

        .content-left .en-text {
            font-size: 12px;
            letter-spacing: 0;
            margin-bottom: 8px;
            text-align: center;
        }

        .content-left .cn-text {
            font-size: 18px;
            font-weight: normal;
        }

        .content-container {
            width: 100%;
            max-height: 390px;
            height: 100%;
            display: flex;
        }

        .content-middle {
            width: 45%;
            max-height: 390px;
            height: 100%;
            flex-shrink: 0;
        }

        .content-middle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            loading: lazy;
        }

        .content-right {
            width: 45%;
            max-height: 390px;
            height: 100%;
            background-color: #f9f9f9;
            padding: 40px 0 0 2%;
            display: flex;
            flex-direction: column;
            flex-shrink: 0;
            overflow-y: auto;
        }

        .content-right .title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 16px;
            color: #333333;
            padding: 40px 0 0 0;
            letter-spacing: 0.5px;
            line-height: 1.2;
            text-align: left;
        }

        .content-right .desc {
            font-size: 14px;
            line-height: 1.8;
            color: #666666;
            margin-bottom: 30px;
            padding: 0 15% 0 0;
            letter-spacing: 0.3px;
            text-align: left;
            text-indent: 0;
            white-space: normal;
            max-height: 150px;
            height: auto;
            overflow: hidden;
        }

        .content-right .more-btn {
            display: inline-flex;
            align-items: center;
            color: #000000;
            font-size: 14px;
            cursor: pointer;
            font-weight: bold;
            gap: 8px;
        }

        .content-right .more-btn img {
            height: 1em;
            width: auto;
            object-fit: contain;
            vertical-align: middle;
        }

        /* ========== 第四部分：投资者关系 ========== */
        .full-width-section {
            width: 100%;
            background-color: #f5f5f5;
            margin: 20px 0;
        }

        .investor-container {
            width: 80%;
            max-width: 1520px;
            margin: 0 auto;
            padding: 50px 0;
        }

        .grid-layout {
            display: grid;
            grid-template-columns: 30% 56%;
            gap: 40px;
            align-items: stretch;
        }

        .section-title {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #000;
            color: #000;
        }

        .no-border {
            border-bottom: none !important;
            padding-bottom: 0;
        }

        .left-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
            height: 100%;
        }

        .img-container {
            flex: 1;
            width: 235px;
            height: 320px;
        }

        .annual-report {
            width: 100%;
            height: 100%;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            object-fit: cover;
        }

        .annual-link {
            display: flex;
            align-items: center;
            padding: 10px 0;
            color: #000;
            text-decoration: none;
            font-size: 20px;
            font-weight: 500;
            width: 200px;
            position: relative;
        }

        .annual-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60%;
            height: 1px;
            background-color: #000;
        }

        .annual-link .arrow-icon {
            position: absolute;
            right: calc(40% + 2px);
            top: 50%;
            transform: translateY(-50%);
            color: #000;
            font-size: 20px;
            max-width: 20px;
            width: 100%;
        }

        .annual-link:hover {
            color: #00bfa5;
        }

        .annual-link:hover .arrow-icon {
            color: #00bfa5;
        }

        .right-section {
            display: flex;
            flex-direction: column;
            gap: 40px;
            height: 100%;
        }

        .notice-list {
            display: flex;
            flex-direction: column;
            flex: 1;
            margin-top: -10px;
        }

        .notice-item {
            padding: 15px 0;
            border-bottom: 1px solid #000;
        }

        .notice-date {
            font-size: 14px;
            color: #666;
            margin-bottom: 5px;
        }

        .notice-title {
            font-size: 15px;
            color: #333;
            text-decoration: none;
            line-height: 1.4;
        }
		
		.notice-item a{ text-decoration:none; color:#000;}
		.notice-item a:hover{ color:#47d1c3;}

        .notice-title:hover {
            color: #00bfa5;
        }

        .view-more {
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 20px;
            text-decoration: none;
            cursor: pointer;
            font-weight: bold;
        }

        .view-more-text {
            font-size: 14px;
            color: #333;
            font-weight: bold;
            line-height: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .view-more-text img {
            line-height: 14px;
            object-fit: contain;
            display: inline-block;
            vertical-align: middle;
        }

        /* ========== 第五部分：6张图片无缝走马灯（下方） ========== */
        .bottom-carousel-section {
            width: 100%;
            padding: 50px 0;
            margin: 0 auto;
            box-sizing: border-box;
        }

        .carousel-title-container {
            width: 80%;
            max-width: 1520px;
            margin: 0 auto;
            padding-bottom: 40px;
            box-sizing: border-box;
            text-align: left;
        }

        .news-title {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 4px;
            line-height: 1.2;
        }

        .news-title .main-title {
            font-size: 36px;
            font-weight: 500;
            color: #47d1c3;
            margin: 0;
            line-height: 1;
            letter-spacing: 1px;
        }

        .news-title .sub-title {
            font-size: 20px;
            font-weight: 400;
            color: #333333;
            margin: 0;
            line-height: 1;
            padding-bottom: 0;
            letter-spacing: 0.5px;
        }

        .bottom-carousel-container {
            width: calc(756px * 3);
            height: 262px;
            margin: 0 auto 20px;
            overflow: hidden;
            position: relative;
            padding: 0;
        }

        .bottom-carousel-list {
            display: flex;
            height: 100%;
            padding: 0;
            margin: 0;
            list-style: none;
            transition: transform 0.5s ease;
        }

        .bottom-carousel-item {
            width: 756px;
            height: 262px;
            flex-shrink: 0;
            display: flex;
        }

        .carousel-img-wrapper {
            width: 54%;
            height: 100%;
        }

        .carousel-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .carousel-text-wrapper {
            width: 46%;
            padding: 40px 30px;
            background: #f5f5f5;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            box-sizing: border-box;
        }

        .carousel-date-container {
            margin-top: 20px;
            margin-bottom: 25px;
            display: flex;
            align-items: stretch;
            height: auto;
        }

        .carousel-date {
            font-size: 40px;
            font-weight: 300;
            color: #333333;
            line-height: 1;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
        }

        .carousel-month {
            font-size: 16px;
            color: #999999;
            text-transform: uppercase;
            margin: 0 0 0 8px;
            padding: 0;
            line-height: 1.2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }

        .carousel-desc {
            font-size: 15px;
            line-height: 1.8;
            color: #666666;
            margin-bottom: 30px;
            text-align: left;
            letter-spacing: 0.5px;
        }
		
		.carousel-text-wrapper a{
			text-decoration:none;
            font-size: 15px;
            line-height: 1.8;
            color: #000000;
            margin-bottom: 30px;
            text-align: left;
            letter-spacing: 0.5px;
        }
		.carousel-desc a{ color: #666666;}

        .carousel-more {
            display: inline-flex;
            align-items: center;
            font-size: 16px;
            color: #000000;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: transparent;
            border: none;
            padding: 0;
            cursor: pointer;
            font-weight: 500;
        }

        .carousel-more img {
            margin-left: 20px;
            vertical-align: middle;
            width: 35px;
            height: 30px;
            object-fit: contain;
            padding-top: 3px;
			padding-left:30px;
        }
		
		.carousel-text-wrapper img {
            margin-left: 20px;
            vertical-align: middle;
            width: 35px;
            height: 30px;
            object-fit: contain;
        }

        .carousel-control-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 80%;
            max-width: 600px;
            margin: 0 auto;
            z-index: 10;
        }

        .bottom-carousel-btn {
            border: none;
            background: transparent;
            padding: 0;
            margin: 0;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bottom-carousel-btn:hover {
            background-color: transparent;
        }

        .progress-bar {
            flex: 1;
            height: 2px;
            background-color: #e0e0e0;
            margin: 0 15px;
            position: relative;
            overflow: hidden;
            max-width: 800px;
        }

        .progress-indicator {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 16.67%;
            background-color: #47d1c3;
            transition: left 0.5s ease;
        }

        .bottom-carousel-indicators {
            display: none;
        }

        
        /* ========== 响应式适配（整合所有模块，768px以下移动端） ========== */
        @media (max-width: 1100px) {
            /* 百叶窗响应式 */
            .content-right {
                padding: 20px 15px;
            }
            .content-right .title {
                font-size: 18px;
            }
            .content-right .desc {
                font-size: 13px;
                line-height: 1.7;
                max-height: 150px;
            }
            .content-right .more-btn {
                font-size: 13px;
                gap: 6px;
            }
        }

        @media (max-width: 768px) {
            /* 头部导航响应式 */
            .header .container {
                display: -webkit-flex;
                display: flex;
                -webkit-flex-wrap: wrap;
                flex-wrap: wrap;
                gap: 16px;
                -webkit-gap: 16px;
            }
            .nav-lang-group {
                width: 100%;
                -webkit-justify-content: space-between;
                justify-content: space-between;
                gap: 20px;
                -webkit-gap: 20px;
            }
            .nav ul {
                gap: 20px;
                -webkit-gap: 20px;
            }
            .nav li {
                font-size: 14px;
            }
            .nav a {
                font-size: 14px;
                letter-spacing: 0.3px;
            }
            .lang-switch {
                border-radius: 6px;
            }
            .lang-item {
                padding: 2px 4px;
                line-height: 20px;
                font-size: 12px;
            }

            /* 顶部走马灯响应式 */
            .top-carousel {
                height: 300px;
            }
            .top-carousel-btn {
                width: 30px;
                height: 40px;
                font-size: 16px;
            }
            .top-carousel-next {
                right: 10px;
            }
            .top-carousel-indicators {
                right: calc(10px + 30px + 20px);
                gap: 8px;
            }
            .top-indicator {
                width: 10px;
                height: 10px;
            }

            /* 百叶窗响应式 */
            .content-right {
                padding: 15px 10px;
            }
            .content-right .title {
                font-size: 16px;
                margin-bottom: 12px;
            }
            .content-right .desc {
                font-size: 12px;
                line-height: 1.6;
                margin-bottom: 15px;
                max-height: 150px;
            }
            .content-right .more-btn {
                font-size: 12px;
                gap: 5px;
            }

            /* 投资者关系响应式 */
            .grid-layout {
                grid-template-columns: 1fr;
            }
            .img-container, .annual-link {
                width: 100%;
                height: auto;
            }
            .annual-link .arrow-icon {
                right: calc(40% + 2px);
            }
            .left-section, .right-section {
                height: auto;
                gap: 20px;
            }
            .img-container {
                flex: none;
            }
            .annual-report {
                height: auto;
            }
            .notice-list {
                flex: none;
                gap: 20px;
                margin-top: -10px;
            }
            .view-more {
                gap: 10px;
            }
            .view-more-text {
                font-size: 12px;
                gap: 6px;
            }
            .view-more-text img {
                width: 12px;
                height: 12px;
            }

            /* 下方走马灯响应式 */
            .bottom-carousel-container {
                width: 90%;
                height: auto;
            }
            .bottom-carousel-item {
                width: 100%;
                height: auto;
                flex-direction: column;
            }
            .carousel-img-wrapper, .carousel-text-wrapper {
                width: 100%;
            }
            .carousel-date-container {
                margin-top: 20px;
            }
            .carousel-desc {
                font-size: 12px;
                margin-bottom: 20px;
            }
            .carousel-more {
                font-size: 12px;
            }
            .carousel-more img {
                width: 20px;
                height: 18px;
            }

            /* 底部导航响应式 */
            .footer {
                padding: 40px 20px 20px 20px;
            }
            .footer-column {
                min-width: 120px;
                padding: 0 10px;
            }
            .footer-column h3 {
                font-size: 16px;
                margin-bottom: 15px;
            }
            .footer-column ul li {
                font-size: 11px;
                margin-bottom: 8px;
            }
            .footer-copyright {
                font-size: 10px;
                white-space: normal;
            }
        }