* {
    margin: 0;
    padding: 0;
    font-family: Source Han sans-serif;
    box-sizing: border-box;
}

body {
    background: #f7f7f7;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

.left-rightmenu-layout {
    width: 1200px;
    margin: 24px auto 64px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

}

.left-rightmenu-layout .left-content {
    width: 898px;
    background: #f7f7f7;
    border-radius: 4px;
}

.left-rightmenu-layout .right-menu {
    width: 282px;
    margin-left: 20px;
    position: sticky;
    top: 84px;
}


/* 右边菜单css开始  */
.marTop14 {
    margin-top: 14px;
}

.rightNav {
    width: 282px;
    background: #FFFFFF;
    border-radius: 4px;
}

.rightNav .titleBox {
    width: 282px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 8px;
    border-bottom: 1px solid #EEEEEE;
}

.rightNav .titleBox .title {
    height: 22px;
    font-size: 16px;
    font-family: Source Han Sans;
    font-weight: 600;
    color: #333333;
    line-height: 22px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.rightNav .titleBox .title::before {
    width: 4px;
    height: 24px;
    background: #0099AD;
    border-radius: 4px;
    display: inline-block;
    content: "";
    margin-right: 12px;
}

.rightNav .titleBox .title>span {
    font-size: 16px;
    color: #999999;
    line-height: 22px;
    text-transform: uppercase;
}

.rightNav .titleBox .more {
    display: flex;
    align-items: center;
    height: 20px;
    font-size: 14px;

    color: #999999;
    line-height: 20px;
    cursor: pointer;

}

.rightNav .titleBox .more::after {
    display: inline-block;
    content: '';
    width: 16px;
    height: 16px;
    background: url(../../img/arrow2.png) no-repeat;
    background-size: 100% 100%;

}

.rightNav .itemBox {
    padding: 8px;
}

.rightNav .itemBox .item {
    padding: 14px 8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #EEEEEE;
    background: #FFFFFF;
    cursor: pointer;
}

.rightNav .itemBox .item:hover {
    background: #f7f7f7;
    border-radius: 4px;
}

.rightNav .itemBox .item:nth-last-of-type(1) {
    border-bottom: none;
}

.rightNav .itemBox .item>img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.rightNav .itemBox .item>p {
    width: 190px;
    height: 20px;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rightNav .itemBox .hot::after {
    display: inline-block;
    content: "热";
    width: 20px;
    height: 20px;
    color: #FFFFFF;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    background: #FE784A;
    border-radius: 4px;
    margin-left: 12px;

}

.rightNav .itemBox .new::after {
    display: inline-block;
    content: "新";
    width: 20px;
    height: 20px;
    color: #FFFFFF;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    background: #FE784A;
    border-radius: 4px;
    margin-left: 12px;
}

.rightNav .itemBox .projectPic {
    width: 266px;
    height: 244px;
    background: #FFFFFF;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.rightNav .itemBox .projectPic>img {
    width: 266px;
    height: 196px;
    border-radius: 4px;

}

.rightNav .itemBox .projectPic>p {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
}

.rightNav .itemBox .hot1 {
    position: relative;
}

.rightNav .itemBox .new1 {
    position: relative;

}

.rightNav .itemBox .hot1::after {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    content: "";
    width: 40px;
    height: 40px;
    background: url(/static/v2/img/home-hot.png) no-repeat;
    background-size: 100% 100%;
    z-index: 10;
}


.rightNav .itemBox .new1::after {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    content: "";
    width: 40px;
    height: 40px;
    background: url(/static/v2/img/home-new.png) no-repeat;
    background-size: 100% 100%;
    z-index: 10;
}



/* 右边菜单结束 */