@charset "utf-8";
/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    line-height: 2;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* 头部样式 */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-top {
    height: 180px;
    background: url('/_upload/tpl/01/a2/418/template418/images/head.gif') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding: 10px 0;
}

.logo {
    width: 302px;
    padding-left: 20px;
    color: white;
    font-weight: bold;
}

.site-title {
    flex: 1;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: white;
    padding-bottom: 12px;
}

.header-right {
    width: 223px;
}

/* 导航样式 */
nav {
    background-color: #8bbbec;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-content {
    color: white;
    font-size: 20px;
    display: flex;
    gap: 40px;
}

.nav-item {
    padding: 5px 10px;
    transition: all 0.3s;
    border-radius: 3px;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* 主要内容区域 */
.container {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 17px;
}

/* Banner和新闻区 */
.banner-news {
    display: flex;
    background-color: #3f73d8;
    padding: 15px 15px 0 15px;
}

.banner {
    flex: 0.5;
    height: 370px;
    background-color: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
    border-radius: 5px;
}

.news-sidebar {
    flex: 1;
    max-width: 655px;
    margin-left: 15px;
    overflow: hidden;
}

.section-title {
    height: 50px;
    background-color: #3f73d8;
    color: white;
    display: flex;
    align-items: center;
    padding-left: 19px;
    font-size: 26px;
    font-weight: bold;
}

.section-logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #3c71cf;
    font-weight: bold;
}

.news-list {
    padding: 10px;
    color: white;
}

.news-item {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.item-logo {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.news-date {
    white-space: nowrap;
    margin-left: 10px;
}
.news-item:hover {
    color: #d40101;
    padding-left: 5px;
}

/* 内容区块 */
.content-blocks {
    display: flex;
    /*gap: 15px;*/
}

.content-block {
    flex: 1;
    background-color: white;
/*            box-shadow: 0 1px 3px rgba(0,0,0,0.1);*/
/*            border-radius: 5px;*/
    overflow: hidden;
}

.block-list {
    padding:30px 15px 12px 15px;
}

.block-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #908d8d;
    transition: all 0.3s;
    cursor: pointer;
    justify-content: space-between;
    width: 87%;
}

.block-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.block-date {
    white-space: nowrap;
    margin-left: 10px;
}

.block-item:hover {
    color: #d40101;
}

/* 特色内容区 */
.feature-section {
    margin-top: 15px;
    overflow: hidden;
}

.feature-title {
    height: 58px;
    display: flex;
    align-items: center;
    padding-left: 17px;
    font-size: 28px;
    font-weight: bold;
}

.feature-content {
    display: flex;
    background-color: #fcf6ba;
    height: 190px;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    color: #666;
    padding: 0 20px;
}

.arrow {
    font-size: 72px;
    color: #000000;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s;
    padding: 0 10px;
}

.arrow:hover {
    color: #2a5496;
    transform: scale(1.2);
}

/* 页脚样式 */
footer {
    background-color: #88bcee;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 36px;
}

.footer-content p {
    margin: 5px 0;
}
/* 原始按钮样式 - 隐藏图片 */
.more {
    margin: 20px 0 0 0!important;
}

.more-link {
    display: inline-block !important;
    text-decoration: none !important;
    position: relative !important;
}

.moretext {
    display: inline-block !important;
    position: relative !important;
}

/* 隐藏原始图片 */
.moretext img {
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
}
/* 简约版本 - 无边框 */
.more-link::after {
    content: "更多 >>" !important;
    border: none !important;
    background-color: transparent !important;
    padding: 8px 5px !important;
}
.more a.more-link {
    color: #d40101 !important;
}
.sub-nav{
     width:190px !important;
}
.wp_nav .sub-nav .nav-item a{
    font-size:17px !important;
}