﻿/*重置*/
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

.main-body {
    min-height: calc(100vh - 365px);
}

.main-container {
    width: 80%;
    margin: auto;
}

.layui-form-label {
    width: 110px !important;
}

/*引用区块*/
.layui-elem-quote {
    border-color: #1e9fff !important;
}

/*弹窗*/
.popup {
    display: none;
}

.layui-layer-content {
    overflow: visible !important;
}

.popup-container {
    margin: 20px;
}

.popup .layui-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/*项目列表菜单*/
.project-list-menu {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

    .project-list-menu .layui-nav-bar {
        background-color: #fffc00;
    }

    .project-list-menu .layui-nav-item::after {
        background-color: #fffc00;
    }

    .project-list-menu .layui-nav-item a {
        color: #fff;
    }

    .project-list-menu .layui-nav-item.layui-this a {
        color: #fffc00;
    }

/*项目列表*/
.project-list {
    width: 80vw;
    margin: auto;
    margin-top: 50px;
}

    .project-list .model {
        position: relative;
        display: block;
        border: 1px solid #ddd;
        border-radius: 10px;
        overflow: hidden;
    }

        .project-list .model:hover {
            top: -10px;
            box-shadow: 0 0 10px rgba(30,159,255,.6);
        }

        .project-list .model .pic {
            display: block;
            width: 100%;
            height: 220px;
        }

        .project-list .model .info-box {
            padding: 10px;
        }

            .project-list .model .info-box .title {
                height: 52px;
                font-size: 16px;
                line-height: 26px;
                color: #242424;
                overflow: hidden;
            }

            .project-list .model .info-box .type {
                display: inline-block;
                margin-right: 5px;
                padding: 0 5px;
                font-size: 13px;
                line-height: 26px;
                color: #fff;
                background-color: #ff5722;
                border-radius: 5px;
            }

            .project-list .model .info-box .time {
                margin-top: 8px;
                color: #999;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

        .project-list .model.ended::after {
            content: "已结束";
            position: absolute;
            top: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: calc(100% - 100px);
            font-size: 24px;
            color: #fff;
            background-color: rgba(0,0,0,.7);
        }

/*实训面包屑*/
.main-container .layui-breadcrumb {
    margin-top: 30px;
}

/*实训栏目标题*/
.shixun-title-box {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
}

    .shixun-title-box .title {
        position: relative;
        bottom: -1px;
        display: inline-block;
        padding: 0 10px;
        font-size: 20px;
        line-height: 40px;
        color: #222;
    }

        .shixun-title-box .title.active {
            border-bottom: 3px solid #ffc231;
        }

/*活动信息*/
.project-info {
    display: flex;
    margin-top: 30px;
}

    .project-info .pic {
        width: 270px;
        height: 180px;
        border-radius: 10px;
    }

    .project-info .info-box {
        margin-left: 20px;
        margin-right: auto;
    }

        .project-info .info-box .title {
            font-size: 24px;
            line-height: 48px;
            font-weight: bold;
            color: #242424;
        }

        .project-info .info-box .info {
            line-height: 28px;
            color: #666;
        }

    .project-info .briefing-box {
        flex-shrink: 0;
        width: 300px;
        margin-left: 20px;
        border: 1px solid #ddd;
    }

        .project-info .briefing-box .box-title {
            font-size: 18px;
            line-height: 40px;
            font-weight: bold;
            color: #1e9fff;
            text-align: center;
            border-bottom: 1px solid #ddd;
        }

        .project-info .briefing-box .list {
            padding: 15px 20px;
        }

        .project-info .briefing-box .model {
            display: flex;
            line-height: 28px;
        }

        .project-info .briefing-box .title {
            width: 200px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .project-info .briefing-box .time {
            margin-left: 10px;
            font-size: 13px;
            color: #999;
        }

/*讨论轮播*/
.project-discuss-show {
    height: 30px;
    margin-top: 30px;
    border: 1px solid #ddd;
    border-radius: 15px;
    overflow: hidden;
}

    .project-discuss-show .model {
        padding: 0 15px;
        line-height: 28px;
        color: #666;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .project-discuss-show .model span {
            font-weight: bold;
            color: #1e9fff;
        }

        .project-discuss-show .model .layui-icon {
            margin-right: 5px;
            font-weight: bold;
            color: #ff5722;
        }

/*活动描述*/
.project-describe .art {
    line-height: 28px;
    color: #666;
}

/*活动详情*/
.project-detail {
    margin-top: 30px;
}

    .project-detail .layui-tab-title li {
        font-size: 18px;
    }

        .project-detail .layui-tab-title li.layui-this {
            color: #1e9fff;
        }

            .project-detail .layui-tab-title li.layui-this::after {
                border-bottom: 2px solid #1e9fff !important;
            }

/*活动资源*/
.project-files {
    margin-top: 10px;
}

    .project-files .model {
        display: flex;
        align-items: center;
    }

        .project-files .model .pic {
            width: 40px;
            height: 40px;
        }

        .project-files .model .info-box {
            margin-left: 10px;
        }

            .project-files .model .info-box .title {
                color: #242424;
            }

                .project-files .model .info-box .title:hover {
                    color: #1e9fff;
                }

/*活动任务*/
.project-mission {
    margin-top: 15px;
}

    .project-mission .model {
        display: block;
        padding: 25px 0;
        text-align: center;
        border: 1px solid #ddd;
        border-radius: 5px;
        /*文本溢出省略*/
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .project-mission .model:hover {
            color: #1e9fff;
            background-color: #eef9ff !important;
        }

        .project-mission .model .iconfont {
            display: block;
            margin-bottom: 20px;
            font-size: 50px;
            line-height: 40px;
            color: #ffb800;
        }

        .project-mission .model:hover .iconfont {
            color: #1e9fff;
        }

        .project-mission .model.finished .iconfont {
            color: #5fe32b;
        }

/*活动总结*/
.project-summary .art {
    line-height: 28px;
    color: #666;
}

/*讨论列表*/
.discuss-list td:first-of-type {
    max-width: 800px;
    /*溢出隐藏*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .discuss-list td:first-of-type p,
    .discuss-list td:first-of-type div {
        display: inline;
    }

    .discuss-list td:first-of-type br {
        display: none;
    }

/*发布讨论*/
.project-discuss-add {
    margin-top: 30px;
}

/*文章页*/
.shixun-art-box {
    border: solid 1px #eee;
    padding: 10px 30px;
    margin-top: 40px;
    background: #f9f9f9;
}

    .shixun-art-box .title {
        display: flex;
        flex-wrap: wrap;
        padding: 10px 0;
        font-size: 20px;
        line-height: 34px;
        font-weight: bold;
        color: #333;
        letter-spacing: 2px;
        border-bottom: 1px solid #eee;
    }

        .shixun-art-box .title .discuss-add {
            order: 1;
            margin-left: auto;
        }

    .shixun-art-box .info-box {
        margin-top: 10px;
        margin-bottom: 10px;
    }

        .shixun-art-box .info-box .item {
            margin-right: 20px;
            color: #909090;
        }

            .shixun-art-box .info-box .item .layui-icon {
                color: #ddd;
                vertical-align: middle;
            }

    .shixun-art-box .art {
        margin-top: 10px;
        padding-bottom: 20px;
        line-height: 24px;
        color: #666;
    }

        .shixun-art-box .art .pic {
            /*display: block;  增加点击图片放大功能时发现问题故而隐藏，先保留，看看是否有影响*/
            max-width: 300px;
            margin: 10px 0;
        }

        .shixun-art-box .art .audio {
            display: block;
            width: 400px;
            margin: 10px 0;
        }

/*留言板输入区*/
.shixun-discuss-msgboard .layui-form {
    padding-bottom: 20px;
}

.shixun-discuss-msgboard .layui-input-block {
    margin-left: 0;
}

.shixun-discuss-msgboard .layui-textarea {
    min-height: 100px;
    font-size: 16px;
}

.shixun-discuss-msgboard .layui-input-right {
    float: right;
}

.shixun-discuss-msgboard .layadmin-messag-icon {
    overflow: hidden;
    float: left;
    margin-top: 4px;
}

    .shixun-discuss-msgboard .layadmin-messag-icon .layui-icon {
        font-size: 24px;
        line-height: 30px;
        margin-right: 15px;
        color: #c4cbcf;
    }

/*留言板列表*/
.shixun-discuss-msgboard .message-content {
    padding-bottom: 50px;
}

.shixun-discuss-msgboard .media-body {
    display: block;
    width: auto;
    margin-bottom: 20px;
    overflow: hidden;
    border-bottom: solid 1px #eee;
}

.shixun-discuss-msgboard .media-left {
    float: left;
    margin-right: 10px;
}

    .shixun-discuss-msgboard .media-left img {
        border-radius: 50%;
    }

.shixun-discuss-msgboard .media-body .pad-btm p:first-child {
    padding-bottom: 5px;
}

.shixun-discuss-msgboard .media-body .pad-btm .fontColor a {
    font-weight: 600;
    color: #337ab7;
}

.shixun-discuss-msgboard .media-body .min-font a {
    font-size: 12px;
    color: #999;
}

.shixun-discuss-msgboard .media-body .min-font {
    /*margin-bottom: 10px;*/
}

.message-text {
    padding-top: 10px;
    line-height: 24px;
    color: #666;
    padding-bottom: 10px;
    margin-left: 55px;
}

    .message-text .pic {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .message-text .audio {
        display: block;
        width: 400px;
        margin: 10px 0;
    }

.message-content-btn {
    text-align: center
}

.message-content .layui-btn {
    height: auto;
    line-height: 26px;
    padding: 5px 30px;
    font-size: 16px
}

/*三习任务内容、要求*/
.sanxi-mission-info {
    margin-top: 30px;
}

    .sanxi-mission-info .layui-field-box {
        line-height: 28px;
        color: #666;
    }

        .sanxi-mission-info .layui-field-box .layui-btn {
            margin-left: 10px;
        }

/*三习任务成果*/
.sanxi-mission-task .layui-tab {
    margin: 0;
}

.sanxi-mission-task .searcher {
    margin-top: 20px;
}

/*三习成果编辑*/
.project-task-edit {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
}

    .project-task-edit .office-online {
        flex-grow: 1;
        height: 600px;
        border: 1px solid #ddd;
    }

    .project-task-edit .task-info-box {
        width: 300px;
        height: 600px;
        margin-left: 40px;
        border: 1px solid #ddd;
        overflow-x: hidden;
    }

    .project-task-edit .layui-tab {
        margin: 0;
    }

        .project-task-edit .layui-tab .layui-tab-title li {
            width: 75px;
        }

        .project-task-edit .layui-tab .layui-tab-title .layui-unselect {
            display: none;
        }

    .project-task-edit .layui-tab-content {
        height: 540px;
        overflow-x: hidden;
        overflow-y: auto;
    }

.task-info-box .art {
    margin-top: 20px;
}

    .task-info-box .art a {
        display: block;
        width: 100%;
        max-width: 400px;
        margin: 5px 0;
    }

        .task-info-box .art a img {
            width: 100%;
        }

    .task-info-box .art audio {
        display: block;
        width: 100% !important;
        max-width: 400px !important;
        margin: 5px 0;
    }

.task-info-box .edit {
    display: block;
    width: 64px;
    margin: auto;
    margin-bottom: 15px;
}

/*成果历史*/
.task-history {
    margin-top: 10px;
}

    .task-history .layui-timeline-title {
        font-size: 16px;
    }

/*打点编辑*/
.dadian-content {
    flex-shrink: 0;
    width: 100%;
    margin-top: 20px;
}

/*线下编辑*/
.project-task-edit.offline {
    flex-direction: column;
}

    .project-task-edit.offline .task-info-box {
        width: 100%;
        margin-top: 30px;
        margin-left: 0;
    }

    .project-task-edit.offline .file-box {
        display: flex;
        align-items: center;
    }

        .project-task-edit.offline .file-box .pic {
            width: 60px;
        }

        .project-task-edit.offline .file-box .title {
            margin-right: 20px;
            margin-left: 10px;
        }

/*实习调查问卷*/
.project-shixi-questionnaire {
    margin-top: 30px;
}

/*考核查看准考证*/
.exam-ticket {
    margin-top: 30px;
}

    .exam-ticket .kaohe-notice {
        color: #666;
    }

/*考核考试*/
.exam-content {
    margin-top: 30px;
}

    .exam-content .test-questions {
        line-height: 26px;
        color: #666;
    }

    .exam-content .qus {
        margin-top: 15px;
    }

/*考核考试PPT图片资料列表*/
.exam-pic-list {
    margin-top: 20px;
}

    .exam-pic-list .pic {
        width: 100%;
        max-height: 260px;
    }

/*三笔字书画上传*/
.sanbizi-upload {
    margin-top: 30px;
}

    .sanbizi-upload .pic-box {
        position: relative;
        display: inline-block;
        width: 92px;
        height: 92px;
        margin: 0 10px 10px 0;
    }

    .sanbizi-upload .layui-upload-img {
        width: 92px;
        height: 92px;
        margin: 0 10px 10px 0;
    }

    .sanbizi-upload .del {
        position: absolute;
        top: 0;
        right: 0;
        padding: 2px;
        background-color: #eee;
        border: 0;
        cursor: pointer;
        opacity: .8;
    }

/*三笔字详情*/
.sanbizi-detail .vote-box {
    margin-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

    .sanbizi-detail .vote-box .layui-btn {
        width: 80%;
        height: 50px;
        font-size: 18px;
        line-height: 50px;
        font-weight: bold;
    }

    .sanbizi-detail .vote-box .info {
        margin-top: 10px;
    }

        .sanbizi-detail .vote-box .info b {
            color: #FF5722;
        }

.sanbizi-detail .layui-timeline {
    margin-top: 20px;
}

/*三笔字作品查看*/
.sanbizi-show {
    position: relative;
    width: calc(80vw - 340px);
    overflow: hidden;
}

    .sanbizi-show .move-box {
        display: flex;
        height: 100%;
    }

        .sanbizi-show .move-box .model {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 100%;
            background-color: #000;
        }

            .sanbizi-show .move-box .model .pic {
                display: block;
                max-width: 100%;
                max-height: 600px;
            }

    .sanbizi-show .controller {
        position: absolute;
        top: 0;
        bottom: 0;
        display: flex;
        justify-content: space-between;
        width: 100%;
        height: 50px;
        margin: auto;
    }

        .sanbizi-show .controller .btn {
            width: 50px;
            height: 50px;
            color: #fff;
            text-align: center;
            background-color: rgba(255,255,255,.6);
            cursor: pointer;
        }

            .sanbizi-show .controller .btn .layui-icon {
                font-size: 22px;
                line-height: 50px;
            }

    .sanbizi-show .info {
        position: absolute;
        bottom: 10px;
        left: 10px;
        color: #fff;
    }

/*三笔字互评列表*/
.sanbizi-mutual-list {
    margin-top: 30px;
}

    .sanbizi-mutual-list .layui-btn {
        margin-bottom: 0 !important;
    }

/*三笔字投票列表*/
.sanbizi-vote-list {
    margin-top: 30px;
}

    .sanbizi-vote-list .model {
        display: block;
        border: 1px solid #ddd;
        border-radius: 10px;
    }

    .sanbizi-vote-list .pic {
        display: block;
        width: 100%;
        height: 200px;
    }

    .sanbizi-vote-list .model .info-box {
        padding: 10px;
    }

        .sanbizi-vote-list .model .info-box .title {
            font-size: 16px;
            line-height: 26px;
            color: #242424;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .sanbizi-vote-list .model .info-box .num {
            margin-top: 8px;
            color: #999;
        }

            .sanbizi-vote-list .model .info-box .num b {
                color: #FF5722;
            }

/*研习互评列表*/
.yanxi-mutual-list {
    margin-top: 30px;
}

/*图文混排页*/
.msg-content {
    margin-top: 30px;
}

    .msg-content .layui-input-block {
        position: relative;
    }

.img-upload-list {
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    border: 1px solid #eee;
}

    .img-upload-list .item {
        position: relative;
        width: 72px;
        height: 72px;
        margin: 5px;
        background: #f9f9f9;
        cursor: pointer;
    }

        .img-upload-list .item .pic {
            display: block;
            width: 100%;
            height: 100%;
        }

        .img-upload-list .item .mask {
            position: absolute;
            top: 0;
            display: none;
            width: 100%;
            height: 100%;
            line-height: 80px;
            color: #fff;
            text-align: center;
            background-color: rgba(0,0,0,.6);
        }

        .img-upload-list .item:hover .mask {
            display: block;
        }

        .img-upload-list .item.add {
            font-size: 60px;
            line-height: 70px;
            color: #999;
            text-align: center;
        }

.msg-content .textarea-box,
.msg-content .img-box {
    position: relative;
}

    .msg-content .textarea-box .del,
    .msg-content .img-box .del {
        position: absolute;
        top: -13px;
        right: -13px;
        width: 26px;
        height: 26px;
        margin-left: 15px;
        font-size: 26px;
        line-height: 21px;
        text-align: center;
        color: #fff;
        background-color: #666;
        border-radius: 50%;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

.msg-content .voice-box {
    display: flex;
    align-items: center;
}

    .msg-content .voice-box .del {
        flex-shrink: 0;
        width: 26px;
        height: 26px;
        margin-left: 15px;
        font-size: 26px;
        line-height: 21px;
        text-align: center;
        color: #fff;
        background-color: #666;
        border-radius: 50%;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

/*教师端左右结构图文混排*/
.task-info-box .task-info-box .textarea-box .del {
    position: absolute;
    top: -13px;
    right: -13px;
    width: 26px;
    height: 26px;
    margin-left: 15px;
    font-size: 26px;
    line-height: 21px;
    text-align: center;
    color: #fff;
    background-color: #666;
    border-radius: 50%;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.task-info-box .voice-box {
    width: 100%;
}

.task-info-box audio {
    width: calc(100% - 40px);
    max-width: 400px;
}

.task-info-box .submit {
    display: block;
    width: 64px;
    margin: auto;
}
/*左右结构上传文件按钮*/
.task-info-box .upload-btn {
    position: relative;
    width: 75px;
    padding: 0 !important;
    cursor: pointer;
}

    .task-info-box .upload-btn input[type=file] {
        position: absolute;
        left: 0;
        width: 75px;
        height: 38px;
        opacity: 0;
        cursor: pointer;
    }

/*考核登陆*/
.kaohe-signin {
    width: 490px;
    height: 400px;
    margin: auto;
    margin-top: 140px;
}

    .kaohe-signin .signin-title {
        font-size: 26px;
        line-height: 52px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 2px;
        text-align: center;
    }

    .kaohe-signin .signin-main {
        width: 100%;
        margin-top: 15px;
        padding: 25px 40px 30px 40px;
        background-color: #fff;
        border-radius: 10px;
    }

        .kaohe-signin .signin-main .layui-btn {
            width: 100%;
            margin-top: 15px;
        }

/*考生须知*/
.instructions-to-candidates .title {
    padding-bottom: 25px;
    text-align: center;
}

.instructions-to-candidates .art {
    line-height: 30px;
}

.instructions-to-candidates .layui-btn {
    display: block;
    width: 114px;
    margin: auto;
    margin-bottom: 40px;
}

/*实习鉴定表管理*/
.practice-appraisal-form .form {
    margin: 20px;
    padding: 30px;
    border: 1px solid #ddd;
}

    .practice-appraisal-form .form tr:hover {
        background-color: transparent;
    }

.practice-appraisal-form .autograph-box {
    margin-top: 50px;
    line-height: 40px;
    text-align: right;
}
/*第一页*/
.practice-appraisal-form .form01 {
    padding-top: 200px;
    text-align: center;
}

    .practice-appraisal-form .form01 .form-title {
        font-size: 46px;
    }

    .practice-appraisal-form .form01 .form-sub-title {
        margin-top: 26px;
        font-size: 30px;
    }

    .practice-appraisal-form .form01 .form-info-box {
        width: 500px;
        margin: auto;
        margin-top: 80px;
        font-size: 18px;
        line-height: 40px;
        text-align: left;
    }

        .practice-appraisal-form .form01 .form-info-box .info-box {
            display: flex;
            align-items: center;
        }

        .practice-appraisal-form .form01 .form-info-box .info {
            display: block;
            width: 380px;
            height: 47px;
            margin-top: 10px;
            line-height: 46px;
            text-align: center;
            color: #333;
            border-bottom: 1px solid #333;
        }

    .practice-appraisal-form .form01 .form-footer {
        font-size: 22px;
        margin-top: 60px;
    }
/*第二页*/
.practice-appraisal-form .form02 .form-title {
    font-size: 24px;
    text-align: center;
}

/*学生填写实习学科、班级*/
.practice-appraisal-info {
    margin-top: 30px;
}

/*课程详情*/
.course-detail {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 30px;
    padding: 20px;
}

.course-info-area {
    width: calc(80vw - 480px);
}

.course-title {
    font-size: 22px;
    font-weight: bold;
}

.course-info {
    margin-top: 20px;
    line-height: 28px;
    color: #666;
}

.course-pic {
    flex: none;
    display: block;
    width: 420px;
    height: 240px;
}

/*课程目录*/
.course-chapters {
    margin-top: 30px;
    padding-top: 20px;
}

    .course-chapters .layui-colla-item .layui-colla-item .layui-colla-title {
        background-color: #fff;
    }

    .course-chapters .file-item {
        display: block;
        line-height: 40px;
        border-bottom: 1px dashed #ddd;
        cursor: pointer;
    }
