/* 文章列表样式 */
.article-list{
    width: 100%;
    margin-bottom: 30px;
}
.article-list .toplist, .article-list .list{
    width: 960px;
}
.article-list .toplist{
    display: flex;
    margin-bottom: 20px;
}
.article-list .toplist .item:first-child{
    flex: 2;
    flex-grow: 2;
    min-height:440px;
    margin-right: 20px;
}
.article-list .toplist .item:nth-child(2){
    flex: 1;
    flex-grow: 1;
    min-height:440px;
    margin-right: 0;
}
.article-list .toplist .item:first-child .img,
.article-list .toplist .item:nth-child(2) .img{
    height:310px;
    width: 100%;
    overflow: hidden;
}
.article-list .toplist .item:first-child .name,.article-list .toplist .item:nth-child(2) .name{
    font-size: 21px;
}
.article-list .list{
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    grid-gap: 40px;
}
.article-list .toplist .item .img:hover   .name,
.article-list .toplist .item .name:hover,
.article-list .list .item .img:hover   .name,
.article-list .list .item .name:hover {
    text-decoration: underline;
}
.article-list .toplist .item .name,
.article-list .list .item .name{
    color:#2e2e2e;
    font-size: 16px;
    font-weight: 600;
    margin: 15px 0;
}
.article-list .list .item .name{
    max-height: 45px;
    overflow: hidden;
}
.article-list .list .item:nth-child(-n 3),
.article-list .list .item:nth-child(n 10):nth-child(-n 12),
.article-list .list .item:nth-child(n 19):nth-child(-n 21) {
    height: 260px;
    overflow: hidden;
    /* padding-bottom: 20px; */
}
.article-list .list .item:nth-child(-n 3) .img,
.article-list .list .item:nth-child(n 10):nth-child(-n 12) .img,
.article-list .list .item:nth-child(n 19):nth-child(-n 21) .img {
    width: 100%;
    height:150px;
    overflow: hidden;
}

.article-list .list .item:nth-child(n 4):nth-child(-n 9),
.article-list .list .item:nth-child(n 13):nth-child(-n 18),
.article-list .list .item:nth-child(n 22):nth-child(-n 27) {
    height: 110px;
    overflow: hidden;
    /* padding-bottom: 20px; */

}
.article-list .list .item:nth-child(n 4):nth-child(-n 9) .img,
.article-list .list .item:nth-child(n 13):nth-child(-n 18) .img,
.article-list .list .item:nth-child(n 22):nth-child(-n 27) .img{
    display: none;
}
.article-list .list .item:nth-child(n 4):nth-child(-n 9) .name,
.article-list .list .item:nth-child(n 13):nth-child(-n 18) .name,
.article-list .list .item:nth-child(n 22):nth-child(-n 27) .name{
    color:#2e2e2e;
    font-size: 14px;
    margin: 15px 0;
}
.article-list .toplist .item,
.article-list .list .item{
    border-bottom: 1px solid #ccc;
}
.article-list .toplist .item img,
.article-list .list .item img{
    width: 100%;
    height:100%;
    object-fit: cover;
    display: inline-block;
    cursor: pointer;
    transform: all .5s ease-in-out;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    transition-property: all;
}
.article-list .toplist .item img:hover,
.article-list .list .item img:hover{
    transform: scale(1.1);
}
.article-list .toplist .item .other,
.article-list .list .item .other{
    display: flex;
    line-height: 15px;
}
.article-list .toplist .item .author,
.article-list .list .item .author{
    font-size: 12px;
    font-weight: 600;
    color:#005594;
}

