.detail-banner{
    width: 1920px;
    height: 400px;
    margin: 0 auto;
}
.detail-banner img{
    width: 100%;
    height: 100%;
}
.layui-breadcrumb{
    margin-top: 25px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
}
.layui-breadcrumb a{
    color: #84868C;
}
.layui-breadcrumb a:hover{
    color: #151B26!important;
}
.layui-breadcrumb a.active{
    color: #151B26!important;
}
.detail-top{
    display: flex;
    margin-top: 24px;
}
.detail-top-left{
    width: 800px;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}
.detail-top-left img{
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    object-fit: cover;
}
.detail-top-left:hover img{
    transform: scale(1.1);
}
.detail-top-right{
    flex: 1;
    box-sizing: border-box;
    padding: 0 24px;
}
.top-detail-title{
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 20px;
    color: #151B26;
    line-height: 28px;
    margin-bottom: 12px;
}
.top-detail-title img{
    margin-right: 4px;
}
.detail-item{
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 16px;
    color: #84868C;
    line-height: 22px;
    display: flex;
    align-items: center;
}
.detail-item .t{
    width: 65px;
}
.detail-item .i{
    flex: 1;
}

.detail-btns{
    display: flex;
    gap: 24px;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 30px;
}
.detail-btn{
    width: 200px;
    background: #2468F2;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s ease;
}
.detail-btn:hover{
    border-radius: 10px;
}
.detail-btn img{
    margin-right: 2px;
}
.detail-title{
    margin-top: 40px;
    font-weight: 500;
    font-size: 24px;
    color: #151B26;
    line-height: 33px;
}
.detail-content{
    margin-top: 20px;
}

.detail-content img{
    display: inline-block;
    max-width: 100%;
}
.detail-like{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:16px;
    margin-top: 16px;
}
.like-item{
    height: 260px;
    border-radius: 16px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.like-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.like-item:hover img{
    transform: scale(1.1);
}
.like-item span{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
    z-index: 999;
    text-align: center;
    background: rgba(0,0, 0, 0.5);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.5s ease;
}
.like-item:hover span{
    bottom: 0px;
}