/* ���㡯�����㡧�����㡤�����㡯���㡯������ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", Arial, sans-serif;
}
a {
    text-decoration: none;
    color: #333;
}
ul {
    list-style: none;
}
img {
    vertical-align: middle;
    border: none;
}
body {
    background-color: #f5f7fa;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

/* �����㡯�㡧�����㡤�����㡯���㡯�����㡯�����㡯�㡭�����㡯������ */
.container {
    width: 1200px;
    margin: 0 auto;
}

/* �������㡯���㡧�����㡯�����㡯���㡤������ - �����㡧���㡰���㡯�����㡯������ */
header {
  background: linear-gradient(135deg, #1a365d, #2c5282);
  padding: 1.2rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo img {
  height: 60px;
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
}

/* �����㡯�����㡯�����㡰�����㡯���㡤������ - �����㡯�����㡯�����㡯������+�����㡧���㡰���㡯�㡭�㡯���� */
header nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}
.logo  h1{
	color: #fff;
}
header nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 0.6rem 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

header nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ed8936;
  transition: width 0.4s ease;
}

header nav ul li a.active {
  color: #ed8936;
}

header nav ul li a.active::after {
  width: 100%;
}

header nav ul li a:hover {
  color: #fbd38d;
}

header nav ul li a:hover::after {
  width: 100%;
}


/* banner�����㡤������ */
.banner img {
    width: 100%;
    height: auto;
}




/* �����㡯�����㡯���㡰�������㡯���㡤������ */
.about-us {
    /* padding: 50px 0; */
    /* background-color: #f9f9f9; */
    text-align: left;
    /* margin-right: 10%; */
    width: 60%;
}
.about-us h2 {
    /* text-align: center; */
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}
.about-us p {
    /* width: 80%; */
    margin: 0 auto;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    /* text-align: center; */
}

/* �������㡯�����㡯�㡰�㡯���㡯���㡤������ */
.contact {
    /* padding: 50px 0; */
    /* background-color: #fff; */
}
.contact h2 {
    text-align: left;
    font-size: 24px;
    color: #333;
    /* margin-bottom: 20px; */
    font-weight: 600;
}
.contact-info {
    text-align: left;
    font-size: 16px;
    margin-right: 50px;
}
.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

/* �����㡯���㡧�����㡤������ */
footer {
    background-color: #264976;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

/* �����㡯���㡯�����㡰�����㡯�����㡯���㡤������ */
.breadcrumbs {
    padding: 15px 0;
    background-color: #f5f7fa;
    border-bottom: 1px solid #eee;
}
.breadcrumbs a {
    color: #666;
    margin: 0 5px;
}
.breadcrumbs a.active {
    color: #ff7400;
    font-weight: 500;
}

/* �����㡯�����㡯�����㡯�����㡯���㡤������ */
.column-intro {
    padding: 30px;
    background-color: #fff;
    margin-bottom: 30px;
}
.column-intro h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #1a73e8;
    border-left: 4px solid #ff7400;
    background: #fbd38d54;
    display: table;
}
.column-intro p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* �����㡯�����㡧�����㡯���㡯���㡤������ */
.list-content {
    /* background-color: #fff; */
    /* padding: 30px; */
    border-radius: 8px;
    margin-bottom: 30px;
}
.list-item {
    border-bottom: 1px solid #eee;
    padding: 20px;
    margin: 20px 0;
    background: #fff;
}
.list-item:last-child {
    border-bottom: none;
}
.list-item a {
    display: flex;
    align-items: center;
}
.list-item img {
    width: 300px;
    height: 200px;
    border-radius: 8px;
    margin-right: 20px;
}
.list-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    transition: all 0.3s ease;
}
.list-item h3:hover {
    color: #ff7400;
}
.list-item p {
    color: #666;
    margin-bottom: 10px;
    flex: 1;
}
.list-item .time {
    color: #999;
    font-size: 13px;
}

/* �����㡯���㡯���㡤������ */
.pagination {
    text-align: center;
    margin-bottom: 50px;
}
.pagination a {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    margin: 0 5px;
    transition: all 0.3s ease;
}
.pagination a:hover, .pagination a.active {
    background-color: #ed8936;
    color: #fff;
    border-color: #ed8936;
}
.pagination a.prev, .pagination a.next {
    border-color: #ed8936;
    color: #ed8936;
}
.pagination a.prev:hover, .pagination a.next:hover {
    background-color: #ed8936;
    color: #fff;
}

/* �����㡯���㡯���㡯���㡯���㡤������ */
.detail-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}
.detail-content h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}
.detail-info {
    text-align: center;
    color: #999;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.detail-info .time, .detail-info .author {
    margin: 0 15px;
}
.detail-body {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
}
.detail-body p {
    margin-bottom: 20px;
}
.detail-body h3 {
    font-size: 18px;
    color: #333;
    margin: 30px 0 15px;
    padding-left: 10px;
    border-left: 4px solid #ff7400;
    background: #fbd38d54;
    display: table;
}
.detail-body img {
    width: 500px;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* �������㡯���㡯���㡧�������㡯���㡤������ */
.related-recommend {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}
.related-recommend h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 4px solid #1a73e8;
    border-left: 4px solid #ff7400;
    background: #fbd38d54;
    display: table;
}
.recommend-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.recommend-item {
    font-size: 15px;
    color: #666;
    transition: all 0.3s ease;
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
}
.recommend-item:last-child {
    border-bottom: none;
}
.recommend-item:hover {
    color: #1a73e8;
    padding-left: 10px;
}

