body {
    margin: 0;
    padding: 0;
    font-family: PingFang SC, Microsoft YaHei, Arial, Hiragino Sans GB,
    WenQuanYi Micro Hei, sans-serif;
    /*font-size: 16px;*/
    background-color: #f7f7f7;
    min-height: 100vh;
    padding-bottom: 130px;
    box-sizing: border-box;
    min-width: 1330px;
    position: relative;
}

#tabbar {
    display: none;
}

.wrap{
    width: 1330px;
    margin: 0 auto;
}

ul,
li,
ol,
p {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    display: block;
    text-decoration: none;
    color: #333;
}

.bg-white {
    background-color: #ffffff;
}

.border-box {
    box-sizing: border-box;
}

.display-horizontal {
    display: flex;
    align-items: center;
}

.btn {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background-color: transparent;
    padding: 0.8em 1.5em;
    cursor: pointer;
}

/*
 *  页面设置
 *  页面宽度(pc) 1330px
 *  灰色背景 #f7f7f7
 */
:root {
    --wrap-width: 1330px;
    --bg-color: #f7f7f7;
    --link: #1890ff;
    --success: #52c41a;
    --warning: #faad14;
}

.color-link {
    color: var(--link)
}

.color-success {
    color: var(--success)
}

.color-warning {
    color: var(--warning)
}

/*
 * header 页面头部
 */
#header {
    width: 100%;
    height: 70px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 8px #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

#header .header-wrap {
    width: var(--wrap-width);
    height: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header .header-wrap .logo-container img {
    display: block;
    height: 50px;
    margin: 10px 0;
}

#header .header-nav {
    flex: 1;
    overflow: hidden;
    margin-left: 30px;
}

#header .header-nav .nav-item {
    float: left;
    margin-left: 40px;
    position: relative;
    font-weight: bold;
}

#header .header-nav .nav-item a {
    display: block;
    line-height: 70px;
    transition: all linear 0.2s;
    font-size: 17px;
}

#header .header-nav .nav-item.active a{
    color: #003366;
}

#header .header-nav .nav-item a:hover {
    color: #003366;
}

#header .header-search {
    padding-left: 65px;
    display: flex;
    align-items: center;
}

#header .header-search input {
    width: 240px;
    height: 40px;
    padding-left: 15px;
    border: 0;
    background-color: #ececec;
    font-size: 14px;
    line-height: 40px;
    color: #404040;
    outline: none;
    border-radius: 5px 0 0 5px;
    box-sizing: border-box;
}

#header .header-search .search-btn {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #D00000;
    border-radius: 0 5px 5px 0;
    position: relative;
}

#header .header-search .search-btn::after {
    display: block;
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    width: 40px;
    height: 40px;
    background: url(../images/search.png) no-repeat center/ 20px 20px;
}

#header .login-container {
    margin-left: 20px;
}

#header .login-container .beforeLogin {
    height: 70px;
    display: flex;
    align-items: center;
}

#header .login-container .beforeLogin a {
    display: block;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    border-radius: 4px;
}

#header .login-container .beforeLogin a.needLogin {
    margin-right: 10px;
    background-color: #D00000;
    color: #ffffff;
    display: flex;
    align-items: center;
    padding: 0 8px;
}

#header .login-container .beforeLogin a.needLogin img{
    display: block;
    width: 26px;
    height: 26px;
}

.afterLogin {
    height: 55px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #404040;
}

.afterLogin img {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: #eee;
}

/* swiper
 */
.swiper-container {
    padding: 0;
}

.swiper {
    width: 100%;
}

.swiper .swiper-slide {
    overflow: hidden;
}

.swiper img,
.swiper a {
    display: block;
    width: 100%;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    border-radius: 4px;
    transition: all 0.2s linear 0.2s;
}

.my-bullet-active {
    opacity: 1;
    width: 20px !important;
    background: #ffffff !important;
    border-radius: 4px !important;
}

.my-swiper-button {
    cursor: pointer;
    opacity: 1;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 25px);
    z-index: 99;
    transition: all 0.2s linear 0.2s;
    outline: none;
}

.my-swiper-button-next {
    background: rgb(0 0 0/0.1) url(../images/right.png) no-repeat center/50%;
    right: 10px;
}

.my-swiper-button-prev {
    background: rgb(0 0 0/0.1) url(../images/left.png) no-repeat center/50%;
    left: 10px;
}

.swiper:hover .my-swiper-button-next,
.swiper:hover .my-swiper-button-prev {
    opacity: 1;
}

/* list
 */
.project {
    padding: 15px 0;
}

.project-wrap {
    width: var(--wrap-width);
    margin: 0 auto;
}

.title-bar {
    width: 100%;
    height: 40px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-bar .title-context {
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

.title-bar a {
    font-size: 14px;
    color: #999;
}

.title-bar a:hover {
    color: #003366;
    transition: color linear 0.3s;
}

.project-list {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-wrap: wrap;
}

.project-list .project-item {
    width: calc(25% - 20px);
    margin: 0 10px 15px;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.project-list .project-item.col-4 {
    width: calc(100% / 3 - 20px);
}

.project-list .project-item.col-3{
    width: calc(100% / 4 - 20px);
}

.project-list .project-item.col-6{
    width: calc(100% / 2 - 20px);
}

.project-list .project-item .pro-link {
    display: block;
    width: 100%;
    height: 178px;
    object-fit: cover;
}

.project-list .project-item .wrap-title{
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    padding: 0 15px;
    box-sizing: border-box;
}

.project-list .project-item .title {
    height: 56px;
    line-height: 56px;
    padding: 0 10px;
    color: #0f0f0f;
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.project-list .project-item .countAndTags {
    height: 25px;
    line-height: 25px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    justify-content: space-between;
}

.project-list .project-item .countAndTags .count {
    padding-left: 25px;
    background: url(../images/eye.png) no-repeat left/20px 20px;
    font-size: 14px;
    color: #b1b1b1;
}

.project-list .project-item .countAndTags .status {
    color: #ffffff;
    font-size: 14px;
    padding: 0 5px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-sizing: border-box;
}

.project-list .project-item .countAndTags .status.name{
    flex: 1;
    overflow: hidden;
}

.project-list .project-item .countAndTags.extend{
    height: 40px;
    padding-bottom: 7px;
    padding-top: 7px;
    border-top: 1px solid #eee;
}

.project-list .project-item .countAndTags .status img{
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
}

.project-list .project-item .countAndTags .status .author-name{
    color: #333;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.project-list .project-item .countAndTags .tags {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666666;
    line-height: 25px;
    justify-content: flex-end;
    min-width: 55px;
    margin-left: 5px;
}

.project-list .project-item .countAndTags .tags .tags-ppt {
    display: block;
    width: 25px;
    height: 25px;
    background: url("../images/userCount.png") no-repeat center/21px 21px;
}
.project-list .project-item .countAndTags .tags .tags-ppt img{
    display: block;
    width: 100%;
    height: 100%;
}

.project-list .project-item .author {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding: 10px 0;
    display: flex;
}

.project-list .project-item .author img {
    display: block;
    width: 36px;
    height: 36px;
    margin: 0 6px;
    border-radius: 50%;
    overflow: hidden;
}

.project-list .project-item .author .author-name {
    line-height: 36px;
    color: #0f0f0f;
    flex: 1;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project-list .project-item:hover img.pro-link {
    filter: brightness(0.7);
    transition: filter ease 0.3s;
}

.project-list .project-item:hover .title {
    color: #003366;
    transition: color linear 0.3s;
}

.project-list .project-item:hover {
    box-shadow: 0 0 12px #aaa;
    transition: box-shadow linear 0.5s;
}

/*  project block-II */
.block-ii .project-type {
    width: 100%;
    height: 4em;
    line-height: 4em;
    text-align: center;
    background-color: #003366;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 0.2em;
}

.block-ii .project-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 2.5em;
    padding: 0 10px;
    font-size: 15px;
    color: #333;
}

.block-ii .project-status .project-process {
    display: flex;
    align-items: center;
}

.block-ii .project-status .project-process img {
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

/* footer
 */
#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #333333;
    padding: 20px;
    box-sizing: border-box;
    height: 130px;
}

#footer .footer-wrap {
    width: var(--wrap-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#footer .footer-wrap .copyright {
    text-align: left;
    line-height: 25px;
    font-size: 12px;
    color: #909090;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#footer .footer-wrap .copyright p {
    margin: 0;
    padding: 0;
}

#footer .footer-wrap .qrcode-ct img{
    display: block;
    width: 80px;
    height: 80px
}
#footer .footer-wrap .qrcode-ct > div{
    text-align: center;
    color: #FFFFFF;
    margin-top: 5px;
    font-size: 12px;
}


/* 侧边工具栏 */
#tool {
    position: fixed;
    z-index: 99;
    top: 50%;
    right: 30px;
    width: 67px;
}

#tool .tool-wrap a {
    display: block;
    margin-bottom: 12px;
    color: #003399;
    background-color: #ffffff;
    border: 1px solid #DCDCDC;
    border-radius: 4px;
}

