* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 14px;
    font-family:  "-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif";
    box-sizing: border-box;
}

html,
body {
    position: relative;
    width: 100%;
    height: 100%;
    color: #333333;
     
}

a {
    color: #333333;
    text-decoration: none;
}

a:visited,
a:hover {
    color: inherit;
}

.container {
    width: 1200px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    /*bottom: 100px;*/
}

.container1 {
    position: relative;
    /*bottom: 60px;*/
    padding-top: 20px;
}

.bg-gray {
    background: #f6f8fa;
}

/* ================================= */
/* 头部 */
/* ================================= */

header {
    position: relative;
    height: 64px;
    background: #ffffff;
}

header .nav {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

header .nav .logo img {
    width: 158px;
    height: auto;
}

header .nav .menus {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

header .nav .menus .item {
    margin: 0 15px;
    font-size: 16px;


    color: #333333;
}

header .nav .menus .item:hover,
header .nav .menus .item.active {
    color: #ff4027;
}

header .search {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    width: 400px;
    height: 36px;
    border: 1px solid #ff4027;
    border-radius: 18px;
}

header .search .list {
    position: relative;
    width: 100px;
    height: 34px;
    cursor: pointer;
}

header .search .list .caption {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 34px;
    border-radius: 17px;
}

header .search .list .caption .text {
    font-size: 14px;
    width: 37px;

    color: #333333;
}

header .search .list .caption i {
    margin-left: 8px;
    font-size: 14px;
}

header .search .list .caption i.up {
    display: none;
    color: #ff4027;
}

header .search .list .dropdown {
    display: none;
    position: absolute;
    top: 34px;
    left: 3px;
    width: 90px;
    padding: 5px 0;
    background: transparent;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    text-align: center;
    z-index: 1000;
}

header .search .list .dropdown .dropdown-item {
    width: 80px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #ffffff;
    font-size: 14px;


    cursor: pointer;
}

header .search .list .dropdown .dropdown-item:hover {
    background: #f5f5f4;
    color: #ff4027;
}

header .search .list:hover .dropdown {
    display: block;
}

header .search .list:hover .caption i.down {
    display: none;
}

header .search .list:hover .caption i.up {
    display: block;
}

header .search input {
    flex: 1;
    min-width: 0;
    height: 34px;
    padding: 0 14px;
    border: 1px solid transparent;
}

header .search .btn {
    width: 75px;
    height: 36px;
    line-height: 36px;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    background: #ff4027;
    font-size: 16px;


    color: #ffffff;
    text-align: center;
    cursor: pointer;
}

header .user {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    cursor: pointer;
}

header .user a:hover {
    color: #ff4027;
}

header .user img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    vertical-align: middle;
}

header .user .name {
    max-width: 160px;
    font-size: 16px;
    font-family: monospace;

    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

header .links {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

header .links .link {
    height: 28px;
    line-height: 28px;
    font-size: 14px;
    margin-right: 16px;

    color: #333333;
}

header .links .link:last-child {
    margin-right: 0;
}

header .links .link a.red {
    color: #ff4027;
}

header .links .divider {
    width: 1px;
    height: 16px;
    margin: 0 16px;
    background: #e2e2e2;
}

/* ================================= */
/* 底部 */
/* ================================= */

footer {
    background: #ffffff;
}

footer .information {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid #dfdfdf;
}

footer .links {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
}

footer .links .list {
    margin-right: 0px;
}

footer .links .list:last-child {
    margin-right: 0;
}

footer .links .list .title {
    margin-bottom: 12px;
    font-size: 16px;

    
    color: #333333;
}

footer .links .list .link {
    display: block;
    line-height: 28px;
    font-size: 14px;


    color: #999999;
}

footer .contact {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding: 10px 50px 0 0;
}

footer .contact i {
    margin-bottom: 8px;
    font-size: 44px;
    color: #ff4027;
}

footer .contact .tip {
    line-height: 20px;
    margin-bottom: 4px;
    font-size: 14px;


    color: #999999;
}

footer .contact .tel {
    line-height: 22px;
    font-size: 16px;

    
    color: #333333;
}

footer .line {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    /*padding: 16px 0 28px;*/
    height: 54px;
    line-height: 54px;
}

footer .line div {
    line-height: 28px;
    margin: 0 14px;
    font-size: 14px;


    color: #a8a8a8;
}

/* ================================= */
/* 加载更多 */
/* ================================= */

.more {
    height: 60px;
    line-height: 60px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    font-size: 16px;


    color: #999999;
    text-align: center;
    cursor: pointer;
}

.more:hover {
    color: #ff4027;
    border: 1px solid #ff4027;
}

/* ================================= */
/* 右侧固定栏 */
/* ================================= */

.fixed-nav {
    position: fixed;
    top: calc(50% - 154px);
    right: 0;
    z-index: 1000;
}

.fixed-nav .title {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(180deg, #ff4027 0%, #ff5c45 100%);
    border-radius: 16px 16px 0px 0px;
}

.fixed-nav .title .dot {
    width: 8px;
    height: 8px;
    margin-bottom: 8px;
    border-radius: 50%;
    background: #ffffff;
}

.fixed-nav .title .text {
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    font-family: -apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;
    font-weight: 600;
    color: #ffffff;
}

.fixed-nav .item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 50px;
    background: #ffffff;
    border-left: 1px solid #e7e8eb;
    border-right: 1px solid #e7e8eb;
    border-bottom: 1px solid #e7e8eb;
    cursor: pointer;
}

.fixed-nav .item i {
    font-size: 24px;
    color: #888888;
}

.fixed-nav .item:hover i {
    color: #ff4027;
}

.fixed-nav .item .label {
    display: none;
    position: absolute;
    top: 13px;
    right: 61px;
    width: 92px;
    height: 30px;
    line-height: 30px;
    background: #ff4027;
    font-size: 16px;

    
    color: #ffffff;
    text-align: center;
    z-index: 1000;
}

.fixed-nav .item .label.long {
    width: 142px;
}

.fixed-nav .item .label::before {
    content: "";
    position: absolute;
    right: -14px;
    top: 8px;
    border: 7px solid transparent;
    border-left: 7px solid #ff4027;
}

.fixed-nav .item:hover .label {
    display: block;
}

.fixed-nav .item .label .qr {
    position: absolute;
    right: 0;
    bottom: 38px;
    width: 92px;
    height: 92px;
}

/* ================================= */
/* 轮播图 */
/* ================================= */

.banner {
    height: 320px;
}

.banner .section-swiper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.banner .section-swiper .swiper-slide {
    width: 100%;
    height: 400px;
    background-color: #ececec;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* ================================= */
/* 首页  主体部分 */
/* ================================= */

.body-main {
    padding: 20px 0 70px;
    padding-top: 0px;;
    padding-bottom: 0px;
}

.body-main .section {
    margin-bottom: 0px;

}

.body-main .section.plain {
    margin-top: 28px
}

.body-main .section:last-child {
    margin-bottom: 0;
}

.body-main .section.full {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 0px 0px 0px;
    /*background: #ffffff;*/
    border-radius: 4px;
}

/* 新闻 & 通知 */
.body-main .zone.zone1 {
    width: 100%;
}

.body-main .zone.zone2 {
    width: 380px;
}

.body-main .zone .zone-title {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.body-main .zone .zone-title .text {
    line-height: 33px;
    font-size: 24px;
    font-family: -apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;
    font-weight: 600;
    color: #333333;
}

.body-main .zone .zone-title .link {
    line-height: 20px;
    font-size: 14px;

    /**/
    color: #999999;
}

.body-main .zone .zone-title .link:hover {
    color: #ff4027;
}

.body-main .zone .zone-content {
    width: 100%;
}
.body-main .zone .zone-content .news-list.news-list1{
    
}
.body-main .zone .zone-content .news-list {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    min-height: 467px;
    background: #FFFFFF;
    border-radius: 4px;
}

.body-main .zone .zone-content .news-list .news-item {
    display: flex;
    flex-flow: row nowrap;
    /*align-items: center;*/
    max-width: 400px;
    min-width: 400px;
    height: 233px;
    padding: 30px;
}


.body-main .zone .zone-content .news-list .news-item .cover {
    width: 120px;
    height: 100px;
    margin-right: 10px;
    background-color: #ececec;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.body-main .zone .zone-content .news-list .news-item .info {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    width: 400px;
    /*justify-content: space-between;*/
}

.body-main .zone .zone-content .news-list .news-item .info .news-title {
    width: 220px;
    height: 22px;
    line-height: 22px;
    font-size: 14px;

    
    color: #333333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.body-main .zone .zone-content .news-list .news-item .info .news-title1 {
    line-height: 22px;
    font-size: 16px;
    font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;;
    font-weight: 600;
    color: #333333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 6px;
    min-height: 22px;
}

.body-main .zone .zone-content .news-list .news-item .info .news-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    width: 220px;
    height: 44px;
    line-height: 22px;
    font-size: 13px;


    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.body-main .zone .zone-content .news-list .news-item .date {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin-right: 12px;
    background: #f5f5f4;
}

.body-main .zone .zone-content .news-list .news-item .date .day {
    font-size: 36px;
    font-family: -apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;
    font-weight: 600;
    color: #ff4027;
}

.body-main .zone .zone-content .news-list .news-item .date .moth {
    font-size: 18px;

    color: #999999;
}

.body-main .zone .zone-content .news-list .news-item .info .news-time {
    font-size: 14px;


    color: #999999;
}

.body-main .zone .zone-content .news-list .news-item:hover .info .news-title {
    color: #ff4027;
}

.body-main .zone .zone-content .notice-list .list-item {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-left: 12px;
}

.body-main .zone .zone-content .notice-list .list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: #9c9c9c;
}

.body-main .zone .zone-content .notice-list .list-item:last-child {
    margin-bottom: 0;
}

.body-main .zone .zone-content .notice-list .list-item .text {
    flex: 1;
    min-width: 0;
    height: 20px;
    line-height: 20px;
    font-size: 14px;


    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.body-main .zone .zone-content .notice-list .list-item .time {
    width: 100px;
    line-height: 20px;
    font-size: 14px;


    color: #999999;
    text-align: right;
}

.body-main .zone .zone-content .notice-list .list-item:hover .text {
    color: #ff4027;
}

/* 教师 */
.body-main .zone .zone-content .teacher-list {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
}

.body-main .zone .zone-content .teacher-list .teacher-item {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    width: 227px;
    height: 235px;
    margin: 0 16px 16px 0;
    padding: 20px 12px 0;
    background: #ffffff;
    border-radius: 4px;
}

.body-main .zone .zone-content .teacher-list .teacher-item:hover {
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.1);
}

.body-main .zone .zone-content .teacher-list .teacher-item:nth-child(5n + 0) {
    margin-right: 0;
}

.body-main .zone .zone-content .teacher-list .teacher-item .avatar {
    width: 115px;
    height: 140px;
    margin-bottom: 10px;
    background-color: #ececec;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.body-main .zone .zone-content .teacher-list .teacher-item .teacher-title {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
    flex-wrap: wrap;
}

.body-main .zone .zone-content .teacher-list .teacher-item .teacher-title span {
    margin-bottom: 5px;
}

.body-main
.zone
.zone-content
.teacher-list
.teacher-item
.teacher-title
.name {
    height: 20px;
    line-height: 20px;
    margin-right: 8px;
    font-size: 16px;
    font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;
    font-weight: 600;
}

.body-main .zone .zone-content .teacher-list .teacher-item .teacher-title .job {
    flex: 1;
    min-width: 0;
    height: 20px;
    line-height: 20px;
    margin-right: 14px;
    font-size: 14px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.body-main .zone .zone-content .teacher-list .teacher-item .tags {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
}

.body-main .zone .zone-content .teacher-list .teacher-item .tags .tag {
    height: 18px;
    line-height: 18px;
    padding: 0 3px;
    border-radius: 2px;
    font-size: 14px;
    font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-right: 4px;
}

.body-main
.zone
.zone-content
.teacher-list
.teacher-item
.tags
.tag:last-child {
    margin-right: 0;
}

.body-main .zone .zone-content .teacher-list .teacher-item .tags .tag.yellow {
    background: #f5a040;
}

.body-main .zone .zone-content .teacher-list .teacher-item .tags .tag.red {
    background: #ff6958;
}

.body-main .zone .zone-content .teacher-list .teacher-item .teacher-intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: 66px;
    line-height: 22px;
    font-size: 14px;


    color: #666666;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
}

/* 企业 */
.body-main .zone .zone-content .company-list {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
}

.body-main .zone .zone-content .company-list .company-item {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    width: 285px;
    height: 216px;
    margin: 0 20px 15px 0;
    padding: 20px 15px 0;
    background: #ffffff;
    border-radius: 4px;
}

.body-main .zone .zone-content .company-list .company-item:hover {
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.1);
}

.body-main .zone .zone-content .company-list .company-item:nth-child(4n + 0) {
    margin-right: 0;
}

.body-main .zone .zone-content .company-list .company-item .avatar {
    width: 100%;
    height: 145px;
    background: #fff;
    margin-bottom: 13px;
    background-color: #fff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.body-main .zone .zone-content .company-list .company-item .avatar img {
    object-fit: contain;
}

.body-main .zone .zone-content .company-list .company-item .company-title {
    height: 22px;
    line-height: 22px;
    margin-bottom: 12px;
    font-size: 16px;
    font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;
    font-weight: 600;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.body-main .zone .zone-content .company-list .company-item .company-title.company-title1 {
    height: auto;
    font-size: 14px;
     font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;

    color: #666666;
    line-height: 22px;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.body-main .zone .zone-content .company-list .company-item .company-intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: 66px;
    line-height: 22px;
    font-size: 14px;


    color: #666666;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
}

/* ================================= */
/* 帮助中心 */
/* ================================= */

.body-help {
    padding: 20px 50px;
}

.body-help .helps {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: space-between;
}

.body-help .helps .menu {
    width: 280px;
    height: 400px;
    background: #ffffff;
    border-radius: 4px;
}

.body-help .helps .menu .title {
    position: relative;
    height: 78px;
    line-height: 78px;
    padding: 0 42px;
    border-bottom: 1px solid #eeeeee;
    font-size: 24px;
    font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;
    font-weight: 600;
    color: #333333;
}

.body-help .helps .menu .title::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 27px;
    width: 3px;
    height: 24px;
    background: #ff4027;
}

.body-help .helps .menu .list .item {
    display: block;
    height: 62px;
    line-height: 62px;
    padding: 0 30px;
    border-bottom: 1px solid #eeeeee;
    font-size: 18px;


    color: #333333;
    cursor: pointer;
}

.body-help .helps .menu .list .item:hover,
.body-help .helps .menu .list .item.active {
    background: #f5f5f4;
    color: #ff4027;
}

.body-help .helps .section {
    width: 890px;
    height: auto;
    background: #ffffff;
    border-radius: 4px;
}

.body-help .helps .section .title {
    height: 64px;
    padding: 0 30px;
    border-bottom: 1px solid #eeeeee;
}

.body-help .helps .section .title .text {
    display: inline-block;
    height: 64px;
    line-height: 64px;
    border-bottom: 3px solid #ff4027;
    font-size: 18px;

    
    color: #333333;
}

.body-help .helps .section .content {
    padding: 18px 30px;
}

.body-help .helps .section .content .list {
    padding-bottom: 20px;
}

.body-help .helps .section .content .list .item {
    position: relative;
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0 0 0 16px;
    font-size: 14px;


    color: #282828;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.body-help .helps .section .content .list .item:hover {
    color: #ff4027;
}

.body-help .helps .section .content .list .item::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    width: 4px;
    height: 4px;
    background: #ff4027;
}

.article {
    padding: 20px 0;
}

.article h1 {
    height: 50px;
    line-height: 50px;
    margin-bottom: 30px;
    font-size: 36px;
    font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;
    font-weight: 600;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article p {
    line-height: 36px;
    margin-bottom: 20px;
    font-size: 18px;


    color: #666a75;
}

.article img {
    display: block;
    width: 100%;
    margin-bottom: 30px;
}

/* ================================= */
/* 主界面列表页 */
/* ================================= */

.sub-banner {
    height: 260px;
    width: 100%;
    background-color: #ececec;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.body-list {
    padding: 0 0 50px;
}

.body-list .conditions {
    position: relative;
    top: -43px;
}

.body-list .conditions .header {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 85px;
    margin-bottom: 10px;
    padding: 0 32px;
    background: #fff;
}

.body-list .conditions .header .search {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    width: 730px;
}

.body-list .conditions .header .search .key {
    margin-right: 10px;
    font-size: 16px;

    
    color: #333333;
}

.body-list .conditions .header .search input[type='text'] {
    flex: 1;
    min-width: 0;
    line-height: 20px;
    margin-right: 10px;
    padding: 8px 12px;
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #eeeeee;
    font-size: 14px;
    color: #333333;
    max-width: 230px;
}

.body-list .conditions .header .search .btn#chongzhi {
    background: #FFFFFF;
    border: 1px solid #eee;
    margin-right: 10px;
    color: #333333;
    margin-left: 10px;
}

.body-list .conditions .header .search .btn#chongzhi:hover {
    color: #ff4027;
    border-color: #ff402742;
    background: #ff402742;
}

.body-list .conditions .header .search .btn {
    width: 80px;
    height: 36px;
    line-height: 36px;
    background: #ff4027;
    border-radius: 4px;
    font-size: 16px;


    color: #ffffff;
    text-align: center;
    cursor: pointer;
}

.body-list .conditions .header .search .btn:hover {
    opacity: 0.9;
}

.body-list .conditions .header .stats {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.body-list .conditions .header .stats .stat {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.body-list .conditions .header .stats .stat i {
    margin-right: 10px;
    font-size: 36px;
}

.body-list .conditions .header .stats .stat .info .tip {
    font-size: 14px;


    color: #333333;
}

.body-list .conditions .header .stats .stat .info .count {
    line-height: 1;
    font-size: 30px;
    height: 42px;

    color: #ff4027;
}

.body-list .conditions .header .stats .divider {
    height: 50px;
    width: 1px;
    margin: 0 40px;
    background: #c8c9ca;
}

.body-list .conditions .filters {
    background: #ffffff;
    border: 1px solid #eeeeee;
}

.body-list .conditions .filters .filter {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    width: 100%;
    padding: 20px 40px 14px;
    border-bottom: 1px solid #eeeeee;
}

.body-list .conditions .filters .filter .key {
    width: 100px;
    line-height: 22px;
    margin-right: 15px;
    font-size: 16px;

    
    color: #333333;
}

.body-list .conditions .filters .filter .val {
    flex: 1;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    min-width: 0;
}

.body-list .conditions .filters .filter .val .char {
    height: 22px;
    line-height: 22px;
    padding: 0 10px;
    font-size: 16px;

    
    color: #666666;
    cursor: pointer;
}

.body-list .conditions .filters .filter .val .text {
    height: 22px;
    line-height: 22px;
    padding: 0 10px;
    margin-right: 10px;
    margin-bottom: 6px;
    font-size: 16px;

    
    color: #666666;
    cursor: pointer;
}

.body-list .conditions .filters .filter .val .char:hover,
.body-list .conditions .filters .filter .val .char.active,
.body-list .conditions .filters .filter .val .text:hover,
.body-list .conditions .filters .filter .val .text.active {
    color: #ff4027;
}

.body-list .company-list {
    margin-bottom: 20px;
    position: relative;
    top: -33px;
}

.body-list .company-list .company-item {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    height: 210px;
    padding: 30px;
    margin-bottom: 10px;
    background: #ffffff;
    box-shadow: 0px -1px 0px 0px #eeeeee;
    cursor: pointer;
}

.body-list .company-list .company-item:hover {
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.1);
}

.body-list .company-list .company-item .cover {
    width: 280px;
    height: 150px;
    margin-right: 20px;
    background-color: #fff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.body-list .company-list .company-item .cover img {
    object-fit: contain;
}

.body-list .company-list .company-item .info {
    flex: 1;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    /*justify-content: space-between;*/
    min-width: 0;
    height: 150px;
}

.body-list .research-list {
    padding: 15px 30px;
    background: #ffffff;
    position: relative;
    top: -33px;
}

.body-list .company-list .company-item .info .company-title {
    height: 25px;
    line-height: 25px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.body-list .company-list .company-item .info .company-title.company-title2 {
    height: 25px;
    line-height: 25px;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.body-list .company-list .company-item .info .intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    height: 50px;
    line-height: 25px;
    font-size: 14px;


    color: #333333;
}

.body-list .company-list .company-item .info .tags {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.body-list .company-list .company-item .info .tags .tag {
    width: 30%;
    margin-top: 5px;
    font-size: 14px;


    color: #333333;
}

.body-list .teacher-list {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    position: relative;
    top: -33px;
}

.body-list .teacher-list .teacher-item {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    width: 224px;
    height: 235px;
    margin: 0 20px 16px 0;
    padding: 20px 12px 0;
    background: #ffffff;
    border-radius: 4px;
}

.body-list .teacher-list .teacher-item:hover {
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.1);
}

.body-list .teacher-list .teacher-item:nth-child(5n + 0) {
    margin-right: 0;
}

.body-list .teacher-list .teacher-item .avatar {
    width: 115px;
    height: 140px;
    margin-bottom: 10px;
    background-color: #ececec;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.body-list .teacher-list .teacher-item .teacher-title {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
}

.body-list .teacher-list .teacher-item .teacher-title .name {
    height: 20px;
    line-height: 20px;
    margin-right: 8px;
    font-size: 16px;
    font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;
    font-weight: 600;
}

.body-list .teacher-list .teacher-item .teacher-title .job {
    flex: 1;
    min-width: 0;
    height: 20px;
    line-height: 20px;
    margin-right: 14px;
    font-size: 14px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.body-list .teacher-list .teacher-item .tags {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
}

.body-list .teacher-list .teacher-item .tags .tag {
    height: 18px;
    line-height: 18px;
    padding: 0 3px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-right: 4px;
}

.body-list .teacher-list .teacher-item .tags .tag:last-child {
    margin-right: 0;
}

.body-list .teacher-list .teacher-item .tags .tag.yellow {
    background: #f5a040;
}

.body-list .teacher-list .teacher-item .tags .tag.red {
    background: #ff6958;
}

.body-list .teacher-list .teacher-item .teacher-intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: 66px;
    line-height: 22px;
    font-size: 14px;


    color: #666666;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
}

.research-list {
    /*padding: 15px 0;*/
    background: #ffffff;
}

.research-list .research-item {
    padding: 10px 0;
    border-bottom: 1px solid #eeeeee62;
    cursor: pointer;
}

.research-list .research-item .title {
    line-height: 24px;
    margin-bottom: 5px;
    font-size: 14px;

    font-weight: 600;
    color: #333333;
}

.research-list .research-item .intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    height: 84px;
    line-height: 28px;
    margin-bottom: 18px;
    font-size: 14px;


    color: #666666;
}

.research-list .research-item .tags {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-top: 0px;
}

.research-list .research-item .tags .tag {
    height: 22px;
    line-height: 22px;
    margin-right: 35px;
    font-size: 14px;


    color: #666666;
}

.research-list .research-item:hover .title {
    color: #ff4027;
}

.research-list .research-item:last-child {

}

.body-list .wrapper {
    padding: 30px 0;
    background: #ffffff;
}

/* ================================= */
/* 新闻通知 */
/* ================================= */

.body-news {
    padding: 0 0 50px;
}

.body-news .tabs {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    padding: 20px 0;
}

.body-news .tabs .title {
    margin-right: 60px;
    font-size: 24px;

    
    color: #333333;
}

.body-news .tabs .tab {
    width: 80px;
    height: 32px;
    line-height: 32px;
    margin-right: 24px;
    text-align: center;
    border-radius: 16px;
    font-size: 14px;


    color: #666666;
    cursor: pointer;
}

.body-news .tabs .tab:hover {
    color: #ff4027;
}

.body-news .tabs .tab.active {
    background: #ff4027;
    border-radius: 16px;
    color: #ffffff;
}

.body-news .panel {
    padding: 20px 100px;
    background: #ffffff;
}

.body-news .panel .news-item {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    height: 210px;
    padding: 30px 0;
    margin-bottom: 10px;
    background: #ffffff;
    box-shadow: 0px 1px 0px 0px #eeeeee;
    cursor: pointer;
}

.body-news .panel .news-item:last-child {
    box-shadow: none;
}

.body-news .panel .news-item .cover {
    width: 180px;
    height: 150px;
    margin-right: 20px;
    background-color: #ececec;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.body-news .panel .news-item .info {
    flex: 1;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: space-between;
    min-width: 0;
    height: 150px;
}

.body-news .panel .news-item .info .title {
    height: 25px;
    line-height: 25px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.body-news .panel .news-item .info .intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    height: 50px;
    line-height: 25px;
    font-size: 14px;


    color: #333333;
}

.body-news .panel .news-item .info .time {
    font-size: 14px;

    
    color: #999999;
}

.body-news .panel .news-item:hover .info .title {
    color: #ff4027;
}

.body-news .panel .notice-item {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    /*height: 160px;*/
    /*padding: 30px 0;*/
    margin-bottom: 10px;
    background: #ffffff;
    box-shadow: 0px 1px 0px 0px #eeeeee;
    cursor: pointer;
}

.body-news .panel .notice-item:last-child {
    /*box-shadow: none;*/
}

.body-news .panel .notice-item .date {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin-right: 12px;
    background: #f5f5f4;
}

.body-news .panel .notice-item .date .day {
    font-size: 36px;
    font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;
    font-weight: 600;
    color: #ff4027;
}

.body-news .panel .notice-item .date .month {
    font-size: 18px;


    color: #999999;
}

.body-news .panel .notice-item .info {
    flex: 1;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    min-width: 0;
    /*height: 100px;*/
}
.body-news .panel .notice-item .info .title .month{
    color: #666;
}
.body-news .panel .notice-item .info .title {
    margin-bottom: 10px;
    font-size: 16px;
    color: #3f3a37;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.body-news .panel .notice-item .info .title:hover{
    color: #ff4027;
}
.body-news .panel .notice-item .info .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: 50px;
    line-height: 25px;
    font-size: 14px;


    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

/* ================================= */
/* 主界面详情页 */
/* ================================= */

.body-detail {
    padding: 20px 0 50px;
    /*height: calc(100% - 136px);*/
}

/* 新闻详情 & 科研详情 */
.body-detail .news {
    padding: 50px;
    background: #ffffff;
    border-radius: 4px;
    padding-top: 20px;
    min-height: 490px;
}

.body-detail .news .title {
    /*line-height: 50px;*/
    margin-bottom: 20px;
    font-size: 18px;
    font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;
    font-weight: 600;
    color: #333333;
    text-align: center;
}

.body-detail .news .date {
    height: 20px;
    line-height: 20px;
    margin-bottom: 30px;
    font-size: 14px;
    font-family: ArialMT;
    color: #adadad;
    text-align: center;
}

.body-detail .news .social {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.body-detail .news .social .icon {
    margin: 0 6px;
    cursor: pointer;
}

.body-detail .news .social .icon i {
    font-size: 28px;
    color: #999999;
}

.body-detail .news .content p {
    /*margin-bottom: 30px;*/
    /*line-height: 36px;*/
    /*font-size: 18px;*/
    
    
    /*color: #666a75;*/
}

.body-detail .news .content img {
    display: block;
    max-width: 100%;
    margin: 0 auto 30px;
}

.body-detail .news .form {
    padding: 30px 90px;
    border-top: 1px solid #eeeeee;
}

.body-detail .news .form .title {
    margin-bottom: 30px;
    font-size: 24px;

    
    color: #333333;
    text-align: left;
}

.body-detail .news .form .layui-form-item label {
    width: 130px;
}

.body-detail .news .form .layui-form-item .layui-input-block {
    margin-left: 150px;
}

/* 教师详情 */
.body-info {
    padding: 0 0 50px;
    min-height: calc(100% - 136px);
}

.body-info .info-content {
    position: relative;
}

.body-info .info-content .user {
    background: #ffffff;
    padding: 22px 0 28px;
    margin-bottom: 30px;
}

.body-info .info-content .user .breads {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-bottom: 30px;
}

.body-info .info-content .user .breads div {
    height: 20px;
    line-height: 20px;
    margin-right: 4px;
    font-size: 14px;

    
    color: #999999;
}

.body-info .info-content .user .breads .pre {
    color: #333333;
}

.body-info .info-content .user .profile {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
}

.body-info .info-content .user .profile .avatar {
    width: 180px;
    height: 220px;
    margin-right: 40px;
    background-color: #ececec;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.body-info .info-content .user .profile .info {
    flex: 1;
    min-width: 0;
    padding: 8px 0 0;
}

.body-info .info-content .user .profile .info .title {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-bottom: 20px;
}
.body-info .info-content .user .profile .info.info1 .title{
    margin-bottom: 5px;
}
.body-info .info-content .user .profile .info.info1 .jobs{
    margin-bottom:0;
}
.body-info .info-content .user .profile .info.info1  .control{
    margin-top: 5px;
}
.body-info .info-content .user .profile .info.info1{
    padding:0px;
}
.body-info .info-content .user .profile .info .title .name {
    margin-right: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
}

.body-info .info-content .user .profile .info .title .tag {
    height: 24px;
    line-height: 24px;
    padding: 0 8px;
    border-radius: 2px;
    font-size: 14px;
    
}

.body-info .info-content .user .profile .info .title .tag.red {
    background: #ff6958;
    color: #ffffff;
}

.body-info .info-content .user .profile .info .jobs {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-bottom: 10px;
}

.body-info .info-content .user .profile .info .jobs .job {
    height: 25px;
    line-height: 25px;
    margin-right: 80px;
    font-size: 14px;

    /**/
    color: #333333;
}

.body-info .info-content .user .profile .info .direct {
    /*margin-bottom: 20px;*/
    /*min-height: 96px;*/
}

.body-info .info-content .user .profile .info .direct .title {
    height: 28px;
    line-height: 28px;
    margin-bottom: 0px;
    font-size: 14px;

    /**/
    color: #333333;
}

.body-info .info-content .user .profile .info .direct .list {
    display: flex;
    flex-flow: wrap;
    align-items: center;
}

.body-info .info-content .user .profile .info .direct .item {
    height: 28px;
    line-height: 28px;
    margin-right: 10px;
    padding: 0 14px;
    border-radius: 2px;
    border: 1px solid #dddddd;
    font-size: 14px;
    margin-bottom: 10px;
    
    color: #333333;
}

.body-info .info-content .user .profile .info .control {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}

.body-info .info-content .user .profile .info .control .left {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.body-info .info-content .user .profile .info .control .left .btn {
    height: 36px;
    line-height: 36px;
    padding: 0 8px;
    margin-right: 15px;
    border-radius: 4px;
    font-size: 16px;

    
    color: #ffffff;
}

.body-info .info-content .user .profile .info .control .left .btn.fav {
    background: #ff4027;
}

.body-info .info-content .user .profile .info .control .left .btn.msg {
    background: #00c758;
}

.body-info .info-content .user .profile .info .control .left .btn i {
    font-size: 16px;
    color: #ffffff;
    margin-right: 5px;
}

.body-info .info-content .user .profile .info .control .socials {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.body-info .info-content .user .profile .info .control .socials .tip {
    margin-right: 10px;
    font-size: 14px;

    
    color: #666666;
}

.body-info .info-content .user .profile .info .control .socials .icon {
    margin-right: 12px;
}

.body-info .info-content .user .profile .info .control .socials .icon i {
    color: #999999;
    font-size: 28px;
}

/* 企业详情 */

.body-info .info-content .company .breads {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-bottom: 30px;
}

.body-info .info-content .company .breads div {
    height: 20px;
    line-height: 20px;
    margin-right: 4px;
    font-size: 14px;

    
    color: #999999;
}

.body-info .info-content .company .breads .pre {
    color: #333333;
}

.body-info .info-content .company {
    background: #ffffff;
    padding: 22px 0 28px;
    margin-bottom: 30px;
}

.body-info .info-content .company .container {
    background: #ffffff;
}

.body-info .info-content .company .profile {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
}

.body-info .info-content .company .profile .avatar {
    width: 420px;
    height: 225px;
    margin-right: 20px;
    background-color: #fff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.body-info .info-content .company .profile .avatar img {
    object-fit: contain;
}

.body-info .info-content .company .profile .info {
    flex: 1;
    min-width: 0;
}

.body-info .info-content .company .profile .info .title {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    height: 50px;
    line-height: 50px;

    font-size: 18px;

    font-weight: 600;
    color: #333333;
}
.body-info .info-content .company .profile .info .title.title1{
    height: 24px;
    line-height: 24px;
}
.body-info .info-content .company .profile .info .intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    height: 75px;
    line-height: 25px;
    font-size: 14px;


    color: #333333;
}

.body-info .info-content .company .profile .divider {
    height: 1px;
    margin: 18px 0;
    background: #eeeeee;
}

.body-info .info-content .company .profile .tags {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    line-height: 22px;
}

.body-info .info-content .company .profile .tags .tag {
    width: 30%;
    line-height: 24px;
    font-size: 14px;

    /**/
    color: #333333;
}

.body-info .info-content .company .controls {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0 0;
    width: 100%;
}

.body-info .info-content .company .controls .right ,.controlsRight{
    flex: 1;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    min-width: 0;
}
.controlsRight{
    margin-top: 10px;
}
.body-info .info-content .company .controls .right .btn,.controlsRight .btn{
    height: 36px;
    line-height: 36px;
    padding: 0 8px;
    margin-right: 15px;
    border-radius: 4px;
    font-size: 16px;

    
    color: #ffffff;
}

.body-info .info-content .company .controls .right .btn.fav ,.controlsRight .btn.fav {
    background: #ff4027;
}

.body-info .info-content .company .controls .right .btn.msg ,.controlsRight .btn.msg{
    background: #00c758;
}

.body-info .info-content .company .controls .right .btn i ,.controlsRight .btn i {
    font-size: 16px;
    color: #ffffff;
    margin-right: 5px;
}

.body-info .info-content .company .controls .socials {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    width: 440px;
}

.body-info .info-content .company .controls .socials .tip {
    margin-right: 10px;
    font-size: 14px;

    
    color: #666666;
}

.body-info .info-content .company .controls .socials .icon {
    margin-right: 12px;
}

.body-info .info-content .company .controls .socials .icon i {
    color: #999999;
    font-size: 28px;
}

/* 教师&企业 通用 */
.body-info .zone {
    margin-bottom: 30px;
    background: #ffffff;
}

.body-info .zone .tabs {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    height: 55px;
    padding: 0 30px;
    border-bottom: 1px solid #eeeeee;
}

.body-info .zone .tabs .tab {
    display: block;
    line-height: 53px;
    margin-right: 40px;
    border-bottom: 3px solid transparent;
    font-size: 16px;

    /**/
    color: #333333;
    cursor: pointer;
}

/*,.body-info .zone .tabs .tab:hover*/

.body-info .zone .tabs .tab.active {
    border-bottom: 3px solid #ff4027;
}

.body-info .zone .panel {
    padding: 30px;
    padding-top:15px;
    min-height: 237px;
}

.body-info .zone p {
    line-height: 32px;
    margin-bottom: 24px;
    font-size: 16px;


    color: #282828;
}

.body-info .comments {
    padding: 30px 50px;
    background: #ffffff;
}

.body-info .comments .submit {
    margin-bottom: 10px;
}

.body-info .comments .submit .layui-input-block {
    margin-left: 0;
}

.body-info .comments .submit .control {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}

.body-info .comments .submit .btn {
    height: 28px;
    line-height: 28px;
    padding: 0 30px;
    background: #ff4027;
    border-radius: 2px;
    border: 1px solid #ff4027;
    font-size: 14px;


    color: #ffffff;
    cursor: pointer;
}

.body-info .comments .submit .btn:hover {
    opacity: 0.9;
}

.body-info .comments .list .title {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-bottom: 30px;
}

.body-info .comments .list .title .text {
    margin-right: 12px;
    font-size: 18px;

    
    color: #202020;
}

.body-info .comments .list .title .count {
    font-size: 18px;

    
    color: #999999;
}

.body-info .comments .list .items .item {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #eeeeee;
}

.body-info .comments .list .items .item .avatar {
    width: 48px;
    height: 48px;
    margin-right: 20px;
    border-radius: 50%;
    background-color: #ececec;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.body-info .comments .list .items .item .info {
    flex: 1;
    min-width: 0;
}

.body-info .comments .list .items .item .info .name {
    line-height: 22px;
    margin-bottom: 14px;
    font-size: 15px;

    
    color: #202020;
}

.body-info .comments .list .items .item .info .text {
    line-height: 24px;
    margin-bottom: 15px;
    font-size: 14px;


    color: #202020;
}

.body-info .comments .list .items .item .info .addition {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}

.body-info .comments .list .items .item .info .addition .time {
    font-size: 13px;


    color: #92969c;
}

.body-info .comments .list .items .item .info .addition .control {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.body-info .comments .list .items .item .info .addition .control .like,
.body-info .comments .list .items .item .info .addition .control .commit {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-left: 30px;
    cursor: pointer;
}

.body-info .comments .list .items .item .info .addition .control .like:hover,
.body-info .comments .list .items .item .info .addition .control .commit:hover {
    opacity: 0.9;
}

.body-info .comments .list .items .item .info .addition .control .like i,
.body-info .comments .list .items .item .info .addition .control .commit i {
    margin-right: 4px;
    color: #cccccc;
    font-size: 14px;
}

.body-info .comments .list .items .item .info .addition .control .like .amount,
.body-info
.comments
.list
.items
.item
.info
.addition
.control
.commit
.amount {
    font-size: 13px;

    
    color: #92969c;
}

.body-info .comments .list .items .reply {
    position: relative;
    margin-top: 28px;
    padding: 0 20px;
    background: #fafafa;
    border-radius: 4px;
}

.body-info .comments .list .items .reply::before {
    content: "";
    position: absolute;
    top: -24px;
    left: 15px;
    border: 12px solid transparent;
    border-bottom: 12px solid #fafafa;
}

.body-info .comments .list .items .reply .item {
    padding: 15px 0;
}

.body-info .comments .list .items .reply .item:last-child {
    border-bottom: none;
}

.body-info .comments .list .load {
    line-height: 20px;
    padding: 30px 0;
    font-size: 14px;


    color: #ff4027;
    text-align: center;
    cursor: pointer;
}

/* ================================= */
/* 登录 */
/* ================================= */

.start {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding-top: 30px;
    background: #f6f8fa;
}

.start .red {
    color: #ff4027;
}

.start .footer {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    width: 600px;
    padding: 20px 0;
}

.start .footer div {
    line-height: 28px;
    margin: 0 4px;
    font-size: 14px;


    color: #999999;
}

.start .zone {
    width: 600px;
    height: 620px;
    background: #ffffff;
    box-shadow: 0px 4px 12px 0px rgba(63, 63, 63, 0.1);
    border-radius: 8px;
}

.start .zone .zone-title {
    height: 70px;
    line-height: 70px;
    background: #f9f9f9;
    border-radius: 4px 4px 0px 0px;
    font-size: 24px;

    
    color: #333333;
    text-align: center;
}

.start .zone .tabs {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    height: 70px;
    padding: 0 80px;
    border-bottom: 1px solid #eeeeee;
}

.start .zone .tabs .tab {
    line-height: 67px;
    margin-right: 70px;
    border-bottom: 3px solid transparent;
    font-size: 18px;
    text-decoration: none;
    
    color: #333333;
    cursor: pointer;
}

/*.start .zone .tabs .tab:hover,*/
.start .zone .tabs .tab.active {
    border-bottom: 3px solid #ff4027;
    text-decoration: none;
}

.start .form {
    padding: 40px 70px 40px 40px;
}

.start .zone .panel .form .control {
    padding: 20px 0 0 100px;
}

.start .zone .panel .social {
    padding: 0 50px 20px;
}

.start .zone .panel .social .line {
    height: 1px;
    width: 100%;
    margin-bottom: 30px;
    background: #eeeeee;
}

.start .zone .panel .social .tip,
.start .zone .panel .social .terms,
.start .zone .panel .form .terms a {
    height: 20px;
    font-size: 14px;


    color: #999999;
    line-height: 20px;
    text-align: center;
}

.start .zone .panel .social .icons {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    margin: 30px 0 20px;
}

.start .zone .panel .social .icons .icon {
    margin: 0 15px;
    cursor: pointer;
}

.start .zone .panel .social .icons .icon:hover {
    opacity: 0.9;
}

.start .zone .panel .social .icons .icon i {
    font-size: 40px;
}

.start .zone .panel .social .icons .icon i.wx {
    color: #28c445;
}

.start .zone .panel .social .icons .icon i.wb {
    color: #fb5555;
}

.start .zone .panel .social .icons .icon i.qq {
    color: #12b7f5;
}

.start .zone .panel .form.form-register .control {
    padding: 20px 0 0 150px;
}

.start .zone .panel .form .control .login {
    height: 45px;
    line-height: 45px;
    margin-bottom: 20px;
    background: #ff4027;
    box-shadow: 0px 3px 14px 0px rgba(255, 64, 39, 0.2);
    border-radius: 4px;
    font-size: 18px;

    
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

.start .zone .panel .form .control .login:hover {
    opacity: 0.9;
}

.start .zone .panel .form .control .tips {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.start.register .zone .panel .form .control .tips {
    justify-content: center;
}

.start .zone .panel .form .control .tips .terms,
.start .zone .panel .form .control .tips a {
    height: 20px;
    font-size: 14px;


    color: #999999;
    line-height: 20px;
}

.start .zone .panel .form .control .tips a.red {
    color: #ff4027;
}

.start .zone .panel .layui-form-label {
    width: 100px;
}

.start .zone .panel .layui-input-block {
    position: relative;
    margin-left: 100px;
}

.start .zone .panel .form-register .layui-form-label {
    width: 150px;
}
.start .zone .panel .form-register.form-register1 .layui-form-label {
    width: 175px;
}
.start .zone .panel .form-register .layui-input-block {
    position: relative;
    margin-left: 150px;
}
.start .zone .panel .form-register.form-register1 .layui-input-block {
    position: relative;
    margin-left: 175px;
}

.start .zone .panel .layui-input-block.input-prepend input {
    padding-left: 82px;
}

.start .zone .panel .layui-input-block.input-prepend .prepend {
    position: absolute;
    top: 9px;
    left: 12px;
    font-size: 14px;

    color: #999999;
}

.start .zone .panel .layui-input-block.input-append input[type="text"] {
    padding-right: 100px;
}

.start .zone .panel .layui-input-block.input-append .append {
    position: absolute;
    top: 9px;
    right: 12px;
    line-height: 20px;
    font-size: 14px;
    background: none;

    color: #ff4027;
    cursor: pointer;
}

.start .zone .panel .layui-input-block.input-capcha input {
    width: 230px;
}

.start .zone .panel .layui-input-block.input-capcha .capcha {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 88px;
    height: 38px;
    margin-left: 12px;
    cursor: pointer;
}

.start .zone .panel .layui-input-block.input-capcha .capcha img {
    width: 88px;
    height: 38px;
}

.start .zone .panel .layui-input-block .image {
    width: 320px;
    height: auto;
    margin-bottom: 15px;
}

.start .zone .panel .layui-input-block .image .lisence {
    width: 100%;
    height: auto;
}

.start .zone .panel .layui-input-block .upload {
    position: relative;
}

.start .zone .panel .layui-input-block .upload .text {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    width: 380px;
    height: 38px;
    line-height: 38px;
    background: #ffffff;
}

.start .zone .panel .layui-input-block .upload .text .btn {
    width: 90px;
    height: 36px;
    line-height: 34px;
    margin-right: 20px;
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #ff4027;
    font-size: 14px;


    text-align: center;
    color: #ff4027;
    cursor: pointer;
}

.start .zone .panel .layui-input-block .upload .text .tip {
    height: 22px;
    font-size: 14px;


    color: #999999;
    line-height: 22px;
}

.start .zone .panel .layui-input-block .upload input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 380px;
    height: 38px;
    z-index: 1;
    opacity: 0;
}

.start .zone .panel .verify {
    padding: 50px 70px 0;
}

.start .zone .panel .verify .tip,
.start .zone .panel .verify .resend {
    height: 20px;
    line-height: 20px;
    margin-bottom: 30px;
    font-size: 14px;


    color: #999999;
}

.start .zone .panel .verify .codes .input {
    width: 0;
    height: 0;
    border: none;
    color: transparent;
    opacity: 0;
    z-index: -1;
}

.start .zone .panel .verify .codes .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.start .zone .panel .verify .codes .wrap li {
    width: 60px;
    height: 70px;
    line-height: 40px;
    margin-right: 20px;
    padding: 15px 10px;
    border: 1px solid #ececec;
    background: #ffffff;
    text-align: center;
    list-style-type: none;
    font-size: 22px;


    color: #666666;
}

.start .zone .panel .verify .codes .wrap.blink li.active {
    border: 1px solid #ff4027;
}

/* ================================= */
/* 注册 */
/* ================================= */

/*.start.register {*/
/*    display: block;*/
/*    height: auto;*/
/*    min-height: 100%;*/
/*    padding: 50px 0;*/
/*}*/

.start .zone.register {
    width: 1200px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.start .zone.register .steps {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    padding: 50px 0 10px;
}

.start .zone.register .steps .step {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
}

.start .zone.register .steps .step .num {
    width: 32px;
    height: 32px;
    line-height: 30px;
    margin-right: 8px;
    border: 1px solid #cecece;
    border-radius: 50%;
    text-align: center;
    color: #cecece;
    font-size: 14px;


}

.start .zone.register .steps .step .text {
    font-size: 16px;


    color: #cecece;
}

.start .zone.register .steps .step.active .num {
    border: 1px solid #ff4027;
    background: #ff4027;
    color: #ffffff;
}

.start .zone.register .steps .step.active .text {
    font-size: 16px;

    
    color: #333333;
}

.start .zone.register .steps .line {
    width: 240px;
    height: 1px;
    background: #cecece;
}

.start .zone.register .panel {
    padding: 0 280px;
}

/*.start.register .footer {*/
/*    height: auto;*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*}*/

/* ================================= */
/* 个人中心 */
/* ================================= */

.body-center {
    padding: 20px 0 50px;
}

.body-center .center {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: space-between;
}

.body-center .center .side {
    width: 220px;
    background: #ffffff;
    border-radius: 4px;
}

.body-center .center .side .user {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding: 30px;
}

.body-center .center .side .user .avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    border-radius: 50%;
    background-color: #ececec;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.body-center .center .side .user .avatar .upload {
    position: relative;
    display: none;
    flex-flow: column-reverse nowrap;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
}

.body-center .center .side .user .avatar .upload .tip {
    position: relative;
    width: 80px;
    height: 20px;
    line-height: 20px;
    background: rgba(0, 0, 0, 0.7);
    font-size: 14px;


    color: #ffffff;
    text-align: center;
    z-index: 1;
}

.body-center .center .side .user .avatar .upload input {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0;
    z-index: 10;
}

.body-center .center .side .user .avatar:hover .upload {
    display: flex;
}

.body-center .center .side .user .name {
    height: 20px;
    line-height: 20px;
    margin-bottom: 8px;
    font-size: 14px;

    
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.body-center .center .side .user .tags {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    border: none;
}

.body-center .center .side .user .tags .tag {
    height: 20px;
    line-height: 20px;
    font-size: 14px;

    
    color: #999999;
}

.body-center .center .side .user .tags .divider {
    height: 14px;
    width: 1px;
    margin: 0 8px;
    background: #cecece;
}

.body-center .center .side .menu .item {
    display: block;
    height: 62px;
    line-height: 62px;
    padding: 0 30px;
    border-top: 1px solid #eeeeee62;
    font-size: 14px;
    /*padding-left: 50px;*/
    text-align: center;
    color: #333333;
    cursor: pointer;
}

.body-center .center .side .menu .item:hover,
.body-center .center .side .menu .item.active {
    color: #ff4027;
}

.body-center .center .side .menu .item.active {
    background: #f5f5f757;

}

.body-center .center .main {
    width: 960px;
    background: #ffffff;
    border-radius: 4px;
    min-height: 699px;
}

.body-center .center .main .tabs {
    display: flex;
    height: 55px;
    line-height: 55px;
    padding: 0 30px;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.body-center .center .main .tabs .tab {
    margin-right: 40px;
    border-bottom: 3px solid transparent;
    font-size: 14px;

    
    color: #333333;
    cursor: pointer;
}

.body-center .center .main .tabs .tab.active {
    border-bottom: 3px solid #ff4027;
}

/* 表单 */
.body-center .center .main .panel {
    padding: 20px 30px;
}

.body-center .center .main .panel .form {

}

.body-center .center .main .panel .form .layui-form-item label {
    width: 140px;
}

.body-center .center .main .panel .form .layui-form-item .layui-input-block {
    margin-left: 140px;
}

.body-center
.center
.main
.panel
.form
.layui-form-item
.layui-input-block
.image {
    width: 320px;
    height: auto;
    margin-bottom: 15px;
}

.body-center
.center
.main
.panel
.form
.layui-form-item
.layui-input-block
.image
.lisence {
    width: 100%;
    height: auto;
}

.body-center
.center
.main
.panel
.form
.layui-form-item
.layui-input-block
.upload {
    position: relative;
}

.body-center
.center
.main
.panel
.form
.layui-form-item
.layui-input-block
.upload
.text {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    width: 380px;
    height: 38px;
    line-height: 38px;
    background: #ffffff;
}

.body-center
.center
.main
.panel
.form
.layui-form-item
.layui-input-block
.upload
.text
.btn {
    width: 90px;
    height: 36px;
    line-height: 34px;
    margin-right: 20px;
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #ff4027;
    font-size: 14px;


    text-align: center;
    color: #ff4027;
    cursor: pointer;
}

.body-center
.center
.main
.panel
.form
.layui-form-item
.layui-input-block
.upload
.text
.tip {
    height: 22px;
    font-size: 14px;


    color: #999999;
    line-height: 22px;
}

.body-center
.center
.main
.panel
.form
.layui-form-item
.layui-input-block
.upload
input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 380px;
    height: 38px;
    z-index: 1;
    opacity: 0;
}

.body-center .center .main .panel .form .control {
    padding: 20px 0 0 110px;
    text-align: center;
    padding-left: 0px;
}

.body-center .center .main .panel .control .save {
    height: 36px;
    line-height: 36px;
    background: #ff4027;
    box-shadow: 0px 3px 14px 0px rgba(255, 64, 39, 0.2);
    border-radius: 4px;
    font-size: 16px;
    min-width: 120px;
    
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    margin-right: 20px !important;
}

.body-center .center .main .panel .control .save:hover {
    opacity: 0.9;
}

/* 教师收藏 */
.body-center .center .main .panel .teacher-list .item {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #eeeeee;
}

.body-center .center .main .panel .teacher-list .item:first-child {
    padding-top: 0px;
    margin-top: 10px;
}

.body-center .center .main .panel .teacher-list .item .avatar {
    width: 115px;
    height: 140px;
    margin-right: 20px;
    background-color: #fff;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.body-center .center .main .panel .teacher-list .item .info {
    flex: 1;
    min-width: 0;
}

.body-center .center .main .panel .teacher-list .item .info .title {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    /*margin-bottom: 15px;*/
}

.body-center .center .main .panel .teacher-list .item .info .title .name {
    height: 25px;
    line-height: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
}

.body-center .center .main .panel .teacher-list .item .info .title .name .badge {
    height: 28px;
    line-height: 28px;
    padding: 0 8px;
    border-radius: 2px;
    font-size: 13px;
    
    background: #ff6958;
    color: #ffffff;
    margin-left: 10px;
}

.body-center .center .main .panel .teacher-list .item .info .jobs .job {
    line-height: 24px;
    color: #999;
}

.body-center .center .main .panel .teacher-list .item .info .jobs .job span {
    /*border-radius: 3px;*/
    /*padding: 0 5px;*/
    /*border: 1px solid #ccc;*/
}
.body-center .center .main .panel .teacher-list .item .info .jobs .job span:after{
    content: '、';
}
.body-center .center .main .panel .teacher-list .item .info .jobs .job span:last-child:after{
    content: '';
}
.body-center .center .main .panel .teacher-list .item .info .title .remove {
    height: 28px;
    line-height: 28px;
    background: #ff4027;
    border-radius: 2px;
    font-size: 14px;


    color: #ffffff;
    text-align: center;
    cursor: pointer;
    padding: 0px 20px;
    border-radius: 4px;
}

.body-center
.center
.main
.panel
.teacher-list
.item
.info
.title
.remove:hover {
    opacity: 0.9;
    color: #fff !important;
}

.body-center .center .main .panel .teacher-list .item .info .intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    height: 88px;
    line-height: 22px;
    font-size: 14px;


    color: #666666;
}

/* 企业收藏 */
.body-center .center .main .panel .company-list .item {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #eeeeee;
}

.body-center .center .main .panel .company-list .item:first-child {
    padding-top: 0px;
    margin-top: 10px;
}

.body-center .center .main .panel .company-list .item .avatar {
    width: 280px;
    height: 150px;
    margin-right: 20px;
    background-color: #fff;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.body-center .center .main .panel .company-list .item .info {
    flex: 1;
    min-width: 0;
}

.body-center .center .main .panel .company-list .item .info .title {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0px;
}

.body-center .center .main .panel .company-list .item .info .title .name {
    height: 25px;
    line-height: 25px;
    font-size: 16px;
    font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;
    font-weight: 600;
    color: #333333;
}

.body-center .center .main .panel .company-list .item .info .tags {
    font-size: 13px;
    color: #999;
}

.body-center .center .main .panel .company-list .item .info .title .remove {
    /*width: 88px;*/
    height: 28px;
    line-height: 28px;
    background: #ff4027;
    border-radius: 2px;
    font-size: 14px;


    color: #ffffff;
    text-align: center;
    cursor: pointer;
    padding: 0px 20px;
    border-radius: 4px;
}

.body-center
.center
.main
.panel
.company-list
.item
.info
.title
.remove:hover {
    opacity: 0.9;
}

.body-center .center .main .panel .company-list .item .info .intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    /*height: 75px;*/
    line-height: 25px;
    /*margin-top: 10px;*/
    font-size: 14px;


    color: #999;
}

.body-center .center .main .panel .company-list .item .tags {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    line-height: 30px;
}

.body-center .center .main .panel .company-list .item .tag {
    width: 30%;
    line-height: 28px;
    font-size: 14px;


    color: #333333;
}

/* 消息中心 */
.body-center .center .main .panel .msg-list .msg {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    /*padding: 30px 0;*/
    border-bottom: 1px solid #eeeeee;
}

.body-center .center .main .panel .msg-list .msg .avatar {
    margin-right: 20px;
}

.body-center .center .main .panel .msg-list .msg .avatar i {
    font-size: 48px;
}

.body-center .center .main .panel .msg-list .msg .avatar i.green {
    color: #26c1a5;
}

.body-center .center .main .panel .msg-list .msg .avatar i.blue {
    color: #0073f5;
}

.body-center .center .main .panel .msg-list .msg .avatar img {
    position: relative;
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    border-radius: 50%;
    background-color: #ececec;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.body-center .center .main .panel .msg-list .msg .info {
    flex: 1;
    min-width: 0;
}

.body-center .center .main .panel .msg-list .msg .info .user {
    margin-bottom: 0px !important;
    height: 50px;
}

.body-center .center .main .panel .msg-list .msg .info .user,
.body-center .center .main .panel .msg-list .msg .info .title {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-bottom: 10px;
    color: #999;
    font-size: 16px;
}

.body-center .center .main .panel .msg-list .msg .info .user .name,
.body-center .center .main .panel .msg-list .msg .info .user .time {
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    /**/
    color: #999;
}

.body-center .center .main .panel .msg-list .msg .info .user .time {
    font-size: 13px;
    margin-left: 20px;
}

.body-center .center .main .panel .msg-list .msg .info .title .name {
    margin-right: 40px;
}

.body-center .center .main .panel .msg-list .msg .info .text {
    line-height: 25px;
    font-size: 14px;


    color: #333333;
}

/* 账号安全设置 */
.body-center .center .main .panel .setting-list .item {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 18px 0;
}

.body-center .center .main .panel .setting-list .item .key {
    width: 180px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;


    color: #999999;
    text-align: right;
}

.body-center .center .main .panel .setting-list .item .val {
    flex: 1;
    min-width: 0;
    line-height: 36px;
    padding: 0 40px;
    font-size: 14px;


    color: #333333;
}

.body-center .center .main .panel .setting-list .item .control {
    display: flex;
    flex-flow: row-reverse nowrap;
    align-items: center;
    justify-content: space-between;
    width: 170px;
}

.body-center .center .main .panel .setting-list .item .control .unbind,
.body-center .center .main .panel .setting-list .item .control .modify {
    width: 80px;
    height: 28px;
    line-height: 28px;
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #ff4027;
    font-size: 16px;


    color: #ff4027;
    text-align: center;
    cursor: pointer;
    border-right: 4px;
}

.body-center .center .main .panel .setting-list .item .control .unbind {
    border: 1px solid #eeeeee;
    color: #333333;
}

/* 科研需求 & 成果 */
.body-center .center .main .panel.panel-research {
    padding: 0 30px 30px;
}

.body-center .center .main .panel .list-control {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eeeeee;
}

.body-center .center .main .panel .list-control .delete {
    height: 34px;
    line-height: 32px;
    padding: 0 24px;
    margin-right: 20px;
    background: #fafafa;
    border-radius: 2px;
    border: 1px solid #e8e8e8;
    font-size: 14px;

    
    color: rgba(0, 0, 0, 0.65);
    cursor: pointer;
}

.body-center .center .main .panel .list-control .add {
    height: 34px;
    line-height: 32px;
    padding: 0 24px;
    background: #ff4027;
    border-radius: 2px;
    border: 1px solid #ff4027;
    font-size: 14px;

    
    color: #ffffff;
    cursor: pointer;
}

.body-center .center .main .panel .research-list .item {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 15px 0 12px;
    border-bottom: 1px solid #eeeeee;
    cursor: pointer;
}

.body-center .center .main .panel .research-list .item .check {
    width: 18px;
    margin-right: 15px;
}

.body-center .center .main .panel .research-list .item .info {
    flex: 1;
    min-width: 0;
}

.body-center .center .main .panel .research-list .item .info .title {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.body-center .center .main .panel .research-list .item .info .title {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0px;
}

.body-center .center .main .panel .research-list .item .info .title .name {
    flex: 1;
    min-width: 0;
    height: 24px;
    line-height: 24px;
    font-size: 14px;

    font-weight: 600;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.body-center .center .main .panel .research-list .item .info .title .control {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.body-center
.center
.main
.panel
.research-list
.item
.info
.title
.control
.edit,
.body-center
.center
.main
.panel
.research-list
.item
.info
.title
.control
.delete {
    height: 24px;
    line-height: 24px;
    margin-left: 20px;
    font-size: 14px;


    color: #ff4027;
    cursor: pointer;
}

.body-center .center .main .panel .research-list .item .info .intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    height: 52px;
    line-height: 26px;
    margin-bottom: 8px;
    font-size: 14px;


    color: #666666;
}

.body-center .center .main .panel .research-list .item .info .tags {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}
.body-center .center .main .panel .research-list .item .info .tags .tag .layui-badge-rim:after{
    content: '';
}
.layui-badge-rim{
    font-size: 14px !important;
}
.body-center .center .main .panel .research-list .item .info .tags .tag {
    height: 28px;
    line-height: 28px;
    /*margin-right: 80px;*/
    font-size: 14px;
    /*text-align: right;*/

    color: #666666;
}

/* LayUI样式 */
.my-class .layui-layer-btn .layui-layer-btn0 {
    background: #ff4027;
    border: 1px solid #ff4027;
}

.my-class .layui-form-radio:hover *,
.my-class .layui-form-radioed,
.my-class .layui-form-radioed > i {
    color: #ff4027;
}

.layer-form {
    height: 100%;
    padding: 30px 80px 30px 50px;
    overflow-y: auto;
}

.layer-form .layui-form-item label {
    width: 130px;
}

.layer-form .layui-form-item .layui-input-block {
    margin-left: 150px;
}

.layer-form .layui-form-item .layui-input-block .upload {
    position: relative;
}

.layer-form .layui-form-item .layui-input-block .upload .text {
    width: 200px;
    height: 38px;
    line-height: 38px;
    background: #ffffff;
}

.layer-form .layui-form-item .layui-input-block .upload input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    height: 38px;
    z-index: 1;
    opacity: 0;
}

.layer-form .layui-form-item .layui-input-block.input-prepend input {
    padding-left: 82px;
}

.layer-form .layui-form-item .layui-input-block.input-prepend .prepend {
    position: absolute;
    top: 9px;
    left: 12px;
    font-size: 14px;


    color: #999999;
}

.layer-form .layui-form-item .layui-input-block.input-append input {
    padding-right: 110px;
}

.layer-form .layui-form-item .layui-input-block.input-append .append {
    position: absolute;
    top: 9px;
    right: 12px;
    line-height: 20px;
    font-size: 14px;


    color: #ff4027;
    cursor: pointer;
}

.layer-form .layui-form-item .layui-input-block.input-capcha input {
    width: 220px;
}

.layer-form .layui-form-item .layui-input-block.input-capcha .capcha {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 88px;
    height: 38px;
    margin-left: 12px;
    cursor: pointer;
}

.layer-form .layui-form-item .layui-input-block.input-capcha .capcha img {
    width: 88px;
    height: 38px;
}

.layer-form .block-title {
    margin-bottom: 25px;
    font-size: 18px;

    
    color: rgba(0, 0, 0, 0.85);
}

.layer-form .block-list .item {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    border-bottom: 1px solid #eeeeee;
}

.layer-form .block-list .item .name {
    flex: 1;
    min-width: 0;
    height: 32px;
    line-height: 32px;
    margin-right: 30px;
    font-size: 16px;


    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.layer-form .block-list .item .btn {
    width: 80px;
    height: 32px;
    line-height: 32px;
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #ff4027;
    font-size: 14px;


    color: #ff4027;
    cursor: pointer;
    text-align: center;
}

.layer-register {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    padding: 44px 0 0;
}

.layer-register .register-item {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 80px;
    margin: 0 10px;
    border-radius: 8px;
    text-decoration: none;
}

.layer-register .register-item:hover {
}


.layer-register .register-item:first-child {
    /*background: #ffd9d4;*/
    /*border: 1px solid #ff4027;*/
    background: #FFD9D4;
    border-radius: 4px;
    border: 1px solid #FF4027;
}

.layer-register .register-item:last-child {
    /*background: #ffe7cb;*/
    /*border: 1px solid #ffaa44;*/
    background: #FFE7CB;
    border-radius: 4px;
    border: 1px solid #FFAA44;
}

.layer-register .register-item i {
    margin-right: 20px;
    font-size: 40px;
}

.layer-register .register-item .text {
    margin-left: 20px;
}

.layer-register .register-item .text {
    font-size: 18px;

    
    color: rgba(0, 0, 0, 0.85);
}

.input-validation-error {
    border: 1px solid #ff5722;
}

label.input-validation-error {
    color: red;
    border: none;
}

.preview {
    margin-bottom: 10px;
}

.preview img {
    max-height: 200px;
    max-width: 100%;
    margin-bottom: 5px;
    border: 1px solid #9c9c9c;
    border-radius: 5px;
}

.pagination {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.pagination .list {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}


.pagination .page {
    width: 32px;
    height: 32px;
    line-height: 30px;
    margin: 0 4px;
    background: #ffffff;
    border-radius: 2px;
    border: 1px solid #e8e8e8;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.65);
    text-align: center;
    cursor: pointer;
}

.pagination .page a {
    width: 32px;
    display: block;
}

.pagination .page a:hover,
.pagination .page.active {
    background: #ff4027;
    border: 1px solid #ff4027;
    color: #ffffff;
}

.pagination .page.disabled {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    color: #ccc;
}

.pagination .count {
    position: relative;
    width: 82px;
    height: 32px;
    line-height: 30px;
    margin-left: 10px;
    padding: 0 12px;
    background: #ffffff;
    border-radius: 2px;
    border: 1px solid #e8e8e8;
    cursor: pointer;
}

.pagination .count .caption {
    font-size: 14px;

    color: rgba(0, 0, 0, 0.65);
}

.pagination .count .drop {
    position: absolute;
    top: 30px;
    left: -1px;
    display: none;
    width: 82px;
    padding: 6px 0 0;
    border: 1px solid #e8e8e8;
    background: #ffffff;
}

.pagination .count .drop .item {
    height: 30px;
    line-height: 30px;
    padding: 0 12px;
    background: #ffffff;
    cursor: pointer;
}

.pagination .count .drop .item:hover {
    background: #f1f1f1;
}

.pagination .count:hover .drop {
    display: block;
}

.pagination .jump {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.pagination .jump .tip {
    font-size: 14px;

    color: rgba(0, 0, 0, 0.65);
}

.pagination .jump input {
    width: 48px;
    height: 32px;
    line-height: 22px;
    padding: 4px 10px;
    margin: 0 4px;
    background: #ffffff;
    border-radius: 2px;
    border: 1px solid #e8e8e8;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.65);
    text-align: center;
}

body .my-class .layui-layer-title {
    background: #fff;
    color: #555;
    border: none;
    border-bottom: 1px solid #f0f0f0;
}


.toast-message {
    line-height: 30px;
}

.layui-form-select dl {
    z-index: 10002 !important;
}

.demand-info {
    border: 1px solid #ff4027;
    border-left-width: 5px;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.gain-info .item,
.demand-info .item {
    line-height: 30px;
    font-size: 14px;
}

.gain-info .item a,
.demand-info .item a {
    font-size: 14px;
}

.gain-info .item span,
.demand-info .item span {

    font-size: 14px;

}

.gain-info .item span.badge,
.demand-info .item span.badge {
    background: #ff4027;
    color: #fff;
    border-radius: 5px;
    padding: 0 5px;
}

.layui-form .tags span {
    background-color: #f34828 !important;
}

.layui-tree-entry {
    height: 30px !important;
}

.layui-tree-iconClick {
    width: 10px;
}

.layui-tree-main .layui-form-checked[lay-skin=primary] i {
    border-color: #f34828 !important;
    background-color: #f34828 !important;
}

.layui-form-onswitch {
    border-color: #f34828 !important;
    background-color: #f34828 !important;
}

#HasIntellectualPropertyBtn {
    background-color: #f34828 !important;
    position: relative;
    top: 4px;
    height: 30px;
    font-size: 14px;
}

.layui-input-block#subBtn .layui-btn {
    background-color: #f34828 !important;
}

.layui-input-block#editBtn .layui-btn {
    background-color: #f34828 !important;
}

.layui-form-select dl dd.layui-this {
    background-color: #f34828 !important;
}

/*.tagStyle{*/
/*    max-width: 480px;*/
/*    overflow: hidden;*/
/*    white-space: nowrap;*/
/*    text-overflow: ellipsis;*/
/*    */
/*}*/

/* */
.tagStyle {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.demo1 {
    width: 100%;
    display: flex;
    justify-content: space-between !important;
    padding: 0px 10px !important;
    border-color: #eee !important;
}

#gt {
    padding: 30px;
    /*padding-top: 10px;*/
    /*padding-left: 10px;*/
}

.tbs {
    display: flex;
    padding-top: 10px;
    padding-left: 10px;
}

#eightAreaIds1 {
    max-height: 415px;
    /*overflow-y: auto;*/
}

.tbs > div {
    flex: 1
}

.top1 {
    height: 398px;
    background: #FFFFFF;
    border-radius: 4px;
    padding: 15px 20px;
    display: flex;
}

.top1 .banner {
    width: 575px;
    height: 368px;
    margin-right: 20px;
}

.top1 .banner .section-swiper, .top1 .banner .section-swiper .swiper-slide {
    height: 368px;
}

.top1 .layui-tab-title li {
    padding: 0px;
    font-size: 16px;
     font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;
    
    color: #333333 !important;
    line-height: 25px;
}

.top1 .layui-tab-title li:nth-child(2) {
    margin: 0px 80px;
}

.layui-tab-brief > .layui-tab-title .layui-this {
    font-weight: 600;
}

.top1 .layui-tab {
    flex: 1;
    margin: 0px;
}

.top1 .layui-tab-content {
    padding: 13px 0px;
}

.layui-tab-brief > .layui-tab-title .layui-this:after {
    border-bottom: 3px solid #FF4027;
}

.layui-tab-item .notice-list .list-item {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 11px;

}

.layui-tab-item .notice-list .list-item .text {
    font-size: 14px;
     font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;
    color: #333333;
    line-height: 20px;
    max-width: 473px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.layui-tab-item .notice-list .list-item .text:before {
    background: #999;
    content: '';
    width: 3px;
    height: 3px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
}

.layui-tab-item .notice-list .list-item .time {
    font-size: 14px;
     font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;

    color: #999999;
    line-height: 25px;
}

.top1 .layui-tab-item {
    height: 100%;
}

.top1 .zone-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.top1 .notice-list {
    flex: 1;
}

.ckdd {
    font-size: 14px;
     font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;
    /*font-weight: 600;*/
    color: #ff4027;
    line-height: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.ckdd:hover {
    color: #FF4027;
}

.ckdd span a {
    color: #ff4027;
}

.news-other label {
    font-size: 14px;
     font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;

    color: #92969C;
    line-height: 25px;
    /*margin-right: 10px;*/
}

.news-other span {
    font-size: 14px;
     font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;

    color: #333333;
    line-height: 25px;
    border: 0px;
    padding: 0px;
}

.news-other1 {
    margin-top: 13px;
}

.news-other1 label span {
    height: 17px;
    font-size: 14px;
     font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;

    color: #FF4027;
    line-height: 17px;
}

.news-other1 label {
    font-size: 18px;
     font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;
    
    color: #FF4027;
    line-height: 25px;
}

.news-other1 span {
    font-size: 14px;
     font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;

    color: #92969C;
    line-height: 25px;
}

.news-other2 {
    margin-top: 25px;
    font-size: 14px;
     font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;

    color: #92969C;
    line-height: 20px;
}





.wytag {
    background: #F5A040;
    border-radius: 2px;
    font-size: 14px;
     font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    padding: 5px;
    margin-right: 5px;
}

.layui-btn-container .layui-btn {
    display: flex !important;
    margin-right:0px!important;
}
.bg-gray1{
    position: relative;
    /*top:-30px;*/
    padding-bottom: 40px;
}
.bg-gray1 + footer {
    position: relative;
    /*bottom: 20px;*/
    width: 100%;
}

.demo2 {
    width: 230px !important;
}

.countName {
    font-size: 14px;
     font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;

    color: #333333;
}

.countValue {
    font-size: 20px;
     font-family:-apple-system,BlinkMacSystemFont,PingFang SC,Helvetica Neue,STHeiti,Microsoft Yahei,Tahoma,Simsun,sans-serif;
    
    color: #FF4027;
    position: relative;
    top: 2px;
}

.tagsbuton {
    /*background: #fff;*/
    display: inline-block;
}

.tag1s.tags {
    margin-top: 5px;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0px 5px;
    margin-right: 10px;
    cursor: pointer;
    color: rgba(0, 0, 0, .85);
    border: 1px solid #eee;
    background-color: #fff;
}

#toTg, #toTg1 {
    padding: 5px 12px 5px 12px;
    height: auto !important;
    min-height: 82px !important;
}

.gtooo1:after {
    content: '、';
    display: inline-block;
}

.gtooo1:last-child:after {
    content: '';
}

.layui-form-item #inDateTime {
    width: 190px;
}

.panel .company-list .item + .empty, .panel .teacher-list .item + .empty,.panel .msg-list .msg + .empty {
    display: none;
}

.panel .empty {
    text-align: center;
    height: 487px;
    margin-top: 10%;
    /*line-height: 487px;*/
}

.tabs .list-control {
    position: absolute;
    right: 30px;
    /*top: 7px;*/
}

.tabs .list-control .add {
    height: 28px;
    line-height: 28px;
    padding: 0 17px;
    background: #ff4027;
    border: 1px solid #ff4027;
    font-size: 14px;
    
    cursor: pointer;
    display: inline-block;
    border-radius: 4px;

}

.layui-layer-iframe .layui-layer-btn, .layui-layer-page .layui-layer-btn {
    border-top: 1px solid #f0f0f0;
    padding-top: 4px !important;
}

.layui-layer-resize {
    display: none;
}

.control {
    text-align: center;
}

.layui-btn{
    /*background-color: #ff4027;*/
    /*height: 36px !important;*/
    /*line-height: 36px !important;*/
}
.layui-btn-xs {
    /*height: 28px !important;*/
    border-radius: 4px !important;
}

.layui-table-view {
    margin: 0px !important;
}

.laytable-cell-1-0-5 {
    width: 193px !important;
}

.layui-btn-normal {
    height: 30px !important;
    line-height: 30px !important;
    background-color: transparent !important;
    border: 1px solid #eee !important;
    color: #666 !important;
}

.layui-upload-list {
    margin-top: 15px !important;
}

.wyRequired:before {
    content: '*';
    color: red;
    margin-right: 4px;
    position: relative;
    top: 2px;
}

#gt.gt2 {
    margin: 0px;
    width: 280px;
    height: 150px;
}

.gt3:after, .gt2:after {
    content: '\e624';
    font-family: layui-icon !important;
    font-size: 50px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    color: #ff4027;
}

#gj.gt3 {
    margin: 0px;
    width: 115px;
    height: 140px;
}

#gt.gt2 .layui-icon {
    font-size: 100px;
}
.m7,.m8{
    position: relative;
}
.m7 .layui-badge,.m8 .layui-badge {
    position: absolute;
    top: 10px;
    height: 18px;
    line-height: 18px;
    border-radius: 100%;
    width: 18px;
    padding: 0px;
    font-size: 10px;
}

#logout:hover {
    color: #ff4027;
}

.layui-layer-setwin .layui-layer-close1:hover {
    opacity: .5 !important;
}
.tags .tag .layui-badge-rim{
    border: 0px !important;
    padding: 0px !important;
}
.layui-badge-rim {
    display: contents;
}
.tagStyle .tagStyle12:after {
    content: '、' !important;
}
.tagStyle .tagStyle12:last-child:after {
    content: '' !important;
}
.tagStyle .tagStyle12:nth-last-child(-n+2):after {
    content: '' !important;
}
.tags .tag .layui-badge-rim:after {
    content: '、' !important;
}
.tags .tag .layui-badge-rim:last-child:after {
    content: '' !important;
}

.tags .tag .layui-badge-rim:nth-last-child(-n+2):after {
    content: '' !important;
}
.research-list .tags .tag .layui-badge-rim:nth-last-child(-n+2):after {
    content: '、' !important;
}
.research-list .tags .tag .layui-badge-rim:last-child:after {
    content: '' !important;
}
.layui-badge-rim:after {
    content: '、';
}

.layui-badge-rim:last-child:after {
    content: '';
}

.layui-badge-rim:nth-last-child(-n+2):after {
    content: '';
}
.prompt-container{
    /*width: 600px;*/
    background: #fff;
    padding: 20px;
    text-align: center;
    height: 567px;
    display: flex;
    /*justify-content: center;*/
    /*align-items: center;*/
    flex-direction: column;
    padding-top:50px
}
.prompt-container .success .fa{
    color:#27bf84;
}
.prompt-container .fa{
    font-size: 66px;
    color: #e4722d;
}
.prompt-container .title{
    line-height: 60px;
    font-size: 24px;
    margin-bottom: 42px;
    margin-top: 30px;
}
.prompt-container  .info{
    color: #666;
    height: 41px;
}
.prompt-container  .wy-btn {
    /*background: #ff4027;*/
    border: 1px solid #666;
    font-size: 14px;
    color: #666;
    padding: 5px 11px;
    border-radius: 5px;
}
.prompt-container  .wy-btn:hover{
    background: #ff4027;
    color:#fff;
    border: 0px solid #666;
}
.alert-dismissible .btn-close{
    padding: 0px !important;
    margin-top: 18px!important;
    margin-right: 15px!important;
    width: 0.8em!important;
    height: 0.8em!important;
}
.toast-success{
    background-color: #67c23a !important;
}
.toast-close-button{
    right: 0em;
    top: 0em;
}
#toast-container>div{
    padding: 10px 10px 10px 50px !important;
}
.toast-close-button {
    right: 1px !important;
    top: 2px !important;
}
#toast-container.toast-bottom-center>div, #toast-container.toast-top-center>div{
    width: 210px !important;
}
.titlesb2{
    margin-left: 0px;
}
.titlesb .item{
    border: 0px !important;
    padding: 0px !important;
}
.titlesb1{
    min-height: 25px !important;
    line-height:25px !important;
    height: auto !important;
}
.body-info .info-content .user .profile .info .direct .titlesb1 .item{
    margin-bottom: 0px;
    height: 25px;
    line-height: 25px;
}
.titlesb2 .item:after{
    content: '、';
}
.titlesb2 .item:last-child:after {
    content: '';
}
.research-list .item:hover .name a{
    color: #ff4027;
}
.body{
    min-height: calc(100% - 136px);
}

