@font-face {
    font-family: 'QiantuHeiTi';
    src: url('../font/qiantuhouheiti.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.yixin-font {
    font-family: 'QiantuHeiTi', sans-serif;
}
.layout{
    overflow: hidden;
}

.layui-fluid {
    padding: 0 30px;
}

@media (max-width: 768px) {
    .layui-fluid {
        padding: 0 10px;
    }
}

/* ===============================================
   Common CSS Styles
   =============================================== */

/* ------------------------------------------------
   文本截断类
   ------------------------------------------------ */
.text-ellipsis-1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.text-ellipsis-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.text-ellipsis-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* ------------------------------------------------
   Flex布局类
   ------------------------------------------------ */
.flex {
    display: flex;
}

.flex-align-center {
    align-items: center;
}

.flex-space-between {
    justify-content: space-between;
}

/* ------------------------------------------------
   链接样式
   ------------------------------------------------ */
a h5:hover,
a .intro:hover,
a.more:hover,
a.section-more:hover {
    text-decoration: underline !important;
    color: #1D2088;
}

/* ------------------------------------------------
   基础样式
   ------------------------------------------------ */
img {
    max-width: 100%;
}

p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

.text-center {
    text-align: center;
}

.layui-font-white {
    color: white !important;
}

/* ------------------------------------------------
   统一的内外边距工具类
   ------------------------------------------------ */

/* 内边距 - Padding */
.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 4px !important;
}

.p-2 {
    padding: 8px !important;
}

/* 内边距 - 上下 */
.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

.py-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

/* 内边距 - 左右 */
.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.px-1 {
    padding-left: 4px !important;
    padding-right: 4px !important;
}

.px-2 {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

/* 内边距 - 单独方向 */
.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 4px !important;
}

.pt-2 {
    padding-top: 8px !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 4px !important;
}

.pb-2 {
    padding-bottom: 8px !important;
}

/* 外边距 - Margin */
.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 4px !important;
}

.m-2 {
    margin: 8px !important;
}

/* 外边距 - 单独方向 */
.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 4px !important;
}

.mt-2 {
    margin-top: 8px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 4px !important;
}

.mb-2 {
    margin-bottom: 8px !important;
}

.ml-1 {
    margin-left: 8px !important;
}

/* ------------------------------------------------
   背景类
   ------------------------------------------------ */
.bg-white {
    background-color: #FFFFFF;
}

/* ------------------------------------------------
   站点头部样式
   ------------------------------------------------ */
.site-header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1001;
    /* background: linear-gradient(to bottom, #003D7E, rgba(0,0,0,0)); */
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0));
}

@media screen and (min-width: 768px) {
    .site-header-logo img {
        width: 30px;
    }
}

.mobile-site-header {
    padding: 10px;
    background-color: #0B4B91;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
}

@media screen and (min-width: 768px) {
    .mobile-site-header {
        display: none;
    }
}

.mobile-site-header .site-header-logo {
    width: 80%;
}

.mobile-site-header .logo {
    width: 100%;
}

.mobile-site-header .menu-icon i {
    font-size: 24px;
    cursor: pointer;
}

/* ------------------------------------------------
   自定义导航样式 - PC
   ------------------------------------------------ */
.pc-nav {
    display: flex;
}

.pc-nav .nav-item {
    position: relative;
}

.pc-nav .nav-item>a {
    display: block;
    padding: 16px;
    color: #FFFFFF;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.pc-nav .nav-item:hover>a {
    background-color: rgba(255, 255, 255, 0.2);
}

.pc-nav .dropdown-menu {
    text-align: center;
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 140px;
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.pc-nav .nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.pc-nav .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333333;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 2px 8px;
    white-space: nowrap;
}

.pc-nav .dropdown-menu li a:hover {
    color: #fff;
    background-color: #1D2088;
    font-weight: 600;
}

/* ------------------------------------------------
   移动端导航按钮样式
   ------------------------------------------------ */
.site-header-right-mobile {
    display: flex;
    align-items: center;
    justify-content: right;
    flex: 1;
    padding-right: 0;
}

@media screen and (min-width: 768px) {
    .site-header-right-mobile {
        padding-right: 16px;
    }
}

.site-header-menu-button {
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    color: #333;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.site-header-menu-button:hover {
    background-color: #1D2088;
    color: #FFFFFF;
}

/* ------------------------------------------------
   搜索框样式
   ------------------------------------------------ */
.search-container {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    width: 146px;
    height: 22px;
    padding: 4px 12px;
    transition: all 0.3s ease;
}

.search-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 14px;
    outline: none;
    transition: width 0.3s ease;
}

.search-input::placeholder {
    color: #ffffff;
    transition: color 0.3s ease;
}


.search-btn {
    min-height: none !important;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ------------------------------------------------
   自定义导航样式 - 手机
   ------------------------------------------------ */
#mobile-nav-box {
    display: none;
}

.mobile-nav .nav-item {
    border-top: 1px solid #f7f7f7;
}

.mobile-nav .nav-item>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    padding: 0 16px;
    font-weight: bold;
}

.mobile-nav .nav-item>a:hover {
    background-color: #f8f8f8;
}

.mobile-nav .dropdown-menu {
    padding: 0 16px;
}

.mobile-nav .dropdown-menu li {
    background-color: #f7f7f7;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 2px;
    margin-bottom: 8px;
}

/* ------------------------------------------------
   站点尾部样式
   ------------------------------------------------ */
.site-footer {
    background-color: #0B4B91;
    padding-top: 32px;
    padding-bottom: 32px;
    color: #FFFFFF;
}

.footer-logo {
    height: 70px;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 50px;
    }
}


.site-footer .shiyedanwei {
    width: 80px;
}
.site-footer  .qr-code{
    display: inline-block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 8px;
}
.site-footer  .qr-code img{
    background-color: #fff;
    padding: 4px;
}
.site-footer  .qr-code p{
    font-size: 16px;
    color: #fff;
    margin-top: 8px;
}


.page-banner{
    height: 370px;
    background-size: cover;
    background-position: center;
    position: relative;
}
@media screen and (max-width: 768px){
    .page-banner{
        height: 200px;
    }
}
.page-banner::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}
.column-title{
    position: relative;
    z-index: 1;
    top: -40px;
    left: -60px;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 60px 0 0;
    width: 260px;
}
.column-title::after{
    content: '';
    position: absolute;
    z-index: 2;
    top: -4px;
    left: -2px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 61, 126, 0.6);
    border-radius: 100px;
}
.column-title img{
    position: relative;
    z-index: 3;
    width: 48px;
    margin-right: 10px;
}
.column-title h3{
    position: relative;
    top: -4px;
    z-index: 3;
    font-size: 34px;
    font-weight: 400;
    font-family: 'QiantuHeiTi', sans-serif;
    color: #fff;
}
@media screen and (max-width: 768px){
.column-title{
    top: -30px;
    left: -60px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    height: 60px;
    padding: 0 60px 0 0;
    width: 220px;
}
.column-title img{
    width: 36px;
    margin-right: 10px;
}
.column-title h3{
    font-size: 24px;
}
}
.breadcrumb{
    padding: 8px 0;
}

/* 单页、详情页 内容区域 */
.news-content{
    padding: 20px 0;
    min-height: 300px;
}
.news-content h2{
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
}

.wp_paging {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    font-family: 'Microsoft Yahei', Verdana, Geneva, sans-serif;
    color: #494949;
    text-align: center;
    padding: 24px;
    padding-bottom: 80px;
    float: none;
}