/* 头部 */
.header {
	height: 64px;
	position: sticky;
	top: 0;
	z-index: 999;
}

#J_sms_code[disabled] {
	cursor: not-allowed;
	opacity: .65;
}

.btn-accent-rounded {
	background-color: #FF8C00;
	border-radius: 16px;
	color: #fff !important;
	padding: 0 24px;
	display: block;
	line-height: 32px !important;
	max-height: 32px;
}

.btn-accent-rounded:hover {
	opacity: .65;
}

.head {
	height: 100%;
}

.head-left {
	width: calc(100% - 95px);
}

.logo img {
	height: 42px;
}

.nav {
	margin: 10px 0 0 40px;
}

.nav>a {
	margin: 0 17px;
	border-bottom: 4px solid transparent;
	line-height: 50px;
	transition: all .3s;
}

.nav>a:hover {
	color: #D83B3B;
}

.nav>a.current {
	border-bottom: 4px solid #D83B3B;
	color: #D83B3B;
}

.head-right {
	width: 84px;
	height: 30px;
	border: 1px solid #F08F8F;
	border-radius: 8px;
	color: #E52E2E;
	transition: all .3s;
}

.head-right:hover {
	border: 1px solid #E52E2E;
	background-color: #E52E2E;
	color: #ffffff;
}

.login-user {
	width: 40px;
	height: 40px;
	position: relative;
}

.login-user .avatar {
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background-image: url('/skin/images/avatar.png');
	background-size: cover;
	overflow: hidden;
}

.login-user .avatar>img {
	width: 100%;
	min-height: 100%;
}

.login-user .user-btns {
	display: none;
	padding-top: 40px;
	position: absolute;
	right: 0;
	top: 15px;
	z-index: 998;
}

.login-user .btns-list {
	width: 104px;
	height: 94px;
	box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
	border-radius: 8px;
	position: relative;
}

.login-user .user-btns a {
	font-size: 16px;
	color: #2D2D2D;
	margin-top: 12px;
}

.login-user .user-btns a:first-child {
	margin-top: 0;
}

.login-user .user-btns a:hover {
	color: #D83B3B;
	font-weight: bold;
	text-decoration: underline;
	border: transparent;
}


.login-user .btns-list::after,
.login-user .btns-list::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background-color: #FFFFFF;
	transform: rotateZ(-45deg);
	box-shadow: 3px 0px 10px 1px rgba(0, 0, 0, 0.3);
	position: absolute;
	right: 8px;
	top: -2px;
	z-index: -1;
}

.login-user .btns-list::before {
	box-shadow: none;
	z-index: 99;
}

.login-user:hover .user-btns {
	display: block;
}

/* 尾部 */
.footer {
	padding: 60px 0;
}

.applet-code {
	width: 120px;
	text-align: center;
	font-weight: bold;
	margin-right: 80px;
}

.applet-code img {
	width: 120px;
	border-radius: 100%;
	margin-top: 20px;
}

.foot-info .btn {
	width: 40px;
	height: 40px;
	border: 1px solid #FFFFFF;
	border-radius: 100%;
	transition: all .3s;
	position: relative;
}

.foot-info .btn:hover {
	border: 1px solid #f66c6c;
}

.foot-info .btn:nth-of-type(1) {
	margin-right: 12px;
}

.foot-info .btn:nth-of-type(1):hover {
	border: 1px solid #8bf148;
}

.foot-info .btn>img {
	width: 20px;
	filter: grayscale(100%) brightness(10);
}

.foot-info .btn:hover>img {
	filter: none;
}

.wechat-code {
	width: 220px;
	height: 220px;
	opacity: 0;
	position: absolute;
	top: -236px;
	left: 50%;
	z-index: -99;
	transform: translateX(-50%);
	transition: all .3s;
}

.foot-info .btn>ins {
	width: 0;
	height: 0;
	border-top: 8px solid #FFFFFF;
	border-bottom: 8px solid transparent;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	position: absolute;
	opacity: 0;
	left: 50%;
	top: -16px;
	z-index: -99;
	transform: translateX(-50%);
	transition: all .3s;
}

.foot-info .btn:hover>.wechat-code,
.foot-info .btn:hover>ins {
	opacity: 1;
	z-index: 99;
}

.wechat-code>img {
	width: 210px;
	height: 210px;
}

.foot-info .info {
	margin-top: 35px;
}

.foot-info .info p {
	margin-top: 10px;
}

.foot-right .btns p {
	display: flex;
	align-items: center;
	cursor: pointer;
	margin-bottom: 88px;
}

.foot-right .btns p::after {
	content: "|";
	font-size: 12px;
	margin: 0 10px 2px;
}

.foot-right .btns p:last-child::after {
	display: none;
}

.copyright {
	line-height: 1.8;
}

.copyright a {
	color: #FFFFFF;
}

/* 公共弹窗 */
.pull-pop {
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, .3);
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -999;
	transition: all .3s;
}

.pull-pop .content {
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
	position: relative;
}

.pull-pop .close-btn {
	width: 12px;
	height: 12px;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 9;
}

.pull-pop.show {
	opacity: 1;
	z-index: 999;
}

/* 登录弹窗 */
.login-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 340px;
}

.login-logo {
	height: 45px;
	margin: 20px 0;
	text-align: center;
}

.login-logo img {
	height: 100%;
}

.login-title p {
	font-size: 12px;
	margin: 0 20px;
}

.login-title span {
	color: #D83B3B;
	margin-right: 4px;
}

.login-title::before,
.login-title::after {
	content: "";
	width: 72px;
	height: 1px;
	background-color: #dcdfe6;
}

.login-img {
	width: 100px;
	height: 100px;
	border-radius: 100%;
	border: 1px solid #62c133;
	margin: 30px auto 0;
}

.login-img>img {
	width: 60px;
	height: 60px;
}

.login-tips {
	display: block;
	text-align: center;
	width: 100%;
	padding: 10px 0;
	border-bottom: 1px solid #dcdfe6;
	transition: all .3s;
}

.login-tips:hover {
	color: #D83B3B;
	text-decoration: underline;
}

.login-check-box {
	padding: 20px 0;
	font-size: 12px;
	color: #999999;
}

input[type="checkbox"] {
	display: inline-block;
	vertical-align: middle;
	width: 12px;
	height: 12px;
	border-radius: 4px;
	border: 0;
	margin-right: 8px;
	overflow: hidden;
	position: relative;
}


input[type="checkbox"]::before {
	content: "";
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #FFFFFF;
	width: 100%;
	height: 100%;
	border: 1px solid #dcdfe6;
}


input[type="checkbox"]:checked::before {
	content: "";
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	border: 2px solid #D83B3B;
	background-color: #D83B3B;
	background-image: url('/skin/images/icon/icon-checked.png');
	background-size: contain;
}

.login-check-box p>a {
	color: #999999;
	transition: all .3s;
}

.login-check-box p>a:hover {
	color: #D83B3B;
}


/* 隐私条款 */
.pop-content {
	width: 800px;
	min-height: 360px;
	max-height: 500px;
	padding: 0 24px;
	margin: 20px 0;
	overflow-y: auto;
}

.pop-content::-webkit-scrollbar {
	width: 0;
	height: 0;
	opacity: 0;
}

.pop-title {
	display: flex;
	align-items: center;
	height: 55px;
	padding: 0 24px;
	font-size: 16px;
	color: #010101;
	border-bottom: 1px solid #dcdfe6;
}

.pop-title>em {
	display: flex;
	align-items: center;
	color: #E52E2E;
}

.pop-title>em::before {
	content: "";
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 100%;
	background-color: #010101;
	margin: 0 4px;
}

/* 问题反馈 */
.pop-content-form {
	width: 708px;
	padding: 16px 52px 20px;
	margin: 0;
}

.pop-item {
	margin-top: 16px;
	position: relative;
}

.pop-item span {
	width: 84px;
	line-height: 32px;
}

.pop-item .text-count {
	display: flex;
	align-items: center;
	font-size: 13px;
	color: #D1D1D1;
	position: absolute;
	right: 9px;
	bottom: 7px;
	z-index: 9;
}

.pop-item .text-count>ins {
	font-size: 12px;
	text-decoration: none;
	margin: -2px 1px 0;
}

.pop-item input,
.pop-item textarea {
	width: calc(100% - 84px);
	height: 32px;
	padding: 0 12px;
	border: 1px solid #dcdfe6;
	border-radius: 4px;
}

.pop-item textarea {
	height: 185px;
	padding: 5px 12px;
	line-height: 1.8;
}

.pop-item input::placeholder,
.pop-item textarea::placeholder {
	color: rgba(0, 0, 0, .3);
}

.pop-foot {
	height: 52px;
	padding: 0 24px;
	border-top: 1px solid #dcdfe6;
	margin-top: 30px;
}

.pop-foot>button {
	width: 65px;
	height: 32px;
	border-radius: 4px;
	font-size: 14px;
	background-color: #F66C6C;
}

.pop-foot .cancel-btn {
	margin-right: 8px;
	color: rgba(0, 0, 0, .65);
	border: 1px solid #dcdfe6;
	background-color: transparent;
}

/* 提交成功 */
.confirm-box {
	height: 190px;
	width: 507px;
}

.confirm-title img {
	height: 38px;
	margin-right: 15px;
}

.confirm-title span {
	font-size: 20px;
}

.confirm-tips {
	font-size: 14px;
	color: #AAAAAA;
	margin-top: 24px;
}

.confirm-tips>em {
	color: #6C87C7;
}

/* 搜索 */
.search {
	height: 700px;
	background-size: auto 100%;
	background-position: center 100%;
}

.search-other {
	height: 344px;
}

.search .title {
	font-size: 48px;
	font-weight: bold;
	text-shadow: 0 3px 6px rgba(0, 0, 0, .55);
}

.search .list-title {
	font-size: 36px;
	font-weight: normal;
}

/* 搜索 */
.search-card {
	width: 956px;
	background: rgba(0, 0, 0, .6);
	border-radius: 6px;
	margin: 50px 0 25px;
	padding: 20px;
}

.search-card-list {
	width: 720px;
	background: none;
	margin: 0 auto;
	padding: 0;
}

/* 搜索类别 */
.radio-btns>label {
	display: flex;
	align-items: center;
	margin-right: 30px;
	cursor: pointer;
	transition: all .3s;
}

input[type=radio] {
	display: none;
}

input[type=radio]+label {
	font-size: 16px;
}

input[type=radio]+label::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid #FFFFFF;
	background-color: #FFFFFF;
	font-size: 16px;
	margin-right: 8px;
}

input[type=radio]:checked+label::before {
	background-color: #D83B3B;
}

/* 搜索框 */
.search-input {
	height: 50px;
	margin-top: 16px;
}

