:root {
    --primary-color: rgba(2, 139, 243, 1);
    --danger-color: rgba(228, 86, 73, 1);
    --text-color: rgba(51, 51, 51, 1);
    --text-light: rgba(153, 153, 153, 1);
    --bg-white: rgba(255, 255, 255, 1);
    --border-radius: 4px;
    --box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.03);
}

.main {
  min-height: auto;
  width: 1264px;
  margin: 20px auto;
}
.line {
    width: 1260px;
    height: 1px;
    border-top: solid 0.5px #ccc;
    opacity: 0.3;
    margin: 0px auto;
}
.main_right {
  min-height: auto;
  width: 100%;
  background-color: var(--theme-bg);
  border-radius: 3px;
}

.main_title {
    width: 1210px;
    margin: 0 27px 20px;
    height: 42px;
    line-height: 42px;
    color: var(--text-color);
}
.main_title .left{
    float: left;
    font-weight: 500;
    font-size: 24px;
}
.main_title .right{
    float: right;
    font-weight: 400;
    font-size: 20px;
}
.main_title .right a {
    display: inline-block;
}

/* 布局容器 */
.article-tougao {
    width: 1210px;
    margin: 32px 27px;
    color: var(--text-color);
    display: flex;
}
.article-tougao .left {
    width: 236px;
    border-radius: var(--border-radius);
}
.article-tougao .right {
    width: 902px;
    margin-left: 72px;
}

/* 标题通用样式 */
.section-title {
    font-weight: 400;
    font-size: 24px;
    display: inline-block;
    padding-left: 17px;
    border-left: 6px solid;
    height: 24px;
    line-height: 24px;
}
.title1 {   
    border-left-color: var(--danger-color);
}
.title2 { 
    border-left-color: var(--primary-color);
}

/* 投稿按钮通用样式 */
.tg-submit {
    width: 108px;
    height: 37px;
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-color);
    box-sizing: border-box;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: var(--primary-color);
    cursor: pointer;
    text-decoration: none;
    display: block;
    margin: 39px 10px 0;
    padding: 8px 0;
    transition: all 0.3s ease;
}
.tg-submit:hover {
    background: var(--primary-color);
    color: #ffffff;
    transition: all 0.3s ease;
}
.tg-submit a:hover {
    background: var(--primary-color);
    color: #ffffff;
    transition: all 0.3s ease;
}

/* 卡片通用样式 */
.card {
    border-radius: var(--border-radius);
    background: var(--bg-white);
    box-shadow: var(--box-shadow);
}

/* 投稿区块 */
.article-tougao .left .tg {
    height: 310px;
    width: 236px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-white);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}
.article-tougao .left .tg .icon {
    width: 128px;
    height: 128px;
    padding: 55px 54px 0;
}
.article-tougao .left .tg .zhinan {
    width: 74px;
    height: 24px;
    line-height: 24px;
    color: var(--danger-color);
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    margin: 14px 81px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.article-tougao .left .tg .zhinan i {
    background: url(/kpd/tougao/img/tip.png) no-repeat center center;
    height: 14px;
    width: 14px;
    margin-right: 2px;
    display: inline-block;
}

/* 列表项通用样式 */
.article-tougao .right .item {
    position: relative;
    width: 874px;
    height: 211px;
    border-radius: var(--border-radius);
    background: var(--bg-white);
    box-shadow: var(--box-shadow);
    padding-right: 28px;
    margin-top: 20px;
    display: flex;
    align-items: center;
}
.article-tougao .right .item .item-left {
    width: 228px;
}
.article-tougao .right .item .item-left .cover {
    width: 200px;
    height: 122px;
    padding: 44px 0 44px 28px;
    overflow: hidden;
}
.article-tougao .right .item .item-left .cover img {
    width: 200px;
    height: 122px;
    border-radius: var(--border-radius);
}
.article-tougao .right .item .item-left .album-cover {
    width: 134px;
    height: 168px;
    padding: 22px 0 22px 61px;
    overflow: hidden;
}
.article-tougao .right .item .item-left .album-cover img {
    width: 134px;
    height: 168px;
    border-radius: var(--border-radius);
}

/* 右侧内容区通用样式 */
.item-content {
    width: 627px;
    margin-left: 20px;
}
.item-right {
    height: 122px;
    padding: 44px 0;
}
.album-item-right {
    height: 168px;
    padding: 22px 0;
}
.item-head {
    font-weight: 500;
    height: 35px;
    display: flex;
    align-items: center;
}
.item-head .title {
    font-size: 20px;
}
.item-head .status {
    font-size: 14px;
    width: 56px;
    height: 24px;
    border-radius: 40px;
    border: 1px solid var(--danger-color);
    color: var(--danger-color);
    box-sizing: border-box;
    margin-left: 20px;
    text-align: center;
}
.item-head .time {
    font-size: 16px;
    color: var(--text-light);
    margin-left: 20px;
}
.item-author {
    height: 24px;
    font-size: 14px;
    margin-top: 8px;
}
.item-info {
    font-weight: 400;
    font-size: 14px;
    height: 24px;
    line-height: 24px;
    margin-top: 8px;
}

/* 底部区域通用样式 */
.item-bottom {
    float: right;
    font-size: 14px;
    margin-top: 20px;
    display: flex;
    align-items: center;
}
.album-item-right .item-bottom {
    margin-top: 34px;
}
.item-bottom .user {
    margin-right: 20px;
}
.item-bottom .user span {
    text-align: right;
}
.item-bottom .user span img {
    width: 30px;
    height: 30px;
    margin-left: -10px;
    border-radius: 50%;
    cursor: pointer;
    vertical-align: middle;
}
.item-bottom .btn {
    width: 100px;
    height: 35px;
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-color);
    box-sizing: border-box;
    color: var(--primary-color);
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 32px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}
.item-bottom .btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* 更多按钮 */
.btn-more {
    width: 164px;
    font-weight: 400;
    font-size: 16px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    height: 35px;
    line-height: 35px;
    text-align: center;
    padding: 4px 50px;
    margin: 20px auto 0;
    cursor: pointer;
    border-radius: var(--border-radius);
}
.article-tougao .right .topic-item-more,
.article-tougao .right .album-item-more {
    display: none;
}
/* 参加征文页 */