/* ���㡭���㡯���㡯���㡯�㡭�����㡯���㡯�������㡯���㡧�������㡯������ */
@media (max-width: 1200px) {
    .container {
        width: 90%;
    }
    .service-item {
        width: 48%;
    }
}
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    nav ul {
        margin-top: 15px;
    }
    nav ul li {
        margin-left: 15px;
        margin-right: 15px;
    }
    .service-item {
        width: 100%;
    }
    .list-item a {
        flex-direction: column;
        text-align: center;
    }
    .list-item img {
        margin-right: 0;
        margin-bottom: 15px;
    }
}


/* �����㡭�����㡯�����㡯�㡰���㡰���㡯�����㡯�����㡯�������㡯�㡰�㡯�����㡯�����㡯�������㡯���㡯���㡯���㡤������ */
.latest-articles {
    padding: 50px 0;
    background-color: #fff;
}

.articles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.article-column {
    width: 23%;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}
.article-column:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.column-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
}
.column-header img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.column-header h3 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}
.article-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}
.article-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.article-list li a {
    color: #666;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
    margin-right: 10px;
}
.article-list li a:hover {
    color: #1a73e8;
    text-decoration: underline;
}
.article-time {
    color: #999;
    font-size: 12px;
    white-space: nowrap;
}
.column-more {
    display: inline-block;
    color: #1a73e8;
    font-size: 14px;
    transition: all 0.3s ease;
}
.column-more:hover {
    color: #0d5bcd;
    text-decoration: underline;
}

/* ���㡭���㡯���㡯���㡯�㡭�����㡯���㡯�����㡯���㡯�㡰���㡯���㡯���㡯�㡭�����㡯���㡯������ */
@media (max-width: 1200px) {
    .article-column {
        width: 48%;
    }
}
@media (max-width: 768px) {
    .article-column {
        width: 100%;
    }
    /* .article-list li {
        flex-direction: column;
    } */
    .article-time {
        margin-top: 5px;
        white-space: normal;
    }
}


/* ���㡰�㡯���㡯�����㡯���㡯�����㡯�������㡯���㡯���㡯���㡤������ */
.cover-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}
.cover-card {
    width: 23%;
    /* background-color: #fff; */
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
    transition: all 0.3s ease;
}
.cover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.cover-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.cover-card h3 {
    font-size: 16px;
    color: #333;
    padding: 15px 10px;
    text-align: center;
    line-height: 1.5;
}
.cover-card p {
    text-align: center;
    color: #666;
    font-size: 14px;
    padding: 0 10px 15px;
}
.cover-card .cover-btn {
    display: block;
    text-align: center;
    padding: 8px 0;
    background-color: #f5f5f5;
    color: #ff7400;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 16px;
}
.cover-card .cover-btn:hover {
    background-color: #2b507f;
    color: #fff;
}
.all-cover {
    text-align: center;
}
.all-cover .all-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #2b507f;
    color: #2b507f;
    border-radius: 16px;
    font-size: 16px;
    transition: all 0.3s ease;
}
.all-cover .all-btn:hover {
    background-color: #2b507f;
    color: #fff;
}

/* ���㡭���㡯���㡯���㡯�㡭������ */
@media (max-width: 1200px) {
    .cover-card {
        width: 48%;
    }
}
@media (max-width: 768px) {
    .cover-card {
        width: 45%;
    }
}