.body-center .center .main .panel .form .layui-form2 .layui-form-item  label{
    width: 113px;
}
.body-center .center .main .panel .form .layui-form2 .layui-form-item .layui-input-block{
    margin-left: 113px;
}
.user .tags{
   padding-left: 0px !important;
    padding-right: 0px !important;
}
.gotoTips{
    font-size: 16px;
    font-weight: 600;
    padding-left:10px;
    margin-bottom:10px;
}
.gotoTips:before{
    content: '';
    display: inline-block;
    width: 4px;
    height: 14px;
    position: relative;
    top:1px;
    background: red;
}
.gotoTips+div{
    margin-left: 15px;
    margin-bottom:10px
}
/*.gotoTips:before*/
.titlesb{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    /*height: 25px;*/
}
.titlesb .item{
    margin-right:0px !important;
}
.titlesb .item:after{
    content: '、';
}
.titlesb .item:last-child:after{
    content: '';
}
.body-list .research-list .research-item .title {
    line-height: 24px;
    margin-bottom: 0px;
    font-size: 14px;
    color: #333333;
}
.body-list .research-list.research-list1 .research-item .title {
    line-height: 24px;
    margin-bottom: 0px;
    font-size: 16px;
    color: #333333;
}
.odt{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100px;
}
.odtType{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 55px;
}
.newf{
    width: 1200px;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 4px;
    padding:15px;
    /*margin-top: 20px;*/
    margin-bottom: 20px;
}
.newf-l{
    height: 250px;
    background: url("../img/newfl.png") no-repeat;
    background-size: 100% 100%;
    position: relative;
}
.newf-l-l{
    padding: 25px 30px;
    flex: 1;
}
.newf-l-l h1{
    font-weight: 600;
    font-size: 30px;
    line-height: 42px;
    color: #FFFFFF;
    text-align: left;
    font-style: normal;
    margin-bottom: 12px;
}
.newf-l-l span{
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFFcc;
    line-height: 28px;
    text-align: left;
    font-style: normal;
    display: block;
    width: 210px;
}
.newf-r-l{
    padding: 25px 30px;
    flex: 1;
}
.newf-r-l h1{
    font-weight: 600;
    font-size: 30px;
    line-height: 42px;
    color: #FFFFFF;
    text-align: left;
    font-style: normal;
    margin-bottom: 12px;
}
.newf-r-l span{
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFFcc;
    line-height: 28px;
    text-align: left;
    font-style: normal;
    display: block;
    width: 210px;
}
.newf-r{
    height: 250px;
    background: url("../img/newfr.png") no-repeat;
    background-size: 100% 100%;
}
.newf-l-r{
  padding-top: 94px;
    flex: 1;
    margin-left: 20px;
}
.newf-l-r span{
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #ffffffcc;
    line-height: 28px;
    text-align: left;
    font-style: normal;
    display: block;
    width: 175px;
    margin-bottom: 20px;
}

