/* --- 全局样式重置 --- */
body, html, input { 
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif; 
    margin: 0; 
    padding: 0;
}
ul, li { 
    list-style: none; 
    margin: 0; 
    padding: 0;
}
a { 
    text-decoration: none; 
    color: inherit;
}
a:hover { 
    text-decoration: none;
}
body { 
    background: url(../images/bg.png) repeat;
    overflow-x: hidden;
}

/* --- 顶部 Header 区域 --- */
.wing-header {
    width: 1300px;
    height: 160px;
    margin: 0 auto;
    background: linear-gradient(to right, #0bb051, #ffc303);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wing-header .header-logo { 
    margin-left: 110px;
}
.wing-header .header-motto { 
    margin-right: 0px;
}

<style>
    #app${uid} .tj {
        background-color: #4CAF50 !important;
        border-color: #4CAF50 !important;
        color: white !important;
    }

/* --- 导航栏 (Menu) --- */
.wing-header-banner {
    width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1000;
}
.banner-menu {
    height: 50px;
    background: #207f4c;
    box-shadow: 0 5px 5px rgba(63, 59, 59, 0.5);
    width: 100%;
}
.banner-menu-container ul li {
    float: left;
    position: relative;
    min-width: 9.5%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    transition: all 0.2s linear;
}
.banner-menu-container ul li a.link { 
    color: #fff; 
    display: block; 
    width: 100%; 
    height: 100%;
}
.banner-menu-container ul li:hover { 
    background: #009f4a;
}

/* 下拉菜单 */
.banner-menu-first {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background: #207f4c;
    box-shadow: 5px 5px 10px rgba(63, 59, 59, 0.5);
}
.banner-menu-container ul li:hover .banner-menu-first { 
    display: block;
}
.banner-menu-option a {
    display: block;
    color: #fff;
    font-size: 15px;
    line-height: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.banner-menu-option a:hover { 
    background: #009f4a;
}

/* --- 主体内容区域 --- */
.content { 
    width: 100%; 
    padding-top: 10px;
}
.wing-banner, .wing-content { 
    width: 1300px; 
    margin: 0 auto;
}

/* 轮播图 */
.wing-banner { 
    height: 400px; 
    margin-bottom: 20px; 
    overflow: hidden;
}
.swiper-container img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

/* 新闻板块容器 */
.wing-content::after { 
    content: ""; 
    display: block; 
    clear: both;
}
.content-box {
    float: left;
    width: 416px;
    height: 400px;
    background: whitesmoke;
    border-radius: 5px;
    box-shadow: 10px 10px 25px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    margin-right: 26px;
}
.content-box:nth-child(3n) { 
    margin-right: 0;
}

/* 板块标题 */
.content-head {
    margin: 15px;
    padding: 10px 0;
    border-bottom: 2px solid #207f4c;
    overflow: hidden;
}
.content-head-title { 
    font-size: 15px; 
    color: #000; 
    float: left;
}
.content-head-more { 
    float: right; 
    color: #207f4c; 
    font-size: 14px;
}

/* 板块列表内容 */
.content-body { 
    padding: 0 15px; 
    height: 320px; 
    overflow: hidden;
}
.news-list li {
    line-height: 36px;
    border-bottom: 1px dashed #ddd;
    font-size: 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.news-list li a { 
    color: #333;
}
.news-list li span { 
    float: right; 
    color: #999; 
    font-size: 12px;
}

/* --- 底部 Footer --- */
.wing-footer { 
    margin-top: 30px; 
    padding: 20px 0; 
    color: #aaa; 
    text-align: center;
}
.wing-footer p { 
    margin: 5px 0; 
    font-size: 14px;
}

/* --- 列表三角形 --- */
.news-list li a::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #207f4c;
    margin-right: 8px;
    vertical-align: middle;
}

/* 基地概况图片区域 */
.content-introduction .content-body {
    width: 374px;
    height: 300px;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
}
.content-introduction .content-body img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* 实验室图片双图样式 */
.lab-pics-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
}
.lab-pic-link {
    display: block;
    flex: 1;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.lab-pic-link:last-child {
    margin-bottom: 0;
}
.lab-pic-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.lab-pic-link img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

/* 管理服务三行文字样式 */
.service-links-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-link-item {
    display: flex;
    align-items: center;
    flex: 1;
    padding-left: 80px;
    padding-right: 15px;
    text-decoration: none;
    color: #333;
}
.service-link-item:not(:last-child) {
    border-bottom: 1px solid #eee;
}
.service-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}
.service-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.service-text {
    font-size: 20px;
    color: #666;
    font-weight: bold;
    margin-left: 40px;
}
.service-introduction .content-body {
    padding: 0 !important;
    height: 320px;
    overflow: hidden;
}

/* 友情链接样式 */
.friend-links {
    background: whitesmoke;
    padding: 20px 0;
    margin: 0 auto 20px;
    width: 1300px;
    box-sizing: border-box;
    border-radius: 5px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.3);
    /* 过渡动画 */
    transition: all 0.3s ease;
}
.friend-links:hover {
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* 关键修改：确保宽度与banner图一致 */
.friend-links-container {
    width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.friend-links-title {
    color: #333;
    margin: 15px;
    padding: 10px 0;
    border-bottom: 2px solid #207f4c;
    text-align: left;
}

.friend-links-content {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    padding: 0 15px;
     gap: 20px;
}

.friend-links-section {
    display: flex;
    align-items: center;
}

.friend-links-label {
    font-size: 15px;
    color: ＃D3D3D3;
    margin-right: 15px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.friend-links-label::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #207f4c;
    margin-right: 8px;
    vertical-align: middle;
}

.friend-links-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.friend-link-item {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}

.friend-link-item:hover {
    color: #207f4c;
    text-decoration: underline;
}

.link-separator {
    margin: 0 15px;
    color: #999;
    font-size: 14px;
}

/* 新闻板块标题图标样式 */
.content-news .content-head-title::before {
    content: "\f1ea";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #207f4c;
    margin-right: 8px;
}
.content-information .content-head-title::before {
    content: "\f0a1";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #207f4c;
    margin-right: 8px;
}
.content-dynamic .content-head-title::before {
    content: "\f0e8";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #207f4c;
    margin-right: 8px;
}
.content-introduction.base .content-head-title::before {
    content: "\f015";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #207f4c;
    margin-right: 8px;
}
.content-introduction .content-head-title::before {
    content: "\f0c3";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #207f4c;
    margin-right: 8px;
}
.service-introduction .content-head-title::before {
    content: "\f085";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #207f4c;
    margin-right: 8px;
}
.friend-links-title::before {
    content: "\f0c1";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #207f4c;
    margin-right: 8px;
}

/* 搜索框样式 */
.search-box-container {
    position: relative;
    top: 60px;
    margin-right: 0px;
    z-index: 10;
}
.chinese-part {
  color: #000; /* 保持黑色 */
}

.english-part {
  color: #666; /* 灰色 */
  margin-left: 8px;
  font-weight: normal;
}

/* 不让英文加粗*/
.content-head-title .english-part {
  font-weight: normal;
}

.friend-links-title .english-part {
  color: #666;
  margin-left: 8px;
}