/* 全局样式 */
:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #FFD700;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --bg-dark: #343A40;
    --border-color: #E9ECEF;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

/* 导航栏样式 */
.navbar {
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

/* 轮播图样式 */
.hero-section {
    margin-top: 76px;
}

.carousel-item {
    height: 600px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    opacity: 0.8;
}

.carousel-caption {
    background: rgba(0,0,0,0.5);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* 快速导航样式 */
.quick-nav-item {
    padding: 2rem 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.quick-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.quick-nav-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.quick-nav-item h5 {
    color: var(--text-dark);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.quick-nav-item p {
    color: var(--text-light);
    margin: 0;
}

/* 活动信息样式 */
.section-title {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.activities-grid {
    display: grid;
    gap: 2rem;
}

.activity-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.activity-image {
    height: 200px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-content {
    padding: 1.5rem;
}

.activity-date {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.activity-content h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: bold;
}

.activity-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* 公告栏样式 */
.announcements {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.announcement-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.announcement-item:last-child {
    border-bottom: none;
}

.announcement-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: bold;
}

.announcement-item h5 {
    color: var(--text-dark);
    margin: 0.5rem 0;
    font-weight: bold;
}

.announcement-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* 推荐内容样式 */
.recommendation-card {
    transition: var(--transition);
}

.recommendation-card:hover {
    transform: translateY(-5px);
}

.recommendation-card .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.recommendation-card .card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.recommendation-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.recommendation-card .card-body {
    padding: 1.5rem;
}

.recommendation-card .card-title {
    color: var(--text-dark);
    font-weight: bold;
    margin-bottom: 1rem;
}

.recommendation-card .card-text {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.views {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* 新闻列表样式 */
.news-list {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.news-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: bold;
}

.news-item h5 {
    color: var(--text-dark);
    margin: 0.5rem 0;
    font-weight: bold;
}

.news-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* 标签云样式 */
.tags-cloud {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin: 0.25rem;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
}

.tag:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 10px rgba(139, 69, 19, 0.3);
}

/* 页脚样式 */
.footer {
    margin-top: 3rem;
}
.footer a:link{
    color: #fff;
    text-decoration: none;
}
.footer h5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-links {
    list-style: none;
    padding: 0;
    color: #fff !important;
}

.footer-links li {
    list-style: none;
    margin-bottom: 0.5rem;
}
.footer-links li a{

    padding: 0;
    color: #fff !important;
}
.footer-links a {
    color: #fff !important;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

/* 按钮样式 */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: bold;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* 徽章样式 */
.badge {
    border-radius: 15px;
    padding: 0.5rem 1rem;
    font-weight: bold;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-item {
        height: 400px;
    }

    .quick-nav-item {
        margin-bottom: 1rem;
    }

    .section-title {
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .carousel-caption {
        padding: 1rem;
    }

    .carousel-caption h1 {
        font-size: 1.5rem;
    }

    .quick-nav-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .activity-content,
    .announcements,
    .news-list,
    .tags-cloud {
        padding: 1rem;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* ===== 书籍页面样式 ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
}

.stats-card {
    box-shadow: var(--shadow);
    border-radius: 10px;
}

.search-box .input-group {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 25px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .search-box .form-control {
        border: none;
        padding: 1rem 1.5rem;
    }
}
@media (max-width:768px) {
    .search-box .form-control {
        border: none;
        padding: 1rem 1.5rem;
        width: 100%;
    }
}


.search-box .btn {
    border-radius: 0 25px 25px 0;
    padding: 1rem 2rem;
}

.categories-nav .btn {
    border-radius: 25px;
    padding: 0.5rem 0.7rem;
    font-weight: bold;
    transition: var(--transition);
}

.categories-nav .btn:hover,
.categories-nav .btn.active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.filter-sidebar {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    height: fit-content;
}

.filter-group h6 {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.book-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}


@media (max-width: 768px) {
    .book-cover {
        position: relative;
        height: 200px;
        overflow: hidden;
    }
}
@media (min-width: 768px) {
    .book-cover {
        position: relative;
        height: 200px;
        overflow: hidden;
        width: 300px;
        float: left;
        margin-right: 50px;


    }
}
.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.book-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.book-card:hover .book-overlay {
    opacity: 1;
}

.book-actions {
    display: flex;
    gap: 0.5rem;
}

.book-info {
    padding: 1.5rem;
}

.book-title {
    color: var(--text-dark);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.book-author {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.book-meta {
    margin-bottom: 1rem;
}

.book-stats {
    display: flex;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.8rem;
}

.view-options .btn {
    border-radius: 5px;
    padding: 0.5rem 0.75rem;
}

/* ===== 视频页面样式 ===== */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.video-thumbnail {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    color: var(--text-dark);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.video-lecturer {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.video-meta {
    margin-bottom: 1rem;
}

.video-stats {
    display: flex;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.8rem;
}

.featured-video {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.featured-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.video-thumbnail-large {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button-large {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.play-button-large:hover {
    background: white;
    transform: scale(1.1);
}

.video-info-large {
    padding: 1.5rem;
}

.video-info-large h4 {
    color: var(--text-dark);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.video-info-large p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.video-meta-large {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.views {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== 联系页面样式 ===== */
.contact-card {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.contact-icon {
    color: var(--primary-color);
}

.contact-form-container {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 8px;
    border: 2px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-sidebar {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    height: fit-content;
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-section .accordion-button {
    background: var(--bg-light);
    border: none;
    font-weight: bold;
    color: var(--text-dark);
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.online-support .support-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.online-support .support-item:last-child {
    border-bottom: none;
}

.working-hours .time-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.working-hours .time-item:last-child {
    border-bottom: none;
}

.address-info {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.address-info h5 {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.address-info p {
    margin-bottom: 0.5rem;
}

.address-info ul li {
    margin-bottom: 0.5rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.feedback-stats-section .stat-item {
    padding: 2rem 1rem;
}

.feedback-stats-section .stat-item h3 {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.feedback-stats-section .stat-item p {
    opacity: 0.9;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .books-grid,
    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .contact-form-container,
    .contact-sidebar {
        margin-bottom: 2rem;
    }

    .search-box .input-group {
        flex-direction: column;
    }

    .search-box .btn {
        border-radius: 25px;
        margin-top: 0.5rem;
    }
}

@media (max-width: 576px) {
    .books-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }

    .book-info,
    .video-info {
        padding: 1rem;
    }

    .contact-form-container {
        padding: 1rem;
    }

    .stats-card {
        margin-top: 1rem;
    }
}
.listtitle span::before{
    width: 22px;
    height: 32px;
    content: "";

    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../static/image/public-icon3.png) no-repeat center left;
    background-size: auto;
    margin-top: 1px;
    background-size: auto 100%;
    display: block;
}
.listtitle span{
    height: 32px;
    line-height: 32px;

}
.listtitle span::after{
    width: 22px;
    height: 32px;
    content: "";
    display: block;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../static/image/public-icon4.png) no-repeat center right;
    background-size: auto;
    margin-top: 1px;
    background-size: auto 100%;
}
.s-title {
    font-size: 26px;
    color: #474747;
    line-height: 32px;
    position: relative;
}
.tac {
    text-align: center;
}
.s-title span {
    position: relative;
    display: inline-block;
    padding: 0 32px;
    margin-top: 1px;

}
.s-title{
    padding-bottom: 20px;
}
.s-title span a{
    color: #0a0a0a;
    text-decoration: none;
    padding: 32px ;

}
.s-title span::before {
    width: 22px;
    height: 32px;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../static/image/public-icon3.png) no-repeat center left;
    background-size: auto;
    margin-top: 1px;
    background-size: auto 100%;
}
.s-title span::after {
    width: 22px;
    height: 32px;
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../static/image/public-icon4.png) no-repeat center right;
    background-size: auto;
    margin-top: 1px;
    background-size: auto 100%;
}
.datalist .li {
    min-height: 69px;
    border-top: 1px solid #ccc;
}
.datalist .li {
    min-height: 78px;
    border-top: 1px solid #ccc;
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0;
}
.datalist .li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 23px;
    height: 100%;
    width: 100%;
}
.init-screen a {
    text-decoration: none !important;
    color: inherit !important;
}
.datalist .li a {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
     padding-right: 23px;
     height: 100%;
     width: 100%;
     font-family: 'Microsoft Yahei','PingFang SC',Arial,sans-serif;
     font-size: 14px;
     color: #474747;
     line-height: 1.5;
    text-decoration: none;
 }
.datalist   .li  .p::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0.4em;
    background: url(../static/image/dian1.png) center center/cover no-repeat;
    width: 12px;
    height: 12px;
}
.datalist .li .p {
    font-size: 16px;
    color: #474747;
    padding-left: 20px;
    position: relative;
    max-width: calc(100% - 150px);
    white-space: nowrap;
    line-height: 1.5;
    height: 1.5em;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-right: 25px;
}
.init-screen a {
    text-decoration: none !important;
    color: inherit !important;
}
@media screen and (min-width: 769px) {
    .m-show {
        display: none;
    }
}
.datalist  .li em {
    margin-left: 3px;
    background-color: #b73736;
    color: #fff;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
    border-radius: 3px;
}
.navtitle span{
    padding: 0px !important;
}
.navtitle span a{
    color: #000 !important;
}

