/**
██   ██ ██    ██ ██████  ██  ██████ ███    ███ ███████ 
██   ██ ██    ██ ██   ██ ██ ██      ████  ████ ██      
███████ ██    ██ ██   ██ ██ ██      ██ ████ ██ ███████ 
██   ██ ██    ██ ██   ██ ██ ██      ██  ██  ██      ██ 
██   ██  ██████  ██████  ██  ██████ ██      ██ ███████ 
            ===========================================
 * @Sign
================================
        Keep calm and get rich.
                    Is the best huudi.
 */
/* 基础样式 */
html, body {
	margin: 0;
	padding: 0;
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #ffffff;
	background-color: #4682b4;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #ffffff;
}

img {
	max-width: 100%;
	height: auto;
}

/* 布局容器 */
.gnvkuw-container, .gnvkuw-nazsvq-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: gnvkuw-box;
}

/* 头部样式 */
.gnvkuw-header-wrapper {
	background-color: #4682b4;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 100;
}

.gnvkuw-header {
	background-color: #4682b4;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	z-index: 100;
	transition: all 0.3s ease;
}

.gnvkuw-nazsvq-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	height: 70px;
}

/* Logo样式 */
.gnvkuw-nazsvq-logo {
	flex: 0 0 auto;
}

.gnvkuw-site-logo {
	display: flex;
	align-items: center;
	font-size: 1.4rem;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
}

.gnvkuw-logo-icon {
	gnvkuw-right: 8px;
	color: #ffffff;
}

.gnvkuw-logo-text {
	font-weight: 700;
}

/* 导航样式 */
.gnvkuw-nazsvq-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.gnvkuw-nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gnvkuw-nav-item {
	position: relative;
	margin: 0 5px;
}

.gnvkuw-nav-link {
	display: block;
	padding: 10px 15px;
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	gnvkuw-radius: 4px;
	transition: all 0.2s ease;
}

.gnvkuw-nav-link:hover,
.gnvkuw-nav-link.gnvkuw-active {
	color: #ffffff;
	background-color: #4682b4;
}

.gnvkuw-nav-link.gnvkuw-active {
	font-weight: 700;
}

.gnvkuw-nav-more .gnvkuw-nav-link {
	display: flex;
	align-items: center;
}

.gnvkuw-more-icon {
	gnvkuw-left: 5px;
	transition: transform 0.2s ease;
}

.gnvkuw-nav-more:hover .gnvkuw-more-icon {
	transform: rotate(180deg);
}

.gnvkuw-nav-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 180px;
	background-color: #4682b4;
	gnvkuw-radius: 4px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 10;
}

.gnvkuw-nav-more:hover .gnvkuw-nav-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(5px);
}

