/* 大赛页面全局css */

html {
    min-width: 768px;
}

html,
body {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

::selection {
    background-color: #f7b52d40;
}

::-moz-selection {
    background-color: #f7b52d40;
}


/* 全局样式 */

a {
    text-decoration: none;
    color: #000;
    transition: 0.2s ease-in;
}

a:hover {
    color: #F4BD84;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

ul {
    list-style: none;
}


/* 左右栏 */

.col.left {
    width: 50rem;
    text-align: left;
}

.col.right {
    width: 15rem;
    text-align: left;
}


/* 按钮样式 */

.btn {
    width: 300px;
    height: 56px;
    line-height: 56px;
    background: #f7b52d;
    border-radius: 2px;
    text-align: center;
    margin: 10px auto;
    padding: 6px 12px;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.btn:focus {
    background: #f3a200;
}

.btn:hover {
    background: #ffc043;
}

.btn span {
    color: #fff;
    font-size: 20px;
}

.btn.left {
    margin-left: 0;
}

.btn.right {
    margin-right: 0;
}

.btn.capsule {
    height: 48px;
    border-radius: 24px;
    line-height: 48px;
    padding: 0;
    width: 160px;
}


/* 顶部栏全局 */

.navigation {
    height: 5rem;
    line-height: 5rem;
    background: #141414;
    color: #F7BC81;
    padding: 0 5rem !important;
}

.inner-nav {
    position: relative;
    width: 100%;
    display: flex;
}

.navigation a {
    color: #F7BC81;
}

.navigation .menu {
    font-size: 1.125rem;
    text-align: center;
    margin: 0 auto;
}

.navigation .logo img {
    vertical-align: middle;
}


/* 顶部栏菜单 */

.navigation .menu ul {
    display: flex;
}

.navigation .menu ul li {
    padding: 0 7.5px;
}

.navigation .menu ul li:last-child {
    margin: 0;
}

.navigation .menu ul li a {
    padding: 0.625rem 1rem;
}

.navigation .menu ul li a.active {
    background: #F7BC81;
    border-radius: 20px;
    color: #000;
}


/* 顶部栏用户 */

.navigation .user {
    font-size: 0.875rem;
    flex-shrink: 0;
}

.navigation .user .avatar {
    width: 2.875rem;
    height: 2.875rem;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

.navigation .user .name {
    display: inline-block;
}

.navigation .user .avatar img {
    width: 100%;
}


/* 顶部右上角登陆上传功能区 */

.top-nav-usercentre {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

.top-nav-usercentre div {
    margin-right: 10px;
    display: flex;
}

.top-nav-usercentre .btn {
    background: #23b8ff;
    width: 100px;
    height: 36px;
    text-align: center;
    color: #fff !important;
}


/* 宣传图 */

.header-banner img {
    width: 100%;
}


/* 主要内容 */

.container {
    padding: 5rem 10%;
    position: relative;
}


/* 作品列表（...、奖项公示） */

.news-list {
    margin-top: 20px;
    margin-bottom: 40px;
}

.work-list {
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-rows: repeat(auto-fill, 27.375rem);
    grid-template-columns: repeat(auto-fill, 16.875rem);
    column-gap: 20px;
    row-gap: 20px;
}

.work-list .grid {
    justify-content: center;
}

.work-list .album-cover {
    width: 16.875rem;
    height: 16.875rem;
    position: relative;
    overflow: hidden;
    display: flex;
}

.work-list .album-cover .time-length {
    color: #fff;
    background: #00000080;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0.5rem 0.875rem;
    border-top-left-radius: 10px;
}

.work-list .album-cover .layer {
    /* 播放按钮 */
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 40%;
    display: none;
}

.work-list .album-cover .layer img {
    width: 64px;
    height: 64px;
}

.work-list .album-cover .layer:hover {
    display: block;
}

.work-item {
    background: #F2F6FA;
    border-radius: 4px;
    overflow: hidden;
    display: inline-block;
    flex-shrink: 0;
    cursor: pointer;
}

.work-item .work-body {
    padding: 1.25rem 0.75rem;
    position: relative;
}

.work-item .work-body .work-no span {
    font-size: 1.5rem;
    font-style: italic;
}

.work-item .work-body .work-no span.tag {
    color: #737373;
    font-size: 1rem;
    font-weight: bold;
}

.work-list .work-item .work-title {
    font-size: 20px;
    margin-bottom: 2rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.work-body .bottom {
    display: flex;
    justify-content: space-between;
}

.work-list .work-item .uploader span {
    font-size: 1rem;
    vertical-align: sub;
    vertical-align: -webkit-baseline-middle;
}

.work-list .work-body .show-detail {
    width: 1.875rem;
    height: 1.875rem;
    line-height: 1.875rem;
    text-align: center;
    color: #fff;
    display: inline-block;
    background: #9D9D9D;
    border-radius: 100%;
    font-weight: bold;
    font-size: 1.25rem;
    /* position: absolute;
    right: 0; */
    cursor: pointer;
}

.work-list .work-body .show-detail::after {
    content: ">";
}


/* 页脚footer */

footer {
    color: #fff;
    background: #282828;
    font-size: 14px;
    text-align: center;
}

footer a {
    color: #F7BC81;
}

footer span {
    height: 150px;
    display: block;
    padding-top: 40px;
}

.org a {
    margin-right: 70px;
    display: inline-block;
}

.guidance a {
    margin-right: 70px;
    display: inline-block;
}

.org-n-coorg {
    text-align: left;
    padding: 60px 10% 5rem;
    color: #F7BC81;
    background: #252525 url(../img/org-n-coo-bg.png) no-repeat scroll right;
    text-shadow: 0 0 6px #000;
}

.org-n-coorg>div {
    margin-bottom: 79px;
}

.org-n-coorg h4 {
    padding-bottom: 39px;
    border: none;
}

.coorg a,
.supporter a {
    margin-right: 70px;
    display: inline-block;
    line-height: 2em;
}


/* 评论区 */

.comment-box {
    width: 100%;
    margin: 20px auto;
    margin-top: 20px;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
}

#comment-page .mytextarea-box {
    width: 100%;
    overflow: auto;
    word-break: break-all;
    height: 100px;
    color: #000;
    font-size: 1em;
    resize: none;
    background-color: #f4f4f4;
    border: 1px solid #eeeeee;
    border-radius: 2px;
    margin-bottom: 10px;
}

#comment-page .mytextarea {
    width: 100%;
    padding: 5px;
    overflow: auto;
    word-break: break-all;
    height: 98px;
    color: #000;
    font-size: 1em;
    resize: none;
    background-color: #f4f4f4;
    border: 1px solid #f4f4f4;
    outline: none;
}

.comment-list {
    width: 100%;
    margin: 20px auto;
    clear: both;
    padding-top: 20px;
}

.comment-list .comment-info {
    position: relative;
    margin-bottom: 20px;
    margin-bottom: 20px;
}

.comment-list .comment-info header {
    width: 48px;
    height: 48px;
    position: absolute;
}

.comment-list .comment-info header img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.comment-list .comment-info .comment-right {
    margin-top: 5px;
    margin-left: 20px;
    border-bottom: 1px solid #ccc;
}

.comment-list .comment-info .comment-right h3 {
    margin: 5px 0px;
}

.comment-list .comment-info .comment-right .comment-content-header {
    height: 25px;
    font-size: 12px;
}

.comment-list .comment-info .comment-right .comment-content-header span,
.comment-list .comment-info .comment-right .comment-content-footer span {
    padding-right: 2em;
    color: #aaa;
}

.comment-list .comment-info .comment-right .comment-content-header span,
.comment-list .comment-info .comment-right .comment-content-footer span.reply-btn,
.send,
.reply-list-btn {
    cursor: pointer;
}

.comment-list .comment-info .comment-right .reply-list {
    border-left: 3px solid #ccc;
    padding-left: 7px;
}

.comment-list .comment-info .comment-right .reply-list .reply {
    border-bottom: 1px dashed #ccc;
}

.comment-list .comment-info .comment-right .reply-list .reply div span {
    padding-left: 10px;
}

.comment-list .comment-info .comment-right .reply-list .reply p span {
    padding-right: 2em;
    color: #aaa;
}

@media only screen and(min-width:1400px) {
    .container {
        /* width: ; */
    }
}


/* 步骤完成指示器图标 */

.step-controller {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.step-controller div.step-ctrl-item {}

.step-controller .step-ctrl-item span {
    display: inline-block;
    vertical-align: middle;
}

.step-controller .step-ctrl-item .now-at+span:nth-child(2) {
    border-bottom: 4px #000 solid;
    height: 32px;
}

.step-controller .step-ctrl-item .step-complete-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 1rem;
}

.step-complete-icon.step-complete-icon-done {
    background: rgba(246, 180, 45, 1);
}

.step-complete-icon.step-complete-icon-not {
    border: 1px solid rgba(0, 0, 0, 1);
    background: #fff;
}

.step-ctrl-line {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 2px;
    margin: 0 16px;
    width: 200px;
    display: inline-block;
}

.step-ctrl-line-wait {
    background-color: #000;
}

.step-ctrl-line-active {
    background-color: #F6B42D;
}

@media only screen and (min-width:1140px) and (max-width:1400px) {
    .navigation .menu ul li {
        padding: 0
    }
}

@media only screen and (max-width:1140px) {
    html {
        font-size: 12px;
    }
}