/**
 * 资讯教程详情页样式
 * 设计风格：简约时尚大气，蓝色系
 */

/* ==================== 面包屑导航 ==================== */
.breadcrumb {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: var(--gray-600);
    transition: color var(--transition-fast);
}

.breadcrumb-nav a:hover {
    color: var(--primary-color);
}

.breadcrumb-nav .separator {
    color: var(--gray-400);
}

.breadcrumb-nav .current {
    color: var(--gray-800);
    font-weight: 500;
}

/* ==================== 页面基础 ==================== */
.main-content {
    max-width: 1300px;
    padding: 30px 0 50px;
    background: #f5f7fa;
    min-height: calc(100vh - 200px);
    margin: 0 auto;
}

.content-wrapper {
    display: flex;
    gap: 30px;
}

/* 左侧主内容区 - 一列两行布局 */
.main-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

/* ==================== 左侧文章主体 ==================== */
.article-main {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

/* 文章头部 */
.article-header {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f5f5f5;
}

.article-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.meta-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gray-500);
}

.meta-item svg {
    color: var(--gray-400);
}

.author-link {
    color: var(--primary-color);
    text-decoration: none;
}

.author-link:hover {
    text-decoration: underline;
}

.meta-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.meta-tags .tag {
    padding: 4px 12px;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 13px;
    border-radius: 20px;
    transition: all var(--transition-fast);
}

.meta-tags .tag:hover {
    background: var(--primary-bg);
    color: var(--primary-color);
}

/* 文章操作栏 */
.article-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.action-btn:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
}

.action-btn svg {
    color: var(--gray-400);
}

.action-btn.like-btn:hover {
    background: #fef2f2;
    border-color: #fecaca;
    color: #ef4444;
}

.action-btn.like-btn:hover svg {
    color: #ef4444;
}

.action-btn.bookmark-btn:hover {
    background: #fffbeb;
    border-color: #fcd34d;
    color: #f59e0b;
}

.action-btn.bookmark-btn:hover svg {
    color: #f59e0b;
}

/* 文章封面图 */
.article-cover {
    margin-bottom: 30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.article-cover img {
    width: 100%;
    height: auto;
    display: block;
}

/* 文章目录 */
.article-toc {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.toc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.toc-header svg {
    color: var(--primary-color);
}

.toc-list {
    list-style: none;
}

.toc-list li {
    padding: 6px 0;
}

.toc-list a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.toc-list a:hover {
    color: var(--primary-color);
}

/* 文章内容 */
.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
}

.article-body p {
    margin-bottom: 20px;
}

.article-body .lead {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
    /* padding: 20px; */
    background: var(--gray-50);
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.article-body h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-100);
}

.article-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 30px 0 15px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body strong {
    color: var(--gray-800);
    font-weight: 600;
}

/* 提示框 */
.article-tip {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: var(--radius-md);
    margin: 30px 0;
}

.article-tip strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.article-tip p {
    margin: 0;
    color: var(--gray-600);
}

/* 文章底部操作 */
.article-footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-100);
    flex-wrap: wrap;
    gap: 20px;
}

.action-group {
    display: flex;
    gap: 12px;
}

.action-btn-large {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.action-btn-large.like-btn {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #ef4444;
}

.action-btn-large.like-btn:hover {
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
}

.action-btn-large.bookmark-btn {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    color: #f59e0b;
}

.action-btn-large.bookmark-btn:hover {
    background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
}

.share-group {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-500);
    font-size: 14px;
}

.share-btn {
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.share-btn:hover {
    opacity: 0.8;
}

.share-btn.wechat {
    background: #07c160;
    color: #fff;
}

.share-btn.weibo {
    background: #e6162d;
    color: #fff;
}

.share-btn.qq {
    background: #12b7f5;
    color: #fff;
}

/* 上一篇/下一篇导航 */
.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-100);
}

.article-nav .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.article-nav .nav-item:hover {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.article-nav .nav-prev {
    align-items: flex-start;
}

.article-nav .nav-next {
    align-items: flex-end;
    text-align: right;
}

.article-nav .nav-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-500);
}

.article-nav .nav-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-800);
    line-height: 1.4;
    transition: color var(--transition-fast);
}

.article-nav .nav-item:hover .nav-title {
    color: var(--primary-color);
}

/* 相关推荐 */
.related-articles {
    padding: 24px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.related-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.related-title svg {
    color: var(--primary-color);
}

.related-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.related-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: #fff;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* border: 1px solid #d1d5db; */
    overflow: hidden;
    position: relative;
}

.related-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.related-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 24px -8px rgba(59, 130, 246, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.related-item:hover::before {
    opacity: 1;
}

.related-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.related-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.03) 100%);
    pointer-events: none;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-item:hover .related-thumb img {
    transform: scale(1.08);
}

.related-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.related-item-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.related-item:hover .related-item-title {
    color: var(--primary-color);
}

.related-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
    font-size: 12px;
    color: var(--gray-400);
}

.related-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.related-meta svg {
    width: 14px;
    height: 14px;
}

/* 作者卡片 */
.author-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.author-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info-large {
    flex: 1;
}

.author-name-large {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.author-bio {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 12px;
    line-height: 1.5;
}

.author-stats {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--gray-500);
}

.follow-btn {
    padding: 10px 24px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.follow-btn:hover {
    background: var(--primary-hover);
}

/* 评论区 */
.comment-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-100);
}

.comment-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 24px;
}

.comment-title svg {
    color: var(--primary-color);
}