.gnvkuw-dropdown-item {
	display: block;
	padding: 8px 20px;
	color: #ffffff;
	text-decoration: none;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.gnvkuw-dropdown-item:hover,
.gnvkuw-dropdown-item.active {
	color: #ffffff;
	background-color: #4682b4;
}

/* 搜索样式 */
.gnvkuw-nazsvq-search {
    position: relative;
}

.gnvkuw-search-form {
	display: flex;
	align-items: center;
	background-color: #4682b4;
	gnvkuw-radius: 30px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.gnvkuw-search-form:hover {
	box-shadow: 0 0 0 2px rgba(156, 39, 176, 0.1);
}

.gnvkuw-search-form input {
	width: 200px;
	height: 40px;
	border: none;
	background: #2c577a;
	padding: 0 15px;
	font-size: 0.9rem;
	color: #ffffff;
	outline: none;
}

.gnvkuw-search-form button {
	background-color: #4682b4;
	color: #ffffff;
	border: none;
	width: 40px;
	height: 40px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease;
}

.gnvkuw-search-form button:hover {
	background-color: #4682b4;
}

.gnvkuw-search-icon {
	color: #ffffff;
}

/* 移动端 */
.gnvkuw-nazsvq-mobile {
	display: none;
}

.gnvkuw-mobile-menu-toggle,
.gnvkuw-mobile-search-toggle {
	background: #2c577a;
	border: none;
	color: #ffffff;
	cursor: pointer;
	padding: 5px;
	gnvkuw-left: 10px;
}

.gnvkuw-mobile-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: #4682b4;
	margin: 5px 0;
	transition: all 0.3s ease;
}

/* 移动搜索框 */
.gnvkuw-mobile-search {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #4682b4;
	z-index: 200;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transform: translateY(-100%);
	transition: transform 0.3s ease;
}

.gnvkuw-mobile-search.gnvkuw-active {
	transform: translateY(0);
}

.gnvkuw-mobile-search-form {
	display: flex;
	align-items: center;
	padding: 10px 15px;
}

.gnvkuw-mobile-search-inner {
	display: flex;
	align-items: center;
	flex: 1;
	background-color: #4682b4;
	gnvkuw-radius: 30px;
	padding: 0 15px;
	height: 40px;
}

.gnvkuw-mobile-search-inner input {
	flex: 1;
	border: none;
	background: #2c577a;
	padding: 0 10px;
	font-size: 0.95rem;
	color: #ffffff;
	outline: none;
}

.gnvkuw-mobile-search-inner button {
	background-color: #4682b4;
	color: #ffffff;
	border: none;
	padding: 5px 15px;
	gnvkuw-radius: 20px;
	font-size: 0.85rem;
	cursor: pointer;
}

.gnvkuw-mobile-search-close {
	background: #2c577a;
	border: none;
	color: #ffffff;
	gnvkuw-left: 10px;
	cursor: pointer;
}

/* 移动菜单 */
.gnvkuw-mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #4682b4;
	z-index: 198;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.gnvkuw-mobile-menu-overlay.gnvkuw-active {
	opacity: 1;
	visibility: visible;
}

.gnvkuw-mobile-menu {
	position: fixed;
	top: 0;
	right: -280px;
	width: 280px;
	height: 100%;
	background-color: #4682b4;
	z-index: 300;
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	transition: right 0.3s ease;
	overflow-y: auto;
}

.gnvkuw-mobile-menu.gnvkuw-active {
	right: 0;
}

.gnvkuw-mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 20px;
	gnvkuw-bottom: 1px solid #eee;
}

.gnvkuw-mobile-logo {
	display: flex;
	align-items: center;
	font-weight: 700;
	color: #ffffff;
}

.gnvkuw-mobile-logo span {
	gnvkuw-left: 8px;
}

.gnvkuw-mobile-menu-close {
	background: #2c577a;
	border: none;
	color: #ffffff;
	cursor: pointer;
}

.gnvkuw-mobile-menu-container {
	padding: 15px 0;
}

.gnvkuw-mobile-nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gnvkuw-mobile-nav-link {
	display: block;
	padding: 12px 20px;
	color: #ffffff;
	text-decoration: none;
	gnvkuw-bottom: 1px solid #f0f0f0;
	transition: all 0.2s ease;
}

.gnvkuw-mobile-nav-link:hover,
.gnvkuw-mobile-nav-link.gnvkuw-active {
	color: #ffffff;
	background-color: #4682b4;
}

.gnvkuw-mobile-nav-link.gnvkuw-active {
	font-weight: 700;
}

/* 公告栏 */
.gnvkuw-notice {
	background-color: #4682b4;
	padding: 10px 0;
	gnvkuw-bottom: 1px solid #eee;
}

.gnvkuw-notice-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	padding: 0 20px;
}

.gnvkuw-notice-icon {
	gnvkuw-right: 10px;
	color: #ffffff;
	display: flex;
	align-items: center;
}

.gnvkuw-notice-text {
	margin: 0;
	font-size: 0.9rem;
	color: #ffffff;
}