/* �����㡭�����㡯�����㡯�㡰���㡰���㡯�����㡯�����㡯�������㡯�㡰�㡯�����㡯�����㡯�������㡯���㡯���㡯���㡤�����㡯����6�����㡯�����㡯�����㡭�㡯���㡰���������㡯���㡯�����㡯�����㡯�������衯�����㡯���㡭3�������㡯���㡯���㡯���㡯���㡯�����㡯���㡯����+�����㡯���㡭�㡯���㡯���㡯���㡯������+�����㡯���㡯���㡰�㡯�����㡯������ */
.latest-articles {
    padding: 50px 0;
    background-color: #2b507f;
}
.latest-articles h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 50px;
    position: relative;
    font-weight: 700;
}
.latest-articles h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ed8936, #ed8936);
    margin: 15px auto 0;
    border-radius: 2px;
}
.articles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px; /* �����㡯�����㡯���㡯���㡤�㡯���㡯�����㡯�����㡯�����㡯�����㡯�������衯�����㡯�㡯���㡯������3�������㡯���㡯���������㡯�� */
}
.article-column {
    width: 31.5%; /* �������㡯���㡯���㡯���㡯���㡯���㡯�����㡯���㡯���㡯����3�������㡯���㡯�����㡯���㡯���㡯���㡯���㡯���㡯�����㡯���㡯�����㡯�����㡯�������衯�����㡯���㡯���㡯���㡯�㡭������PC�������� */
    background-color: #f9f9f9;
    padding: 22px;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    min-height: 300px; /* ���㡭�����㡯���㡯���㡯���㡯���㡯���㡯�����㡯�������㡯���㡯���㡯���㡯���㡭�㡯���㡯�����㡯���㡯������ */
    text-align: center;
}
.article-column:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.column-header {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 12px;
    justify-content: center;
}
.column-header img {
    width: 42px;
    height: 42px;
    margin-right: 12px;
}
.column-header h3 {
    font-size: 19px;
    color: #333;
    font-weight: 600;
}
.article-list {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 22px;
}
.article-list li {
    margin-bottom: 14px;
    line-height: 1.7;
    display: flex; /* �����㡯���㡭�㡯�����㡯���㡯���㡯���㡯������ */
    justify-content: space-between;
    align-items: center;
    white-space: nowrap; /* �������㡯���㡯���㡯������ */
}
.article-list li a {
    color: #666;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    width: calc(100% - 80px); /* �����㡯���㡯���㡯���㡭�����㡯�����㡯���㡯���㡯���㡯���㡯���㡯���� */
    white-space: nowrap; /* �������㡯���㡯���㡯���㡭�㡯���㡯������ */
    overflow: hidden; /* �����㡯�����㡯���㡯���㡯���㡯���� */
    text-overflow: ellipsis; /* �����㡯���㡯���㡯���㡯�����㡧�����㡰�㡯�����㡯���㡤�������㡯���� */
	text-align: left;
}
.article-list li a:hover {
    color: #1a73e8;
    text-decoration: underline;
}
.article-time {
    color: #999;
    font-size: 13px;
    white-space: nowrap;
    width: 70px; /* �����㡯���㡯���㡯���㡯���㡯���㡯���㡯�����㡯�����㡯�����㡯�������㡯���㡯���� */
    text-align: right;
}
.column-more {
    display: block;
    color: #1a73e8;
    font-size: 15px;
    transition: all 0.3s ease;
    text-align: revert;
    display: inline-block;
    padding: 8px 16px;
    background: #ff7400;
    color: #ffffff;
    font-size: 14px;
    border-radius: 16px;
    text-decoration: none;
    transition: background 0.3s ease;
}
.column-more:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ���㡭���㡯���㡯���㡯�㡭�����㡯���㡯�����㡯���㡯�����㡯�����㡯�������衯������3�������㡯���㡯���㡯���㡯���������㡯�����㡯�����㡯���㡯�����㡯���㡧���������㡯���� */
@media (max-width: 1200px) {
    .article-column {
        width: 48%; /* �������㡯�������㡯�����㡯���㡯�������㡯���㡯�����㡯�������衯�����㡯���㡭2�������㡯���㡯���㡯���㡯���㡯������ */
        margin-bottom: 25px;
    }
    .article-list li a {
        width: calc(100% - 70px); /* �������㡯�������㡯�����㡯���㡯�������㡯���㡯���㡯���㡭�㡯���㡯���� */
    }
}
@media (max-width: 768px) {
    .article-column {
        width: 100%; /* �������㡯�����㡯���㡯���㡯������1�������㡯���㡯�㡭�����㡯�������㡯���㡧�������㡯���㡯�����㡯�����㡯���㡯�������㡯�����㡭�㡯���� */
    }
    .article-list li a {
        width: calc(100% - 70px); /* ���������㡯���㡧�������㡯�������㡯���㡯���㡯���㡭�㡯���㡯���� */
    }
}

/* ���㡰�㡯���㡯���㡯�����㡧�����㡯���㡤������ */
.breadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: #666;
    background: #f5f7fa;
    border: 1px solid  #eee;
}
.breadcrumb a {
    color: #666;
}
.breadcrumb a:hover {
    color: #1a73e8;
}

.journal-list-page {
    padding: 40px 0;
    background: #f5f7fa;
}
.journal-list-page h1 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #333;
    border-left: 4px solid #1a73e8;
    padding-left: 12px;
    border-left: 4px solid #ff7400;
    background: #fbd38d54;
    display: table;
}

/* �������㡯���㡯���� */
.journal-filter {
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.filter-item span {
    color: #333;
    font-weight: 500;
}
.filter-item a {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
}
.filter-item a.active,
.filter-item a:hover {
    background: #ff7400;
    color: #fff;
}

/* ���㡰�㡯���㡯���㡯�������� */
.journal-card-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.journal-card {
    display: flex;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}
.journal-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.journal-card-list .journal-cover {
    /* width: 180px; */
    background: #f5f5f5;
	padding: 0;
}
.cover-card {
	display: block;
	text-align: center;
	padding-top: 30px;
}
.journal-cover img {
    width: 160px;
    height: 230px;
    object-fit: cover;
}
.journal-info {
    flex: 1;
    padding: 20px 25px;
    position: relative;
}
.journal-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
}
.journal-info h3 a {
    color: #333;
}
.journal-info h3 a:hover {
    color: #1a73e8;
}
.journal-level {
    color: #ff7400;
    font-weight: 500;
    margin-bottom: 10px;
}
.journal-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}
.journal-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}
.journal-tags span {
    background: #fbd38d30;
    color: #ff7400;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
}
.journal-btn {
    padding: 7px 16px;
    background: #2b5080;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    display: inline-block;
}
.journal-btn:hover {
    background: #0d5bcd;
}