.search-input input {
	width: calc(100% - 160px);
	height: 100%;
	background-color: #FFFFFF;
	color: #606060;
	font-size: 16px;
	padding: 0 15px;
	border-radius: 8px;
}

.search-input-list {
	border: 1px solid #D83B3B;
}

.search-input-list input {
	width: calc(100% - 136px);
	border-radius: 0;
	font-size: 14px;
}

.search-input input::placeholder {
	color: #AAAAAA;
}

.search-input button {
	width: 136px;
	height: 100%;
	background-color: #D83B3B;
	color: #FFFFFF;
	font-size: 16px;
	border-radius: 8px;
	cursor: pointer;
}

.search-input-list button {
	border-radius: 0;
}

.search-list {
	font-size: 14px;
	margin-top: 15px;
}

.search-list span {
	margin-right: 15px;
	cursor: pointer;
}

.search-list span:last-child {
	margin-right: 0;
}

/* 轮播图 */
.banner {
	margin-top: 24px;
	position: relative;
}

.banner .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	margin: 0 6px !important;
	background-color: #ffffff;
	opacity: 1;
}

.banner .swiper-pagination-bullet-active {
	background-color: #F66C6C;
}

/* 快捷导航 */
.fast-nav {
	margin-top: 4px;
}

.fast-nav .item {
	width: calc(100%/3 - 12px);
	height: 300px;
	margin: 20px 18px 0 0;
	overflow: hidden;
	position: relative;
	transition: all .2s;
}

.fast-nav .item:nth-of-type(3n) {
	margin-right: 0;
}

.fast-nav .item img {
	width: 100%;
	min-height: 100%;
}

.fast-nav .item h2 {
	width: 100%;
	height: 159px;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.75) 0%, rgba(66, 66, 66, 0.21) 72%, rgba(91, 91, 91, 0) 100%);
	font-size: 32px;
	color: #ffffff;
	font-weight: normal;
	padding: 78px 32px 0;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}

.fast-nav .item h2::after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 44px;
	height: 44px;
	background-image: url('/skin/images/icon/icon-arrow-right.png');
	background-size: cover;
	margin: 0 4px 2px 0;
}

.fast-nav .item:hover {
	/* transform: translateY(-8px); */
}

/* 宣传 */
.publicize {
	margin-top: 24px;
}

.publicize-img {
	width: 56%;
	height: 482px;
	overflow: hidden;
	position: relative;
}

.publicize-img img {
	width: auto;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

.publicize-txt {
	width: 44%;
	height: 482px;
	padding: 52px;
}

.publicize-txt .btn {
	width: 200px;
	height: 44px;
	background: linear-gradient(90deg, #EC1C1C 0%, #E52E2E 33%, #F55D24 100%);
	border-radius: 12px;
	font-size: 16px;
	font-weight: bold;
}

.publicize-txt h2 {
	font-size: 30px;
	color: #000000;
}

.publicize-txt p {
	font-size: 16px;
	color: rgba(0, 0, 0, .6);
	margin: 30px 0;
}

.publicize-txt .btn>em {
	transform: translateX(8px) scaleY(1.4);
	transition: all .3s;
}

.publicize-txt .btn:hover em {
	transform: translateX(12px) scaleY(1.4);
}

/* 进度&经验 */
.speed-and-experience {
	margin-top: 24px;
	height: 450px;
}

.speed,
.experience {
	width: 448px;
	height: 100%;
	padding: 10px 30px;
}

.speed .title,
.experience .title {
	font-size: 24px;
	color: #010101;
	font-weight: bold;
	border-bottom: 1px solid #E8E8E8;
	margin-bottom: 16px;
	padding: 6px 0 8px;

}

.speed-list {
	border-spacing: 0;
}

.speed-list tr {
	display: flex;
	align-items: center;
	height: 46px;
	text-align: center;
	color: #707070;
	font-size: 16px;
}

.speed-list tr.table-head {
	background-color: rgba(225, 32, 32, 0.13);
	height: 39px;
	color: #D83B3B;
	margin-bottom: 4px;
	font-weight: bold;
}

.speed-list tr>th:nth-of-type(1),
.speed-list tr>td:nth-of-type(1) {
	width: 117px;
}

.speed-list tr>th:nth-of-type(2),
.speed-list tr>td:nth-of-type(2) {
	width: 57px;
}

.speed-list tr>th:nth-of-type(3),
.speed-list tr>td:nth-of-type(3) {
	width: 107px;
}

.speed-list tr>th:nth-of-type(4),
.speed-list tr>td:nth-of-type(4) {
	width: 80px;
}

.speed-list tr>td {
	display: inline-block;
	padding: 0 2px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.experience {
	width: calc(100% - 468px);
}

.experience .item {
	height: 104px;
	margin-bottom: 18px;
	transition: all .3s;
}

.experience .item:last-child {
	margin-bottom: 0;
}

.experience .img {
	width: 156px;
	height: 100%;
	overflow: hidden;
}

.experience .img img {
	width: 100%;
	min-height: 100%;
	transition: all .3s;
}

.experience .txt {
	width: calc(100% - 176px);
}

.experience h3 {
	color: #2D2D2D;
	font-size: 18px;
	font-weight: normal;
	transition: all .3s;
}

.experience p {
	font-size: 12px;
	color: #818181;
	margin-top: 12px;
}

.experience .item:hover {
	background-color: rgba(225, 32, 32, 0.08);
}

.experience .item:hover h3 {
	color: #D83B3B;
}

.experience .item:hover .img img {
	transform: scale(1.1);
}

/* 瀑布流 */
.column {
	padding: 24px 0 20px;
}

.column-list {
	position: relative;
}

.column-item {
	position: absolute;
	transition: all .3s;
}

.column-item .img {
	width: 100%;
}

.column-item .img img {
	width: 100%;
}

.column-item .txt {
	font-size: 16px;
	padding: 15px 20px;
	transition: all .3s;
}

.column-item h3 {
	font-size: 16px;
	font-weight: normal;
	color: #2D2D2D;
}

.column-item p {
	font-size: 12px;
	margin-top: 20px;
	color: #464646;
}

.column-item p img {
	height: 16px;
	margin-right: 2px;
}

.column-item:hover {
	/* transform: translateY(-8px); */
	box-shadow: 0 0 10px rgba(0, 0, 0, .25);
}

.column-item:hover h3 {
	font-weight: bold;
	text-decoration: underline;
}

.column .more-btn {
	height: 40px;
	font-size: 14px;
	color: #707070;
	margin-top: 50px;
}

.column .no-more-btn {
	margin-top: 30px;
	color: #B7B7B7;
}

/* 找大学 */
.pull-content {
	margin: 20px auto;
}

/* 左边 */
.side-left {
	width: calc(100% - 312px);
	float: left;
}

/* 分类 */
.tags {
	padding: 10px 25px 20px;
	border: 1px solid #E8E8E8;
}

.tags.sort {
	margin-top: 4px;
	padding: 5px 25px 10px;
}

.tags .tags-item {
	margin-top: 8px;
}

.tags.sort .tags-item {
	margin-top: 5px;
}

.tags-item .lable {
	width: 75px;
	font-size: 14px;
	line-height: 18px;
	margin-top: 5px;
	font-weight: bold;
}

.tags-item ul {
	width: calc(100% - 175px);
}

.tags-item ul li {
	font-size: 12px;
	line-height: 18px;
	padding: 0 6px;
	margin: 5px 10px 0 0;
	border-radius: 4px;
	cursor: pointer;
}

.tags-item ul li>em {
	margin-left: 1px;
}

.tags-item ul li.active {
	background-color: #D83B3B;
	color: #FFFFFF;
}

.tags-item .all {
	width: 100px;
	font-size: 12px;
	color: #AAAAAA;
	line-height: 18px;
	margin-top: 5px;
}

.tags-item .all>em {
	transform: scaleX(1.8) rotateZ(90deg);
	margin-left: 5px;
	font-weight: lighter;
	transition: all .3s;
}

.city .city-list {
	height: 23px;
	overflow: hidden;
	transition: all .3s;
}

.city.open .city-list {
	height: auto;
}

.city.open .all>em {
	transform: scaleX(1.8) rotateZ(-90deg);
}

.area>span {
	width: calc(100% - 175px);
}

.area .all {
	width: 100%;
	justify-content: flex-start;
}

.area ul {
	width: 100%;
}

.area .area-list {
	height: 0;
	overflow: hidden;
	transition: all .3s;
}

.area.open .area-list {
	height: auto;
}

.area.open .all>em {
	transform: scaleX(1.8) rotateZ(-90deg);
}

/* 学校列表 */
.school-list {
	margin-top: 20px;
}

.school-item {
	width: calc(100%/3 - 14px);
	margin: 0 21px 20px 0;
	border: 1px solid #E8E8E8;
	transition: all .3s;
	padding: 30px 15px 0;
}

.school-item:hover {
	/* transform: translateY(-8px); */
	box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.18);
}

.school-item:nth-of-type(3n) {
	margin-right: 0;
}

.school-item .img {
	width: 100%;
	height: 56px;
}

.school-item .img img {
	max-width: 100%;
	max-height: 100%;
}

.school-item .title {
	font-size: 14px;
	margin-top: 30px;
}

.school-item .title span {
	display: flex;
	height: 16px;
	border-radius: 4px;
	padding: 0 2px;
	margin-left: 6px;
	font-size: 12px;
	line-height: 16px;
}

.school-item .title span>em {
	transform: scale(.8);
}

.school-item .title h3 {
	font-size: 14px;
}

.tag1 {
	background-color: #FFEADC;
	color: #FF7A3E;
}

.tag2 {
	background-color: #D8F3FF;
	color: #188EDC;
}

.school-item>h3 {
	height: 32px;
	font-size: 12px;
	color: #AAAAAA;
	text-align: center;
	line-height: 16px;
	margin-top: 4px;
	font-weight: normal;
}

.school-item .info {
	height: 70px;
	margin-top: 12px;
	border-top: 1px solid #E8E8E8;
}

.info-item {
	width: 50%;
	text-align: center;
	font-size: 16px;
}

.info-item p {
	font-size: 12px;
	color: #AAAAAA;
	margin-bottom: 4px;
}

/* 分页 */
.page-list {
	width: 100%;
	padding: 10px 0 30px;
}

.page-list a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 34px;
	height: 34px;
	background-color: #FFFFFF;
	border: 1px solid #E3E3E3;
	color: #959595;
	font-size: 12px;
	margin: 0 5px;
	transition: all .3s;
}

.page-list a:hover,
.page-list a.active {
	border: 1px solid #D83B3B;
	color: #D83B3B;
}

.page-list a>em {
	transform: scaleY(1.8);
	font-weight: lighter;
}

/* 右边 */
.side-right {
	width: 292px;
	position: sticky;
	top: 84px;
	z-index: 99;
	float: right;
}

.side-right.prohibit-follow {
	position: static;
}

.side-section {
	padding: 24px;
	margin-bottom: 20px;
}

.side-title {
	font-size: 20px;
	line-height: 1.3;
	font-weight: normal;
	padding-bottom: 10px;
	border-bottom: 1px solid #E8E8E8;
}

/* 最新消息 */
.side-news-list a {
	display: block;
	padding-left: 17px;
	margin-top: 16px;
	position: relative;
}

.side-news-list a::before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 100%;
	background-color: #AAAAAA;
	position: absolute;
	left: 0;
	top: 7px;
}

