/* ==========================================
   校友会管理系统 - 现代简洁风格样式
   ========================================== */

/* CSS变量定义 */
:root {
    --primary-color: #005C45;
    --primary-light: #00a878;
    --primary-dark: #003d2e;
    --secondary-color: #F8E5B3;
    --background-color: #f5f7fa;
    --card-background: #ffffff;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --border-color: #e1e8ed;
    --shadow-light: 0 2px 12px 0 rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 16px 0 rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-primary);
    background-color: var(--background-color);
    line-height: 1.6;
}

/* ==========================================
   登录页面样式
   ========================================== */

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 450px;
}

.login-box {
    background: var(--card-background);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-light);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.login-header h1 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 14px;
}

.login-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 92, 69, 0.1);
}

.remember-me {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.login-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 92, 69, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}

.login-footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 13px;
}

/* 提示信息样式 */
.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    display: flex;
    align-items: center;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-error {
    background-color: #fee;
    color: #c00;
    border: 1px solid #fcc;
}

.alert-success {
    background-color: #efe;
    color: #060;
    border: 1px solid #cfc;
}

.alert::before {
    content: '';
    width: 18px;
    height: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}

.alert-error::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c00' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='15' y1='9' x2='9' y2='15'/%3E%3Cline x1='9' y1='9' x2='15' y2='15'/%3E%3C/svg%3E");
    background-size: cover;
}

.alert-success::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23060' stroke-width='2'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
    background-size: cover;
}

/* ==========================================
   管理后台页面样式
   ========================================== */

.admin-page {
    display: flex;
    min-height: 100vh;
}

/* 左侧导航栏 */
.sidebar {
    width: 260px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 1000;
}