/* �����㡯���� */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.pagination a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 4px;
    color: #666;
}
.pagination a.active,
.pagination a:hover {
    background: #ed8936;
    color: #fff;
    border-color: #ed8936;
}
.pagination .prev,
.pagination .next {
    width: auto;
    padding: 0 12px;
}

/* ���㡭���㡯���㡯���� */
@media (max-width: 768px) {
    .journal-card {
        flex-direction: column;
    }
    .journal-cover {
        width: 100%;
        height: 100%;
    }
    .journal-filter {
        gap: 10px;
    }
}

/* ���㡰�㡯���㡯�����㡯���㡯���㡯���㡤������ */
.journal-detail {
    padding: 40px 0;
    /* background: #fff; */
}
.detail-main {
    display: flex;
    gap: 30px;
}
.detail-left {
    width: 280px;
}
.detail-right {
    flex: 1;
}

/* �������㡯���� */
.detail-cover {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.detail-cover img {
    width: 100%;
    display: block;
}

/* ���������졯�����㡯�����㡯���� */
.detail-side-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}
.detail-side-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
}
.detail-side-box ul {
    list-style: none;
    padding: 0;
}
.detail-side-box li {
    padding: 8px 0;
    font-size: 14px;
    color: #333;
    border-bottom: 1px dotted #eee;
}

/* �����㡯�������졯���㡯���� */
.detail-right h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}
.detail-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}
.detail-meta span {
    background: #ff7400;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 14px;
}

/* �����㡯���㡯���� */
.detail-content h2 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: #333;
    border-left: 3px solid #1a73e8;
    padding-left: 10px;
    border-left: 4px solid #ff7400;
    background: #fbd38d54;
    display: table;
}
.detail-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}
.detail-content ul {
    padding-left: 20px;
    color: #666;
    line-height: 1.8;
}

/* �������㡧�������㡯�����㡯������ */
.detail-consult {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}
.consult-btn {
    padding: 12px 30px;
    background: #2b507f;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
}
.consult-btn:hover {
    background: #0d5bcd;
}
.back-btn {
    padding: 12px 30px;
    border: 1px solid #2b507f;
    color: #2b507f;
    border-radius: 4px;
    font-size: 16px;
}
.back-btn:hover {
    background: #2b507f;
    color: #fff;
}

/* ���㡭���㡯���㡯���� */
@media (max-width: 992px) {
    .detail-main {
        flex-direction: column;
    }
    .detail-left {
        width: 100%;
    }
}

/* ========== �����㡯�����㡯���㡰�������㡯���㡯���㡯�����㡭�㡯�����㡯���㡤������ �������㡯���㡧�����㡯���㡯���㡯���㡯���㡧�������㡯���� ========== */
/* �����㡯���㡯�㡯�����㡧banner�����㡤������ �������㡯���㡯���㡧�����㡯���㡯���㡯�����㡯���㡧 */
.page-banner {
        padding: 60px 0;
        background: url(../images/aboutbj.jpg) top center #2b5180;
        color: #fff;
        text-align: center;
}
.page-banner h1 {
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 600;
}
.page-banner p {
    font-size: 16px;
    opacity: 0.92;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ���㡭���㡯�������㡯�����㡯�����㡯�㡧�㡯���� */
.about-intro {
    padding: 50px 0;
    background-color: #fff;
}
.about-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.about-text {
    flex: 1;
    min-width: 300px;
}
.about-text h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    border-left: 4px solid #ff7400;
    padding-left: 12px;
    display: inline-block;
}
.about-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}
.about-text strong {
    color: #1a73e8;
    font-weight: 600;
}
.about-img {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.about-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* �����㡧�����㡯�����㡯���㡯���㡯���㡯���㡯���㡭�� */
.section-title {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
    position: relative;
}
.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #ff7400;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* �����㡯���㡯�����㡭�㡯���㡯���㡯�������㡯�㡧�㡯���� */
.about-advantage {
    padding: 60px 0;
    background-color: #f5f7fa;
}
.advantage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}
.advantage-card {
    width: 23%;
    min-width: 280px;
    background-color: #fff;
    padding: 28px 25px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}
.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(26, 115, 232, 0.09);
    border-color: #1a73e8;
}
.advantage-card h3 {
    font-size: 19px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}
.advantage-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* ���㡰�㡯���㡯�����㡯���㡯�����㡰�����㡯�㡧�㡯���� */
.about-service {
    padding: 60px 0;
    background-color: #fff;
}
.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}
.service-item {
    /* width: 31%; */
    min-width: 280px;
    background-color: #f5f7fa;
    padding: 25px;
    border-radius: 50px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}
.service-item:hover {
    background-color: #fff;
    border-color: #ff7707;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.08);
}
.service-item h4 {
    font-size: 17px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}
.service-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ���㡭���㡯�������㡯�㡭�㡯�㡯�㡧�㡯���� */
.about-vision {
    padding: 60px 0;
    background-color: #264976;
    color: #fff;
    text-align: center;
}
.vision-content {
    max-width: 800px;
    margin: 0 auto;
}
.vision-content h2 {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 600;
}
.vision-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    opacity: 0.95;
}

