@charset "utf-8";

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
ul,
ol,
li,
p,
blockquote,
pre,
hr,
figure,
table,
caption,
th,
td,
form,
fieldset,
legend,
input,
button,
textarea,
menu {
    margin: 0;
    padding: 0;
}

header,
footer,
section,
article,
aside,
nav,
hgroup,
address,
figure,
figcaption,
menu,
details {
    display: block;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th {
    text-align: left;
    font-weight: normal;
}

html,
body,
fieldset,
img,
iframe,
abbr {
    border: 0;
 
}

img {
    vertical-align: top;
    width: 100%;
}



html {
    overflow-x: hidden;
 
}

i,
cite,
em,
var,
address,
dfn {
    font-style: normal;
}

[hidefocus],
summary {
    outline: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
small {
    font-size: 100%;
}

sup,
sub {
    font-size: 83%;
}

pre,
code,
kbd,
samp {
    font-family: inherit;
}

q:before,
q:after {
    content: none;
}

textarea {
    overflow: auto;
    resize: none;
}

label,
summary {
    cursor: default;
}

a,
button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
em,
strong,
b {
    font-weight: bold;
}

del,
ins,
u,
s,
a,
a:hover {
    text-decoration: none;
}

body,
textarea,
input,
button,
select,
keygen,
legend {
    font: 13px/1 arial, \5b8b\4f53;
    color: #333;
    outline: 0;
}

:focus {
    outline: 0;
}

/*备用样式表*/
.none {
    display: none;
}

.wcb {
    width: 100%;
    height: 30px;
    border: 2px dashed #97CBE0;
}

.hidden {
    visibility: hidden;
}

.clear {
    width: 100%;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    clear: both;
    display: block;
    _display: inline;
}

.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

.clearfix {
    display: block;
    *zoom: 1;
}

/*css3扩展*/
::-webkit-input-placeholder {
    color: #999;
    font-size: 14px;
}

:-moz-placeholder {
    color: #999;
    font-size: 14px;
}

::-moz-placeholder {
    color: #999;
    font-size: 14px;
}

:-ms-input-placeholder {
    color: #999;
    font-size: 14px;
}

/**布局开始**/
* {
    box-sizing: border-box;
}

body {
    background: #fff;
    line-height: 1;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Noto Sans SC',Arial, sans-serif;
    color: #333;   
    
}

p {
    line-height: 1.75;
}

a {
    color: #333;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

a:hover {
    color: #0060aa;
}

.text-overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hide-text-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.hide-text3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.f_between {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.f_start {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
}

.f_end {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
}

.f_center {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
}

.f_middle {
    display: flex;
    display: -webkit-flex;
    -webkit-align-items: center;
    align-items: center;
}

.f_top {
    display: flex;
    display: -webkit-flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.f_bottom {
    display: flex;
    display: -webkit-flex;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.f_stretch {
    display: flex;
    display: -webkit-flex;
    -webkit-align-items: stretch;
    align-items: stretch;
}

.f_col {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.f_row {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    flex-direction: row;
}

.nowrap {
    -webkit-flex-wrap: nowrap;
    -webkit-box-lines: single;
    -moz-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.wrap {
    -webkit-flex-wrap: wrap;
    -webkit-box-lines: single;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*页面尺寸*/
.wrapper {
    width: 100%;
    margin: 0 auto;
}

.inner {
    width: 1430px;
    margin: 0 auto;
}

/**页面全局宽度**/
.mod {
    padding: 0 15px;
}

.ml {
    float: left;
}

.mr {
    float: right;
}

/*head开始*/
#header {
    background: url(images/topbg.png) no-repeat center bottom;
}

.header .head-left {
    float: left;
    padding: 35px 0;
}

.header .sitelogo {
    width: 400px;
}

.header .sitelogo img {
    width: 80%;
    margin-bottom: -10px;
}

.header .sitetitle {
    font-weight: bold;
    color: #fff;
}

/**站点名称**/
.header .head-right {
    float: right;
    padding-top: 29px;
}

.top_links1 {
    display: block;
    padding-left: 22px;
    background: url(images/user.png) left center no-repeat;
    line-height: 22px;
    font-size: 14px;
    color: #0057a6;
    position: relative;
}

.top_links2 {
    margin-left: 19px;
    width: 24px;
    height: 21px;
    background: #0057a6;
    border-radius: 3px;
    text-align: center;
    line-height: 22px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

/*lang样式*/
.site-lang {
    height: 24px;
}

.site-lang ul li {
    margin-left: 30px;
    float: right;
}

.site-lang ul li.links a {
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    padding-left: 30px;
}

.site-lang ul li:nth-child(1).links a {
    background: url(images/dang.png) left top no-repeat;
}

.site-lang ul li:nth-child(2).links a {
    background: url(images/home.png) left top no-repeat;
}

/*自定义输入框*/
.sousuo {
    margin-top: 24px;
    width: 216px;
    background: #fff;
}

.searchbox {
    width: 100%;
    height: 30px;
    border: 1px solid #e2e2e2;
}

.wp-search {
    position: relative;
    border: 0;
    box-sizing: border-box;
}

.wp-search form {
    display: block;
}

.wp-search .search-input {
    margin-right: 28px;
    color: #fff;
    padding: 0px;
}

.wp-search .search-input input.search-title {
    display: block;
    width: 100%;
    height: 28px;
    line-height: 28px;
    background: #fff;
    color: #818181;
    font-size: 14px;
    border: 0;
    outline: 0;
    font-family: 'Noto Sans SC', sans-serif;
    text-indent: 12px;
}

.wp-search .search-btn {
    width: 28px;
    height: 28px;
    position: absolute;
    right: 0px;
    top: 0px;
}

.wp-search .search-btn input.search-submit {
    width: 28px;
    height: 28px;
    border: 0;
    outline: 0;
    background: #0057a6 url(images/search.png) center center no-repeat;
    cursor: pointer;
}

.wp-search input:-webkit-autofill {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #818181;
}

/*默认主导航样式*/

#nav {
    width: 100%;
    background: linear-gradient(to left, #2a6ca4, #009999);
}

#nav .inner .wp-panel,
#nav .inner .wp-window {
    height: 63px;
}

#nav .inner {
    padding: 0 15px;
}

/*导航样式：后台绑定时也可以定义配置*/
#nav .wp-menu {
    margin: 0 auto;
    width: 100%;
}

#nav .wp-menu .menu-item {
    position: relative;
    width: 12%;
    display: inline-block;
    vertical-align: top;
}

#nav .wp-menu .menu-item a.menu-link {
    display: inline-block;
    width: 100%;
    line-height: 63px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    text-align: center;
}

#nav .wp-menu .menu-item.hover a.menu-link,
.wp-menu .menu-item:hover a.menu-link,
#nav .wp-menu .menu-item a.hover {
    color: #fff;
    background: #0060aa;
}

#nav .wp-menu .menu-item.hover a.menu-link:before,
#nav .wp-menu .menu-item:hover a.menu-link:before {}

#nav .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 63px;
    min-width: 100%;
    z-index: 100;
    background: rgba(53, 115, 162, 0.8);
    border-top: 3px solid #fff;
}

#nav .sub-menu .sub-item {
    position: relative;
    white-space: nowrap;
    vertical-align: top;
    _zoom: 1;
}

#nav .sub-menu .sub-item a {
    display: block;
    color: #fff;
    line-height: 30px;
    padding: 20px 6px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

#nav .sub-menu .sub-item.hover>a,
#nav .sub-menu .sub-item a:hover {
    color: #fff;
    background-color: #0060aa;
    display: block;
}