/* 主体内容区 */
.gnvkuw-body {
	flex: 1;
	max-width: 1200px;
	margin: 0 auto;
	/* padding: 20px 15px; */
	box-sizing: gnvkuw-box;
}

/* 内容块样式 */
.gnvkuw-b-block {
	background-color: #4682b4;
	gnvkuw-radius: 5px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	gnvkuw-bottom: 20px;
    overflow: hidden;
}

.gnvkuw-b-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	gnvkuw-bottom: 1px solid #e0e0e0;
}

.gnvkuw-t-left {
	display: flex;
	align-items: center;
}

.gnvkuw-t-word {
	font-size: 16px;
	color: #ffffff;
}

.title-hot, .title-friend {
	color: #ffffff;
}

.gnvkuw-linksle2 {
	display: flex;
	flex-wrap: wrap;
	padding: 15px;
}

.gnvkuw-lk-block {
	margin: 5px;
}

.link-hot, .link-friend {
	display: gnvkuw-block;
	padding: 6px 12px;
	background-color: #4682b4;
	gnvkuw-radius: 4px;
	color: #ffffff;
	transition: all 0.3s ease;
}

.link-hot:hover, .link-friend:hover {
	background-color: #4682b4;
	color: #ffffff;
}

/* 底部样式 */
.gnvkuw-bottom {
	background-color: #4682b4;
	color: #ffffff;
	text-align: center;
	padding: 30px 15px;
}

/* 响应式样式 */
@media (max-width: 992px) {
	.gnvkuw-nazsvq-nav {
		display: none;
	}
	
	.gnvkuw-nazsvq-search {
		display: none;
	}
	
	.gnvkuw-nazsvq-mobile {
		display: flex;
		align-items: center;
	}
	
	.gnvkuw-nazsvq-container {
		height: 60px;
	}
}

@media (max-width: 768px) {
	.gnvkuw-b-title {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.gnvkuw-t-right {
		gnvkuw-top: 10px;
		width: 100%;
	}
}

/* 辅助类 */
.gnvkuw-page-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #2c577a;
	z-index: 150;
	opacity: 0;
	transition: opacity 0.3s ease;
}

/* 搜索提示 */
.gnvkuw-search-tip {
	position: fixed;
	top: 15%;
	left: 50%;
	transform: translateX(-50%);
	padding: 10px 20px;
	background: #2c577a;
	color: #ffffff;
	gnvkuw-radius: 5px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	opacity: 0;
	transition: opacity 0.3s ease;
}