#tool .tool-wrap a:hover {
    border: 1px solid #003399;
    background-color: #f6f6f6;
    transition: all linear .2s;
}

#tool .tool-wrap a.sign {
    width: 100%;
    height: 72px;
    box-sizing: border-box;
    padding: 15px;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
}

#tool .tool-wrap a {
    font-size: 12px;
    text-align: center;
    line-height: 28px;
    padding-bottom: 5px;
}

#tool .tool-wrap a img {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 15px 0px;
}

#tool .qrcode-box {
    position: absolute;
    top: 100px;
    right: 80px;
    padding: 10px;
    box-sizing: border-box;
    background-color: #ffffff;
    box-shadow: 0 0 12px #ccc;
    font-size: 13px;
    text-align: center;
    color: #777777;
    display: none;
}

#tool .qrcode-box img {
    display: block;
    width: 140px;
    height: 140px;
    margin-bottom: 15px;
}

#tool .showqrcode:hover ~ .qrcode-box {
    display: block;
}

/*  播放页面
 */

.stream {
    width: 100%;
    padding: 20px 0;
}

.stream-wrap {
    width: var(--wrap-width);
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    --sidebar-width: 330px;
    --video-width: calc(var(--wrap-width) - var(--sidebar-width) - 10px);
    flex-wrap: wrap;
    max-height: 610px;
    gap: 10px;
}

.stream-wrap .stream-container {
    width: var(--video-width);
    box-shadow: 0 0 12px #cecece;
    border-radius: 4px;
    overflow: hidden;
}

.video-container {
    display: block;
    width: var(--video-width);
    height: calc(var(--video-width) * 0.5625);
    position: relative;
}

.stream-current-information {
    width: 100%;
    height: 50px;
    background-color: #003366;
    display: flex;
    align-items: stretch;
    box-sizing: border-box;
    padding: 10px;
}

.stream-current-information .stream-cover {
    width: 90px;
    height: 100%;
    background-color: #fff;
    margin-right: 10px;
}

.stream-current-information .stream-cover img {
    display: block;
    width: 100%;
    height: 100%;
}

.stream-current-information .stream-text {
    color: #fff;
    flex: 1;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.stream-current-information .stream-text .tag{
    background-color: #ff9014;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    height: 22px;
    line-height: 22px;
    padding: 0 5px;
    flex-shrink: 0;
}

.stream-current-information .stream-text .stream-title {
    font-size: 17px;
    letter-spacing: 0.1em;
    line-height: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
}

.stream-current-information .stream-text .strean-user {
    font-size: 14px;
    line-height: 30px;
    margin-left: -13px;
}

.stream-current-information .stream-text .strean-user span {
    padding: 0 15px;
}

.stream-current-information .pull-right {
    display: flex;
    gap: 15px;
    height: 100%;
    align-items: center;
    font-size: 14px;
}

.stream-current-information .pull-right .strean-user {
    color: #ffffff;
    display: flex;
    gap: 4px;
    align-items: center;
    color: #ffffff;
}

.stream-current-information .pull-right img {
    display: block;
    width: 18px;
    height: 18px;
}

/* stream-sidebar camera-container
 */
.stream-sidebar {
    width: var(--sidebar-width);
    box-sizing: border-box;
    box-shadow: 0 0 12px #cecece;
    border-radius: 4px;
    overflow: hidden;
    max-height: 606px;
}

.camera-container {
    width: var(--sidebar-width);
    height: calc(var(--sidebar-width) * 0.5625);
    background-color: #000;
}

.stream-sidebar .stream-tab {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stream-sidebar .stream-tab > :first-child {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-around;
    box-sizing: border-box;
    background-color: #fff;
}

.stream-sidebar .stream-tab .tab-item {
    line-height: 47px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    padding: 0 15px;
    border-bottom: 5px solid transparent;
}

.stream-sidebar .stream-tab .tab-item.active {
    color: #003399;
    border-bottom: 3px solid #003399;
    transition: all ease 0.3s;
}

.stream-sidebar .stream-tab .tab-item.pc-active{
    color: #003399;
    border-bottom: 3px solid #003399;
}

.stream-sidebar .stream-tab > :last-child {
    width: 100%;
    flex: 1;
    background-color: #eee;
    overflow: hidden;
}

.stream-sidebar .stream-tab .tab-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    border-top: 1px solid #eee;
}

.stream-sidebar .stream-tab .tab-content::-webkit-scrollbar {
    width: 5px;
}

.stream-sidebar .stream-tab .tab-content .explain{
    padding: 5px;
}
.stream-sidebar .stream-tab .tab-content .explain .btn-apply{
    display: block;
    background-color: #003399;
    color: #ffffff;
    border-radius: 4px;
    padding: 0.4em 0.8em;
    width: max-content;
}
.stream-sidebar .stream-tab .tab-content .explain .explain-item{
    display: flex;
    height: 36px;
    line-height: 36px;
    padding: 0 10px;
    flex-wrap: wrap;
    font-size: 15px;
}
.stream-sidebar .stream-tab .tab-content .explain .explain-item .attr{
    width: 60px;
    text-align-last: justify;
    color: #666666;
}
.stream-sidebar .stream-tab .tab-content .explain .explain-item .val{
    flex: 1;
    margin-left: 10px;
    color: #333333;
}

.stream-sidebar .stream-tab .tab-content .content{
    padding: 15px;
    font-size: 14px;
	line-height:28px;
}

.course-list {
    width: 100%;
    min-height: 100%;
    background-color: #fff;
    padding: 10px;
    box-sizing: border-box;
    overflow: auto;
}

.course-list .course-list-title {
    font-size: 15px;
    border-left: 4px solid #003366;
    margin: 10px 0 15px;
    padding-left: 5px;
}

.course-list .course-item {
    display: flex;
    width: 100%;
    height: 2.6em;
    box-sizing: border-box;
    margin-bottom: 10px;
    align-items: center;
    background-color: #efefef;
    padding: 0 10px;
    border-radius: 2px;
    cursor: pointer;
}

.course-list .course-item.active{
    background-color: #003366;
}
.course-list .course-item.active .title{
    color: #ffffff;
}

.course-list .course-item .circle {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #666;
    margin-right: 5px;
}

.course-list .course-item .play img {
    display: block;
    width: 16px;
    height: 16px;
    margin-right: 7px;
}

.course-list .course-item .title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #666666;
    white-space: nowrap;
}
.course-list .course-item .status{
    width: 75px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #333;
}
.course-list .course-item .status img{
    display: block;
    width: 20px;
    height: 20px;
}
.course-list .course-item:hover{
    background-color: #003366;
    transition: all ease 0.5s;
}
.course-list .course-item:hover .title{
    color: #fff;
    transition: all ease 0.5s;
}
.course-list .course-item:hover .status{
    color: #fff;
    transition: all ease 0.5s;
}

