:root {
    --main-color: #4361ee;
    --main-dark: #3046c5;
    --main-light: rgba(67, 97, 238, 0.08);
    --accent-color: #f77f00;
    --text-dark: #1a1a2e;
    --text-gray: #6b7280;
    --bg-light: #f5f6fa;
    --border-color: #e9ecef;
    --card-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    --hover-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
    --radius: 10px;
    --transition: all 0.25s ease;
}

body {
    background-color: var(--bg-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: var(--text-dark);
}

/* ===== 顶栏 ===== */
#topbar {
    color: #888;
    height: 36px;
    line-height: 36px;
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
}
#topbar .left-name {
    font-size: 12px;
    color: #999;
}
#topbar .links > li > a {
    color: #666;
    font-size: 12px;
    padding: 0 6px;
}
#topbar .links > li > a:hover {
    color: var(--main-color);
}
#topbar > .container {
    padding-left: 15px;
    padding-right: 15px;
}

/* ===== 头部整体 ===== */
#header {
    height: auto !important;   /* 覆盖 red.css 的 height:150px */
    background-color: #fff;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

/* header-bg: logo + 发布按钮 */
#header .header-bg {
    padding: 20px 0;
}
#header .header-bg > .container {
    padding-left: 15px;
    padding-right: 15px;
}

/* 头部行：logo 左，发布按钮右 */
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex: 1;
    min-width: 0;
}

/* ===== 文字 Logo ===== */
.logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.logo-link:hover {
    text-decoration: none;
}
.logo-icon-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.35);
}
.logo-text-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.logo-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 1px;
    line-height: 1.2;
    transition: color 0.2s;
}
.logo-link:hover .logo-name {
    color: var(--main-color);
}
.logo-sub {
    font-size: 11px;
    color: #bbb;
    letter-spacing: 3px;
}

/* input-group 新样式 */
.input-group {
    display: flex;
    border: 2px solid var(--main-color);
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(67, 97, 238, 0.1);
    transition: box-shadow 0.2s;
    justify-content: flex-end;
}
.input-group:focus-within {
    box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.15);
}
#header div.search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 22px;
    font-size: 15px;
    height: 46px;
    line-height: 46px;
    color: var(--text-dark);
    background: transparent;
    max-width: none;
}
.input-group-btn {
    width: auto;
    display: flex;
    align-items: center;
}
#header div.search .input-group-btn {
    background: var(--main-color);
    border-radius: 0;
}
#header div.search button {
    background: var(--main-color);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 15px;
    padding: 0 28px;
    height: 46px;
    width: auto;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
}
#header div.search button:hover {
    background: var(--main-dark);
}
button:focus,
button:active {
    outline: none !important;
}

/* 发布信息按钮区 - 右对齐 */
.header-publish {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.btn-publish-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--accent-color);
    color: #fff !important;
    border-radius: 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(247, 127, 0, 0.3);
}
.btn-publish-main:hover {
    background: #e07000;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(247, 127, 0, 0.4);
}

/* ===== 导航栏 ===== */
.header-nav {
    background-color: var(--main-color);
    margin: 0 !important;
    display: flex;
    justify-content: center;
}
.header-view {
    max-width: 1400px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 0 15px;
    justify-content: space-between;
}
.header-nav .container {
    display: flex;
    justify-content: flex-start;
}
.header-nav .header-nav-list {
    flex: 1;
}
.container .action {
    float: unset !important;
}
/* 旧 action 按钮已移至 header-bg，此处隐藏 */
.header-nav .action {
    display: none;
}

#navbar {
    min-height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
}
#navbar a {
    font-size: 15px;
    height: 50px;
    padding: 0 22px;
    line-height: 50px;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.85);
    margin-right: 0;
    min-width: auto;
    text-align: center;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}
#navbar a > i {
    font-size: 14px;
    margin-right: 4px;
}
#navbar a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}
#navbar a.active {
    color: #fff;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.18);
    border-bottom: none;
}
#navbar a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* ===== Banner ===== */
.banner-group {
    width: 100%;
    overflow: hidden;
}
.banner-group .carousel-caption {
    position: absolute;
    top: 20% !important;
    left: 10% !important;
    bottom: 37% !important;
    right: 40% !important;
    font-size: 5.3vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    letter-spacing: 0.1vw;
}
.carousel > .carousel-indicators {
    display: none;
}
.banner-group > .carousel {
    overflow: hidden;
}
.carousel-inner .item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-inner > .item > img {
    width: 100%;
}