.newf-r-r{
    padding-top: 94px;
    flex: 1;
    margin-left: 1px;
}
.newf-r-r span{
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #ffffffcc;
    line-height: 28px;
    text-align: left;
    font-style: normal;
    display: block;
    width: 175px;
    margin-bottom: 20px;
}
.newf{
    display: flex;
}
.newf>div{
    flex:1;
    display: flex;
    line-height: 220px;
    padding-left: 10px;
    padding-right: 20px;
}
.newf>div img{
    width:206px;
    height: 147px;
}
.titk{
    margin:0px 62px 0px 24px;
    padding-top: 28px;
}
.titk1{
    height: 64px !important;
    width: 33px !important;
}
.newf .newf-l{
    margin-right: 30px;
    max-width:565px ;
}
.newf h1{
    font-family: ZiZhiQuXiMaiTi;
    font-size: 30px;
    color: #FFFFFF;
    line-height: 38px;
    font-style: normal;
}
.newf p{
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 36px;
    text-align: left;
    font-style: normal;
}
.newf-l,.newf-r{
    transition: all 0.6s;
    cursor: pointer;
}
.newf-l:hover,.newf-r:hover{
    transform:scale(1.09);
}
.research-list .research-item{
    position: relative;
}
.ypp{
    position: absolute;
    right: 8px;
    bottom: 36px;
}
.ypp img{
    width: 100px;
}
.ypp-text{
    border: 1px solid #20c530;
    color: #20c530;
    padding: 0px 3px;
    border-radius: 4px;
    font-weight: 400;
}
.news-list a{
    position: relative;
}
footer .container.container1{
    max-width: 100%;

    height: 243px;
    background: #1F1F1E;
    width: 100%;
    padding-top: 27px;
}
footer .container.container1 .information{
    border-bottom: 0px;
    height: 100%;
    width: 1200px;
    margin: 0 auto;
}
footer .container1 .information{
    
    padding: 0px;
    padding-top: 5px;
}
footer .container1 .links .list .title{
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 25px;
    text-align: left;
    font-style: normal;
    position: relative;
}
footer .container1 .links .list .title:before{
    content: '';
    display: block;
    width: 95px;
    height: 1px;
    background: #5E5D5D;
    position: absolute;
    bottom: -15px;

}
footer .container1 .links .list .title:after{
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #ffffff;
    position: absolute;
    bottom: -15px;
}
footer .container1 .links .list .ic{
    width: 20px;
    height: 20px;
    margin-right: 13px;
}