.side-news-list h3 {
	font-size: 14px;
	font-weight: normal;
	transition: all .3s;
}

.side-news-list a:hover h3 {
	text-decoration: underline;
}

.side-news-list p {
	font-size: 12px;
	color: #d1d1D1;
}

/* 排行榜 */
.side-sort-list a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 35px;
	background-color: rgba(0, 0, 0, .03);
	padding: 0 12px;
	margin-top: 4px;
}

.side-sort-list a:nth-of-type(1) {
	margin-top: 15px;
}

.side-sort-list span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	background-color: #AAAAAA;
	font-size: 14px;
	color: #FFFFFF;
}

.side-sort-list a:nth-of-type(1) span,
.side-sort-list a:nth-of-type(2) span,
.side-sort-list a:nth-of-type(3) span {
	background-color: #D83B3B;
	color: #FFFFFF;
}

.side-sort-list h3 {
	width: calc(100% - 32px);
	font-size: 14px;
	color: #2D2D2D;
	font-weight: normal;
	transition: all .3s;
}

.side-sort-list a:hover h3 {
	text-decoration: underline;
}

/* 没有数据 */
.no-data {
	width: 100%;
	height: 412px;
	margin-top: 20px;
}

.no-data .tips {
	margin-bottom: 25px;
}

.no-data .tips img {
	height: 63px;
}

.no-data .tips span {
	font-size: 16px;
	font-weight: bold;
	margin-left: 10px;
	color: #707070;
}

.no-data p {
	font-size: 14px;
	color: #707070;
	line-height: 1.8;
}

.no-data a {
	color: #F66C6C;
}

/* 专业 */
.recommend-major {
	padding: 20px 24px 24px;
}

.recommend-major .title {
	height: 46px;
	font-size: 20px;
	font-weight: normal;
	border-bottom: 1px solid #E8E8E8;
}

.recommend-major-list a {
	display: flex;
	width: calc(50% - 10px);
	height: 112px;
	margin-top: 20px;
	background-color: #F2F2F2;
	transition: all .3s;
}

.recommend-major-list .img {
	width: 112px;
	height: 112px;
	background-color: #FFFFFF;
	border: 1px solid #F2F2F2;
}

.recommend-major-list .img img {
	max-width: calc(100% - 36px);
	max-height: calc(100% - 36px);
}

.recommend-major-list a:hover {
	/* transform: translateY(-8px); */
	box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
}

.recommend-major-list .txt {
	width: calc(100% - 112px);
	padding: 12px 20px;
}

.recommend-major-list h3 {
	font-size: 16px;
	transition: all .3s;
}

.recommend-major-list a:hover h3 {
	text-decoration: underline;
}

.recommend-major-list .school {
	font-size: 14px;
	color: #B7B7B7;
	margin: 7px 0 17px;
}

.teaching-tags p {
	height: 16px;
	font-size: 12px;
	line-height: 16px;
	margin-right: 40px;
	color: #707070;
}

.teaching-tags p img {
	height: 14px;
	margin-right: 5px;
}

.teaching-tags p:last-child {
	margin-right: 0;
}

/* 专业分类 */
.major-cate {
	margin-top: 30px;
}

.major-cate-item {
	width: calc(100%/3 - 14px);
	margin: 0 21px 20px 0;
	border: 1px solid #E8E8E8;
}

.major-cate .major-cate-item:nth-of-type(3n) {
	margin-right: 0;
}

.major-cate-item .img {
	width: 100%;
	height: 126px;
	overflow: hidden;
}

.major-cate-item .img>img {
	width: 100%;
	min-height: 100%;
}

.major-cate-item .cate-title {
	height: 54px;
}

.major-cate-item .cate-title img {
	height: 24px;
	margin-right: 8px;
}

.major-cate-item .cate-title h2 {
	color: #FFFFFF;
	font-size: 20px;
}

.major-cate .major-cate-item:nth-of-type(1) .cate-title {
	background-color: rgba(29, 93, 167, 0.90);
}

.major-cate .major-cate-item:nth-of-type(2) .cate-title {
	background-color: rgba(42, 158, 225, 0.90);
}

.major-cate .major-cate-item:nth-of-type(3) .cate-title {
	background-color: rgba(188, 138, 64, 0.90);
}

.major-cate .major-cate-item:nth-of-type(4) .cate-title {
	background-color: rgba(184, 62, 62, 0.90);
}

.major-cate .major-cate-item:nth-of-type(5) .cate-title {
	background-color: rgba(155, 94, 121, 0.90);
}

.major-cate .major-cate-item:nth-of-type(6) .cate-title {
	background-color: rgba(153, 177, 96, 0.90);
}

.major-cate .major-cate-item:nth-of-type(7) .cate-title {
	background-color: rgba(98, 185, 191, 0.90);
}

.major-cate .major-cate-item:nth-of-type(8) .cate-title {
	background-color: rgba(83, 161, 112, 0.90);
}

.major-cate .major-cate-item:nth-of-type(9) .cate-title {
	background-color: rgba(217, 135, 73, 0.90);
}

.major-cate-item .info {
	display: flex;
	align-items: center;
	height: 64px;
	padding: 0 24px;
}

.major-cate-item .info-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 50%;
}

.major-cate-item .info-item p {
	font-size: 12px;
	color: #AAAAAA;
}

.major-cate-item .info-item span {
	font-size: 16px;
	line-height: 18px;
}

.major-cate-tips {
	font-size: 12px;
	color: #AAAAAA;
	padding: 12px 24px 8px;
}

.major-cate-item .list {
	padding: 0 24px 20px;
}

.major-cate-item .list a {
	height: 34px;
	margin-top: 6px;
	border-bottom: 1px solid #F2F2F2;
}

.major-cate-item .list a:last-child {
	border-bottom: 0;
}

.major-cate-item .title {
	height: 100%;
	width: calc(100% - 70px);
}

.major-cate-item .title>span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	border-radius: 4px;
	border: 1px solid #707070;
	font-size: 14px;
	color: #707070;
}

.major-cate-item .title h3 {
	width: calc(100% - 30px);
	font-size: 14px;
	font-weight: normal;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.major-cate-item .num {
	max-width: 70px;
	font-size: 12px;
	color: #AAAAAA;
}

.major-cate-item .list a:hover .title>span {
	background-color: #F2F2F2;
}

.major-cate-item .list a:hover h3 {
	font-weight: bold;
	text-decoration: underline;
}

.major-cate-item .list a:hover .num {
	font-weight: bold;
}

/* 找专业分类 */
.tags-item .classfy-list {
	width: calc(100% - 75px);
}

.filter-area>span {
	width: calc(100% - 75px);
}

.tags-item-nav .all {
	width: auto;
	margin-right: 20px;
}

.tags-item-nav .all.hide {
	display: none;
}

.tags-item-nav .all:nth-of-type(3) em {
	transform: scaleX(1.8) rotateZ(-90deg);
}

.tags-item-nav .all:last-child {
	margin-right: 0;
}

.tags-item-ul ul {
	height: 0;
	overflow: hidden;
}

.tags-item-ul ul.open {
	height: auto;
}

/* 专业列表 */
.major-list {
	margin-top: 20px;
}

.major-list .major-item {
	width: 100%;
	height: 150px;
	margin-bottom: 20px;
	border: 1px solid #E8E8E8;
	transition: all .3s;
}

.major-list .major-item:hover {
	/* transform: translateY(-8px); */
	box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
}

.major-item .major-img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 225px;
	height: 150px;
	border-right: 1px solid #E8E8E8;
}

.major-item .major-img img {
	max-width: calc(100% - 50px);
	max-height: calc(100% - 30px);
}

.major-item .major-txt {
	width: calc(100% - 225px);
	padding: 0 25px;
}

.major-item .major-txt h3 {
	font-size: 16px;
	transition: all .3s;
}

.major-list .major-item:hover .major-txt h3 {
	text-decoration: underline;
}

.major-item .major-txt h4 {
	font-size: 12px;
	color: #707070;
	font-weight: normal;
}

.major-item .major-txt .school {
	font-size: 14px;
	margin-top: 20px;
}

.major-txt .major-tags {
	height: 20px;
	font-size: 12px;
	margin-top: 12px;
}

.major-txt .major-tags p {
	height: 20px;
	padding: 0 10px;
	border-radius: 10px;
	color: #FFFFFF;
	margin-right: 12px;
}

.major-txt .major-tags p.education1 {
	background-color: #8DC771;
}

.major-txt .major-tags p.education2 {
	background-color: #7D9ADE;
}

.major-txt .major-tags p.education3 {
	background-color: #FFBA60;
}

.major-txt .major-tags .right {
	color: #707070;
}

/* 当前位置 */
.pull-option {
	margin-bottom: 12px;
}

.pull-option>img {
	height: 16px;
	margin-right: 6px;
	margin-bottom: 2px;
}

.pull-option a {
	font-size: 12px;
	color: #707070;
}

.pull-option a::after {
	content: ">";
	display: inline-block;
	font-size: 12px;
	transform: scaleY(1.6);
	font-weight: lighter;
	margin: 0 8px;
}

.pull-option span {
	font-size: 12px;
	color: #D83B3B;
}

/* 专业详情 */
.major-info {
	height: 216px;
	margin-bottom: 20px;
}

.major-info .info {
	width: calc(100% - 708px);
	padding: 0 50px 0 32px;

}

.major-info h1 {
	font-size: 24px;
}

.major-info .title>span {
	height: 22px;
	padding: 0 4px;
	border-radius: 4px;
	font-size: 12px;
	margin-left: 11px;
	transform: scale(.98);
	font-weight: bold;
}

.major-info .title>span img {
	height: 12px;
	margin-right: 2px;
}

.major-info .title>span em {
	margin-top: -1px;
}

.major-info h3 {
	font-size: 14px;
	color: #464646;
	font-weight: normal;
}

.major-info .school {
	padding-top: 25px;
	margin-top: 30px;
	border-top: 1px solid #E8E8E8;
}

.major-info .school .img {
	height: 44px;
	margin-right: 15px;
}

.major-info .school .img>img {
	height: 100%;
	border: 1px solid #E8E8E8;
	padding: 2px;
}

.major-info .school .img::before {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 8px solid #D1D1D1;
	border-right: 8px solid transparent;
}