/* ===== 主内容区 ===== */
#index_index {
    background-color: var(--bg-light);
}
.container {
    padding-left: 0;
    padding-right: 0;
}
.container .panel {
    box-shadow: none;
    -webkit-box-shadow: none;
}

/* ===== 首页快捷分类导航 ===== */
.cat-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 4px;
    padding: 20px 24px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
}
.cat-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    transition: var(--transition);
    min-width: 68px;
    border: 1px solid transparent;
}
.cat-nav-item:hover {
    background: var(--main-light);
    color: var(--main-color);
    border-color: rgba(67, 97, 238, 0.18);
    text-decoration: none;
}
.cat-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: var(--main-light);
    color: var(--main-color);
    transition: var(--transition);
}
.cat-nav-item:hover .cat-icon {
    background: var(--main-color);
    color: #fff;
}
.cat-nav-item.c-orange .cat-icon { background: rgba(247,127,0,0.1); color: #f77f00; }
.cat-nav-item.c-orange:hover .cat-icon { background: #f77f00; color: #fff; }
.cat-nav-item.c-green .cat-icon { background: rgba(16,185,129,0.1); color: #10b981; }
.cat-nav-item.c-green:hover .cat-icon { background: #10b981; color: #fff; }
.cat-nav-item.c-red .cat-icon { background: rgba(239,68,68,0.1); color: #ef4444; }
.cat-nav-item.c-red:hover .cat-icon { background: #ef4444; color: #fff; }
.cat-nav-item.c-purple .cat-icon { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.cat-nav-item.c-purple:hover .cat-icon { background: #8b5cf6; color: #fff; }
.cat-nav-item.c-amber .cat-icon { background: rgba(245,158,11,0.1); color: #f59e0b; }
.cat-nav-item.c-amber:hover .cat-icon { background: #f59e0b; color: #fff; }
.cat-nav-item.c-cyan .cat-icon { background: rgba(6,182,212,0.1); color: #06b6d4; }
.cat-nav-item.c-cyan:hover .cat-icon { background: #06b6d4; color: #fff; }

/* ===== 信息区块标题 ===== */
.info-group,
.text-group {
    border-radius: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.info-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 32px 0 16px;
    padding: 0;
    position: relative;
    border-bottom: none;
}
.info-title .info-name {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    word-spacing: normal;
    padding: 0;
}
.info-title .info-name::before {
    content: '';
    display: block;
    width: 4px;
    height: 22px;
    background: var(--main-color);
    border-radius: 2px;
    flex-shrink: 0;
}
.info-title .info-name p {
    font-size: 13px;
    color: #bbb;
    margin: 0;
    font-weight: 400;
}

/* "查看更多" 链接 */
.info-title .info-more {
    position: static;
    display: inline-flex;
    align-items: center;
    width: auto;
    font-size: 13px;
    color: var(--text-gray);
    padding: 6px 18px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: var(--transition);
    letter-spacing: 0;
    justify-content: center;
}
.info-title .info-more div {
    padding: 0;
    border: none;
}
.info-title .info-more > .br-line {
    display: none;
}
.info-title .info-more:hover {
    color: var(--main-color);
    border-color: var(--main-color);
    background: var(--main-light);
}

/* ===== 信息卡片列表 ===== */
.info-group .info-content {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* 重置旧的边框样式 */
.info-content .info-list {
    border: none !important;
}
.info-content .info-list:nth-child(5n+1) {
    border-left: none !important;
}
.info-content .info-list:nth-child(1),
.info-content .info-list:nth-child(2),
.info-content .info-list:nth-child(3),
.info-content .info-list:nth-child(4),
.info-content .info-list:nth-child(5) {
    border-top: none !important;
}

/* 卡片本体 - 4列 */
.info-content > .info-list {
    width: calc(25% - 12px);
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.info-content > .info-list:hover {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    box-shadow: var(--hover-shadow);
}

/* 卡片图片 */
.info-list .info-img {
    display: block;
    margin: 0;
    overflow: hidden;
    height: 164px;
    flex-shrink: 0;
}
.info-list .info-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.4s ease;
}
.info-list:hover .info-img > img {
    transform: scale(1.06);
}

/* 卡片文字区 */
.info-list .list-text {
    width: 100%;
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    gap: 8px;
}
.info-1 .info-list .list-text {
    flex-direction: row;
    align-items: center;
    width: 100%;
}
.info-list .list-text .list-icon {
    display: none;
}

/* 卡片标题 */
.info-list .list-text .list-name {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.55;
    width: 100%;
    white-space: normal;
    justify-content: flex-start;
    text-decoration: none;
}
.info-list .list-text .list-name:hover {
    color: var(--main-color);
}

/* 卡片底部 */
.info-list .list-text .list-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    align-items: center;
    width: 100%;
}
.info-list .list-text .list-bottom .list-area {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}
.info-list .list-text .list-bottom .list-area .list-column {
    background: var(--main-light);
    font-size: 11px;
    line-height: 20px;
    color: var(--main-color);
    padding: 0 8px;
    height: 20px;
    border-radius: 10px;
    margin: 0;
}
.info-list .list-text .list-bottom .list-area .list-new {
    color: #fff;
    background: #ff4d4f;
    height: 18px;
    line-height: 18px;
    width: auto;
    padding: 0 7px;
    text-align: center;
    border-radius: 9px;
    font-size: 10px;
    font-weight: 700;
    margin: 0;
}
.info-list .list-text .list-time {
    color: #c0c0c0;
    font-size: 11px;
    white-space: nowrap;
    margin-left: auto;
    margin-top: 0;
}

/* 区块底部"更多"按钮 */
a.info-more {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-gray);
    padding: 0;
    width: 100%;
    letter-spacing: 0;
    border: none;
}
a.info-more div {
    padding: 10px 52px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: var(--transition);
    font-size: 14px;
}
a.info-more > .br-line {
    display: none;
}
a.info-more:hover {
    color: var(--main-color);
}
a.info-more:hover div {
    border-color: var(--main-color);
    background: var(--main-light);
}

/* ===== 页脚 ===== */
#footer {
    background: #1a1a2e;
    color: #aaa;
    margin-top: 52px;
    border-top: none;
}
.footer-top {
    padding: 48px 15px 32px;
}
.footer-cols {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-col {
    flex: 1;
    min-width: 160px;
}
.footer-col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
}
.footer-col p {
    font-size: 13px;
    line-height: 2;
    color: #888;
    text-align: left;
    margin: 0;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
    font-size: 13px;
    color: #888;
}
.footer-col ul li a {
    color: #888;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}
.footer-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
}
.footer-col ul li i {
    margin-right: 8px;
    color: var(--main-color);
    width: 14px;
    text-align: center;
}
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin: 0;
}
.footer-bottom {
    padding: 16px 15px;
    text-align: center;
    font-size: 12px;
    color: #555;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-bottom a {
    color: #fff !important;
    text-decoration: none;
}
.footer-bottom a:hover {
    color: #aaa;
}
#footer p {
    text-align: center;
    margin: 0;
    color: #555;
    font-size: 12px;
    padding: 16px 0;
}
#footer p a {
    color: #666;
}

/* ===== 面包屑 ===== */
.breadcrumb {
    margin: 20px 0 0;
    font-size: 14px;
    background-color: transparent;
    padding: 8px 0;
}

/* ===== 筛选过滤 ===== */
.filter dl dd a:hover,
.filter dl dd a.active {
    background-color: var(--main-color);
    border-radius: var(--radius);
}
.filter .search-filter button {
    background-color: var(--main-color);
    border-radius: var(--radius);
}
.btn-danger,
.pagination li.active a,
.pagination li.active a:hover,
.pagination li a:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}
.show-number {
    background: var(--main-color);
}
.pagination li a {
    border-radius: 4px;
}

/* ===== 登录注册 ===== */
.wall {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("/static/img/user/login_bg.jpg");
    padding-top: 100px;
}
.login,
.register,
.forget {
    width: 600px;
    margin-top: 0;
}

/* ===== 面板通用 ===== */
.panel .panel-heading {
    font-size: 20px;
}

/* ===== 详情页 ===== */
.col-sm-9 h3 {
    margin: 15px 0;
    font-size: 28px;
}
.media-left .media-object {
    width: 150px;
    height: auto;
}
.detail-box {
    position: relative;
}
.detail-box .detail-box-1 {}
.detail-box .detail-box-2 {
    position: absolute;
    left: 0;
    top: 20px;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(60%, #fff));
    background-image: linear-gradient(-180deg, rgba(255, 255, 255, 0) 0%, #fff 60%);
    text-align: center;
    padding-top: 550px;
}
.detail-box .detail-box-2 .v-btn {
    color: #ef1f1f;
    font-size: 18px;
}
.detail-box .detail-box-2 .v-btn:hover {
    text-decoration: underline !important;
}

/* ===== 会员中心 ===== */
#user_index #content {
    width: 850px;
}

/* ===== 悬浮工具栏 ===== */
#toolbar {
    display: none;
    width: auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
#toolbar > a {
    background-color: var(--main-color);
}
#toolbar > a > i {
    color: #fff;
}

/* ===== 关于我们 ===== */
.about .panel-header {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}
.about .panel-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.about .left-panel {
    width: 50%;
}
.about .left-panel img {
    width: 100%;
    height: auto;
}
.about .right-panel {
    width: 40%;
}
.about .right-panel h3 {
    margin-bottom: 20px;
}
.about .right-panel p {
    line-height: 30px;
}

/* ===== text-group ===== */
.text-group .text-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.text-group .text-list {
    width: 48%;
    display: flex;
    margin-bottom: 16px;
    font-size: 14px;
    background: #fff;
    box-shadow: var(--card-shadow);
    border-radius: var(--radius);
    padding: 14px 20px 14px 18px;
    align-items: center;
    position: relative;
    transition: var(--transition);
}
.text-group .text-list:hover {
    box-shadow: var(--hover-shadow);
}
.text-group .text-list .glyphicon {
    position: absolute;
    right: 18px;
    font-size: 18px;
    color: #ddd;
}
.text-list .text-line {
    width: 1px;
    background-color: #e0e0e0;
    display: block;
    margin: 0 12px;
}
.text-list .text-column {
    color: var(--main-color);
    letter-spacing: 0;
    font-size: 13px;
    white-space: nowrap;
}
.text-list .text-name {
    color: #333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 15px;
    display: block;
    width: 300px;
}
.text-list .text-time {
    color: #999;
    margin-left: auto;
    font-size: 12px;
    margin-top: 0;
    white-space: nowrap;
}

/* ===== 首页内容区间距 ===== */
.lazyload {
    padding-bottom: 0;
}

/* ===== 头部旧 action 按钮兼容 ===== */
#header .action a.add {
    display: none;
}

/* ===== Hero Banner ===== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #4361ee 0%, #2d3a8c 55%, #1a1a4e 100%);
    padding: 64px 20px 56px;
    overflow: hidden;
    text-align: center;
    color: #fff;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 60%, rgba(255,255,255,0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 15%, rgba(100,120,255,0.18) 0%, transparent 45%);
    pointer-events: none;
}
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
}
.hero-shapes .shape-1 {
    width: 460px;
    height: 460px;
    right: -120px;
    top: -180px;
    background: rgba(255,255,255,0.05);
}
.hero-shapes .shape-2 {
    width: 260px;
    height: 260px;
    left: 3%;
    bottom: -90px;
    background: rgba(255,255,255,0.04);
}
.hero-shapes .shape-3 {
    width: 140px;
    height: 140px;
    right: 22%;
    top: 35%;
    background: rgba(255,255,255,0.03);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 22px;
}
.hero-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 14px;
    letter-spacing: 2px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    margin: 0 0 36px;
    line-height: 1.7;
}
.hero-search {
    max-width: 560px;
    margin: 0 auto 36px;
}
.hero-search form {
    display: flex;
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}
.hero-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 24px;
    font-size: 15px;
    height: 54px;
    color: #333;
    background: transparent;
    min-width: 0;
}
.hero-search button {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 0 32px;
    font-size: 15px;
    font-weight: 600;
    height: 54px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    letter-spacing: 1px;
}
.hero-search button:hover {
    background: #e07000;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 52px;
    flex-wrap: wrap;
}
.hero-stat strong {
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}
.hero-stat span {
    font-size: 13px;
    color: rgba(255,255,255,0.58);
    letter-spacing: 1px;
}
