@charset "utf-8";
@font-face {
    font-family: "commonfont";
    src: url('/skin/font/common.woff') format('woff'), 
         url('/skin/font/common.ttf') format('truetype');
}

.commonfont {
    font-family: "commonfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.8;
}

.allpage {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    padding: 0;
    max-width: 100%;
}

/* 轮播图 */
.banner {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #104db3 0%, #0d3a8a 100%);
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    display: flex;
    height: 100%;
}

.swiper-slide {
    flex: 0 0 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.swiper-pagination span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 20px;
    border-radius: 4px;
}

/* 板块标题 */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px 12px;
}

.section-header h2 {
    font-size: 18px;
    color: #104db3;
    font-weight: bold;
    position: relative;
    padding-left: 12px;
}

.section-header h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: linear-gradient(135deg, #104db3 0%, #0d3a8a 100%);
    border-radius: 2px;
}

.section-header .more {
    font-size: 13px;
    color: #999;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.section-header .more:hover {
    color: #104db3;
}

.section-header .more::after {
    content: '›';
    margin-left: 4px;
    font-size: 18px;
}

/* 子栏目导航 */
.sub-navi {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px 15px;
}

.sub-navi a {
    display: block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 100%);
    border-radius: 8px;
    text-align: center;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sub-navi a:hover,
.sub-navi a.active {
    background: linear-gradient(135deg, #104db3 0%, #0d3a8a 100%);
    color: #fff;
    border-color: #104db3;
    box-shadow: 0 2px 8px rgba(16, 77, 179, 0.3);
    transform: translateY(-2px);
}

/* 服务项目 - 2列网格 */
.service-section {
box-shadow: 0 2px 10px rgba(16, 77, 179, 0.08);
  background: #fff;
  margin: 15px 0px;
  border-radius: 12px;
  padding-bottom: 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 10px 15px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(16, 77, 179, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8ecf1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(16, 77, 179, 0.15);
}

.service-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card .img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 100%);
}

.service-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .img img {
    transform: scale(1.1);
}

.service-card .title {
    padding: 12px 10px;
    font-size: 14px;
    color: #333;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
    background: #fff;
}

.service-card:hover .title {
    color: #104db3;
}

/* 关于我们 */
.abouti-section {
    margin: 15px 0px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(16, 77, 179, 0.08);
    border-left: 4px solid #104db3;
}

.abouti-section .abouti-title {
    font-size: 18px;
    color: #104db3;
    font-weight: bold;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.abouti-section .abouti-title::before {
    content: '';
    margin-right: 8px;
}

.abouti-section .abouti-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-indent: 2em;
    margin-bottom: 15px;
    text-align: justify;
}

.abouti-btn {
    display:block;
    padding: 6px 25px;
    background: linear-gradient(135deg, #104db3 0%, #0d3a8a 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(16, 77, 179, 0.3);
	margin:0 auto;
	margin-left: 10%;
  margin-right: 10%;
  text-align:center;
}

.abouti-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 77, 179, 0.4);
}

/* 新闻动态 */
.newsi-section {
    margin: 15px 0px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(16, 77, 179, 0.08);
    overflow: hidden;
	padding-bottom:20px;
}

.newsi-section .section-header {
    padding: 15px 15px 12px;
}

.newsi-list {
    list-style: none;
    padding: 0 15px 15px;
}

.newsi-item {
    padding: 12px 0;
    border-bottom: 1px dashed #e0e6ed;
    transition: all 0.3s ease;
}

.newsi-item:last-child {
    border-bottom: none;
}

.newsi-item a {
    display: flex;
    text-decoration: none;
    color: inherit;
}

.newsi-item .thumb {
    width: 100px;
    height: 75px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 100%);
}

.newsi-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.newsi-item:hover .thumb img {
    transform: scale(1.1);
}

