body {
	min-width: 960px;
	background-color: #fff;
}

html {
	font-size: 62.5%;
}

.container {
	width: 100%;
}

.bannar {
	width: 100%;
	text-align: center;
	height: 250px;
}

.bannar-img {
	width: 100%;
	margin: 0 auto;
}

.bannar img {
	width: 100%;
	display: block;
	height: 250px;
}

/* ===== 一体化 Header ===== */
.site-header {
	background: #fff;
	border-bottom: 1px solid #e4eaf2;
	box-shadow: 0 2px 8px rgba(0, 78, 179, 0.06);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.site-header-inner {
	max-width: 1280px;
	margin: 0 auto;
	height: 64px;
	display: flex;
	align-items: center;
	padding: 0 20px;
}

/* Logo */
.site-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex-shrink: 0;
	margin-right: 30px;
}

.site-logo-icon {
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, #1a6fd4, #004eb3);
	border-radius: 8px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.site-logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.site-logo-name {
	font-size: 18px;
	font-weight: 700;
	color: #004eb3;
	letter-spacing: 1px;
}

.site-logo-sub {
	font-size: 11px;
	color: #888;
	letter-spacing: 0.5px;
}

/* 导航 */
.site-nav {
	flex: 1;
}

.site-nav #nav {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	height: 64px;
	gap: 6px;
}

.site-nav #nav li {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.site-nav #nav li a {
	display: inline-block;
	padding: 6px 24px;
	font-size: 15px;
	color: #444;
	border-radius: 6px;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.site-nav #nav li a:hover {
	background: #eef4fd;
	color: #1a56a0;
}

.site-nav #nav li.active>a {
	background: #dce8fb;
	color: #1a56a0;
	font-weight: 600;
}

.site-nav #nav li.active>a:hover {
	background: #c9daf7;
}

/* 下拉子菜单 */
.site-nav #nav li ul {
	position: absolute;
	display: none;
	z-index: 2222;
	min-width: 120px;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	border: 1px solid #e4eaf2;
	border-radius: 8px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
	padding: 4px 0;
	list-style: none;
}

.site-nav #nav li ul li {
	display: block;
	width: 100%;
}

.site-nav #nav li ul li a {
	border-radius: 0;
	color: #333;
	padding: 9px 16px;
	width: 100%;
	box-sizing: border-box;
	font-size: 14px;
}

.site-nav #nav li ul li a:hover {
	background: #eef4fd;
	color: #1a56a0;
}

.site-nav #nav li:hover>ul {
	display: block;
}

/* 用户区域 */
.site-user {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	margin-left: 20px;
}

.site-user-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	font-size: 14px;
	color: #444;
	border-radius: 6px;
	transition: all 0.2s ease;
	text-decoration: none;
}

.site-user-btn i {
	font-size: 18px;
	color: #888;
}

.site-user-btn:hover {
	background: #eef4fd;
	color: #1a56a0;
}

.site-user-btn:hover i {
	color: #1a56a0;
}

.site-user-btn.logged i {
	color: #004eb3;
}

.site-user-btn.logged span {
	color: #004eb3;
	font-weight: 500;
}

.site-logout {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 6px;
	color: #aaa;
	transition: all 0.2s ease;
	text-decoration: none;
}

.site-logout i {
	font-size: 16px;
}

.site-logout:hover {
	background: #fff0f0;
	color: #e53e3e;
}

.home-top {
	display: flex;
	align-items: stretch;
	max-width: 1280px;
	margin: 0 auto;
	padding: 15px 0;

	height: 350px;
}

.home-top-cat {
	width: 260px;
	flex-shrink: 0;
	background-color: #004eb3;
	margin-right: 0;
	position: relative;
	border-radius: 8px 0 0 8px;
}

.home-top-cat ul {
	list-style: none;
	margin: 0;
	padding: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.home-top-cat ul li {
	flex: 1;
}

.home-top-cat ul li:first-child>a {
	border-radius: 0;
}

.home-top-cat ul li:last-child>a {
	border-radius: 0;
}

.home-top-cat ul li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 18px;
	height: 100%;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	transition: background-color 0.2s;
}

.home-top-cat ul li a:hover {
	background-color: rgba(255, 255, 255, 0.12);
}

.home-top-cat .cat-names {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 1.4;
}