#nav .sub-menu .sub-menu {
    left: 100%;
    top: 0px;
    z-index: 200;
}

.mbanner {
    position: relative;
    z-index: 2;
}

.mbanner .swiper-wrapper {
    z-index: 1;
}

.mbanner .swiper-button-next,
.mbanner .swiper-button-prev {
    left: auto;
    display: block;
    box-sizing: border-box;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    width: 61px;
    height: 61px;
    display: block;
    z-index: 100;
    cursor: pointer;
    opacity: 1;
    position: absolute;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.mbanner .swiper-button-prev {
    background: url(images/prev1.png) center no-repeat;
    background-size: cover;
    left: 40px;
}

.mbanner .swiper-button-next {
    background: url(images/next1.png) center no-repeat;
    background-size: cover;
    right: 40px;
}

.mbanner .swiper-slide {
    
}

.mbanner .swiper-slide a {
    display: block;
    height: 100%;
}

.mbanner .swiper-slide img {
   
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mbanner .swiper-foot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    /*width: 1400px;*/
}

.mbanner .swiper-bt {
    width: 623px;
    height: 55px;
    background: linear-gradient(to left, rgba(44, 145, 162, 0.8), rgba(2, 98, 170, 0.8));
    font-size: 20px;
    color: #fff;
    padding: 0 30px;
    padding-left: 45px;
    position: relative;
   font-weight: 800;
   letter-spacing: 2px;
}

.mbanner .swiper-bt:before {
    position: absolute;
    content: '';
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 23px;
    background: #fff;
}

/**首页布局**/
.main1 {
    padding: 70px 0px 0px 0px;
}

.main2 {
    position: relative;
    background: #f1f8fc;
    margin-top: -102px;
    padding-top: 180px;
    padding-bottom: 75px;
}

.main3 {
    padding: 73px 0px 100px 0px;
}

.main4 {
    padding: 82px 0px;
    background: #ebf5fb;
}

.img_con img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1, 1);
    -webkit-transition: 1.5s all ease;
    -ms-transition: 1.5s all ease;
    transition: 1.5s all ease;
}

.img_con:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transition: 1.5s all ease;
    -ms-transition: 1.5s all ease;
    transition: 1.5s all ease;
}

.title_01 {
    height: 56px;
}

