<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
html{color:#000;background:#FFF;font-size: 62.5%; overflow-x: hidden;}
body { color:#666;font:12px/1.231 "Microsoft Yahei";} /*网站字体颜色*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,th,var,optgroup{font-style:inherit;font-weight:inherit;}
del,ins{text-decoration:none;}
li{list-style:none;}
caption,th{text-align:left;}
q:before,q:after{content:'';}
abbr,acronym{border:0;font-variant:normal;}
sup{vertical-align:baseline;}
sub{vertical-align:baseline;} 
input,button,textarea,select,optgroup,option{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;}
input,button,textarea,select{*font-size:100%;}
input,select{vertical-align:middle;}
input,textarea {border: 2 none; box-shadow: none; outline: none;}
i,em{ font-style:normal;}
select,input,button,textarea,button{font:99% arial,helvetica,clean,sans-serif;}
table{font-size:inherit;font:100%; border-collapse:collapse;}
pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%;}
/*title*/
h1 { font-size:32px;}
h2 { font-size:26px;}
h3 { font-size:20px;}
h4 { font-size:14px;}
h5 { font-size:12px;}
h6 { font-size:10px;}

.mt10{ margin-top:10px;}

a { color:#666; text-decoration:none;}  /*for ie f6n.net*/
a:focus{outline:0;} /*for ff f6n.net*/
.vam { vertical-align:middle;}
.clear{zoom:1}
.clear:after{content:"";width:0;height:0;visibility:hidden;display:block;clear:both;overflow:hidden}
.clearfix:after{ content:""; clear:both; height:0; visibility:hidden; display:block;}
.clearfix{*zoom:1}
p{ word-spacing:-1.5px;}
.tr { text-align:right;}
.tl { text-align:left;}
.center { text-align:center;}
.fl { float:left;}
.fr { float:right;}
.pa{ position:absolute;}
.pr{ position:relative}

/*清除浮动*/
.blk-main .clearlist,.blk-main .listclear{ clear:both;height:0;padding:0;margin:0;border:0;width:100% ;float:none;}
.b-main .clearlist,.b-main .listclear{ clear:both;height:0;padding:0;margin:0;border:0;width:100% ;float:none;}
.b {clear: both;}
.content{
	width:1200px;
	margin:0 auto;
	
}
/* flex兼容开始 */
.flex {
    display: box;              /* OLD - Android 4.4- */
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
    /* 09版 */
    -webkit-box-orient: horizontal;
    /* 12版 */
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
}
.flex-v {
    display: box;              /* OLD - Android 4.4- */
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
    /* 09版 */
    -webkit-box-orient: vertical;
    /* 12版 */
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}
.flex-row-reverse {
    display: box;              /* OLD - Android 4.4- */
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
    /* 12版 */
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -o-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.flex-wrap {
    /* 09版 */
    /*-webkit-box-lines: multiple;*/
    /* 12版 */
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex-x-center {
    /* 09版 */
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    /* 12版 */
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    /* 其它取值如下：
        align-items     主轴原点方向对齐
        flex-end        主轴延伸方向对齐
        space-between   等间距排列，首尾不留白
        space-around    等间距排列，首尾留白
     */
}
.flex-x-sb {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    /* 12版 */
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
}
.flex-x-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    /* 12版 */
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
}
.flex-x-sa {
    /* 12版 */
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
}
.flex-y-center {
    /* 09版 */
    -webkit-box-align: center;
    -ms-flex-align: center;
    /* 12版 */
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.flex-y-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    /* 12版 */
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
}
.flex1 {
    -webkit-box-flex: 1;      /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1;         /* OLD - Firefox 19- */
    width: 20%;               /* For old syntax, otherwise collapses. */
    -webkit-flex: 1;          /* Chrome */
    -ms-flex: 1;              /* IE 10 */
    flex: 1;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.flex-ac-start {
    /* 12版 */
    -webkit-align-content: flex-start;
    -moz-align-content: flex-start;
    -ms-align-content: flex-start;
    -o-align-content: flex-start;
    align-content: flex-start;
}
.flex-ac-sb {
    /* 12版 */
    -webkit-align-content: space-between;
    -moz-align-content: space-between;
    -ms-align-content: space-between;
    -o-align-content: space-between;
    align-content: space-between;
}
/* flex兼容结束 */
/*全局背景色1*/
.body-color{background: #ffffff;}
.bark-body-color{background:#181818;}

.blk{margin-bottom: 25px;}
/*Main模板*/
.blk-main{width:1230px; margin: 0 auto;}
/*小模块*/
.blk-xs{width:265px;}
/*中模块*/
.blk-sm{width:930px;}
/*小版块*/
.blk{margin-bottom:30px;}
.endit-content{ line-height:28px;font-size:16px;}
.endit-content img{max-width:100%;}
.p12-pagination-1-main {margin: 0 auto;padding: 20px 0;height: 30px;text-align: center;}
.p12-pagination-1-main ul {display: inline-flex;}
.pages li a{
    display: block;
    float: left;
    height: 26px;
    line-height: 26px;
    float: left;
    padding: 0px 10px;
    border: 1px solid #0079d5;
    text-decoration: none;
    margin: 0px 3px 0px 0px;
    color: #555;
}
.pages .active a{
    color: white;
    display: block;
    float: left;
    height: 26px;
    line-height: 26px;
    float: left;
    padding: 0px 10px;
    background: #0079d5;
    border: 1px solid #0079d5;
    margin: 0px 3px 0px 0px;
}
.pages .disabled{
    display: none;
}

.client-2 {
    position: fixed;
    right: -170px;
    top: 50%;
    z-index: 900;
}

.client-2 li a {
    text-decoration: none;
}
.client-2 li {
    margin-top: 1px;
    clear: both;
    height: 62px;
    position: relative;
}

.client-2 li i {
    background: url(../images/fx.png) no-repeat;
    display: block;
    width: 30px;
    height: 27px;
    margin: 0px auto;
    text-align: center;
}

.client-2 li p {
    height: 20px;
    font-size: 12px;
    line-height: 20px;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.client-2 .my-kefu-qq i {
    background-position: 4px 5px;
}

.client-2 .my-kefu-tel i {
    background-position: 0 -21px;
}

.client-2 .my-kefu-liuyan i {
    background-position: 4px -53px;
}

.client-2 .my-kefu-weixin i {
    background-position: -34px 4px;
}

.client-2 .my-kefu-weibo i {
    background-position: -30px -22px;
}

.client-2 .my-kefu-ftop {
    display: none;
}

.client-2 .my-kefu-ftop i {
    width: 33px;
    height: 31px;
    background-position: -23px -47px;
    background-size: 52px 82px;
}
.client-2 .my-kefu-ftop .my-kefu-main{
    padding-top: 6px;
}

.client-2 .my-kefu-left {
    float: left;
    width: 62px;
    height: 47px;
    position: relative;
}

.client-2 .my-kefu-tel-right {
    font-size: 16px;
    color: #fff;
    float: left;
    height: 24px;
    line-height: 22px;
    padding: 0 15px;
    border-left: 1px solid #fff;
}

.client-2 .my-kefu-right {
    width: 20px;
}

.client-2 .my-kefu-tel-main {
    background: #0079d5;
    color: #fff;
    height: 53px;
    width: 230px;
    padding:9px 0 0;
    float: left;
}

.client-2 .my-kefu-main {
    background: #0079d5;
    width: 97px;
    height: 53px;
    position: relative;
    padding:9px 0 0;
    float: left;
}

.client-2 .my-kefu-weixin-pic {
    position: absolute;
    left: -130px;
    top: -24px;
    display: none;
    z-index: 333;
}

.my-kefu-weixin-pic img {
    width: 115px;
    height: 115px;
}
/*公共头部*/
.active{
	background: #fff !important;
}
.slide-one-nav{
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.7);
	position: fixed;
}
/* 首页导航栏开始 */
.top_nav{
    clear:both;
    height:132px;
    margin:0 auto 20px;
}

.slide-one-nav{
    width: 100%;
}
.index-nav{
    width: 100%;
	height:65px;
}
.index-nav .nav-top{
    width: 100%;
    height: 51px;
    line-height: 51px;
    text-align: right;
}
.index-nav .nav-top img{
    width: 13px;
    vertical-align: middle;
    cursor: pointer;
}
.index-nav .nav-top .nav-line{
    margin: 0 8px;
}
.index-nav .nav-top .nav-search{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    color: #333;
    display: none;
}
.index-nav .nav-top .nav-search .nav-search-in{
    height: 100%;
}
.index-nav .nav-top .nav-search .nav-search-in input{
    width: 241px;
    height: 26px;
    border: none;
    border-top-left-radius: 13px;
    border-bottom-left-radius: 13px;
    outline: none;
    padding: 5px 5px 5px 25px;
}
.index-nav .nav-top .nav-search .nav-search-in .nav-search-del{
    width: 40px;
    height: 26px;
    background: #0079d5;
    text-align: center;
    line-height: 26px;
    cursor: pointer;
}
.index-nav .nav-top .nav-search .nav-search-in .nav-search-del img{
    width: 12px;
    height: 12px;
}
.index-nav .nav-top .nav-search .nav-search-in .search-icon{
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
}
.index-nav .nav-bottom .logo{
    width: 197px;
    height: 60px;
}
.index-nav .nav-bottom .logo img{
    width: 100%;
    height: 100%;
}
.index-nav .nav-bottom .bottom-navbar{
    width: 754px;
}

.index-nav .nav-bottom .bottom-navbar&gt;li{
    float:left;
    width:110px;
    height:65px;
    text-align: center;
	line-height: 65px;
}
.index-nav .nav-bottom .bottom-navbar&gt;li&gt;a{
    color:#0079d5;
    font-size:16px;
    display:block;
}   

.index-nav .nav-bottom .bottom-navbar&gt;li:hover&gt;a{
    text-decoration:none;
    
    border-bottom:2px solid #0079d5;
    display:block;
}

/* 下拉菜单开始 */
/*隱藏選單*/
.subnav { display: none; background-color: #fff; width:150px; position: absolute; z-index:9999; top: 65px; border-top: 1px solid #EEE; box-sizing: border-box; box-shadow:0 3px 3px rgba(0,0,0,0.3);
    margin-left: -17px; 
}
.subnav li a{display:block; width:100%; height:3.2em; line-height:3.2em;border-bottom:1px #EEE solid;font-size: 13px;}
.subnav li a:hover{background-color:#f4f4f4;}
.submenu li a{
    font-size: 13px;
}
.submenu {display: none;background-color: #fff; width: 100%; position: absolute; z-index:9999; left: 50%; top: 65px; border-top: 1px solid #EEE; padding: 2em; box-sizing: border-box; box-shadow:0 3px 3px rgba(0,0,0,0.3);
    transform: translateX(-50%);
}
/*.submenu:after { content:''; width: 100%; height:550px; display: block; position:fixed; top:78px; left:0; background-color: #FFF; z-index: -110; border-top: 1px solid #EEE; box-shadow:0 2px 3px #CCCCCC;}*/
.submenu .second-menu &gt; li &gt; a { display: block; font-weight: bold; color: #222; margin-bottom: 0.1em; font-size:14px;}
.submenu .column {width:1450px;margin:0 auto;}
.submenu .column:after { content:''; display: block; clear:both;}

/* 次選單layout 分欄 - 此群組勿加其他屬性 */
.submenu .col { float: left; display: block; min-height: 1px; box-sizing:border-box;}
.submenu .col-2 { width: 20%;}
.submenu .col-3 { width: 30%;}
.submenu .col-4 { width: 40%;}
.submenu .col-5 { width: 50%;}
.submenu .col-6 { width: 60%;}

/* 次選單項目分欄 - 此群組勿加其他屬性 */
.submenu .col1 &gt; li { width: 25%;}
.submenu .col1 &gt; li:nth-of-type(4n+1){padding-left: 0; /*padding-left:0.75em;*/ clear:both;}

/* 次選單 shortcut 描述 */
.menu-shortcut { text-align: left; padding-right: 4em;}
.menu-shortcut h3 { margin-bottom:0.5em;padding: 0; font-size:18px; line-height:40px;}
.menu-shortcut p { color:#888; }
.menu-shortcut figure { padding:1em 0 0; margin: 0;}
.menu-shortcut img {display:block; width:100%; height:auto;}

/* 次選單 第二層級選項 */
.second-menu { text-align: left; padding: 0; }
.second-menu:after { content: ''; display: block; clear: both; }
.second-menu &gt; li { line-height: 2em; width: 20%; display: block; float: left; box-sizing: border-box; padding:0 0.75em 2em; }
.second-menu &gt; li:nth-of-type(3n+1) { }
.second-menu &gt; li &gt; a { border-bottom: 2px solid #0079d5; }


/* 次選單 第三層級選項 */
.third-menu { list-style:none; padding: 0; }
.third-menu &gt; li { line-height: 1em; }
.third-menu &gt; li a {  line-height: 1em; display: block; border-bottom: 1px dashed #e5e5e5; padding: 0.6em 1.5em 0.6em 0; position:relative;}
/*.third-menu &gt; li a:after { content:'&gt;'; color: #BBB; line-height: 2.4em; display: inline-block; position:absolute; right: 0;}*/
.third-menu &gt; li a:before { content:''; width: 7px; height: 18px; background: url("../images/arrow.png") no-repeat right center;background-size: 200% auto; display: inline-block; position:absolute; right: 5px;}
.EN{ position:absolute; top:22px;right:10%; z-index:9999; width:24px; height:24px;  border:#1392a9 solid 1px; line-height:24px; text-align:center; color:#1392a9; display:none}
@media screen and (max-width: 1024px) {
/* 如果使用者之視窗寬度 &lt;= 1200px，將會再載入這裡的 CSS。 */
#hamburger { display: block;}
.EN{ display:block}
#hamburger { display: none \9;}
.desktop-menu { display: none;}
.breadcrumb { display: none; }
.detail-menu { display: none; }
.gh-logo {display: inline-block;  background:url(../images/logo.png) left center no-repeat; background-size: auto 60px; margin:10px 0; text-indent: -9999px;overflow: hidden; width: 190px;height: 60px; }
.gh-header { width: 100%; height: 80px; /*border-bottom: 1px solid #EEE;*/ z-index: 9998; background-color:#FFF;}
}

@media screen and (min-width: 1024px) {
/* 如果使用者之視窗寬度 &gt;= 1200px，將會再載入這裡的 CSS。 */

#my-menu { display: none;}
.gh-header {height: 118px; margin:0; padding:0; z-index: 9998; background-color:#FFF;}
.gh-logo {display: inline-block;  background:url(../images/logo.png) left center no-repeat; background-size: auto 80px; margin:19px 0; text-indent: -9999px;overflow: hidden; width: 220px;height: 80px; }
}
/* 下拉菜单结束 */
/* 首页导航栏结束 */
/* 底部样式 开始 */

.he_floter {

    width: 100%;

    position: relative;

    background: #ffffff;

    box-shadow: 0px 5px 50px 0 rgba(0, 0, 0, 0.05);

}



.he_fotp {

    width: 100%;

    background: #fff;

    padding: 45px 86px 35px;

}



.he_fotbp {

    background: #158b2d;

    padding: 7px 86px 7px;

    width: 100%;

}



.he_fotpri {

    width: 94px;

}



.he_fotple {

    width: calc(100% - 94px);

}



.he_fonati a {

    font-size: 18px;

    line-height: 30px;

    color: #333333;

}



.he_fonatfh a {

    font-size: 14px;

    line-height: 24px;

    color: #999999;

    display: block;

    transition: all 0.36s;

}



.he_fonati {

    margin-bottom: 10px;

}



.he_fonali {

    margin-right: 178px;

}



.he_fonali:last-child {

    margin-right: 0;

}



.he_fotsher {

    width: 100%;

    position: relative;

}



.he_fotshn {

    position: relative;

    width: 22px;

}



.he_fotshn img {

    width: 100%;

}



.he_fotshn a {

    position: absolute;

    width: 100%;

    height: 100% !important;

    display: block;

    background: none !important;

    left: 0;

    top: 0;

    z-index: 5;

}



.he_fotshn a {

    padding-left: 0 !important;

}



.he_navbtic.on .he_img {

    opacity: 0;

}



.he_navbtic.on .he_img1 {

    opacity: 1;

}



.he_banklm.slick-current .he_bansbi p {

    -webkit-animation: fadeInUp 1s ease both;

    animation: fadeInUp 1s ease both;

    animation-delay: 0.4s;

}



.he_banklm.slick-current .he_banmon {

    -webkit-animation: fadeInUp 1s ease both;

    animation: fadeInUp 1s ease both;

    animation-delay: 0.4s;

}



.he_banklm.slick-current .he_conjy {

    -webkit-animation: fadeInUp 1s ease both;

    animation: fadeInUp 1s ease both;

    animation-delay: 0.4s;

}


.he_fot {

    position: relative;

}



.he_fot::after {

    content: '';

    position: absolute;

    top: -112px;

    left: 0;

    width: 7584px;

    height: 112px;

    background: url(../images/flot1.png) repeat-x;

    z-index: 10;

}

.he_fotnle {

    width: 303px;

}



.he_fotncor {

    width: 100%;

}



.he_fotnch p {

    font-size: 18px;

    line-height: 1.75;

    color: #ffffff;

}



.he_fotnch {

    border-bottom: 1px solid rgba(110, 110, 110, 0.65);

    padding-bottom: 10px;

}



.he_dizhi {

    width: 100%;

    position: relative;

    margin-top: 16px;

}



.he_dizhile {

    width: 16px;

    line-height: 2;

}



.he_dizhile img {

    width: 100%;

}



.he_dizhiri {

    width: calc(100% - 16px);

    padding-left: 12px;

}



.he_dizhiri p {

    font-size: 16px;

    line-height: 1.75;

    color: #ffffff;

}



.he_dizhili {

    margin-bottom: 8px;

}



.he_fotbfx {

    width: 100%;

}



.he_fotbfxco:first-child {

    margin-left: 0;

}



.he_youqin {

    width: 170px;

    position: relative;
    z-index: 10;

}



.he_youqintp {

    width: 100%;

    border: 1px solid #575757;

    padding: 10px 16px;

    position: relative;

    cursor: pointer;

}



.he_youqinig {

    width: 8px;

}



.he_youqinte {

    width: calc(100% - 8px);

}



.he_youqinte p {

    font-size: 14px;

    line-height: 1.5;

    color: #999999;

}



.he_youqinig {

    width: 8px;

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    right: 16px;

}



.he_youqinte {

    width: calc(100% - 8px);

    padding-right: 10px;

}



.he_youqinig img {

    transition: all 0.36s;

    width: 100%;

}



.he_youqinbt {

    width: 100%;

    position: absolute;

    bottom: 43px;

    left: 0;

    padding: 16px 26px;

    border: 1px solid #575757;

    background: #303030;

    display: none;

}



.he_youqiscl a {

    text-align: left;

    color: #999;

    line-height: 24px;

    font-size: 14px;

    display: block;

    transition: all .36s;

    transition: all 0.36s;

    margin-bottom: 4px;

}



.he_youqiscl {

    height: 108px;

    overflow: hidden;

}



.he_youqin.on .he_youqinig img {

    transform: rotate(180deg);

    -ms-transform: rotate(180deg);

    /* IE 9 */

    -moz-transform: rotate(180deg);

    /* Firefox */

    -webkit-transform: rotate(180deg);

    /* Safari 和 Chrome */

    -o-transform: rotate(180deg);

    /* Opera */

}



.he_youqiscl .mCSB_inside&gt;.mCSB_container {

    margin-right: 4px;

}



.he_youqiscl .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {

    position: relative;

    width: 2px;

}



.mCSB_scrollTools .mCSB_draggerContainer {

    position: absolute;

    top: 0;

    left: 13px;

}





.he_youqin {

    margin-top: 36px;

    margin-bottom: 42px;

}





.he_gdx2.act .he_ovhy {

    opacity: 0;

    animation: flashftky 0.2s ease-out forwards;

    animation-delay: 1.36s;

}





@-webkit-keyframes flashfty {





    0% {

        opacity: 0;

    }



    100% {

        opacity: 0;

    }

}



@-webkit-keyframes flashftky {





    0% {

        opacity: 1;

    }



    100% {

        opacity: 1;

    }

}


.he_fot_gray {

    background: #f2f2f2;

    z-index: 2;

}



.he_fot_gray.he_fot::after {

    background: url(../images/float1.png) repeat-x;

    animation: wave 15s linear infinite;

}



.he_fot_gray .he_fotnch p,

.he_fot_gray .he_fotlip1 a {

    color: #333;

}



.he_fot_gray .he_banmogf a,

.he_fot_gray .he_dizhiri p {

    color: #999;

}



.he_fot_gray .he_fotlip1 a:hover,

.he_fot_gray .he_banmogf a:hover {

    opacity: 0.8;

}


.he_contetn {

    width: 1520px;

    margin: 0 auto;

}


.he_syp1 .he_contetn {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    z-index: 10;

}

@keyframes wave {

    100% {

        transform: translateX(-50%);

    }

}

.he_fotbx {

    width: 100%;

    position: relative;

    padding-top: 76px;

    padding-bottom: 12px;

}



.he_fotble {

    width: 326px;

    position: relative;

}



.he_fotlip1 a {

    font-size: 20px;

    line-height: 1.75;

    color: #fff;

    position: relative;

    font-weight: bold;

}



.he_fotlip1 a::after {

    content: '';

    position: absolute;

    bottom: -13px;

    left: 0;

    width: 20px;

    height: 2px;

    background-color: #ef2d1a;

}


.he_fotnav {

    margin-top: 46px;

}



.he_fotbx {

    padding-top: 46px;

}

.he_quanx {

    width: 100%;

    border-top: 1px solid rgba(255, 255, 255, 0.11);

}



.he_quanxg {

    width: 100%;

    padding: 22px 0;

}



.he_quanxg p {

    font-size: 14px;

    line-height: 1.75;

    color: #999999;

}



.he_quanxg p a {

    color: #999999;

}


.he_fot .he_quanx {

    position: relative;

    z-index: 10;

}

he_quanxg.fr p a {

    color: #d9d9d9;

}



.he2_a .he_quanxg {

    width: auto;

}

.he_quanxg {

    width: auto;

}

.he_banmob {

    width: 100%;

    margin-top: 24px;

}



.he_banmogf a {

    font-size: 16px;

    line-height: 1.75;

    color: #e5e5e5;

    transition: all 0.36s;

}



.he_banmogf {

    margin-bottom: 16px;

}
.Footer::after {
  background: url(../images/float1.png) repeat-x;
  animation: wave 15s linear infinite;
}
.he_fot::after {
  content: '';
  position: absolute;
  top: -112px;
  left: 0;
  width: 7584px;
  height: 112px;
  z-index: 10;
}
.Footer{background-color: #f2f2f2;margin-top: 150px;}
.Footer .container{width:1200px;margin:0 auto;}

.FooterBot{text-align: center;padding: 25px 0;}
.FooterBot p:first-child{margin-top: 0;}
.FooterBot p{color: #000;font-size: 14px;margin-top: 5px;}
.FooterBot p a{color: #000;}
.FooterBot p a:hover{text-decoration: underline;}

.FooterCenter{background: url(../images/footerbox.png) center center;height: 60px;line-height: 60px;text-align: center;}
.FooterCenter a{font-size: 16px;color: #fff;background: url(../images/footerxt.jpg) no-repeat center left;width: 145px;display: inline-block;*display: inline;*zoom: 1;}
.FooterCenter a:hover{text-decoration: underline;}
.FooterCenter a:first-child{background: none;}

.FooterTop{padding: 50px 0 60px;}
.FooterTop dl{float: left;margin-left: 70px;}
.FooterTop dl:first-child{margin-left: 0;}
.FooterTop dl dt{font-size: 18px;}
.FooterTop dl dt a{color: #000;}
.FooterTop dl dt:hover a{text-decoration: underline;}
.FooterTop dl dd{margin-top: 20px;}
.FooterTop dl dd a:hover{text-decoration: underline;}
.FooterTop dl dd a{display: block;color: #000;font-size: 12px;margin-top: 15px;}
.FooterTop dl dd a:first-child{margin-top: 0;}

.FooterBox{margin-left: 70px;width: 282px;}
.FooterBox h3{font-weight: normal;font-size: 18px;color: #000;background: url(../images/footerphon01.png) no-repeat left 5px;padding-left: 30px;}
.FooterBox h3 em{display: block;font-size: 25px;margin-top: 10px;font-family: "icomoont";}
.FooterBox h4{font-weight: normal;font-size: 18px;color: #000;margin-top: 25px;background: url(../images/footerphon02.png) no-repeat left 5px;padding-left: 30px;}
.FooterBox h4 em{display: block;font-size: 12px;margin-top: 5px;line-height: 20px;}

.FooterEwm img{width: 126px;height: 126px;display: block;}
.FooterEwm p{text-align: center;color: #f1f1f1;font-size: 14px;margin-top: 10px;}

/* 底部样式 结束 */

.content{width:1200px; margin:0 auto;}
.foot{padding-top:100px;}
          .foot .f_con{height:280px;}
          .foot .ftnav{width:350px;float:left; height:280px;}
          .foot .ftnav b{display: block;font-size: 24px; line-height: 24px; color:#0079d5;padding-left:12px;border-left:3px solid #0079d5; margin-bottom: 42px;font-style: normal;}
          .foot .ftnav ul{padding-left:15px;}
          .foot .ftnav ul li{float:left;width:65px; line-height: 14px; margin-right: 60px; margin-bottom: 17px;}
          .foot .ftnav ul li a{font-size: 14px; color:#666666; line-height: 14px;}
          .foot .gsxx{width:660px; float:left;}
          .foot .gsxx b{display: block;font-size: 24px; line-height: 24px; color:#0079d5;padding-left:12px;border-left:3px solid #0079d5; margin-bottom: 42px;font-style: normal;}
          .foot .gsxx ul li{width:300px; height:40px;margin-bottom: 59px;float:left;}
          .foot .gsxx ul li i{display: block;width:40px; height:40px; float:left; border-right:1px solid #999999;}
          .foot .gsxx ul li i img{width:40px; height:40px;}
          .foot .gsxx ul li i img{width:40px; height:40px;}
          .foot .gsxx ul li span{display: block;float:left; width:239px; margin-left: 12px;}
          .foot .gsxx ul li #cnzz_stat_icon_1277641865{width:30px !important;float:right;margin-left:0; margin-right:10px;}
          .foot .gsxx ul li p strong{display:block;    font-size: 16px;    color: #666666;    font-style: normal;float:left;}
          .foot .gsxx ul li span em{font-size: 14px; color:#666666;font-style: normal;margin-right: 10px;}
          .foot .gsxx ul li span p{font-size: 16px;color:#666666;font-style: normal;}
          .foot .gsxx ul li span p a{display:block;float:left;}
          .foot .gsxx ul li.last{width:353px;}
          .foot .gsxx ul li.last span{width:300px;}
          .foot .ewm{width:130px; float:right;padding-top:35px;}
          .foot .ewm span{display: block;width:130px;height:130px;background:url(../images/ewk.png) no-repeat center; box-sizing: border-box;padding-top:15px;}
          .foot .ewm span img{display: block;width:99px;height:99px; margin:0 auto; }
          .foot .ewm i{display: block;height:47px; line-height: 47px; text-align: center; font-style: normal;}
          .foot .link{padding:14px 0; box-sizing: border-box;background:#f5f5f5;}
          .foot .link i{display: block;width:80px; float:left; font-style: normal;}
          .foot .link a{display: block;float:left;margin-right: 20px;}
</pre></body></html>