.home-top-cat .cat-arrow {
	font-style: normal;
	font-size: 10px;
	margin-left: 8px;
	opacity: 0.6;
}

.home-top-cat .more-cat a {
	justify-content: flex-start;
	opacity: 0.85;
	font-size: 13px;
}

.home-top-cat .more-cat a:hover {
	opacity: 1;
}

/* flyout 弹出子分类面板 */
.home-top-cat ul li {
	position: relative;
}

.cat-flyout {
	display: none;
	position: absolute;
	left: 100%;
	top: 0;
	width: 660px;
	max-height: 400px;
	overflow: hidden;
	background: #004eb3;
	box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.18);
	border-radius: 0 8px 8px 0;
	padding: 16px 20px;
	z-index: 999;
	box-sizing: border-box;
}

.home-top-cat ul li:hover .cat-flyout {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
	align-items: flex-start;
}

.home-top-cat ul li:hover>a {
	background-color: rgba(255, 255, 255, 0.18);
}

.flyout-group {
	flex: 0 0 100%;
	min-width: 0;
}

.flyout-group-title {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 8px;
	padding-bottom: 4px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	display: block;
	white-space: nowrap;
}

.flyout-group-items {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 4px;
}

.flyout-group-items a {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
	padding: 3px 10px;
	border-radius: 3px;
	text-decoration: none;
	transition: color 0.2s, background 0.2s;
	white-space: nowrap;
	line-height: 1.4;
}

.flyout-group-items a:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.15);
}

.flyout-item {
	display: inline-block;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
	padding: 3px 10px;
	border-radius: 3px;
	text-decoration: none;
	transition: color 0.2s, background 0.2s;
}

.flyout-item:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.15);
}

.home-top .swiper-container {
	flex: 1;
	min-width: 0;
	border-radius: 0;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	overflow: hidden;
}

.home-notice {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 0 10px 0;
	background-color: #f2f2f2;
}

.home-notice .notice-list {
	padding: 0;
}

.home-notice .notice-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #666666;
	font-size: 16px;
	padding: 6px 0;
}

.home-notice .notice-list a {
	color: #666666;
	font-size: 16px;
}

.home-notice .notice-list a:hover {
	color: #0056b3;
}

.swiper-slide {
	/* height: 260px; */
}

.swiper-slide img {
	width: 100%;
	height: 100%;
	/* border-radius: 8px; */
}

.out-wrap {
	max-width: 1280px;
	margin: 20px auto;
}

/* common */
.text-center {
	text-align: center;
}

.font30 {
	font-size: 30px;
}

.font14 {
	font-size: 14px;
}

.font12 {
	font-size: 12px;
}

.font-bold {
	font-weight: bold;
}

.flexbox {
	display: flex;
}

.flex-between {
	justify-content: space-between;
}

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

.align-item-center {
	align-items: center;
}

.paddingT30 {
	padding-top: 30px;
}

.paddingT15 {
	padding-top: 15px;
}

.paddingB15 {
	padding-bottom: 15px;
}

.color-808080 {
	color: #808080;
}

.color-4D4D4D {
	color: #4D4D4D;
}

.paddingB5 {
	padding-bottom: 5px;
}

.paddingT10 {
	padding-top: 10px;
}

.marginT45 {
	margin-top: 45px;
}

.marginT30 {
	margin-top: 30px;
}

.color-757B85 {
	color: #757B85;
}

.ellipsis {
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-all;
	white-space: nowrap;
}

/* steps */
.study-step {
	background-color: #f6f7f9;
	font-size: 15px;
}

.study-step .study-tit-box {
	background: url("../img/study-step-en.png") center no-repeat;
}

.study-step .study-tit-box span {
	padding-top: 15px;
	padding-bottom: 20px;
	background: url("../img/study-step-line.png") bottom no-repeat;
}

.study-step .step-items-box {
	padding: 40px 0 20px 0;
	padding-left: 20px;
	padding-right: 20px;
}

.study-step .step-items-box .items-list {
	position: relative;
}

