.home-warp{
    width: 1200px;
    margin: 15px auto;
}
.home-warp h2{
    font-size: 22px;
    margin-bottom: 10px;
}
.home-warp .title-desc{
    font-size: 14px;
    color: #999;
    font-weight: 300;
    margin-left: 10px;
}
.warp-1{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}
.warp-1 a{
    width: 290px;
    height: 100px;
    text-decoration: none;
}
.warp-1 a:hover{
    box-shadow: 0 0 20px #888;
    border-radius: 8px;
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}
.warp-1 a img{
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.warp-1 a.item-rec{
    display: flex;
    border-radius: 8px;
    color: #fff;
}
.warp-1 a.item-rec .item-1{
    width: 180px;
    padding: 8px 0px 8px 20px;
    flex-direction: column;
    display: flex;
}
.warp-1 a.item-rec .item-1 .item-title{
    font-size: 20px;
    font-weight: bold;
}
.warp-1 a.item-rec .item-1 .item-desc{
    font-size: 12px;
    color: #eee;
    margin-bottom: 5px;
}
.warp-1 a.item-rec .item-1 .item-btn{
    background-color: #fff;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 2px;
    border-radius: 5px;
    font-size: 11px;
    cursor: pointer;
    width: max-content;
    font-weight: bold;
}
.warp-1 a.item-rec .item-1 .item-btn svg{
    height: 12px;
    width: 16px;
    line-height: 15px;
    margin-top: 2px;
}
.warp-1 a.item-rec .item-2{
    width: 100px;
    padding: 10px;
}
.warp-1 a.item-rec .item-2 img{
}
.warp-2 {
    margin-top: 10px;
}
.warp-2 .tool-list{
    background-color: #53a8ff;
    padding: 20px 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    gap: 10px 35px;
    flex-wrap: wrap;
}
.warp-2 .tool-list a i{
    margin-right: 2px;
}
.warp-2 .tool-list a{
    color: #fff;
    background: #66b1ff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
}
.warp-2 .tool-list a:hover{
    background-color: #fff;
    color: #409EFF;
}
.warp-3 {
    margin-top: 10px;
}
.warp-3 .material-list{
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    color: #222;
}
.warp-3 .material-list a{
    color: #222;
    text-decoration: none;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 8px;
    width: 350px;
    height: 250px;
    text-align: center;
    position: relative;
}
.warp-3 .material-list a img{
    width: 310px;
    height: 230px;
    border-radius: 8px;
}
.warp-3 .material-list a:hover img{
    opacity: 0.4;
}
.warp-3 .material-list a span{
    position: absolute;
    bottom: 90px;
    left: 50%;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 3px 1px 0 #f00;
    transform: translateX(-50%);
}
.warp-3 .material-list a:hover span{
    color: #222;
    text-shadow: 1px 1px 0 #fff;
}
.warp-4 {
    margin-top: 10px;
}
.warp-4 h2 a{
    float: right;
    font-size: 14px;
    color: #409EFF;
    margin-top: 15px;
    margin-right: 15px;
}
.hot-list{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}
.rank-section {
    width: 440px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.rank-header {
    padding: 10px 10px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    border-radius: 12px 12px 0 0;
}

.rank-header img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.rank-header h2 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.rank-list {
    list-style: none;
    padding: 0px 10px;
    margin: 0;
    height: 500px;
    overflow-y: scroll;
}
.rank-list::-webkit-scrollbar {
    width: 0px;
}

.rank-item {
    display: flex;
    align-items: center;
    padding: 10px 10px 10px 0;
    border-bottom: 1px solid #f5f5f5;
}
.rank-item .rank-tag{
    color: #fff;
    background: #F56C6C;
    border-radius: 3px;
    font-size: 13px;
    padding: 2px;
    height: 18px;
    line-height: 13px;
}
.rank-item:hover {
    background: #fafafa;
}
.rank-item .rank-title a {
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
    white-space: nowrap;
}
.rank-item .rank-title a:hover {
    color: #F56C6C;
    cursor: pointer;
}

.rank-number {
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    margin-right: 12px;
    font-weight: bold;
}

.rank-number.top-3 {
    color: #fff;
    background: #F56C6C;
    border-radius: 5px;
}

.rank-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.rank-title {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
    display: flex;
    gap: 5px;
}

.rank-views {
    color: #999;
    font-size: 12px;
}
.content-list{
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.content-list a{
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 5px;
    border-bottom: 1px dotted #ccc;
}
.content-list a:hover{
    background-color: #eee;
}
.content-list{
    display: flex;
    flex-direction: column;
}
.content-item{
    display: flex;
    flex-direction: row;
    gap: 10px;
    color: #333;
}
.content-image img{
    width: 180px;
    height: 120px;
    border-radius: 5px;
}
.content-info{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.content-title{
    font-size: 20px;
    font-weight: bold;
    flex: 1;
}
.content-desc{
    font-size: 14px;
    color: #888;
    flex: 2;
}
.content-time{
    font-size: 12px;
    flex: 1;
    color: #999;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
