﻿/* static/css/nav.css  */
/* 导航栏基础样式 */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* 鍝佺墝鏍囪瘑 */
.nav-brand a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff69b4;
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* 瀵艰埅閾炬帴 */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: #ff2e93;
}

.nav-link.active {
    color: #ff2e93;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff2e93;
}

/* 鐢ㄦ埛鍖哄煙 */
.user-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 绉诲姩绔彍鍗曟寜閽?- 榛樿闅愯棌 */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: all 0.3s;
}

/* 绉诲姩绔彍鍗?- 榛樿闅愯棌 */
.mobile-menu {
    display: none;
    background-color: rgba(10, 10, 10, 0.98);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 1px solid #333;
}

.mobile-link {
    display: block;
    padding: 12px 0;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #333;
}

.mobile-link.active {
    color: #ff2e93;
    font-weight: 600;
}

.mobile-auth {
    padding-top: 15px;
    margin-top: 10px;
    border-top: 1px solid #eee;
}

/* 鍝嶅簲寮忚璁?*/
@media (max-width: 992px) {
    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .user-area {
        display: none;
        /* 纭繚妗岄潰瀵艰埅鍜岀敤鎴峰尯鍩熼殣钘?*/
    }

    .mobile-menu-btn {
        display: block;
        /* 纭繚姹夊牎鑿滃崟鎸夐挳鏄剧ず */
    }

    /* 鏂板绉诲姩绔敤鎴峰尯鍩熸樉绀?*/
    .mobile-auth {
        display: block;
    }

    /* 纭繚绉诲姩鑿滃崟姝ｇ‘鏄剧ず */
    .mobile-menu {
        position: fixed;
        top: 70px;
        /* 鏍规嵁瀵艰埅鏍忛珮搴﹁皟鏁?*/
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        padding: 15px 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #333;
    }
}

/* Logo鏍峰紡 */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* 鏂囧瓧Logo鏍峰紡 */
.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff69b4;
    margin-left: 10px;
}

/* 鍥剧墖Logo鏍峰紡 */
.logo-image {
    height: 40px;
    /* 鏍规嵁瀹為檯鍥剧墖璋冩暣 */
    width: auto;
    transition: transform 0.3s;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* 绉诲姩绔皟鏁?*/
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
        /* 鍑忓皯瀵艰埅鏍忛珮搴︼紝绾﹀噺灏?/3 */
    }

    .nav-container {
        padding: 0 12px;
        /* 鍑忓皯宸﹀彸padding */
    }

    .logo-image {
        height: 28px;
        /* 绋嶅井鍑忓皬logo灏哄 */
    }

    .logo-text {
        font-size: 1.1rem;
        /* 绋嶅井鍑忓皬鏂囧瓧澶у皬 */
    }
}

/* 纭繚绉诲姩鑿滃崟鎸夐挳鍙偣鍑?*/
.mobile-menu-btn {
    z-index: 1001;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
}

/* 移动菜单定位 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    /* 根据导航栏高度调整 */
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 15px 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-bottom: 1px solid #333;
}

.mobile-menu.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 妗岄潰绔櫥褰曟敞鍐屾寜閽?*/
.desktop-auth {
    display: flex;
}

/* 榛樿闅愯棌鐢ㄦ埛澶村儚锛岀瓑寰匤S妫€鏌ョ櫥褰曠姸鎬佸悗鏄剧ず */
#userAvatar {
    display: none;
}

/* 绉诲姩绔殣钘忔闈㈡寜閽?*/
@media (max-width: 768px) {
    .desktop-auth {
        display: none;
    }

    .user-avatar {
        display: none;
    }
}

/* 绉诲姩鑿滃崟涓嶉渶瑕佸啀鏄剧ず鐧诲綍娉ㄥ唽 */
.mobile-auth {
    display: none !important;
}
/* static/css/auth.css  */
/* 鐢ㄦ埛鍖哄煙鏍峰紡 - 鏇存柊涓哄鑸爮鍐呮牱寮?*/
.user-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-btn {
    padding: 8px 16px;
    background: linear-gradient(to right, #ff69b4, #ff1493);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.login-btn:hover {
    background: linear-gradient(to right, #ff1493, #ff69b4);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 105, 180, 0.3);
}

.user-avatar {
    position: relative;
}

.avatar-dropdown {
    position: relative;
    display: inline-block;
}

.avatar-dropdown img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ff69b4;
    transition: all 0.3s;
    object-fit: cover;
}

.avatar-dropdown:hover img {
    transform: scale(1.1);
    border-color: #ff1493;
}

.avatar-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 1000;
    overflow: hidden;
    animation: fadeInDown 0.2s ease-out;
}

.avatar-dropdown-menu.show {
    display: block;
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
}

.dropdown-item i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
    color: #666;
}

