        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
        }

        body {
           /* background-color: #f5f7fa;*/
            color: #333;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
        }
.news-title{
	text-align: left;
}
        .sbtn {
            width: 80px;
            height: 30px;
            background-color: #28a4c9;
            border: 0;
            color: white;
            cursor: pointer
        }

        /* 外面盒子 */
        #box {
            margin: 0 auto;
        }

        .container {
            width: 1500px;
            max-width: 100%;
            margin: 0 auto;
        }

        /* 头部样式 */
        header {
            height: 160px;
            width: 100%;
            background: url("../image/页首01.png") no-repeat;
            background-size: 100% 100%;
            padding: 25px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-top {
            width: 95%;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-top img {
            height: 80px;
            width: auto;
        }

        .search-box {
            width: 25%;
            height: 45px;
        }

        .search-box .search_box_input {
            width: 80%;
            height: 34px;
            float: right;
            background-color: #1a3a6c;
            border: 1px solid #fff;
            border-radius: 2px 0 0 4px;
            margin-bottom: 10px;
        }

        .search_box_input input {
            border: none;
            float: left;
            border-radius: 2px 0 0 2px;
            width: 82%;
            height: 100%;
            line-height: 28px;
            text-indent: 1em;
        }

        .search_box_input a img {
            height: 100%;
            width: auto;
        }

        .search-box p {
            float: right;
            font-size: 12px;
            color: #fff;
        }

        /* 导航菜单 */
        nav {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .nav-menu {
            width: 95%;
            margin: 0 auto;
            list-style: none;
            display: flex;
            gap: 30px;
        }

        .nav-menu li {
            width: 10%;
            line-height: 50px;
            text-align: center;
            cursor: pointer;
            float: left;
            transition: all 0.3s;
        }

        .nav-menu li a {
            color: #4E99D2;
            
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: bold;
            padding: 10px 15px;
            transition: all 0.3s ease;
            position: relative;
        }
.nav_level a{
	font-weight: normal !important;
}
        .nav-menu li:hover {
            background-color: #f0f5ff;
        }
        /* 二级栏目 */
        .nav_level {
            display: none;
            position: absolute;
            z-index: 500;
            background-color: #ccc;
        }
         .nav_level ul {
            width: 131.67px;
            list-style: none;
        }
        /* nav_level */
        .nav_level ul li{
            width: 100%;
            height: 38px;
            line-height: 38px;
        }
        .nav-menu li:hover .nav_level {
            display: block;
        }
        .nav-menu ul li:hover{
            background-color: #f0f5ff;
        }
        /* 移动端菜单按钮 */
        .hamburger {
            display: none;
            position: absolute;
            top: 6px;
            right: 20px;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 10px;
            transition: all 0.3s ease;
        }


		.yinxian_vi div img{
			width: 100%;
			height: 100%;
		}

        .hamburger:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .hamburger .line {
            width: 30px;
            height: 3px;
            background: white;
            margin: 5px 0;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* 轮播图 */
        #Carousel {
            margin-top: 51px;
            width: 100%;
            height: 450px;
            background: url('../image/滚动栏底图.png') no-repeat;
            background-size: 100% 100%;
        }

        .slider-container {
            position: relative;
            top: 0;
            left: 2%;
            width: 96%;
            height: 450px;
            overflow: hidden;
        }

        .slider-wrapper {
            position: absolute;
            width: 500%;
            height: 100%;
            transition: transform 500ms ease;
            display: flex;
        }

        .slider-item {
            flex-basis: 100%;
            height: 100%;
        }

        .slider-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slider-dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }

        .slider-dot {
            display: block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: #fff solid 2px;
            margin: 0 10px;
            cursor: pointer;
        }

        .slider-dot.active {
            background-color: #fff;
        }

        .slider-prev,
        .slider-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            font-weight: bold;
            color: #333;
            background-color: transparent;
            border: none;
            cursor: pointer;
            outline: none;
            display: none;
        }

        .slider-prev {
            left: 20px;
        }

        .slider-next {
            right: 20px;
        }

        /* 主要内容区域 */
        /* .container {
            width: 100%;
        } */

        .main {
            width: 100%;
            margin: 20px auto;
            /* background-color: #e0e7ff; */
        }

        .main-content {
            width: 100%;
            display: flex;
            justify-content: space-between;
        }

        .content-block {
            width: 48%;
            margin-bottom: 20px;
        }

        .block-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 15px;
            border-bottom: 2px solid #2c5aa0;
            margin-bottom: 15px;
        }

        .block-title {
            display: flex;
            align-items: center;
        }

        .block-title h2 {
            font-size: 20px;
            color: #2c5aa0;
            font-weight: bold;
        }

        .block-title .en {
            font-size: 14px;
            color: #888;
            margin-left: 10px;
        }

        .more-link {
            color: #28a4c9;
            text-decoration: none;
            font-size: 14px;
        }

        .more-link:hover {
            text-decoration: underline;
        }

        /* 新闻列表 */
        .news-list {
            list-style: none;
        }

        .news-list li {
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
            display: flex;
            
        }

        .news-list li:last-child {
            border-bottom: none;
        }
   .news-list li .news-title{
	   flex-grow: 1;
   }
   
        .news-list li .date {
            color: #888;
            font-size: 14px;
            min-width: 70px;
            text-align: right;
			flex-shrink:0;
        }

        .news-title a {
            color: #363636;
			font-size: 18px;
        }


        /* 印象广财 */
        .main_yinxian {
            width: 100%;
            margin-bottom: 20px;
        }

        .yinxian_vi {
            width: 100%;
            display: flex;
            justify-content: space-around;
        }

        .yinxian_vi div {
            width: 30%;
            height: 250px;
            background-color: #2c5aa0;
        }

        /* 教师风采 */
        .teacher-feature {
            width: 100%;
            height: 280px;
            display: flex;
            margin-top: 20px;
        }

        .teacher-img {
            /*width: 50%;*/
            height: 280px;
        }

        .teacher-img img {
            width: 100%;
            height: 100%;
        }

        .teacher-info {
            width: 50%;
            /* padding-top: 30px; */
            padding: 30px 5%;
        }
