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

html {
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    background: #f5f7fa;
}

body {
    padding-top: 70px;
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
}

/* 网站头部 */
.header,
.site-header {
    height: 70px;
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container,
.site-header .container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header .logo,
.site-header .navbar-brand {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.header .logo-text,
.site-header .navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.header .nav,
.site-header .nav {
    display: flex;
    list-style: none;
}

.header .nav-list,
.site-header .nav {
    display: flex;
    list-style: none;
}

.header .nav-item,
.site-header .navbar-item {
    margin-right: 20px;
}

.header .nav-link,
.site-header .navbar-item a {
    color: #666;
    font-weight: 500;
    padding: 0 20px;
    line-height: 70px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header .nav-link:hover,
.header .nav-link.active,
.site-header .navbar-item a:hover,
.site-header .navbar-item.active a {
    color: #409eff;
    background: transparent;
}

/* 头部操作区 */
.header-actions,
.site-header .navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* 搜索框 */
.search-container {
    position: relative;
}

.search-input {
    position: relative;
}

.search-input .input-group {
    position: relative;
}

.search-input .form-control {
    padding: 0 40px 0 15px;
    font-size: 14px;
    height: 36px;
    border: 1px solid #dcdfe6;
    border-radius: 18px;
    transition: all 0.3s ease;
    width: 100%;
}

.search-input .form-control:focus {
    border-color: #409eff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.2);
}

.search-input .input-group i {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #c0c4cc;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-input .input-group i:hover {
    color: #409eff;
}

/* 头部搜索框 */
.navbar-right {
    display: flex;
    align-items: center;
}

.navbar-right .search-input {
    width: 200px;
}

@media (max-width: 992px) {
    .navbar-right .search-input {
        width: 150px;
    }
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}

/* 主内容区域 */
.main-content {
    width: 100%;
    padding: 30px 0;
}

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

/* 页面头部 */
.page-header {
    margin-bottom: 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 16px;
    color: #666;
}

/* 作者简介区域 */
.author-section {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.author-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.author-content {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.author-motto {
    font-size: 18px;
    color: #00B050;
    margin-bottom: 30px;
    font-weight: 500;
}

.author-subtitle {
    font-size: 18px;
    font-weight: bold;
    color: #FF0033;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.author-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.author-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.author-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #409eff;
    font-weight: bold;
}

.author-list li strong.highlight {
    color: #ff0000;
    font-weight: bold;
}

/* 二维码区域 */
.author-qrcode {
    flex: 0 0 220px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.qrcode-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qrcode-container img {
    width: 180px;
    height: 180px;
    margin-bottom: 15px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
}

.qrcode-text {
    color: #666;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 992px) {
    .author-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .author-qrcode {
        flex: none;
        width: 100%;
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .author-section {
        padding: 30px 20px;
    }
    
    .author-motto {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .author-subtitle {
        font-size: 16px;
        margin: 25px 0 15px 0;
    }
    
    .author-content {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .author-list li {
        margin-bottom: 12px;
        padding-left: 15px;
    }
    
    .qrcode-container img {
        width: 150px;
        height: 150px;
    }
}

/* 软件列表区域 */
.software-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #409eff, #69c0ff);
    border-radius: 1.5px;
}

/* 软件卡片网格 */
.software-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .software-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .software-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .software-grid {
        grid-template-columns: 1fr;
    }
}

.software-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.software-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.software-card a {
    text-decoration: none;
    display: block;
    height: 100%;
}

.software-card .card-img {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    height: 0;
}

.software-card .card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.software-card .card-body {
    padding: 20px;
}

.software-card .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.software-card .card-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.software-card .card-price {
    font-size: 16px;
    font-weight: bold;
    color: #f56c6c;
    margin-bottom: 15px;
}

.software-card .card-price::before {
    content: "￥";
}

.software-card .card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #909399;
}

.software-card .card-category {
    background: #ecf5ff;
    color: #409eff;
    padding: 2px 8px;
    border-radius: 10px;
}

/* 软件详情页 */
.software-detail {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.software-detail-header {
    display: flex;
    margin-bottom: 40px;
}

.software-detail-image {
    flex: 0 0 300px;
    margin-right: 40px;
}

.software-detail-image img {
    width: 100%;
    border-radius: 8px;
}

.software-detail-info {
    flex: 1;
}

.software-detail-info h1 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.software-detail-info .price {
    font-size: 24px;
    font-weight: bold;
    color: #f56c6c;
    margin-bottom: 30px;
}

.software-detail-info .price::before {
    content: "￥";
}

.software-detail-info .meta-info {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.software-detail-info .meta-item {
    margin-right: 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.software-detail-info .meta-item i {
    margin-right: 8px;
    color: #409eff;
}

.software-detail-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    color: #ffffff;
    background-color: #409eff;
    border-color: #409eff;
}

.btn-primary:hover {
    background-color: #66b1ff;
    border-color: #66b1ff;
}

.btn-outline {
    color: #409eff;
    background-color: transparent;
    border-color: #409eff;
}

.btn-outline:hover {
    color: #ffffff;
    background-color: #409eff;
    border-color: #409eff;
}

.software-detail-content {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eaeaea;
}

.software-detail-content h2 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    margin-top: 40px;
}

.software-detail-content h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    margin-top: 30px;
}

.software-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.software-detail-content ul,
.software-detail-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.software-detail-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 10px;
}

.software-detail-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* 教程列表页 */
.tutorial-list {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.tutorial-item {
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.tutorial-item:hover {
    background: #f9fafc;
}

.tutorial-item:last-child {
    border-bottom: none;
}

.tutorial-item .tutorial-info {
    width: 100%;
}

.tutorial-item .tutorial-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.tutorial-item .tutorial-title:hover {
    color: #409eff;
}

.tutorial-item .tutorial-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tutorial-item .tutorial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #909399;
}

/* 教程列表页样式 */
.tutorial-item-content {
    width: 100%;
}

.tutorial-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.tutorial-item-title:hover {
    color: #409eff;
}

.tutorial-item-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tutorial-item-meta {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #909399;
    margin-bottom: 10px;
}

.tutorial-item-meta span {
    margin-right: 20px;
}

.tutorial-item-link {
    color: #409eff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.tutorial-item-link:hover {
    color: #66b1ff;
}

/* 软件分类筛选样式 */
.category-filter {
    margin-bottom: 30px;
}

.category-filter h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid #dcdfe6;
    border-radius: 20px;
    background-color: #ffffff;
    color: #606266;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.filter-btn:hover {
    border-color: #409eff;
    color: #409eff;
}

.filter-btn.active {
    background-color: #409eff;
    border-color: #409eff;
    color: #ffffff;
}

/* 教程详情页 */
.tutorial-detail {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.tutorial-detail-header {
    margin-bottom: 40px;
}

.tutorial-detail-header h1 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.tutorial-detail-header .tutorial-meta {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #909399;
    margin-bottom: 30px;
}

.tutorial-detail-header .tutorial-meta .meta-item {
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.tutorial-detail-header .tutorial-meta .meta-item i {
    margin-right: 8px;
}

.tutorial-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.tutorial-detail-content h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    margin-top: 40px;
}

.tutorial-detail-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    margin-top: 30px;
}

.tutorial-detail-content p {
    margin-bottom: 20px;
}

.tutorial-detail-content ul,
.tutorial-detail-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.tutorial-detail-content li {
    margin-bottom: 10px;
}

.tutorial-detail-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* 页脚 */
.footer,
.site-footer {
    background: #ffffff;
    border-top: 1px solid #eaeaea;
    padding: 60px 0;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #409eff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
    color: #909399;
    font-size: 14px;
}

/* 回到顶部按钮 */
.back-to-top,
.back-top-link {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #409eff;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(64, 158, 255, 0.4);
    z-index: 999;
}

.back-to-top:hover,
.back-top-link:hover {
    background: #66b1ff;
    transform: translateY(-3px);
}

.back-to-top.show,
.back-top-link.show {
    opacity: 1;
}

/* 移动端菜单 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 999;
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu .menu-btn {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu .menu-close-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
    cursor: pointer;
}

.mobile-menu .menu-wrapper {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
}

.mobile-menu .menu-wrapper li {
    margin-bottom: 15px;
}

.mobile-menu .menu-wrapper li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu .menu-wrapper li a:hover {
    background: #f5f7fa;
    color: #409eff;
}

.mobile-menu .btn {
    margin-bottom: 20px;
}

.mobile-menu .menu-search {
    margin-top: 20px;
    position: relative;
}

.mobile-menu .menu-search input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: 14px;
}

.mobile-menu .menu-search input:focus {
    border-color: #409eff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.2);
}

.mobile-menu .menu-search i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #c0c4cc;
    font-size: 16px;
    cursor: pointer;
}

.mobile-menu .menu-search i:hover {
    color: #409eff;
}

/* 移动端搜索栏 */
.mobile-menu-search-bar {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-menu-search-bar.bar-show {
    display: block;
}

.mobile-menu-search-bar .search-wrapper {
    margin-bottom: 15px;
}

.mobile-menu-search-bar .search-wrapper input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: 14px;
}

.mobile-menu-search-bar .search-wrapper input:focus {
    border-color: #409eff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.2);
}

.mobile-menu-search-bar .search-btn-wrapper {
    display: flex;
    gap: 10px;
}

.mobile-menu-search-bar .search-btn {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-search-bar .search-btn.style-green {
    background: #67c23a;
    color: #ffffff;
}

.mobile-menu-search-bar .search-btn.style-green:hover {
    background: #85ce61;
}

.mobile-menu-search-bar .search-btn:not(.style-green) {
    background: #f5f7fa;
    color: #606266;
}

.mobile-menu-search-bar .search-btn:not(.style-green):hover {
    background: #e4e7ed;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .software-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .site-header .nav>li>a {
        padding: 0 15px;
    }
    
    .software-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .software-detail-header {
        flex-direction: column;
    }
    
    .software-detail-image {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .tutorial-item {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .header {
        height: 60px;
    }
    
    .header .nav,
    .site-header .nav {
        display: none;
    }
    
    .header .logo-text {
        font-size: 20px;
    }
    
    .header .search-container,
    .site-header .search-input {
        display: none;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .page-header p {
        font-size: 14px;
    }
    
    .author-section {
        padding: 20px;
    }
    
    .author-header {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .software-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .software-card .card-body {
        padding: 15px;
    }
    
    .software-card .card-title {
        font-size: 16px;
    }
    
    .software-card .card-price {
        font-size: 14px;
    }
    
    .software-detail {
        padding: 20px;
    }
    
    .software-detail-info h1 {
        font-size: 24px;
    }
    
    .software-detail-info .price {
        font-size: 20px;
    }
    
    .software-detail-info .meta-item {
        margin-right: 20px;
        margin-bottom: 10px;
    }
    
    .software-detail-actions {
        flex-direction: column;
    }
    
    .tutorial-item {
        padding: 15px;
    }
    
    .tutorial-detail {
        padding: 20px;
    }
    
    .tutorial-detail-header h1 {
        font-size: 24px;
    }
    
    .tutorial-detail-header .tutorial-meta .meta-item {
        margin-right: 20px;
        font-size: 12px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        min-width: 100%;
    }
}

/* 团队介绍样式 */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
}

.team-member-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.team-member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.team-member-info p {
    color: #606266;
    margin: 0 0 5px;
}

.breadcrumb a{
  background-color: #ffffff;
  color: #606266;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;}
/* 使命与价值观样式 */
.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission h3,
.values h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.mission p {
    color: #606266;
    line-height: 1.6;
}

.values ul {
    list-style: none;
    padding: 0;
}

.values li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #606266;
    line-height: 1.5;
}

.values li i {
    color: #67c23a;
    margin-top: 2px;
}

/* 联系我们样式 */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    min-width: 200px;
}

.contact-item i {
    font-size: 24px;
    color: #409eff;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-item p {
    color: #606266;
    margin: 0;
}

@media (max-width: 480px) {
    .software-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .software-detail-image {
        max-width: 100%;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-values {
        gap: 30px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
}



.pagination {
    display: inline-block;
    padding-left: 30%;
    margin: 20px 0;
    border-radius: 4px; }
.pagination > li {
    display: inline; }
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857;
    text-decoration: none;
    color: #337ab7;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: 10px; }
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px; }
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px; }
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eeeeee;
    border-color: #ddd; }
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7;
    cursor: default; }
    
    
    
    