/* �����㡯���㡧�������㡧�������㡯���㡤�㡯�����㡯�㡧�㡯���� */
.about-contact {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}
.contact-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 30px;
    border: #f5f7fa;
    border-radius: 8px;
    background-color: #f9f9f9;
}
.contact-box h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}
.contact-box p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}
.contact-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: #ff7400;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
}
.contact-btn:hover {
    background-color: #264976;
}

/* ========== ���㡭���㡯���㡯���㡯�㡭������ �������㡯���㡧�����㡯�㡰�㡯���㡭�㡯���㡯���㡧�������㡯���� ========== */
@media (max-width: 1200px) {
    .advantage-card {
        width: 100%;
    }
    .service-item {
        width: 47%;
    }
}
@media (max-width: 768px) {
    .about-wrap {
        flex-direction: column;
        gap: 30px;
    }
    .service-item {
        width: 100%;
    }
    .page-banner h1 {
        font-size: 26px;
    }
    .section-title {
        font-size: 22px;
    }
}



/* ******************�������㡯����****************** */
.lxcon{
	display: flex;
	justify-content: center;
	align-items: center;
}
.contact .erwm span {
    text-align: center;
    display: block;
    margin-bottom: 5px;
}
.contact .erwm span {
    text-align: center;
    display: block;
    margin-bottom: 5px;
}
/*�����㡰��������*/
.search_option {
    display: block;
    float: left;
    border: none;
    border-top-left-radius: 16px;
    border: none;
    outline: none;
    border-bottom-left-radius: 16px;
    height: 38px;
    font-size: 14px;
    background: #eee;
    margin-right: -4px;
    padding: 9px 5px 10px 20px;
}


.dsf-bck1-serach .dltext::placeholder{
	color: #999;
}
.dsf-bck1-serach .dltext {
    display: block;
    border: none;
    outline: none;
    padding: 9px 5px 10px 20px;
    height: auto;
    line-height: 1;
    background-color: #eee;
    color: #333;
    width: 150px;
    font-size: 14px;
    float: left;
}

.dsf-bck1-serach{
	height: 38px;
	float: left;
}
.dsf-bck1-serach form{
	    width: auto;
    display: block;
    float: left;
    height: 50px;
}
.dsf-bck1-serach button{
	width: 70px;
	height: 38px;
	display: inline-block;
	text-align: center;
	font-size: 14px;
	margin-left: -4px;
	line-height: 38px;
	color: #fff;
	border-top-right-radius: 16px;
	border-bottom-right-radius: 16px;
	overflow: hidden;
	background-color: #ed8936;
	letter-spacing: 2px;
	border: none;
}
.dsf-bck1-serach>a {
    width: 70px;
    height: 50px;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    margin-left: -4px;
    line-height: 50px;
    color: #fff;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden;
    background-color: #1dd6f7;
    letter-spacing: 2px;
}

/* ���������㡯���㡧�������㡯�����㡯���㡧 */
/*header*/
/*header*/
@media (min-width: 1200px) {
	.headermin{
		display: none;
	}
	
}
@media (max-width: 1199px) {
	.headermin{
		display: block;
	}
	header{
		display: none;
	}
}
.headermin .box {
	height: 2.6rem;
	overflow: hidden;
	/*padding: 0 2rem;*/
	overflow: hidden;
	background-color: #3ec1d5;
}

.headermin{
	padding: 0.6rem 1rem;
	background: #000;
	/* overflow: hidden; */
}
.headermin .nav {
    margin: 0;
    /* float: none; */
    position: absolute;
    background: #000;
    width: 100%;
    z-index: 11;
    /* max-width: 800px; */
    /* padding-inline-start: 0; */
    /* margin-block-start: 0; */
    /* margin-block-end: 0; */
    left: 0;
}
.headermin .logo p{
	    font-size: 1.5rem;
	    color: #fff;
}
.headermin .logo p span{
	color: #88bbff;
}

.headermin .nav li {
    display: block;
    margin: 0;
    border-top: 1px solid #404040;
    float: none;
        position: relative;

}

.headermin .nav li .arr:after {
    content: '';
    border-top: 2px solid #ccc;
    border-left: 2px solid #ccc;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: block;
    width: 8px;
    height: 8px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    right: 15px;
}

.headermin .nav li>a:after {

	position: absolute;

	left: 0;

	bottom: 0;

	width: 0;

	height: 3px;

	background-color: #3ec1d5;

	-webkit-transition: all 0.5s;

	transition: all 0.5s;

	content: '';

}

.headermin .nav li .arr {

	float: right;

	height: 40px;

	width: 40px;

	    display: block;
    position: relative;
    z-index: 1;

}

.headermin .nav li .arr:after {

	content: '';

	border-top: 2px solid #ccc;

	border-left: 2px solid #ccc;

	-webkit-box-sizing: content-box;

	box-sizing: content-box;

	display: block;

	width: 8px;

	height: 8px;

	margin: auto;

	position: absolute;

	top: 0;

	bottom: 0;

	-webkit-transform: rotate(135deg);

	transform: rotate(135deg);

	right: 15px;

}
.headermin .nav li.dropdown {

	position: relative;

}