.newsi-item .info {
    flex: 1;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsi-item .newsi-title {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.newsi-item:hover .newsi-title {
    color: #104db3;
}

.newsi-item .newsi-desc {
    font-size: 12px;
    color: #999;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 快捷导航 - 4列网格 */
.quick-nav {
    background: #fff;
    padding: 15px 10px;
    margin: 15px 0px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(16, 77, 179, 0.08);
}

.quick-nav ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    list-style: none;
}

.quick-nav li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    padding: 12px 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.quick-nav li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #104db3 0%, #0d3a8a 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.quick-nav li a:hover::before {
    left: 0;
}

.quick-nav li a:hover {
    color: #fff;
    border-color: #104db3;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(16, 77, 179, 0.3);
}

.quick-nav .text {
    font-size: 13px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* 联系方式 */
.contacti-section {
    margin: 15px 0px;
    background: linear-gradient(135deg, #104db3 0%, #0d3a8a 100%);
    border-radius: 12px;
    padding: 25px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contacti-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.contacti-section h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
}

.contacti-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    position: relative;
}

.contacti-item:last-child {
    margin-bottom: 0;
}

.contacti-item .icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    font-size: 16px;
}

.contacti-item .text {
    flex: 1;
}

.contacti-item a {
    color: #fff;
    text-decoration: none;
}

.contacti-item a:hover {
    text-decoration: underline;
}

/* 响应式设计 */
@media screen and (max-width: 480px) {
    .banner {
        height: 180px;
    }
    
    
    .service-card .title {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .newsi-item .thumb {
        width: 90px;
        height: 68px;
    }
}

@media screen and (max-width: 360px) {
    .banner {
        height: 160px;
    }
    
    
    .quick-nav li a {
        padding: 10px 6px;
    }
    
    .quick-nav .text {
        font-size: 12px;
    }
}
/*top*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #104db3 0%, #0d3a8a 100%);
    box-shadow: 0 2px 10px rgba(16, 77, 179, 0.2);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(16, 77, 179, 0.3);
}

.head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    height: 55px;
    position: relative;
}

.home-btn {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.home-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.top-title {
    flex: 1;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 10px;
}

.class-btn,
.nav-btn {
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.class-btn:hover,
.nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.type {
    display: none;
    background: linear-gradient(to bottom, #f8fafc 0%, #fff 100%);
    padding: 20px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideDown 0.3s ease;
}

.type.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.type h1 {
    font-size: 15px;
    color: #104db3;
    margin: 0 0 12px 0;
    font-weight: bold;
    padding-left: 10px;
    border-left: 3px solid #104db3;
}

.common-pro-search {
    margin-bottom: 15px;
}

.common-pro-search form {
    display: flex;
    gap: 8px;
}

.common-text {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e0e6ed;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
}

.common-text:focus {
    border-color: #104db3;
    box-shadow: 0 0 0 3px rgba(16, 77, 179, 0.1);
}

.common-text::placeholder {
    color: #999;
}

.common-submit {
    padding: 10px 20px;
    background: linear-gradient(135deg, #104db3 0%, #0d3a8a 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(16, 77, 179, 0.3);
}

.common-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 77, 179, 0.4);
}

.common-submit:active {
    transform: translateY(0);
}

.type ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.type ul li {
    margin-bottom: 8px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.type ul li:last-child {
    margin-bottom: 0;
}

.type ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.type ul li a:hover {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 100%);
    border-color: #104db3;
    color: #104db3;
    transform: translateX(5px);
}

.type ul li a.active {
    background: linear-gradient(135deg, #104db3 0%, #0d3a8a 100%);
    color: #fff;
    border-color: #104db3;
    box-shadow: 0 2px 8px rgba(16, 77, 179, 0.3);
}

.class-down {
    font-size: 14px;
    color: #999;
    transition: transform 0.3s ease;
}

.type ul li a:hover .class-down {
    color: #104db3;
    transform: rotate(180deg);
}

.type ul li a.active .class-down {
    color: #fff;
}

.nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.nav.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.nav > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    max-width: 80%;
    background: linear-gradient(to bottom, #fff 0%, #f8fafc 100%);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.nav > ul li {
    border-bottom: 1px solid #e8ecf1;
}

.nav > ul li:last-child {
    border-bottom: none;
}

.nav > ul li a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav > ul li a .iconfont {
    margin-right: 12px;
    font-size: 20px;
    color: #104db3;
}

.nav > ul li a:hover {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 100%);
    color: #104db3;
    padding-left: 25px;
}

.nav > ul li a.active {
    background: linear-gradient(135deg, #104db3 0%, #0d3a8a 100%);
    color: #fff;
}

.nav > ul li a.active .iconfont {
    color: #fff;
}

.black-fixed {
    display: none;
}

/* 页面内容添加顶部间距，防止被固定头部遮挡 */
.allpage {
    padding-top: 55px;
}

@media screen and (max-width: 480px) {
    .head {
        padding: 10px 12px;
        height: 50px;
    }
    
    .home-btn,
    .class-btn,
    .nav-btn {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
    
    .top-title {
        font-size: 14px;
    }
    
    .type {
        padding: 15px 12px;
    }
    
    .type h1 {
        font-size: 14px;
    }
    
    .common-text {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .common-submit {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .type ul li a {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .nav > ul {
        width: 260px;
    }
    
    .nav > ul li a {
        padding: 13px 18px;
        font-size: 15px;
    }
    
    .allpage {
        padding-top: 50px;
    }
}

@media screen and (max-width: 360px) {
    .allpage {
        padding-top: 48px;
    }
}
/*new*/
/* 页面标题区 */
.page-header {
    background: linear-gradient(135deg, #104db3 0%, #0d3a8a 100%);
    padding: 20px 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(16, 77, 179, 0.3);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.page-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* 新闻列表 */
.news-list {
    list-style: none;
    margin-bottom: 20px;
}

.news-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(16, 77, 179, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8ecf1;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(16, 77, 179, 0.15);
}

.news-item a {
    display: flex;
    text-decoration: none;
    color: inherit;
}

.news-thumb {
    width: 120px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 100%);
	margin-top: 15px;
  margin-left: 10px;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-item:hover .news-thumb img {
    transform: scale(1.1);
}

.news-info {
    flex: 1;
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-title {
    font-size: 15px;
    color: #333;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.news-item:hover .news-title {
    color: #104db3;
}

.news-desc {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: #bbb;
}

.news-date {
    display: flex;
    align-items: center;
}

/*.news-date::before {
    content: '📅';
    margin-right: 4px;
    font-size: 12px;
}*/

.news-arrow {
    color: #104db3;
    font-size: 16px;
    opacity: 0;
    transition: all 0.3s ease;
}

.news-item:hover .news-arrow {
    opacity: 1;
    transform: translateX(3px);
}
/* 响应式设计 */
@media screen and (max-width: 480px) {
    .content {
        padding: 12px 8px;
    }
    
    .page-header {
        padding: 18px 12px;
    }
    
    .page-header h1 {
        font-size: 20px;
    }
    
    .news-thumb {
        width: 110px;
        height: 90px;
    }
    
    .news-info {
        padding: 10px 12px;
    }
    
    .news-title {
        font-size: 14px;
    }
}

@media screen and (max-width: 360px) {
    .news-thumb {
        width: 100px;
        height: 80px;
    }
    
    .news-title {
        font-size: 13px;
    }
}
/*ndel*/
/* 文章容器 */
.article-container {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(16, 77, 179, 0.08);
    border: 1px solid #e8ecf1;
}

/* 面包屑导航 */
.breadcrumb {
    font-size: 12px;
    color: #999;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e0e6ed;
}

.breadcrumb a {
    color: #104db3;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 文章标题 */
.article-title {
    font-size: 22px;
    color: #104db3;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 2px;
    text-align: center;
    letter-spacing: 0.5px;
}

/* 文章元信息 */
.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #e8ecf1;
    font-size: 13px;
    color: #999;
}

.article-meta span {
    display: flex;
    align-items: center;
}

.article-meta .date::before {
    content: '';
    margin-right: 5px;
}

.article-meta .views::before {
    content: '👁';
    margin-right: 5px;
}

.article-meta .author::before {
    content: '️';
    margin-right: 5px;
}

/* 文章内容 */
.article-content {
    font-size: 15px;
    line-height: 2;
    color: #444;
    text-align: justify;
    padding: 20px 0;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.article-content h1, 
.article-content h2, 
.article-content h3 {
    color: #104db3;
    margin: 25px 0 15px;
    font-weight: bold;
    line-height: 1.5;
}

.article-content h1 {
    font-size: 22px;
    border-left: 4px solid #104db3;
    padding-left: 15px;
}

.article-content h2 {
    font-size: 20px;
    border-left: 3px solid #104db3;
    padding-left: 12px;
}

.article-content h3 {
    font-size: 18px;
    border-left: 2px solid #104db3;
    padding-left: 10px;
}

.article-content p {
    margin-bottom: 5px;
    text-indent: 2em;
}

.article-content ul, 
.article-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 8px;
    line-height: 1.8;
}

.article-content strong {
    color: #104db3;
    font-weight: bold;
}

.article-content a {
    color: #104db3;
    text-decoration: none;
    border-bottom: 1px dashed #104db3;
}

.article-content a:hover {
    color: #0d3a8a;
    border-bottom-color: #0d3a8a;
}

/* 上下篇导航 */
.article-nav {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 100%);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    border-left: 3px solid #104db3;
}

.nav-item {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.nav-item:last-child {
    margin-bottom: 0;
}

.nav-item .label {
    color: #104db3;
    font-weight: bold;
    margin-right: 8px;
}

.nav-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-item a:hover {
    color: #104db3;
}

/* 推荐阅读 */
.recommend-section {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(16, 77, 179, 0.08);
    border: 1px solid #e8ecf1;
}

.recommend-title {
    font-size: 18px;
    color: #104db3;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8ecf1;
    position: relative;
}

.recommend-title::before {
    content: '';
    margin-right: 8px;
}

.recommend-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #104db3, transparent);
}

.recommend-list {
    list-style: none;
}

.recommend-item {
    padding: 12px 0;
    border-bottom: 1px dashed #e0e6ed;
    transition: all 0.3s ease;
}


.recommend-item:last-child {
    border-bottom: none;
}

.recommend-item:hover {
    padding-left: 8px;
}

.recommend-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.recommend-item a:hover {
    color: #104db3;
}

.recommend-item .index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #104db3 0%, #0d3a8a 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    margin-right: 10px;
    flex-shrink: 0;
    font-weight: bold;
}

.recommend-item:nth-child(1) .index {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

.recommend-item:nth-child(2) .index {
    background: linear-gradient(135deg, #ffa502 0%, #ff9500 100%);
}

.recommend-item:nth-child(3) .index {
    background: linear-gradient(135deg, #104db3 0%, #0d3a8a 100%);
}

.recommend-item .text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recommend-item .arrow {
    color: #104db3;
    font-size: 16px;
    opacity: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 8px;
}

.recommend-item:hover .arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* 返回按钮 */
.back-button {
    display: block;
    width: 100%;
    padding: 10px 0px;
    background: linear-gradient(135deg, #104db3 0%, #0d3a8a 100%);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 77, 179, 0.3);
    margin-top: 15px;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 77, 179, 0.4);
}

.back-button:active {
    transform: translateY(0);
}

/* 响应式设计 */
@media screen and (max-width: 480px) {
    
    .article-container {
        padding: 20px 15px;
    }
    
    .article-title {
        font-size: 20px;
    }
    
    
    .article-meta {
        gap: 15px;
        font-size: 12px;
    }
    
    .recommend-section {
        padding: 18px;
    }
    
    .recommend-title {
        font-size: 16px;
    }
    
    .recommend-item a {
        font-size: 13px;
    }
}

@media screen and (max-width: 360px) {
    .article-title {
        font-size: 18px;
    }
    
    .article-content {
        font-size: 14px;
    }
    
    .article-content h1 {
        font-size: 20px;
    }
    
    .article-content h2 {
        font-size: 18px;
    }
    
    .article-content h3 {
        font-size: 16px;
    }
}
/*cp*/
/* 产品分类导航 */
.product-category {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(16, 77, 179, 0.08);
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.category-list li {
    flex: 1;
    min-width: calc(33.333% - 8px);
}

.category-list li a {
    display: block;
    padding: 10px 8px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 100%);
    border-radius: 8px;
    text-align: center;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-list li a:hover,
.category-list li a.active {
    background: linear-gradient(135deg, #104db3 0%, #0d3a8a 100%);
    color: #fff;
    border-color: #104db3;
    box-shadow: 0 2px 8px rgba(16, 77, 179, 0.3);
}

/* 产品网格 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
	box-shadow: 0 2px 10px rgba(16, 77, 179, 0.08);
  padding: 20px 15px 12px;
  background-color: #fff;
  border-radius: 12px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(16, 77, 179, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8ecf1;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(16, 77, 179, 0.15);
}

.product-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 100%);
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-title {
    padding: 12px 10px;
    font-size: 14px;
    color: #333;
    text-align: center;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.3s ease;
    background: #fff;
}

.product-card:hover .product-title {
    color: #104db3;
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 20px 10px;
    margin-top: 10px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border: 1px solid #e0e6ed;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #fff;
    font-size: 13px;
    line-height: 1;
	margin-right: 3px;
  margin-bottom: 5px;
}

.pagination a:hover {
    background: #104db3;
    color: #fff;
    border-color: #104db3;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(16, 77, 179, 0.25);
}

.pagination .fcur {
    background: linear-gradient(135deg, #104db3 0%, #0d3a8a 100%);
    color: #fff;
    border-color: #104db3;
    box-shadow: 0 2px 6px rgba(16, 77, 179, 0.3);
    font-weight: bold;
}

/* 响应式设计 */
@media screen and (max-width: 480px) {
    
    .product-grid {
        gap: 10px;
    }
    
    .product-title {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .category-list li {
        min-width: calc(33.333% - 8px);
    }
    
    .category-list li a {
        padding: 8px 6px;
        font-size: 12px;
    }
	.pagination {
        gap: 5px;
        padding: 15px 5px;
    }
    
    .pagination a,
    .pagination span {
        min-width: 28px;
        height: 28px;
        padding: 0 6px;
        font-size: 12px;
    }
}

@media screen and (max-width: 360px) {
    .product-img {
        height: 120px;
    }
    
    .product-title {
        font-size: 12px;
        padding: 8px 6px;
    }
	.pagination a,
    .pagination span {
        min-width: 26px;
        height: 26px;
        padding: 0 5px;
        font-size: 11px;
    }
}
.about-container {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 2px 12px rgba(16, 77, 179, 0.08);
    margin-bottom: 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8ecf1;
}

.about-title {
    font-size: 22px;
    color: #104db3;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.about-subtitle {
    font-size: 14px;
    color: #666;
    letter-spacing: 0.5px;
}

.about-content {
    font-size: 15px;
    line-height: 2;
    color: #444;
    text-align: justify;
	margin-top:5px;
	box-shadow: 0 2px 10px rgba(16, 77, 179, 0.08);
  padding: 20px 15px 12px;
  background-color: #fff;
  border-radius: 12px;
}

.about-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-content h1, 
.about-content h2, 
.about-content h3 {
    color: #104db3;
    margin: 20px 0 12px;
    font-weight: bold;
    line-height: 1.5;
}

.about-content h1 {
    font-size: 20px;
    border-left: 3px solid #104db3;
    padding-left: 12px;
}

.about-content h2 {
    font-size: 18px;
    border-left: 2px solid #104db3;
    padding-left: 10px;
}

.about-content h3 {
    font-size: 16px;
    border-left: 2px solid #104db3;
    padding-left: 8px;
}

.about-content p {
    margin-bottom: 12px;
    text-indent: 2em;
}

.about-content ul, 
.about-content ol {
    margin: 12px 0;
    padding-left: 25px;
}

.about-content li {
    margin-bottom: 8px;
    line-height: 1.8;
}

.about-content strong {
    color: #104db3;
    font-weight: bold;
}

.about-content a {
    color: #104db3;
    text-decoration: none;
    border-bottom: 1px dashed #104db3;
}

.about-content a:hover {
    color: #0d3a8a;
    border-bottom-color: #0d3a8a;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #e8ecf1;
}

.feature-item {
    text-align: center;
    padding: 15px 10px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(16, 77, 179, 0.15);
}

.feature-icon {
    font-size: 32px;
    color: #104db3;
    margin-bottom: 8px;
}

.feature-text {
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

@media screen and (max-width: 480px) {
  
    .about-container {
        padding: 20px 15px;
    }
    
    .about-title {
        font-size: 20px;
    }
}
/* 表单容器 */
.form-container {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 2px 10px rgba(16, 77, 179, 0.08);
    border: 1px solid #e8ecf1;
    margin-bottom: 15px;
}

/* 表单标题 */
.form-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8ecf1;
}

.form-header h2 {
    font-size: 22px;
    color: #104db3;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.form-header p {
    font-size: 14px;
    color: #666;
}

/* 表单组 */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
    padding-left: 2px;
}

.form-group label .required {
    color: #ff4d4f;
    margin-left: 3px;
}

/* 输入框 */
.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e6ed;
    border-radius: 10px;
    font-size: 14px;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    color: #333;
    background: #f8fafc;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: #104db3;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(16, 77, 179, 0.1);
}

.form-input::placeholder {
    color: #999;
}

/* 文本域 */
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e6ed;
    border-radius: 10px;
    font-size: 14px;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    color: #333;
    background: #f8fafc;
    transition: all 0.3s ease;
    outline: none;
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-textarea:focus {
    border-color: #104db3;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(16, 77, 179, 0.1);
}

.form-textarea::placeholder {
    color: #999;
}

/* 输入框图标装饰 */
.input-wrapper {
    position: relative;
}

.input-wrapper .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #999;
    transition: color 0.3s ease;
}

.input-wrapper .form-input {
    padding-left: 45px;
}

.input-wrapper:focus-within .icon {
    color: #104db3;
}

/* 提交按钮 */
.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #104db3 0%, #0d3a8a 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 77, 179, 0.3);
    margin-top: 20px;
    letter-spacing: 2px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 77, 179, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(16, 77, 179, 0.3);
}

/* 表单提示 */
.form-tips {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 100%);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    border-left: 3px solid #104db3;
}

.form-tips p {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

.form-tips strong {
    color: #104db3;
}

/* 联系方式卡片 */
.contactm-card {
    background: linear-gradient(135deg, #104db3 0%, #0d3a8a 100%);
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    margin-bottom: 15px;
}

.contactm-card h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
}

.contactm-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.contactm-item:last-child {
    margin-bottom: 0;
}

.contactm-item .icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
    font-size: 14px;
}

.contactm-item a {
    color: #fff;
    text-decoration: none;
}

.contactm-item a:hover {
    text-decoration: underline;
}

/* 响应式设计 */
@media screen and (max-width: 480px) {
    .content {
        padding: 12px 8px;
    }
    
    .form-container {
        padding: 20px 15px;
    }
    
    .form-header h2 {
        font-size: 20px;
    }
    
    .form-input,
    .form-textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .input-wrapper .form-input {
        padding-left: 40px;
    }
    
    .input-wrapper .icon {
        left: 12px;
        font-size: 16px;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 15px;
    }
}

@media screen and (max-width: 360px) {
    .form-header h2 {
        font-size: 18px;
    }
    
    .form-input,
    .form-textarea {
        padding: 10px;
        font-size: 12px;
    }
}
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.foot {
    background: #231F1D;
}

#foot > .foot-relative {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 56px;
    padding: 0;
}

#foot > .foot-relative > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    flex: 0 0 25%;
    height: 100%;
    padding: 6px 0;
}

#foot > .foot-relative > a .commonfont {
    font-size: 22px;
    color: #fff;
    margin-bottom: 4px;
    display: block;
    line-height: 1;
}

#foot > .foot-relative > a h3 {
    font-size: 14px;
    color: #fff;
    margin: 0;
    padding: 0;
    font-weight: normal;
    white-space: nowrap;
    line-height: 1.2;
    text-align: center;
}
.copyright-bar {
    padding: 15px 10px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
	margin-bottom: 50px;
}

.copyright-bar p {
    margin: 5px 0;
    font-size: 12px;
    color: #999;
    line-height: 1.8;
}

.copyright-bar a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-bar a:hover {
    color: #104db3;
}
@media screen and (max-width: 480px) {
    #foot > .foot-relative > a .commonfont {
        font-size: 20px;
        margin-bottom: 3px;
    }
    .copyright-bar {
        padding: 12px 8px;
    }
}