.title_01 .bt1 {
    position: relative;
    padding-left: 36px;
    line-height: 56px;
    font-size: 36px;
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: bold;
    color: #1476a7;
    background-image: -webkit-linear-gradient(bottom, #2e92a2, #0060aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title_01 .bt1:before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 56px;
    background: #1476a7;
}

.title_01 .tab-more {
    width: 80px;
    height: 32px;
    border: 2px solid #1c7fa5;
    font-size: 16px;
    font-weight: bold;
    color: #0057a6;
    border-radius: 3px;
}

.title_01 .tab-more a {
    display: none;
    color: #0057a6;
}

.title_01 .tab-more a:first-child {
    display: block;
    line-height: 28px;
}

.title_01.half {
    position: relative;
}

.title_01.half .bt1 {
    padding: 0 17px;
    position: relative;
}

.title_01.half .bt1:before {
    position: absolute;
    content: '';
    left: -107px;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 1px;
    background: #3f81bd;
}

.title_01.half .bt1:after {
    position: absolute;
    content: '';
    right: -107px;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 1px;
    background: #3f81bd;
}

.title_01.half .tab-more {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.tab-box {
    position: relative;
}

.tab-list {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: .5s all ease;
}

.tab-list.actived {
    position: relative;
    z-index: 10;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: 1s all ease;
}

.main1 .tab-menu {
    position: relative;
    z-index: 10;
    margin-top: 30px;
    margin-bottom: 50px;
    height: 33px;
}

.main1 .tab-menu li {
    margin-right: 35px;
    padding: 0 15px;
    border-radius: 12px;
    line-height: 34px;
    height: 34px;
    font-size: 18px;
    font-weight: 600;
    color: #9f9f9f;
    cursor: pointer;
    transition: .3s all ease;
}

.main1 .tab-menu li.selected {
    background: linear-gradient(to bottom, #2c91a2, #0161aa);
    color: #fff;
}

.main2 .tab-menu {
    margin-top: 20px;
    margin-bottom: 50px;
    height: 50px;
}

.main2 .tab-menu li {
    margin: 0 40px;
    padding: 0 7px;
    line-height: 43px;
    height: 50px;
    font-size: 18px;
    font-weight: 600;
    color: #9f9f9f;
    cursor: pointer;
    position: relative;
    transition: .3s all ease;
}

.main2 .tab-menu li i {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 0;
    height: 7px;
    border-radius: 4px;
    background: linear-gradient(to right, #2a6ca4, #009999);
    transition: .3s all ease;
}

.main2 .tab-menu li.selected {
    color: #1476a7;
    background-image: -webkit-linear-gradient(bottom, #2e92a2, #0060aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main2 .tab-menu li.selected i {
    width: 100%;
}

.main2 .tab-menu li.selected i:before {
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 5px solid #fff;
}

.main3_01 .tab-menu {
    margin-top: 50px;
    margin-bottom: 50px;
    height: 32px;
}

.main3_01 .tab-menu ul {
    position: relative;
}

.main3_01 .tab-menu ul:before {
    position: absolute;
    z-index: 1;
    content: '';
    left: 34px;
    right: 34px;
    top: 50%;
    height: 1px;
    background: #535353;
}

.main3_01 .tab-menu li {
    position: relative;
    z-index: 2;
    margin: 0 34px;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .15);
    padding: 0 11px;
    height: 32px;
    cursor: pointer;
    transition: .3s all ease;
}

.main3_01 .tab-menu li span {
    display: block;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #9f9f9f;
}

.main3_01 .tab-menu li.selected {
    position: relative;
    z-index: 2;
    border: 1px solid #1576a6;
}

.main3_01 .tab-menu li.selected span {
    color: #1476a7;
    background-image: -webkit-linear-gradient(bottom, #2e92a2, #0060aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main3_02 .tab-menu {
    margin-top: 37px;
}

.main3_02 .tab-menu ul {
    position: relative;
    border-bottom: 2px solid #2e92a2;
    padding-bottom: 20px;
}

.main3_02 .tab-menu li {
    position: relative;
    margin: 0 50px;
    background: #fff;
    padding: 0 10px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #9f9f9f;
    cursor: pointer;
    transition: .3s all ease;
}

.main3_02 .tab-menu li:before {
    position: absolute;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    bottom: -7px;
    width: 14px;
    height: 7px;
    background: url(images/ind_45.png) no-repeat;
}

.main3_02 .tab-menu li.selected {
    position: relative;
    color: #fff;
    background: linear-gradient(to bottom, #2e92a2, #0161aa);
}

.main4 .mr .tab-menu {
    margin-top: 32px;
    margin-bottom: 39px;
    height: 34px;
}

.main4 .mr .tab-menu li {
    position: relative;
    margin: 0 27px;
    padding: 0 12px;
    line-height: 34px;
    height: 34px;
    font-size: 18px;
    font-weight: 600;
    color: #9f9f9f;
    cursor: pointer;
    transition: .3s all ease;
}

.main4 .mr .tab-menu li.selected {
    color: #292929;
}

.main4 .mr .tab-menu li.selected:before {
    position: absolute;
    z-index: 1;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(to bottom, #2e92a2, #0161aa);
    ;
}

.main1 .tab-box {
    position: relative;
    z-index: 10;
}

.tab-box1 .swiper-container {
    width: 100%;
}

.tab-box1 .swiper-wrapper {
    height: auto;
}

.tab-box1 .swiper-slide {
    width: 425px;
    padding: 20px;
    position: relative;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    box-sizing: border-box;
}

.tab-box1 .swiper-button-prev {
    cursor: pointer;
    position: absolute;
    right: auto;
    left: -60px;
    width: 36px;
    height: 36px;
    margin-top: 0;
    border-radius: 50%;
    background: url(images/prev2.png) no-repeat;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.tab-box1 .swiper-button-next {
    cursor: pointer;
    position: absolute;
    left: auto;
    right: -60px;
    width: 36px;
    height: 36px;
    margin-top: 0;
    border-radius: 50%;
    background: url(images/next2.png) no-repeat;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.tab-box1 .swiper-slide .card1 {
    display: block;
    border-radius: 6px;
    padding: 8px 7px;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .25);
    -webkit-transition: .3s all ease;
    -ms-transition: .3s all ease;
    transition: .3s all ease;
}

.tab-box1 .card1 .img_con {
    width: 100%;
    padding-top: 56%;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.tab-box1 .card1 .slide_con {
    padding: 25px 6px;
}

.tab-box1 .card1 .slide_con .bt {
    line-height: 28px;
    height: 56px;
    font-size: 16px;
    font-weight: 600;
    color: #272727;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tab-box1 .card1 .slide_con .wz {
    margin-top: 8px;
    line-height: 26px;
    height: 52px;
    font-size: 14px;
    font-weight: 600;
    color: #808080;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tab-box1 .card1 .slide_con .bot {
    margin-top: 26px;
    height: 28px;
}

.tab-box1 .card1 .slide_con .time {
    padding-left: 28px;
    line-height: 28px;
    font-size: 14px;
    color: #0057a6;
    background: url(images/time.png) 8px center no-repeat;
}

.tab-box1 .card1 .slide_con .more {
    width: 49px;
    height: 28px;
    background-image: url(images/more.png), linear-gradient(to left, #2a6ca4, #009999);
    background-repeat: no-repeat;
    background-position: center;
}

.tab-box1 .swiper-slide .card1:hover {
    transform: translateY(-10px);
}

.tab-box1 .swiper-slide .card1:hover .bt {
    color: #0057a6;
}

.tab-box2 {
    overflow: hidden;
}

.tab-box2 .swiper-wrapper {
    padding-bottom: 50px;
    display: flex;
    display: -webkit-flex;
    -webkit-align-items: stretch;
    align-items: stretch;
}

.tab-box2 .swiper-slide {
    width: 394px;
    height: calc(100%);
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    box-sizing: border-box;
}

.tab-box2 .swiper-pagination {
    width: auto;
    bottom: 0px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin: 0 auto;
    height: 33px;
}

.tab-box2 .swiper-pagination-clickable .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 9px;
    border-radius: 5px;
    background: #fff;
    border: 1px solid #0057a6;
    opacity: 1;
    position: relative;
}

.tab-box2 .swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 94px;
    background: #0057a6;
}

.tab-box2 .swiper-slide .card2 {
    position: relative;
    display: block;
    box-shadow: 15px 15px 10px rgba(0, 0, 0, .25);
    -webkit-transition: .3s all ease;
    -ms-transition: .3s all ease;
    transition: .3s all ease;
}

.tab-box2 .card2 .img_con {
    width: 100%;
    padding-top: 56%;
    position: relative;
    overflow: hidden;
}

.tab-box2 .card2 .slide-bt {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 146px;
    height: 42px;
    border: 1px solid #fff;
    background-image: linear-gradient(to left, #2a6ca4, #009999);
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tab-box2 .swiper-slide-active.swiper-slide .card2 {
    margin-left: -40px;
    margin-right: -40px;
    margin-top: -20px;
}

.tab-box3 {
    margin-top: 25px;
    margin-bottom: 45px;
}

.tab-box3 .swiper-button-prev {
    cursor: pointer;
    position: absolute;
    right: auto;
    left: -60px;
    width: 36px;
    height: 36px;
    margin-top: 0;
    border-radius: 50%;
    background: url(images/prev2.png) no-repeat;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.tab-box3 .swiper-button-next {
    cursor: pointer;
    position: absolute;
    left: auto;
    right: -60px;
    width: 36px;
    height: 36px;
    margin-top: 0;
    border-radius: 50%;
    background: url(images/next2.png) no-repeat;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.tab-box3 .swiper-slide {
    width: 240px;
    padding: 20px;
    position: relative;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    box-sizing: border-box;
}

.tab-box3 .swiper-slide .card3 {
    position: relative;
    display: block;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .25);
    -webkit-transition: .3s all ease;
    -ms-transition: .3s all ease;
    transition: .3s all ease;
}

.tab-box3 .card3 .img_con {
    width: 100%;
    padding-top: 122%;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.tab-box3 .card3 .slide-bt {
    opacity: 1;
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 0;
    width: 142px;
    height: 36px;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    line-height: 36px;
    font-size: 16px;
    font-weight: 600;
    color: #0057a6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tab-box3 .card3 .slide-info {
    position: absolute;
    z-index: 4;
    top: 150%;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: linear-gradient(to bottom, rgba(42, 108, 164, 0.8), rgba(0, 153, 153, 0.8));
    padding: 36px 14px 10px;
    color: #fff;
}

.tab-box3 .card3 .slide-info .bt {
    line-height: 30px;
    font-size: 20px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tab-box3 .card3 .slide-info .wz {
    margin-top: 14px;
    line-height: 30px;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.tab-box3 .card3 .slide-info .more {
    margin-top: 34px;
    line-height: 24px;
    font-size: 12px;
    text-align: right;
    padding-right: 24px;
    background: url(images/more2.png) right center no-repeat;
}

.tab-box3 .card3:hover .slide-bt {
    opacity: 0;
    -webkit-transition: .3s all ease;
    -ms-transition: .3s all ease;
    transition: .3s all ease;
}

.tab-box3 .card3:hover .slide-info {
    top: 0;
    -webkit-transition: .3s all ease;
    -ms-transition: .3s all ease;
    transition: .3s all ease;
}

.main_03con2 ul {
    position: relative;
    margin: 0 -18px;
}

.main_03con2 ul li {
    width: calc(50% - 36px);
    margin: 0 18px;
    margin-top: 34px;
    background: #fff;
    box-shadow: 0 0px 18px rgba(0, 0, 0, .3);
    border-radius: 15px;
    padding: 10px 0;
    padding-right: 10px;
    position: relative;
}

.main_03con2 li .info {
    width: calc(100% - 255px);
    padding: 5px 25px;
}

.main_03con2 .news_title {
    font-size: 18px;
    line-height: 36px;
    height: 72px;
    font-weight: bold;
    color: #121212;
}

.main_03con2 li a:hover .news_title {
    color: #0262aa;
}

.main_03con2 .news_bt {
    color: #1476a7;
    background-image: -webkit-linear-gradient(left, #2e92a2, #0060aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main_03con2 .news_time {
    margin-top: 16px;
    padding-top: 18px;
    line-height: 14px;
    padding-left: 28px;
    background: url(images/time.png) left bottom no-repeat;
    font-size: 14px;
    color: #0161aa;
    position: relative
}

.main_03con2 .news_time:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 120px;
    height: 2px;
    background: #0057a6;
}

.main_03con2 .news_img {
    display: block;
    width: 255px;
}

.main_03con2 .img_con {
    width: 100%;
    padding-top: 73%;
    position: relative;
    overflow: hidden;
    background: #f3f3f3;
    border-radius: 6px;
}

.main4 .ml {
    width: 31%;
}

.main4 .mr {
    width: 65.7%;
}

.main4 .list_item li {
    margin-top: 10px;
    height: 103px;
    /* background: url(images/btbg.png) no-repeat; */
    background-size: cover;
}

.main4 .list_item li:first-child {
    margin-top: 50px;
}

.main4 .list_item li a {
    height: 100%;
    position: relative;
    /* padding: 0 70px 0 35px; */
}

.main4 .list_item li .bt {
    line-height: 32px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.main4 .list_item li .more {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: url(images/ind_52.png) no-repeat;
}

.main4 .list_item li:hover {
    transform: translateX(10px);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, .35);
    -webkit-transition: .3s all ease;
    -ms-transition: .3s all ease;
    transition: .3s all ease;
}

.tab-box4 {
    overflow: hidden;
}

.tab-box4 .swiper {
    width: 100%;
    height: 300px;
}

.tab-box4 .swiper-wrapper {
    padding-bottom: 45px;
    display: flex;
    display: -webkit-flex;
    -webkit-align-items: stretch;
    align-items: stretch;
}

.tab-box4 .swiper-slide {
    width: 46%;
    height: 112px;
}

.tab-box4 .swiper-pagination {
    width: auto;
    bottom: -12px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin: 0 auto;
    height: 33px;
}

.tab-box4 .swiper-pagination-clickable .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 6px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #9c9c9c;
    opacity: 1;
    position: relative;
}

.tab-box4 .swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 54px;
    background: #9c9c9c;
}

.tab-box4 .swiper-slide .card4 {
    position: relative;
    display: block;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .25);
    -webkit-transition: .3s all ease;
    -ms-transition: .3s all ease;
    transition: .3s all ease;
}

.tab-box4 .card4 .img_pic {
    width: 100%;
    height: 112px;
    position: relative;
    overflow: hidden;
}

.tab-box4 .card4 .img_pic img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    width:  auto;
    height: auto;
    object-fit: cover;
    transform: scale(1, 1);
    -webkit-transition: 1.5s all ease;
    -ms-transition: 1.5s all ease;
    transition: 1.5s all ease;
    max-height: 100%;
}

.tab-box4 .card4:hover {
    box-shadow: 0px 0px 20px rgba(0, 87, 166, .75);
}

.tab-box4 .card4:hover .img_pic img {
    transform: scale(1.1, 1.1)
}

/**页脚开始**/
#footer {
    background: url(/upload/2024/0429/1f9dfb2d-ae04-46ad-b7df-098ed492ffec.jpg) no-repeat center;
    background-size: cover;
    box-sizing: border-box;
}

.footer-top {
    position: relative;
    padding: 60px 0px;
}

.footer .ml_logo {
    float: left;
    width: 466px;
    margin-top: 20px;
    display: none;
}

.footer .ml_logo img {
    width: 100%;
 
}

.footer .mr {
    float: right;
    padding-right: 130px;
    padding-top: 20px;
    position: relative;
    margin-right: 400px
}

.fot_01 {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 20px;
}

.fot_02 p {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 22px;
    margin-top: 10px;
}

.fot_03 {
    position: absolute;
    top: 10px;
    right: 0;
    width: 70px;
    height: 70px;
}

.fot_03 img {
    width: 70px;
    height: 70px;
    margin: 16 0  0 36px;
}

.copywz {
    border-top: 1px solid #fff;
    padding: 15px;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 30px;
    text-align: center;
}

.copywz a {
    border-top: 0px solid #fff;
}

/*滚动Arrows */
.slick-prev,
.slick-next,
.slick-prev:hover,
.slick-next:hover {
    height: 62px;
    width: 60px;
    background: url(images/slickarrow2.png) no-repeat;
    top: 50%;
    margin-top: -30px;
    border: 0px solid #d4d8d9;
    border-radius: 50%;
    outline: none;
}

.slick-prev {
    left: -95px;
    background-position: 0px 0px;
}

.slick-prev:hover {
    background-position: 0px 0px;
    opacity: .8;
    filter: Alpha(opacity=80);
}

.slick-prev:before {
    content: '';
}

.slick-next {
    right: -95px;
    background-position: right 0px;
}

.slick-next:hover {
    background-position: right 0px;
    opacity: .8;
    filter: Alpha(opacity=80);
}

.slick-next:before {
    content: '';
}


.post .con .wp_article_list .list_item {
    border-bottom: 1px dashed #ccc;
}

/**新闻列表**/
.post .con .wp_article_list .list_item .Article_Index {
    background: url(images/li.gif) no-repeat center;
}

/***********************************************************
 * 列表页
 */
/**首页三列布局**/
/**列表页**/
/*栏目图片*/
.column-banner {
    position: relative;
    height: 180px;
    text-align: left;
    background-image: url(images/banner.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.l-banner {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    overflow: hidden;
}

.l-banner img {
    display: none;
    vertical-align: top;
    height: 100%;
}

.column-banner .inner {
    padding: 0 20px;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0px;
    margin: 0 auto;
}

.column-breadcrumb {
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
    padding: 0px 15px;
}

.column-breadcrumb a {
    color: #000;
}

.column-root-name {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    display: none;
}


/**主体列表页开始**/
#l-container {}

#l-container .inner {
    padding: 23px 0px;
    box-sizing: border-box;
}

/**主体文章页开始**/
#d-container {}

#d-container .inner {
    background: #fff;
}

.col_menu {
    width: 240px;
    float: left;
    margin-right: -270px;
    position: relative;
}

.col_menu .l-qh {
    margin-bottom: 10px;
}

.col_menu .col_menu_head {
    background: linear-gradient(to bottom, #2c91a2, #0161aa);
}

/**位置栏目背景**/
.col_menu .col_menu_head h3.col_name {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

/**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text {
    display: block;
    line-height: 30px;
    padding: 15px 5px 15px;
    text-align: center;
}

/**栏目名称图标**/
.col_menu .col_menu_con {
    border: 0px solid #e4e4e4;
}

/*栏目列表*/
.col_list {}

.col_list .wp_listcolumn {
    border-top: 0px solid #49733b;
    border-bottom: 0px solid #fff;
    background: #f7f7f7;
}

.col_list .wp_listcolumn .wp_column a {
    color: #333;
    font-size: 16px;
    font-weight: normal;
    background: none;
    display: block;
    position: relative;
}

.col_list .wp_listcolumn .wp_column {
    border-bottom: 1px solid #efefef;
}

.col_list .wp_listcolumn .wp_column a .column-name {
    display: block;
    padding: 12px 30px 12px 30px;
    line-height: 26px;
}

.col_list .wp_listcolumn .wp_column a:hover,
.col_list .wp_listcolumn .wp_column a.selected,
.col_list .wp_listcolumn .wp_column.parent>a {
    color: #fff;
    background: #1476a7;
}

.col_list .wp_listcolumn .wp_column a:hover:before,
.col_list .wp_listcolumn .wp_column a.selected:before {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #0060aa;
}

.col_list .wp_listcolumn .wp_column a.selected span.column-name {
    color: #FFF;
}

.col_list .wp_listcolumn .wp_column.parent>a .column-name {
    font-weight: bold;
}

/*二级子栏目**/
.col_list .wp_listcolumn .wp_subcolumn .wp_column {
    border-bottom: 0px solid #bbb;
}

.col_list .wp_listcolumn .wp_subcolumn .wp_column a {
    color: #454545;
    background: none;
    border-top: 1px solid #fff;
    padding-left: 20px;
    font-size: 16px;
}

.col_list .wp_listcolumn .wp_subcolumn .wp_column a .column-name {
    padding: 10px 30px 10px 30px;
    line-height: 26px;
}

.col_list .wp_listcolumn .wp_subcolumn .wp_column a:hover,
.col_list .wp_listcolumn .wp_subcolumn .wp_column a.selected {
    color: #fff;
    background: #1476a7;
}

/**栏目新闻**/
.col_news {
    width: 100%;
    float: right;
}

.col_news .col_news_box {
    margin-left: 280px;
}

.colum-box {
    box-shadow: 0px 0px 16px 4px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.col_news_head {
    height: 4px;
    background: linear-gradient(to left, #2a6ca4, #009999);
}

.col_metas .col_title {
    height: 60px;
}

/**当前栏目**/
.col_metas .col_title h2 {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    line-height: 60px;
}

.col_metas .col_path {
    padding-left: 34px;
    background: url(images/home.png) left center no-repeat;
    display: inline-block;
    float: right;
    white-space: nowrap;
    height: 60px;
    line-height: 60px;
    color: #fff;
}

/**当前位置**/
.col_metas .col_path a {
    color: #fff;
    font-size: 18px;
}

.col_metas .col_path #line {
    display: inline;
}

.col_news_con {
    padding: 0px 0px 60px 0px;
    margin: 0 0px;
}



.news_list2 li {
    padding: 30px 40px;
    border-bottom: 1px solid #e0e0e0;
}

.news_list2 li .news-card {
    display: block;
    padding-left: 290px;
    position: relative;
    min-height: 140px;
    padding-top: 5px;
}

.news_list2 li .pic {
    position: absolute;
    left: 0;
    top: 0px;
    width: 250px;
    height: 140px;
    overflow: hidden;
}

.news_list2 li .pic img {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
   
    object-fit: cover;
    transform: scale(1, 1);
    -webkit-transition: 1.5s all ease;
    -ms-transition: 1.5s all ease;
    transition: 1.5s all ease;
}

.news_list2 li .news-card:hover .pic {
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
}

.news_list2 li .news-card:hover .pic img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.news-card .bt {
    line-height: 28px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    -webkit-transition: .5s all ease;
    -ms-transition: .5s all ease;
    transition: .5s all ease;
}

.news-card:hover .bt {
    color: #0060aa;
}

.news-card .wz {
    margin-top: 10px;
    min-height: 52px;
    line-height: 26px;
    font-size: 16px;
    color: #444;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-card .bot {
    margin-top: 15px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    color: #999;
}

.news_list1 li {
    padding: 0px 40px;
    margin-top: 30px;
}

.news_list1 li .news-item {
    display: block;
    border-radius: 3px;
    background: #f0f0f0;
    padding: 17px 40px 17px 10px;
    position: relative;
    padding-left: 136px;
    min-height: 122px;
}

.news_list1 .date {
    position: absolute;
    top: 17px;
    left: 10px;
    width: 92px;
    height: 88px;
    border-right: 1px solid #cecece;
}

.news_list1 .date .time1 {
    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
    color: #0060aa;
}

.news_list1 .date .time2 {
    font-size: 18px;
    color: #323333;
    line-height: 24px;
}

.news-item .bt {
    line-height: 34px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    -webkit-transition: .5s all ease;
    -ms-transition: .5s all ease;
    transition: .5s all ease;
    margin-bottom: 2px;
}

.news-item:hover .bt {
    color: #0060aa;
}

.news-item .wz {
    min-height: 48px;
    line-height: 24px;
    font-size: 16px;
    color: #444;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


.news_list3 li {
    width: 33%;
    padding: 30px 0;
    text-align: center;
}

.news_list3 li .photo {
    width: 240px;
    height: 290px;
    margin: 0 auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #333;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    -webkit-transition: .3s all ease;
    -ms-transition: .3s all ease;
    transition: .3s all ease;
}

.news_list3 li:hover .photo {
    box-shadow: 0 10px 15px rgba(0, 0, 0, .2);
}

.news_list3 li .bt {
    padding: 15px 0 5px;
    font-size: 18px;
    font-weight: 600;
    color: #14435b;
    -webkit-transition: .3s all ease;
    -ms-transition: .3s all ease;
    transition: .3s all ease;
}

.news_list3 li:hover .bt {
    color: #0060aa;
}

.news_list3 li .wz {
    max-width: 220px;
    width: 100%;
    height: 52px;
    line-height: 26px;
    margin: 0 auto;
    color: #666;
}

.news_list4 li {
    width: 33%;
    padding: 0 20px;
    margin-bottom: 28px;
}

.news-img-report {
    position: relative;
    width: 100%;
    margin: 0 auto;
   padding-top: 45%; 
   
    overflow: hidden;
    background-color: #ffff;
}


.news-img-report .imgsc  {
    position: absolute;
      left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
      height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: .5s all ease;
    -ms-transition: .5s all ease;
    transition: .5s all ease;

}





.news-img-report .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: .5s all ease;
    -ms-transition: .5s all ease;
    transition: .5s all ease;
}


.news_list4 li:hover .news-img-report img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);


}
.news_list4 li:hover .bta{
   color: #1476a7;
 

}

.news-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    border-bottom: 1px solid #919191;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
    -webkit-transition: .3s all ease;
    -ms-transition: .3s all ease;
    transition: .3s all ease;
}

.news-content .time {
    position: absolute;
    left: 30px;
    top: -15px;
    padding: 0 15px;
    height: 24px;
    line-height: 24px;
    color: #fff;
    background-image: linear-gradient(to left, #2a6ca4, #009999);
    background-repeat: no-repeat;
}

.news_list4 li .bt {
    padding: 15px 0 5px;
    font-size: 18px;
    font-weight: 600;
    color: #14435b;
    -webkit-transition: .3s all ease;
    -ms-transition: .3s all ease;
    transition: .3s all ease;
}

.news_list4 li:hover .bt {
    color: #0060aa;
}

.news_list4 li .wz {
    width: 100%;
    height: 52px;
    line-height: 26px;
    margin: 0 auto;
    color: #666;
}

.col_news_list .wp_article_list .list_item {}

/**栏目新闻列表**/
.col_news_list .wp_article_list .list_item .Article_Index {}

/**栏目新闻图标序号**/
.col_news_list .wp_entry,
.col_news_list .wp_entry p {
    line-height: 1.75;
    font-size: 14px;
    color: #333;
}

.col_news_list .wp_entry p {
    margin-bottom: 10px;
}

.col_news_list .wp_entry table {
    margin-bottom: 4px;
}

.col_news_list .wp_entry img {
    max-width: 800px;
    _width: expression(this.width > 800 ? "800px" : this.width);
}

/**列表页文章图片大小限制**/
/**文章页**/
.page2 .col_menu {
    width: 100%;
    float: none;
    margin-right: 0px;
    position: relative;
}

.page2 .col_news {
    width: 100%;
    min-height: 0px;
    float: none;
}

/**栏目新闻**/
.page2 .col_news .col_news_box {
    margin-left: 0;
    margin-right: 0;
}

.page2 .col_news_con {
    padding: 100px;
}

.infobox {
    padding: 20px 60px;
    margin: 0 auto;
    width: auto;
}

.article {
    padding-top: 10px;
}

.article h1.arti_title {
    line-height: 42px;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color: #1476a7;
    background-image: -webkit-linear-gradient(bottom, #2e92a2, #0060aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
}

/**文章标题**/
.article h2.arti_title {
    line-height: 34px;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 16px;
    text-align: center;
    color: #1B1B1B;
}

/**文章副标题**/
.article .arti_metas {
    padding: 14px 0px 16px;
    line-height: 30px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.article .arti_metas span {
    margin: 0 5px;
    font-size: 14px;
    color: #999;
}

/**文章其他属性**/
.article .entry {
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

/**文章内容**/
.article .entry .read,
.article .entry .read p {
    line-height: 1.75;
    font-size: 18px;
    color: #333;
}

.article .entry .read th,
.article .entry .read td {
    margin:5px 5px;
padding:5px 5px;
}

/**阅读字体**/
.article .entry .read p {
    margin-bottom: 10px;
}

.article .entry .read img {
    margin: 0 auto;
    max-width: 940px;
    _width: expression(this.width > 940 ? "940px" : this.width);
}

/**文章阅读部分图片大小限制**/
.article .entry .read table {
    margin: 0 auto;
    border: none !important;
}

/**************************************************************
 * 组件功能
 */

/* 分享二维码 */
.shares {
    text-align: center;
}

.shares ul {
    width: auto;
    margin: 0 auto;
    text-align: right;
    float: right;
}

.shares li {
    float: left;
    margin: 0 6px;
    position: relative;
}

.shares li a {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 0px solid red;
    background: url('images/share_icon.png') no-repeat;
    opacity: .6;
    filter: Alpha(opacity=60);
    vertical-align: top;
}

.shares li a:hover {
    opacity: 1;
    filter: Alpha(opacity=100);
}

.shares li.i1 a {
    background-position: 0px 0px;
}

.shares li.i2 a {
    background-position: -72px 0px;
}

.shares li.i3 a {
    background-position: -144px 0px;
}

.shares li span {
    display: block;
    line-height: 22px;
    font-size: 12px;
    color: #D0D4EA;
    text-align: center;
}

.shares li .con {
    display: none;
    position: absolute;
    bottom: 80px;
    left: 50%;
    z-index: 100;
    margin-left: -50px;
    width: 100px;
}

.shares li .con img {
    width: 90px;
    height: 90px;
    vertical-align: top;
    background: #fff;
}

/**友情链接**/
.botlinks .links-wrap {
    position: relative;
    width: 350px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    border: 0;
    border-radius: 20px;
}

.botlinks .links-wrap a.links-arrow {
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0 50px 0 25px;
    color: #999;
    font-size: 16px;
    background: url(images/arrow.png) no-repeat right top;
}

.botlinks .links-wrap a.links-arrow:hover,
.botlinks .wrap-open a.links-arrow {
    color: #333;
    background-position: right bottom;
    cursor: pointer;
}

.botlinks .links-wrap .link-items {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    height: auto;
    max-height: 300px;
    overflow: auto;
    overflow-x: hidden;
    background: #fff;
    border-radius: 6px;
}

.botlinks .links-wrap .link-items a {
    display: block;
    line-height: 24px;
    padding: 5px 25px;
    color: #444;
}

.botlinks .links-wrap .link-items a span {
    display: block;
    white-space: nowrap;
}

.botlinks .links-wrap .link-items a:hover {
    color: #333;
    background: #f5f5f5;
    cursor: pointer;
}

/**链接样式**/



/*二级页面*/
/*组织机构*/
.inss .part_xy {}

.inss .part_xy .item {}

.inss .part_xy .item h3 {
    line-height: 40px;
    padding-left: 0px;
    font-size: 16px;
    font-weight: normal;
    color: #1567B1;
    border-bottom: 1px solid #cecece;
}

.inss .part_xy .sub-box {
    float: left;
    width: 100%;
    padding-top: 0px;
    padding-bottom: 5px;
}

.inss .part_xy .sub-list {
    margin-right: 0px;
}

.inss .part_xy .sub-list .sub-item {
    float: left;
    width: 33.3%;
    background: url(images/icon_arrow2.png) no-repeat left center;
}

.inss .part_xy .sub-list .sub-item a {
    line-height: 35px;
    padding-left: 10px;
    font-size: 14px;
}

.inss .part_xy .sub-img {
    display: none;
    float: right;
    margin-top: 15px;
    margin-left: -250px;
    width: 240px;
    min-height: 80px;
}

.inss .part_xy .item.i5 .sub-list .sub-item {
    width: 50%;
}

/*角色*/
.role .part_xy {}

.role .part_xy .item {
    margin-bottom: 10px;
    display: none;
}

.role .part_xy .item.selected {
    display: block;
}

.role .part_xy .item h3 {
    display: none;
    line-height: 46px;
    padding-left: 0px;
    font-size: 20px;
    font-weight: bolder;
    color: #068358;
    border-bottom: 1px solid #f1f1f1;
    background: none;
}

.role .part_xy .sub-list {
    margin-top: 15px;
}

.role .part_xy .sub-list .sub-item {
    padding-top: 10px;
    padding-bottom: 5px;
    width: auto;
    border-bottom: 1px solid #f1f1f1;
    word-wrap: break-word;
    word-break: normal;
}

.role .part_xy .sub-list .sub-item a {
    line-height: 35px;
    font-size: 15px;
    white-space: nowrap;
    font-weight: bolder;
    /* color: #068358; */
}

.role .part_xy .sub-list .sub-list {
    margin-top: 10px;
    margin-left: 40px;
}

.role .part_xy .sub-list .sub-list .sub-item {
    padding-bottom: 5px;
    padding-top: 0px;
    float: left;
    margin-right: 50px;
    border-bottom: 0px solid #f1f1f1;
}

.role .part_xy .sub-list .sub-list .sub-item a {
    line-height: 35px;
    font-size: 15px;
    white-space: nowrap;
    font-weight: normal;
    /* color: #333; */
}


.es_pagingbar_container .es_pagingbar li.active {
    background: #0060aa;
    color: #fff;
    border-color: #0060aa;
}

.es_pagingbar_container .es_pagingbar li.active a {
    color: #fff;
}

/* G改图片 */

.f_pic {
    width: 100%;
    height:100%;
    margin: 0 auto;


}
.list_item li {
    text-align: center;
    border: 1px solid #e0e0e0;
    
}

.es_list_singlearticle .title {
padding: 30px 40px; 
font-size: 30px;
font-weight: 800;
color: #1476a7;
box-sizing: border-box;

}
.es_list_singlearticle .content {
padding: 30px 40px ;
font-family: 'Noto Sans SC', sans-serif !important;

}
.es_list_singlearticle .content span,
.es_list_singlearticle .content p,
.es_list_singlearticle .content a,
.es_list_singlearticle .content strong
{
    font-family: 'Noto Sans SC', sans-serif !important;
}
.entry p,
.entry span,
.entry a{
    font-family: 'Noto Sans SC', sans-serif !important;
}
.es_article_content img {
width:auto;
}

.read img {
width:auto;
}

.news_list4 li .bta {
    /* padding: 15px 0 5px; */
    font-size: 18px;
    font-weight: 600;
    color: #14435b;
    -webkit-transition: .3s all ease;
    -ms-transition: .3s all ease;
    transition: .3s all ease;
}


.news-img-reportss {
    position: relative;
    width: 100%;
    margin: 0 auto;
   padding-top: 71%; 
   
    overflow: hidden;
    background-color: #ffff;
}
.news-img-reportss .imgsc  {
    position: absolute;
      left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
      height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: .5s all ease;
    -ms-transition: .5s all ease;
    transition: .5s all ease;

}


.imgsaa img {
    float: left;
    width: calc(33.3% - 17px);
}


   .wp_listcolumn .wp_column .wp_subcolumn .wp_column .wp_subcolumn {
    background:#d3dede57;
font-size:14px

   }

.wp_listcolumn .wp_column .wp_subcolumn .wp_column .wp_subcolumn .wp_column a  {
 
    font-size: 14px;
padding-left: 40px;

}