.headermin .nav .dropdown-box {

	    position: static;
    background-color: #f5f5f5;
    min-width: auto;
    text-align: left;
        box-shadow: 0 0 5px rgba(0,0,0,0.1);
    background: #fff;
    z-index: 10;

}

.headermin .nav .dropdown-box p {

	margin: 0;

}

.headermin .nav .dropdown-box a {

	color: #333 !important;
    border-top: 1px dotted #ddd;
    padding: 0 15px;
    line-height: 37px;
    background-color: transparent !important;
    border-bottom: 0;
        white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    display: block;

}

.headermin .nav .dropdown-box a:hover {

	background-color: #2862de;

	color: #fff;

}

.headermin .nav li.active>a, .headermin .nav li.open>a, .headermin .nav li>a:hover {

}


.headermin .nav li.open>a:after, .headermin .nav li.active>a:after, .headermin .nav li>a:hover:after {

	width: 100%;

}

.headermin .nav li.open .dropdown-box {

	display: block;

}

.headermin .sc {

	float: right;

	position: relative;

	margin-left: 40px;

}

.headermin .sc-btn {

	display: block;

	height: 100px;

	width: 30px;

	background: url(../images/icon1.png) no-repeat center;

}
.headermin .sc-box {

	position: absolute;

	right: 0;

	top: 100%;

	overflow: hidden;

	display: none;

	-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.1);

	box-shadow: 0 0 5px rgba(0,0,0,0.1);

}

.headermin .sc-box input {

	display: block;

	padding: 9px 62px 9px 12px;

	border: 1px solid transparent;

	font-size: 14px;

	color: #333;

	background-color: #fff;

	width: 200px;

}

.headermin .sc-box button {

	position: absolute;

	right: 0;

	top: 0;

	padding: 0;

	width: 60px;

	height: 40px;

	background: #2862de;

	color: #fff;

	border: 0;

	cursor: pointer;

	font-size: 14px;

}

.header-active {
	background: #fff;
    top: 0;
    box-shadow: 0px 5px 50px rgba(0,0,0,0.1);

}

.menu-btn {/* display: none; *//* padding: 0.2rem 0 0 0; */float: right;text-align: right;}

.menu-btn:before, .menu-btn:after, .menu-btn span {

display: block;

height: 0.07rem;

background-color: #fff;

content: '';

/* float: right; */
}

.menu-btn:before {width: 1.85rem;}

.menu-btn:after {width: 1.7rem;margin-left: 0.1rem;}

.menu-btn span {width: 1.5rem;margin: 0.3rem 0 0.3rem 0.31rem;}
.headermin .nav li a{
	padding: 10px 15px;
	display: block;
	font-size: 16px;
	position: relative;
	color: #fff;
}
.headermin .nav li>a p{
	line-height: initial;
	color: #fff;
}
.headermin .nav li>a span{
	margin-top: 0;
	text-align: left;
}
.headermin .box .backicon {
	width: 2rem;
	height: 2.6rem;
	background-image: url(../images/back.png);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 0.9rem 0.9rem;
	position: absolute;
	left: 0;
	top: 0;
}

.headermin .box .closeicon {
	width: 3em;
	height: 3.583em;
	background: url(../images/close.png) no-repeat 50% 50%;
	background-size: 1rem 1rem;
	position: absolute;
	right: 0;
	top: 0;
}

.headermin .box .scbox {
	padding: 0 .5rem;
	float: left;
}

.header .box .sctext {
	border: 0;
	-webkit-appearance: none;
	font-size: 0.7rem;
	height: 1.8rem;
	line-height: 1.8rem;
	color: #c0c0c0;
	vertical-align: middle;
	margin-top: 0.4rem;
	border-radius: 0.2rem;
	background: #fff url(../images/scicon.png) no-repeat 0.6rem 50%;
	background-size: 0.8rem 0.8rem;
	padding: 0 5rem 0 1.75rem;
}

.search-botton {
	width: 30px;
	height: 30px;
	position: relative;
	top: -33px;
	left: 1px;
	z-index: 10;
	border: none;
	background: #fff url(../images/scicon.png) no-repeat 0.6rem 50%;
	background-size: 0.8rem 0.8rem;
	font-size: 0.7rem;
}

.search-botton input {
	border: none;
	background: none;
	width: 30px;
	height: 30px;
}

.headermin .box .listicon {
	width: 2.4rem;
	height: 2.6rem;
	background-image: url(../images/listicon.png);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 1.15rem 1.15rem;
	position: absolute;
	right: 0;
}

.headermin .box .listicon .ybg {
	width: 0.2rem;
	height: 0.2rem;
	background: #f56e6e;
	border-radius: 50%;
	position: absolute;
	right: 0.3rem;
	top: 0.45rem;
}

.headermin .box .scicon {
	width: 2rem;
	height: 2.6rem;
	background: url(../images/sc.png) no-repeat 50% 50%;
	background-size: 0.9rem 0.9rem;
	position: absolute;
	right: 2rem;
	top: 0;
}