.item-area .item-l {
    width: 450px;
}
.item-area .item-l .title {
    height: 24px;
    color: rgb(51, 51, 51);
    font-size: 24px;
    border-left: 6px solid var(--primary-color);
    padding-left: 17px;
    line-height: 24px;
    font-weight: 400;
}
.item-area .item-box {
    padding: 42px 39px;
    margin-top: 27px;
    border: 2px solid var(--primary-color);
    box-sizing: border-box;
    background: var(--bg-white);
}
.item-area .item-box .litopic {
    width: 372px;
    height: 133px;
    padding: 15px 20px;
    background: #f7f7f7;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid #eee;
    cursor: pointer;
    display: flex;
    /* align-items: center; */
}

.item-area .item-box .litopic .topic_t{
    width: 76px;
}
.item-area .item-box .litopic .topic_t .img{
    width: 76px;
    height: 102px;
    border-radius: 2px;
    cursor: pointer;
}
.item-area .item-box .litopic .topic_t .reward{
    font-size: 14px;
    font-family: Microsoft YaHei;
    width: 220px; 
    color: #333;
    margin-top: 12px; 
    font-size: 14px; 
    float: right;
}

.item-area .item-box .litopic .topic_b{    
    padding-left: 20px;
    height: 100%;
    width: 100%;
}
.item-area .item-box .litopic .topic_b .tit{
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 500;
    color: #333333;
    width: 100%;
    cursor: pointer;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
}
.item-area .item-box .litopic .topic_b .tb_r{
    float: right;
    margin-top: 56px;
}
.item-area .item-box .litopic .topic_b .tb_r span{
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333333;
}
.item-area .item-box .litopic .v4{
    width: 60px;
    height: 60px;
    position: absolute;
    margin-top: -16px;
    margin-left: 291px;
    cursor: pointer;
}
.item-area .item-box .litopic .v4 .choose_img{
    background: url('/kpd/tougao/img/bifo_choose1.png') center no-repeat;
    background-size: cover;
    width: 54px;
    height: 50px;
    float: right;
}
.item-area .item-box .litopic .v4 .show{
    background: url('/kpd/tougao/img/bifo_choose2.png') center no-repeat;
    background-size: cover;
}
.item-area .item-r {
    width: 450px;
    margin-left: 20px;
}
.item-area .item-r .item-box {
    border: 2px solid #f2b641;
}
.item-area .item-r .title {
    height: 24px;
    color: rgb(51, 51, 51);
    font-size: 24px;
    border-left: 6px solid #f2b641;
    padding-left: 17px;
    line-height: 24px;
    font-weight: 400;
}
.item-area .item-r .item-box .litopic .v4 .show{
    background: url('/kpd/tougao/img/bifo_choose3.png') center no-repeat;
    background-size: cover;
}