.major-info .school h3 {
	font-size: 14px;
	font-weight: bold;
}

.major-info .school span {
	display: flex;
	align-items: center;
	transform: scale(.85);
}

.major-info .school span>em {
	margin-top: 0;
	font-weight: normal;
}

.major-info .school p {
	font-size: 12px;
	color: #AAAAAA;
}

.major-info>.img {
	width: 708px;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.major-info>.img>img {
	width: 100%;
	min-height: 100%;
}

.major-info>.img::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.25) 23%, rgba(255, 255, 255, .2));
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.major-section {
	padding: 32px;
	margin-bottom: 20px;
}

/* 标题 */
.pull-title {
	height: 38px;
	padding-bottom: 8px;
	border-bottom: 1px solid #E8E8E8;
}

.pull-title>h2 {
	font-size: 24px;
	line-height: 28px;
	font-weight: normal;
}

.pull-title .btn {
	height: 24px;
	border-radius: 4px;
	font-size: 12px;
	padding: 0 10px;
	cursor: pointer;
}

.pull-title .btn>img {
	height: 14px;
	margin-right: 5px;
}

/* 警告弹窗 */
.upper-limit-box {
	padding-top: 40px;
	width: 360px;
}

.upper-limit-title img {
	width: 63px;
}

.upper-limit-tips {
	font-size: 14px;
	margin-top: 16px;
}

.upper-limit-pop .pop-foot .cancel-btn {
	margin: 0 0 0 16px;
}

/* 基本信息 */
.info-table {
	margin-top: 20px;
	position: relative;
}

.info-table table {
	border: 1px solid #F2F2F2;
	border-collapse: collapse;
	width: 100%;
	position: relative;
	z-index: 1;
}

.info-table td {
	width: calc(100% - 176px);
	min-height: 52px;
	padding: 15px 30px;
}

.info-table tr {
	border-top: 1px solid #F2F2F2;
}

.info-table tr:nth-of-type(1) {
	border-top: 0;
}

.info-table tr td:nth-of-type(1) {
	width: 176px;
	background-color: rgba(0, 0, 0, .03);
	text-align: center;
	border-right: 1px solid #F2F2F2;
	padding: 0 10px;
}

.has-icon::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url('/skin/images/icon/icon-apply-yes.png');
	background-size: cover;
	margin-right: 6px;
}

.not-icon:last-child::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url('/skin/images/icon/icon-apply-no.png');
	background-size: cover;
	margin-right: 6px;
}

/* .info-table tr:nth-of-type(2) td:last-child::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url('/skin/images/icon/icon-apply-yes.png');
	background-size: cover;
	margin-right: 6px;
}

.info-table tr:nth-of-type(2) td.no:last-child::before {
	background-image: url('/skin/images/icon/icon-apply-no.png');
} */

.bg-img {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	height: 100%;
	padding-bottom: 10px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	opacity: .05;
}

.bg-img img {
	width: 390px;
}


.info-table table:nth-of-type(2) tr td:nth-of-type(1) {
	background-color: #F08F8F;
	color: #FFFFFF;
}

.info-table table:nth-of-type(2) tr td:nth-of-type(2) {
	color: #D83B3B;
}

.major-apply-info .info-table>table:nth-of-type(2) {
	margin-top: 20px;
}

.major-apply-info .bg-img {
	padding-bottom: 24px;
}

.error-tips {
	font-size: 14px;
	color: #AAAAAA;
	margin-top: 20px;
	position: relative;
	z-index: 1;
}

/* 没有登录 */
.not-login {
	width: 100%;
	height: calc(100% - 42px);
	backdrop-filter: blur(8px);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}

.not-login .btn {
	width: 280px;
	height: 65px;
	border-radius: 20px;
	box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
	margin-bottom: 12px;
	font-size: 20px;
	font-weight: bold;
}

.not-login .tips {
	width: 100%;
}

.not-login .tips::after {
	content: "";
	display: block;
	width: 100%;
	height: 226px;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0) 100%);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 3;
}

/* 如何申请 */
.major-apply-method {
	height: 300px;
	background-image: url('/skin/images/major-mathod.png');
	background-size: cover;
	position: relative;
}

.major-apply-method::after {
	content: "";
	display: block;
	width: 70%;
	height: 100%;
	background: linear-gradient(270deg, #F56363 0%, rgba(242, 94, 94, 0) 100%);
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}

.major-apply-method>div {
	position: relative;
	z-index: 1;
}

/* 推荐专业 */
.major-recommend .recommend-major-list a {
	height: 140px;
}

.major-recommend .recommend-major-list .img {
	width: 164px;
	height: 140px;
}

.major-recommend .recommend-major-list .img img {
	max-width: calc(100% - 16px);
	max-height: calc(100% - 16px);
}

.major-recommend .recommend-major-list h3 {
	font-size: 18px;
	margin-top: 6px;
}

.major-recommend .recommend-major-list .school {
	font-size: 16px;
	margin: 10px 0 20px;
}

.major-recommend .teaching-tags p {
	height: 20px;
	font-size: 16px;
	color: #AAAAAA;
}

.major-recommend .teaching-tags p img {
	height: 20px;
	margin-right: 6px;
}

.method-info {
	width: 904px;
}

.method-info h2 {
	background-color: #E52E2E;
	font-size: 32px;
	color: #FFFFFF;
	line-height: 66px;
	padding: 0 20px;
	margin-bottom: 14px;
}

.method-info .txt {
	padding: 20px 20px 0;
}

.method-info .txt>p {
	display: flex;
	align-items: center;
	font-size: 20px;
	color: #2D2D2D;
	font-weight: bold;
}

.method-info .txt>p::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background-color: #D83B3B;
	margin-right: 8px;
}

.method-info .tips {
	height: 56px;
	border-top: 1px solid #E8E8E8;
	margin-top: 20px;
}

.method-info .tips>span {
	font-size: 16px;
}

.method-info .tips>p {
	height: 25px;
	background-color: #F2F2F2;
	padding-left: 6px;
	font-size: 14px;
}

.method-info .tips>p img {
	height: 18px;
	margin-right: 8px;
}

.method-info .tips>p span {
	background-color: #E52E2E;
	line-height: 25px;
	padding: 0 10px;
	margin-left: 20px;
	cursor: pointer;
	color: #FFFFFF;
}

.major-apply-method .qr-code {
	width: 236px;
}

.major-apply-method .qr-code img {
	width: 100%;
}

/* 操作成功弹窗 */
.operate-pop .confirm-box {
	width: 300px;
	height: 60px;
}

/* 大学详情 */
.school-info {
	padding: 25px;
}

.school-info .img {
	width: 180px;
	height: 70px;
	padding: 2px;
	border: 1px solid #E8E8E8;
}

.school-info .img>img {
	max-width: 100%;
	max-height: 100%;
}

.school-info .info {
	width: calc(100% - 200px);

}

.school-info .school-txt {
	width: 480px;
	height: 69px;
	margin-right: 20px;
}

.school-info .school-txt h1 {
	max-width: calc(100% - 125px);
	font-size: 28px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.school-info .school-txt h2 {
	font-size: 12px;
	font-weight: normal;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}



.school-info .name>span {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 28px;
	padding: 0 10px;
	background-color: #E52E2E;
	border-radius: 4px;
	font-size: 14px;
	color: #FFFFFF;
	margin-left: 45px;
}

.school-info .school-tags {
	width: calc(100% - 500px);
	height: 69px;
}

.school-info .school-tags .tags-left {
	width: 68px;
}

.school-info .school-tags .tags-left>span {
	width: 100%;
	line-height: 20px;
	border-radius: 7px;
	font-size: 12px;
	text-align: center;
	margin-top: 6px;
	padding: 0 8px;
}

.school-info .school-tags .tags-left>span:first-child {
	margin-top: 0;
}

.school-info .school-tags .tags-right {
	width: calc(100% - 80px);
}

.school-info .school-tags .tags-right>p {
	width: calc(50% - 6px);
	line-height: 20px;
	padding: 0 8px;
	background-color: #F2F2F2;
	border-radius: 7px;
	font-size: 12px;
	margin-top: 6px;
	text-align: center;
}

.school-info .school-tags .tags-right>p:nth-of-type(1),
.school-info .school-tags .tags-right>p:nth-of-type(2) {
	margin-top: 0;
}

.school-info .school-tags .tags-right>p span {
	color: #D83B3B;
	font-weight: bold;
}

.school-info .website {
	width: 100%;
	font-size: 14px;
	color: #AAAAAA;
	padding-top: 8px;
	border-top: 1px solid #E4E4E4;
}

.school-info .website>span::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 8px solid #D1D1D1;
	border-right: 8px solid transparent;
	margin-left: 8px;
}

/* 学校图片 */
.school-imgs {
	height: 260px;
}

.school-imgs .first-img {
	width: 604px;
	height: 100%;
	overflow: hidden;
}


.school-imgs .imgs {
	width: calc(100% - 604px);
}

.school-imgs .imgs>a {
	width: calc(100%/3);
	height: 130px;
	overflow: hidden;
	position: relative;
}

.school-imgs .imgs>a:nth-of-type(n+7) {
	width: 0;
	height: 0;
	overflow: hidden;
}

.school-imgs img {
	width: 100%;
	min-height: 100%;
}

.school-imgs .imgs .more-img {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .4);
	font-size: 14px;
	color: #FFFFFF;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
}

/* ta切换 */
.school-tab {
	height: 48px;
	margin-top: 12px;
}

.school-tab li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 292px;
	height: 100%;
	background: #FFFFFF;
	box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, .16);
	border: 1px solid #E8E8E8;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
}

.school-tab li img {
	height: 20px;
	margin-right: 8px;
}

.school-tab li span {
	font-size: 16px;
	line-height: 18px;
	transition: all .3s;
}

.school-tab li em {
	color: #D83B3B;
}

.school-tab li.current {
	background-color: #D83B3B;
	border: 1px solid #D83B3B;
	color: #FFFFFF;
}

.school-tab li.current img {
	filter: brightness(10);
}

.school-tab li.current em {
	color: #E8E8E8;
}

.school-tab li:hover span {
	border-bottom: 1px solid #464646;
}

.school-tab li.current:hover span {
	border-bottom: 0;
}

.school-tab-content>li {
	width: 100%;
	height: 0;
	overflow: hidden;
}

.school-tab-content>li.show {
	height: auto;
}

.school-tab-content>li.show:nth-of-type(1) {
	overflow: initial;
}

/* 大学概况 */
.school-tab-content {
	margin-top: 20px;
}

.base-info-content {
	width: calc(75% - 5px);
	float: left;
}

.info-side-section,
.base-info-section {
	padding: 32px;
	margin-bottom: 20px;
}

.base-info-section.hd-section {
	padding: 0;
}