.headermin .headlogo {
	width: 4.7rem;
	height: 2.1rem;
	position: absolute;
	left: .25rem;
	top: .3rem;
}

.headermin .headlogo img {
	width: 2.1rem;
	height: 2.1rem;
}
.headermin .top{
	overflow: hidden;
	/* height: 28px; */
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.headermin .text {
	text-align: center;
	line-height: 2.6rem;
	font-size: .9rem;
	color: #fff;
}

.header-white .box {
	background: #fff;
}

.header-white .box .backicon {
	background-image: url(../images/back2.png)
}

.header-white .box .listicon {
	background-image: url(../images/listicon2.png);
}

.header-white .text {
	color: #323232;
}

.header_blank {
	height: 2.6rem;
	overflow: hidden;
}

.headermin .dsf-bck1-serach{
	 margin: 10px;
	 float: none;
}
.headermin .dsf-bck1-serach form{
	width: 100%;
}
.headermin .search_option{
	width: 20%;
}
.headermin .dsf-bck1-serach button{
	width: 20%;
}
.headermin .dsf-bck1-serach .dltext{
	width: 60%;
}


/*�������㡧������*/
.biaodantop{
	background: url(../images/biaodantop.jpg) no-repeat top center;
	background-size: cover;
	height: auto;
	position: relative;
	overflow: hidden;
	padding-bottom: 50px;
}
.biaodantop .bdform h2{ 
	color: #fff;
	margin-bottom: 30px;
	font-size: 24px;
	text-align: center;
}
.biaodantop .bdform{
    margin: 0 auto;
    padding: 30px 0 0 30px;
    box-sizing: border-box;
}
.biaodantop form .in{
	height: 39px;
	width: 370px;
	border-radius: 16px;
	padding-left: 20px;
	float: left;
	border: none;
}
.biaodantop form .tianx2 span{
	margin-left: 30px;
}
.biaodantop form .tijiao{
	margin-left: 30px;
	width: 155px;
	height: 39px;
	background: #ff7400;
	float: left;
	border-radius: 16px;
	color: #fff;
	border: none;
	font-size: 16px;
	font-weight: bold;
}
.biaodantop form .tianx span{
    float: left;
    color: #fff;
    line-height: 38px;
    padding-right: 10px;
    font-size: 16px;
}
.biaodantop form .tianx{
	float: left;
}
.chooseus{
	margin-top: 0;
}
@media (max-width: 1199px) {
	.biaodantop form .in{
		width: 100%;
	}
	.biaodantop form .tianx{
		float: none;
	}
	.biaodantop .bdform{
		padding: 30px 0;
	}
	.biaodantop form .tianx2 span{
		margin-left: 0;
	}
	.biaodantop form .tijiao{
		margin-left: 0;
		margin-top: 20px;
		width: 100%;
	}
	.filter-item a {
	    padding: 4px 8px;
	}
	.cover-card {
		padding-top: 0px;
	}
	.article-column .article-list li{
		align-items: baseline;
	}
}

.article-column .article-list{
	padding-left: 0;
}
.list-content .rightcon{
	text-align: left;
}







/* �����㡯���㡯�㡰�㡯���㡯���㡯���㡯���㡯�����㡭�㡯���㡤�����㡯���㡯�����㡯�����㡯���㡯���㡭 */
.core-service {
    padding: 60px 0;
    /* border-radius: 12px; */
    /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08); */
    background: #f5f7fa;
}

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

/* �����㡯���㡭�㡯���㡤������ */
.core-service h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 50px;
    position: relative;
    font-weight: 700;
}

.core-service h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ed8936, #ed8936);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ���㡰�㡯���㡯���㡯�����㡧 - �������㡰�����㡯���㡯���� */
.core-service .service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

/* ���㡰�㡯���㡯���㡯���㡯�������㡯���㡤������ */
.core-service .service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* �����㡯��������hover�����㡧������ */
.core-service .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px #fbd38d73;
}

/* �����㡯�������㡯�����㡯�����㡯���㡯������ */
.core-service .service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ed8936, #fbd38d);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.core-service .service-item:hover::before {
    opacity: 1;
}

/* �����㡯���㡯���㡤������ */
.core-service .service-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    padding: 12px;
    background: rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
}

.core-service .service-item:hover img {
    background: #fbd38d73;
    transform: scale(1.1);
}

/* �����㡯���㡭�㡯�㡰�㡯���� */
.core-service .service-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

/* �����㡯�������㡯�㡰�㡯���� */
.core-service .service-item p {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
    padding: 0 10px;
}

