* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 16px 60px;
}

.card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    width: calc(50% - 10px);
    border: 1px solid #e0e0e0;
}

.card.full-width {
    flex: 0 0 100%;
}

.card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: red;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

@media (max-width: 768px) {
    .card {
        width: calc(50% - 6px);
        height: 90px;
    }
    
    .card.full-width {
        flex: 0 0 100%;
        height: 150px;
    }
    
    .container {
        padding: 12px 12px 60px;
    }
    
    .card-img {
        height: 100%;
    }
    
    .live-btn {
        padding: 2px 8px;
        font-size: 11px;
    }
}

.download-btn{
    position: fixed;
    right: 0;
    top: 20%;
    background-color: #FF8D00;
    color: #fff;
    height: 26px;
    line-height: 26px;
    text-align: center;
    padding: 0 10px;
    font-size: 13px;
    z-index: 999;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    display: flex;
    align-items: center;
}

.right-icon{
    width: 18px;
    height: 18px;
    margin-left: 3px;
}

.open-view{
    position: fixed;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    left: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
}

.over-btn{
    padding: 5px 12px;
    border-radius: 18px;
    color: #fff;
    background-color: #FF8D00;
    font-size: 13px;
}

.bottom-icon{
    width: 18px;  
}