.base-info-section.hd-section>a {
	display: block;
}

.base-info-section.hd-section img {
	width: 100%;
}

.info-side-section h2,
.base-info-section h2 {
	font-size: 24px;
	color: #2D2D2D;
	line-height: 30px;
	padding-bottom: 8px;
	border-bottom: 1px solid #E8E8E8;
}

.info-rich {
	font-size: 16px;
	line-height: 30px;
	margin-top: 30px;
	max-height: 354px;
	overflow: hidden;
}

.info-rich.open {
	max-height: 100%;
}

.info-rich p>em {
	width: 5px;
	height: 5px;
	background-color: #E52E2E;
	border-radius: 100%;
	margin: 12px 15px 0 0;
}

.rich-all-btn {
	height: 40px;
	margin-top: 30px;
	background-color: #F7F7F7;
	font-size: 14px;
	color: #707070;
	transition: all .3s;
}

/* .rich-all-btn:hover {
	color: #D83B3B;
} */

.info-rich p>span {
	width: calc(100% - 20px);
}

.base-info-side {
	width: calc(25% - 15px);
	float: right;
	position: sticky;
	top: 84px;
	z-index: 99;
}

/* 换一批 */
.change-btn {
	font-size: 12px;
	color: #B7B7B7;
	cursor: pointer;
	transition: all .3s;
}

.change-btn img {
	height: 15px;
	margin: 2px 4px 0 0;
	filter: grayscale(100%);
	transition: all .3s;
}

.change-btn:hover {
	color: #D83B3B;
}

.change-btn:hover img {
	filter: grayscale(0);
}

.advantage-info {
	background-color: #F7F7F7;
	padding: 25px 20px;
}

.advantage-info>p:nth-of-type(1) {
	font-size: 16px;
	font-weight: bold;
}

.advantage-info>p:nth-of-type(2) {
	width: calc(100% - 64px);
	max-height: 86px;
	font-size: 16px;
	color: #707070;
	line-height: 1.8;
	padding: 0 20px;
	margin: 14px auto;
	border-left: 1px solid #B0B0B0;
	overflow: hidden;
}

.advantage-info>p:nth-of-type(2).open {
	max-height: inherit;
}

.advantage-info .show-all-btn {
	font-size: 14px;
	color: #B7B7B7;
	padding: 0 52px;
	cursor: pointer;
	transition: all .3s;
}

.advantage-info .show-all-btn>em {
	margin-right: 4px;
	transition: all .3s;
}

.advantage-info .show-all-btn.open>em {
	transform: rotateX(180deg);
}

.advantage-list>a {
	width: calc(50% - 10px);
	background-color: #F2F2F2;
	margin-top: 20px;
	padding: 20px;
	transition: all .3s;
}

.advantage-list .sort {
	width: 30px;
	height: 30px;
	font-size: 16px;
	color: #FFFFFF;
	font-weight: bold;
	margin-right: 16px;
}

.advantage-list .info {
	width: calc(100% - 152px);
}

.advantage-list .info h3 {
	font-size: 16px;
	color: #2D2D2D;
	transition: all .3s;
}

.advantage-list .info h4 {
	font-size: 12px;
	color: #707070;
	font-weight: normal;
}

.advantage-list a:hover {
	box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
}

.advantage-list a:hover .info h3 {
	color: #D83B3B;
}

.advantage-list .btns {
	max-width: 100px;
	margin-left: 16px;
}

.advantage-list .btns p {
	font-size: 12px;
	color: #707070;
}

.advantage-list .btns p:nth-of-type(2) {
	margin-top: 6px;
}

.advantage-list .btns p>img {
	height: 14px;
	margin-right: 2px;
}

.advantage-more-btn {
	height: 40px;
	margin-top: 20px;
	background-color: #F7F7F7;
	font-size: 14px;
	color: #707070;
	transition: all .3s;
}

/* .show-all-btn:hover,
.advantage-more-btn:hover {
	color: #D83B3B;
} */

/* 城市简介 */
.city-info .info {
	width: calc(100% - 416px);
	margin: 20px 0;
}

.city-info-rich {
	height: 276px;
	font-size: 16px;
	line-height: 30px;
	text-align: justify;
	overflow: hidden;
}

.city-info-rich.open {
	height: auto;
}

.city-info .rich-all-btn {
	margin-top: 25px;
}

.city-info .map {
	width: 384px;
	height: 330px;
	margin-top: 30px;
}

/* 视频 */
.school-video {
	width: 100%;
	position: relative;
}

.school-video>img {
	width: 100%;
}

.school-video .play-btn {
	width: 120px;
	height: 120px;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 9;
	transform: translate(-50%, -50%);
}

.school-video .play-btn>img {
	width: 100%;
	height: 100%;
}

.school-video-foot {
	height: 30px;
	margin-top: 24px;
}

.school-video-foot h3 {
	width: calc(100% - 140px);
}

.school-video-content {
	display: none;
}

.school-video-content video {
	width: 100%;
}

.video-share-btn {
	width: 124px;
	background-color: rgba(0, 0, 0, .03);
	font-size: 15px;
	color: #AAAAAA;
	border-radius: 4px;
	border: 1px solid #D1D1D1;
}

/* 分享弹窗 */
.video-section {
	position: relative;
}

.share-qr-code {
	display: none;
	position: absolute;
	right: 0;
	bottom: 80px;
	z-index: 98;
}

.share-qr-code .info {
	padding: 22px 23px 20px;
	box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.3);
	border: 1px solid #CCCCCC;
	border-radius: 8px;
}

.share-qr-code p {
	font-size: 14px;
	color: #2D2D2D;
}

.share-qr-code span {
	width: 130px;
	height: 130px;
	margin-top: 12px;
	background-color: #AAAAAA;
	border-radius: 100%;
	overflow: hidden;
}

.share-qr-code span>img {
	width: 100%;
	height: 100%;
}

.share-qr-code::before,
.share-qr-code::after {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background-color: #FFFFFF;
	transform: rotateZ(-45deg);
	box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.3);
	position: absolute;
	left: 50%;
	bottom: -6px;
	z-index: -1;
}

.share-qr-code::before {
	z-index: 1;
	box-shadow: none;
}

/* 视频播放弹窗 */
.video-content {
	border-radius: 30px;
	padding: 20px;
}

.video-content .close-btn {
	width: 30px;
	height: 30px;
	border-radius: 100%;
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
	position: absolute;
	top: -8px;
	right: -8px;
	z-index: 9;
}

.video-content .close-btn img {
	width: 12px;
}

.video-content .video {
	width: 800px;
}

.video-content .video video {
	width: 100%;
}

/* 宿舍设施 */
.facilities {
	height: 168px;
	margin-top: 20px;
}

.facilities .swiper-slide {
	height: 168px;
	overflow: hidden;
}

.facilities .swiper-slide img {
	width: 100%;
	min-height: 100%;
}

.apply-institution {
	background-color: #F2F2F2;
	padding: 15px 17px;
	margin-top: 20px;
}

.apply-institution .name {
	font-size: 14px;
}

.apply-institution .dw-name {
	font-size: 16px;
	color: #6C87C7;
	font-weight: bold;
}

.apply-institution .info {
	margin-top: 20px;
}

.apply-institution .info .item {
	width: calc(100%/3);
	font-size: 14px;
}

.apply-institution .info .item>strong {
	font-size: 16px;
}

.base-info-nav p {
	display: flex;
	align-items: center;
	height: 46px;
	margin-top: 10px;
	font-size: 20px;
	border-bottom: 1px solid #E8E8E8;
	cursor: pointer;
}

.base-info-nav p::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 100%;
	background-color: #707070;
	margin-right: 12px;
}

.base-info-nav p:hover {
	font-weight: bold;
	text-decoration: underline;
}

.base-info-nav p.active {
	color: #E52E2E;
	font-weight: bold;
}

.base-info-nav p.active::before {
	background-color: #E52E2E;
}

/* 专业搜索 */
.search-major {
	height: 50px;
	padding: 0 24px;
	margin-bottom: 4px;
}

.search-major>span {
	font-size: 14px;
}

.search-major>span::after {
	content: ">";
	display: inline-block;
	color: #9B9B9B;
	transform: scaleY(1.4);
	margin: 0 10px;
}

.search-major>input {
	width: 344px;
	height: 30px;
	background-image: url('../images/icon/icon-search.png');
	background-size: 16px 16px;
	background-repeat: no-repeat;
	background-position: 13px center;
	border: 1px solid #D1D1D1;
	border-radius: 15px;
	padding: 0 20px 0 35px;
	font-size: 14px;
}

.search-major>input::placeholder {
	color: #AAAAAA;
}

/* 全部专业列表 */
.school-major-list .major-item {
	width: calc(50% - 10px);
}

.school-major-list .major-item .major-txt {
	width: 100%;
}

.school-info-table table tr td>a {
	color: #6C87C7;
}

.school-info-table table tr td>a::after {
	content: "/";
	display: inline-block;
	color: #464646;
	margin-left: 4px;
}

.school-info-table table tr td>a:last-child::after {
	display: none;
}

.school-info-table table:nth-of-type(2) tr td:nth-of-type(1) {
	background-color: #E52E2E;
	height: 84px;
}

.school-info-table table:nth-of-type(2) tr td:nth-of-type(2) {
	color: #464646;
}

.mate-stay .school-info-table>table:nth-of-type(2) {
	margin-top: 16px;
}

/* 标题 */
.school-tab-content .pull-title>h2 {
	color: #2D2D2D;
	font-weight: bold;
}

.school-tab-content .pull-title .title-tag {
	height: 28px;
	font-size: 13px;
	padding: 0 15px;
	border-radius: 8px;
	margin-right: 12px;
}

/* 服务处 */
.school-service {
	margin-top: 20px;
}

.school-service .info {
	width: 364px;
}

.school-service .info h2 {
	display: flex;
	align-items: center;
	height: 20px;
	font-size: 16px;
	color: #2D2D2D;
	font-weight: normal;
}

.school-service .info h2>img {
	height: 16px;
	margin-right: 10px;
}

.school-service .info .top {
	height: 145px;
	margin-bottom: 15px;
	background-color: #F7F7F7;
	padding: 20px;
}

.school-service .info .middle {
	height: 85px;
	margin-bottom: 14px;
	background-color: #F7F7F7;
	padding: 20px;
}

.school-service .info .bottom>span {
	width: calc(50% - 7px);
	height: 85px;
	background-color: #F7F7F7;
	padding: 20px;
}


.school-service p {
	font-size: 14px;
	color: #D83B3B;
	font-weight: bold;
	margin-top: 6px;
}

.school-service .top p {
	font-weight: normal;
	color: #2D2D2D;
}

.school-service .imgs {
	width: calc(100% - 384px);
	height: 344px;
}