/* ���㡭���㡯���㡯���㡯�㡭������ */
@media (max-width: 768px) {
    .core-service {
        padding: 40px 0;
        margin: 20px 0;
    }

    .core-service h2 {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .core-service .service-item {
        padding: 25px 15px;
    }

    .core-service .service-item img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .core-service .service-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .core-service h2 {
        font-size: 1.5rem;
    }
}





/* ���㡰���㡰���㡯���㡯�㡰���㡯�����㡯���㡯���㡯���㡯���㡯�����㡭�㡯���㡤�����㡯���㡯������+���㡰���㡯�����㡯������ */
.update-data {
  padding: 60px 0;
  /* background: linear-gradient(120deg, #f5f7fa 0%, #e4eaf5 100%); */
  /* margin: 40px 0; */
  border-radius: 12px;
  background: #fff;
}

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

/* �����㡯���㡭�㡯���㡤������ */
.update-data h2 {
  text-align: center;
      font-size: 2.2rem;
      color: #2c3e50;
      margin-bottom: 50px;
      position: relative;
      font-weight: 700;
}

.update-data h2::after {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #ed8936, #ed8936);
      margin: 15px auto 0;
      border-radius: 2px;
}

/* �������㡯���㡯���㡯�����㡧 - �������㡰�����㡯���㡯���� */
.update-data .data-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* �������㡯���㡯���㡯�������㡯���㡤������ */
.update-data .data-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

/* �����㡯��������hover�����㡧������ */
.update-data .data-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px #fbd38d40;
  border-color: #ed8936;
}

/* �����㡯�������㡯���㡯���㡧�������㡯�����㡯���� */
.update-data .data-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #fbd38d, #ed8936);
}

/* �����㡯�������㡯���㡯���㡯�������㡯���㡤������ */
.update-data .data-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* �����㡯�������㡯���㡯���㡭�� */
.update-data .data-card h3 {
  font-size: 18px;
  color: #2d3748;
  margin-left: 10px;
  font-weight: 600;
}

/* �����㡯�㡰���㡯���㡯���� */
.update-data .data-card .update-time {
  color: #718096;
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.update-data .data-card .update-time::before {
  content: "";
  margin-right: 6px;
}

/* �������㡯���㡯�����㡯������ */
.update-data .data-card .data-count {
  color: #ff7400;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
}

/* �������㡯���㡯���㡯�������� */
.update-data .data-card .data-desc {
  color: #4a5568;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* �����㡯���㡰�㡯���㡯�����㡯�����㡯������ */
.update-data .data-card .more-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #2b507f;
  color: #ffffff;
  font-size: 14px;
  border-radius: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.update-data .data-card .more-btn:hover {
  background: #ff7400;
}

/* ���㡭���㡯���㡯���㡯�㡭������ - �������㡯�����㡯���� */
@media (max-width: 768px) {
  .update-data {
    padding: 40px 0;
  }

  .update-data h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .update-data .data-list {
    gap: 20px;
  }

  .update-data .data-card {
    padding: 20px;
  }
}

.update-data .contop{
	display: flex;
}

.data-list .left{
	margin-left: 10px;
}





* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft Yahei", "PingFang SC", sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* journal-cover �����㡯���㡯���㡤������ - �����㡧���㡰���㡯�����㡯������ */
.journal-cover.qikan {
  padding: 50px 0;
  background: linear-gradient(120deg, #f5f7fa 0%, #e4eaf5 100%);
  position: relative;
  overflow: hidden;
}

/* �������㡯�㡯�����㡯�����㡯���㡯�����㡯���㡯���㡯���㡯�����㡭�����㡯�㡭�㡯������ */
.journal-cover.qikan::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.journal-cover.qikan::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(33, 150, 243, 0.08);
  border-radius: 50%;
  z-index: 0;
}

/* �����㡯���㡭�㡯���㡤������ */
.journal-cover h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.journal-cover h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ed8936, #ed8936);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ���㡰�㡯���㡯�����㡯���㡯���㡯�����㡧�����㡯���� - �������㡰�����㡯���㡤������ */
.journal-cover-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* �����㡯�����㡯�����㡯���㡯���㡯�������㡯���㡤������ */
.journal-cover-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateY(0);
}

/* �����㡯�������㡯�㡭�㡯���㡯���㡯���㡰 */
.journal-cover-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* �������㡯���㡯���㡯�������㡯���㡯�㡧 */
.journal-cover-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.journal-cover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.journal-cover-item:hover .journal-cover-img img {
  transform: scale(1.08);
}

/* �������㡯���㡯�����㡯���㡯���㡯���� */
.journal-cover-info {
  padding: 20px;
}

.journal-cover-info h3 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.journal-cover-info p {
  color: #7f8c8d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* �����㡯���㡰�㡯�����㡯���㡯�����㡯������ */
.journal-cover-btn {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(to right, #2196f3, #4caf50);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.journal-cover-btn:hover {
  background: linear-gradient(to right, #1976d2, #388e3c);
  transform: scale(1.05);
}

/* ���㡭���㡯���㡯���㡯�㡭������ - ���������㡯���㡧�������㡯�������㡯���� */
@media (max-width: 768px) {
  .journal-cover {
    padding: 0px 0;
	text-align: center;
  }

  .journal-cover h2 {
    font-size: 1.8rem;
  }

  .journal-cover-list {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  .journal-cover-img {
    height: 180px;
  }

  .journal-cover-info {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .journal-cover h2 {
    font-size: 1.5rem;
  }

  .journal-cover-list {
    grid-template-columns: 1fr;
  }
  .filter-item{
	 gap: 1px;
  }
}
.about{
	padding: 50px 0;
}
.about .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 480px) {
 .about .container{
	  display: block;
  }
  .about-us{
	  width: 100%;
  }
}