.dropdown-item.logout-item {
    color: #dc3545;
}

.dropdown-item.logout-item:hover {
    background-color: #fee;
}

.dropdown-item.logout-item i {
    color: #dc3545;
}

.dropdown-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 4px 0;
}

/* 鐧诲綍妯℃€佹鏍峰紡 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    box-sizing: border-box;
    overflow: hidden;
}

.modal-content {
    background: white;
    margin: 0;
    padding: 24px 20px;
    border-radius: 16px 16px 0 0;
    width: 100%;
    max-width: 420px;
    max-height: 100vh;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    overflow-y: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* 妗岄潰绔眳涓樉绀?- 淇PC绔脊绐楄繃瀹介棶棰?*/
@media (min-width: 769px) {
    .modal-content {
        width: auto;
        min-width: 400px;
        max-width: 450px;
        margin: 5% auto;
        padding: 40px;
        border-radius: 16px;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }
}

/* 绉诲姩绔€傞厤 */
@media (max-width: 768px) {
    .modal {
        padding: 20px 16px;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .modal-content {
        margin: 0;
        padding: 32px 20px 24px 20px;
        border-radius: 20px;
        max-width: 100%;
        width: 100%;
        max-height: 90vh;
        top: auto;
        left: auto;
        transform: none;
        position: relative;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }

    .modal .close {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 1001;
        font-size: 22px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        color: #666;
        line-height: 1;
    }

    .modal h2 {
        font-size: 24px;
        margin-bottom: 8px;
        margin-top: 0;
        padding-top: 0;
    }

    .modal-subtitle {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .modal .form-group {
        margin-bottom: 16px;
    }

    .modal input {
        padding: 12px 14px;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }

    .modal .btn-primary {
        padding: 12px;
        font-size: 15px;
        margin-top: 8px;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }

    .social-login {
        margin-top: 0;
        margin-bottom: 20px;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }

    .social-buttons {
        gap: 8px;
        width: 100%;
        box-sizing: border-box;
        flex-direction: row;
        max-width: 100%;
    }

    .social-btn {
        padding: 10px 12px;
        font-size: 13px;
        flex: 1;
        box-sizing: border-box;
        min-width: 0;
        max-width: 100%;
    }

    .social-btn span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .social-btn svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .auth-tabs {
        margin: 12px 0;
    }

    .tab-link {
        padding: 10px 16px;
        font-size: 15px;
    }

    .auth-footer {
        margin-top: 20px;
        font-size: 14px;
        width: 100%;
    }

    .code-input-group {
        display: flex;
        gap: 8px;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }

    .code-input-group input {
        flex: 1;
        min-width: 0;
        max-width: 100%;
    }

    .send-code-btn {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 12px 16px;
        font-size: 13px;
        max-width: 100%;
    }

    .form-group {
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }

    .social-login {
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }

    .social-buttons {
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }

    .social-btn {
        max-width: 100%;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal h2 {
    color: #333;
    text-align: center;
    margin-bottom: 8px;
    font-size: 28px;
    font-weight: 600;
    margin-top: 0;
}


.modal-subtitle {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.modal .form-group {
    margin-bottom: 20px;
}

.modal input {
    width: 100%;
    padding: 14px 16px;
    margin: 0;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 15px;
    transition: all 0.3s;
}

.modal input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.modal .btn-primary {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.modal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.modal .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-options {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
}

.login-options a {
    color: #ff69b4;
    text-decoration: none;
}

.login-options a:hover {
    text-decoration: underline;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ff69b4;
}

/* 鏂板楠岃瘉鐮佽緭鍏ョ粍鏍峰紡 */
.code-input-group {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.send-code-btn {
    flex-shrink: 0;
    padding: 12px 15px;
    background: linear-gradient(to right, #00bfff, #0066ff);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.send-code-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.send-code-btn:hover:not(:disabled) {
    background: linear-gradient(to right, #0066ff, #00bfff);
}

/* 鍝嶅簲寮忚皟鏁?*/
@media (max-width: 768px) {
    .user-area {
        top: 10px;
        right: 10px;
    }

    .user-avatar {
        width: 36px;
        height: 36px;
    }
}

/* 纭繚瀹瑰櫒鏈夌浉瀵瑰畾浣?*/
.container {
    position: relative;
    max-width: 1200px;
    /* 鏍规嵁瀹為檯璋冩暣 */
    margin: 0 auto;
    padding: 20px;
}

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

/* 閫夐」鍗℃牱寮?*/
.auth-tabs {
    margin: 15px 0;
    border-bottom: 2px solid #eee;
}

.tab-link {
    padding: 12px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.3s;
}

.tab-link.active {
    color: #ff69b4;
    border-bottom: 2px solid #ff69b4;
}

/* 琛ㄥ崟鍒囨崲鍔ㄧ敾 */
.auth-form {
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.auth-form.active {
    display: block;
    opacity: 1;
}

/* static/css/auth.css */
.password-strength {
    margin: 10px 0;
}

.strength-bar {
    height: 5px;
    width: 0;
    background: #ddd;
    transition: width 0.3s;
}

.strength-text {
    display: block;
    font-size: 12px;
    color: #666;
}

/* 寮哄害棰滆壊 */
.strength-weak {
    background: #ff4757;
    width: 33%;
}

.strength-medium {
    background: #ffa502;
    width: 66%;
}

.strength-strong {
    background: #2ed573;
    width: 100%;
}

.remember-me {
    margin: 10px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 0;
    /* 瀹屽叏绉婚櫎 gap */
}

.remember-me input[type="checkbox"] {
    margin: 0 4px 0 0;
    /* 浠呭彸渚?4px 闂磋窛锛屽叾浣?0 */
    padding: 0;
    /* 纭繚娌℃湁鍐呰竟璺濆奖鍝?*/
    width: auto;
    /* 閬垮厤榛樿瀹藉害褰卞搷 */
}

.remember-me label {
    cursor: pointer;
    white-space: nowrap;
    margin-left: 0;
    /* 纭繚娌℃湁棰濆鐨勫乏 margin */
}

/* 绗笁鏂圭櫥褰曟牱寮?*/
.social-login {
    margin-top: 0;
    margin-bottom: 24px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
    color: #999;
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.divider span {
    padding: 0 16px;
    background: white;
}

.social-buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    box-sizing: border-box;
    min-width: 0;
    font-size: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
}

.social-btn:hover {
    border-color: #d0d0d0;
    background: #f9f9f9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-btn.google {
    border-color: #e0e0e0;
}

.social-btn.google:hover {
    border-color: #4285f4;
    background: #f8f9ff;
}

.social-btn.facebook {
    border-color: #e0e0e0;
}

.social-btn.facebook:hover {
    border-color: #1877f2;
    background: #f0f4ff;
}

.social-btn svg {
    flex-shrink: 0;
}

/* 鏂板鏍峰紡 */
.auth-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.auth-footer a {
    color: #ff69b4;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* 璋冩暣琛ㄥ崟闂磋窛 */
.auth-form {
    margin-bottom: 15px;
}

.logout-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px;
    z-index: 100;
}

.user-avatar:hover .logout-menu {
    display: block;
}

#logoutBtn {
    background: #ff4757;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

/* 瀵嗙爜杈撳叆缁勬牱寮?*/
.password-input-group {
    position: relative;
    margin-bottom: 15px;
}

.password-input-group input {
    padding-right: 35px;
    width: 100%;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
    opacity: 0.6;
    transition: opacity 0.3s;
    font-size: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password:hover {
    opacity: 1;
}

/* 鏂板娉ㄥ唽鎸夐挳鏍峰紡 */
.auth-btn.secondary {
    background: white;
    color: #ff69b4;
    border: 1px solid #ff69b4;
    margin-right: 10px;
}

.auth-btn {
    padding: 8px 16px;
    background: linear-gradient(to right, #ff69b4, #ff1493);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.auth-btn:hover {
    background: linear-gradient(to right, #ff1493, #ff69b4);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 105, 180, 0.3);
}

/* 纭繚寮圭獥灞傜骇 */
#loginModal {
    z-index: 1001;
}

#registerModal {
    z-index: 1002;
}

/* 璋冩暣寮圭獥鍐呭鏈€澶у搴?- 宸插湪濯掍綋鏌ヨ涓缃紝姝ゅ绉婚櫎閬垮厤鍐茬獊 */

/* 纭繚姣忎釜妯℃€佹鐨勮〃鍗曠嫭绔嬫帶鍒?*/
#loginModal .auth-form {
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

#loginModal .auth-form.active {
    display: block;
    opacity: 1;
}

#registerModal .auth-form {
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

#registerModal .auth-form.active {
    display: block;
    opacity: 1;
}

.user-area>* {
    transition: opacity 0.3s, transform 0.3s;
}

/* 婵€娲荤殑閫夐」鍗℃牱寮?*/
.auth-tabs .tab-link.active {
    color: #ff69b4;
    border-bottom: 2px solid #ff69b4;
}
/* 椤佃剼鏍峰紡 */
.site-footer {
    background-color: #f8f9fa;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #666;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    margin: 8px 0;
    line-height: 1.5;
}

.copyright {
    color: #888;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #4a6bff;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3a5bef;
    text-decoration: underline;
}

.link-divider {
    color: #ccc;
    margin: 0 5px;
}

/* 鍝嶅簲寮忚皟鏁?*/
@media (max-width: 768px) {
    .site-footer {
        padding: 20px 0;
        margin-top: 30px;
    }
    
    .footer-content {
        padding: 0 15px;
    }
}