.school-service .imgs .left {
	width: calc(100% - 264px);
	height: 100%;
	overflow: hidden;
}

.school-service .imgs .left img {
	width: 100%;
	min-height: 100%;
}

.school-service .imgs .right {
	width: 246px;
	height: 100%;
	overflow: hidden;
}

.school-service .imgs .right>a {
	width: 100%;
	height: calc(50% - 8px);
	overflow: hidden;
}

.school-service .imgs .right>a:nth-of-type(2) {
	margin-top: 16px;
}

.school-service .imgs .right>a img {
	width: 100%;
	min-height: 100%;
}

.school-info-table input[type="checkbox"] {
	width: 16px;
	height: 16px;
	margin-top: 1px;
	cursor: pointer;
}

.school-info-table input[type="checkbox"]+label {
	cursor: pointer;
}

.school-info-table input[type="checkbox"]:checked::before {
	background-color: #4BCC65;
	border: 2px solid #4BCC65;
}

/* 资讯搜索 */
.news-search {
	height: 30px;
	margin-top: 38px;
}

.news-search>input {
	width: 292px;
	height: 30px;
	background-color: #FFFFFF;
	background-image: url('../images/icon/icon-search.png');
	background-size: 16px 16px;
	background-repeat: no-repeat;
	background-position: 13px center;
	border: 1px solid #D1D1D1;
	border-radius: 8px;
	padding: 0 20px 0 35px;
	font-size: 14px;
}

.news-search>input::placeholder {
	color: #AAAAAA;
}

.news-search button {
	width: 52px;
	height: 30px;
	background: #F2F2F2;
	border-radius: 8px;
	border: 1px solid #D1D1D1;
	margin-left: 20px;
	font-size: 14px;
	color: #707070;
	cursor: pointer;
}

.news-count {
	font-size: 14px;
	margin-top: 8px;
}

.news-count span {
	font-weight: bold;
	color: #D83B3B;
	margin: 0 2px;
}

.column .tips {
	font-size: 14px;
	color: #707070;
	margin: 60px 0 20px;
}

/* 资讯详情 */
.news-detail {
	padding: 30px 50px;
}

.news-detail h1 {
	font-size: 24px;
	font-weight: normal;
	line-height: 1.2;
}

.news-detail .info {
	font-size: 12px;
	color: #AAAAAA;
	margin-top: 16px;
	padding-top: 8px;
	border-top: 1px solid #E8E8E8;
}

.news-detail .news-tag {
	height: 24px;
	padding: 0 10px;
	background-color: #F2F2F2;
	border-radius: 8px;
	margin-right: 8px;
}

.news-author span {
	margin-left: 15px;
}

.news-author span:first-child {
	margin-left: 0;
}

.news-detail .info .right p {
	margin-left: 16px;
}

.news-detail .info .right p:first-child {
	margin-left: 0;
}

.news-detail .info .right p img {
	height: 13px;
	margin-right: 2px;
}

.news-detail .info .right p:first-child img {
	height: 16px;
}

.news-rich {
	margin: 30px 0;
	font-size: 14px;
	line-height: 1.6;
}

.news-rich img {
	max-width: 100%;
}

.news-tags {
	padding-bottom: 10px;
	border-bottom: 1px solid #E8E8E8;
}

.news-tags span {
	display: flex;
	align-items: center;
	margin-left: 20px;
	font-size: 12px;
	color: #AAAAAA;
}

.news-tags span:first-child {
	margin-left: 0;
}

.news-tags span>img {
	height: 12px;
	margin-right: 4px;
}

.news-btns {
	height: 40px;
	margin-top: 20px;
}

.news-btns .left>a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid #AAAAAA;
	border-radius: 100%;
	margin-left: 10px;
	transition: all .3s;
}

.news-btns .left>a:first-child {
	margin-left: 0;
}

.news-btns .left>a img {
	height: 18px;
	filter: grayscale(100%) contrast(2%);
}


.news-btns .left>a:hover img {
	filter: grayscale(0%) contrast(100%);
}

.news-btns .left>a:nth-of-type(1):hover {
	border: 1px solid #D83B3B;
}

.news-btns .left>a:nth-of-type(2):hover {
	border: 1px solid #4BCC65;
}

.news-btns .left>a:nth-of-type(3):hover {
	border: 1px solid #f66c6c;
}

.news-btns .right .btn {
	width: 126px;
	height: 40px;
	border-radius: 20px;
	border: 1px solid #D83B3B;
	font-size: 16px;
	color: #D83B3B;
	cursor: pointer;
}

.news-btns .right .btn img {
	height: 16px;
	margin-right: 6px;
}

.news-btns .right .btn:first-child {
	background-color: #D83B3B;
	color: #FFFFFF;
	margin-right: 16px;
}

.course-list .high-school-item {
	padding: 24px;
	justify-content: space-between;
}

.high-school-item .img {
	width: 112px;
	height: 112px;
	border: 1px solid #F2F2F2;
}

.high-school-item .img>img {
	max-width: calc(100% - 12px);
	max-height: calc(100% - 12px);
}

.high-school-item .info {
	width: calc(100% - 132px);
}

.high-school-item .info h2 {
	font-size: 16px;
	color: #2D2D2D;
	height: 50px;
	line-height: 25px;
}

.high-school-item .info p {
	display: flex;
	align-items: center;
	font-size: 16px;
	margin-top: 8px;
	font-size: 14px;
	color: #707070;
}

.high-school-item .info p img {
	height: 16px;
	margin-right: 12px;
}

.high-school-info .img {
	width: 120px;
	height: 120px;
	border: 1px solid #F2F2F2;
}

.high-school-info .img img {
	max-width: calc(100% - 12px);
	max-height: calc(100% - 12px);
}

.high-school-info .txt {
	width: calc(100% - 155px);
}

.high-school-info .txt h1 {
	font-size: 24px;
	line-height: 30px;
	height: 60px;
}

.high-school-info .address {
	font-size: 14px;
	margin-top: 8px !important;
}

.high-school-hd1 {
	height: 292px;
}

.high-school-hd .qr-code {
	width: 228px;
	height: 228px;
}

.high-school-hd .method-info {
	width: calc(100% - 260px);
}

.high-school-hd .method-info h2 {
	line-height: 58px;
}

.info-table .table-special {
	margin-top: 20px;
}

.info-table .table-special tr>td:nth-of-type(1) {
	background-color: rgba(225, 32, 32, 0.08) !important;
	color: #D83B3BFF !important;
}

.info-table .table-special tr>td:nth-of-type(2) {
	color: #464646 !important;
}

/* 教育理念与特色 */
.characteristic .item {
	margin-top: 20px;
}

.characteristic .num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background-color: #D83B3BFF;
	color: #FFFFFF;
	font-size: 16px;
	font-weight: bold;
	margin: 2px 14px 0 0;
}

.characteristic .txt {
	width: calc(100% - 34px);
}

.characteristic .txt h3 {
	font-size: 16px;
	line-height: 1.5;
	font-weight: normal;
	/* text-decoration: underline; */
}

.characteristic .txt p {
	font-size: 16px;
	line-height: 1.8;
	margin-top: 8px;
}

/* 预科 */
.course-list {
	margin-top: 20px;
}

.course-list>a {
	width: calc(50% - 10px);
	height: 156px;
	padding: 24px 32px;
	margin-bottom: 20px;
	transition: all .3s;
}

.course-list>a:hover {
	box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
}

.course-item .info h2 {
	font-size: 16px;
	color: #2D2D2D;
	height: 24px;
	transition: all .3s;
}

.course-list>a:hover .info h2 {
	color: #D83B3B;
	text-decoration: underline;
}

.course-item .info h3 {
	font-size: 12px;
	color: #707070;
	height: 36px;
	margin: 5px 0 15px;
	font-weight: normal;
}

.course-item .info .semester>span {
	height: 21px;
	color: #FFFFFF;
	font-size: 13px;
	padding: 0 7px;
	border-radius: 7px;
}

.course-item .semester>span.semester1 {
	background-color: #188EDC;
}

.course-item .semester>span.semester2 {
	background-color: #4BCC65;
}

.course-item .semester>span.semester3 {
	background-color: #FA7D45;
}

.course-item .semester>p {
	max-width: calc(100% - 120px);
	font-size: 14px;
	display: flex;
	align-items: center;
	color: #B7B7B7;
	margin-top: 0;
}

.course-item .semester>p em {
	max-width: calc(100% - 21px);
}

.course-item .semester>p img {
	height: 17px;
	margin-right: 4px;
}

/* 预科方向 */
.direction-table {
	margin-top: 20px;
	position: relative;
	overflow: hidden;
}

.info-table .bg-img img,
.direction-table .bg-img img {
	width: 250px;
	margin: 0 70px;
}

.direction-table table {
	border: 1px solid #F2F2F2;
	border-collapse: collapse;
	width: 100%;
}

.direction-table tr {
	border-top: 1px solid #F2F2F2;
}

.direction-table th,
.direction-table td {
	width: calc(100% - 176px);
	height: 52px;
	padding: 0 30px;
}

.direction-table tr th:nth-of-type(1),
.direction-table tr td:nth-of-type(1) {
	width: 176px;
	text-align: center;
	border-right: 1px solid #F2F2F2;
	padding: 0 10px;
}

.direction-table tr th {
	background-color: rgba(0, 0, 0, .03);
	font-size: 16px;
	color: #B7B7B7;
	font-weight: normal;
}

.direction-table tr th:nth-of-type(2) {
	text-align: left;
}

/* 预科概况 */
.course-info {
	margin-bottom: 20px;
	padding: 32px 52px;
}

.course-info h1 {
	font-size: 30px;
	color: #2D2D2D;
}

.course-info h2 {
	font-size: 16px;
	color: #B7B7B7;
	font-weight: normal;
}

.course-info .title>span {
	line-height: 26px;
	padding: 0 7px;
	border-radius: 7px;
	margin-left: 12px;
	font-size: 16px;
	color: #FFFFFF;
}

.course-info .title>span.semester1 {
	background-color: #188EDC;
}

.course-info .title>span.semester2 {
	background-color: #4BCC65;
}

.course-info .title>span.semester3 {
	background-color: #FA7D45;
}

.course-info .address {
	font-size: 16px;
	color: #707070;
	margin-top: 38px;
}

.course-info .address em {
	color: #B7B7B7;
}

.course-info .address img {
	height: 17px;
	margin-right: 4px;
}

/* 图片轮播 */
.course-swiper-bg {
	margin-top: 30px;
	position: relative;
}

.course-swiper .swiper-slide {
	width: 336px;
	height: 224px;
	margin-right: 20px;
	overflow: hidden;
}

.course-swiper .swiper-slide:last-child {
	margin-right: 0;
}

.course-swiper .swiper-slide img {
	width: 100%;
	min-height: 100%;
}