.course-list .course-item.active .status{
    color: #fff;
    transition: all ease 0.5s;
}

.chatroom,
.recordroom{
    overflow: hidden;
    position: relative;
}

.chatroom .chat-area,
.recordroom .record-area{
    width: 100%;
    height: calc(100% - 60px);
    overflow: auto;
    background-color: #fff;
    box-sizing: border-box;
    padding: 10px;
}

.chatroom .chat-area::-webkit-scrollbar,
.recordroom .record-area::-webkit-scrollbar{
    width: 2px;
}

.chatroom .chat-area::-webkit-scrollbar-thumb,
.recordroom .record-area::-webkit-scrollbar-thumb{
    width: 2px;
    background-color: #999;
}

.recordroom .record-area .record-item{
    margin-bottom: 10px;
    position: relative;
}

.recordroom .record-area .record-text{
    width: 100%;
    background: #3332;
    font-size: 14px;
    margin-bottom: 2px;
    padding: 5px;
    box-sizing: border-box;
    line-height: 28px;
    padding-right: 40px;
}

.recordroom .record-area .record-time{
    font-size: 14px;
    color: #666666;
}

.record-item .btn-del-record{
    position: absolute;
    right: 5px;
    top: 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #de002d;
    cursor: pointer;
}
.record-item .btn-del-record img{
    display: block;
    width: 18px;
    height: 18px;
}

.chatroom .chat-area .title {
    font-size: 14px;
    margin-bottom: 15px;
}

.chatroom .chat-area .chat-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.chatroom .chat-area .chat-item .chater {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
}

.chat-item .chater .avatar {
    margin-right: 10px;
}

.chat-item .chater .avatar img {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee;
}

.chat-item .chater .chater-info {
    height: 100%;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    line-height: 20px;
}

.chat-item .chater .chater-info .time {
    font-size: 13px;
    color: #999999;
}

.chat-item .chater .leaveMessage img {
    display: block;
    width: 14px;
    height: 14px;
    padding-right: 10px;
}

.chat-item .chat-content {
    font-size: 14px;
    line-height: 24px;
}

.chat-item .sub-chat-content {
    line-height: 24px;
    font-size: 14px;
    background-color: #f5f7fa;
    padding: 5px;
    margin: 5px 0;
}

.chat-item .sub-chat-content span {
    color: #003399;
}


.chat-container{
    width: 100%;
    min-height: 24px;
    display: grid;
    grid: auto / 1fr 34px;
}

.chat-container .chatroom-tool img{
    display: block;
    width: 14px;
    height: 14px;
    cursor: pointer;
}

.chat-container .chatroom-tool{
    display: grid;
    place-items: center;
}

.chat-tool {
    width: 100%;
    height: 60px;
    background-color: #2f3243;
    box-sizing: border-box;
    padding: 10px;
}

.chat-tool .line-one,
.chat-tool .line-two {
    height: 40px;
}

.chat-tool .line-one {
    padding: 5px 0;
    box-sizing: border-box;
}

.chat-tool .line-one .emoji {
    height: 100%;
    cursor: pointer;
}

.chat-tool .line-one .emoji img {
    display: block;
    height: 100%;
}

.chat-tool .line-two form {
    height: 100%;
    display: flex;
    border-radius: 4px;
    overflow: hidden;
}

.chat-tool .line-two input {
    height: 100%;
    width: calc(100% - 50px);
    padding: 0 10px;
    box-sizing: border-box;
    border: none;
    outline: none;
    background-color: #1e2432;
    color: #ffffff;
}

.chat-tool .line-two button {
    height: 100%;
    border: none;
    box-sizing: border-box;
    width: 50px;
    background-color: #003399;
    color: #fff;
    cursor: pointer;
}

.record-emit{
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    padding: 10px;
    background-color: #FFFFFF;
    border-top: 1px solid #eeeeee;
}

.record-emit form {
    height: 100%;
    display: flex;
    border-radius: 4px;
    overflow: hidden;
}

.record-emit input {
    height: 100%;
    width: calc(100% - 50px);
    padding: 0 10px;
    box-sizing: border-box;
    border: none;
    outline: none;
    background-color: #FFF;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
}

.record-emit button {
    height: 100%;
    border: none;
    box-sizing: border-box;
    width: 50px;
    background-color: #003399;
    color: #fff;
    cursor: pointer;
}

.invisibility-wrap {
    width: var(--wrap-width);
    margin: 10px auto;
    --sidebar-width: 330px;
    --video-width: calc(1330px - var(--sidebar-width));
    display: flex;
    flex-wrap: wrap;
}

.video-introduce {
    width: calc(var(--video-width) - 10px);
    background-color: #fff;
    box-sizing: border-box;
    min-height: 200px;
    box-shadow: 0 0 4px #cecece;
    margin-right: 10px;
    border-radius: 4px;
}

.video-introduce .jieshao{
    padding: 10px;
}

.video-introduce .jieshao img{
	width:100%;
}

.QRcode-container {
    width: var(--sidebar-width);
    background-color: #fff;
    box-sizing: border-box;
    min-height: 200px;
    box-shadow: 0 0 4px #cccccc;
    border-radius: 4px;
}

.QRcode-container .content {
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    color: #999;
    font-size: 15px;
}

.QRcode-container .content img {
    display: block;
    width: 200px;
    height: 200px;
    margin: 0 auto 10px;
}

.section-title {
    font-size: 17px;
    line-height: 50px;
    height: 50px;
    padding: 0 10px;
    border-bottom: 1px solid #eee;
}

/* 专题
 */
.subject {
    padding: 30px 0;
}

.subject-wrap {
    width: var(--wrap-width);
    margin: 0 auto;
    border-radius: 8px;
    background-color: #ffffff;
    height: 340px;
    display: flex;
    --subject-pic: 50%;
    --subject-info: calc(var(--wrap-width) - var(--subject-pic));
    box-shadow: 0 0 4px #cccccc;
    overflow: hidden;
}

.subject-wrap .pull-left {
    height: 100%;
    width: var(--subject-pic);
}

.subject-wrap .pull-left img {
    display: block;
    width: 100%;
    height: 100%;
}

