/* 基础布局样式 */
.wrapper {
    background-color: #f5f7fa;
    padding: 0 0;
     margin-top: 2.4rem;
}

.inner {
    background: #fff;
    /*! border-radius: .5rem; */
    box-shadow: 0 .125rem .625rem rgba(8, 108, 190, 0.1);
    overflow: hidden;
}

/* 侧边导航菜单 - 带下拉功能 */
.col_menu {
    /*! margin-bottom: 1.25rem; */
    background: #fff;
    /*! border-radius: .5rem; */
    box-shadow: 0 .25rem .75rem rgba(8, 108, 190, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.col_menu_head {
    background: linear-gradient(135deg, #0766b7, #0a7ed8);
    padding: .875rem 1.25rem;
    position: relative;
}

.col_menu_head:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: .0625rem;
    background: rgba(255, 255, 255, 0.2);
}

.col_name {
    color: #fff;
    font-size: 19.2px;
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    text-shadow: 0 .0625rem .125rem rgba(0, 0, 0, 0.1);
}

.column-switch {
    position: absolute;
    right: .9375rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.col_menu.active .column-switch {
    transform: translateY(-50%) rotate(180deg);
}

.wp_listcolumn {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.col_menu.active .wp_listcolumn {
    max-height: 62.5rem;
}

.wp_column {
    position: relative;
    border-bottom: .0625rem solid #f0f4f8;
    transition: all 0.2s ease;
}

.wp_column:last-child {
    border-bottom: none;
}

.col_item_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 1.25rem;
    color: #444;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.col_item_link:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: .1875rem;
    background: transparent;
    transition: all 0.3s ease;
}

.col_item_link:hover {
    color: #0766b7;
    padding-left: 1.5625rem;
    background: #f5f9fd;
}

.col_item_link:hover:before {
    background: #0766b7;
}

.col_item_link.selected {
    color: #0766b7;
    background-color: #f0f7ff;
}

.col_item_link.selected:before {
    background: #0766b7;
}

.wp_column.parent .col_item_link:after {
    /*! content: ">"; */
    transform: rotate(90deg);
    transition: transform 0.3s ease;
    margin-left: .625rem;
}

.wp_column.parent.active .col_item_link:after {
    transform: rotate(-90deg);
}

.sub_list {
    list-style: none;
    padding: 0;
    margin: 0;
  
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
}

.wp_column.parent.active .sub_list {
    max-height: 62.5rem;
}

.sub-item-link {
    display: block;
    padding: .625rem 1.25rem .625rem 2.1875rem;
    color: #666;
    font-size: 15.2px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.sub-item-link:before {
    /*! content: "→"; */
    position: absolute;
    left: 1.25rem;
    color: #999;
    transition: all 0.2s ease;
}

.sub-item-link:hover {
    color: #0766b7;
    background: #f0f6ff;
    padding-left: 2.375rem;
}

.sub-item-link:hover:before {
    left: 1.4375rem;
    color: #0766b7;
}

.sub-item-link.selected {
    color: #0766b7;
    background: #e6f0ff;
    font-weight: 500;
}

/* 新闻列表区域 */
.col_news_box {
    padding: .9375rem;
    background: #fff;
    border-radius: .5rem;
    box-shadow: 0 .125rem .5rem rgba(0,0,0,0.05);
}

.col_metas {
    margin-bottom: .9375rem;
}

.col_path {
    color: #666;
    font-size: 14.4px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.col_path a {
    color: #0766b7;
    margin: 0 .3125rem;
    text-decoration: none;
}

.col_path a:hover {
    text-decoration: underline;
}

.col_title h2 {
    font-size: 22.4px;
    color: #333;
    margin: 0 0 .9375rem;
    font-weight: 600;
    padding-bottom: .5rem;
    border-bottom: .0625rem solid #eee;
}

.news_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news_list li {
    padding: .9375rem 0;
    border-bottom: .0625rem solid #f0f0f0;
    transition: all 0.2s ease;
}

.news_list li:hover {
    background: #f9f9f9;
}

.news_title a {
    color: #333;
    font-size: 16.8px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news_list li:hover .news_title a {
    color: #0766b7;
}

.news_meta {
    color: #888;
    font-size: 13.6px;
    margin-top: .3125rem;
    display: flex;
    align-items: center;
}

.news_meta:before {
    content: "?";
    margin-right: .3125rem;
    font-size: 12.8px;
}

/* 分页样式 */
.wp_paging {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: .625rem;
    margin: 1.25rem 0;
    padding: 0;
    list-style: none;
    font-size: .875rem;
    color: #555;
    width: 100%;
}

.wp_paging a {
    display: inline-block;
    /*! padding: .5rem .75rem; */
    border: .0625rem solid #e0e0e0;
    border-radius: .25rem;
    color: #555;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 2.25rem;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
}

.wp_paging a:hover {
    background: #0766b7;
    color: #fff;
    border-color: #0766b7;
}

.pageNum {
    width: 2.5rem;
    height: 2rem;
    line-height: 2rem;
    border: .0625rem solid #ddd;
    background: #fff;
    margin: 0;
    padding: 0 .3125rem;
    text-align: center;
    border-radius: .25rem;
    font-size: .875rem;
}

.pageNum:focus {
    outline: none;
    border-color: #0766b7;
}

.pagingJump {
    color: #fff;
    /*! padding: .5rem .75rem; */
    border-radius: .25rem;
    text-decoration: none;
    border: none;
}

.pagingJump:hover {
    background: #065a9e;
}

/* 详情页样式 */
.infobox {
    padding: 0;
    background: #fff;
    border-radius: .5rem;
    box-shadow: 0 .125rem .625rem rgba(8, 108, 190, 0.08);
    overflow: hidden;
}

.theContentLocation {
    padding: .9375rem;
    background: #f8fafd;
    border-bottom: .0625rem solid #eaeef2;
}

.article {
    padding: 1.25rem;
}

.arti_title {
	color: #333;
	margin-bottom: .9375rem;
	line-height: 1.4;
	position: relative;
	/* padding-bottom: .625rem; */
	font-size: 1.4rem;
}
.arti_title h1 {
    font-size: 25.6px;
    font-weight: 600;
    color: #222;
    margin-bottom: .3125rem;
}

.arti_metas {
    color: #888;
    font-size: 14.4px;
    margin-bottom: 1.25rem;
    padding: .75rem 0;
    border-top: .0625rem solid #f0f0f0;
    border-bottom: .0625rem solid #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    gap: .9375rem;
}

.arti_metas span {
    display: flex;
    align-items: center;
}

.arti_metas span:before {
    content: "?";
    margin-right: .5rem;
    color: #ccc;
}

.entry {
    line-height: 1.8;
    color: #444;
    font-size: 16px;
}

.entry p {
    margin-bottom: 1.2em;
    text-align: justify;
}

.wp_articlecontent img {
    max-width: 100%;
    height: auto !important;
    display: block;
    margin: 1.25rem auto;
    border-radius: .25rem;
    box-shadow: 0 .125rem .5rem rgba(0,0,0,0.1);
}

/* 页脚样式 */


.friendshipLink {
    margin-bottom: 1.25rem;
}

.friendshipTitle {
    font-size: 19.2px;
    color: #0766b7;
    font-weight: 600;
    margin-bottom: .625rem;
    padding-bottom: .5rem;
    border-bottom: .0625rem solid #e0e6ed;
}

.friendshipContent ul {
    display: flex;
    flex-wrap: wrap;
    gap: .625rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.friendshipContent li {
    padding: .3125rem .625rem;
    background: #eef4fd;
    border-radius: .25rem;
    color: #0766b7;
    font-size: 14.4px;
}

.newVersionOfBaseMap {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
}



.aboutUs {
    color: #FFF;
    font-size: 14.4px;
    margin-bottom: .5rem;
}

.footerBigBox {
    background: #0766b7;
    color: #fff;
    padding: .9375rem 0;
}

.leftCopyright {
    font-size: 14.4px;
}

.recordImage {
    display: flex;
    align-items: center;
    gap: .3125rem;
}

.recordImage img {
    height: 1rem;
}

.recordImage a {
    color: #fff;
    text-decoration: none;
    font-size: 14.4px;
}

/* 响应式调整 */
@media (max-width: 48rem) {
    .mod {
        flex-direction: column;
    }
    
    .col_menu, .col_news {
        width: 100%;
    }
    
    .article {
        padding: .9375rem;
    }
    
    .arti_title h1 {
        font-size: 22.4px;
    }
    
    .newVersionOfBaseMap {
        flex-direction: column;
        text-align: center;
    }
    
    .footerCenter {
        flex-direction: column;
        gap: .625rem;
    }
    
    .wp_paging {
        flex-direction: column;
        gap: .625rem;
    }
}

@media (max-width: 30rem) {
    .col_name {
        font-size: 17.6px;
    }
    
    .col_item_link {
        padding: .625rem .9375rem;
        font-size: 15.2px;
    }
    
    .sub-item-link {
        padding: .5rem .9375rem .5rem 1.875rem;
        font-size: 14.4px;
    }
    
    .col_title h2 {
        font-size: 17.6px;
    }
    
    .news_title a {
        font-size: 15.2px;
    }
    
    .page_jump {
        flex-direction: column;
        align-items: center;
        gap: .3125rem;
    }
    
    .wp_paging li input {
        width: 3.75rem;
    }
}
.wp_listcolumn .wp_column a {

	/*! background: #f5f5f5 url(wp_column_menu_li_1.gif) no-repeat 6.5px 21px; */

	background-position-y: 1.2rem;
}
/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-0.3125rem); }
    to { opacity: 1; transform: translateY(0); }
}

.wp_column {
    animation: fadeIn 0.3s ease forwards;
}

.wp_column:nth-child(1) { animation-delay: 0.05s; }
.wp_column:nth-child(2) { animation-delay: 0.1s; }
.wp_column:nth-child(3) { animation-delay: 0.15s; }
.wp_column:nth-child(4) { animation-delay: 0.2s; }
.wp_column:nth-child(5) { animation-delay: 0.25s; }
.wp_column:nth-child(6) { animation-delay: 0.3s; }