        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            text-decoration: none;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
        }

        body {
           /* background-color: #f5f7fa;*/
            color: #333;
            line-height: 1.6;
        }

        /* 外面盒子 */
        #box {
            /*width: 1500px;*/
            margin: 0 auto;
        }

        .container {
            width: 100%;
            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 .logo {
            height: 80px;
            width: auto;
        }

        .search-box {
            width: 22%;
            height: 45px;
        }

        .search-box a img {
            width: 25px;
            height: auto;
        }

        .search-box span {
            position: relative;
            color: #fff;
            top: -8px;
            cursor: pointer;
        }

        /* 导航菜单 */
        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: 10px;
			
        }

        .nav-menu li {
            width: 10%;
            line-height: 50px;
            text-align: center;
            cursor: pointer;
            float: left;
            transition: all 0.3s;
			position: relative;
        }
.hide{
	display: none;
}
.show{
	display: block;
}
.nav-menu li .sub-menu{
	position: absolute;
	top: 50px;
	left: 0;
	z-index: 99;
}
.nav-menu li .sub-menu li{
	display: block;
	min-width:160px;
}
.menu-item .sub-menu{
	background: #F0F5FF;
}
.menu-item .sub-menu a{
	color: #018AC9;
}
.news-title a{
	font-size: 18px;
}
        .nav-menu li a {
            color: #0D74C2;
            
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: bold;
            padding: 10px 10px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu li:hover {
            background-color: #f0f5ff;
            color: #2c5aa0;
        }

        .nav-menu li:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: #1a3a6c;
        }

        /* 导航栏内容 */
        .nav-menu a {
            color: white;
            text-decoration: none;
            border-radius: 8px;
        }

        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .nnav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(to right, #fdbb2d, #b21f1f);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 80%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 10px;
            transition: all 0.3s ease;
        }

        .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;
        }

        /* 移动端菜单按钮 */
        .hamburger {
            /* display: none; */
            position: absolute;
            top: 6px;
            right: 10px;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 10px;
            transition: all 0.3s ease;
        }

        .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;
        }

        

        /* 主要内容区域 */
        .main {
            width: 98%;
            margin: 20px auto;
            /* background-color: #e0e7ff; */
        }

        .main-content {
            width: 100%;
            display: flex;
            justify-content: space-around;
        }

        .content-block {
            width: 47%;
            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: #72BFE1;
            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;
            justify-content: space-between;
        }