.subject-wrap .pull-right {
    padding: 15px;
    box-sizing: border-box;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.subject-wrap .pull-right .subject-title {
    font-size: 22px;
    color: #000;
    line-height: 30px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 10px;
    font-weight: 500;
}

.subject-wrap .pull-right .item {
    display: flex;
    height: 30px;
    align-items: center;
    margin-bottom: 5px;
}

.subject-wrap .pull-right .item img {
    display: block;
    width: 30px;
    height: 30px;
    padding: 6px;
    box-sizing: border-box;
    margin-right: 10px;
}

.subject-wrap .pull-right .status {
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.subject-wrap .pull-right .status .status-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.subject-wrap .pull-right .status .status-item img {
    display: block;
    width: 40px;
    height: 40px;
}

.subject-wrap .pull-right .status .status-item > div {
    color: #111a38;
}

.subject-wrap .pull-right .status .status-item .title {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 5px;
}

.subject-wrap .pull-right .status .status-item .num {
    font-size: 22px;
}

/* user-page
 */
.user-page {
    padding: 30px 0;
}

.user-wrap {
    width: var(--wrap-width);
    margin: 0 auto;
    min-height: 300px;
    display: flex;
    justify-content: space-between;
    --user-sidebar: 240px;
    --user-main: calc(var(--wrap-width) - var(--user-sidebar) - 10px)
}

.user-wrap .sidebar {
    width: var(--user-sidebar);
    min-height: 700px;
    background-color: #ffffff;
    box-shadow: 0 0 12px 1px #ededed;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 10px;
}

.user-wrap .main-content {
    width: var(--user-main);
    min-height: 700px;
    background-color: #ffffff;
    box-shadow: 0 0 12px 1px #ededed;
    border-radius: 4px;
}

.user-wrap .sidebar .user-list .user-item {
    height: 60px;
    line-height: 60px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    color: #333;
}

.user-wrap .sidebar .user-list .user-item img {
    display: block;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    padding: 13px;
}

.main-content-title {
    height: 55px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    font-size: 18px;
    padding: 0 15px;
}

/* .reback, */
.reback,
.headbar-login {
    display: none;
}

.reback img {
    display: block;
    width: 55px;
    height: 55px;
    padding: 18px;
    box-sizing: border-box;
}

.userinfo-show {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    align-items: center;
}

.userinfo-show .avatar {
    margin-right: 10px;
}

.userinfo-show .avatar img {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.userinfo-show .userinfo-text .userName {
    font-size: 20px;
    line-height: 40px;
}

.userinfo-show .userinfo-text .time {
    color: #777777;
    font-size: 15px;
    line-height: 28px;
}

/*
 * login
 */
.login-area {
    min-height: 760px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    width: 800px;
    height: 490px;
    background-color: #fff;
    box-shadow: 0 0 12px #ccc;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
}

.login-box .pull-left,
.login-box .pull-right {
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.login-box .pull-left img {
    display: block;
    width: 100%;
    height: 100%;
}

.login-password,
.login-scan {
    width: 100%;
    height: 100%;
    padding: 60px 40px 40px;
    box-sizing: border-box;
    position: relative;
}

.login-title {
    color: #333333;
    font-weight: 700;
    font-size: 20px;
    user-select: none;
    font-family: "pingFang SC";

}

.login-box form {
    margin-top: 40px;
}

.login-box .form-group {
    margin: 32px 0;
    position: relative;
}

.form-group input[type=text],
.form-group input[type=password] {
    height: 40px;
    width: 100%;
    outline: none;
    padding: 0 10px;
    box-sizing: border-box;
    border: 1px solid #d4d9e2;
    border-radius: 4px;
    line-height: 38px;
    font-size: 15px;
}

.form-group input[type=checkbox] {
    vertical-align: middle;
}

.form-group input::-webkit-input-placeholder {
    color: #999;
}

.justify-between {
    justify-content: space-between;
}

.forget {
    font-size: 15px;
}

.forget:hover {
    color: #d10b2c;
}

.login-box form .btn-submit {
    background-color: #003399;
    color: #fff;
    display: block;
    border-radius: 4px;
    position: absolute;
    bottom: 75px;
    left: 40px;
    right: 40px;
    font-size: 15px;
}

.position-switch {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    height: 72px;
    align-items: center;
}

.position-switch .switch-img img {
    display: block;
    width: 72px;
    height: 72px;
    box-sizing: border-box;
    padding: 10px;
    background-color: #e8f1ff;
    clip-path: polygon(10% 0, 100% 0, 100% 90%);
    cursor: pointer;
    user-select: none;
}

.position-switch .tipbg {
    font-size: 14px;
    width: 100px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background: url("../images/tipbg.png") no-repeat center/contain;
    color: #003399;
}

.login-scan {
    width: 100%;
    height: 100%;
    position: relative;
}

.login-scan .login-qrcode-img-border {
    margin: 30px auto;
    width: 196px;
    height: 196px;
    background: url("../images/qrcode-border.png") no-repeat center/cover;
    box-sizing: border-box;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-scan .login-qrcode-img img {
    display: block;
    width: 100%;
    height: 100%;
}

.login-scan .tips {
    color: #999999;
    text-align: center;
}

.user-center {
    display: none;
}

.info-show {
    padding: 15px 0;
    display: block;
    width: 600px;
    margin: 0 auto;
}

.info-show .info-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin: 20px 0;
}

.info-show .info-item .attr {
    width: 100px;
    text-align: right;
    margin-right: 40px;
    color: #666;
}

.change-btn {
    display: block;
    margin: 40px auto;
    width: 160px;
    height: 40px;
    line-height: 40px;
    background-color: #ff4466;
    border-radius: 20px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
}

.info-show .val input[type='text'],
.info-show .val select {
    display: block;
    height: 40px;
    width: 360px;
    border: 1px solid #eee;
    padding-left: 10px;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
    font-size: 15px;
}

.info-show .val label {
    display: flex;
    align-items: center;
}

.info-show .val input[type='radio'],
.info-show .val input[type='checkbox'] {
    margin: 0 5px 0;
}

.info-show .val input::-webkit-input-placeholder {
    color: #DDDDDD;
}

.info-show .val textarea {
    width: 360px;
    height: 80px;
}

/* mycollect
 */
.mycollect-list {
    padding: 10px;
    height: calc(100% - 70px);
    box-sizing: border-box;
    /* background-color: #e8f1ff; */
}

.mycollect-list .project-item {
    border: 1px solid #eee;
    box-sizing: border-box;
    width: calc(33.333333% - 20px);
}


/*  mycollect-ii
 */
.teletext-list {
    width: 100%;
}

.teletext-list .teletext-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.teletext-list .teletext-item:last-child {
    margin-bottom: 0;
    border-bottom: unset;
}

.teletext-list .teletext-item a {
    display: flex;
}

.teletext-list .teletext-item a img {
    display: block;
    width: 10em;
    height: 6em;
    margin-right: 10px;
}

.teletext-list .teletext-item .txt-wrap {
    flex: 1;
    overflow: hidden;
}

.teletext-list .teletext-item .txt-wrap .news-title {
    font-size: 16px;
    line-height: 2em;
}

.teletext-list .teletext-item .txt-wrap .descr {
    font-size: 14px;
    color: #666666;
    max-height: 4em;
    line-height: 2em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/*
 * pagination
 */

#pagination {
    margin: 30px 0;
    width: 100%;
}

#pagination .pagination-wrap {
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

#pagination .pagination-wrap ul {
    list-style: none;
    display: flex;
    border: solid #eeeeee;
    border-width: 1px 0 0 1px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #ffffff;
}

#pagination .pagination-wrap ul li {
    display: block;
    border: solid #eeeeee;
    border-width: 0 1px 1px 0;
}

#pagination .pagination-wrap ul li.active {
    background-color: #003366;
}

#pagination .pagination-wrap ul li:first-of-type {
    border-radius: 4px 0 0 4px;
}

#pagination .pagination-wrap ul li:last-of-type {
    border-radius: 0 4px 4px 0;
}

#pagination .pagination-wrap ul li.active a {
    color: #ffffff;
}

#pagination .pagination-wrap a {
    display: block;
    line-height: 36px;
    padding: 0 15px;
    color: #003366;
    transition: all linear .2s;
    white-space: nowrap;
}

#pagination .pagination-wrap ul li:hover a {
    color: #fff;
    background-color: #003366;
}