/* 评论表单 */
.comment-form {
    margin-bottom: 30px;
}

.comment-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 15px;
    resize: vertical;
    outline: none;
    transition: border-color var(--transition-fast);
}

.comment-form textarea:focus {
    border-color: var(--primary-color);
}

.comment-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.comment-tip {
    font-size: 13px;
    color: var(--gray-400);
}

.submit-comment {
    padding: 10px 24px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.submit-comment:hover {
    background: var(--primary-hover);
}

/* 评论列表 */
.comment-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comment-item {
    display: flex;
    gap: 16px;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.comment-author {
    font-weight: 500;
    color: var(--gray-800);
}

.comment-time {
    font-size: 13px;
    color: var(--gray-400);
}

.comment-text {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 12px;
}

.comment-actions {
    display: flex;
    gap: 16px;
}

.comment-like,
.comment-reply {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--gray-500);
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.comment-like:hover,
.comment-reply:hover {
    color: var(--primary-color);
}

.load-more-comments {
    width: 100%;
    padding: 14px;
    margin-top: 24px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.load-more-comments:hover {
    background: var(--gray-100);
    color: var(--gray-800);
}

/* ==================== 右侧侧边栏 ==================== */
.sidebar {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
}

.widget-title svg {
    color: var(--primary-color);
}

/* 目录导航 */
.toc-widget {
    position: sticky;
    top: 20px;
}

.toc-nav {
    list-style: none;
}

.toc-nav li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-50);
}

.toc-nav li:last-child {
    border-bottom: none;
}

.toc-link {
    display: block;
    font-size: 14px;
    color: var(--gray-600);
    text-decoration: none;
    transition: all var(--transition-fast);
    padding-left: 0;
}

.toc-link:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

/* 侧边栏相关推荐 */
.sidebar-widget .related-list {
    list-style: none;
}

.sidebar-widget .related-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-50);
}

.sidebar-widget .related-item:last-child {
    border-bottom: none;
}

.sidebar-widget .related-link {
    display: block;
    font-size: 14px;
    color: var(--gray-700);
    text-decoration: none;
    line-height: 1.5;
    margin-bottom: 4px;
    transition: color var(--transition-fast);
}

.sidebar-widget .related-link:hover {
    color: var(--primary-color);
}

.sidebar-widget .related-meta {
    font-size: 12px;
    color: var(--gray-400);
}

/* 热门文章 */
.hot-articles {
    list-style: none;
}

.hot-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-50);
}

.hot-item:last-child {
    border-bottom: none;
}

.hot-rank {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.hot-item:nth-child(1) .hot-rank {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: #fff;
}

.hot-item:nth-child(2) .hot-rank {
    background: linear-gradient(135deg, #ffa726 0%, #ff9800 100%);
    color: #fff;
}

.hot-item:nth-child(3) .hot-rank {
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    color: #fff;
}

.hot-link {
    font-size: 14px;
    color: var(--gray-700);
    text-decoration: none;
    line-height: 1.5;
    transition: color var(--transition-fast);
}

.hot-link:hover {
    color: var(--primary-color);
}

/* 热门推荐排行样式 */
.rank-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rank-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0px 0px 12px 0px;
    border-bottom: 1px solid var(--gray-100);
}

.rank-item:last-child {
    border-bottom: none;
}

.rank-item:hover {
    background-color: var(--gray-50);
    border-radius: var(--radius-sm);
}

.rank-logo {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.rank-logo.small {
    width: 32px;
    height: 32px;
}

.rank-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rank-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
    transition: color 150ms ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}

.rank-name:hover {
    color: var(--primary-color);
}

.rank-downloads,
.rank-date {
    font-size: 12px;
    color: var(--gray-500);
}

.rank-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rank-category {
    font-size: 11px;
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

/* 排名数字样式 */
.rank-number {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--gray-200);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.rank-number.top {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    color: white;
}

/* 标签云样式 */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    padding: 6px 12px;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 13px;
    border-radius: 20px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.tag-item:hover {
    background: var(--primary-color);
    color: #fff;
}

/* 回到顶部 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    font-size: 14px;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.back-to-top svg {
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-3px);
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 1200px) {
    .content-wrapper {
        flex-direction: column;
    }

    .sidebar {
        flex: 1;
        width: 100%;
    }

    .toc-widget {
        position: static;
    }
}

@media (max-width: 768px) {
    .main-column {
        gap: 16px;
    }

    .article-main {
        padding: 24px;
    }

    .article-title {
        font-size: 22px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-actions {
        justify-content: center;
    }

    .article-footer-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .action-group {
        justify-content: center;
    }

    .share-group {
        justify-content: center;
    }

    .author-card {
        flex-direction: column;
        text-align: center;
    }

    .author-stats {
        justify-content: center;
    }

    .follow-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .main-content {
        padding: 20px 0 30px;
    }

    .article-main {
        padding: 16px;
    }

    .article-title {
        font-size: 20px;
    }

    .article-body {
        font-size: 15px;
    }

    .article-body h2 {
        font-size: 18px;
    }

    .article-body h3 {
        font-size: 16px;
    }

    .article-nav {
        flex-direction: column;
    }

    .article-nav .nav-next {
        align-items: flex-start;
        text-align: left;
    }

    .related-articles {
        padding: 16px;
    }

    .related-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .related-thumb {
        height: 100px;
    }

    .related-content {
        padding: 14px;
    }

    .related-item-title {
        font-size: 14px;
    }

    .sidebar-widget {
        padding: 16px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}
