        :root {
            --primary: #0fb3bc;
            --primary-dark: #00646b;
            --text-title: #333;
            --text-desc: #8e8e8e;
            --text-date: #999999;
            --border: #eeeeee;
            --bg: #ffffff;
        }

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

        body {
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-title);
            background-color: #f4f7ff;
            -webkit-font-smoothing: antialiased;
            background-image: url(../img/tbg.png);
            background-size: cover;
            background-attachment: fixed;
        }

        /*重置默认链接*/
        /* 列表样式 */

        ul,
        ol,
        li,
        dl,
        dt,
        dd {
            list-style: none;
        }

        a {
            max-width: 100%;
            outline: 0 none;
            text-decoration: none;
            color: #333;
        }

        a:hover {
            text-decoration: none;
            color: #000;
        }

        a:focus {
            outline: none;
            -moz-outline: none;
        }

        input:focus {
            border: 1px solid #00b99c;
        }

        .fl {
            float: left;
        }

        .fr {
            float: right;
        }

        .el {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .el_2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            text-overflow: ellipsis;
            overflow: hidden;
        }

        .el_3 {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            text-overflow: ellipsis;
            overflow: hidden;
        }

        /*MORE*/

        .more {
            font-size: 14px;
            color: var(--text-desc);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a.pmore {
            display: inline-block;
            height: 28px;
            line-height: 28px;
            padding: 0 15px;
            font-size: 12px;
            color: #fff;
            border-radius: 10px;
            background: -webkit-linear-gradient(right, #0356ce, #059578);
            /* Safari 5.1 - 6.0 */
            background: -o-linear-gradient(right, #0356ce, #059578);
            /* Opera 11.1 - 12.0 */
            background: -moz-linear-gradient(right, #0356ce, #059578);
            /* Firefox 3.6 - 15 */
            background: linear-gradient(to right, #0356ce, #059578);
            /* 标准的语法（必须放在最后） */
            transition: all .3s;
        }

        a.pmore:hover {
            background: -webkit-linear-gradient(right, #059578, #0356ce);
            /* Safari 5.1 - 6.0 */
            background: -o-linear-gradient(right, #059578, #0356ce);
            /* Opera 11.1 - 12.0 */
            background: -moz-linear-gradient(right, #059578, #0356ce);
            /* Firefox 3.6 - 15 */
            background: linear-gradient(to right, #059578, #0356ce);
            /* 标准的语法（必须放在最后） */
            padding: 0 18px;
        }


        /*导航样式*/

        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 90;
            padding: .75rem 0;
            left: 0;
            height: 10px;
        }

        header .logos {
            float: left;
            width: 88px;
            margin-left: 65px;
            margin-top: 3%;
            display: block;
            position: relative;
            z-index: 100;
        }

        .init {
            height: 80px;
        }

        header .header-view {
            position: relative;
            z-index: 1
        }

        header .ftt {
            color: #fff;
            font-size: 1.125rem;
        }

        header.black .ftt {
            color: #ee1c25;
        }


        /*侧栏导航*/

        header .nav {
            position: fixed;
            width: 175px;
            height: 100%;
            background: url(../img/nav_bg.png) no-repeat left top rgba(0, 0, 0, 0.1);
            left: 0px;
            top: 0;
            font-weight: normal;
            transition: 1000ms all cubic-bezier(.19, 1, .22, 1);
            transform: translateX(0%);
            display: block;
            z-index: 9999;
        }

        /* #menus .expanded {
            transform: translateX(0%);
            left: 0;
        }*/

        header .menu-inner>ul {
            margin-top: 230px;
            width: 160px;
            margin-left: 15px;
        }

        header .menu-inner>ul li {
            margin: 1vw 0;
            text-align: center;
            transition: all .3s;
        }

        header .menu-inner>ul li img {
            max-width: 100%;
        }

        header .menu-inner>ul li>a {
            display: block;
            float: none;
            font-size: 16px;
            padding: 8px 0;
            text-align: center;
            color: #535353;
            border-right: 4px solid rgba(0, 0, 0, 0);
        }

        header .menu-inner>ul li>a:hover {
            color: #333;
            background: rgba(0, 185, 156, 0.1);
            border-right: 4px solid #00b99c;
        }

        header .menu-inner>ul li>a.active {
            color: #333;
            background: rgba(0, 185, 156, 0.1);
            border-right: 4px solid #00b99c;
        }

        header .menu-inner>ul li>ul.sub_nav {
            margin-top: 10px;
            opacity: 0;
            display: none;
            transition: all .3s;
        }

        header .menu-inner>ul li>ul.actives {
            opacity: 1;
            display: block;
        }

        header .menu-inner>ul li>ul.sub_nav li {
            margin: 6px 0;
        }

        header .menu-inner>ul li>ul.sub_nav li a {
            font-size: 14px;
            padding: 1px 0;
        }

        header .menu-inner>ul li>ul.sub_nav .active a {
            background: rgba(0, 0, 0, 0.1);
            border-right: 4px solid #00b99c;
        }

        header .menu-inner>ul li>ul.sub_nav li a:hover {
            color: #333;
            background: rgba(0, 0, 0, 0.1);
            border-right: 4px solid #00b99c;
        }

        header .menu-inner>ul li>ul.sub_nav li.subon a {
            color: #333;
            background: rgba(0, 0, 0, 0.1);
            border-right: 4px solid #00b99c;
        }

        /*侧栏公共样式*/

        #menu.expanded {
            transform: translateX(0%);
            left: 0
        }

        .menu-inner {
            width: 100%;
            height: 100%;
            position: relative
        }

        #blob {
            top: 0;
            z-index: -1;
            right: 21px;
            transform: translateX(100%);
            height: 100%;
            position: absolute;
        }

        #blob-path {
            height: 100%;
            fill: none;
        }

        .hamburger {
            right: -30px;
            position: absolute;
            width: 20px;
            height: 20px;
            margin-top: -10px;
        }

        .hamburger .line {
            width: 100%;
            height: 4px;
            background-color: #00b99c;
            position: absolute;
        }

        .hamburger .line:nth-child(2) {
            top: 50%;
            margin-top: -2px;
        }

        .hamburger .line:nth-child(3) {
            bottom: 0;
        }

        .news-section {
            padding: 40px 0;
        }

        .page-header {
            /* max-width: 1360px;*/
        }

        .news-container {
            /* max-width: 1360px;*/
            margin-left: 200px !important;
            margin-right: auto;
            display: block;
            width: calc(100% - 200px - 30px) !important;
        }

        @media screen and (min-width: 1600px) {

            .news-list,
            .article {
                max-width: 1440px !important;
                margin: 0 auto !important;
            }

            .page-header,
            .breadcrumb {
                max-width: 1440px !important;
                margin: 0 auto 30px !important;

            }
        }

        /* ---------- 头部 ---------- */
        .page-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .page-header h2 {
            font-size: 36px;
            font-weight: 400;
        }

        .back-home {
            font-size: 14px;
            color: var(--text-desc);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .back-home:hover {
            color: var(--primary);
        }

        /* ---------- 列表 ---------- */
        .page-header {
            margin-right: 30px;
        }

        .news-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        /* ---------- 列表项：图上文下卡片 ---------- */
        .news-item {
            position: relative;
            display: flex;
            flex-direction: column;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 6px;
            overflow: hidden;
            cursor: pointer;
            color: inherit;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .news-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 24px rgba(15, 179, 188, 0.14);
        }

        .news-item:hover .news-title {
            color: var(--primary);
        }

        .news-item:hover .news-thumb img {
            transform: scale(1.06);
        }

        .news-item:hover .arrow-icon {
            transform: translateX(6px);
        }

        .news-thumb {
            flex-shrink: 0;
            width: 100%;
            height: 170px;
            overflow: hidden;
            background: linear-gradient(135deg, #0fb3bc 0%, #00787f 100%);
        }

        .news-thumb img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.45s ease;
        }

        .news-main {
            display: flex;
            flex-direction: column;
            flex: 1;
            padding: 16px 16px 14px;
        }

        .news-content {
            flex: 1;
            min-width: 0;
        }

        .news-title-wrap {
            display: flex;
            align-items: flex-start;
            margin-bottom: 8px;
        }

        .news-dot {
            flex-shrink: 0;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: var(--primary);
            margin-right: 10px;
            margin-top: 8px;
        }

        .news-title {
            font-size: 20px;
            font-weight: 400;
            line-height: 1.5;
            flex: 1;
            min-width: 0;
            transition: color 0.3s ease;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-desc {
            font-size: 13px;
            line-height: 1.6;
            color: var(--text-desc);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-date {
            flex-shrink: 0;
            font-size: 13px;
            color: var(--text-date);
            white-space: nowrap;
            margin-top: 12px;
            padding-top: 10px;
            border-top: 1px dashed var(--border);
        }

        .news-arrow {
            position: absolute;
            right: 14px;
            bottom: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
        }

        .arrow-icon {
            width: 18px;
            height: 18px;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        /* ---------- 分页（静态展示，不带切换） ---------- */
        .pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 28px;
            gap: 8px;
            flex-wrap: wrap;
        }

        .page-btn {
            min-width: 36px;
            height: 36px;
            padding: 0 12px;
            border: 1px solid #d8e1e3;
            border-radius: 4px;
            background: #fff;
            color: var(--text-desc);
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.25s ease;
            user-select: none;
        }

        .page-btn.disabled {
            opacity: 0.35;
            cursor: not-allowed;
        }

        .page-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            cursor: default;
        }

        .page-btn svg {
            width: 15px;
            height: 15px;
        }

        .page-info {
            font-size: 13px;
            color: var(--text-date);
            margin-left: 12px;
            text-align: center;
        }

        /* ---------- 平板：两列 ---------- */
        @media (max-width: 991.98px) {
            .news-section {
                padding: 30px 0;
            }

            .news-list {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .news-thumb {
                height: 150px;
            }

            .news-title {
                font-size: 15px;
            }

            .page-header h2 {
                font-size: 22px;
            }
        }

        /* ---------- 手机：单列 ---------- */
        @media (max-width: 575.98px) {
            .news-section {
                padding: 20px 0;
            }

            .news-container {
                padding: 0 12px;
            }

            .news-list {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .page-header {
                margin-bottom: 16px;
            }

            .page-header h2 {
                font-size: 18px;
            }

            .news-thumb {
                height: 170px;
            }

            .news-main {
                padding: 14px 14px 12px;
            }

            .news-title-wrap {
                margin-bottom: 6px;
            }

            .news-dot {
                width: 5px;
                height: 5px;
                margin-right: 7px;
                margin-top: 8px;
            }

            .news-title {
                font-size: 15px;
            }

            .news-desc {
                font-size: 13px;
                padding-left: 12px;
            }

            .news-date {
                font-size: 12px;
                margin-top: 10px;
                padding-top: 8px;
            }

            .news-arrow {
                right: 12px;
                bottom: 12px;
                width: 24px;
                height: 24px;
            }

            .arrow-icon {
                width: 16px;
                height: 16px;
            }

            .pagination {
                margin-top: 20px;
            }

            .page-info {
                margin-left: 0;
                width: 100%;
                text-align: center;
            }
        }

        /*news-detail*/
        /* ---------- 面包屑 ---------- */
        .breadcrumb {
            /*display: flex;
            align-items: center;*/
            flex-wrap: wrap;
            font-size: 14px;
            color: var(--text-date);
            margin-bottom: 20px;
        }

        .breadcrumb>a {
            color: var(--text-date);
            text-decoration: none;
           /* transition: color 0.3s ease;*/
        }

        .breadcrumb>a:hover {
            color: var(--primary);
        }
        .breadcrumb a.pmore{
            color: #fff;
        }
        .breadcrumb .sep {
            margin: 0 8px;
            color: #cccccc;
        }

        .breadcrumb .current {
            color: var(--text-title);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            max-width: 50%;
        }

        /* ---------- 文章卡片 ---------- */
        .article {
            background: var(--bg);
            border-radius: 6px;
            padding: 36px 40px;
        }

        .article-title-wrap {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
        }

        .article-dot {
            flex-shrink: 0;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--primary);
            margin: 12px 12px 0 0;
        }

        .article-title {
            font-size: 30px;
            font-weight: 400;
            line-height: 1.5;
            color: var(--text-title);
        }

        .article-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 13px;
            color: var(--text-date);
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 24px;
        }

        .article-cover {
            width: 100%;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 26px;
            background: linear-gradient(135deg, #0fb3bc 0%, #00787f 100%);
        }

        .article-cover img {
            display: block;
            max-width: 100% !important;
            text-align: center;
        }

        .article-body p {
            font-size: 16px;
            /*line-height: 1.9;*/
            color: #3d3d3d;
            /*margin-bottom: 18px;*/
            /*text-align: justify;*/
        }
        .article-body p img{
            text-align: center;
            max-width: 100% !important;
            height: auto !important;
        }

        .article-body p:last-child {
            margin-bottom: 0;
        }

        .article-body h3 {
            font-size: 17px;
            font-weight: 600;
            margin: 26px 0 12px;
            padding-left: 12px;
            border-left: 4px solid var(--primary);
            line-height: 1.4;
        }

        /* ---------- 上一篇 / 下一篇 ---------- */
        .article-adjacent {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            margin-top: 28px;
            padding-top: 22px;
            border-top: 1px solid var(--border);
        }

        .adj-item {
            flex: 1;
            min-width: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
            border: 1px solid var(--border);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .adj-item:hover {
            border-color: rgba(15, 179, 188, 0.5);
            background: #fafcfd;
        }

        .adj-item.next {
            flex-direction: row-reverse;
            text-align: right;
        }

        .adj-label {
            /*flex-shrink: 0;*/
            font-size: 13px;
            /*color: var(--text-date);*/
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .adj-title {
            font-size: 14px;
            color: var(--text-title);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            transition: color 0.3s ease;
        }

        .adj-item:hover .adj-title {
            color: var(--primary);
        }

        .adj-item.empty {
            visibility: hidden;
        }

        /* ---------- 平板 ---------- */
        @media (max-width: 991.98px) {
            .news-section {
                padding: 30px 0;
            }

            .article {
                padding: 28px 26px;
            }

            .article-title {
                font-size: 21px;
            }
        }

        /* ---------- 手机 ---------- */
        @media (max-width: 575.98px) {
            .news-section {
                padding: 20px 0;
            }

            .news-container {
                padding: 0 12px;
            }

            .breadcrumb {
                font-size: 13px;
                margin-bottom: 14px;
            }

            .article {
                padding: 22px 16px;
            }

            .article-title {
                font-size: 19px;
            }

            .article-body p {
                font-size: 14px;
            }

            .article-body h3 {
                font-size: 16px;
            }

            .article-adjacent {
                flex-direction: column;
            }

            .adj-item.empty {
                display: none;
            }
        }