/* news 新闻列表
 */
.news {
    margin: 30px 0 60px;
}

.news .news-wrap {
    width: var(--wrap-width);
    margin: 0 auto;
}

.news .news-wrap .news-list {
    padding: 0 35px 35px;
    box-sizing: border-box;
}

.news .news-wrap .news-list .news-item {
    padding: 25px 0;
}

.news .news-wrap .news-list .news-item a {
    display: flex;
}

.news .news-wrap .news-list .news-item img {
    display: block;
    width: 310px;
    height: 180px;
    margin-left: -10px;
    border-radius: 2px;
    overflow: hidden;
}

.news .news-wrap .news-list .news-item .txt-wrap {
    flex: 1;
    overflow: hidden;
    margin-right: -10px;
    padding: 10px 0 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news .news-wrap .news-list .news-item .txt-wrap .news-title {
    font-size: 20px;
    font-weight: bold;
    line-height: 24px;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all linear .2s;
}

.news .news-wrap .news-list .news-item .txt-wrap .descr {
    max-height: 105px;
    font-size: 16px;
    color: #6e7175;
    line-height: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news .news-wrap .news-list .news-item .txt-wrap .publish-item {
    line-height: 25px;
    padding-left: 25px;
    background: url(../images/time.png) no-repeat left/18px;
    font-size: 14px;
    font-weight: bold;
    color: #777777;
}

.news .news-wrap .news-list .news-item:nth-child(n+2) {
    border-top: 1px solid #eeeeee;
}

.news .news-wrap .news-list .news-item:hover .txt-wrap .news-title {
    color: #003366;
}

/* newsDetail */
.newsContent {
    padding: 20px;
    border-radius: 4px;
}

.newsContent .title-wrap {
    border-bottom: 1px solid #eeeeee;
    padding: 10px 10px 30px;
    text-align: center;
}

.newsContent .title-wrap .title {
    font-size: 20px;
    line-height: 46px;
    color: #000;
}

.newsContent .news-textWrap {
    padding: 20px 0;
    line-height: 24px;
}

/* publisher
 */
.common-wrap {
    width: var(--wrap-width);
    margin: 10px auto 10px;
}

.crumbs {
    height: 20px;
    line-height: 20px;
    display: flex;
    font-size: 14px;
    color: #333;
    padding-left: 10px;
    margin-top: 20px;
}

.crumbs span {
    padding: 0 10px;
}

.crumbs a[href] {
    color: #666666;
}

.crumbs a[href]:hover {
    color: #003366;
    transition: color ease .2s;
}

.select-options {
    font-size: 15px;
    margin-top: 1.8em;
    width: 100%;
    background-color: #ffffff;
    padding: .1em 0;
}

.select-options dl {
    display: flex;
}

.select-options dl dd {
    display: block;
    padding: 5px 10px;
    border-radius: 4px;
}

.select-options dl dd.active {
    background-color: #003366;
}

.select-options dl dd.active a {
    color: #ffffff;
}

.project-item .school-logo-container {
    padding: 0;
}

.project-item .school-logo {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 3;
    margin: 0 auto;
}

.project-item .school-name {
    padding: 0 15px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 17px;
    font-weight: bold;
    padding: 0 30px;
    box-sizing: border-box;
}
.project-item .school-name span{
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: center;
}


/*
 */
.publisher-banner {
    width: 100%;
    height: 270px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    gap: 20px;
	margin-top:15px;
    position: relative;
}

.publisher-banner .publisher-avatar img {
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.publisher-banner .publisher-name {
    color: #ffffff;
    font-size: 24px;
	line-height:35px;
    margin: 15px;
    text-align: center;
}

.publisher-banner .publish-status {
    color: #fff;
    font-size: 15px;
    display: flex;
    gap: 25px;
}

.publisher-banner .publish-status .status-item {
    display: flex;
    align-items: center;
}

.publisher-banner .publish-status .status-item img {
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

/*  publisher-main
 */
.common-wrap {
    --sidebar-width: 310px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.publisher-sidebar {
    width: var(--sidebar-width)
}

.publish-main-wrap {
    width: calc(var(--wrap-width) - var(--sidebar-width) - 20px);
}


/* 新增 */
.rest {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.rest .current-status {
    display: inline-block;
    color: #FFFFFF;
    border-radius: 4px;
}

.rest .btn {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    align-items: center;
    background-color: #28a745;
    color: #FFFFFF;
    border-radius: 4px;
    line-height: 24px;
    font-size: 14px;
    gap: 5px;
    padding: 0 10px;
    height: 36px;
}

.rest .btn img {
    display: block;
    width: 24px;
    height: 24px;
}

.subject2 .subject-wrap {
    height: 370px;
    border-radius: 4px;
}

.subject2-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    --sidebar-width: 310px;
    width: var(--wrap-width);
    margin: 10px auto;
}

.subject2-wrap-left {
    width: var(--wrap-width);
}

.subject2-sidebar {
    width: var(--sidebar-width);
}

.anchor {
    display: flex;
    height: 60px;
    line-height: 40px;
    padding: 0 15px;
    align-items: center;
    border-bottom: 1px solid #eee;
    width: 100%;
    box-sizing: border-box;
    overflow: auto;
}

.anchor a {
    display: inline-block;
    margin: 0 15px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.anchor a.active {
    border-bottom: 2px solid #003366;
    color: #003366;
}

.subject2-wrap .section {
    background-color: #ffffff;
    margin-bottom: 20px;
}

.section > .title {
    height: 60px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.section .leftBar {
    display: block;
    width: 4px;
    height: 26px;
    background-color: #003366;
    border-radius: 0 3px 3px 0;
    margin-right: 20px;
}

.subject2-wrap .section .section-context {
    padding: 10px 10px 40px;
    font-size: 16px;
    position: relative;
}
.subject2-wrap .section .section-context .text{
    overflow: hidden;
    line-height: 28px;
}
.subject2-wrap .section .section-context .text img{
	width:100%;
}
.subject2-wrap .section .section-context .button-switch{
    position: absolute;
    height: 40px;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    left: calc(50% - 50px);
    cursor: pointer;
}
.subject2-wrap .section .section-context .button-switch img{
    display: block;
    width: 36px;
    height: 36px;
}
[isexpended=false] .button-switch img:last-child{
    display: none!important;
}
[isexpended=true] .button-switch img:first-child{
    display: none!important;
}
.subject2-wrap .section .section-context[isexpended=true] .text{
    transition: height linear 0.2s;
}



.achievement-list {
    width: 100%;
    padding: 15px 10px;
    box-sizing: border-box;
}

.achievement-list .achievement-ul {
    padding: 0 15px 0px;
}

.achievement-list .achievement-item {
    margin-bottom: 20px;
    padding-left: 41px;
    position: relative;
    height: 60px;
}

.achievement-list .achievement-item:last-child {
    margin-bottom: 0;
}

.achievement-item::before {
    content: '';
    width: 12px;
    height: 18px;
    top: 21px;
    left: 0;
    position: absolute;
    background-image: url("../images/li.png");
    background-size: 100% 100%;
}

.achievement-item a {
    color: #111a38;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: #f8f8f8;
    border-radius: 4px;
    border: 1px solid #f2f2f2;
    padding: 13px 20px;
    position: relative;
    transition: all ease .5s;
    box-sizing: border-box;
}

.achievement-item .serial {
    width: 18px;
    font-size: 24px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
}

.achievement-item .file-type {
    width: 120px;
    padding-right: 10px;
    box-sizing: border-box;
    border-right: 1px dotted #666;
    display: flex;
    align-items: center;
}

.achievement-item .achievement-title {
    font-size: 14px;
    margin-left: 16px;
    font-weight: lighter;
    flex: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.achievement-item .download {
    width: 50px;
    height: 50px;
}

.achievement-item .download img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 13px;
    box-sizing: border-box;
}

.achievement-item .file-type img {
    display: block;
    width: 32px;
    height: 32px;
    float: left;
    margin-right: 15px;
}

.achievement-item .file-type span {
    font-size: 14px;
    font-weight: lighter;
    line-height: 32px;
}

.achievement-item a:hover {
    background-color: #D7e6ff;
}

.invisibility-wrap .content {
    width: 100%;
}

.evaluate {
    padding: 15px;
}

.evaluate table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    font-size: 12px;
}

.evaluate table td {
    border: 1px solid #ccc;
    padding: 15px 10px;
    letter-spacing: .1em;
    line-height: 24px;
}

.evaluate table td.name {
    text-align: center;
    white-space: nowrap;
}

.evaluate table td.value {
    text-align: center;
}

.input-sm {
    display: inline-block;
    width: 80px;
    border: 1px solid #ccc;
    height: 34px;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
    padding: 0 10px;
    text-align: center;
}
.setIndex{
    padding: 0;
}
.setIndex .teletext-list{
    display: grid;
    grid: auto / 1fr 1fr;
    gap: 20px;
}
.setIndex .teletext-item{
    background-color: #FFFFFF;
    border-radius: 4px;
    overflow: hidden;
    padding: 0;
    margin-bottom: 0px;
    border-bottom: 0;
}
.setIndex .teletext-item .txt-wrap .news-title{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.setIndex .teletext-item a{
    height: 100%;
}

.setIndex .teletext-item a > img{
    display: block;
    width: 14em;
    height: 9em;
    object-fit: cover;
    margin-right: 0;
}
.setIndex .teletext-item .txt-wrap{
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-around;
    box-sizing: border-box;
    padding: 10px 10px 10px 0;
}
.setIndex .teletext-item .txt-wrap .time{
    height: 30px;
    line-height: 30px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #555555;
}
.setIndex .teletext-item .txt-wrap .time img{
    display: block;
    width: 18px;
    height: 18px;
}
.setIndex .teletext-item:hover{
    box-shadow: 0 0 12px #aaaaaa;
    transition: all ease 0.5s;
}
.setIndex .teletext-item:hover img{
    filter: brightness(0.5);
    transition: all linear 0.5s;
}
.setIndex .teletext-item:hover .news-title{
    color: #003366;
}

.mobile{
    display: none;
}
.mobile-flex{
    display: none !important;
}
.btn-authorize{
    width: 100%;
    height: 40px;
    background-color: #fc9427;
    color: #ffffff;
    border-radius: 4px;
}
.login-btn-group{
    min-height: 200px;
    display: grid;
    grid: auto / 100%;
    place-items: center;
}
.login-btn-group a{
    display: block;
    width: 100%;
}
.input-append{
    position: absolute;
    right: 1px;
    top: 1px;
    bottom: 1px;
}
.input-append img{
    display: block;
    width: 60px;
    height: 100%;
    object-fit: cover;
}
.btn-message{
    background-color: #003399;
    color: #ffffff;
    border-radius: 0 4px 4px 0;
}

/** modal **/
.overflow-hidden{
    overflow: hidden;
}
.modal{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0003;
    display: none;
    z-index: 333;
}
.toast-container,
.dialog-container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.toast-card{
    width: 500px;
    height: 220px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 0 4px #ccc;
    transform: translateY(-50px);
    transition: all linear 0.2s;
}
.fade .toast-card{
    transform: translateY(0px);
}

.toast-card .toast-body{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    gap: 10px;
}
.toast-card .toast-body .text{
    font-size: 18px;
    font-weight: bold;
}
.toast-card .toast-body img{
    display: block;
    width: 90px;
    height: 90px;
}
.toast-foot{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.toast-foot .btn-sure{
    background-color: #4099EF;
    color: #ffffff;
    border-radius: 4px;
}
.dialog-card{
    width: 550px;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    transform: translateY(-50px);
    transition: all linear 0.2s;
}
.fade .dialog-card{
    transform: translateY(0px);
}
.closeImg{
    display: block;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.dialog-header{
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 20px;
}
.dialog-body{
    padding: 25px 20px;
}
.form-group{
    width: 100%;
    display: flex;
    align-items: center;
}
.form-group label{
    display: block;
    font-size: 15px;
    line-height: 40px;
    white-space: nowrap;
}
.dialog-foot{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 60px;
    border-top: 1px solid #eee;
    padding: 0 10px;
    box-sizing: border-box;
    gap: 10px;
}
.dialog-foot .btn-sure{
    background-color: #003366;
    color: #fff;
    border-radius: 4px;
}
.dialog-foot .btn-cancel{
    background-color: #003366;
    color: #fff;
    border-radius: 4px;
}

.video-introduce .section{
    display: none;
}

#erwm{
    display: flex;
    justify-content: center;
    align-items: center;
}
.task .section{
    margin-bottom: 10px;
}
.search-box{
    position: relative;
    margin-left: auto;
    margin-right: 15px;
    height: 40px;
}
.search-box input{
    display: block;
    height: 100%;
    width: 280px;
    padding: 0 40px 0 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    outline: none;
    border-radius: 4px;
    line-height: 38px;
}
.search-box .search-btn{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #003366;
    color: #ffffff;
    border-radius: 0 4px 4px 0;
    line-height: 40px;
    font-size: 14px;
    padding: 0 10px;
}
.report-list{
    background-color: #ffffff;
    padding: 10px;
}
.report-list .report-item .avatar img{
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}
.report-list .report-item{
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #eee;
}
.report-list .report-item .report-info{
    flex: 1;
    padding-right: 10px;
}
.report-list .report-item .report-line{
    display: flex;
    align-items: center;
    height: 30px;
    font-size: 15px;
    gap: 10px;
}
.report-list .report-item .report-line .address{
    color: #666666;
    font-size: 14px;
}
.report-list .report-item .report-main{
    font-size: 15px;
    line-height: 24px;
    min-height: 48px;
    height: 2em;
}
.justify-content-between{
    justify-content: space-between;
}
.report-list .report-item .c-l-r{
    display: flex;
    gap: 10px;
}
.report-list .report-item .c-l-r a{
    display: flex;
    align-items: center;
    gap: 4px;
}
.report-list .report-item .c-l-r a img{
    display: block;
    width: 16px;
    height: 16px;
}

.task-wrap{
    width: var(--wrap-width);
    margin: 0 auto;
}
.module-one{
    width: 100%;
    background: #ffffff;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 10px;
}
.return-button{
    height: 50px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.return-button a{
    height: 100%;
    display: flex;
    gap: 5px;
    align-items: center;
    line-height: 24px;
}
.return-button img{
    display: block;
    width: 30px;
    height: 30px;
}
.module-one .module-content{
    padding: 10px;
    font-size: 20px;
    color: #111a38;
}
.module-one .module-content .caption{
    margin-bottom: 10px;
}
.module-one .module-content .task-category{
    display: flex;
    font-size: 14px;
    align-items: center;
    color: #666666;
    height: 40px;
    gap: 5px;
}
.module-one .module-content .task-category img{
    display: block;
    width: 22px;
    height: 22px;
}
.task-brief{
    height: 48px;
    line-height: 24px;
    border-top: 1px solid #eee;
    padding: 10px;
}
.textarea-container{
    background-color: #FFFFFF;
    padding: 15px;
}
.textarea-container .textbox{
    position: relative;
    width: 100%;
    min-height: 160px;
    border: 1px solid #e1e0e5;
    box-sizing: border-box;
    border-radius: 4px;
}
.textarea-container .textbox textarea{
    resize: none;
    width: 100%;
    min-height: 140px;
    max-height: 500px;
    font-size: 14px;
    padding: 5px;
    box-sizing: border-box;
    border: 0;
    color: #111A38;
    outline: none;
}
.textarea-container .input-box{
    margin-bottom: 10px;
}
.textarea-container .input-box input{
    display: block;
    width: 100%;
    height: 36px;
    line-height: 34px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    border: 1px solid #ccc;
    padding: 0 10px;
    border-radius: 4px;
}

.file-name, .file-status{
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    padding-left: 5px;
}

.textarea-container .upload-box{
    margin-top: 10px;
    display: flex;
    height: 40px;
    align-items: center;
    gap: 10px;
}
.btn-upload{
    display: inline-block;
    width: 98px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    background-color: #003366;
    text-align: center;
    padding: 0;
    color: #ffffff;
}

.add_file{
    position: absolute;
    bottom: 0;
    left: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #777777;
}
.add_file a{
    padding: 0.3em 0.4em;
    display: flex;
    align-items: center;
    gap: 4px;
}
.add_file a img{
    display: block;
    width: 16px;
    height: 16px;
}
.textarea-bottom{
    height: 40px;
    margin-top: 10px;
}
.textarea-bottom .btn{
    background-color: #003366;
    border-radius: 4px;
    color: #ffffff;
    display: block;
    margin-left: auto;
}

.className{
    padding: 15px 10px;
}
.className .className-box{
    display: flex;
    align-items: center;
    width: fit-content;
    border: 1px solid #ccc;
    box-sizing: border-box;
    height: 100px;
    padding: 10px;
    font-size: 20px;
    min-width: 200px;
    max-width: 300px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    background-color: #003366;
    color: #fff;
}
.className .className-box img{
    display: block;
    width: 50px;
    height: 50px;
}
.className .className-box .pull-right{
    flex: 1;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
}
.className .className-box .pull-left{
    padding: 0 0 0 10px;
}
.modal-sm{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0/0.5);
    z-index: 2000;
    display: none;
    animation: modal-show ease-in-out 0.3s;
}

@keyframes modal-show{
    0%{
        opacity: 0.1;
    }
    100%{
        opacity: 1;
    }
}

.modal-container{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.modal-card{
    background: #ffffff;
    width: calc(100% - 20px);
    border-radius: 4px;
    animation-name: modalCard;
    animation-duration: .5s;
    animation-timing-function: ease-in-out;
    overflow: hidden;
}

@keyframes modalCard{
    0%{
        transform: translateY(-80px);
        opacity: 0.4;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-card .card-header{
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
    border-bottom: 1px solid #ccc;
    border-radius: 4px 4px 0 0;
}

.modal-card .card-header .card-title{
    font-size: 16px;
}

.card-body{
    min-height: 140px;
    display: grid;
    place-items: center;
}
.card-body form{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}
.card-body form input{
    margin-left: 5px;
    flex: 1;
    overflow: hidden;
    height: 36px;
    line-height: 36px;
    border-radius: 4px;
    outline: none;
    border: 1px solid #ccc;
}
.card-footer{
    width: 100%;
    height: 50px;
    display: flex;
    border-top: 1px solid #ccc;
}
.button-group{
    display: flex;
    width: 100%;
}
.button-group .btn{
    flex: 1;
    text-align: center;
    cursor: pointer;
}
.button-group .btn:first-child{
    border-right: 1px solid #ccc;
}

.input-password{
    flex: 1;
    text-align: left;
    height: 40px;
}

.form-group{
    display: flex;
    align-items: center;
}
.form-group .attribute{
    line-height: 40px;
    font-size: 15px;
    margin-right: 10px;
}

/* headBar-mobile */
@media screen and (max-width: 768px) {
    .headBar-mobile{
        display: flex !important;
    }
}
.headBar-mobile{
    width: 100%;
    height: 50px;
    display: none;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
}
.headBar-mobile .headBar-left{
    display: flex;
    align-items: center;
    padding: 0 5px;
}
.headBar-mobile .logo img{
    display: block;
    height: 32px;
}
.headBar-mobile .headBar-title{
    font-size: 15px;
    margin-left: 5px;
}
.headBar-right{
    display: flex;
    align-items: center;
    padding: 0 5px;
    gap: 5px;
}
.headBar-right .avatar img{
    display: block;
    width: 18px;
    height: 18px;
}
.headBar-right .name{
    font-size: 14px;
    color: #333;
}

/* teltport */
.teleport{
    width: 100%;
    height: calc( 100vh - 200px );
    display: grid;
    place-items: center;
    min-height: 640px;
}
.teleport .teleport-box{
    width: 800px;
    background-color: #ffffff;
    box-shadow: 0  0 4px #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 100px 40px 50px;
}
.form-vertical .form-group{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.form-vertical .form-group label{
    text-align: center;
}
.form-vertical .form-group input{
    outline: #faad14;
    width: 50%;
}
.form-vertical .btn-group{
    color: #ffffff;
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    justify-content: center;
    margin-bottom: 20px;
}
.form-vertical .btn-group .btn-large{
    width: 30%;
    color: #ffffff;
    border-radius: 4px;
}
.teleport-icon img{
    display: block;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    margin-bottom: 30px;
}

.teleport-box .tip{
    font-size: 32px;
    text-align: center;
    color: #333333;
    font-weight: bold;
    margin-bottom: 80px;
}
.teleport-box  .small{
    font-size: 20px;
    color: #a61c0a;
    font-weight: bold;
    text-align: center;
    margin-bottom: 120px;
}

.goHome{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    transition: color ease-in-out 0.5s;
    color: #999999;
    line-height: 28px;
}

.goHome a{
    color: #4099EF;
}

.goHome span{
    display: block;
    width: 20%;
    height: 1px;
    background-color: #666666;
}

.mobile-show{
    display: none;
}

.col-md-4{
    width: 33.333333% !important;
}

.col-sm-4{
    width: calc(33.333333% - 20px) !important;
}

.shadow-sm{
    box-shadow: 0 0 4px #ccc;
}

.p-x-md-10{
    padding-left: 10px;
    padding-right: 10px;
}

.supporter{
    display: none;
    padding: 5px 0;
    height: 50px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #999;
    flex-direction: column;
    justify-content: space-around;
    position: absolute;
    bottom: 70px;
    width: 100%;
}

.supporter .website{
    text-align: center;
    letter-spacing: 0.02em;
}

.supporter a{
    color: #999999;
}

.supporter .text{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.supporter .text img{
    display: block;
    height: 24px;
}

/* video-example */
.video-example{
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-size: 15px;
}
.video-example-item{
    display: flex;
    height: 40px;
    align-items: center;
}
.video-example-item .attr{
    width: 4em;
    text-align-last: justify;
    color: #666;
}
.video-example-item .val{
    flex: 1;
    overflow: hidden;
    color: #666;
    line-height:32px;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    font-size: 15px;
}
.video-example-item .val .tag{
    display: inline-block;
    padding: 5px 10px;
    color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
}

/* mobile-tool */
.mobile-tool,
.poster-modal{
    display: none;
}

.pc-active{
    color: #003399;
    border-bottom: 3px solid #003399 !important;
}

/* is-message-box */
.is-message-box{
    width: 420px;
    background-color: #fff;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, .12);
    border-radius: 4px;
}
.message-box__header{
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
}
.message-box__header .message-box__title{
    font-size: 18px;
    line-height: 1;
    color: #303133;
}
.message-box__header img{
    display: block;
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.message-box__content{
    padding: 10px 15px;
    color: #606266;
    font-size: 14px;
}
.message-box__btns{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 10px;
}
.message-box__btns button{
    display: block;
    background-color: #fff;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}
.btn-danger{
    border-color: #d90000!important;
    background-color: #d90000!important;
    color: #fff;
}

/* toast-box */
.toast-box{
    width: 180px;
    height: 180px;
    background-color: #fff;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.toast-box .icon img{
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}
.toast-box .icon{
    width: 100%;
}
.toast-box .info{
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    height: 40px;
    line-height: 40px;
}

.video_text{
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    display: grid;
    place-items: center;
    padding: 0 25px;
    line-height: 40px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
}

/*专题二维码*/
.topic-qrcode{
    position: absolute;
    top: 10px;
    right: 10px;
}
.topic-qrcode .topic-qrcode-btn{
    color: #ffffff;
    font-size: 14px;
    height: 34px;
    line-height: 34px;
    padding: 0 8px;
    border-radius: 4px;
    cursor: pointer;
    width: 110px;
    box-sizing: border-box;
    text-align: center;
}
.topic-qrcode .topic-qrcode-btn:hover{
    background-color: #4099EFEE;
}
.topic-qrcode .topic-qrcode-container .qrcode-container img{
    display: block;
    width: 100px;
    height: 100px;
}
.topic-qrcode .topic-qrcode-container .qrcode-container{
    position: absolute;
    right: 0;
    top: 44px;
    display: none;
    animation: showIn 1s;
}
.topic-qrcode .topic-qrcode-btn:hover + .topic-qrcode-container .qrcode-container{
    display: block;
}
@keyframes showIn {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.position-relative{
    position: relative;
}
.activity-wrap-title{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    padding: 0 30px;
    box-sizing: border-box;
}

.btn-group{
    width: calc(100% - 20px);
    height: 68px;
    margin: 10px auto;
    display: flex;
    flex-flow: row nowrap;
    gap: 10px;
}
.btn-group a{
    flex: 1;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: 4px;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
}
.btn-group a:first-child{
    background-color: #ff9014;
}
.btn-group a:last-child{
    background-color: #d82549;
}
.btn-group .word{
    flex: 1;
    text-align: center;
    padding-right:10px;
}
.btn-group a img{
    display: block;
    width: 30px;
    height: 30px;
    padding: 2px;
}

.btn-line{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

/* 积分 */
.white-card{
    width: calc(100% - 20px);
    margin: 10px auto;
    border: 1px solid #eeeeee;
    display: grid;
    grid-template-columns: 1fr auto;
    border-radius: 4px;
    padding: 10px;
    box-sizing: border-box;
}
.white-card .pull-right img{
    display: block;
    width: 100px;
}

.white-card .pull-right{
    display: grid;
    place-items: center;
}

.white-card .pull-left{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px 0;
    gap: 10px;
}

.white-card .pull-left .line{
    font-size: 16px;
    font-weight: bold;
}

.white-card .pull-left .line span{
    color: #ffffff;
    background-color: #ff9014;
    border-radius: 10px;
    padding: 0 4px;
    font-size: 14px;
    margin-left: 3px;
}

.white-card .pull-left .num{
    font-size: 20px;
    font-weight: bold;
}

.current-score{
    font-size: 15px;
    color: #333333;
    font-weight: bold;
}

.btn-group-line{
    display: grid;
    grid: 90px / repeat(3, 1fr);
    place-items: center;
    box-sizing: border-box;
    padding: 0 10px;
    gap: 10px;
}

.btn-group-line .btn{
    padding: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    color: #ffffff;
    text-align: center;
    display: grid;
    grid: 100% / auto 1fr;
    place-items: center;
    background-color: #003366;
}

.btn-group-line .btn img{
    display: block;
    width: 60px;
    height: 60px;
    padding: 0 15px;
}

.btn-group-line .btn .info{
    display: flex;
    align-items: center;
}

.btn-group-line .btn.active{
    background-color: #ff9014;
}

.btn-group-line .btn .info .num{
    font-size: 20px;
}

.btn-group-line .btn .info .title{
    font-size: 20px;
}

.column-title-bar{
    line-height: 46px;
    padding: 0 0 0 15px;
    border-bottom: 1px solid #eeeeee;
    font-size: 15px;
    color: #333;
    display: grid;
    grid: 100% / 1fr 70px;
}

.border-left{
    border-left: 1px solid #eeeeee;
    text-align: center;
}

.column-item{
    width: calc(100% - 20px);
    margin: 10px auto 0;
    border: 1px solid #eeeeee;
    border-radius: 4px;
}

.column-item .column-content .column-content-item{
    display: grid;
    grid-template-columns: 70px 1fr 70px;
    grid-template-rows: 100%;
    place-items: center;
    height: 50px;
    border-bottom: 1px solid #eee;
}

.column-item .column-content .column-content-item:last-child{
    border-bottom: none;
}

.column-item .column-content .column-content-item .cate{
    background-color: #ff9014;
    color: #ffffff;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 14px;
}

.column-item .column-content .column-content-item .title{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    place-self: center flex-start ;
    display: block;
    width: 100%;
}

.column-item .column-content .column-content-item .score{
    font-size: 24px;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.search-wrap{
    width: var(--wrap-width);
    margin: 10px auto;
}

.search-bar {
    display: flex;
    align-items: center;
    font-size: 24px;
    height: 50px;
    margin-top: 30px;
    font-weight: bold;
}

.search-default{
    color: #333333;
}

.search-content{
    color: #de002d;
}

.mobile-detail{
    display: none;
    background-color: #fff;
}

.mobile-detail-show{
    display: grid;
    grid: 80px / 1fr 100px;
    border-bottom: 1px solid #eee;
}

.mobile-detail-show  .duration{
    font-size: 13px;
    color: #333;
    padding: 10px;
    line-height: 30px;
}

.mobile-detail-show  .duration > div{
    display: flex;
    gap: 5px;
    color: #666;
}

.mobile-detail-show .btn-con{
    place-self: center;
}

.btn-visit{
    display: block;
    padding: 0;
    width: 70px;
    height: 38px;
    text-align: center;
    line-height: 38px;
    border-radius: 4px;
    color: #fff;
    background-color: #ff9014;
}

.mobile-detail-operate{
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 0 10px;
}

.mobile-detail-operate .operate-item .status{
    color: #ffffff;
    font-size: 14px;
    padding: 0 5px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-sizing: border-box;
    background: #ff9014;
}

.mobile-detail-operate .operate-item{
    display: flex;
    align-items: center;
    gap: 3px;
}

.mobile-detail-operate .operate-item img{
    display: block;
    width: 25px;
    height: 25px;
}

.mobile-detail-operate .operate-item .score{
    font-size: 14px;
    color: #666666;
    line-height: 25px;
}

.overMask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0004;
    z-index: 1003;
    display: grid;
    place-items: center;
}

.video-status{
    color: #fff;
    background-color: #de002d;
    line-height: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 4px;
}

.main-content-title{
    display: none;
}

.wideBar{
    display: grid;
    grid: 55px / 70px 1fr 70px;
    background-color: #fff;
    font-size: 15px;
    color: #333;
    margin-top: 20px;
}

.wideBar .back{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.wideBar .back img{
    display: block;
    width: 20px;
    height: 20px;
}

.wideBar .title{
    font-size: 17px;
    line-height: 55px;
    text-align: center;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 20px;
    box-sizing: border-box;