.course-swiper-bg .swiper-button-prev:after,
.course-swiper-bg .swiper-rtl .swiper-button-next:after,
.course-swiper-bg .swiper-button-next:after,
.course-swiper-bg .swiper-rtl .swiper-button-prev:after {
	color: #E8E8E8;
	transform: scaleY(1.4) scaleX(.8);
	font-weight: lighter;
}

.course-swiper-bg .swiper-button-prev,
.course-swiper-bg .swiper-rtl .swiper-button-next {
	left: -36px;
}

.course-swiper-bg .swiper-button-next,
.course-swiper-bg .swiper-rtl .swiper-button-prev {
	right: -36px;
}

/* 入学考试及招生比例 */
.proportion {}

.proportion .tips {
	height: 25px;
	margin-top: 18px;
}

.proportion .tips>span {
	font-size: 16px;
}

.proportion .tips>p {
	height: 25px;
	background-color: #F2F2F2;
	padding-left: 6px;
	font-size: 14px;
}

.proportion .tips>p img {
	height: 18px;
	margin-right: 8px;
}

.proportion .tips>p span {
	background-color: #E52E2E;
	line-height: 25px;
	padding: 0 10px;
	margin-left: 20px;
	cursor: pointer;
	color: #FFFFFF;
}

.proportion .top-img {
	margin-bottom: 20px;
}

.proportion .top-img>img {
	width: 100%;
}

.proportion .bottom-img {
	height: 228px;
	overflow: hidden;
}

.proportion .bottom-img img {
	width: calc(100% - 228px);
	min-height: 228px;
}

.proportion .qr-code {
	width: 228px;
	height: 228px;
	border: 10px solid #D83B3B;
	overflow: hidden;
}

.proportion .qr-code img {
	width: 100%;
	height: 100%;
}

/* 递签必读 */
.search-submission {
	height: 500px;
}

.submission-hd {
	margin-top: 30px;
	height: 220px;
	margin-bottom: 0;
}

.submission-hd .qr-code {
	width: 156px;
	height: 156px;
	padding: 14px;
}

.submission-hd .method-info {
	width: calc(100% - 188px);
}

.submission-info-01 {
	font-size: 16px;
	margin-top: 20px;
}

.submission-info-01 em {
	color: #D83B3B;
	font-weight: bold;
}

.ensure-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 34px;
	font-size: 16px;
	background-color: #F2F2F2;
	margin-top: 20px;
	padding: 0 9px;
}

.ensure-title>span {
	color: #B7B7B7;
	font-size: 15px;
}

.ensure-title>span em {
	margin-right: 2px;
}

.ensure-txt {
	font-size: 16px;
	margin: 13px 0 25px;
}

.public-ensure-list .item {
	padding: 28px 0;
	border-bottom: 1px solid #F2F2F2;
}

.ensure-logo {
	width: 124px;
	height: 124px;
	border: 1px solid #D1D1D1;
}

.ensure-logo>span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: calc(100% - 27px);
}

.ensure-logo>span img {
	max-width: calc(100% - 24px);
	max-height: calc(100% - 24px);
}

.ensure-logo p {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 27px;
	font-size: 16px;
	background-color: #49B0FF;
	color: #FFFFFF;
}

.ensure-info {
	width: calc(100% - 156px);
}

.ensure-info .price {
	font-size: 18px;
	color: #989898;
}

.ensure-info .price>span {
	margin-left: 20px;
}

.ensure-info .price strong {
	font-size: 20px;
	color: #EE5E5B;
}

.ensure-info .price em {
	color: #EE5E5B;
	margin-left: 4px;
}

.price-tips {
	font-size: 16px;
	color: #B7B7B7;
	margin: 5px 0 10px;
}

.ensure-info .tips {
	font-size: 16px;
	display: flex;
}

.ensure-info .tips>span {
	line-height: 23px;
	padding: 0 6px;
	background-color: #EE5E5B;
	color: #FFFFFF;
	margin-right: 14px;
	border-radius: 4px;
}

.ensure-tags {
	display: flex;
	flex-wrap: wrap;
}

.ensure-tags span {
	display: flex;
	align-items: center;
	height: 21px;
	background-color: #F2F2F2;
	font-size: 14px;
	color: #989898;
	padding: 0 5px;
	margin: 10px 0 0 8px;
	border-radius: 4px;
}

.ensure-tags span:first-child {
	margin-left: 0;
}

.handle-btn {
	background-color: #F66C6C;
	font-size: 16px;
	height: 40px;
	margin-top: 26px;
	cursor: pointer;
}

.private-item {
	padding: 24px 0;
	border-bottom: 1px solid #F2F2F2;
}

.private-item .img {
	width: 124px;
	height: 85px;
	border: 1px solid #D1D1D1;
}

.private-item .img>img {
	max-width: calc(100% - 14px);
	max-height: calc(100% - 14px);
}

.private-item.has-img .info {
	width: calc(100% - 156px);
}

.private-item .info h3 {
	font-size: 18px;
}

.private-item .info .title>span {
	display: flex;
	align-items: center;
	height: 27px;
	padding: 0 10px;
	background-color: #49B0FF;
	color: #FFFFFF;
	font-size: 16px;
	margin-left: 14px;
}

.private-item .info .txt {
	margin-top: 15px;
}

.private-item .info .txt p {
	display: flex;
	align-items: center;
	font-size: 16px;
	margin-top: 5px;
}

.private-item .info .tips {
	font-size: 18px;
	color: #989898;
}

.private-item .info .tips strong {
	font-size: 22px;
	color: #EE5E5B;
}

.private-item .info .tips span {
	margin-left: 20px;
}

.private-item .info .txt .tag {
	height: 23px;
	padding: 0 6px;
	font-size: 16px;
	margin-right: 12px;
	color: #FFFFFF;
}

.private-item .info .txt .tag1 {
	background-color: #8DC771;
}

.private-item .info .txt .tag2 {
	background-color: #FA7D45;
}

.pop-qr-code {
	width: 172px;
	height: 172px;
	margin: 10px 0 40px;
	padding: 10px;
	overflow: hidden;
}

.pop-qr-code img {
	width: 100%;
	min-height: 100%;
}

/* 返回顶部 */
.back-top {
	display: none;
	width: 53px;
	height: 53px;
	border-radius: 10px;
	border: 1px solid #E8E8E8;
	position: fixed;
	bottom: 40%;
	left: calc(50% + 634px);
	z-index: 999;
}

.back-top>em {
	font-size: 26px;
	transform: scaleX(1.6) rotateZ(-90deg);
	color: #A8A8A8;
	font-weight: lighter;
}

.back-top.show {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* 个人中心 */
.u-info {
	padding: 35px 32px;
}

.u-info span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 104px;
	height: 104px;
	border-radius: 100%;
	margin-bottom: 15px;
	background-color: #D1D1D1;
	overflow: hidden;
}

.u-info span>img {
	max-width: 100%;
	max-height: 100%;
}

.u-info p {
	font-size: 18px;
	color: #2D2D2D;
}

.plan-nav>a,
.u-nav>a {
	display: flex;
	align-items: center;
	padding-left: 84px;
	height: 60px;
	border-top: 1px solid #F2F2F2;
	color: #707070;
	font-size: 16px;
	cursor: pointer;
	transition: all .3s;
}

.plan-nav>a>img,
.u-nav>a>img {
	height: 20px;
	margin-right: 10px;
	filter: grayscale(100%) contrast(2%) opacity(50%);
	transition: all .3s;
}

.plan-nav>a:hover,
.plan-nav>a.active,
.u-nav>a:hover,
.u-nav>a.active {
	color: #D83B3B;
}

.plan-nav>a:hover>img,
.plan-nav>a.active>img,
.u-nav>a:hover>img,
.u-nav>a.active>img {
	filter: grayscale(0%) contrast(100%) opacity(100%);
}

.plan-care>li,
.u-care>li {
	height: 0;
	background-color: #FFFFFF;
	overflow: hidden;
}

.plan-care>li.show,
.u-care>li.show {
	height: auto;
	min-height: 560px;
	padding: 20px 25px;
}

.plan-care.plan>li.show,
.u-care.plan>a.show {
	padding: 0 0 20px;
	background-color: transparent;
}

.u-title {
	border-bottom: 1px solid rgba(112, 112, 112, 0.16);
}

.u-title h2 {
	font-size: 20px;
	line-height: 24px;
	padding-bottom: 4px;
	color: #D83B3B;
	border-bottom: 2px solid #D83B3B;
	font-weight: normal;
}

/* 关注列表 */
.care-list {
	margin-top: 20px;
}

.care-list .care-item {
	width: calc(50% - 10px);
	background-color: rgba(0, 0, 0, .03);
	margin-bottom: 20px;
	padding: 24px;
}

.care-info .img {
	width: 107px;
	height: 68px;
	overflow: hidden;
}

.care-info .img img {
	width: 100%;
}

.care-info .txt {
	width: calc(100% - 125px);
}

.care-info h3 {
	max-width: calc(100% - 92px);
	font-size: 16px;
}

.care-info h4 {
	height: 36px;
	font-size: 12px;
	color: #AAAAAA;
	font-weight: normal;
}

.care-info .title span {
	display: flex;
	height: 16px;
	border-radius: 4px;
	padding: 0 2px;
	margin-left: 6px;
	font-size: 12px;
	line-height: 16px;
}

.care-list .title span>em {
	transform: scale(.8);
}

.care-list .btns {
	font-size: 12px;
	color: #AAAAAA;
	padding-top: 12px;
	border-top: 1px solid #E8E8E8;
	margin-top: 15px;
}

.care-list .btns p {
	display: flex;
	align-items: center;
	height: 20px;
	color: #707070;
	background-color: #D1D1D1;
	padding: 0 10px;
	border-radius: 4px;
	cursor: pointer;
}

.to-care {
	padding: 100px;
}

.to-care .title {
	font-size: 28px;
	color: #D83B3B;
}

.to-care .tips {
	font-size: 14px;
	margin: 8px 0 20px;
}

.to-care .care-btn {
	width: 243px;
	height: 32px;
	background: #F66C6C;
	border-radius: 8px;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
}

.to-care .care-btn img {
	height: 18px;
	margin: 3px 6px 0 0;
	filter: brightness(10);
}

.to-care>img {
	height: 230px;
	margin-top: 32px;
}

/* 我的收藏 */
.collect-search {
	height: 30px;
	margin: 18px 0 20px;
}

.collect-search span {
	font-size: 12px;
	color: #959595;
	margin-right: 20px;
}

.collect-search input {
	width: 208px;
	height: 30px;
	border: 1px solid #E3E3E3;
	padding: 0 15px 0 37px;
	background-image: url('/skin/images/icon/icon-search.png');
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: 16px 16px;
	font-size: 12px;
}