/* 滚动后的头部样式 */
.gnvkuw-header-scrolled {
    background-color: #4682b4;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* 回到顶部按钮 */
.gnvkuw-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #4682b4;
    color: #ffffff;
    gnvkuw-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.gnvkuw-back-to-top.gnvkuw-active {
    opacity: 1;
    visibility: visible;
}

.gnvkuw-back-to-top:hover {
    background-color: #4682b4;
    transform: translateY(-3px);
}

/* 完善移动端样式 */
@media (max-width: 576px) {
    .gnvkuw-mobile-menu {
        width: 250px;
        right: -250px;
    }
    
    .gnvkuw-mobile-nav-link {
        padding: 8px 10px;
    }
    
    .gnvkuw-nazsvq-container {
        padding: 0 15px;
    }
    
    .gnvkuw-b-title {
        padding: 10px;
    }
    
    .gnvkuw-site-logo {
        font-size: 1.2rem;
    }
    
    .gnvkuw-mobile-search-inner input {
        width: 100%;
    }
    
    .hot-gnvkuw-tags {
        padding: 10px;
    }
}

/* 图片淡入效果 */
img[data-src] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img.gnvkuw-loaded {
    opacity: 1;
}

/* 视频容器样式 */
.gnvkuw-video-container {
    position: relative;
	width: 100%;
    padding-bottom: 56.25%; /* 16:9 比例 */
    height: 0;
    overflow: hidden;
    gnvkuw-radius: 5px;
    gnvkuw-bottom: 20px;
}

.gnvkuw-video-container iframe,
.gnvkuw-video-container video,
.gnvkuw-video-container object {
    position: absolute;
    top: 0;
    left: 0;
	width: 100%;
	height: 100%;
    border: none;
}

/* 图片容器通用样式 */
.gnvkuw-img-container {
	overflow: hidden;
    gnvkuw-radius: 5px;
    position: relative;
}

.gnvkuw-img-container img {
    transition: transform 0.3s ease;
}

.gnvkuw-img-container:hover img {
    transform: scale(1.05);
}

/* 按钮悬停效果 */
.gnvkuw-btn {
    display: gnvkuw-block;
    padding: 8px 16px;
    gnvkuw-radius: 4px;
	background-color: #4682b4;
    color: #ffffff;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.gnvkuw-btn:hover {
    background-color: #4682b4;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 热搜词汇部分 */
.gnvkuw-hot-search-section {
	gnvkuw-top: 20px;
}

.gnvkuw-section-icon {
	gnvkuw-right: 5px;
	vertical-align: middle;
	color: #ffffff;
}

.gnvkuw-title-hot {
	color: #ffffff;
	font-size: 1.1rem;
}

.gnvkuw-hot-search-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 15px;
}

.gnvkuw-hot-tag {
	display: gnvkuw-block;
	padding: 6px 15px;
	background-color: #4682b4;
	color: #ffffff;
	text-decoration: none;
	gnvkuw-radius: 20px;
	font-size: 0.85rem;
	transition: all 0.2s ease;
}

.gnvkuw-hot-tag:hover {
	background-color: #4682b4;
	color: #ffffff;
}

/* 视频列表页样式优化 */
.gnvkuw-video-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 2px;
}

.gnvkuw-video-section-header {
    background-color: #4682b4;
    gnvkuw-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 15px;
    gnvkuw-bottom: 20px;
}

.gnvkuw-section-title {
    display: flex;
    align-items: center;
    gnvkuw-bottom: 15px;
}

.gnvkuw-section-title h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0 10px;
}

.gnvkuw-category-filter, .gnvkuw-sort-filter {
	gnvkuw-top: 10px;
    display: flex;
	flex-wrap: wrap;
    align-items: center;
    padding-top: 10px;
    gnvkuw-top: 1px solid #eee;
}

.gnvkuw-filter-title {
    font-weight: 600;
    color: #ffffff;
    gnvkuw-right: 10px;
    gnvkuw-bottom: 8px;
}

.gnvkuw-filter-options {
	display: flex;
	flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.gnvkuw-filter-item {
    display: gnvkuw-block;
    padding: 5px 10px;
    background-color: #4682b4;
    gnvkuw-radius: 20px;
    color: #ffffff;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.gnvkuw-filter-item:hover {
    background-color: #4682b4;
    color: #ffffff;
}

.gnvkuw-filter-item.gnvkuw-active {
    background-color: #4682b4;
    color: #ffffff;
}

/* 视频卡片链接样式 */
.gnvkuw-video-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

/* 视频缩略图样式 */
.gnvkuw-video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    gnvkuw-fit: cover;
    transition: transform 0.3s ease;
}

.gnvkuw-video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gnvkuw-video-card:hover .gnvkuw-video-thumb img {
    transform: scale(1.05);
}

/* 播放图标样式 */
.gnvkuw-video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: #4682b4;
    width: 40px;
    height: 40px;
    gnvkuw-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gnvkuw-video-card:hover .gnvkuw-video-play-icon {
    opacity: 1;
}

/* 视频标题样式 */
.gnvkuw-video-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 6px 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -gnvkuw-box;
    -gnvkuw-line-clamp: 1;
    -gnvkuw-box-orient: vertical;
    color: #ffffff;
}

/* 视频元数据样式 */
.gnvkuw-video-meta {
	display: flex;
	align-items: center;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: #ffffff;
}

