@charset "utf-8";

/* Base Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

:focus {
    outline: 0;
}

img {
    border: 0;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clear {
    width: 100%;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    clear: both;
    display: block;
    _display: inline;
}

.none {
    display: none;
}

.hidden {
    visibility: hidden;
}

.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

.clearfix {
    display: block;
    *zoom: 1;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-col-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.one-line {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tow-line {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

/**布局开始**/
:root {
    --font-win: "Microsoft YaHei", "Segoe UI", sans-serif;
    --font-mac: "PingFang SC", -apple-system, sans-serif;
}

body {
    font-family: var(--font-win);
    /* 默认值 */
}

@media not screen and (-webkit-font-smoothing: antialiased) {

    /* 非 Mac 系统移除苹方 */
    body {
        font-family: var(--font-win);
    }
}

body {
    /* width: 100vw; */
    min-width: 1400px;
    /* padding: 33px 0; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

body,
p {
    font: 12px/1 "Microsoft YaHei", SimSun, SimHei, STSong, STFangsong, SimHei, Hiragino Sans GB;
    color: #333;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #cd0200;
}

h2 {
    color: #F00;
    text-align: center;
    margin: 10px 0;
}

/* 头部布局 */
.header {
    width: 72%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    width: 713px;
    height: 60px;
    margin-top: 16px;
    margin-bottom: 10px;
}

/* .header .search-box {
    width: 250px;
    height: 36px;
    background: rgba(242, 242, 242, 1);
    border-radius: 18px;
    box-sizing: border-box;
    padding-left: 18px;
}

.header .search-box .search-input {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.header .search-box .search-title {
    color: rgba(140, 140, 140, 1);
    border: 0;
    outline: 0;
    background: rgba(242, 242, 242, 1);
    border-radius: 18px;
}

.header .search-box .search-btn {
    width: 60px;
    height: 36px;
    border-radius: 18px;
    background: rgba(171, 58, 44, 1);
    color: white;
    border: 0;
} */

.more_text {
    font-size: 15px;
    color: rgba(28, 103, 184, 1);
    /* letter-spacing: 1px; */
}

/*自定义输入框*/
.searchbox {
    text-align: right;
    /* margin-top: -32px; */

}

.wp-search {
    width: 250px;
    position: relative;
    /* border: 1px solid #d0d0d0; */
    border-radius: 18px;
    background: rgba(242, 242, 242, 1);
    padding-left: 18px;
}

.wp-search form {
    display: block;
}

.wp-search .search-input {
    margin-left: 4px;
    margin-right: 40px;
}

.wp-search .search-input input.search-title {
    width: 100%;
    height: 36px;
    /* padding: 3px 0; */
    line-height: 34px;
    background: none;
    color: rgba(140, 140, 140, 1);
    font-size: 14px;
    border: 0;
    outline: 0;
}

.wp-search .search-btn {
    width: 60px;
    height: 36px;
    position: absolute;
    right: 0;
    top: 0%;
}

.wp-search .search-btn input.search-submit {
    width: 60px;
    height: 36px;
    border-radius: 18px;
    background: rgba(171, 58, 44, 1);
    color: white;
    border: 0;
}


/**导航栏**/
.nav {
    background-color: #194E87;
    width: 100%;
    height: 50px;
}

.nav ul {
    width: 72%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 25px;
    box-sizing: border-box;
}

.nav .nav-item {
    position: relative;
    cursor: pointer;
    user-select: none;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
   align-items: center;
   /*  flex: 1 1 1%;*/
}


.nav .nav-item .menu-link {
    display: inline-block;
    line-height: 50px;
    font-size: 20px;
    font-family: "黑体";
    /* font-weight: bold; 
    letter-spacing: 2px;*/
    color: rgba(255, 255, 255, 0.8);
}

.nav .nav-item .menu-switch-arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(/_upload/tpl/01/9b/411/template411/images/icon-arrow-down.png) no-repeat center center;
    vertical-align: middle;
    margin-left: 10px;
}

.nav .nav-item:hover .menu-link,
.nav .nav-item.active .menu-link{
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
}


.nav .sub-menu {
    position: absolute;
    top: 100%;
    /* left: 0; */
    display: none;
    padding: 12px;
    text-align: center;
    flex-direction: column;
    z-index: 999;

    width: auto;
    max-width: none;
    min-width: 136px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 1);
    border: 0.5px solid rgba(220, 220, 220, 1);
    box-shadow: 0px 3px 14px 2px rgba(0, 0, 0, 0.05), 0px 8px 10px 1px rgba(0, 0, 0, 0.06), 0px 5px 5px -3px rgba(0, 0, 0, 0.1);

}

.nav .sub-menu .sub-item {
    width: auto;
    padding: 2px 0;
}