.collect-search input::placeholder {
	color: #B4B4B4;
}

.collect-list {
	margin: 4px 0 20px;
}

.collect-list .collect-item {
	padding: 16px 0;
	border-bottom: 1px solid #E8E8E8;
}

.collect-list .collect-item a {
	width: calc(100% - 220px);
}

.collect-img {
	width: 156px;
	height: 104px;
	overflow: hidden;
}

.collect-img img {
	width: 100%;
	min-height: 100%;
}

.collect-info {
	width: calc(100% - 180px);
	height: 104px;
}

.collect-info h3 {
	font-size: 18px;
	color: #2D2D2D;
}

.collect-info>p {
	font-size: 12px;
	color: #B4B4B4;
}

.collect-btn {
	width: 40px;
	font-size: 12px;
	color: #959595;
	margin-right: 30px;
}

.collect-btn img {
	width: 32px;
	height: 32px;
	margin-bottom: 4px;
}

.base-info-title {
	font-size: 16px;
	font-weight: bold;
	color: #2D2D2D;
	line-height: 40px;
	background-color: rgba(0, 0, 0, .03);
	margin-top: 20px;
	padding: 0 15px;
}

.base-info-list .item {
	font-size: 14px;
	margin-top: 25px;
}

.base-info-list .item>span {
	width: 170px;
	color: #707070;
	text-align: right;
	margin-right: 38px;
}

.u-feedback .pop-content-form {
	margin: 30px auto 0
}

.u-feedback .pop-foot {
	width: 708px;
	padding: 0 52px;
	margin: 10px auto 0;
	border-top: 0;
}

/* 规划 */
.search-plan {
	height: 500px;
}

.search-plan .title {
	text-shadow: none;
	font-weight: normal;
}

.search-plan .title h2 {
	color: #2D2D2D;
	font-size: 48px;
}

.search-plan .title p {
	font-size: 32px;
	color: #D83B3B;
}

.join-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 188px;
	height: 42px;
	margin-top: 60px;
	background: linear-gradient(90deg, #EC1C1C 0%, #E52E2E 33%, #F55D24 100%);
	border-radius: 12px;
	color: #FFFFFF;
	font-size: 16px;
	cursor: pointer;
}

.join-btn em {
	transform: scaleY(1.5);
	margin-left: 8px;
	font-weight: lighter;
}

.plan-index .item {
	padding: 100px 0;
	background-color: #FFFFFF;
}

.plan-index .item:nth-of-type(even) {
	background-color: transparent;
}

.plan-index .item:nth-of-type(even)>span {
	flex-direction: row-reverse;
}

.plan-index .item .txt {
	width: 360px;
	margin-right: 140px;
}

.plan-index .item:nth-of-type(even) .txt {
	margin-right: 0;
}

.plan-index .item h3 {
	font-size: 32px;
	font-weight: normal;
}

.plan-index .item h3>em {
	color: #D83B3B;
}

.plan-index .item p {
	font-size: 18px;
	line-height: 2;
	margin-top: 45px;
	color: rgba(45, 45, 45, 0.60);
}

.plan-index-join {
	width: 100%;
	height: 540px;
	background-image: url('/skin/images/plan-index-hd.png');
	background-size: auto 100%;
	background-position: center;
}

.plan-index-join h2 {
	font-size: 48px;
	color: #2D2D2D;
}

.plan-index-join p {
	font-size: 18px;
	margin-top: 6px;
}

/* 问卷 */
.questionnaire {
	width: 880px;
	height: 620px;
	padding: 40px 100px;
	margin: 20px auto 40px;
}

.speed-box {
	font-size: 12px;
	color: #AAAAAA;
	margin-bottom: 40px;
}

.speed-num {
	height: 18px;
}

.speed-num>p {
	width: 156px;
	height: 16px;
	background-color: #F2F2F2;
}

.speed-num>p span {
	display: block;
	height: 100%;
	background-color: #F66C6C;
	width: 0;
	transition: all .3s;
}

.speed-num .num {
	color: #F66C6C;
	margin-left: 14px;
}

.question-item {
	height: 0;
	overflow: hidden;
}

.question-item.show {
	height: auto;
}

.question-item h3 {
	font-size: 24px;
}

.question-item>div {
	padding: 46px 0 54px;
	height: 252px;
}

.radio-box>span {
	width: 100%;
	height: 32px;
	background-color: #F2F2F2;
	margin-top: 8px;
}

.radio-box input[type=radio]:checked+label {
	background: rgba(225, 32, 32, 0.08);
	color: #D83B3B;
}

.radio-box input[type=radio]+label {
	display: flex;
	align-items: center;
	padding: 0 13px;
	font-size: 14px;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.radio-box input[type=radio]+label::before {
	display: none;
}

.select-box>span {
	display: block;
	width: 100%;
	height: 32px;
	background-color: #F2F2F2;
	margin-top: 8px;
	padding: 0 8px;
}

.select-box select {
	width: 100%;
	height: 32px;
	background-color: transparent;
	font-size: 14px;
	border: 0;
}

.input-box input {
	width: 100%;
	height: 32px;
	background-color: #F2F2F2;
	margin-top: 8px;
	padding: 0 13px;
	font-size: 14px;
}

.input-box input::placeholder {
	color: #B7B7B7;
}

.question-btns {
	height: 29px;
	font-size: 12px;
	color: #AAAAAA;
}

.switch-btn {
	width: 150px;
}

.switch-btn .btn {
	cursor: pointer;
}

.switch-btn .btn>em {
	transform: scaleY(1.4);
	font-weight: lighter;
	margin-left: 2px;
}

.switch-btn .btn.prev>em {
	margin-left: 0;
	margin-right: 2px;
}

.save-btn>div {
	display: none;
	cursor: pointer;
}

.save-exit.show {
	display: block;
}

.save-btn .save-submit.show {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
	width: 136px;
	height: 29px;
	background: #F66C6C;
	border-radius: 7px;
	font-size: 14px;
}

/* 规划内页 */
.plan-title {
	height: 52px;
	background-color: #FFFFFF;
	margin-bottom: 4px;
}

.plan-title>a,
.plan-title>span {
	display: flex;
	align-items: center;
	height: 52px;
	padding: 0 25px;
	font-size: 16px;
	color: #707070;
	cursor: pointer;
}

.plan-title>a.active,
.plan-title>span.active {
	background-color: #D83B3B;
	color: #FFFFFF;
	font-weight: bold;
}

.plan-list .plan-box {
	padding: 20px 25px;
	background-color: #FFFFFF;
	overflow: hidden;
	position: relative;
}

.plan-list .item {
	height: 0;
	overflow: hidden;
}

.plan-list .item.show {
	height: auto;
}

.plan-sub-title {
	font-size: 16px;
	padding-bottom: 8px;
	border-bottom: 1px solid #D1D1D1;
	margin-top: 36px;
}

.plan-sub-list {
	position: relative;
	z-index: 1;
}

.plan-box .plan-sub-title:nth-of-type(1) {
	margin-top: 0;
}

.plan-sub-item {
	font-size: 16px;
	color: #707070;
	padding: 18px 52px;
	background-color: #F2F2F2;
	margin-top: 20px;
	position: relative;
}

.plan-sub-item::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background-color: #D83B3B;
	position: absolute;
	left: 20px;
	top: 26px;
	z-index: 3;
}

.plan-sub-item1::before {
	left: 0;
}

.plan-box .plan-sub-list:nth-of-type(2) .plan-sub-item:hover {
	background: rgba(225, 32, 32, 0.08);
	color: #D83B3B;
}

.plan-box .bg-img img {
	width: 234px;
	margin: 0 50px;
}

/* .plan-list-other .plan-sub-item:hover {
	font-weight: bold;
	color: #D83B3B;
} */

.plan-table {
	position: relative;
	z-index: 2;
}

.plan-table table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #F3F3F3;
}

.plan-table table th,
.plan-table table td {
	height: 43px;
	border-top: 1px solid #F3F3F3;
	padding: 12px 8px;
	color: #292929;
}

.plan-table table th {
	border-top: 0;
	color: #959595;
	font-weight: normal;
}

.schedule-table table th:nth-of-type(1),
.schedule-table table td:nth-of-type(1) {
	width: 100px;
}

.schedule-table table th:nth-of-type(4),
.schedule-table table td:nth-of-type(4),
.schedule-table table th:nth-of-type(5),
.schedule-table table td:nth-of-type(5) {
	width: 196px;
}

.apply-time-table table th:nth-of-type(1),
.apply-time-table table td:nth-of-type(1),
.apply-time-table table th:nth-of-type(2),
.apply-time-table table td:nth-of-type(2) {
	width: 184px;
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.apply-time-table table td:last-child {
	cursor: pointer;
	color: #6C87C7;
}

.plan-table .page-list {
	padding: 20px 0 0;
}

.plan-table .page-list a {
	width: 26px;
	height: 26px;
}

.apply-info-table tr td:last-child {
	display: flex;
	align-items: center;
}

/* .apply-info-table tr td:last-child::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url('/skin/images/icon/icon-apply-yes.png');
	background-size: cover;
	margin-right: 6px;
}

.apply-info-table tr td.no:last-child::before {
	background-image: url('/skin/images/icon/icon-apply-no.png');
} */

.plan-apply-btn {
	width: 228px;
	height: 32px;
	background: #F66C6C;
	border-radius: 7px;
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
	margin-left: 32px;
	position: relative;
	z-index: 2;
}

.qualification-table table th {
	background: rgba(225, 32, 32, 0.08);
	color: #D83B3B;
	font-size: 16px;
}

.qualification-table table td {
	color: #707070;
	padding: 12px 20px;
	white-space: normal;
}

.qualification-table table tr td:nth-of-type(1) {
	border-right: 1px solid #F3F3F3;
}

.school-info-rich {
	font-size: 16px;
	color: #2D2D2D;
	line-height: 1.8;
}

.school-info-rich img {
	/* display: block; */
	max-width: 100%;
	margin: 10px auto;
}

.mobile-content {
	width: 100vw;
	height: 100vh;
}

.mobile-content>div {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}

.mobile-top img {
	max-width: 90%;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #E8E8E8;
}

.mobile-tips p {
	width: 100%;
	text-align: center;
	font-size: 22px;
}

.mobile-code {
	margin: 30px 0;
}

.mobile-code img {
	max-width: 300px;
}

.back-pc-btn {
	font-size: 22px;
	color: rgba(108, 135, 199, 1);
}

/* 404 */
.page-absent {
	height: 700px;
}

.page-absent>p {
	font-size: 28px;
	color: #AAAAAA;
	margin-bottom: 25px;
}

.page-absent>img {
	width: 310px;
	margin-right: 20px;
}

.page-absent>a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 188px;
	height: 32px;
	background: #F66C6C;
	border-radius: 8px;
	margin-top: 30px;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
}