.article-list .toplist .item .time,
.article-list .list .item .time{
    margin-left: 50px;
    font-size: 12px;
    font-weight: 600;
    color:#747474;
}
.video-list-box .item{
    position: relative;
    border-top: 4px solid #fcb700;
}
.video-list-box .video-tag{
    position: absolute;
    right: 0;
    top: 0;
    transition: width 1s;
    width: 40px;
    height:40px;
    background-color: #fcb700;
    overflow: hidden;
    display: flex;
    direction:rtl;
    text-align: left;
    white-space: nowrap;
}
.video-list-box .video-tag .button{
    width: 34px;
    height: 34px;
    position: absolute;
    right: 10px;
    top: 2px;
    color:#fff;
    display: flex;
    text-align: center;
    align-items: center;
}
.video-list-box .video-tag .watch-now{
    position: absolute;
    right: 52px;
    top: 12px;
    color: black;
    font-size: 13px;
    font-weight: 800;
}
.video-list-box .video-tag:hover,
.video-list-box .img:hover ~ .video-tag,
.video-list-box .name:hover ~ .video-tag,
.video-list-box .button-border:hover    .video-tag{
    cursor: pointer;
    width: 150px;
}
.video-list-box .button-border{
    width: 34px;
    height: 34px;
    position: absolute;
    right: 3px;
    top: 2px;
    border:2px solid #fff;
    z-index: 2;
    display: none;
}
.video-list-box .button-border:hover,
.video-list-box .img:hover ~ .button-border,
.video-list-box .name:hover ~ .button-border,
.video-list-box .video-tag:hover  ~ .button-border{
    cursor: pointer;
    display: block;
}
.video-list-box .time{
    margin-left: 0 !important;
}
/* 文章阅读样式 */
/* 财经俱乐部阅读盒子 */
.vip-read-box{
    display: flex;
}
.vip-read-box .right-box{
    width: 100%;
}
.vip-read-box .right-box .title{
    width: 100%;
    border-top: 1px solid black;
    margin-top: 15px;
    position: relative;
    color: #002f6c;
    font-size: 18px;
    font-weight: 800;
    padding-top: 5px;
}
.vip-read-box .right-box .title .tag{
    width: 110px;
    position: absolute;
    background-color: #0089d0;
    top:-6px;
    height: 6px;
}
.vip-read-box .right-box .list .item{
    margin: 15px 0;
}
.vip-read-box .right-box .list .item a{
    display: flex;
}
.vip-read-box .right-box .list svg{
    min-width:30px;
    max-width:30px;
    height:40px;

}
.vip-read-box .right-box .list .item a div{
    height: 20px;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
    margin: 10px;
}
.article-read .tools{
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    width: 960px;
}
.article-read .tool{
    display: flex;
}
.article-read .tools .time{
    color: #747474;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
    margin-right: 4px;
    text-transform: uppercase;
    white-space: normal;
}
.article-read .like{
    display: flex;
    color:#808080;
    margin-right: 60px;
    line-height: 26px;
}
.article-read .like span{
    margin-left: 6px;
}
.article-read .like:hover{
    cursor: pointer;
    color:#fcb700;
}
.article-read .tools .share{
    line-height: 26px;
    height: 26px;
    display: flex;
}
.article-read .tools .share i{
    font-family: proxima nova, helvetica, arial, sans-serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin: 2px 2px 0 0;
    text-transform: uppercase;
    margin-left: 5px;
}
.article-read .share-sina{
    color: red;
}
.article-read .share-wechat{
    color: green;
}
.article-read .tools .share i:nth-child(1){
    color: #7b7b7b;
    font-family: proxima nova, helvetica, arial, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin: 2px 2px 0 0;
    text-transform: uppercase;
}
.article-read .tools .share i:nth-child(2):hover,.article-read .tools .share i:nth-child(3):hover{
    cursor: pointer;
    color: #fcb700;
}
.article-read .yc-tag{
    margin: 0 6px 16px 0;
    background-color: #fe3956;
    color:#fff;
    font-size: 14px;
    height:25px;
    width: 50px;
    line-height:20px;
    border-radius: 4px;
    letter-spacing:2px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.article-read .title{
    font-size: 38px;
    line-height: 1.3;
    letter-spacing: 2px;
    width: 960px;
}
.article-read .img{
    width: 860px;
    overflow: hidden;
    margin-top: 15px;
    border-bottom: 1px dashed #9b9b9b;
    padding-bottom: 15px;
}
.article-read .img img{
    width: 100%;
    height:310px;
    object-fit: cover;
    display: inline-block;
    cursor: pointer;
}
.article-read .img .abstract{
    color: #171717;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    margin: 15px 0 5px 0;
}
.article-read .img .other{
    display: flex;
    line-height: 20px;
    align-items: center;
}

.article-read .img  .other i{
    color: #747474;
    font-family: lyon, helvetica, arial, sans-serif;
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
}
.article-read .img .other a i{
    color:#005594;
}
.article-read .img .other span{
    width: 1px;
    height:20px;
    background-color: #9b9b9b;;
    margin: 0 10px;
    display: block;
}
.article-read .content{
    width: 860px;
    margin-top: 15px;
    border-bottom: 1px dashed #9b9b9b;
    line-height:35px;
    font-size: 16px!important;
    text-align: justify;
    font-family: 'microsoft yahei';
    line-height:30px;
    padding:0 40px;
    overflow: hidden;
}
.article-read .content p{
    text-indent: 2em!important;
    margin: 15px 0;
}
.article-read .content h1,h2,h3,h4,h5{
    font-size: 18px;
}
.article-read .content img{
    max-width: calc(100% - 80px);
}

.article-read iframe{
    width: 100%;
    height:410px;
    border: 0;
}
/* 阅读-声明标注 */
.read-tag{
    width:670px;
    height:70px;
    background-color: #f2f2f2;
    margin:20px 50px 0 50px;
    padding:10px;
    text-align: right;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
    display: flex;
}
.read-tag .tag-head{
    width:20px;
    padding:3px;
    display: block;
    background-color: var(--color-red);
    color:#fff;
}
.read-tag .tag-content{
    margin-left: 10px;
    font-size: xx-small;
    font-weight: 550;
    text-align: left;
}
/* 相关推荐 */
.t-column{
    /* height:1240px; */
}
.t-column .item-row{
    margin-top: 30px;
    width: 960px;
    height:750px;
}
.t-column .item-row .banner{
    width: 100%;
    border-bottom: 1px solid #747474;
    margin-bottom: 10px;
}
.t-column .item-row .banner span{
    display: block;
    width:110px;
    height:6px;
    background-color: #fcb700;
}
.t-column .item-row .title{
    color:#002f6c;
    line-height: 30px;
    font-size: 28px;
    font-weight: 600;
    height: 50px;
    margin-top: 15px;
}
.t-column .item-row .list .item{
    width: 310px;
    height: 238px;
    overflow: hidden;
    float: left;
    margin-right: 15px;
}
.t-column .item-row .list .item:first-child{
    width:630px;
    min-height:440px;
    margin-right: 20px;
}
.t-column .item-row .list .item:nth-child(2){
    min-height:440px;
    margin-right: 0;
}
.t-column .item-row .list .item:nth-child(5),
.t-column .item-row .list .item:nth-child(8),
.t-column .item-row .list .item:last-child{
    margin-right: 0;
}

.t-column .item-row .list .item .img{
    width: 100%;
    height:150px;
    overflow: hidden;
    border-bottom: 0;
}
.t-column .item-row .list .item img{
    width: 100%;
    height:100%;
    object-fit: cover;
    display: inline-block;
    cursor: pointer;
    transform: all .5s ease-in-out;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    transition-property: all;
}
.t-column .item-row .list .item:first-child .img,
.t-column .item-row .list .item:nth-child(2) .img{
    height:310px;
}
.t-column .item-row .list .item img:hover{
    transform: scale(1.1);
}
.t-column .item-row .list .item .img:hover   .name, 
.t-column .item-row .list .item .name:hover {
    text-decoration: underline;
}
.t-column .item-row .list .item .name{
    color:#2e2e2e;
    font-size: 16px;
    font-weight: 600;
    margin: 5px 0;
    max-height: 46px;
    overflow: hidden;
}
.t-column .item-row .list .item:first-child .name,
.t-column .item-row .list .item:nth-child(2) .name{
    font-size: 21px;
    max-height: 60px;
}
.t-column .item-row .list .item .author{
    font-size: 12px;
    font-weight: 600;
    color:#005594;
}
/* 视频相关推荐 */
.video-list .item{
    width:196.6px;
    position: relative;
    border-top: 4px solid #fcb700;
    overflow: hidden;
    margin: 15px 0 0 20px;
    float: left;
    height:190px;
}
.video-list .item:first-child{
    width:400px;
    height:265px;
}
.video-list .item:nth-child(2),
.video-list .item:nth-child(3){
    width:210px;
    height:265px;
    margin: 15px 0 0 20px;
}
.video-list .item:first-child img,
.video-list .item:nth-child(2) img,
.video-list .item:nth-child(3) img{
    height:200px;
}
.video-list .item:nth-child(5),
.video-list .item:nth-child(8){
    margin-right: 0;
}
.video-list .item .img{
    height:125px;
}
.video-list .item:first-child .img,
.video-list .item:nth-child(2) .img,
.video-list .item:nth-child(3) .img{
    height:200px;
}
.video-list .item img{
    width: 100%;
    height:100%;
    object-fit: cover;
    display: inline-block;
    cursor: pointer;
    transform: all .5s ease-in-out;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    transition-property: all;
}
.video-list .video-tag{
    position: absolute;
    right: 0;
    top: 0;
    transition: width 1s;
    width: 40px;
    height:40px;
    background-color: #fcb700;
    overflow: hidden;
    display: flex;
    direction:rtl;
    text-align: left;
    white-space: nowrap;
}
.video-list .video-tag .button{
    width: 34px;
    height: 34px;
    position: absolute;
    right: 10px;
    top: 2px;
    color:#fff;
    display: flex;
    text-align: center;
    align-items: center;
}
.video-list .video-tag .watch-now{
    position: absolute;
    right: 52px;
    top: 12px;
    color: black;
    font-size: 13px;
    font-weight: 800;
}
.video-list .video-tag:hover,
.video-list .img:hover ~ .video-tag,
.video-list .name:hover ~ .video-tag,
.video-list .button-border:hover    .video-tag{
    cursor: pointer;
    width: 150px;
}
.video-list .button-border{
    width: 34px;
    height: 34px;
    position: absolute;
    right: 3px;
    top: 2px;
    border:2px solid #fff;
    z-index: 2;
    display: none;
}
.video-list .button-border:hover,
.video-list .img:hover ~ .button-border,
.video-list .name:hover ~ .button-border,
.video-list .video-tag:hover  ~ .button-border{
    cursor: pointer;
    display: block;
}
.video-list .name{
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}
/* 快讯列表 */
.kx-list-box{
    width:100%;
    margin-top:30px;
}
.kx-list-box i{
    box-sizing: border-box;
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--color-red);
    border-radius: 50%;
    border: 3px solid #eee6e4;
    align-self: center;
    margin: 5px 0 0 3px;
    z-index:0;
}
.kx-list-box .layui-timeline-title{
    color: #b0b6c0;
    font-size: 14px;
}
.kx-list-box .layui-text a{
    color:black;
    text-decoration:none;
}
.kx-list-box .layui-text a:hover{
    color:var(--color-red);
    text-decoration:none;
}
.kx-list-box p{
    font-size: 15px;
    color: #707070;
    margin: 10px 0 0 0;
}
.kx-list-box .layui-text .title-url{
    font-size: 15px;
    color: #398dee;
    margin-left: 10px;
}
.kx-list-box .layui-timeline-item{
    border-bottom: 1px dashed #9b9b9b;
    margin-top: 10px;
}