.news-list li a{
            color: #333333;
        }
        .news-list li:last-child {
            border-bottom: none;
        }
		.on{
			background-color: #f0f5ff;
			color: #2c5aa0;
		}
		.sbtn{
	width: 40px;height: 30px; background-color: #28a4c9;border: 0;color: white; cursor: pointer
}
.news-title{
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
        .news-list li .date {
            color: #888;
            font-size: 14px;
            width: 120px;
            text-align: right;
        }

        /* 办事指南 */
        .main_baishi,
        .main_chanron {
            width: 100%;
            padding: 40px 0;
            display: flex;
            justify-content: space-around;
        }

        .main_baishi {
            background: url("../image/办事指南底图色块.png") no-repeat;
            background-size: 100% 100%;
			text-align: center;
        }

        .main_baishi>div {
            width: 8%;
            height: 100px;
			position: relative;
        }

        .main_baishi div a img {
            width: 64%;
            max-height: 74px;
        }

        .main_baishi div a p {
            text-align: center;
			color: #fff;
			text-decoration: none;
			position: absolute;
			bottom: 0;
			width: 100%;
        }

        /* 常用系统入口 */
        .main_chanron {
            background: url("../image/常用系统入口底图.png") no-repeat;
            background-size: 100% 100%;
        }

        .main_chanron div {
            width: 11.5%;
            height: 100px;
			text-align: center;
        }

        .main_chanron div a img {
                width: 64%;
				max-height: 74px;
        }

        .main_chanron div a p {
            text-align: center;
            color: #fff;
        }

        /* 教学培训 */
        .main_yinxian {
            width: 98%;
            margin: 20px auto;
        }

        .yinxian_vi {
            width: 100%;
            display: flex;
            justify-content: space-around;
        }

        .yinxian_vi div {
            width: 30%;
            height: 250px;
            padding: 10px;
            background: url("../image/教学培训.png") no-repeat;
            background-size: 100% 100%;
            color: #fff;
        }

        .yinxian_vi h1 {
            width: 100%;
            text-align: center;
            font-weight: normal;
        }

        .yinxian_vi h3 {
            text-align: center;
            color: #4E99D2;
            font-weight: normal;
            margin-top: 10px;
            margin-bottom: 20px;
        }

        .yinxian_vi p {
            color: #ccc;
            font-size: 16px;
            text-align: center;
        }

        /* 教师风采 */
        .jiaoshi {
            width: 100%;
            height: 450px;
        }

        .jiaoshi .jiaoshi_flae {
            width: 80%;
            height: 100%;
            float: left;
            display: flex;
            background: url("../image/教师风采底图.png") no-repeat;
            background-size: 100% 100%;
        }

        .jiaoshi_flae img {
			float: left;
            height: 100%;
            width: auto;
            object-fit: cover;
        }

        .jiaoshi_txt {
			float: left;
            padding: 50px 60px;

        }

        .jiaoshi_txt h1 {
            color: #fff;
            font-weight: normal;
            margin-bottom: 20px;
        }

        .jiaoshi_txt p {
            margin-bottom: 25px;
            color: #fff;
        }

        .jiaoshi_txt a {
            color: #fff;
        }

        .jiaoshi_right {
            width: 20%;
            height: 100%;
            overflow: hidden;
            float: left;
        }

        .jiaoshi_right img {
            margin-top: 20%;
            width: 90%;
            float: right;
            object-fit: cover;
            height: 80%;
        }

        /* 相关链接 */
        .xianguan {
            width: 100%;
            height: auto;
            display: flex;
        }

        .xianguan .xianguan_flae {
            width: 85%;
            background: url("../image/相关链接-校内外链接底图.png") no-repeat;
            background-size: 100% 100%;
        }

        .xianguan_flae .xianguan_flae_n {
            width: 65%;
            padding-left: 25px;
            padding-top: 25px;
            float: left;
        }

        .xianguan_flae h2 {
            width: 100%;
            line-height: 55px;
            color: #fff;
            border-bottom: 4px solid #fff;
            margin-bottom: 20px;
        }

        .xianguan_flae ul {
            list-style: none;
            width: 100%;
        }

        .xianguan_flae ul li {
            width: 33%;
            float: left;
            line-height: 30px;
        }

        .xianguan_flae ul li a {
            color: #fff;
        }

        .xianguan_flae .xianguan_flae_w {
            width: 35%;
            float: right;
            padding: 25px;
        }

        .xianguan_flae .xianguan_flae_w ul li {
            width: 50%;
        }

        .xianguan_right {
            width: 15%;
            padding: 25px;
            background: url("../image/相关链接-信息查询底图.png") no-repeat;
            background-size: 100% 100%;
        }

        .xianguan_right h3 {
            width: 100%;
            line-height: 55px;
            color: #fff;
            border-bottom: 4px solid #fff;
            margin-bottom: 20px;
        }

        .xianguan_right ul {
            list-style: none;
            width: 100%;
        }

        .xianguan_right ul li {
            width: 43%;
            float: left;
            line-height: 30px;
        }

        .xianguan_right ul li a {
            color: #fff;
        }

        /* 页脚 */
        footer {
            width: 100%;
            height: auto;
            background: url("../image/页尾底图.png") no-repeat;
            background-size: 100% 100%;
            color: white;
            padding: 30px 50px;
            margin-top: 30px;
            position: relative;
            display: flex;
        }

        .footer_logo {
            width: 36%;
        }

        /* 页脚logo */
        .footer_logo img {
            width: auto;
            height: 58px;
        }

        .footer_logo p {
            
            font-size: 14px;
            color: #2c5aa0;
            line-height: 30px;
        }

        /* 手机端显示 */
        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: 38%;
        }

        footer .ew img {
            width: 100%;
            height: auto;
        }

        /* 详情页面 */
        .brief {
            width: 90%;
            margin: 55px auto;
            padding: 40px;
            border: 1px solid #ccc;
        }

        .brief h1 {
            width: 100%;
            color: black;
            text-align: center;
        }

        .brief_ul {
            width: 75%;
            margin: 18px auto;
            margin-bottom: 25px;
            list-style: none;
            display: flex;
        }

        .brief_ul li {
            width: 20%;
            font-size: 14px;
            color: #4e4e4e;
            text-align: center;
        }

        .brief p {
            text-indent: 2em;
            font-size: 18px;
            margin: 20px 0;
        }

        .brief img {
            width: 98.5%;
            height: auto;
            margin: 35px auto;
            display: block;
        }

        /* 响应式设计 */
        @media (max-width: 600px) {
            #box {
                width: 100%;
            }

            .container {
                width: 100%;
            }

            header {
                height: 70px;
                padding: 15px 5px;
            }

            .header-top .logo {
                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);
            }

