       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        

        body {
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            background: linear-gradient(0deg, #fefbea, #f8fcff)
        }
         a:hover {
           color: #298af7 !important;
        }

        /* 面包屑导航 */
        .breadcrumb {
            background-color: #a91728;
           height: 60px;
           line-height: 60px;
        }
        .breadcrumb a {
            color: #ffffff;
            text-decoration: none;
            font-size: 22px;
            font-weight: normal;
            font-stretch: normal;
            color: #ffffff;
        }
        .breadcrumb a::after {
            content: '>>';
        }

        .breadcrumb span {
            color: #ffffff;
            font-size: 22px;
        }

        /* 首页banner */
        .banner-section  .banner-image{
           width: 100%;
           height: 510px;
           object-fit: cover;
        }

        .container {
            max-width: 1200px;
            width: 1200px;
            margin: 0 auto;
        }
        /* 主要内容区域-图表部分 */
        .main-top {
            display: flex;
            position: relative;
            top: -90px;
        }
        .main-top-left {
            width:calc(100% - 524px);
            height: 443px;
            border-radius: 10px;
        }
       .main-top-left .chart-title {
           font-family: MicrosoftYaHei;
            font-size: 28px;
            line-height: 18px;
            letter-spacing: 1px;
            color: #666464;
            padding: 40px 20px 0px 40px;
            box-sizing: border-box;
        }
        .main-top-left .chart-container{
            width: 100%;
            height: calc(100% - 60px);
        }
        .main-top-right {
           width: 504px;
           height: 443px;
           margin-left: 20px;
        }
        .main-top-right img,.main-top-left img {
            width: 100%;
            height: 100%;
        }
        
        
        /* 主要内容区域-政策支持 */
        .main-content{
            padding: 0 40px;
            box-sizing: border-box;
            margin-top: -50px;
        }

        /* 内容区块 */
        .content-section {
            padding-bottom: 30px;
        }
       /* 政策支持-标题 */
        .section-header {
            font-size: 30px;
	        color: #353434;
            text-align: center;
            padding-bottom: 28px;
            border-bottom: 2px solid #dcdcdc;
        }

        /* 标签页 */
        .tabs {
            display: flex;
            margin-bottom: 26px;
        }

        .tab {
            padding: 0 64px;
            height: 35px;
            line-height: 35px;
            background-image: linear-gradient(
            #dcdcdc, 
            #dcdcdc), 
            linear-gradient(
                #298af7, 
                #298af7);
            background-blend-mode: normal, 
                normal;
            letter-spacing: 4px;
	        color: #666464;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 24px;
            margin-left: 1px;
            margin-right: 1px;
        }
        .tab:first-child {
            margin-left: 0;
        }
        .tab:last-child {
            margin-right: 0;
        }

        .tab.active {
            background: #298af7;
            color: white;
        }

        /* 内容列表 */
        .two-column-center{
            width: calc(100% - 435px);
            padding: 0 0 0 40px;
            box-sizing: border-box;
        }
        .two-column-center1{
            width: calc(100% - 435px);
            padding: 0 40px 0 0;
            box-sizing: border-box;
        }
        .two-column-center2{
            width: calc(50% - 20px);
        }
        .mr20{
            margin-right: 20px;
        }
        .ml20{
            margin-left: 20px;
        }
        .content-list {
            list-style: none;
        }

        .content-list li {
            padding-bottom: 15px;
           
        }
        .content-list li a{
            width: 100%;
            height: 100%;
            text-decoration: none;
             font-size: 24px;
            color: #666464;
        }
        /* 单行文本省略 */
        .single-line-ellipsis {
            white-space: nowrap; /* 防止文本换行 */
            overflow: hidden;    /* 隐藏溢出内容 */
            text-overflow: ellipsis; /* 溢出时显示省略号 */
        }

        .content-list li:last-child {
            border-bottom: none;
        }
        /* 政策支持-查看更多 */
        .view-more{
            margin-top: 20px;
        }
        .view-more1{
            text-align: right;
        }
        .view-more a{
            color: #666464;
            font-size: 18px;
            text-decoration: none;
        }

        /* 两列布局 */
        .two-column {
            display: flex;
        }
        .two-column-left{
          width: 435px;
	      height: 245px;
        }
         .two-column-left img{
          width: 100%;
	      height: 100%;
        }
        .h13px{
            height: 13px;
        }