/* 
 * custom-new.css
 * 创建时间：2024年
 * 描述：新的自定义样式文件
 */

/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 全局样式 */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

/* 响应式布局基础类 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 工具类 */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* 响应式断点 */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 5px;
    }
}

.rigts {
    position: relative;
}
.rigts .hot-tag {
    position: absolute;
    left: 10px;
    top: 70%;
    transform: translateY(-50%);
    background: none;
    color: #303442;
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
    font-weight: bold;
    padding: 0;
    border-radius: 0;
    z-index: 2;
    pointer-events: none;
    box-shadow: none;
    display: flex;
    align-items: flex-end;
    gap: 2px;
}
.rigts .hot-tag .hot-num {
    position: relative;
    top: 4px;
    margin-top: 0;
    font-size: 30px;
    font-weight: bold;
    color: #303442;
    line-height: 1;
    font-family: 'AkrobatBold', 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
}
.rigts .hot-tag .hot-text {
    font-size: 12px;
    font-weight: normal;
    color: #303442;
    margin-left: 2px;
    line-height: 1.2;
}
.rigts {
    /* 保证父级有定位 */
    position: relative;
}

@font-face {
    font-family: 'AkrobatBold';
    src: url('/static/font/Akrobat-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
} 