    /* 弹窗样式 */
    .modal {
        display: none; /* 默认隐藏 */
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .modal-content {
        background-color: #fff;
        margin: 15% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
        max-width: 400px;
        text-align: center;
        position: relative;
    }

    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
    }

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
    }

    /* 图片自适应 */
    .donate-img {
        width: 100%; /* 图片宽度自适应容器 */
        height: auto; /* 高度根据宽度自动调整 */
        max-width: 300px; /* 限制最大宽度 */
        max-height: 300px; /* 限制最大高度 */
        display: block; /* 防止图片下方有空白 */
        margin: 0 auto; /* 图片居中 */
    }

    /* 手机端适配 */
    @media (max-width: 768px) {
        .modal-content {
            margin: 50% auto;
            width: 90%;
        }

        .donate-img {
            max-width: 100%; /* 手机端图片宽度不超过弹窗宽度 */
            max-height: 200px; /* 手机端限制最大高度 */
        }
    }


   /* Head 部分 */
    .head {
        width: 100%;
        height: 400px;
        background: #1E49B9;
        background-image: url("{eecms:env name='custom.ssbjt' /}");
        background-position: center center;
        background-size: cover;
        position: relative;
        overflow: hidden;
    }

    .head > h1 {
        color: #ffffff;
        letter-spacing: 6px;
        text-align: center;
        padding-top: 100px;
		padding-bottom: 50px; /* 增加下内边距 */
        font-size: 48px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        animation: fadeIn 1.5s ease-in-out;
    }

    .head > p {
        font-size: 20px;
        text-align: center;
        color: #ffffff;
        animation: fadeIn 2s ease-in-out;
    }

    .head h3 {
        font-size: 40px;
        line-height: 52px;
        color: #FFF;
        font-weight: 400;
        text-align: center;
        animation: fadeIn 2.5s ease-in-out;
    }

    /* 搜索部分 */
    .search_item_x {
        text-align: center;
        padding: 0px 10px 20px;
    }

    .search_item_x .item_x_t {
        padding: 10px 0;
        color: #BCEAFF;
        font-size: 18px;
        font-weight: 500;
    }

    .search_item_x .item_x_m {
        width: 100%;
        position: relative;
    }

    .item_x_m li {
        display: inline-block;
        margin: 0 3px 10px 3px;
    }

    .item_x_m li a {
        padding: 0 16px;
        line-height: 34px;
        border: 1px solid #5C82E4;
        color: #BCEAFF;
        display: block;
        font-size: 14px;
        border-radius: 3px;
        transition: all 0.3s ease;
        background: rgba(92, 130, 228, 0.2);
    }

    .item_x_m li a:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #BCEAFF;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    /* 登录注册表格 */
    .login-register-table {
        width: 120px; /* 调整宽度以适应内容 */
        background: linear-gradient(135deg, #1E49B9, #337FE5); /* 渐变背景色 */
        border: none;
        border-radius: 100px; /* 圆角边框 */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* 阴影效果 */
        overflow: hidden; /* 确保阴影不会被子元素覆盖 */
        color: #FFFFFF; /* 文字颜色 */
        font-family: Arial, sans-serif; /* 字体样式 */
        transition: all 0.3s ease; /* 添加过渡效果 */
        margin: 20px auto; /* 居中显示 */
    }

    .login-register-table:hover {
        transform: translateY(-2px); /* 悬停时轻微上移 */
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); /* 悬停时阴影更明显 */
    }

    .login-register-table a {
        color: #FFFFFF; /* 链接文字颜色 */
        text-decoration: none; /* 去除下划线 */
        font-weight: 500; /* 文字加粗 */
        transition: color 0.3s ease; /* 文字颜色过渡效果 */
    }

    .login-register-table a:hover {
        color: #BCEAFF; /* 悬停时文字颜色变化 */
        text-decoration: none; /* 悬停时去除下划线 */
    }

    .login-register-table td {
        padding: 12px;
        text-align: center;
        transition: background 0.3s ease; /* 单元格背景过渡效果 */
    }

    .login-register-table td:hover {
        background: rgba(255, 255, 255, 0.1); /* 悬停时单元格背景轻微变化 */
    }