.sidebar-header {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.sidebar-header h2 {
    font-size: 18px;
    font-weight: 600;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

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

.nav-item {
    margin-bottom: 5px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-item.active .nav-link {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-left-color: var(--secondary-color);
}

.nav-link .icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.logout-btn .icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

/* 主内容区域 */
.main-content {
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
}

/* 顶部栏 */
.top-bar {
    background: var(--card-background);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.page-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-name {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* 内容区域 */
.content-area {
    padding: 30px;
    flex: 1;
}

/* 欢迎卡片 */
.welcome-card {
    background: var(--card-background);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.welcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.welcome-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.welcome-text {
    flex: 1;
}

.welcome-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.welcome-text p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.8;
}

.welcome-text p:last-child {
    margin-bottom: 0;
}

.welcome-image {
    flex-shrink: 0;
}

.welcome-image svg {
    width: 180px;
    height: 180px;
}

/* 信息卡片 */
.info-card {
    background: var(--card-background);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-light);
}

.info-card h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.info-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.info-content p {
    margin-bottom: 10px;
}

.info-content p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   下拉菜单样式
   ========================================== */

/* 下拉菜单容器 */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    cursor: pointer;
}

.nav-dropdown .dropdown-arrow {
    width: 16px;
    height: 16px;
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* 下拉子菜单 */
.dropdown-menu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: rgba(0, 0, 0, 0.15);
}

.nav-dropdown.open .dropdown-menu {
    max-height: 300px;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 11px 20px 11px 56px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.dropdown-menu li a:hover::before {
    background: var(--secondary-color);
}

.dropdown-menu li.active a {
    color: white;
    background: rgba(255, 255, 255, 0.12);
}

.dropdown-menu li.active a::before {
    background: var(--secondary-color);
    width: 6px;
    height: 6px;
}

.dropdown-menu li a .icon {
    width: 15px;
    height: 15px;
    margin-right: 10px;
    flex-shrink: 0;
    opacity: 0.8;
}

.dropdown-menu li a:hover .icon,
.dropdown-menu li.active a .icon {
    opacity: 1;
}

/* ==========================================
   数据表格样式
   ========================================== */

.data-card {
    background: var(--card-background);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.data-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.data-card-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.btn-primary {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-primary svg {
    width: 16px;
    height: 16px;
}

.data-table-wrap {
    overflow-x: auto;
    padding: 0 24px 24px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.data-table thead th {
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    background: #f8f9fa;
    border-bottom: 2px solid var(--border-color);
    white-space: nowrap;
}

.data-table tbody td {
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-primary);
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.data-table tbody tr:hover {
    background: #f8fdfa;
}

.data-table .actions {
    white-space: nowrap;
}

.btn-sm {
    padding: 5px 12px;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.btn-sm + .btn-sm {
    margin-left: 8px;
}

.btn-view {
    background: #e8f5e9;
    color: #005C45;
}

.btn-view:hover { background: #c8e6c9; }

.btn-edit {
    background: #e3f2fd;
    color: #1565c0;
}

.btn-edit:hover { background: #bbdefb; }

.btn-delete {
    background: #ffebee;
    color: #c62828;
}

.btn-delete:hover { background: #ffcdd2; }

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state svg {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    opacity: 0.4;
}

.empty-state p {
    font-size: 15px;
}

/* ==========================================
   弹窗样式
   ========================================== */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.2s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 560px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(-30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.modal-close:hover { background: #f0f0f0; color: var(--text-primary); }

.modal-body { padding: 24px; }

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-cancel {
    padding: 10px 20px;
    background: #f0f0f0;
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cancel:hover { background: #e0e0e0; }

.btn-submit {
    padding: 10px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select { background: white; appearance: auto; }

.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 92, 69, 0.1);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"] {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="number"]:focus,
.form-group input[type="date"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 92, 69, 0.1);
}

/* 并排表单行 */
.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.detail-table { width: 100%; }
.detail-table tr { border-bottom: 1px solid #f5f5f5; }
.detail-table td { padding: 12px 0; font-size: 14px; vertical-align: top; }
.detail-table td:first-child { width: 110px; color: var(--text-secondary); font-weight: 500; padding-right: 16px; white-space: nowrap; }
.detail-table td:last-child { color: var(--text-primary); }

/* LOGO 上传组件 */
.logo-upload-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.logo-upload-wrap input[type="file"] {
    padding: 8px 12px;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    background: var(--bg-color);
    transition: var(--transition);
}

.logo-upload-wrap input[type="file"]:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.logo-preview {
    position: relative;
    display: inline-block;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    max-width: 160px;
}

.logo-preview img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.logo-remove-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.7);
    color: #fff;
    border: none;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.logo-remove-btn:hover {
    background: rgba(255, 0, 0, 0.9);
}

/* 列表缩略图 */
.table-thumb {
    vertical-align: middle;
}

/* 标签导航 */
.tab-nav {
    display: flex;
    gap: 4px;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 4px;
}

.tab-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    background: transparent;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    background: #fff;
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.tab-btn:hover:not(.active) {
    color: var(--text-primary);
}

/* 状态徽章 */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.badge-warning { background: #fef3c7; color: #d97706; }
.badge-success { background: #d1fae5; color: #059669; }
.badge-danger  { background: #fee2e2; color: #dc2626; }

/* 通过按钮 */
.btn-success {
    background: #ecfdf5;
    color: #059669;
}

.btn-success:hover {
    background: #059669;
    color: #fff;
}

/* 图片预览弹窗 */
.image-preview-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.image-preview-container img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.image-preview-close {
    position: fixed;
    top: 20px;
    right: 30px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 28px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.image-preview-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* 分页 */
.pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
}

.pagination-info {
    font-size: 13px;
    color: var(--text-secondary);
}

.pagination-btns {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pagination-btn {
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: #fff;
    font-size: 13px;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.pagination-btn:hover:not(.disabled):not(.active) {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(0, 92, 69, 0.05);
}

.pagination-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.pagination-btn.disabled {
    color: var(--border-color);
    cursor: not-allowed;
}

.pagination-dots {
    padding: 0 4px;
    color: var(--text-secondary);
    font-size: 13px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .sidebar {
        width: 220px;
    }
    
    .main-content {
        margin-left: 220px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 60px;
    }
    
    .sidebar-header h2,
    .nav-link span,
    .logout-btn span,
    .dropdown-arrow {
        display: none;
    }
    
    .sidebar-header {
        padding: 20px 10px;
    }
    
    .sidebar-logo {
        width: 40px;
        height: 40px;
    }
    
    .nav-link {
        justify-content: center;
        padding: 14px 10px;
    }
    
    .nav-link .icon {
        margin-right: 0;
    }
    
    .dropdown-menu li a {
        padding: 11px 10px;
        justify-content: center;
    }
    
    .dropdown-menu li a span {
        display: none;
    }
    
    .dropdown-menu li a .icon {
        margin-right: 0;
    }
    
    .dropdown-menu li a::before {
        display: none;
    }
    
    .logout-btn {
        padding: 12px 10px;
    }
    
    .logout-btn .icon {
        margin-right: 0;
    }
    
    .main-content {
        margin-left: 60px;
    }
    
    .welcome-content {
        flex-direction: column;
        text-align: center;
    }
    
    .welcome-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .login-box {
        padding: 30px 20px;
    }
    
    .login-header h1 {
        font-size: 24px;
    }
    
    .content-area {
        padding: 20px;
    }
    
    .welcome-card {
        padding: 25px;
    }
    
    .welcome-text h2 {
        font-size: 24px;
    }
    
    .welcome-image svg {
        width: 120px;
        height: 120px;
    }
}