@import"common.css";
@import"right.css";

.banner{
    width: 100%;
    /* height: 500px; */
    overflow: hidden;
    min-width: 1239px;
}
.banner img{
    width: 100%;
    height: auto;
}
.list{
    width: 1239px;
    margin: 0 auto;
    padding-top: 10px;
}
.item{
    width: 100%;
    height: auto;
}
.type{
    width: 100%;
    height: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #cccccc;
}
.type .left{
    width: calc(100% - 80px);
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.type .left .icon{
    display: block;
    width: 3px;
    height: 22px;
    background: #5d248f;
    border-radius: 2px;
    flex-shrink: 0;
}
.type .left .name{
    width: auto;
    height: 22px;
    font-family: source han sans cn;
    font-weight: 600;
    font-size: 20px;
    color: #5d248f;
    line-height: 22px;
    margin-left: 10px;
    flex-shrink: 0;
    margin-bottom: 2px;
}
.type .left .desc{
    width: auto;
    height: 22px;
    font-family: source han sans cn;
    font-weight: 400;
    font-size: 15px;
    color: #333333;
    line-height: 22px;
    margin-left: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.type .right{
    width: 80px;
    height: 100%;
}
.type .right a{
    display: block;
    width: 100%;
    height: 100%;
    font-family: source han sans cn;
    font-weight: 400;
    font-size: 12px;
    color: #666666;
    line-height: 22px;
    text-align: right;
}
.type .right a:hover{
    color: #5d248f;
}
.article{
    width: 100%;
    height: auto;
    padding-top: 25px;
    padding-bottom: 35px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.article .image_arc{
    width: 260px;
    height: 193px;
    flex-shrink: 0;
}
.article .image_arc a{
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.article .image_arc a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}
.article .image_arc a img:hover{
    transform: scale(1.1);
}
.article .arc_list{
    width: calc((100% - 330px) / 2);
    height: auto;
    padding-left: 20px;
}
.article .arc_list:nth-child(3){
    margin-left: 20px;
}
.article .arc_list .arc{
    display: block;
    width: 100%;
    height: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 9px;
}
.article .arc_list .arc .title::before{
    content: "·";
    font-size: 20px;
    padding-right: 5px;
    position: relative;
    top: 3px;
}

.article .arc_list .arc .title{
    display: block;
    width: calc(100% - 75px);
    height: 22px;
    font-family: source han sans cn;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.article .arc_list .arc .title:hover{
    color: #5d248f;
}
.article .arc_list .arc .pubdate{
    font-family: source han sans cn;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
}