.nav .sub-menu .sub-link {
    display: block;
    border-radius: 3px;
    font-size: 18px;
    line-height: 18px;
    color: rgba(51, 51, 51, 1);
    padding: 14px 12px;
    margin-bottom: 8px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.nav .sub-menu a:last-child {
    margin-bottom: 0;
}

.nav .sub-menu .sub-link:hover {
    font-size: 18px;
    font-weight: 700;
    color: rgba(43, 96, 153, 1);
    background: rgb(231, 237, 243);
    background: rgba(233, 240, 247, 1);

}

.nav-item.active .sub-menu,
.nav-item:hover .sub-menu {
    display: flex;
}

.nav .cur_cat  .menu-link{
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
}

/* 顶部长图展示 */
.img-container {
    width: 100%;
    height: 168px;
    /*border-radius: 0px 0px 12px 12px;*/
    margin-bottom: 50px;
}

.img-container .top-img {
    width: 100%;
    height: 100%;
    /* border-radius: 0px 0px 12px 12px; */
    object-fit: cover;
}

/* 栏目标题 */
.panel .title {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.panel .title .right {
    display: flex;
    align-items: end;
}

.panel .title .right img {
    width: 31px;
    height: 31px;
    margin-right: 8px;
}

.panel .title .right .text1 {
    font-size: 30px;
    color: rgba(25, 78, 135, 1);
    margin-right: 4px;
}

.panel .title .right .text2 {
    font-size: 20px;
    color: rgba(171, 58, 44, 1);
    /* letter-spacing: 1px; */
}

/* 自定义新闻列表 */
.news-list .news-content {
    padding-top: 4px;
}

.news-list .item {
    display: flex;
    align-items: center;
    width: 100%;
    height: 25px;
    font-size: 15px;
    overflow: hidden;
    gap: 8px;
    margin: 6px 0;
}

.news-list .item .square-dot {
    width: 8px;
    height: 8px;
    background-color: #2B6099;
    flex-shrink: 0;
}

.news-list .item .text:hover {
    cursor: pointer;
    color: rgba(171, 58, 44, 1);
}

.news-list .item .text {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 24px;
    color: rgba(51, 51, 51, 1);
}

.news-list .item .date {
    flex-shrink: 0;
    white-space: nowrap;
    color: rgba(140, 140, 140, 1);
}

/* 底部布局 */
.footer-panel {
    width: 100%;
    height: 251px;
    background-image: url(/_upload/tpl/01/9b/411/template411/images/foot-BG.png);
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 35px;
    box-sizing: border-box;
    color: white;
    line-height: 28px;

    display: flex;
    justify-content: center;   
}


.footer-panel .content {
    width: 72%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 45px;
    box-sizing: border-box;

}
.footer-panel .links {
    width:50%;
   margin-left: 50px;
}

.footer-panel .tit {
    margin-bottom: 20px;
    font-size: 24px;
}
.footer-panel .info {
    min-width: 400px;
}

.footer-panel .links .grid {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: 1fr 1fr 1fr;
    grid-row-gap: 12px;
    grid-column-gap: 42px;
}

.footer-panel .links .grid a {
    color: #F2F3F5;
    font-size: 14px;
    font-weight: 300;
    background: rgba(255, 255, 255, 0.1);
    padding: 0 9px;
    box-sizing: border-box;
    height: 30px;
    line-height: 30px;
}

.footer-panel p { color: #fff; font-size: 14px; line-height: 2.5; }

.footer-panel .qrcode {
    width: 81px;
    height: 81px; border: 3px solid #fff;
}


/* **************************** */
.acticle-list-container .top .right a { color: #666; }

#wp_pager { text-align: center; margin: 3em auto 0; }
#wp_pager .pages { margin: 0 auto; display: inline-block; }
#wp_pager li { float: left; margin: 0px 0px 0px 7px;  }
#wp_pager li a { display: inline-block; border: 1px solid #ccc; width: 36px; height: 36px; font-size: 16px; line-height: 36px;}
#wp_pager li a.pgCurrent,
#wp_pager li a:hover { border: 1px solid #1e5abc; color: #fff; background-color: #2b6099;}

.text-gray span.WP_VisitCount { display: inline-block !important; }

.pre_next_source { display: none; }


@media(max-width: 1500px){
	body { min-width: initial; }
	html .header,
	html .nav ul,
	html .panel1,
	html .panel2,
	html .panel3,
	html .panel4,
	html .panel5,
	html .panel6,
	html .panel7,
	html .panel8,
	html .footer-panel .content { width: 95%; }
	html .panel3 .wrap { width: 100%; }
	
}
@media(max-width: 1400px){
	body { min-width: initial; }
	
}
/* **************************** */