.swiper-button-prev, .swiper-button-next{
	color: white;
}
.swiper-pagination-bullet-active{
	background: white;
}
 

            /* 内容区域 */
            .main-content {
                width: 95%;
                margin: 0 auto;
                display: block;
            }

            /* 招生动态 */
            .content-block {
                width: 100%;
            }
            /* 标题 */
            .block-header{
                padding: 10px;
            }
            /* 办事指南 */
            .main_baishi,
            .main_chanron {
                flex-wrap: wrap;
            }

            .main_baishi div {
                width: 30%;
                padding: 2%;
				text-align: center;
                margin-bottom: 10px;
            }

            .main_baishi div a img {
                width: 56%;
                text-align: center;
            }

            .main_baishi div a p {
                font-size: 14px;
                margin-left: -16px;
            }

            .main_baishi,
            .main_chanron {
                padding: 25px 0;
            }

            /* 常用系统 */
            .main_chanron div {
                width: 35%;
                margin-bottom: 25px;
            }

            /* 教学培训 */
            .yinxian_vi {
                display: block;
            }

            .yinxian_vi div {
                width: 97%;
            }

            /* 教师风采 */
            .jiaoshi {
                height: 180px;
            }

            .jiaoshi .jiaoshi_flae {
                width: 100%;
            }

            .jiaoshi_txt {
                height: 89%;
                padding: 10px;
                overflow: hidden;
            }

            .jiaoshi_txt h1 {
                font-size: 16px;
            }

            .jiaoshi_txt p,
            a {
                font-size: 12px;
                margin-bottom: 0;
            }

            .jiaoshi_right {
                display: none;
            }

            /* 相关链接 */
            .xianguan {
                flex-wrap: wrap;
            }

            .xianguan .xianguan_flae {
                width: 100%;
            }

            .xianguan_flae .xianguan_flae_n {
                width: 100%;
                float: none;
            }

            .xianguan_flae .xianguan_flae_w {
                width: 100%;
                float: none;
            }

            .xianguan .xianguan_right {
                width: 100%;
            }

            /* 底部 */
            footer {
                margin-top: 0;
                padding: 20px;

            }

            .footer_logo {
                width: 60%;
            }

            .footer_logo img {
                height: 33px;
            }

            footer .ew {
                width: 30%;
                margin-left: 12%;
                margin-top: 48px;
            }

            /* 部门 */
            .filter-group {
                width: 100%;
                margin-bottom: 20px;
            }

            .search-button button {
                margin: 0 auto;
                padding: 10px 20px;
                gap: 0;
            }

            /* 详情 */
            .brief {
                padding: 20px;
            }

            .brief_ul {
                margin: 10px auto;
            }

            .brief_ul li {
                font-size: 4px;
            }

            .brief h1 {
                font-size: 16px;
            }

            .brief img {
                margin: 10px auto;
            }
        }