.study-step .step-items-box .items-list .items {
	width: 120px;
	height: 120px;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.study-step .step-items-box .items-list::after {
	content: "";
	position: absolute;
	width: 78px;
	height: 9px;
	top: 50px;
	left: 150px;
	background: url("../img/step-right.png") left no-repeat;
}

.study-step .step-items-box .items-list:last-child::after {
	width: 0;
}

.study-step .step-items-box .items-list .items .circle {
	width: 100px;
	height: 100px;
	background-color: #ebf1ff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.study-step .step-items-box .items-list .items .circle img {
	width: 60px;
}

.job-list {
	/* padding: 20px 0; */
}

.job-list-title {
	font-size: 20px;
	color: #212529;
}

.job-list-title a:hover {
	color: #004eb3;
}

.job-list-title img {
	max-height: 30px;
}

.list-box {
	overflow: hidden;
	margin-right: -15px;
	margin-left: -15px;
	padding-bottom: 5px;
}

.list-item {
	flex: 0 0 22.7%;
	max-width: 25%;
	padding: 0 15px;
}

.list-item .list-item_wrapper {
	box-shadow: 0 0 5px #d3d3d3bf;
	border-radius: 5px;
	display: block;
}

.list-item-top {
	padding: 40px 0 15px 15px;
	border-radius: 5px;
}

.list-item .items-info {
	padding: 10px;
}

.now-buy {
	border: 1px solid #007bff;
	line-height: 30px;
	border-radius: 15px;
	padding: 0 3px 0 10px;
}

.word {

	overflow: hidden;
}

.word2 {
	overflow: hidden;
}

.list {
	float: left;
	width: 50%;
	box-sizing: border-box;
	padding-right: 10px;
	padding-bottom: 10px;
}

.list ul {
	background: #fff;
}

.list .left {
	float: left;
	width: 60%;
	background: #fff;
	height: 100%;
}

.list .left form {
	padding: 13px 20px;
}

.list .left form div {
	padding: 8px 0;
}

.list .left form h2 {
	text-align: center;
	font-size: 18px;
}

.list .left form .ww {
	float: left;
	width: 50px;
	line-height: 37px;
}

.list .left form .mf {
	margin-left: 50px;
}

.list .left form .tt {
	border: 1px solid #ddd;
	padding: 10px;
	width: 100%;
}

.list .left form .mimi span:fill-child {
	float: left;
}

.list .left form .mimi input[type="checkbox"] {
	vertical-align: middle;
}

.list .left form .mimi span:last-child {
	float: right;
}

.list .left form .tijiao {
	padding: 32px 0;
}

.list .left form .tijiao .login-submit {
	float: left;
	background: #33a5ca;
	border-radius: 5px;
	width: 40%;
	font-size: 18px;
	color: #fff;
	padding: 5px 0;
	cursor: pointer;
}

.list .left form .tijiao .login-submit:hover {
	background: #0d7192;
}

.list .left form .tijiao .login-register {
	float: right;
	border: 1px solid #e1f2f7;
	border-radius: 5px;
	width: 40%;
	font-size: 18px;
	color: #333;
	padding: 5px 0;
	cursor: pointer;
}

.list .left form .tijiao .login-register:hover {
	background: #33a5ca;
	color: #fff;
}

.list .left form .yanz-put {
	width: 50%;
	display: inline-block;
}

.list .left form .yanz-img {
	margin-left: 2%;
	width: 48%;
	height: 100%;
	vertical-align: middle;
	cursor: pointer;
}

.list .right {
	background: #fff;
	float: right;
	width: 38%;
}

.list .right div {
	padding-top: 30px;
	width: 96%;
	margin: 15px auto;
}

.list .right div a {
	display: block;
	width: 100%;
	text-align: center;
}

.list .right div a img {
	width: 100%;
	transition: transform 0.25s ease;
}

.list .right div a img:hover {
	transform: scale(1.05);
}

.list:nth-of-type(2n) {
	padding-right: 0;
}

.list h3 {
	height: 35px;
	line-height: 35px;
	background-color: #004EB3;
	color: #fff;
	font-size: 1.6rem;
	padding-left: 10px;
	font-weight: 500;
}

.list ul li {
	padding: 0 13px;
	border-bottom: 1px solid #dedddd;
	overflow: hidden;
	transition: transform 0.25s ease;
}

.list ul li:hover {
	transform: scale(0.99);
	box-shadow: 0 0 5px rgba(0, 0, 0, .1);
	cursor: pointer;
}

.list ul li a {
	display: inline-block;
	font-size: 14px;
	color: #727171;
	float: left;
	height: 35px;
	line-height: 35px;
	font-size: 14px;
	text-align: left;
}

.list ul li time {
	display: inline-block;
	float: right;
	height: 35px;
	line-height: 35px;
	font-size: 14px;
	color: #727171;
	margin-right: 13px;
}

.lc {
	margin-top: 20px;
	height: 100px;
	width: 100%;
	background: url("../img/lc.png") left top no-repeat;
}

.lc ul {
	width: 100%;
	padding-left: 25%;
	box-sizing: border-box;
	overflow: hidden;
	padding-top: 10px;
}

.lc ul li {
	float: left;
	width: 20%;
}

.lc ul li span {
	margin: 0 36px;
}

.lc img {
	vertical-align: middle;
}

.job {
	padding-top: 20px;
	overflow: hidden;
}

.job div h3 {
	height: 35px;
	line-height: 35px;
	padding-left: 10px;
	font-size: 1.6rem;
	font-weight: 500;
	background: #004eb3;
	color: #fff;
}

.job div {
	width: 32%;
	float: left;
	margin-left: 2%;
	box-sizing: border-box;
	background: #fff;
}

.job div:nth-of-type(1) {
	margin-left: 0;
}

.job li {
	padding: 10px;
	transition: transform 0.5s ease;
}

.job li:hover {
	transform: scale(0.99);
	box-shadow: 0 0 5px rgba(0, 0, 0, .1);
	cursor: pointer;
}

.job a {
	display: block;
	overflow: hidden;
}

.job img {
	float: left;
}

.job img {
	width: 80px;
	height: 80px;
}

.job .article {
	margin-left: 110px;
	display: block;
}

.job .title {
	font-size: 16px;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;

}

.job .title,
.job .text {
	display: block;
}

.job .text {
	font-size: 1.4rem;
	word-wrap: break-word;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.youlian {
	padding-top: 50px;
}

.youlian h1 {
	text-align: center;
	font-size: 2.8rem;
}

.youlian ul {
	overflow: hidden;
}

.youlian li {
	width: 24%;
	float: left;
	margin-left: 1.3%;
	margin-bottom: 10px;
	box-sizing: border-box;
	padding-top: 15px;
}

.youlian li:nth-of-type(1) {
	margin-left: 0;
}

.youlian li:nth-of-type(5) {
	margin-left: 0;
}

.youlian li:nth-of-type(9) {
	margin-left: 0;
}

.youlian li a {
	padding: 15px;
	display: block;
	overflow: hidden;
	border: 1px solid #ddd;
	background: #fff;
}

.youlian li img {
	float: left;
}

.youlian li img {
	width: 60px;
	height: 60px;
}

.youlian li .article {
	margin-left: 80px;
	margin-top: 10px;
	display: block;
}

.youlian li .title {
	font-size: 16px;
	color: #333;
}

.youlian li .title,
.youlian li .text {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

footer {
	width: 100%;
	padding: 20px 0;
	background: #004EB3;
	color: #fff;
}

footer p {
	font-size: 1.4rem;
	text-align: center;
	padding: 5px 0;
}

.footer-links {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 10px !important;
	margin-bottom: 4px;
}

.footer-links-label {
	color: rgba(255, 255, 255, 0.85);
}

.footer-links a {
	color: #fff;
	text-decoration: none;
}

.footer-links a:hover {
	text-decoration: underline;
	color: #cde4ff;
}

.footer-links-sep {
	margin: 0 8px;
	color: rgba(255, 255, 255, 0.4);
}

.learn {
	background: #33a5ca;
}

.clear {
	clear: both;
}

.wechat {

	width: 200px;
	position: fixed;
	right: 1%;
	top: 40%;
	z-index: 9;
}

.wechat p {
	width: 100%;
	text-align: center;
	font-size: 18px;
	line-height: 24px;
	background: #fff;
}

.wechat img {

	width: 200px;
	height: 200px;
}

.close {
	background: #fff;
	color: #000;
	border-radius: 12px;
	line-height: 20px;
	text-align: center;
	height: 20px;
	width: 20px;
	font-size: 18px;
	padding: 1px;
	top: 0;
	right: 0;
	position: absolute;
}

.close::before {
	content: "\2716";
}