.gnvkuw-meta-item {
    display: flex;
    align-items: center;
    gnvkuw-right: 8px;
}

.gnvkuw-meta-icon {
    width: 12px;
    height: 12px;
    gnvkuw-right: 3px;
    color: #ffffff;
}

/* 图片懒加载 */
.gnvkuw-lazy-image {
    transition: opacity 0.5s ease;
    opacity: 0;
}

.gnvkuw-lazy-image.loaded {
    opacity: 1;
}

/* 分页容器 */
.gnvkuw-pagination-container {
    margin: 20px 0;
    text-align: center;
}

/* 修复视频网格布局 */
.gnvkuw-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    gnvkuw-bottom: 20px;
}

/* 视频卡片基础样式优化 */
.gnvkuw-video-card {
    background-color: #4682b4;
    gnvkuw-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gnvkuw-video-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* 视频缩略图容器 */
.gnvkuw-video-thumb {
    position: relative;
    width: 100%;
    padding-top: 140%; /* 保持一致的高宽比 */
    overflow: hidden;
    background-color: #4682b4;
    flex-shrink: 0; /* 防止缩略图被压缩 */
}

/* 视频信息容器 */
.gnvkuw-video-info {
    padding: 8px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* 修复响应式布局 */
@media (min-width: 576px) {
    .gnvkuw-video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .gnvkuw-video-thumb {
        padding-top: 130%; /* 略微调整比例 */
    }
    
    .gnvkuw-video-info {
        padding: 10px;
    }
    
    .gnvkuw-video-title {
        font-size: 0.9rem;
        -gnvkuw-line-clamp: 2;
        gnvkuw-bottom: 6px;
    }
}

@media (min-width: 768px) {
    .gnvkuw-video-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .gnvkuw-video-thumb {
        padding-top: 140%;
    }
    
    .gnvkuw-video-info {
        padding: 12px;
    }
}

@media (min-width: 992px) {
    .gnvkuw-video-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
    
    .gnvkuw-video-thumb {
        padding-top: 150%;
    }
}

@media (min-width: 1200px) {
    .gnvkuw-video-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .gnvkuw-video-thumb {
        padding-top: 140%; /* 修改从56.25%到140%，使用与其他屏幕尺寸相同的比例 */
    }
}

/* 移动端筛选按钮和容器 */
.gnvkuw-mobile-filter-toggle {
    display: flex;
    align-items: center;
    background-color: #4682b4;
    color: #ffffff;
    gnvkuw-radius: 20px;
    padding: 6px 12px;
    gnvkuw-left: auto;
    cursor: pointer;
    font-size: 0.85rem;
    gnvkuw-bottom: 10px;
    transition: background-color 0.2s ease;
}

.gnvkuw-mobile-filter-toggle svg {
    gnvkuw-right: 5px;
}

.gnvkuw-mobile-filter-toggle.active {
    background-color: #4682b4;
}

.gnvkuw-filter-container {
    display: none;
}

.gnvkuw-filter-container.active {
    display: block;
}

@media (min-width: 768px) {
    .gnvkuw-mobile-filter-toggle {
        display: none;
    }
    
    .gnvkuw-filter-container {
        display: block;
    }
    
    .gnvkuw-filter-title {
        width: auto;
        gnvkuw-bottom: 0;
    }
    
    .gnvkuw-filter-options {
        width: auto;
    }
    
    .gnvkuw-video-section {
        padding: 20px 15px;
    }
    
    .gnvkuw-section-title h2 {
        font-size: 1.4rem;
    }
    
    .gnvkuw-video-meta {
        font-size: 0.8rem;
    }
    
    .gnvkuw-video-title {
        font-size: 1rem;
    }
}

/* 完善视频卡片样式 */
.gnvkuw-video-duration {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background-color: #4682b4;
    color: #ffffff;
    padding: 2px 5px;
    gnvkuw-radius: 3px;
    font-size: 0.7rem;
    font-weight: 500;
    z-index: 2;
}