﻿
#标签初始化----------------------------------------{}
*, :after, :before{-webkit-box-sizing: border-box; box-sizing: border-box;}
*{word-wrap:break-word}
html,body,h1,h2,h3,h4,h5,h6,hr,p,iframe,dl,dt,dd,ul,ol,li,pre,form,button,input,textarea,th,td,fieldset{margin:0;padding:0}
ul,ol,dl{list-style-type:none}
html,body{*position:static;-webkit-text-size-adjust:none;}
html{font-family: sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}
address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:400}
input,button,textarea,select,optgroup,option{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit}
input,button{overflow: visible;vertical-align:middle;outline:none}
h1,h2,h3,h4,h5,h6{font-size:100%}
a,area{outline:none;/*blr:expression(this.onFocus=this.blur())*/}
a{text-decoration:none;cursor: pointer}
a:hover{outline:none; color:#333}
a.ie6:hover{zoom:1}
a:focus{outline:none}
a:hover,a:active{outline:none}:focus{outline:none}
sub,sup{vertical-align:baseline}
button,input[type="button"], input[type="submit"] {line-height:normal !important;}


#字体----------------------------------------{}
html {
    font-size: 100%;
    font-weight: 100;
    color: #343434;
}

body {
    color: #343434;
}

a, a:visited {
    color: #343434;
}

a:hover {
    color:#dd0000;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 400;
}

.font_normal {
    font-size: 16px;
    font-weight: 400;
}

.font_small {
    font-size: 14px;
    font-weight: 100;
}

.font_middle {
    font-size: 20px;
    font-weight: 400;
}

.font_big {
    font-size: 24px;
    font-weight: 600;
}


#视图----------------------------------------{}
.view_root {
    width: 100%;
}

@media (min-width: 1940px) {
    .view_root {
        width: 1900px;
        margin: 0 auto;
    }
}

.view_sub {
    width: 1370px;
    height: 100%;
    margin: 0 auto;
}

@media (max-width: 1370px) {
    .view_sub {
        width: 100%;
    }
}

.view_box {
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1370px) {
    .view_box {
        padding: 0 10px;
    }

    .navview .view_box, .bannerview .view_box {
        padding: 0;
    }
}


#等比例布局----------------------------------------{}
.percent {
    position: relative;
}

.percent:before {
    content: "";
    display: inline-block;
    overflow: hidden;
    /*padding-top: 50%;*/ /* 宽高比：1/2 */
}

.percent > * {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


#时间线----------------------------------------{}
.timeline {
    padding-left: 5px;
}

.timeline .item {
    position: relative;
    padding-bottom: 20px;
}

.timeline .item:before {
    content: "";
    display: block;
    position: absolute;
    left: 5px;
    top: 0;
    z-index: 0;
    width: 1px;
    height: 100%;
    background-color: #eee;
}

.timeline i {
    position: absolute;
    left: -5px;
    top: 0;
    z-index: 10;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 16px;
    background-color: #fff;
    color: #5FB878;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    font-style: normal;
}

.timeline i:hover {
    color: #FF5722;
}

.timeline .text {
    padding-left: 25px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.timeline .text .title {
    position: relative;
    margin-bottom: 10px;
    line-height: 22px;
}

.timeline .text h3 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}


#形状----------------------------------------{}
#右上角三角形{}
.arrow_top_right {
    position: relative;
}

.arrow_top_right:after {
    content:"";
    display: block;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-right: solid 2.2rem white; /* 宽度 */
    border-bottom: solid 3.6rem transparent; /* 高度 */
}

#列表三角形{}
.arrow_li li {
    position: relative;
}

.arrow_li li:before {
    content:"";
    display: block;
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: solid 0.5rem gray; /* 高度 */
    border-top: solid 0.25rem transparent; /* 右上角斜度 */
    border-bottom: solid 0.25rem transparent; /* 右下角斜度 */
}

.rarrow_li li {
    position: relative;
}

.rarrow_li li:after {
    content:"";
    display: block;
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: solid 0.5rem gray; /* 高度 */
    border-top: solid 0.25rem transparent; /* 右上角斜度 */
    border-bottom: solid 0.25rem transparent; /* 右下角斜度 */
}

#列表方点{}
.square_li li {
    position: relative;
}

.square_li li:before {
    content:"";
    display: block;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem; /* 宽度 */
    height: 0.5rem; /* 高度 */
    background-color: gray;
}

#列表圆点{}
.circel_li li {
    position: relative;
}

.circel_li li:before {
    content:"";
    display: block;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem; /* 宽度 */
    height: 0.5rem; /* 高度 */
    border-radius: 50%;
    background-color: gray;
}


#头部----------------------------------------{}
.header {
    height: 220px;
    background-color: #eeeeee;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1680px) {
    .header {
        height: calc(220px * 0.88);
    }
}

@media (max-width: 1440px) {
    .header {
        height: calc(220px * 0.75);
    }
}

@media (max-width: 1366px) {
    .header {
        height: calc(220px * 0.71);
    }
}

@media (max-width: 1280px) {
    .header {
        height: calc(220px * 0.67);
    }
}

.header .top_box {
    height: 65.01%;
}

.header .top_box .view_box {
    display: flex;
    justify-content: space-between;
}

.header .logo_box {
    width:38.6%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header .nav_box {
    height: 34.09%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #16448b;
    z-index: 10; /* 挡住BANNER */
}

.header .nav {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
}

.header .search_box {
    width: 14%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.header .search_box .body {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#头部LOGO{}
.header .logo_start {
    height: 27%;
}

.header .logo_end {
    height: 17%;
}

.header .logo {
    height: 56%;
    width: 100%;
}

.header .logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.header .logo img {
    width: 100%;
}

#头部导航{}
.header .nav_start {

}

.header .nav_end {

}

.header .nav {
    height: 100%;
}

.header .nav li {
    font-size: 18px;
    position: relative;
    height: 100%;
    vertical-align: middle;
    /*width:14.286%;*/
    width:15.476%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    text-align: center;
}

.header .nav li:first-child {
    width: 7.143%;
}

.header .nav li a {
    width: 100%;
    color: #fff;
    margin-top: auto;
    margin-bottom: auto;
}

.header .menu {
    position: absolute;
    z-index: 1;
    width: 75%;
    left: 50%;
    transform: translateX(-50%);
    top: 99%;
    /*background-color: #16448b;
    opacity: 0.5;*/
    background-color:rgba(22,68,139,0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 20px;
}

.header .menu a {
    color: #fff;
    display: block;
    font-size: 20px;
    line-height: 2;
}

@media (max-width: 1680px) {
    .header .menu a {
        font-size: 18px;
    }
}

.header .search_start {
    height: 55%;
}

.header .search_end {
    height: 20%;
}

.header .search {
    height: 25%;
    width: 100%;
    background-image: url(../images/search_bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.header .search form {
    height: 100%;
}

.header .search .text {
    width: 75%;
    text-indent: 0.75rem;
    background-color: transparent;
    border:none;
    color:#000;
    padding: 1px 3px;
}

.header .search .button {
    width: 25%;
    background-color:transparent;
    border: none;
    cursor: pointer;
}

#底部----------------------------------------{}
.footer {
    height: 220px;
    background-color: #16448b;
}

@media (max-width: 1680px) {
    .footer {
        height: calc(220px * 0.88);
    }
}

@media (max-width: 1440px) {
    .footer {
        height: calc(220px * 0.75);
    }
}

@media (max-width: 1366px) {
    .footer {
        height: calc(220px * 0.71);
    }
}

@media (max-width: 1280px) {
    .footer {
        height: calc(220px * 0.67);
    }
}

.footer .view_box {
    display: flex;
    justify-content: space-between;
}

.footer .flogo_box {
    width:24%;
    display: flex;
    align-items: center;
}

.footer .text_box {
    width: 57%;
    display: flex;
    align-items: center;
}

.footer .qrcode_box {
    width: 19%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#底部副LOGO{}
.footer .flogo {
    width: 100%;
    height: 36%;
    text-align: left;
}

.footer .flogo img {
    width: 100%;
}

#底部导航{}
.footer .text {
    width: 100%;
    line-height: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer .text, .footer .text a {
    color:#fff;
}

.footer .copyright .split {
    margin-right: 1.25rem;
}

.footer .visitcount .split {
    margin-right: 5rem;
}

.footer .friendlink {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 4;
}

.footer .friendlink .split {
    margin-left: 0.65rem;
    margin-right: 0.65rem;
    text-align: center;
}

.footer .friendlink .split:before {
    content: "|";
}

.footer .friendlink .split:last-child {
    display: none;
}

#底部二维码{}
.footer .qrcode {
    width: 85%;
    height: 39%;
    text-align: right;
}

.footer .qrcode img {
    width: 100%;
}


#banner----------------------------------------{}
.banner {
    position: relative;
    width: 100%;
    height: 700px;
    margin-top: -70px;
}

@media (max-width: 1680px) {
    .banner {
        height: calc(700px * 0.88);
        margin-top: calc(-70px * 0.88);
    }
}

@media (max-width: 1440px) {
    .banner {
        height: calc(700px * 0.75);
        margin-top: calc(-70px * 0.75);
    }
}

@media (max-width: 1366px) {
    .banner {
        height: calc(700px * 0.71);
        margin-top: calc(-70px * 0.71);
    }
}

@media (max-width: 1280px) {
    .banner {
        height: calc(700px * 0.67);
        margin-top: calc(-70px * 0.67);
    }
}

.banner .block, .banner .block img {
    width: 100%;
    height: 100%;
}

.banner .bottom {
    width: 100%;
    height: 5px;
    background-color: #515151;
    position: absolute;
    bottom: 0;
}


#间距----------------------------------------{}
.row_top {
    margin-top: 4rem;
}

.row_bottom {
    margin-top: 4rem;
}

.row_top_index {
    margin-top: 3.75rem;
}

.row_bottom_index {
    margin-top: 2rem;
}

.row_pagination {
    margin-top: 5rem;
}

.row_subnav {

}

.row_bottom_zzjg {
    height: 3rem;
}


#内容----------------------------------------{}
.content .view_sub, .content, body {
    background-color: #eeeeee;
}

#首页的信息公开、党建专栏{}
.index_news_2 {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.index_news_2 .bottom_line {
    z-index: 0;
    position: absolute;
    width: 100%;
    height: 40px;
    border-bottom: 1px solid #b5b5b6;
}

.index_news_2 .list_left {
    z-index: 1;
    width: 48%;
}

.index_news_2 .list_right {
    z-index: 1;
    width: 48%;
}

.index_news_2 .moretitle {
    height: 40px;
    border-bottom: 1px solid #b5b5b6;
}

.index_news_2 .moretitle h3 {
    height: 100%;
    width: 80%;
    text-indent: -999em;
    background-image: url("../images/bg/xxgk_title.png");
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.index_news_2 .list_right .moretitle h3 {
    background-image: url("../images/bg/djzl_title.png");
}

.index_news_2 .moretitle span {
    height: 100%;
    width: 20%;
    background-image: url("../images/bg/more+.png");
    background-repeat: no-repeat;
    background-size: auto 50%;
    background-position-x: right;
    background-position-y: bottom;
}

.index_news_2 .moretitle a {
    display: block;
    text-indent: -999em;
    width: 100%;
    height: 100%;
}

.index_news_2 .boxtitle {
    width: 100%;
    height: 62.5%;
    display: flex;
    justify-content: space-between;
}

.index_news_2 .circel_li li:before {
    left: -1.375rem;
    background-color: #ababab;
}

.index_news_2 .list li {
    font-size: 18px;
    margin-left: 1.375rem;
    height: 50px;
    line-height: 50px;
    border-bottom: 2px dashed #b5b5b6;
}

.index_news_2 .list li a {
    display: flex;
}

.index_news_2 .list li h3 {
    width: 50%;
    flex-grow: 1;
    flex-shrink: 100;
    white-space: nowrap;
    overflow: hidden;
    text-overflow:ellipsis;
}

#首页的四大版块{}
.index_sdbk {

}

.index_sdbk .title {
    position: relative;
    height: 52px;
    margin-top: 3rem;
    margin-bottom: 1rem;
    background-image: url("../images/sdbk/titlebg.png");
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position-x: center;
    background-position-y: center;
}

.index_sdbk .subtitle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -999em;
    background-image: url("../images/sdbk/title_001.png");
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position-x: center;
    background-position-y: center;
}

.index_sdbk .line {
    border-bottom: 1px solid #c7c7c7;
    margin-bottom: 0.5rem;
}

.index_sdbk .menu {
    height: 55px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
}

.index_sdbk .menu .item {
    width: 25%;
    height: 100%;
    background-image: url("../images/sdbk/menu_bg1.png");
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: contain;
}

.index_sdbk .menu .subitem {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: 32.46% auto;
}

.index_sdbk .menu .subitem_1 {
    background-image: url("../images/sdbk/menu_bg1_1.png");
}

.index_sdbk .menu .subitem_2 {
    background-image: url("../images/sdbk/menu_bg1_2.png");
}

.index_sdbk .menu .subitem_3 {
    background-image: url("../images/sdbk/menu_bg1_3.png");
}

.index_sdbk .menu .subitem_4 {
    background-image: url("../images/sdbk/menu_bg1_4.png");
}

.index_sdbk .menu .item:hover {
    background-image: url("../images/sdbk/menu_bg2.png");
}

.index_sdbk .menu .subitem_1:hover {
    background-image: url("../images/sdbk/menu_bg2_1.png");
}

.index_sdbk .menu .subitem_2:hover {
    background-image: url("../images/sdbk/menu_bg2_2.png");
}

.index_sdbk .menu .subitem_3:hover {
    background-image: url("../images/sdbk/menu_bg2_3.png");
}

.index_sdbk .menu .subitem_4:hover {
    background-image: url("../images/sdbk/menu_bg2_4.png");
}

.index_sdbk .menu a {
    text-indent: -999em;
    display: block;
    width: 100%;
    height: 100%;
}

.index_sdbk .content {
    height: 520px;
}

@media (max-width: 1680px) {
    .index_sdbk .content {
        height: calc(520px * 0.88);
    }
}

@media (max-width: 1440px) {
    .index_sdbk .content {
        height: calc(520px * 0.75);
    }
}

@media (max-width: 1366px) {
    .index_sdbk .content {
        height: calc(520px * 0.71);
    }
}

@media (max-width: 1280px) {
    .index_sdbk .content {
        height: calc(520px * 0.67);
    }
}

.index_sdbk .content {
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: top;
    background-size: 57.452% 98.3%;
    background-image: url("../images/sdbk/content_bg1.png");
}

.index_sdbk .content .text_bg {
    margin-left: auto;
    width: 61%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: top;
    background-size: 100% 100%;
    background-image: url("../images/sdbk/content_bg2.png");
}

.index_sdbk .content .texttitle {
    width: 17%;
}

.index_sdbk .content .subtexttitle {
    width: 100%;
    height: 50%;
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: bottom;
    background-size: 100% auto;
}

.index_sdbk .content .subtexttitle_1 {
    background-size: 70% auto;
    background-image: url("../images/sdbk/content_title_1.png");
}

.index_sdbk .content .subtexttitle_2 {
    background-size: 71.875% auto;
    background-image: url("../images/sdbk/content_title_2.png");
}

.index_sdbk .content .subtexttitle_3 {
    background-size: 80.625% auto;
    background-image: url("../images/sdbk/content_title_3.png");
}

.index_sdbk .content .subtexttitle_4 {
    background-image: url("../images/sdbk/content_title_4.png");
}

.index_sdbk .content .text {
    width: 73%;
    height: 100%;
}

.index_sdbk .content .subtext {
    font-size: 20px;
    text-indent: 40px;
    line-height: 2;
    text-align: justify;
    color: #343434;
    height: 80%;
    overflow: hidden;
    margin-left: 4.286%;
    margin-right: 9.429%;
    margin-top:10%;
    margin-bottom:10%;
}

#首页的友情链接{}
.index .bottom_link {
    height: 160px;
    background-color: #fff;
    vertical-align: middle;
    font-weight: 400;
}

@media (max-width: 1680px) {
    .index .bottom_link {
        height: calc(160px * 0.88);
    }
}

@media (max-width: 1440px) {
    .index .bottom_link {
        height: calc(160px * 0.75);
    }
}

@media (max-width: 1366px) {
    .index .bottom_link {
        height: calc(160px * 0.71);
    }
}

@media (max-width: 1280px) {
    .index .bottom_link {
        height: calc(160px * 0.67);
    }
}

.index .bottom_link .friendlink {
    font-size: 23px;
    height: 100%;
    line-height: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.index .bottom_link .friendlink, .index .bottom_link .friendlink a, .index .bottom_link .friendlink a:visited {
    color: #16448b;
}

.index .bottom_link .friendlink .split {
    margin-left: 0.65rem;
    margin-right: 0.65rem;
    text-align: center;
}

.index .bottom_link .friendlink .split:before {
    content: "|";
}

.index .bottom_link .friendlink .split:last-child {
    display: none;
}

#子导航{}
.subnav {
    height: 40px;
    border-bottom: 1px solid #b5b5b6;
}

.subnavbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subnavtitletext {
    width: 50%;
    display: flex;
    align-items: baseline;
}

.subnavtitletext h3 {
    font-size: 24px;
    letter-spacing: -2px;
    color: #2d376e;
}

.subnavtitletext em {
    width: 2px;
    background-color: #be1010;
    margin-left: 5px;
    margin-right: 5px;
}

.subnavtitletext span {
    font-size: 15px;
    letter-spacing: 0px;
    color: #898989;
    text-transform: uppercase;
}

.subnavtitle {
    width: 50%;
    height: 26px;
    text-indent: -999em;
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: center;
    background-size: auto 100%;
}

.subnavtitle.jtgk {
    background-image: url("../images/bg/title_jtgk.png");
}

.subnavtitle.xwzx {
    background-image: url("../images/bg/title_xwzx.png");
}

.subnavtitle.gcjs {
    background-image: url("../images/bg/title_gcjs.png");
}

.subnavtitle.xxgk {
    background-image: url("../images/bg/title_xxgk.png");
}

.subnavtitle.djzl {
    background-image: url("../images/bg/title_djzl.png");
}

.subnavtext {
    width: 50%;
    text-align: right;
}

.subnavtext, .subnavtext a, .subnavtext a:visited {
    color: #898989;
}

#内容主体{}
.contentbox {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contentleft {
    width: 15%;
}

.contentleft li {
    height: 45px;
    background-color: #dcdcdc;
    border-bottom: 1px solid #eee;
}

.contentleft li:last-child {
    border-bottom: none;
}

.contentleft a {
    height: 45px;
    line-height: 45px;
    font-size: 18px;
    font-weight: 400;
    text-indent: 5rem;
    border-top-width: 0;
}

.contentleft li:before {
    left: 2rem;
}

.contentleft li:hover {
    background-color: #044597;
}

.contentleft a, .contentleft a:visited {
    display:block;
    color: #7b7b7b;
}

.contentleft a:hover {
    color: #fff;
}

.contentleft.arrow_li li:before {
    border-left-color: #7b7b7b;
}

.contentleft.arrow_li li:hover:before {
    border-left-color: #fff;
}

.contentright {
    width: 78%;
}

.contentright.image {
    width: 82%;
}

.contentright.list {
    width: 83%;
}

.contentright.slide {
    width: 80%;
}

.contentright.search {
    width: 83%;
    padding-top: 5.25rem;
}

.contentright.search .title {
    display: none;
}

.contentright .title {
    font-weight: 600;
    color: #676767;
    text-align: center;
    font-size: 32px;
    margin-top: 5rem;
    margin-bottom: 2rem;
}

.contentright .title_sub {
    font-weight: 400;
    font-size: 16px;
    line-height: 2.8;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 2rem;
}

.contentright .detail, .contentright .detail p {
    font-weight: 400;
    color: #666666;
    line-height: 32px;
    text-align: justify;
}

.contentright .detail img {
    max-width: 100%;
    text-align: center;
}

.contentright .prevnext {
    height: 56px;
    font-size: 16px;
    margin-top: 3rem;
}

.contentright .prevnext li {
    height: 28px;
    line-height: 40px;
    letter-spacing: 0px;
    color: #9b9b9b;
}

.contentright .prevnext a, .contentright .prevnext a:visited {
    color: #9b9b9b;
}

.contentright .prevnext a:hover {
    color: #cc0000;
}

#全资公司{}
.qzgs {
    margin-top: 3rem;
    overflow: hidden;
}

.qzgs .block {
    margin-left: -5px;
    margin-right: -5px;
    display: flex;
    flex-wrap: wrap;
}

.qzgs .item {
    width: 33.333%;
    margin-bottom: 20px;
}

.qzgs .item a {
    display: block;
    margin-left: 5px;
    margin-right: 5px;
    background-color: #fff;
    padding: 9px;
}

.qzgs .img {
    position: relative;
}

.qzgs .img:before {
    content: "";
    display: inline-block;
    padding-top: 63%;
    overflow: hidden;
}

.qzgs .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.qzgs .text {
    padding: 2em 1rem 3rem 1rem;
}

.qzgs h3 {
    font-size: 21px;
    height: 21px;
    line-height: 21px;
    margin-bottom: 2.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    color: #535252;
}

.qzgs .more {
    font-weight: 400;
    font-size: 12px;
    height: 12px;
    line-height: 12px;
    text-align: left;
    color: #16448b;
}


#新闻列表{}
.news .circel_li li:before {
    left: -1.375rem;
    background-color: #ababab;
}

.news .rarrow_li li:after {
    right: 0;
    border-left-color: #626262;
}

.news li span {
    padding-right: 1.5rem;
}

.news li {
    font-size: 20px;
    margin-left: 1.375rem;
    height: 84px;
    line-height: 84px;
    border-bottom: 1px solid #595959;
}

.news li a {
    display: flex;
}

.news li h3 {
    width: 50%;
    flex-grow: 1;
    flex-shrink: 100;
    white-space: nowrap;
    overflow: hidden;
    text-overflow:ellipsis;
}


#按钮分页{}
.pagination_button {
    font-size: 23px;
    display: flex;
    justify-content: center;
    text-align: center;
    color: #4f7abc;
}

.pagination_button .text {
    margin-left: 1.5rem;
}

.pagination_button a {
    display: block;
    min-width: 30px;
    height: 30px;
    margin-left: 0.75rem;
    padding: 0 5px;
    border: 1px solid #c9c9c9;
    border-radius: 4px;
    background-color: transparent;
    color: #4f7abc;
}

.pagination_button a:hover, .pagination_button a.active {
    background-color: #4f7abc;
    color: #fff;
}

.pagination_button span {
    margin-left: 0.75rem;
}

.pagination_button a.text {
    width: auto;
}

.pagination_button.number a {
    border: none;
}

.pagination_button a:first-child{
    margin-left: 0;
}

.pagination_button a:first-child, .pagination_button a:last-child{
    width: auto;
}

.pagination_button.number a:first-child, .pagination_button.number a:last-child{
    font-family: inherit;
}

.pagination_button .disabled {
    cursor: not-allowed;
}

.pagination_button .disabled:hover {
    color: inherit;
    background-color: transparent;
}

#联系我们{}
.lxwmbox {

}

.lxwm_title {
    padding-top: 1.625rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lxwm_title h3 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -2px;
    color: #363636;
    opacity: 0.92;
}

.lxwm_title span {
    font-size: 28px;
    font-weight: 400;
    color: #515152;
}

.lxwm_title em {
    margin-right: 1rem;
}

.lxwm_company {
    margin-top: 5.625rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lxwm_company h3 {
    font-size: 30px;
    letter-spacing: 6px;
    color: #4b4a4a;
}

.lxwm_company span {
    font-size: 20px;
    letter-spacing: 2px;
    color: #8c8c8c;
    text-transform: uppercase;
}

.lxwm_company em {
    margin-bottom: 1rem;
}

.lxwm_contact {
    margin-top: 3.75rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.lxwm_contact li {
    font-size: 24px;
}

@media (max-width: 1280px) {
    .lxwm_contact {
        justify-content: center;
    }

    .lxwm_contact li {
        margin-right: 3rem;
        margin-bottom: 1.5rem;
    }
}

.lxwm_contact i {
    margin-right: 1rem;
}

.lxwm_map {
    margin-top: 3rem;
}

@media (max-width: 766px) {
    .lxwm_title {
        padding-top: 0.5rem;
    }

    .lxwm_title h3 {
        font-size: 26px;
    }

    .lxwm_title span {
        font-size: 24px;
    }

    .lxwm_title em {
        margin-right: 0.5rem;
    }

    .lxwm_company {
        margin-top: 1.5rem;
    }

    .lxwm_company h3 {
        font-size: 26px;
    }

    .lxwm_company span {
        font-size: 12px;
    }

    .lxwm_company em {
        margin-bottom: 0.5rem;
    }

    .lxwm_contact {
        margin-top: 1.5rem;
        flex-direction: column;
        justify-content: flex-start;
    }

    .lxwm_contact li {
        font-size: 20px;
        margin-right: 1.5rem;
        margin-bottom: 0.5rem;

    }

    .lxwm_contact i {
        margin-right: 1rem;
    }

    .lxwm_map {
        margin-top: 1.5rem;
    }
}


#手机----------------------------------------{}
@media (max-width: 766px) {
    #头部{}
    .header {
        height: auto;
        position: relative;
    }

    .header .view_box {
        flex-wrap: wrap;
    }

    .header .top_box {
        height: 2.5rem;
    }

    .header .logo_box {
        width: 50%;
        height: 100%;
        display: flex;
        justify-content: flex-start;
    }

    .header .search_box {
        width: 50%;
        height: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .header .logo {
        height: 60%;
    }

    .header .logo img {
        width: 100%;
        height: auto;
    }

    .header .search {
        height: 60%;
        width: 70%;
        background-size: 100%;
    }

    .header .search .text {
        text-indent: 0.25rem;
        font-size: 12px;
    }

    .header .search .button {
        width: 20%;
        height: 100%;
    }

    .header .search_box {
        padding-right: 5%;
    }

    .header .logo_box {
        padding-left: 5%;
    }

    .header .logo_start, .header .logo_end, .header .search_start, .header .search_end {
        width: 100%;
        height: 20%;
    }

    .header .nav_start, .header .nav_end {
        display: none;
    }

    .header .nav {
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .header .nav li {
        width:27%;
        height: 2rem;
    }

    .header .nav li:first-child {
        width:19%;
    }

    .header .menu {
        display: none;
    }

    #底部{}
    .footer {
        height: auto;
    }

    .footer .view_box {
        flex-direction: column;
    }

    .footer .view_box > div
    {
        width:100%;
        justify-content: center;
        margin-top: 10px;
    }

    .footer .flogo {
        width: 40%;
    }

    .footer .follow, .footer .qrcode {
        width: 40%;
        display: none;
    }

    .footer .flogo img, .footer .follow img, .footer .qrcode img {
        height: auto;
        width: 100%;
    }

    .footer .text {
        height:auto;
        padding: 10px;
    }

    .footer .text > div:nth-child(2) {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .footer .friendlink {
        line-height: 2;
    }

    .footer .copyright .split, .footer .visitcount .split {
        display: block;
        width: 100%;
    }


    #轮播banner----------------------------------------{}
    .banner {
        height: 10rem;
        margin-top: -5px;
    }


    #间距----------------------------------------{}
    .row_top, .row_bottom, .row_top_index, .row_bottom_index {
        margin-top: 1rem;
    }

    .row_pagination {
        margin-top: 2rem;
    }

    .row_subnav {

    }

    .row_bottom_zzjg {
        height: 1rem;
    }

    #首页{}

    .index_news_2 {
        display: block;
        margin-top: 0.75rem;
    }

    .index_news_2 .bottom_line {
        display: none;
    }

    .index_news_2 .list {
        width: 100%;
    }

    .index_news_2 .list_left {
        margin-bottom: 20px;
    }

    .index_sdbk .title {
        background-size: 100% auto;
        margin-top: 0.75rem;
    }

    .index_sdbk .menu {
        flex-wrap: wrap;
        height: auto;
        margin-bottom: 0;
    }

    .index_sdbk .menu .item {
        width: 50%;
        margin-bottom: 20px;
    }

    .index_sdbk .content {
        /*height: auto;
        background-size: auto 98.3%;*/
        height: auto;
        background-size: 0 0;
    }

    .index_sdbk .content .text_bg {
        width: 100%;
    }

    .index_sdbk .content .text {
        width: 80%;
    }

    .index .bottom_link {
        height: auto;
        padding: 10px;
    }


    #子导航{}
    .subnav {
        height: auto;
    }

    .subnavbox {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .subnavtitle, .subnavtitletext, .subnavtext {
        width: 100%;
        margin-bottom: 10px;
    }

    .contentright.search {
        padding-top: 1rem;
    }


    #内容主体{}
    .contentbox {
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .contentleft, .contentright, .contentright.image, .contentright.slide, .contentright.list, .contentright.search {
        width: 100%;
    }

    .contentright .title {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .contentright .title_sub {
        margin-bottom: 1rem;
    }

    .contentright .prevnext {
        height: auto;
        margin-top: 1.5rem;
    }

    .contentright .prevnext li {
        height: auto;
    }

    #全资公司{}
    .qzgs .item {
        width: 100%;
    }

    #按钮分页{}
    .pagination_button {
        flex-wrap: wrap;
    }

    .pagination_button a {
        margin-bottom: 1rem;
    }

}