/* 导航栏样式 */
.c-nav {
    background: linear-gradient(135deg, #1E49B9, #337FE5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 1px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navFlex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.navFlex ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navFlex ul li {
    margin: 0 15px;
    position: relative;
}

.navFlex ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navFlex ul li a:hover {
    color: #BCEAFF;
}

.navFlex ul li span {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #BCEAFF;
    transition: width 0.3s ease;
}

.navFlex ul li:hover span {
    width: 100%;
}

/* 注册登录容器样式 */
.login-register-container {
    margin-left: auto; /* 将注册登录部分推到右侧 */
    padding: 0 0px; /* 增加内边距 */
}

/* 注册登录部分样式 */
.ey-right-menu {
    display: flex;
    align-items: center;
}

.ey-right-menu .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ey-right-menu .menu li {
    margin: 0 10px;
}

.ey-right-menu .menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ey-right-menu .menu li a:hover {
    color: #BCEAFF;
}

/* 已登录用户头像样式 */
.ey-right-menu .menu li img {
    vertical-align: middle;
}

/* 注册登录按钮样式 */
.ey-right-menu .menu li a {
    padding: 8px 16px;
    border: 1px solid #ffffff;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.ey-right-menu .menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #BCEAFF;
}







/* Tshmd Styles */
.tshmd {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(31, 74, 186, 0.1);
}

.tshmd:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.tshmd .tshmd-heading {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    padding: 20px 24px;
    background: linear-gradient(90deg, rgba(31, 74, 186, 0.05), rgba(31, 74, 186, 0.1));
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.tshmd .tshmd-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1f4aba, #1a73e8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.tshmd:hover .tshmd-heading::after {
    transform: scaleX(1);
}

.tshmd .tshmd-heading .more {
    color: #1f4aba;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tshmd .tshmd-heading .more:hover {
    color: #1a73e8;
}

.tshmd .tshmd-body {
    padding: 24px;
    background: #fff;
    animation: fadeIn 0.5s ease;
}

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

/* Tshmd Card Styles */
.tshmd-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(31, 74, 186, 0.1);
}

.tshmd-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.tshmd-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(31, 74, 186, 0.1), rgba(31, 74, 186, 0.2));
    transition: left 0.5s ease;
}

.tshmd-card:hover::before {
    left: 100%;
}

.tshmd-card .tshmd-card-icon img {
    width: 100%;
    height: 150px; /* 统一高度 */
    min-height: 150px; /* 确保高度至少为 200px */
    max-height: 150px; /* 确保高度不超过 200px */
    border-radius: 12px;
    transition: transform 0.3s ease;
    object-fit: cover; /* 保持图片比例，同时覆盖整个容器 */
}

.tshmd-card:hover .tshmd-card-icon img {
    transform: scale(1.05);
}

.tshmd-card .tshmd-card-title {
    font-size: 18px;
    color: #000000; /* 标题颜色改为黑色 */
    margin-top: 16px;
    display: block;
    text-align: center; /* 文字居中 */
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tshmd-card .tshmd-card-title::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%; /* 下划线从中间开始 */
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1f4aba, #1a73e8); /* 蓝色渐变下划线 */
    transition: width 0.3s ease, left 0.3s ease; /* 添加 left 过渡 */
    transform: translateX(-50%); /* 居中下划线 */
}

.tshmd-card:hover .tshmd-card-title {
    color: #1a73e8; /* 悬停时标题颜色变为蓝色 */
}

.tshmd-card:hover .tshmd-card-title::after {
    width: 100%; /* 悬停时下划线从中间向两侧展开 */
    left: 50%; /* 保持居中 */
}

.tshmd-card:hover .tshmd-card-title {
    color: #1a73e8;
}

/* Responsive Styles */
@media screen and (max-width: 767px) {
    .tshmd .tshmd-heading {
        font-size: 18px;
        padding: 16px 20px;
    }

    .tshmd .tshmd-heading .more {
        font-size: 14px;
    }

    .tshmd .tshmd-body {
        padding: 20px;
    }

    .tshmd-card {
        padding: 16px;
    }

    .tshmd-card .tshmd-card-title {
        font-size: 16px;
    }
}




/* 基础样式 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* 浮动留言按钮 */
.feedback-container {
    position: fixed;
    bottom: 260px; /* 距离底部 260px，避免与客服图标重叠 */
    right: 20px; /* 固定在右侧，与客服图标保持一定距离 */
    z-index: 1000;
}

.feedback-icon {
    width: 50px;
    height: 50px;
    background-color: #205aef; /* 绿色背景，与客服图标区分 */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feedback-icon i {
    font-size: 24px;
}

