:root * {
    box-sizing: border-box;
}

@font-face {
    font-family: 'num';
    src: url('webfonts/num.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'ts';
    src: url('webfonts/ts.woff2') format('woff2'),
    url('webfonts/ts.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@keyframes animate-dropdown {
    0% {
        transform: translate3d(0, 30px, 0);
        opacity: 0.3;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes animate-flop {
    0% {
        transform: rotateX(270deg);
    }

    100% {
        transform: rotateX(360deg);
    }
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    margin: 0;
    padding: 0;
}

html {
    font-family: PingFang SC, Microsoft Yahei, Microsoft Yahei UI, Segoe UI, Tahoma, SimSun, sans-serif, Hiragino Sans GB;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    overflow-x: hidden;
    background: #f5f5f5;
    min-width: 1272px;
    padding-top: 80px;
}

a, input, textarea, select, button {
    outline: 0;
}

fieldset,
img {
    border: 0;
    vertical-align: middle;
}

ol, ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #283bac;
}

input, select, button {
    vertical-align: baseline;
    border-radius: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
}

i {
    font-style: normal;
}

button::-moz-focus-inner, input[type="reset"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="file"] > input[type="button"]::-moz-focus-inner {
    border: none;
}

input[type=checkbox], input[type=radio] {
    vertical-align: middle;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    margin: 0;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset;
}

textarea {
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    overflow: auto;
    resize: none;
}


img {
    vertical-align: middle;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header {
    background: #fff;
    height: 80px;
    width: 100%;
    padding: 0 calc(50% - 624px);
    min-width: 1248px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
}

.header .logo img {
    height: 32px;
}

.nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.nav li {
    padding: 0 8px;
    position: relative;
    display: flex;
    align-items: center;
}

.nav li i {
    padding-left: 4px;
    transition: all .5s;
}

.nav li .ap {
    line-height: 80px;
    display: block;
    font-size: 18px;
}


.nav li .as {
    position: absolute;
    background: rgba(255, 255, 255, .9);
    border-top: 3px solid #283bac;
    padding: 12px;
    border-radius: 5px;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .05);
    animation-name: animate-dropdown;
    animation-duration: 0.3s;
    animation-fill-mode: both;
    display: none;
    top: 80px;
    z-index: 99;
}

.nav li .as:before {
    position: absolute;
    content: '';
    border-bottom: 6px solid #283bac;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    top: -9px;
    left: 15px;
}

.nav li .as a {
    white-space: nowrap;
    line-height: 2;
    display: block;
}

.nav li:hover .ap {
    color: #283bac;
    font-weight: bold;
    animation-name: animate-flop;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

.nav li:hover i {
    color: #283bac;
    transform: rotateX(180deg);
}

.nav li:hover .as {
    display: block;
}

.header .search {
    height: 36px;
    width: 244px;
    background: #fff;
    flex-shrink: 0;
    margin-right: 24px;
    position: relative;
}

.header .search input {
    background: transparent;
    height: 36px;
    width: 100%;
    border: 1px solid #283bac;
    padding-left: 24px;
    padding-right: 40px;
    font-size: 14px;
    border-radius: 18px;
}

.header .search button {
    position: absolute;
    height: 36px;
    width: 40px;
    line-height: 36px;
    background: #283bac;
    border-radius: 18px;
    border: none;
    cursor: pointer;
    color: #fff;
    top: 0;
    right: 0;
}

.header .search .clear {
    position: absolute;
    right: 50px;
    top: 10px;
    cursor: pointer;
    display: none;
}

.header .search .clear.show {
    display: block;
}

.header .search .clear:hover {
    color: #d82352;
}

.header .user {
    height: 36px;
    background: #283bac;
    color: #fff;
    text-align: center;
    line-height: 36px;
    flex-shrink: 0;
    border-radius: 18px;
    font-size: 14px;
    padding: 0 12px;
}


.layout-flex {
    width: 1248px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.con-left {
    width: 930px;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.con-block {
    width: 1248px;
    margin: auto;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.con-block.p24 {
    padding: 24px;
}

.con-left-group {
    width: 930px;
    display: flex;
    justify-content: space-between;
}

.con-left-group .group-item {
    width: 100%;
    margin-left: 12px;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.con-left-group .group-item:first-child {
    margin-left: 0;
}

.con-right {
    width: 306px;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.con-left-group {
    width: 930px;
}

.con-right-group {
    width: 306px;
}

.con-flex-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.con-flex-column .con-left,
.con-flex-column .con-right {
    height: 100%;
}

.con-flex-column .con-right.teacher {
    height: 400px;
}

.con-flex-column .con-right.right-bottom {
    height: auto;
    margin-top: 12px;
}


.home-banner {
    width: 930px;
    height: 324px;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.home-banner img {
    height: 324px;
    width: 930px;
}

.home-banner .swiper-button-next,
.home-banner .swiper-button-prev {
    display: none;
}

.home-banner:hover .swiper-button-next,
.home-banner:hover .swiper-button-prev {
    display: block;
    animation-name: animate-dropdown;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}


.quick-menu {
    width: 306px;
    height: 324px;
    background: #fff;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 24px 12px;
}

.quick-menu a {
    width: 33%;
    display: block;
    text-align: center;
    font-size: 14px;
    transition: all .3s;
    position: relative;
}

.quick-menu a em {
    position: absolute;
    background: #283bac;
    color: #fff;
    font-size: 12px;
    top: 0;
    right: 0;
    font-style: normal;
    padding: 0 6px;
    border-radius: 20px 20px 20px 0;
}

.quick-menu a:hover {
    transform: scale(1.1);
}

.quick-menu a i {
    display: block;
    font-size: 32px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: auto;
    border-radius: 50%;
    border: 1px solid #fff;
}


.con-title {
    display: flex;
    align-items: center;
    padding: 24px 24px 0 24px;
}

.con-title.nopt {
    padding-top: 0;
}

.con-title h2 {
    font-size: 20px;
    color: #283bac;
    white-space: nowrap;
    min-width: 100px;
}

.con-title .extra {
    font-size: 14px;
    white-space: nowrap;
    color: #666;
}

.con-title .more {
    width: 100px;
    text-align: right;
    color: #999;
    position: relative;
    margin-left: auto;
}

.con-title .more:hover {
    color: #283bac;
}

.con-title form {
    width: 100%;
    padding: 12px 0;
    display: flex;
    position: relative;
}


.con-title form input {
    background: transparent;
    height: 36px;
    width: 330px;
    border: 1px solid #283bac;
    padding-left: 18px;
    padding-right: 40px;
    font-size: 14px;
    border-radius: 3px 0 0 3px;
}

.con-title form button {
    height: 36px;
    width: 100px;
    line-height: 36px;
    background: #283bac;
    border-radius: 0 3px 3px 0;
    border: none;
    cursor: pointer;
    color: #fff;
    top: 0;
    right: 0;
    font-size: 16px;
    letter-spacing: .2em;
    text-indent: .2em;
}

.con-title form .clear {
    position: absolute;
    left: 300px;
    top: 22px;
    cursor: pointer;
    display: none;
}

.con-title form .clear.show {
    display: block;
}

.con-title form .clear:hover {
    color: #d82352;
}

.con-title form .auto-think {
    position: absolute;
    background: #fff;
    border: 1px solid #f0f0f0;
    animation-name: animate-dropdown;
    animation-duration: 0.3s;
    animation-fill-mode: both;
    display: none;
    left: 0;
    top: 50px;
    width: 330px;
    border-radius: 5px;
    padding: 6px 0;
    z-index: 99;
}

.con-title form .auto-think.show {
    display: block;
}

.con-title form .auto-think span {
    display: block;
    padding: 48px;
    color: #999;
    text-align: center;
}

.con-title form .auto-think a {
    display: block;
    padding: 6px 18px;
    color: #333;
}

.con-title form .auto-think a:hover {
    background: #f8f8f8;
}

.con-title form .auto-think a i {
    color: #283bac;
}

.home-teacher a {
    padding: 24px;
    display: block;
}

.home-teacher a .thumb {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1);
    margin: auto;
}

.home-teacher a img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    transition: all .5s;
}


.home-teacher a .name {
    font-weight: bold;
    display: block;
    text-align: center;
    font-size: 18px;
}

.home-teacher a .position {
    display: block;
    text-align: center;
}

.home-teacher a .desc {
    display: -webkit-box;
    font-size: 14px;
    text-align: justify;
    color: #666;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 12px;
}


.home-teacher a:hover img {
    transform: scale(1.2);
}

.home-teacher a .tags {
    display: flex;
    justify-content: center;
    padding-top: 12px;
}

.home-teacher a .tags span {
    display: block;
    padding: 0 12px;
    border-radius: 20px;
    border: 1px solid #283bac;
    color: #283bac;
    font-size: 12px;
    margin: 6px;
    white-space: nowrap;
}

.home-teacher .swiper-pagination {
    position: relative;
}

.normal-tab-bar {
    margin: 12px 24px;
    border-radius: 20px;
    height: 40px;
    display: flex;
}

.normal-tab-bar.mt24 {
    margin-top: 24px;
}

.normal-tab-bar a {
    display: block;
    width: 100%;
    line-height: 38px;
    text-align: center;
    border: 1px solid #f0f0f0;
    border-left: none;
    transition: all .2s;
}

.normal-tab-bar a:hover {
    font-size: 18px;
}

.normal-tab-bar a:first-child {
    border-left: 1px solid #f0f0f0;
    border-radius: 40px 0 0 40px;
}

.normal-tab-bar a:last-child {
    border-radius: 0 40px 40px 0;
}

.normal-tab-bar a.active {
    border: none !important;
    background: #283bac;
    line-height: 40px;
    color: #fff;
}

.normal-tab-bar ~ .con-title {
    padding-bottom: 6px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.home-notice {
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 12px;
    padding: 24px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.home-notice .swiper-container {
    height: 88px;
    overflow: hidden;
}

.home-notice .badge {
    height: 24px;
    line-height: 24px;
    font-size: 14px;
    width: 120px;
    background: #283bac;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 15px;
    right: -30px;
    z-index: 2;
    transform: rotate(45deg);;
}

.home-notice b {
    font-size: 24px;
    display: block;
    color: #283bac;
    font-family: num;
    font-weight: normal;
}

.home-notice span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.rank-list {
    padding: 0 24px 12px 24px;
    overflow: hidden;
}

.rank-list a {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.rank-list a span {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}

.rank-list a .fas {
    color: #283bac;
    font-size: 16px;
    margin-right: 6px;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    display: block;
    flex-shrink: 0;
}

.rank-list a .no {
    background-color: #283bac;
    color: #fff;
    height: 20px;
    width: 20px;
    display: block;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 6px;
    font-size: 12px;
    font-family: num;
}


.home-experience {
    padding: 0 24px 12px 24px;
}

.home-experience a {
    padding: 12px 0;
    display: block;
    position: relative;
}

.home-experience a .play {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, .5);
    background-image: url("../images/play.png");
    background-repeat: no-repeat;
    background-size: 50% 50%;
    background-position: center;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    top: 50px;
}

.home-experience a .thumb {
    width: 258px;
    height: 160px;
    border-radius: 5px;
    overflow: hidden;
}

.home-experience a .thumb img {
    width: 258px;
    height: 160px;
    transition: all .5s;
    object-fit: cover;
}

.home-experience a span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 12px;
}

.home-experience a:hover .thumb img {
    transform: scale(1.05);
}


.footer {
    background: #595959;
    padding: 48px calc(50% - 624px);
    min-width: 1248px;
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
}

.footer a {
    color: #fff;
}

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

.footer-title {
    line-height: 48px;
    display: flex;
    justify-content: space-between;
}

.footer-title b {
    font-size: 18px;
}

.footer-title em {
    cursor: pointer;
    font-style: normal;
}

.footer-about {
    width: 424px;
}

.footer-about p {
    text-align: justify;
    display: block;
}

.footer-contact {
    width: 430px;
}

.footer .contact-tab {
    padding-bottom: 12px;
}

.footer .contact-tab span {
    display: inline-block;
    margin-right: 24px;
    cursor: pointer;
}

.footer .contact-tab span.active {
    border-bottom: 2px solid #fff;
    font-size: 14px;
    font-weight: bold;
}

.footer .contact-content p {
    display: none;
}

.footer .contact-content p.active {
    display: block;
    height: 100px;
    width: 430px;
}

.footer .footer-qrcode {
    width: 114px;
    text-align: center;
}

.footer .footer-qrcode img {
    width: 114px;
    height: 114px;
    border-radius: 5px;
    padding: 5px;
    background: #fff;
}

.footer .footer-qrcode span {
    line-height: 48px;
}

.footer .footer-icon-list {
    display: flex;
    padding-top: 24px;
}

.footer .footer-icon-list li {
    padding-right: 24px;
    position: relative;
}

.footer .footer-icon-list li a {
    display: block;
    width: 30px;
    height: 30px;
}

.footer .footer-icon-list li a img {
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

.footer .footer-icon-list li:hover a {
    background: #283bac;
    border-radius: 50%;
}

.footer .footer-icon-list li:hover a img {
    padding: 5px;
}

.footer-icon-list li .qrcode {
    position: absolute;
    width: 164px;
    height: 184px;
    top: -196px;
    left: -5px;
    background: #fff;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .05);
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 12px;
    animation-name: animate-dropdown;
    animation-duration: 0.1s;
    animation-fill-mode: both;
    display: none;
    color: #333;
    text-align: center;
}

.footer-icon-list li .qrcode img {
    height: 140px;
    width: 140px;
}

.footer .footer-icon-list li:hover .qrcode {
    display: block;
}

.footer-icon-list li .qrcode:after {
    content: ' ';
    position: absolute;
    bottom: -7px;
    left: 10px;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    background: #fff;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.footer-links {
    padding: 24px 0 0 0;
}

.footer-links.hide {
    display: none;
}

.footer-links a {
    padding-right: 24px;
    white-space: nowrap;
}

.footer-copyright {
    padding-top: 24px;
}

.right-bar {
    position: fixed;
    left: calc(50vw + 632px);
    bottom: 200px;
    z-index: 3;
}

.right-bar li {
    background: #fff;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .05);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 24px;
    color: #283bac;
    cursor: pointer;
    position: relative;
}

.right-bar li i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    display: block;
    font-size: 24px;
}

.right-bar li .qrcode {
    position: absolute;
    width: 164px;
    height: 184px;
    top: 0;
    left: -176px;
    background: #fff;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .05);
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 12px;
    animation-name: animate-dropdown;
    animation-duration: 0.1s;
    animation-fill-mode: both;
    display: none;
    color: #333;
    text-align: center;
}

.right-bar li .qrcode img {
    height: 140px;
    width: 140px;
}

.right-bar li:hover .qrcode {
    display: block;
}

.right-bar li .qrcode:after {
    content: ' ';
    position: absolute;
    top: 24px;
    right: -9px;
    width: 15px;
    height: 15px;
    transform: rotate(-45deg);
    background: #fff;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}


.right-bar li:hover {
    background: #283bac;
    color: #fff;
}

.right-bar #bar_top {
    display: none;
}

.home-video {
    width: 100%;
    margin-top: 12px;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

.home-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

.home-video img:hover {
    transform: scale(1.02);
}

.layout-left {
    width: 930px;
    position: relative;
}

.layout-right {
    width: 306px;
}

.layout-box {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.screen-filter {
    border-bottom: 1px solid #f0f0f0;
    padding: 0 24px 24px 24px;
    font-size: 14px;
}

.screen-filter .filter {
    display: flex;
}

.screen-filter .filter .cate {
    width: 100px;
    display: block;
    position: relative;
    height: 44px;
    line-height: 44px;
    padding-right: 10px;
    flex-shrink: 0;
}

.screen-filter .group .tab {
    display: flex;
    height: 44px;
}

.screen-filter .group .tab a {
    height: 44px;
    line-height: 44px;
    margin-right: 24px;
    display: flex;
    align-items: center;
}

.screen-filter .group .tab a i {
    font-size: 20px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    display: block;
    transition: all .5s;
}

.screen-filter .group .tab a.selected {
    color: #283bac;
}

.screen-filter .group .tab a.active {
    color: #283bac;
}

.screen-filter .group .tab a.active i {
    transform: rotateX(180deg);
}


.filter .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.filter .list input {
    display: none;
}

.filter .list label,
.filter .list a {
    display: flex;
    position: relative;
    height: 32px;
    line-height: 30px;
    white-space: nowrap;
    cursor: pointer;
    align-items: center;
    padding-right: 24px;
}

.filter .list a:before,
.filter .list label:before {
    content: ' ';
    border: 1px solid #ddd;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    flex-shrink: 0;
    line-height: 14px;
    text-align: center;
    border-radius: 2px;
}

.filter .list a:before,
.filter .list input[type='radio'] + label:before {
    border-radius: 50%;
}


.filter .list input[type='checkbox']:checked + label:before {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAJ5JREFUOE/N1FEOgCAIBmD+m+XJqpPVzWhs4dDIyHyop7bs6wcx0OALgz36H8jME4BdK/2UkJkXIpqJaAUg9/0lG0zDJUnaldDBdgCpK2ELK0BprvRDv+SN0xOWwRPbTiTHt2gEs6DulhoFGsXqkl30DXbZFOflupVuO+yiy9g00EfsdmzeltlMqA8NGkoWOsuC6hmN/ua6jl4L/z94AE5CVxVK4ThbAAAAAElFTkSuQmCC");
    background-size: 80% 80%;
    background-repeat: no-repeat;
    background-position: center;
    border-color: #283bac;
    background-color: #283bac;
}

.filter .list a.active:before,
.filter .list input[type='radio']:checked + label:before {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAE9GlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNy4yLWMwMDAgNzkuMWI2NWE3OWI0LCAyMDIyLzA2LzEzLTIyOjAxOjAxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgMjMuNSAoTWFjaW50b3NoKSIgeG1wOkNyZWF0ZURhdGU9IjIwMjQtMDQtMTJUMTM6NTU6MjErMDg6MDAiIHhtcDpNb2RpZnlEYXRlPSIyMDI0LTA0LTEyVDE0OjAzOjI1KzA4OjAwIiB4bXA6TWV0YWRhdGFEYXRlPSIyMDI0LTA0LTEyVDE0OjAzOjI1KzA4OjAwIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyIgcGhvdG9zaG9wOkNvbG9yTW9kZT0iMyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDozYWFiYWY2Ni0zYzdlLTQ4ZDYtOWVlZi1lY2Q4YTFiMmMwYTUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6M2FhYmFmNjYtM2M3ZS00OGQ2LTllZWYtZWNkOGExYjJjMGE1IiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6M2FhYmFmNjYtM2M3ZS00OGQ2LTllZWYtZWNkOGExYjJjMGE1Ij4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDozYWFiYWY2Ni0zYzdlLTQ4ZDYtOWVlZi1lY2Q4YTFiMmMwYTUiIHN0RXZ0OndoZW49IjIwMjQtMDQtMTJUMTM6NTU6MjErMDg6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCAyMy41IChNYWNpbnRvc2gpIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoQ6v00AAACwSURBVDiN7dQxCoMwFMbxv6XXcO+eqXTpZrcOOUdnz9C76JDRrZuTp/AiHUwhJC+aoAhCH7i8fP4I8p7F5dawZZ021Q4BnmfOSkADFaBsbwA6oAXGHPAK1MDT6z/scwfeQJ8ClhHMrd/Zy7+p9A31Auai2m9KYJWARbMSqIRerILsLnM4ZLwfZCWwywCDrAS2gEnAjM0ugiPT0M6hxmaCbYltSs80tB8yV6/4/w9X1xfDoB2s22b/pwAAAABJRU5ErkJggg==");
    background-size: 10px 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
}

.screen-filter .group .list {
    display: none;
}

.screen-filter .group .list.active {
    display: flex;
}

.filter .list.active label, .filter .list.active .list a {
    width: 150px;
}

.condition {
    padding-left: 100px;
}

.condition .parent {
    position: relative;
    height: 28px;
    line-height: 26px;
    white-space: nowrap;
    border: 1px solid #f0f0f0;
    border-radius: 2px;
    margin: 6px 12px 6px 0;
    display: inline-block;
    padding: 0 18px 0 40px;
    background-color: #f8f8f8;
}

.condition .parent > i {
    position: absolute;
    top: -1px;
    left: -1px;
    height: 28px;
    line-height: 26px;
    width: 28px;
    font-size: 12px;
    border-radius: 2px 0 0 2px;
    border: 1px solid #f0f0f0;
    text-align: center;
    display: block;
    z-index: 2;
    cursor: pointer;
}

.condition .child {
    display: inline-block;
    padding-left: 24px;
    position: relative;
    white-space: nowrap;
    font-size: 12px;
    color: #333;
    cursor: pointer;
}

.condition .child:hover {
    color: #d92452;
}

.condition .child i {
    margin-left: 2px;
}

.rank-brand-info {
    border: 1px solid #f0f0f0;
    padding: 24px;
    display: flex;
    margin: 24px;
    position: relative;
    align-items: center;
}

.rank-brand-info img {
    width: 180px;
    object-fit: scale-down;
    flex-shrink: 0;
}

.rank-brand-info .text {
    width: 100%;
    padding-left: 24px;
}

.rank-brand-info .text.clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.rank-brand-info .text .more-less {
    color: #283bac;
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    padding-left: 50px;
    cursor: pointer;
}

.rank-brand-info .text .more-less .fa {
    transition: all .2s;
}

.rank-brand-info .text .more-less:after {
    content: ' 展开';
}

.rank-brand-info .text .more-less.clamp:after {
    content: ' 收起';
}

.rank-brand-info .text .more-less.clamp .fa {
    transform: rotateX(180deg);
}

.app-ad {
    width: 100%;
    overflow: hidden;
}

.app-ad img {
    border-radius: 5px;
    width: 100%;
}


.area-header {
    background-color: #fff;
    background-size: auto 100%;
    background-position: right;
    background-repeat: no-repeat;
    padding: 24px 400px 24px 24px;
    border-radius: 5px;
    width: 100%;
}

.area-header .title {
    display: flex;
    align-items: center;
}

.area-header .title img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.area-header .un-name {
    font-size: 22px;
    font-weight: 400;
    padding-left: 12px;
}

.area-header p {
    padding: 24px 0;
    text-align: justify;
}

.area-header .nums {
    display: flex;
    justify-content: center;
    padding-top: 24px;
}

.area-header .nums a {
    text-align: center;
    position: relative;
    width: 200px;
    display: block;
}

.area-header .nums a i {
    display: block;
    height: 40px;
    width: 40px;
    font-size: 20px;
    line-height: 40px;
    background: #283bac;
    color: #fff;
    border-radius: 50%;
    margin: auto;
}

.area-header .nums a span {
    display: block;
    font-size: 14px;
}

.area-header .nums a em {
    position: absolute;
    background: #da0f4e;
    color: #fff;
    border-radius: 20px 20px 20px 0;
    padding: 0 6px;
    white-space: nowrap;
    top: -10px;
    left: 100px;
    font-style: normal;
    font-size: 12px;
}


.list-university {
    display: flex;
    flex-wrap: wrap;
    margin: 12px 12px;
}

.list-university a {
    display: block;
    margin: 12px;
    width: calc((100% - 72px) / 3);
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    transition: all .3s;
    background: #fff;
    position: relative;
}


.list-university a:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
    transform: translate3d(0, -6px, 0);
}

.list-university a .intro {
    padding: 18px;
    text-align: center;
}

.list-university a .intro img {
    width: 80px;
    height: 80px;
    object-fit: scale-down;
}

.list-university a .intro .name {
    width: 100%;
    padding-left: 12px;
    overflow: hidden;
}

.list-university a .intro .name .cn {
    display: block;
    font-weight: bold;
    font-size: 18px;
}

.list-university a .intro .name .en {
    display: block;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.list-university a .tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    height: 20px;
    overflow: hidden;
    margin-bottom: 18px;
}

.list-university a .tags span {
    display: block;
    background: #f5f5f5;
    font-size: 12px;
    padding: 0 10px;
    border-radius: 2px;
    height: 20px;
    line-height: 20px;
    margin: 0 5px;
    white-space: nowrap;
}

.list-university a .count {
    border-top: 1px solid #f0f0f0;
    background: #f8f8f8;
    text-align: center;
    font-size: 14px;
}

.list-university a .count b {
    color: #283bac;
    font-size: 20px;
    line-height: 40px;
}

.list-university a .rank {
    color: #283bac;
    border-left: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    background-color: rgba(255, 255, 255, .6);
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 3px 0 3px;
    font-size: 14px;
    padding: 0 12px;
    line-height: 2;
}

.list-university.row-4 a {
    width: calc((100% - 96px) / 4);
}

.list-university.row-4 a .intro img {
    width: 60px;
    height: 60px;
    object-fit: scale-down;
}


.list-major {
    display: flex;
    flex-wrap: wrap;
    margin: 12px 24px;
    justify-content: space-between;
}

.list-major.no-mt {
    margin-top: 0;
}

.list-major a {
    display: flex;
    margin: 12px 0;
    width: calc((100% - 72px) / 4);
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    transition: all .3s;
    background: #fff;
    padding: 18px;
    position: relative;
}

.list-major a:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
    transform: translate3d(0, -6px, 0);
}

.list-major a .thumb {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.list-major a .thumb img {
    width: 50px;
    height: 50px;
}

.list-major a .name {
    padding-left: 12px;
    width: 100%;
    overflow: hidden;
}

.list-major a .name span {
    display: block;
    height: 25px;
    line-height: 25px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.list-major a .name .cn {
    font-weight: bold;
}

.list-major a .name .en {
    color: #666;
    font-size: 14px;
}

.list-major a .name .tags {
    display: flex;
    flex-wrap: wrap;
    height: 20px;
    overflow: hidden;
    margin-top: 12px;
}

.list-major a .name .tags em {
    display: block;
    background: #f5f5f5;
    font-size: 12px;
    padding: 0 10px;
    border-radius: 2px;
    height: 20px;
    line-height: 20px;
    margin-right: 6px;
    white-space: nowrap;
    font-style: normal;
}

.list-major a .name .nums {
    padding-top: 12px;
    font-size: 14px;
}

.list-major a .name .nums b {
    color: #283bac;
    font-size: 20px;
    font-family: num;
    padding-right: 24px;
}

.list-major a .rank {
    color: #283bac;
    border-left: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    background-color: rgba(255, 255, 255, .6);
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 3px 0 3px;
    font-size: 14px;
    padding: 0 12px;
    line-height: 2;
}

.list-major.row-3 a {
    width: calc((100% - 48px) / 3);
}

.list-major.row-2 a {
    width: calc((100% - 24px) / 2);
}

.list-major.row-2 .thumb {
    width: 70px;
    height: 70px;
}

.list-major.row-2 .thumb img {
    width: 70px;
    height: 70px;
}


.univ-report {
    display: flex;
    flex-wrap: wrap;
    margin: 0 24px 12px 24px;
    justify-content: space-between;
}

.univ-report a {
    margin: 12px 0;
    width: calc((100% - 48px) / 3);
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    transition: all .3s;
    background: #fff;
    padding: 18px;
}

.univ-report a:hover {
    transform: scale(1.05);
}

.univ-report a span {
    display: block;
    height: 25px;
    line-height: 25px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.univ-report a .cn {
    font-weight: bold;
}

.univ-report a .en {
    color: #666;
    font-size: 14px;
}


.list-offer {
    display: flex;
    flex-wrap: wrap;
    margin: 12px;
}

.list-offer.no-mt {
    margin-top: 0;
}

.list-offer a {
    display: block;
    margin: 12px;
    width: calc((100% - 96px) / 4);
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    transition: all .3s;
    padding: 18px;
    background: #fff;
}

.list-offer.row-3 a {
    width: calc((100% - 72px) / 3);
}

.list-offer a:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
    transform: translate3d(0, -6px, 0);
}

.list-offer a .un {
    display: flex;
    padding-bottom: 6px;
}

.list-offer a .un img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 12px;
    background: #fff;
}

.list-offer a .un b {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-offer .attr {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 12px;
}

.list-offer .attr label {
    color: #999;
    padding-right: 12px;
}

.list-offer.no-logo a p,
.list-offer.no-logo a .um {
    padding-left: 0;
}

.list-offer a .um span {
    display: block;
    background: #fff;
    color: #283bac;
    border-radius: 12px;
    font-size: 12px;
    border: 1px solid #283bac;
    padding: 0 12px;
    margin-right: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-news {
    padding: 0 24px 12px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.list-news a {
    display: flex;
    width: calc((100% - 48px) / 3);
    padding: 12px 0;
}

.list-news.row-2 a {
    width: calc((100% - 24px) / 2);
}

.list-news a .thumb {
    width: 90px;
    height: 90px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;

    margin-right: 12px;
}

.list-news a img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    transition: all .5s;
}

.list-news a .text {
    width: 100%;
    overflow: hidden;
}

.list-news a .text .title {

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.list-news a .text .detail {
    display: flex;
    color: #999;
    padding-top: 12px;
    align-items: center;
    font-size: 14px;
}

.list-news a .text .detail .cate {
    display: block;
    background: #fff;
    color: #283bac;
    border-radius: 12px;
    font-size: 12px;
    border: 1px solid #283bac;
    padding: 0 12px;
}

.list-news a .text .detail span {
    font-weight: normal;
}

.list-news a .text .detail span:nth-child(2),
.list-news a .text .detail span:nth-child(3) {
    padding-left: 24px;
}


.list-news a:hover img {
    transform: scale(1.2);
}

.univ-header {
    display: flex;
    align-items: center;
    padding: 24px;
}

.univ-header .logo {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    padding: 12px;
    margin: auto;
    display: block;
    background: #fff;
    object-fit: scale-down;
    flex-shrink: 0;
}

.univ-header .name {
    width: 100%;
    color: #283bac;
    padding-left: 24px;
}

.univ-header .name .cn {
    font-size: 24px;
    font-weight: bold;
}

.univ-header .name .website {
    font-size: 16px;
    color: #333;
}

.univ-header .name .tags {
    display: flex;
    padding-top: 12px;
    flex-wrap: wrap;
}

.univ-header .name .tags span {
    display: block;
    border: 1px solid #283bac;
    color: #283bac;
    background: #fff;
    font-size: 14px;
    line-height: 2;
    padding: 0 18px;
    border-radius: 20px;
    margin-right: 12px;
}

.univ-header .rank {
    width: 100px;
    height: 115px;
    background-size: cover;
    flex-shrink: 0;
    text-align: center;
    margin-left: 12px;
    padding-top: 8px;
    transition: all .2s;
    font-family: num;
}

.univ-header .rank:hover {
    transform: scale(1.02);
}

.univ-header .rank.qs {
    background-image: url("../images/qs-bg.png");
    color: #fff;
}

.univ-header .rank.usnews {
    background-image: url("../images/usnews-bg.png");
    color: #fff;
}

.univ-header .rank.times {
    background-image: url("../images/times-bg.png");
    color: #fff;
}

.univ-header .rank b {
    display: block;
    font-size: 28px;
}

.univ-header .rank span {
    display: block;
}

.univ-header .rank em {
    display: block;
    font-size: 12px;
    font-style: normal;
}

.univ-intro {
    padding: 0 24px 24px 24px;
}

.major-screen {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    margin: 12px 24px 24px 24px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
}

.major-screen a {
    display: block;
    white-space: nowrap;
    margin: 10px;
}

.major-screen a.active {
    background: #283bac;
    color: #fff;
    padding: 0 12px;
    border-radius: 20px;
}

.univ-major {
    margin: 0 24px 24px 24px;
    position: relative;
}

.univ-major.expand {
    height: auto;
}

.univ-major.fold {
    max-height: 530px;
    overflow: hidden;
}

.univ-major .more {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    color: #283bac;
    text-align: center;
    padding-top: 12px;
    cursor: pointer;
    display: none;
    background: #fff;
}

.univ-major.expand .more {
    display: block;
    position: relative;
}

.univ-major.expand .more .fa {
    transform: rotateX(180deg);
}

.univ-major.expand .more:before {
    content: "收起全部";
}

.univ-major.fold .more {
    display: block;
}

.univ-major.fold .more:before {
    content: "展开全部";
}


.univ-major a {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    line-height: 60px;
    transition: all .3s;
}

.univ-major a span {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.univ-major a span:nth-child(1) {
    width: 240px;
}

.univ-major a span:nth-child(2) {
    width: 100%;
    padding: 0 24px;
}

.univ-major a span:nth-child(3),
.univ-major a span:nth-child(4) {
    color: #283bac;
    width: 100px;
    text-align: right;
}


.other-university a {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    padding: 24px;
}

.other-university a img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
}

.other-university a .name {
    width: 100%;
    padding-left: 18px;
    overflow: hidden;
}

.other-university a .name .cn {
    font-weight: bold;
}

.other-university a .name .en {
    height: 24px;
    line-height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #999;
}

.other-university a .name .rank {
    display: flex;
    align-items: center;
    color: #283bac;
    font-weight: bold;
}

.other-university a .name .rank img {
    border-radius: 2px;
    width: 20px;
    height: 16px;
    margin-right: 6px;
}

.user-form {
    display: flex;
    flex-wrap: wrap;
    padding: 12px;
}

.con-title ~ .user-form {
    padding-top: 0;
}

.user-form .form-item {
    width: 50%;
    display: flex;
    align-items: center;
    padding: 12px;
    position: relative;
}

.user-form .form-item.block {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 12px;
    position: relative;
}

.user-form .form-item label {
    width: 100px;
    text-align: center;
    height: 42px;
    line-height: 42px;
    border: 1px solid #f0f0f0;
    border-right: none;
    border-radius: 5px 0 0 5px;
    display: block;
    flex-shrink: 0;
    background: #fafafa;
    font-size: 14px;
    font-weight: bold;
}

.user-form .form-item input {
    height: 42px;
    border: 1px solid #f0f0f0;
    border-radius: 0 5px 5px 0;
    width: 100%;
    padding: 0 12px;
    font-size: 14px;
}

.user-form .form-item .validform_error {
    background: #fff2f2;
}

.user-form .form-item button {
    height: 42px;
    border: 1px solid #f0f0f0;
    border-radius: 0 5px 5px 0;
    width: 100px;
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    cursor: pointer;
}

.user-form .form-item img {
    height: 42px;
    border: 1px solid #f0f0f0;
    border-radius: 0 5px 5px 0;
    width: 100px;
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    object-fit: scale-down;
    border-left: none;
    visibility: visible;
    cursor: pointer;
}

.user-form .form-submit {
    width: 100%;
    padding: 12px;
}


.user-form .form-submit button {
    display: block;
    height: 46px;
    line-height: 44px;
    margin: auto;
    text-align: center;
    width: 160px;
    border-radius: 27px;
    font-size: 18px;
    font-weight: bold;
    background: #fff;
    color: #283bac;
    border: 1px solid #283bac;
    cursor: pointer;
}

.user-form .form-submit button:hover {
    color: #fff;
    background: #283bac;
}


.other-report a {
    display: block;
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.other-report a b,
.other-report a span {
    display: block;
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.other-report a span {
    color: #666;
    font-size: 14px;
}

.echart-200 {
    height: 200px;
    width: 100%;
}

.echart {
    height: 400px;
    width: 100%;
}

.mtb {
    margin-top: 12px;
    margin-bottom: 12px;
}

.apps {
    animation-name: animate-dropdown;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    padding: 65px calc(50% - 500px) 0;
    width: 100%;
    height: 152px;
    background-image: url("../images/apps.png");
    background-size: auto 152px;
    background-position: center;
    position: fixed;
    bottom: 0;
    z-index: 4;
    line-height: 87px;
    display: none;
    justify-content: center;
}

.apps.show {
    display: flex;
}

.apps p {
    display: block;
    padding: 0 24px;
    color: #fff;
    font-size: 18px;
}

.apps p b {
    font-size: 28px;
    color: #d72453;
    font-family: num;
}

.apps i {
    height: 24px;
    width: 24px;
    background: #ff0000;
    color: #fff;
    display: block;
    position: absolute;
    top: 0;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    right: calc(50% - 636px);
    cursor: pointer;
}

.apps i:hover {
    background: #da0f4e;
}

.floor-nav {
    position: fixed;
    background: #fff;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .05);
    left: 0;
    right: 0;
    padding: 0 calc(50% - 624px);
    top: 80px;
    display: flex;
    z-index: 2;
}

.floor-nav.sticky{
    position:sticky;
}

.floor-nav ~ .layout-flex {
    padding-top: 54px;
}
.floor-nav.sticky ~ .layout-flex {
    padding-top: 0;
}

.floor-nav li {
    background: #f5f5f5;
    border-radius: 30px;
    text-align: center;
    height: 30px;
    line-height: 30px;
    margin: 12px;
    cursor: pointer;
    padding: 0 24px;
}

.floor-nav li.active {
    color: #fff;
    background: #283bac;
}

.rank-university-list {
    border: 1px solid #f0f0f0;
    border-top: 0;
    border-bottom: none;
    margin: 0 24px 24px 24px;
}

.rank-university-list a,
.rank-university-list li {
    display: flex;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f0;
}

.rank-university-list a:hover {
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1);
}

.rank-university-list a .rank-name,
.rank-university-list li .rank-name {
    width: 100%;
    display: flex;
    align-items: center;
}

.rank-university-list a .rank-name img,
.rank-university-list li .rank-name img {
    width: 60px;
    height: 60px;
    object-fit: scale-down;
    flex-shrink: 0;
}

.rank-university-list a .rank-name .name,
.rank-university-list li .rank-name .name {
    padding-left: 12px;
    width: 100%;
}

.rank-university-list a .rank-name .name b,
.rank-university-list li .rank-name .name b {
    display: block;
    font-size: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-university-list a .rank-name .name span,
.rank-university-list li .rank-name .name span {
    display: block;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #999;
}

.rank-university-list a .rank-no,
.rank-university-list li .rank-no {
    width: 120px;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    flex-shrink: 0;
}

.rank-university-list a .rank-num,
.rank-university-list li .rank-num {
    width: 200px;
    text-align: center;
    flex-shrink: 0;
    font-size: 18px;
}

.rank-university-list li .rank-num,
.rank-university-list li .rank-no,
.rank-university-list li b,
.rank-university-list li span {
    color: #999;
}

.rank-university-item {
    margin: 0 24px;
    background: #f8f8f8;
    line-height: 60px;
    height: 60px;
    display: flex;
    border: 1px solid #f0f0f0;
}

.rank-university-item span {
    display: block;
    text-align: center;
    font-weight: bold;
}

.rank-university-item span:nth-child(1) {
    width: 120px;
    flex-shrink: 0;
}

.rank-university-item span:nth-child(2) {
    padding-left: 72px;
    width: 100%;
    text-align: left;
}

.rank-university-item span:nth-child(3),
.rank-university-item span:nth-child(4) {
    width: 200px;
    flex-shrink: 0;
}

.rank-university-item.fixed {
    position: fixed;
    top: 80px;
    width: 1200px;
}

.news-list {

}

.news-list li {
    overflow: hidden;
    display: flex;
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}

.news-list li:nth-child(2n) {
    background: #fbfbfb;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list li .img {
    width: 200px;
    height: 135px;
    overflow: hidden;
    border-radius: 3px;
    flex-shrink: 0;
}

.news-list li .img img {
    width: 200px;
    height: 135px;
    transition: all 1s;
    object-fit: cover;
}

.news-list li:hover .img img {
    transform: scale(1.1);
}

.news-list li:hover a b {
    color: #ff5065;
}

.news-list li .text {
    width: 100%;
    padding-left: 24px;
}

.news-list li .text b {
    display: block;
    height: 24px;
    line-height: 24px;
    font-size: 20px;
    overflow: hidden;
    font-weight: normal;
    margin-bottom: 12px;
    color: #333;
}

.news-list li .text p {
    height: 40px;
    line-height: 20px;
    display: block;
    overflow: hidden;
    color: #666;
    font-size: 14px;
}

.news-list li .text span {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 12px;
}

.news-list li .text span .fa {
    font-size: 16px;
    margin-right: 6px;
}

.news-list li .text span .fa:nth-child(2) {
    padding-left: 24px;
}


.paging {
    display: flex;
    padding: 24px;
    justify-content: center;
    border-top: 1px solid #f0f0f0;
    align-items: center;
}

.paging a, .paging span {
    border: #f0f0f0 1px solid;
    padding: 3px 6px;
    margin: 0 6px;
    background: #fafafa;
    display: block;
    border-radius: 2px;
}

.paging a:hover {
    background: #fff;
}

.paging a.current, .paging .active {
    background: #283bac;
    color: #fff;
    border: #283bac 1px solid;
}

.paging span {
    margin: 0 6px;
    display: block;
}


.news-detail-content {
    padding: 24px;
    line-height: 2;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
}

.news-detail-content p {
    padding: 6px 0;
}

.news-detail-title {
    font-size: 24px;
    line-height: 1.5;
    padding: 36px 24px 0 24px;
    font-weight: bold;
}

.news-detail-info {
    border-bottom: 1px dotted #e6e6e6;
    display: flex;
    align-items: center;
    color: #555;
    font-size: 14px;
    line-height: 24px;
    padding: 24px;
}

.news-detail-info .fa {
    font-size: 16px;
    margin: 0 6px;
}

.news-detail-info .fa:nth-child(2),
.news-detail-info .fa:nth-child(3) {
    padding-left: 24px;
}


.detail-paragraph {
    padding: 0 24px;
}

.detail-paragraph:last-child {
    padding-bottom: 24px;
}

.major-table {
    border-top: 1px solid #f0f0f0;
    border-left: 1px solid #f0f0f0;
    width: calc(100% - 48px);
    margin: 12px 24px 0 24px;
    border-collapse: collapse;
}

.major-table td {
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 12px;
    text-align: center;
    max-width: 200px;
}

.major-table tr:first-child td {
    font-weight: bold;
    background: #f8f8f8;
}

.major-table.course {
    margin-bottom: 24px;
}

.major-table.course tr td:first-child {
    width: 80px;
    text-align: center;
}


.offer-item {
    display: flex;
    flex-wrap: wrap;
    padding: 0 24px 12px;
}

.offer-item li {
    width: 50%;
    line-height: 2;
    display: flex;
    align-items: flex-start;
}

.offer-item li.block {
    width: 100%;
}

.offer-item li .item-label {
    color: #999;
    width: 80px;
    flex-shrink: 0;
}

.offer-item li .item-content {
    width: 100%;
}

.offer-item li .item-content a {
    color: #fff;
    background: #283bac;
    padding: 0 12px;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px
}

.offer-item li .item-content a:hover {
    background: #726854;
}

.offer-timeline {
    height: 100px;
    margin: 0 24px;
    position: relative;
}

.offer-timeline:after {
    content: ' ';
    width: 100%;
    height: 4px;
    background: #eee;
    border-radius: 4px;
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    z-index: 1;
    display: block;
}

.offer-timeline ul {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    height: 100px;
}

.offer-timeline ul li {
    width: 100%;
    height: 100px;
    position: relative;
    text-align: center;
}

.offer-timeline ul li:after {
    content: ' ';
    width: 16px;
    height: 16px;
    left: 50%;
    margin-left: -8px;
    background: #d82352;
    border: 3px solid #f5d1dc;
    position: absolute;
    top: 40px;
    border-radius: 50%;
}

.offer-timeline ul li span, .offer-timeline ul li b {
    display: block;
    line-height: 50px;
}

.offer-timeline ul li b {
    color: #d82352;
}

.notice-img {
    position: relative;
    margin-bottom: 24px;
    margin-left: 24px;
    width: 200px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.notice-img img {
    width: 200px;
}

.notice-img:after {
    content: '点击放大查看';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    color: #333;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .3));
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 2;
}

#notice_zoom {
    display: none;
}

.notice-zoom {
    width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.notice-zoom img {
    width: 100%;
}

.other-major a {
    display: block;
    border-bottom: 1px solid #f0f0f0;
    padding: 24px;
}


.other-major a .cn {
    display: block;
    font-weight: bold;
    height: 24px;
    line-height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.other-major a .en {
    display: block;
    height: 24px;
    line-height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #999;
}

.major-report {
    margin: 12px 24px;
    border-radius: 5px;
    background-image: url("../images/report-bg.jpg");
    background-position: center;
    background-size: 100% 100%;
    display: block;
    border: 1px solid #f0f0f0;
    transition: all .3s;
}

.major-report:hover {
    background-size: 120% 120%;
}

.major-report h3 {
    text-align: center;
    color: #333;
    padding-bottom: 12px;
    font-weight: normal;
}

.major-report ul {
    display: flex;
    width: 100%;
}

.major-report ul li {
    text-align: center;
    width: 100%;
}

.major-report {
    padding: 24px;
    margin-bottom: 24px;
}

.major-report .text {
    padding: 24px 200px 0;
    color: #666;
    font-size: 14px;
}

.major-report .num {

}

.major-report .num li:nth-child(1),
.major-report .num li:nth-child(2) {
    border-right: 1px solid #f0f0f0;
}

.major-report .num li b {
    display: block;
    font-family: num;
    color: #283bac;
    font-size: 32px;
}

.major-report li span {
    display: block;
    color: #333;
}


.other-offer {

}


.other-offer a {
    display: block;
    margin: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    padding: 24px;
    background: #fff;
}

.other-offer a:nth-child(1) {
    padding-top: 12px;
}

.other-offer a b {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 20px;
}

.other-offer a p {
    display: block;
    height: 24px;
    line-height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #999;
}

.other-offer a .um {
    display: flex;
    padding-top: 12px;
}


.other-offer a .um span {
    display: block;
    background: #fff;
    color: #283bac;
    border-radius: 12px;
    font-size: 12px;
    border: 1px solid #283bac;
    padding: 0 12px;
    margin-right: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.achievement-banner {
    width: 100%;
    height: 400px;
    background-image: url("../images/achievement-banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
}

.achievement-header {
    background-image: url("../images/achievement.jpg");
    background-size: 100% 100%;
    padding: 72px 0;
    text-align: center;
    width: 1248px;
    margin: 12px auto 0;
    border-radius: 5px 5px 0 0;
    border: 1px solid #f0f0f0;
}

.achievement-header h2 {
    font-size: 36px;
    padding-bottom: 12px;
    color: #283bac;
    letter-spacing: .5em;
    padding-left: .5em;
}

.achievement-header p {
    line-height: 1.5;
    font-size: 18px;
}

.school-list {
    display: flex;
    flex-wrap: wrap;
    width: 1248px;
    margin: 0 auto 12px;
    justify-content: space-between;
    padding: 12px 24px;
    background: #fff;
    border-radius: 0 0 5px 5px;
}

.school-list a {
    width: calc((100% - 96px) / 5);
    background: #fff;
    border-radius: 5px;
    margin: 12px 0;
    padding: 24px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all .3s;
}

.school-list a img {
    display: block;
    width: 80px;
    height: 80px;
    margin: auto;
    object-fit: scale-down;
}

.school-list a span {
    display: block;
    padding: 12px 0;
    font-size: 18px;
}

.school-list a em {
    font-style: normal;
    color: #283bac;
    display: block;
}

.school-list a:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
    transform: translate3d(0, -6px, 0);
}

.achievement-intro {
    width: 1248px;
    margin: auto;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
    overflow: hidden;
}

.achievement-intro .intro {
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0));

    width: 62%;
    padding: 48px 24px;
}

.achievement-intro .intro .logo-group {
    display: flex;
    align-items: center;
    padding-bottom: 48px;
}

.achievement-intro .intro .logo-group .logo {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 5px;
    margin-right: 12px;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .05);
}

.achievement-intro .intro .logo-group .logo img {
    height: 30px;
    width: 30px;
}

.achievement-intro .intro .logo-group .logo span {
    display: block;
    padding-left: 6px;
    font-size: 18px;
    font-weight: bold;
}

.achievement-intro .intro .text b {
    font-family: num;
    color: #283bac;
    font-size: 24px;
}

.achievement-show {
    padding: 12px 24px 24px 24px;
}

.achievement-show li {
    border-left: 1px solid #f0f0f0;
    padding: 12px 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.achievement-show li:nth-child(1) {
    border-left: none;
}

.achievement-show .c-10 {
    width: 10%;
}

.achievement-show .c-15 {
    width: 15%;
}

.achievement-show .c-20 {
    width: 20%;
}

.achievement-show .c-60 {
    width: 60%;
}


.achievement-show .show-header {
    border: 1px solid #f0f0f0;
    background: #f8f8f8;
    font-weight: bold;
}

.achievement-show ul,
.achievement-show a {
    display: flex;
}

.achievement-show .show-list {
    border-left: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    max-height: 490px;
    overflow: auto;
}

.achievement-show .show-list li {
    border-bottom: 1px solid #f0f0f0;
}

.achievement-show .show-list ul:nth-child(2n),
.achievement-show .show-list a:nth-child(2n) {
    background: #fcfcfc;
}


.default-no-data {
    background-image: url("../images/no-data.png");
    width: 200px;
    height: 210px;
    background-size: 200px 163px;
    background-repeat: no-repeat;
    background-position: top;
    margin: 50px auto;
    padding-top: 180px;
    text-align: center;
    color: #999;
}

.default-seek-success {
    background-image: url("../images/seek-success.png");
    width: 200px;
    height: 240px;
    background-size: 200px 206px;
    background-repeat: no-repeat;
    background-position: top;
    margin: 120px auto;
    padding-top: 215px;
    text-align: center;
    color: #999;
}

.user-left {
    width: 228px;
    background: #fff;
    border-radius: 5px;
    min-height: 300px;
}

.user-right {
    width: 1008px;
    background: #fff;
    border-radius: 5px;
    min-height: 300px;
}

.user-left .user-header {
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.user-left .user-header img {
    display: block;
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
}

.user-left .user-header span {
    display: block;
    text-align: center;
    font-size: 14px;
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    margin-top: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-left .user-nav {
    padding: 24px;
}

.user-left .user-nav a {
    display: block;
    line-height: 40px;
    border: 1px solid #f0f0f0;
    text-align: center;
    margin-bottom: 24px;
    border-radius: 30px;
    background: #f8f8f8;
    color: #333;
}

.user-left .user-nav a:hover {
    background: #fff;
}

.user-left .user-nav a.active {
    background: #283bac;
    color: #fff;
    border: 1px solid #283bac;
}

.list-adviser {
    display: flex;
    flex-wrap: wrap;
    margin: 12px 12px;
}

.list-adviser a {
    margin: 12px;
    width: calc((100% - 72px) / 3);
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    transition: all .3s;
    background: #fff;
    padding: 18px;
    position: relative;
}


.list-adviser a:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
    transform: translate3d(0, -6px, 0);
}

.list-adviser a .thumb {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1);
    margin: auto;
}

.list-adviser a img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    transition: all .5s;
}


.list-adviser a .name {
    font-weight: bold;
    font-size: 18px;
    display: block;
    text-align: center;
    padding: 12px 0;
}

.list-adviser a .position {
    display: block;
    text-align: center;
    line-height: 2;
}

.list-adviser a .desc {
    display: -webkit-box;
    font-size: 14px;
    text-align: justify;
    padding-top: 12px;
    color: #666;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    margin-top: 12px;
}


.list-adviser a:hover img {
    transform: scale(1.2);
}

.list-adviser a .tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 12px;
}

.list-adviser a .tags span {
    display: block;
    padding: 0 12px;
    border-radius: 20px;
    border: 1px solid #283bac;
    color: #283bac;
    font-size: 12px;
    margin: 6px;
}


.list-adviser a .info {
    display: flex;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    margin-top: 12px;
}

.list-adviser a .info .info-item {
    width: 100%;
    text-align: center;
}

.list-adviser a .info .info-item span {
    display: block;
    font-size: 14px;
    color: #999;
}

.list-adviser a .info .info-item b {
    font-size: 20px;
    color: #000;
}


.adviser-header {
    display: flex;
    align-items: center;
    color: #fff;
    background-image: url("../images/banner-adviser.jpg");
    background-size: cover;
    height: 300px;
    padding: 0 calc(50% - 624px);
}

.adviser-header .avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: auto;
    display: block;
    object-fit: scale-down;
    flex-shrink: 0;
}

.adviser-header .name {
    width: 100%;
    padding-left: 24px;
    display: flex;
    align-items: center;
}
.adviser-header .name .fullname {
    font-size: 24px;
    font-weight: bold;
    padding-right: 24px;
}
.adviser-header .name .attr{
    margin-left: auto;
    display: flex;
}
.adviser-header .name .attr li{
    padding: 0 24px;
    text-align: center;
}
.adviser-header .name .attr li span{
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,.8);
}
.adviser-header .name .attr li b{
    font-size: 30px;
}
.adviser-header .intro{
    padding: 24px;
}
.adviser-header .tags {
    display: flex;
    padding-top: 12px;
    flex-wrap: wrap;
    padding-left: 24px;
}

.adviser-header .tags span {
    display: block;
    border: 1px solid #283bac;
    color: #283bac;
    background: #fff;
    font-size: 14px;
    line-height: 2;
    padding: 0 18px;
    border-radius: 20px;
    margin-right: 12px;
}


.other-adviser a {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    padding: 24px;
    align-items: center;
}

.other-adviser a img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.other-adviser a .name {
    width: 100%;
    padding-left: 18px;
    overflow: hidden;
}

.other-adviser a .name .fullname {
    font-weight: bold;
}

.other-adviser a .name .level-type {
    height: 24px;
    line-height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #999;
}

.list-comment li {
    border-bottom: 1px solid #f0f0f0;
}

.list-comment li:last-child {
    border-bottom: none;
}

.list-comment li .title {
    display: flex;
    padding: 24px 24px 12px 24px;
    align-items: center;
}

.list-comment li .title img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.list-comment li .title .name {
    width: 100%;
    padding-left: 18px;
    overflow: hidden;
}

.list-comment li .title .date {
    width: 150px;
    text-align: right;
    color: #666;
    font-size: 14px;
}

.list-comment li .title .name .nickname {
    display: flex;
    align-items: center;
}

.list-comment li .title .name .nickname span {
    display: block;
    background: #fff;
    color: #283bac;
    border-radius: 12px;
    font-size: 12px;
    border: 1px solid #283bac;
    padding: 0 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 12px;
}

.list-comment li .title .name .offer-info {
    height: 24px;
    line-height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #999;
}

.list-comment li .content {
    padding: 0 24px 24px 24px;
}

.list-comment li .thumbs {
    padding: 0 12px 24px 24px;
}

.list-comment li .thumbs .thumb {
    height: 80px;
    border-radius: 5px;
    margin-right: 12px;
    cursor: pointer;
}

.list-comment li .thumbs img.active {
    border: 2px solid #d51a52;
}

.list-comment li .thumbs .zoom {
    position: relative;
    background: #eee;
    min-height: 30px;
    margin-top: 24px;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    display: none;
    cursor: pointer;
}

.list-comment li .thumbs .zoom .close {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 30px;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    font-size: 14px;
    line-height: 30px;
}

.list-comment li .thumbs .zoom-img {
    max-width: 100%;
    height: auto;
}

.list-course {
    display: flex;
    flex-wrap: wrap;
    padding: 0 12px 12px;
}

.list-course a {
    width: calc((100% - 72px) / 3);
    border-radius: 5px;
    overflow: hidden;
    margin: 12px;
}

.list-course a .img {
    width: 400px;
    height: 180px;
    overflow: hidden;
}

.list-course a img {
    width: 400px;
    height: 180px;
    object-fit: cover;
    transition: all .3s;
}

.list-course a .text {
    padding: 24px;
    background: #f8f8f8;
}

.list-course a .text b {
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.list-course a .text span {
    display: -webkit-box;
    font-size: 14px;
    text-align: justify;
    padding-top: 12px;
    color: #666;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.list-course a .text p {
    padding-top: 6px;
    color: #283bac;
}

.list-course a:hover img {
    transform: scale(1.1);
}


.service-country {
    display: flex;
    width: 1248px;
    padding: 12px;
}

.service-country li {
    width: 100%;
    background: #fff;
    border-radius: 5px;
    position: relative;
    overflow-y: hidden;
    border: 1px solid #f0f0f0;
    margin: 12px;
}


.service-country li img {
    width: 40px;
    height: 40px;
    border-radius: 50% 5px 50% 50%;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .1);
    position: absolute;
    top: 0;
    right: 0;
}

.service-country li .sh {
    padding: 24px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
}

.service-country li .sb {
    padding: 12px 24px 24px 24px;
}

.service-country li .country-name {
    font-size: 20px;
    line-height: 40px;
}

.service-country li .slogen {
    font-weight: bold;
    color: #283bac;
}

.service-country li .item {
    padding-top: 12px;
}

.service-country li .item b {
    font-family: num;
    font-size: 20px;
    padding-left: 12px;
    color: #283bac;
}


.service-step {
    width: 1248px;
    margin: auto;
    padding: 12px 24px;
}

.service-step li {
    padding: 24px 24px 24px 96px;
    background: linear-gradient(45deg, #fff, #f8f8f8);
    border-radius: 5px;
    position: relative;
    border: 1px solid #f0f0f0;
    margin: 12px 0;
}

.service-step li .step-num {
    color: #fff;
    border-radius: 5px 50% 50% 50%;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .1);
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-family: num;
    font-size: 32px;
    background: #283bac;
}

.step-title {
    font-size: 20px;
    font-weight: bold;
    color: #283bac;
}

.service-step li h2 {
    font-size: 18px;
    padding-top: 24px;
}

.service-step li.pay {
    width: 100%;
}

.service-step li.pay .step-num {
    background: #ffaa00;
    font-size: 24px;
}

.service-step li.pay .step-title {
    color: #ffaa00;
}

.practice-list a {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    padding: 24px;
}

.practice-list a img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 5px;
    object-fit: contain;
}

.practice-list a .text {
    padding-left: 24px;
    width: 100%;
}

.practice-list a .text .line-1,
.practice-list a .text .line-3 {
    display: flex;
    align-items: center;
}

.practice-list a .text .company {
    color: #666;
}

.practice-list a .text .tag {
    color: #283bac;
    border: 1px solid #283bac;
    border-radius: 20px;
    font-size: 12px;
    padding: 0 12px;
    margin-left: 12px;
}

.practice-list a .text .major {
    background: #e9ebf7;
    color: #283bac;
    padding: 0 12px;
    margin-left: auto;
    border-radius: 20px;
    font-size: 14px;
}

.practice-list a .text .line-2 {
    padding: 12px 0;
}

.practice-list a .text .grade,
.practice-list a .text .location {
    padding: 0 24px;
    color: #999;
    background-position: left center;
    background-repeat: no-repeat;
}

.practice-list a .text .grade {
    background-image: url("../images/grade.png");
}

.practice-list a .text .location {
    background-image: url("../images/location.png");
    width: 500px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.practice-list a .text .end-time {
    margin-left: auto;
    color: #999;
}

.practice-list a .text .end-time span {
    color: #333;
}


.practice-company {
    display: flex;
    padding: 24px 24px 12px 24px;
}

.practice-company img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 5px;
    object-fit: contain;
    border: 1px solid #f0f0f0;
}

.practice-company .text {
    padding-left: 24px;
    width: 100%;
}

.practice-company .text .name {
    display: flex;
    align-items: center;
}

.practice-company .text .tag {
    color: #283bac;
    border: 1px solid #283bac;
    border-radius: 20px;
    font-size: 12px;
    padding: 0 12px;
    margin-left: 12px;
}

.practice-company .text .website {
    color: #666;
}

.practice-item {
    display: flex;
    flex-wrap: wrap;
    padding: 0 24px;
}

.practice-item li {
    width: 33.33%;
    line-height: 2;
    display: flex;
    align-items: flex-start;
}

.practice-item li.block {
    width: 100%;
}

.practice-item li .item-label {
    color: #999;
    width: 80px;
    flex-shrink: 0;
}


.app-timetitle {
    font-weight: bold;
    padding-top: 12px;
}

.app-timeline {
    height: 100px;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: auto;
    border-bottom: 1px solid #f0f0f0;
}

.app-timeline:last-child {
    border-bottom: none;
}

.app-timeline:before {
    content: '';
    position: absolute;
    height: 1px;
    background: #283bac;
    left: 0;
    right: 0;
    top: 35px;
}

.app-timeline li {
    text-align: center;
    position: relative;
    color: #283bac;
    cursor: pointer;
}

.app-timeline li b {
    display: block;
    line-height: 35px;
}

.app-timeline li span {
    display: block;
    line-height: 20px;
    padding-top: 10px;
    color: #333;
    font-size: 14px;
}

.app-timeline li em {
    display: block;
    line-height: 20px;
    font-style: normal;
    font-size: 14px;
}

.app-timeline li:before {
    content: ' ';
    width: 8px;
    height: 8px;
    position: absolute;
    left: 50%;
    margin-left: -4px;
    background: #283bac;
    border-radius: 50%;
    top: 31px;
}

.app-timeline li.active {
    color: #d72453;
}

.app-timeline li.active:after {
    content: ' ';
    position: absolute;
    height: 1px;
    background: #d72453;
    left: 0;
    right: 50%;
    top: 35px;
}

.app-timeline li.active:before {
    background: #d72453;
}

.app-timeline li.active span {
    color: #d72453;
}

.app-timeline li.active em:before {
    content: '最新截止时间';
}

.app-timeline li.active .line {
    position: absolute;
    content: ' ';
    height: 1px;
    background: #d72453;
    right: 50%;
    top: 35px;
}

.app-timeline li .alt {
    position: absolute;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    padding: 12px;
    top: 36px;
    right: 50%;
    background: #fff;
    font-size: 14px;
    color: #999;
    text-align: left;
    display: none;
}

.app-timeline li .alt i {
    display: block;
    white-space: nowrap;
}

.app-timeline li .alt i:first-child {
    font-weight: bold;
}

.app-timeline li:hover .alt {
    display: block;
}

.newst-img {
    max-width: 100%;
    margin: auto;
    display: block;
}

.newst-intro {
    padding: 24px;
    border-radius: 5px;
    background: #f4f8fc;
    margin-bottom: 12px;
}


.list-block {
    border-radius: 5px;
}

.list-block a {
    display: flex;
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.list-block a .logo {
    width: 60px;
    height: 60px;
    border-radius: 5px;
}

.list-block a .logo img {
    width: 60px;
    height: 60px;
}

.list-block a .intro {
    width: 100%;
    padding-left: 24px;
}

.list-block a .intro .en_name {
    color: #666;
    font-size: 14px;
}

.list-block a .intro .tags {
    display: flex;
    padding-top: 12px;
    flex-wrap: wrap;
}

.list-block a .intro .count {
    font-size: 14px;
}

.list-block a .intro .count b {
    color: #283bac;
    font-size: 18px;
}

.list-block a .intro .tags span {
    display: block;
    color: #283bac;
    background: #fff;
    border: 1px solid #283bac;
    font-size: 12px;
    line-height: 1.5;
    padding: 0 18px;
    border-radius: 20px;
    margin-right: 12px;
}

.list-block a .rank {
    color: #283bac;
    white-space: nowrap;
    font-size: 18px;
}

.limit-content{
    position: relative;
}
.limit-content.limit{
    height: 122px;
}
.limit-content.limit-course{
    height: 190px;
}

.limit-content .limit-bg{
    background: linear-gradient(to bottom, transparent, white, white);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    text-align: center;
    position: absolute;
    bottom: -24px;
    left: -24px;
    right: -24px;
    z-index: 2;
    padding: 24px 0 48px 0;
    display: none;
}
.limit-content .limit-login a{
    display: block;
    width: 100px;
    margin: auto;
    background: #283bac;
    color: #fff;
    padding: 0 12px;
    border-radius: 20px;
    line-height: 30px;
    font-size: 14px;
}

.limit-content.limit .limit-bg,
.limit-content.limit-course .limit-bg{
    display: block;
}