footer .container1 .links .list.t1x{
    width: 396px;
    position: relative;
}
footer .container1 .links .list.t1x:after,footer .container1 .links .list.t2x:after{
    content: '';
    width: 1px;
    height: 180px;
    background: #000;
    display: block;
    right: 0px;
    top: 0px;
    position: absolute;
}
footer .container1 .links .list.t1x .link{
    display: flex;
    align-items: center;
    width: 287px;
}
footer .container1 .links .list.t1x div{
    line-height: 19px;
}
footer .container1 .links .list.t2x{
    width: 381px;
    position: relative;
}
footer .container1 .links .list.t1x{
    width: 423px;
}
footer .container1 .links .list.t3x{
    display: flex;
    padding-left: 120px;
}
footer .container1 .links .list.t3x div{
    margin-left: 16px;
    margin-top: 27px;
}
footer .container1 .links .list.t3x div h1{
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #C4C3C3;
    line-height: 25px;
    text-align: left;
    font-style: normal;
}
footer .container1 .links .list.t3x div h2{
    margin-top: 10px;
    background: #FF4027;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 30px;
    text-align: center;
    font-style: normal;
    width: 130px;
    border-radius:4px ;
    height: 30px;
    position: relative;
}
footer .container1 .links .list.t3x div h2::after {
    content: "";
    position: absolute;
    left: -7px;
    top: 7px;
    width: 0;
    height: 0;
    border-top: solid 7px transparent;
    border-right: solid 7px #FF4027;
    border-bottom: solid 7px transparent;
}
footer .container.container2{
    width: 100%;
    margin: 0px;
    max-width: 100%;
    background: #000;
}
.badgen{
    line-height: 24px;
    height: 24px;
    padding: 0 4px;
    border-radius: 2px;
    font-size: 13px;
    background: #ff6958;
    color: #ffffff;
    display: inline-block;
    margin-left: 10px;
}
.badgen1{
    line-height: 24px;
    height: 24px;
    padding: 0 4px;
    border-radius: 2px;
    font-size: 13px;
    background: #fff;
    color: #ffffff;
    display: inline-block;
    margin-left: 10px;
    width: 47px;
}