/* 留言窗口 */
.feedback-window {
    position: fixed;
    bottom: 320px; /* 距离底部 320px，避免与按钮重叠 */
    right: 80px; /* 固定在右侧 */
    width: 300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

.feedback-window.active {
    display: block;
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #205aef; /* 绿色背景，与按钮一致 */
    color: #fff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.feedback-header .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.feedback-body {
    padding: 10px;
}

.feedback-input,
.feedback-textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.feedback-textarea {
    resize: vertical;
}

.feedback-submit {
    width: 100%;
    padding: 10px;
    background-color: #205aef; /* 绿色背景，与按钮一致 */
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-submit i {
    margin-right: 5px;
}

.feedback-submit:hover {
    background-color: #218838; /* 深绿色，悬停效果 */
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: Helvetica, Arial, "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", "tohoma,sans-serif";
    font-size: 14px;
    line-height: 1.42857143;
    color: #666;
    background: #fafafa;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 767px) {
    body {
        background: #f9f9f9;
        padding-right: 0 !important;
    }
}

::-moz-selection {
    background: #ff7f00;
    color: #fff;
}

::selection {
    background: #ff7f00;
    color: #fff;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #ff7f00;
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background: #222;
}

::-webkit-scrollbar-track {
    background: #222;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
}

.md-3-5, .md-8-5, .xs-1, .sm-1, .md-1, .lg-1, .xs-2, .sm-2, .md-2, .lg-2, .xs-3, .sm-3, .md-3, .lg-3, .xs-4, .sm-4, .md-4, .lg-4, .xs-5, .sm-5, .md-5, .lg-5, .xs-6, .sm-6, .md-6, .lg-6, .xs-7, .sm-7, .md-7, .lg-7, .xs-8, .sm-8, .md-8, .lg-8, .xs-9, .sm-9, .md-9, .lg-9, .xs-10, .sm-10, .md-10, .lg-10, .xs-11, .sm-11, .md-11, .lg-11, .xs-12, .sm-12, .md-12, .lg-12 {
    position: relative;
    min-height: 1px;
    padding: 8px;
}

@media screen and (max-width: 767px) {
    .md-3-5, .md-8-5, .xs-1, .sm-1, .md-1, .lg-1, .xs-2, .sm-2, .md-2, .lg-2, .xs-3, .sm-3, .md-3, .lg-3, .xs-4, .sm-4, .md-4, .lg-4, .xs-5, .sm-5, .md-5, .lg-5, .xs-6, .sm-6, .md-6, .lg-6, .xs-7, .sm-7, .md-7, .lg-7, .xs-8, .sm-8, .md-8, .lg-8, .xs-9, .sm-9, .md-9, .lg-9, .xs-10, .sm-10, .md-10, .lg-10, .xs-11, .sm-11, .md-11, .lg-11, .xs-12, .sm-12, .md-12, .lg-12 {
        padding: 1px;
    }
}

.xs-1, .xs-2, .xs-3, .xs-4, .xs-5, .xs-6, .xs-7, .xs-8, .xs-9, .xs-10, .xs-11, .xs-12 {
    float: left;
    margin: 0 auto; /* 水平居中 */
    display: block; /* 确保块级元素特性 */
}

/* 清除浮动 */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.xs-12 {
    width: 100%;
}

.xs-11 {
    width: 91.66666667%;
}

.xs-10 {
    width: 83.33333333%;
}

.xs-9 {
    width: 75%;
}

.xs-8 {
    width: 66.66666667%;
}

.xs-7 {
    width: 58.33333333%;
}

.xs-6 {
    width: 100%;
}

.xs-5 {
    width: 41.66666667%;
}

.xs-4 {
    width: 33.33333333%;
}

.xs-3 {
    width: 25%;
}

.xs-2 {
    width: 16.66666667%;
}

.xs-1 {
    width: 8.33333333%;
}

@media (min-width: 767px) {
    .sm-1, .sm-2, .sm-3, .sm-4, .sm-5, .sm-6, .sm-7, .sm-8, .sm-9, .sm-10, .sm-11, .sm-12 {
        float: left;
    }

    .sm-12 {
        width: 100%;
    }

    .sm-11 {
        width: 91.66666667%;
    }

    .sm-10 {
        width: 83.33333333%;
    }

    .sm-9 {
        width: 75%;
    }

    .sm-8 {
        width: 66.66666667%;
    }

    .sm-7 {
        width: 58.33333333%;
    }

    .sm-6 {
        width: 50%;
    }

    .sm-5 {
        width: 41.66666667%;
    }

    .sm-4 {
        width: 33.33333333%;
    }

    .sm-3 {
        width: 25%;
    }

    .sm-2 {
        width: 16.66666667%;
    }

    .sm-1 {
        width: 8.33333333%;
    }
}

@media (min-width: 991px) {
    .md-3-5, .md-8-5, .md-1, .md-2, .md-3, .md-4, .md-5, .md-6, .md-7, .md-8, .md-9, .md-10, .md-11, .md-12 {
        float: left;
    }

    .md-12 {
        width: 100%;
    }

    .md-11 {
        width: 91.66666667%;
    }

    .md-10 {
        width: 83.33333333%;
    }

    .md-9 {
        width: 75%;
    }

    .md-8-5 {
        width: 70.833333333%;
    }

    .md-8 {
        width: 66.66666667%;
    }

    .md-7 {
        width: 58.33333333%;
    }

    .md-6 {
        width: 50%;
    }

    .md-5 {
        width: 41.66666667%;
    }

    .md-4 {
        width: 33.33333333%;
    }

    .md-3-5 {
        width: 29.16666666%;
    }

    .md-3 {
        width: 25%;
    }

    .md-2 {
        width: 16.66666667%;
    }

    .md-1 {
        width: 8.33333333%;
    }

    .md-offset-12 {
        margin-left: 100%;
    }

    .md-offset-11 {
        margin-left: 91.66666667%;
    }

    .md-offset-10 {
        margin-left: 83.33333333%;
    }

    .md-offset-9 {
        margin-left: 75%;
    }

    .md-offset-8 {
        margin-left: 66.66666667%;
    }

    .md-offset-7 {
        margin-left: 58.33333333%;
    }

    .md-offset-6 {
        margin-left: 50%;
    }

    .md-offset-5 {
        margin-left: 41.66666667%;
    }

    .md-offset-4 {
        margin-left: 33.33333333%;
    }

    .md-offset-3 {
        margin-left: 25%;
    }

    .md-offset-2 {
        margin-left: 16.66666667%;
    }

    .md-offset-1 {
        margin-left: 8.33333333%;
    }

    .md-offset-0 {
        margin-left: 0;
    }
}

@media (min-width: 1300px) {
    .lg-1, .lg-2, .lg-3, .lg-4, .lg-5, .lg-6, .lg-7, .lg-8, .lg-9, .lg-10, .lg-11, .lg-12 {
        float: left;
    }

    .lg-12 {
        width: 100%;
    }

    .lg-11 {
        width: 91.66666667%;
    }

    .lg-10 {
        width: 83.33333333%;
    }

    .lg-9 {
        width: 75%;
    }

    .lg-8 {
        width: 66.66666667%;
    }

    .lg-7 {
        width: 58.33333333%;
    }

    .lg-6 {
        width: 50%;
    }

    .lg-5 {
        width: 41.66666667%;
    }

    .lg-4 {
        width: 33.33333333%;
    }

    .lg-3 {
        width: 25%;
    }

    .lg-2 {
        width: 16.66666667%;
    }

    .lg-1 {
        width: 8.33333333%;
    }

    .lg-pull-12 {
        right: 100%;
    }

    .lg-pull-11 {
        right: 91.66666667%;
    }

    .lg-pull-10 {
        right: 83.33333333%;
    }

    .lg-pull-9 {
        right: 75%;
    }

    .lg-pull-8 {
        right: 66.66666667%;
    }

    .lg-pull-7 {
        right: 58.33333333%;
    }

    .lg-pull-6 {
        right: 50%;
    }

    .lg-pull-5 {
        right: 41.66666667%;
    }

    .lg-pull-4 {
        right: 33.33333333%;
    }

    .lg-pull-3 {
        right: 25%;
    }

    .lg-pull-2 {
        right: 16.66666667%;
    }

    .lg-pull-1 {
        right: 8.33333333%;
    }

    .lg-pull-0 {
        right: auto;
    }

    .lg-push-12 {
        left: 100%;
    }

    .lg-push-11 {
        left: 91.66666667%;
    }

    .lg-push-10 {
        left: 83.33333333%;
    }

    .lg-push-9 {
        left: 75%;
    }

    .lg-push-8 {
        left: 66.66666667%;
    }

    .lg-push-7 {
        left: 58.33333333%;
    }

    .lg-push-6 {
        left: 50%;
    }

    .lg-push-5 {
        left: 41.66666667%;
    }

    .lg-push-4 {
        left: 33.33333333%;
    }

    .lg-push-3 {
        left: 25%;
    }

    .lg-push-2 {
        left: 16.66666667%;
    }

    .lg-push-1 {
        left: 8.33333333%;
    }

    .lg-push-0 {
        left: auto;
    }

    .lg-offset-12 {
        margin-left: 100%;
    }

    .lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .lg-offset-9 {
        margin-left: 75%;
    }

    .lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .lg-offset-6 {
        margin-left: 50%;
    }

    .lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .lg-offset-3 {
        margin-left: 25%;
    }

    .lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .lg-offset-0 {
        margin-left: 0;
    }
}

.mobile-header-wrap {
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: #000;
    display: none;
    position: fixed;
    z-index: 100;
}


.list_tag {color: #fff;
	display: inline-block;
	padding: 0 4px;
	height: 20px;
	line-height: 20px;
	background-color: #e35449;
	border-radius: 2px
}


@media screen and (max-width: 767px) {
    .mobile-header-wrap {
        display: block;
    }
}

.mobile-header-wrap .mobile-logo {
    display: block;
    max-width: 128px;
    max-height: 32px;
    margin: 9px auto;
    text-align: center;
    text-decoration: none;
}

.mobile-header-wrap .mobile-logo img {
    max-width: 128px;
    max-height: 32px;
}

.btn-mobile-sidenav {
    left: 0;
    top: 0;
    width: 40px;
    height: 100%;
    color: #ddd;
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 767px) {
    .btn-mobile-sidenav {
        display: block;
    }
}

.nav-bar {
    margin: 13px;
    position: fixed;
    z-index: 1000;
}

.nav-bar span {
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 4.5px;
    display: block;
    position: relative;
    border-radius: 3px;
    z-index: 1;
    -webkit-transform-origin: 20px;
    transform-origin: 20px;
    -webkit-transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.nav-bar-animate span {
    opacity: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav-bar-animate span:nth-last-child(2) {
    opacity: 0;
}

.nav-bar-animate span:nth-last-child(3) {
    opacity: 1;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.hide-sidenav {
    transform: translate(-230px, 0) !important;
}

.show-sidenav {
    transform: translate(0, 0) !important;
}

.sidenav-mark {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.75);
    position: fixed;
    z-index: 299;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 530ms;
    animation-duration: 530ms;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.sidenav {
    width: 230px;
    top: 0;
    left: 0;
    height: 100%;
    color: #ccc;
    background: #000;
    position: fixed;
    z-index: 300;
    box-shadow: 0 0 18px #ff7f00;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 767px) and (max-width: 991px) {
    .sidenav {
        width: 180px;
    }
}

@media screen and (max-width: 767px) {
    .sidenav {
        box-shadow: none;
        transform: translate(-230px, 0);
        transition: transform 430ms cubic-bezier(0.3, 0, 0, 1);
    }
}

.sidenav .btn-mobile-close {
    top: 0px;
    width: 180px;
    height: 40px;
    padding-top: 18px;
    padding-left: 12px;
    display: none;
    position: absolute;
}

@media screen and (max-width: 767px) {
    .sidenav .btn-mobile-close {
        display: block;
    }
    
   
    
}

.sidenav .logo {
    text-align: center;
    margin: 30px auto;
}

.sidenav .logo img {
    width: 114px;
    z-index: 2;
}

.sidenav .nav-item {
    border-top: 1px solid #222;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.sidenav .nav-item:hover {
    background-color: #ff7f00;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.sidenav .nav-item a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 10px;
    display: block;
}

.sidenav .nav-item a span {
    text-align: center;
    position: relative;
}

.sidenav .nav-item.active {
    background: #ff7f00;
}

.sidenav .nav-item.active a {
    color: #fff;
}

.sidenav .nav-tags {
    max-height: 400px;
    background: #222;
    padding: 0;
    margin: 0;
    list-style: none;
    overflow-x: hidden;
}

@media screen and (min-height: 900px) {
    .sidenav .nav-tags {
        max-height: 390px;
    }
}

@media screen and (min-height: 760px) and (max-height: 900px) {
    .sidenav .nav-tags {
        max-height: 295px;
    }
}

@media screen and (min-height: 630px) and (max-height: 760px) {
    .sidenav .nav-tags {
        max-height: 230px;
    }
}

@media screen and (min-height: 460px) and (max-height: 630px) {
    .sidenav .nav-tags {
        max-height: 165px;
    }
}

@media screen and (max-height: 460px) {
    .sidenav .nav-tags {
        max-height: 65px;
    }
}

.sidenav .nav-tags .active {
    background-color: #333;
}

.sidenav .nav-tags .active a {
    color: #fff;
}

.sidenav .nav-tags li {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.sidenav .nav-tags li:hover {
    background: #333;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.sidenav .nav-tags li a {
    color: #999;
    font-size: 12px;
    padding: 8px;
    text-align: center;
    display: block;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.sidenav .nav-tags li a:hover {
    color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.main-wrap {
    margin-left: 0px;
}

@media screen and (min-width: 767px) and (max-width: 991px) {
    .main-wrap {
        margin-left: 0px;
    }
}

@media screen and (max-width: 767px) {
    .main-wrap {
        margin-left: 0;
    }
}

.main {width: 83%;margin: 10px auto 0px;}
.php-asp {width: 83%;margin: 0px auto 0px;}

@media screen and (max-width: 767px) {
    .main {width: 100%;}
    .php-asp {width: 100%;}
}

.board {
    position: fixed;
    z-index: 199;
    top: 0;
    right: 0;
    width: 100%;
    height: 55px;
    background: #fff;
    padding: 16px 55px 16px 250px;
    margin-bottom: 20px;
    border-radius: 2px;
    box-shadow: 0px 0px 6px #ddd;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (min-width: 767px) and (max-width: 991px) {
    .board {
        padding-left: 200px;
    }
}

@media screen and (max-width: 767px) {
    .board {
        position: relative;
        z-index: 0;
        top: 60px;
        height: 45px;
        padding: 12px 12px;
    }
}

.board .board-title {
    font-size: 16px;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .board .board-title {
        font-size: 15px;
    }
}

.board .board-notice {
    font-size: 15px;
}

@media screen and (max-width: 767px) {
    .board .board-notice {
        font-size: 14px;
    }
}

.panel {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.panel:hover {
    transform: translateY(-5px);
}

.panel .panel-heading {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 5px 20px;
    background: linear-gradient(90deg, #1f4aba, #1a73e8);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.panel .panel-heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
    transition: left 0.5s ease;
}

.panel .panel-heading:hover::before {
    left: 100%;
}

.panel .panel-heading .more {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.panel .panel-heading .more:hover {
    color: #e0f7fa;
}

@media screen and (max-width: 767px) {
    .panel .panel-heading {
        font-size: 14px;
        padding: 12px 15px;
    }

    .panel .panel-heading .more {
        font-size: 13px;
    }
}

.panel .panel-body {
    padding: 20px;
    background-color: #fff;
    animation: fadeIn 0.5s ease;
}

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

.panel .panel-body .content {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    padding: 10px;
}

.panel .panel-body .content p {
    margin: 10px 0;
}

.panel .panel-body .content img {
    max-width: 90%; /* 图片最大宽度为容器的宽度 */
    height: auto; /* 高度自适应，保持图片比例 */
    display: block; /* 防止图片下方出现多余的空白 */
    margin: 1px auto; /* 居中显示图片，上下外边距为 10px */
    cursor: pointer; /* 鼠标悬停时显示手型 */
    border-radius: 5px; /* 可选：添加圆角 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 可选：添加阴影 */
}
@media screen and (max-width: 767px) {
    .panel .panel-body {
       
        text-align: center; /* 文本居中 */
        margin: 0 auto; /* 水平居中 */
        max-width: 100%; /* 确保面板不会超出屏幕宽度 */
    }

    .panel .panel-body .content {
        font-size: 13px;
    }
}
/* 弹窗样式 */
#image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

/* 弹窗内容容器 */
#image-modal div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* 图片样式 */
#modal-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
}

/* 关闭按钮样式 */
#close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 16px;
}
.card {
    background: #fff;
    padding: 12px;
    border: 1px solid #eee;
    box-shadow: 1px 1px 1px #ccc;
    border-radius: 3px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media screen and (max-width: 767px) {
    .card {
        padding: 10px;
    }
}

.card:hover {
    box-shadow: 1px 3px 8px #ccc;
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.card .card-heading {
    color: #333;
    display: block;
    cursor: pointer;
    overflow: hidden;
}

.card .card-heading .card-icon {
    width: 32px;
    height: 32px;
    float: left;
    display: block;
    border-radius: 50%;
}

.card .card-heading .card-icon img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
}

.card .card-heading .card-title {
    color: inherit;
    font-size: 15px;
    font-weight: 700;
    display: block;
    margin: 6px 0 6px 42px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.card .card-body {
    color: #666;
    font-size: 14px; /* 增大字体大小，提升可读性 */
    margin-top: 10px; /* 增加上边距，避免内容过于紧凑 */
    display: flex; /* 使用 flex 布局，使内容排列更灵活 */
    align-items: center; /* 垂直居中对齐 */
    gap: 10px; /* 设置子元素之间的间距 */
    overflow: hidden; /* 隐藏溢出内容 */
}

.card .card-body .card-icon {
    width: 40px; /* 固定图标宽度 */
    height: 40px; /* 固定图标高度 */
    flex-shrink: 0; /* 防止图标被压缩 */
    border-radius: 50%; /* 圆形图标 */
    overflow: hidden; /* 隐藏图片溢出部分 */
}

.card .card-body .card-icon img {
    width: 100%; /* 图片宽度填充容器 */
    height: 100%; /* 图片高度填充容器 */
    object-fit: cover; /* 图片自适应裁剪，保持比例 */
}

.card .card-body .card-title {
    flex-grow: 1; /* 标题区域占据剩余空间 */
    font-size: 16px; /* 增大标题字体大小 */
    font-weight: 600; /* 加粗标题 */
    color: #333; /* 使用更深的颜色，提升可读性 */
    white-space: nowrap; /* 防止标题换行 */
    text-overflow: ellipsis; /* 超出部分显示省略号 */
    overflow: hidden; /* 隐藏溢出内容 */
}

.card .card-body .love-btn {
    flex-shrink: 0; /* 防止按钮被压缩 */
    color: #888; /* 按钮默认颜色 */
    cursor: pointer; /* 鼠标悬停时显示手型 */
    transition: color 0.3s ease; /* 添加颜色过渡效果 */
}

.card .card-body .love-btn:hover {
    color: #ff7f00; /* 鼠标悬停时按钮颜色变为橙色 */
}

.card .card-footer {
    color: #888;
    font-size: 11px;
    line-height: 8px;
    margin: 6px 0px 16px;
}

.card .card-footer .view {
    width: 50%;
    float: left;
}

.card .card-footer .love {
    max-width: 50%;
    float: left;
}

.card .card-footer .love-active {
    color: #ff7f00;
}

.content .img {
    margin-left: 26px;
    float: right;
    width: 320px;
    max-width: 100%;
    height: auto;
    border-radius: 12px; /* 圆角 */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); /* 阴影效果 */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* 平滑过渡 */
    overflow: hidden; /* 隐藏溢出内容 */
    position: relative; /* 为伪元素定位 */
}

/* 鼠标悬停效果 */
.content .img:hover {
    transform: translateY(-8px) scale(1.02); /* 上移和轻微放大 */
    box-shadow: 0 12px 32px rgb(32 90 239 / 55%); /* 更强的阴影 */
}

/* 图片的覆盖层效果 */
.content .img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29 90 204 / 13%); /* 半透明黑色覆盖层 */
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px; /* 与图片圆角一致 */
}

/* 鼠标悬停时显示覆盖层 */
.content .img:hover::before {
    opacity: 1;
}

/* 图片的放大效果 */
.content .img img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

/* 鼠标悬停时图片放大 */
.content .img:hover img {
    transform: scale(1.1);
}

/* 添加一个微妙的边框 */
.content .img {
    border: 2px solid rgba(255, 255, 255, 0.1); /* 半透明白色边框 */
}

/* 图片的标题或描述（可选） */
.content .img figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.6); /* 半透明黑色背景 */
    color: #fff;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* 鼠标悬停时显示标题 */
.content .img:hover figcaption {
    opacity: 1;
}

.content .im{margin-left: 6px;
    float: left;
    width: 780px;
    max-width: 100%;
    height: auto;}

@media screen and (max-width: 767px) {
    .content .img { width: 100%;}
    .content .im {width: 100%;}
    .mobilekong{display:none;}
}

.content .img img {
    width: 100%;
    height: auto;
}
.content .im img {
    width: 100%;
    height: auto;
}

.btns {
    text-align: center;
}


.btnn {
    width: 120px;
    height: 40px;
    color: #fff;
    font-size: 15px;
    margin: 5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    opacity: 1;
    outline: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}


@media screen and (max-width: 767px) {
    .btnn {
        width: 105px;
        height: 35px;
        font-size: 14px;
    }
}

.btnn:hover {
    opacity: 0.75;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.btnn-black {
    background: #000;
}

.btnn-red {
    background: #ff5722;
}

.btnn-orange {
    background: #ff7f00;
}

.btnn-blue {
    background: #1e9fff;
}

.btnn-green {
    background: #5cb85c;
}

.form-item {
    width: 100%;
    float: left;
    margin-bottom: 15px;
}

.form-item .form-label {
    float: left;
    width: 10%;
    height: 38px;
    font-size: 14px;
    background: #eee;
    padding: 8px 4px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 2px 0px 0px 2px;
}

@media screen and (max-width: 767px) {
    .form-item .form-label {
        width: 20%;
    }
}

.form-item .input {
    float: left;
    width: 90%;
    height: 38px;
    font-size: 14px;
    padding: 0px 10px;
    margin-left: -1px;
    border: 1px solid #ccc;
    border-radius: 0px 2px 2px 0px;
    outline: none;
}

@media screen and (max-width: 767px) {
    .form-item .input {
        width: 80%;
    }
}

.form-item .input:hover {
    border: 1px solid #aaa;
}

.form-item .select {
    float: left;
    width: 90%;
    height: 38px;
    font-size: 14px;
    padding-left: 7px;
    margin-left: -1px;
    border: 1px solid #ccc;
    border-radius: 0px 2px 2px 0px;
    outline: none;
}

@media screen and (max-width: 767px) {
    .form-item .select {
        width: 80%;
    }
}

.form-item .select:hover {
    border: 1px solid #aaa;
}

.form-item .textarea {
    width: 100%;
    min-height: 100px;
    line-height: 20px;
    font-size: 14px;
    padding: 10px;
    margin-top: -1px;
    resize: vertical;
    border: 1px solid #ccc;
    border-radius: 0px 0px 2px 2px;
    outline: none;
}

.form-item .textarea:hover {
    border: 1px solid #aaa;
}

#link-tooltip {
    width: auto;
    top: 200px;
    left: 300px;
    min-width: 80px;
    max-width: 220px;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
    color: #a1a7b7;
    background: #000;
    padding: 8px 12px;
    position: absolute;
    z-index: 100;
    display: none;
    border-radius: 4px;
}

@media screen and (max-width: 767px) {
    #link-tooltip {
        display: none !important;
    }
}

#link-tooltip .tooltip-content {
    color: #fff;
    font-size: 13px;
    font-weight: 100;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.suspend {
    right: 20px;
    bottom: 10%;
    display: block;
    position: fixed;
}

.suspend ul {
    list-style: none;
}

.suspend ul li {
    width: 40px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background: #0d8ded;
    margin: 5px auto;
    opacity: 0.75;
    border-radius: 2px;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .suspend ul li {
        width: 30px;
        height: 30px;
        font-size: 14px;
        line-height: 30px;
    }
}

.suspend ul li:hover {
    opacity: 1;
}

.suspend .top:hover .more, .suspend .qq:hover .more, .suspend .email:hover .more, .suspend .wx:hover .more {
    right: 50px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all .3s;
}

@media screen and (max-width: 767px) {
    .suspend .top:hover .more, .suspend .qq:hover .more, .suspend .email:hover .more, .suspend .wx:hover .more {
        right: 40px;
    }
}

.suspend .more {
    right: -250px;
    width: 190px;
    font-size: 14px;
    line-height: 26px;
    padding: 5px;
    margin: 2px 0;
    background: #0d8ded;
    position: absolute;
    border-radius: 2px;
}

@media screen and (max-width: 767px) {
    .suspend .more {
        font-size: 12px;
        line-height: 16px;
    }
}

.suspend .more i {
    top: 50%;
    right: -4px;
    width: 0;
    height: 0;
    margin-top: -5px;
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    border-left: 4px solid #000;
    border-top: 4px solid rgba(0, 0, 0, 0);
    border-bottom: 4px solid rgba(0, 0, 0, 0);
}

.suspend .top .more {
    width: 70px;
}

@media screen and (max-width: 767px) {
    .suspend .top .more {
        width: 55px;
    }
}

.suspend .qq .more {
    width: 100px;
}

@media screen and (max-width: 767px) {
    .suspend .qq .more {
        width: 90px;
    }
}

.suspend .email .more {
    width: 150px;
}

@media screen and (max-width: 767px) {
    .suspend .email .more {
        width: 130px;
    }
}

.suspend .wx .more {
    width: 100px;
    height: 100px;
    margin: -30px 0;
}

@media screen and (max-width: 767px) {
    .suspend .wx .more {
        width: 80px;
        height: 80px;
        margin: -25px 0;
    }
}

.suspend .wx .more img {
    width: 100%;
    background: #fff;
}

.footer {
    font-size: 13px;
    text-align: center;
    color: #666;
    background: #fff;
    padding: 10px;
    margin-top: 20px;
    box-shadow: 0px -1px 10px #ddd;
}

.footer p {
    margin: 5px auto;
}

.footer a {
    color: #555;
}

.footer a:hover {
    color: #ff7f00;
}
.card1 {
    position: relative;
    background: #fff;
    box-shadow: 0 0 8px #eee;
    border-radius: 8px;
    margin: 8px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .card1 {
        margin: 5px;
    }
}

.card1 .card1-head {
    font-size: 15px;
    font-weight: 700;
    padding: 12px 15px;
    border-bottom: 1px solid #f2f2f2;
}

@media (max-width: 767px) {
    .card1 .card1-head {
        font-size: 14px;
        padding: 10px 12px;
    }
}

.card1 .card1-head i {
    margin-right: 6px;
}

.card1 .card1-head .more {
    position: absolute;
    right: 8px;
    color: #666;
}

.card1 .card1-body {
    padding: 8px;
    font-size: 0;
}

.card1 .card1-body .item {
    display: inline-block;
    width: 14.2857143%;
    color: #666;
    font-size: 14px;
    padding: 10px 8px;
    border-radius: 6px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-transition: font-weight, background, transform .3s;
    -moz-transition: font-weight, background, transform .3s;
    -o-transition: font-weight, background, transform .3s;
    transition: font-weight, background, transform .3s;
}

@media (max-width: 1300px) {
    .card1 .card1-body .item {
        width: 16.6666667%;
    }
}

@media (max-width: 767px) {
    .card1 .card1-body .item {
        width: 25%;
    }
}

@media (max-width: 480px) {
    .card1 .card1-body .item {
        width: 33.3333333%;
        font-size: 13px;
    }
}

.card1 .card-body .item:hover {
    font-weight: 600;
    background: #eee;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.card1 .card-body .item .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 50%; /* 圆形图标 */
    background: linear-gradient(135deg, #1f4aba, #1a73e8); /* 渐变背景 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 阴影 */
    overflow: hidden;
}

.card1 .card-body .item:hover .icon {
    transform: rotateZ(360deg) scale(1.2); /* 旋转并放大 */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* 悬浮时阴影加深 */
}

.card1 .card-body .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
    transition: transform 0.3s ease;
}

.card1 .card-body .item:hover .icon img {
    transform: scale(1.1); /* 悬浮时图片轻微放大 */
}

/* 悬浮光效 */
.card1 .card-body .item .icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 10.01%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.card1 .card-body .item:hover .icon::before {
    transform: translate(-50%, -50%) scale(1); /* 悬浮时显示光效 */
}

/* 基础样式 */
.yqlj {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 20px 0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.yqlj:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px); /* 悬浮时轻微上移 */
}

/* 面板标题 */
.yqlj-heading {
    padding: 20px;
    background: linear-gradient(135deg, #1f4aba, #1a73e8);
    color: #ffffff;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    position: relative;
    overflow: hidden;
}

.yqlj-heading::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 10%, transparent 10.01%);
    transform: rotate(45deg);
    animation: shine 5s infinite linear; /* 背景光效 */
}

@keyframes shine {
    from {
        transform: rotate(45deg) translateX(-100%);
    }
    to {
        transform: rotate(45deg) translateX(100%);
    }
}

.yqlj-heading .title {
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

/* 友情链接容器 */
.yqlj-footer {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* 友情链接样式 */
.yqlj-footer a {
    display: inline-block;
    margin: 5px 10px 5px 0;
    padding: 8px 12px;
    background-color: #ffffff;
    color: #1b6ade;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.yqlj-footer a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(27, 106, 222, 0.1) 10%, transparent 10.01%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.yqlj-footer a:hover {
    background-color: #1b6ade;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.yqlj-footer a:hover::before {
    transform: translate(-50%, -50%) scale(1); /* 悬浮时背景光效 */
}

/* 底部样式 */
.yqlj-footer-bottom {
    padding: 10px 20px;
    background-color: #f8f9fa;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    text-align: center;
    font-size: 12px;
    color: #666;
    position: relative;
}

.yqlj-footer-bottom::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
    transform: translateX(-50%);
}







/* 底部信息 */
.footer {
    background-color: #f0f0f0;
    padding: 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0;
}

.footer-links li {
    margin: 0 10px;
}

.footer-links li a {
    text-decoration: none;
    color: #000;
}

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

.footer p {
    margin: 5px 0;
    font-size: 12px;
}


 