.teacher-info h3{
	font-size: 18px;
	text-align: left;
}
        .teacher-info p {
            color: #666;
            margin-bottom: 10px;
            font-size: 14px;
            line-height: 1.6;
			text-align: left;
        }
		.swiper2 .swiper-pagination{
			text-align: right;
		}
		.swiper2 .swiper-pagination-bullet {
			width: 24px; /* 分页器每个点的宽度 */
			height: 4px; /* 分页器每个点的高度 */
			border-radius: 0; /* 移除圆角 */
			background: #000000; /* 背景颜色 */
			opacity: 0.2; /* 默认透明度 */
		}
		 
		.swiper2 .swiper-pagination-bullet-active {
			background: #2c5aa0; /* 激活时的背景颜色 */
			opacity: 1; /* 激活时的透明度 */
		}
        .read-more {
            color: #28a4c9;
            text-decoration: none;
            font-size: 14px;
            float: right;
            margin-top: 10px;
        }

        /* 友情链接 */
        .friend-links {
            width: 100%;
            display: flex;
            margin-top: 15px;
        }

        .link-group {
            flex: 1;
            min-width: 200px;
        }

        .link-group ul {
            list-style: none;
        }

        .link-group li {
            width: 18%;
            line-height: 25px;
            height: 25px;
            margin-bottom: 8px;
            float: left;
        }

        .link-group .la a {
            color: #1a3a6c;

        }

        .link-group a {
            color: #555;
            text-decoration: none;
            font-size: 14px;
        }

        .link-group a:hover {
            color: #ff6b00;
            text-decoration: underline;
        }

        /* 页脚 */
        footer {
            width: 100%;
            background: url("../image/页尾.png") no-repeat;
            background-size: 100% 100%;
            color: white;
            padding: 30px 50px;
            margin-top: 30px;
            display: flex;
            position: relative;
        }

        /* 页脚logo */
        .footer_logo img {
            width: auto;
            height: 70px;
        }

        .footer_text {
            width: 40%;
            margin-left: 10%;
        }

        .footer_text h4 {
            margin-bottom: 5%;
        }

        .footer_text p {
            font-size: 14px;
            line-height: 25px;
        }

        footer .footer_p {
            display: none;
            width: 100%;
            line-height: 15px;
            text-align: center;
            color: #fff;
            float: left;
            bottom: 20px;
            position: absolute;
        }

        footer .ew {
            width: 18%;
            /* margin-left: 25%; */
        }

        footer .ew img {
            width: 100%;
            height: auto;
        }

        /* 简介 */
        .brief {
            width: 90%;
            margin: 20px auto;
            padding: 30px;
            border: 1px solid #ccc;
        }

        .brief h1 {
            width: 100%;
            color: #333333;
            text-align: center;
        }

        .brief_ul {
            width: 75%;
            margin: 15px auto;
            list-style: none;
            display: flex;
        }

        .brief_ul li {
            width: 20%;
            font-size: 14px;
            color: gray;
            text-align: center;
        }

        .brief p {
            text-indent: 2em;
            font-size: 18px;
            margin: 10px 0;
        }

        /* 响应式设计 */
        @media (max-width: 600px) {
            #box {
                width: 100%;
            }

            .container {
                width: 100%;
            }

            header {
                height: 70px;
                padding: 15px 5px;
            }

            .header-top img {
                height: 38px;
            }

            .search-box {
                display: none;
            }

            /* 导航栏模块 */
            .nav-menu {
                position: absolute;
                left: 0;
                right: 0;
                width: 100%;
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                gap: 0;
                clip-path: circle(0px at top right);
                transition: clip-path 0.6s ease-in-out;
                z-index: 1000;
            }

            nav .nav-menu li {
                width: 100%;
                display: block;
                line-height: 52px;
            }

            nav .nav-menu li {
                background: rgba(0, 0, 0, 0.5);
            }

            .nav-menu.open {
                clip-path: circle(1500px at top right);
            }

            .hamburger {
                display: block;
                z-index: 200;
            }

            .hamburger.active .line:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active .line:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .line:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }
            /* 二级栏目 */
            .nav-menu li:hover .nav_level{
                display: none;
            }
            /* 轮播图 */
            #Carousel {
                margin-top: 0;
                height: 200px;
            }

            .slider-container {
                left: 0;
                width: 100%;
                height: 100%;
            }

            /* 标题 */
            .main_yinxian {
                width: 95%;
                margin: 0 auto;
            }

            /* 内容区域 */
            .main-content {
                width: 95%;
                margin: 0 auto;
                display: block;
            }

            /* 印象广财 */
            .yinxian_vi div {
                height: 125px;
            }

            /* 教师风采 */
            .teacher-feature {
                height: 180px;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .teacher-img {
                height: 100%;
            }

            .teacher-info {
                padding: 0;
            }

            .teacher-info h3 {
                font-size: 18px;
            }

            /* 友情链接 */
            .link-group li {
                width: 100%;
                text-align: center;
            }

            /* 底部 */
            footer {
                margin-top: 0;
                padding: 20px 20px 40px 20px;

            }

            .footer_logo img {
                height: 33px;
            }

            footer .ew {
                width: 20%;
                margin-left: 12%;
            }

            .footer_text {
                display: none;
            }

            footer .footer_p {
                font-size: 6px;
                display: block;
                bottom: 5px;
            }

            .content-block {
                width: 100%;
            }

            /* 走进财院 */
            .filter-group {
                width: 100%;
                margin-bottom: 20px;
            }

            .search-button button {
                margin: 0 auto;
                padding: 10px 20px;
                gap: 0;
            }

            /* 招生信息 */
            .brief_ul li {
                font-size: 4px;
            }
        }