/*基本样式*/
html {
    font-size: 62.5%;
    /* 10÷16=62.5% */
}

body {
    font-size: @baseFontSize;
    
    /* 14÷10=1.4 */
    color: @fPrimaryColor;
    font-family: @fontName;
}

html,
body,
address,
blockquote,
div,
dl,
form,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
pre,
ul,
dd,
dl,
dt,
li,
tbody,
td,
tfoot,
th,
thead,
tr,
button,
del,
ins,
map,
object,
a,
abbr,
acronym,
b,
bdo,
big,
br,
cite,
code,
dfn,
em,
i,
img,
kbd,
q,
samp,
small,
span,
strong,
sub,
sup,
tt,
var,
legend,
fieldset {
    margin: 0px;
    padding: 0px;
    -webkit-font-smoothing: subpixel-antialiased;
}


/* h1, h2, h3, h4, h5, h6, p,  i,  span{word-break: break-all;} */

table {
    border-collapse: collapse;
    border-spacing: 0;
    padding: 0
}

fieldset,
img {
    border: 0;
}

img,
object {
    max-width: 100%;
    width: auto\9;
    /* for ie8 */
    -ms-interpolation-mode: bicubic;
}

a {
    outline: none;
    blr: expression(this.onFocus=this.blur());
    text-decoration: none;
    color: #666
}

a:hover {
    text-decoration: none;
    color: #394958;
}

input[type='button'] {
    outline: none;
    border: 0 none;
    background-color: transparent;
    cursor: pointer;
}

ul,
ol,
li {
    list-style: none outside none;
}

pre,
code {
    white-space: pre-wrap
}

input {
    outline: none;
}

.gp-pa {
    position: absolute;
}

.gp-pr {
    position: relative;
}

.gp-clearFix {
    *zoom: 1;
    clear: both;
}

.gp-clearFix:after {
    content: '';
    display: block;
    clear: both;
}

.gp-clear {
    width: 100%;
    overflow: hidden;
}

@media screen and (min-width:992px) {
    .effect1 {
        opacity: 0.5;
        transition: all 0.8s ease-out;
    }
    .effect1.isView {
        opacity: 1;
    }
    .effect2,
    .effect2 li,
    .effect5 {
        opacity: 0;
        transition: all 0.8s ease-out;
        transform: translateY(70px);
    }
    .effect2.isView,
    .effect2.isView li,
    .effect5.isView {
        opacity: 1;
        transform: none;
    }
    .effect3 {
        opacity: 0;
        transition: all 0.8s ease-out;
        transform: translateX(50px);
    }
    .effect3.isView {
        opacity: 1;
        transform: none;
    }
    .effect4,
    .effect4 li,
    .effect6 tr {
        opacity: 0;
        transition: all 0.8s ease-out;
        transform: translateX(-50px);
    }
    .effect4.isView,
    .effect4.isView li,
    .effect6.isView tr {
        opacity: 1;
        transform: none;
    }
}


/*响应式图片*/

.gp-img-responsive {
    width: 100%;
    height: 0;
    padding-bottom: 62.5%;
    overflow: hidden;
    display: block;
    background-color: #d2d2d2
}

.gp-img-responsive img {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.gp-img-responsive img:hover {
    transform: scale(1.03);
    opacity: 0.85;
}

.gp-radius {
    border-radius: 3px;
    display: block;
    overflow: hidden;
}

.gp-round {
    border-radius: 500px;
    display: block;
    overflow: hidden;
}

.gp-circle {
    border-radius: 50%;
    display: block;
    overflow: hidden;
}


/*边框*/

.gp-img-thumbnail {
    display: inline-block;
    max-width: 100%;
    height: auto;
    padding: 2px;
    line-height: 1.6;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.gp-ib {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
}


/*半透明背景*/

.gp-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 1800;
    background: #000;
    opacity: 0.7;
    filter: alpha(opacity=80);
    display: none;
    left: 0
}


/*文章页控制ul li序号*/

.gp-article ol,
.gp-article ol li,
.gp-order-list li,
.gp-order-list {
    list-style: decimal inside none;
}

.gp-article ul,
.gp-article ul li,
.gp-unorder-list li,
.gp-unorder-list {
    list-style: disc inside none;
}

.gp-unorder-list.circle {
    list-style-type: circle
}

.gp-unorder-list.square,
.gp-unorder-list.square li {
    list-style-type: square
}

.gp-unorder-list.upper-roman,
.gp-unorder-list.upper-roman li {
    list-style-type: upper-roman
}

.gp-unorder-list.lower-alpha,
.gp-unorder-list.lower-alpha li {
    list-style-type: lower-alpha
}

.gp-article {
    word-break: break-word;
}


/*字号*/

.gp-f12 {
    font-size: 12px;
    font-size: 1.2rem;
}

.gp-f14 {
    font-size: 14px;
    font-size: 1.4rem;
}

.gp-f16 {
    font-size: 16px;
    font-size: 1.6rem;
}

.gp-f18 {
    font-size: 18px;
    font-size: 1.8rem;
}

.gp-f20 {
    font-size: 20px;
    font-size: 2rem;
}

.gp-f22 {
    font-size: 22px;
    font-size: 2.2rem;
}

.gp-f24 {
    font-size: 24px;
    font-size: 2.4rem;
}

.gp-f26 {
    font-size: 26px;
    font-size: 2.6rem;
}

.gp-f28 {
    font-size: 28px;
    font-size: 2.8rem;
}

.gp-f30 {
    font-size: 30px;
    font-size: 3rem;
}

.gp-f32 {
    font-size: 32px;
    font-size: 3.2rem;
}

.gp-f34 {
    font-size: 34px;
    font-size: 3.4rem;
}

.gp-f36 {
    font-size: 36px;
    font-size: 3.6rem;
}

.gp-f38 {
    font-size: 38px;
    font-size: 3.8rem;
}

.gp-f40 {
    font-size: 40px;
    font-size: 4rem;
}

.gp-f48 {
    font-size: 48px;
    font-size: 4.8rem;
}

.gp-f60 {
    font-size: 60px;
    font-size: 6rem;
}

.gp-f90 {
    font-size: 90px;
    font-size: 9rem;
}

.gp-ul-inline {
    font-size: 0;
}

.gp-ul-inline>li {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    font-size: 14px;
    vertical-align: top;
}

.gp-fl {
    float: left;
}

.gp-fr {
    float: right;
}

.gp-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.gp-vam,
.gp-vama * {
    vertical-align: middle;
}


/*
字体色
*/

.gp-black *,
.gp-black {
    color: #333
}

.gp-white *,
.gp-white {
    color: #fff
}


/*一行截短*/

.gp-ellipsis,
.gp-text-truncate {
    word-wrap: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}


/*透明度*/

.gp-opt-50 {
    opacity: 0.5;
    filter: alpha(opacity=50);
}


/*-平均分配*/


/* [class*="gp-avg"] > li {float: left;} */

[class*="gp-avg"] {
    font-size: 0;
}

[class*="gp-avg"]>li {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    font-size: 14px;
    vertical-align: top;
}


/*
版心和间距的问题
*/

.gp-container {
    width: 1300px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.gp-row {
    margin-left: -15px;
    margin-right: -15px;
}

.gp-m15 {
    margin: 0 15px
}

.gp-p15 {
    padding-left: 15px;
    padding-right: 15px;
}

@media screen and (max-width:1400px) {
    .gp-container {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
        box-sizing: border-box;
    }
}

@media screen and (max-width:1386px) {
    .gp-f18 {
        font-size: 1.6rem;
    }
    .gp-f24 {
        font-size: 2.2rem;
    }
    .gp-f30 {
        font-size: 2.6rem;
    }
    .gp-f48 {
        font-size: 4.6rem;
    }
    .gp-f16 {
        font-size: 1.5rem;
    }
    .gp-f60 {
        font-size: 5rem;
    }
    .gp-f90 {
        font-size: 8rem;
    }
}

@media screen and (max-width:1300px) {
    .gp-container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width:1060px) {
    /* .gp-container{width: 960px;} */
}

@media screen and (max-width:996px) {
    .gp-f16 {
        font-size: 1.4rem;
    }
    body {
        font-size: 1.3rem;
    }
    .gp-container {
        width: 100%;
    }
    .gp-f18 {
        font-size: 1.4rem;
    }
    .gp-f24 {
        font-size: 2.0rem;
    }
    .gp-f30 {
        font-size: 2.4rem;
    }
    .gp-f48 {
        font-size: 4.2rem;
    }
    .gp-f16 {
        font-size: 1.3rem;
    }
    .gp-f60 {
        font-size: 4.5rem;
    }
    .gp-f90 {
        font-size: 7rem;
    }
}

@media screen and (max-width:767px) {
    .gp-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .gp-row {
        margin-left: -8px;
        margin-right: -8px;
    }
    .gp-p15 {
        padding-left: 8px;
        padding-right: 8px;
    }
    .gp-m15 {
        margin-left: 8px;
        margin-right: 8px;
    }
    .gp-f90 {
        font-size: 5rem;
    }
}


/*水平导航*/

.gp-nav-horizontal {}

.gp-nav-horizontal>li {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    position: relative;
}

.gp-nav-justify {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
}

.gp-nav-justify>li {
    float: none;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1
}


/*
面包屑
*/

.gp-bread {
    height: auto;
    line-height: 20px;
    color: #999;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    color: #fff;
}

.gp-bread span {
    color: #757575;
    margin: 0 3px
}

.gp-bread a {
    color: #757575;
}

.gp-bread a:hover {
    color: #bd0f1e;
}

@media screen and (max-width:767px) {
    .gp-article img {
        width: auto !important;
        height: auto !important;
    }
    .gp-article video {
        width: auto !important;
    }
    .gp-article table {
        width: 100% !important;
    }
    html {
        font-size: 54.705%;
    }
    body {
        font-size: 1.4rem;
    }
}


/*
pad端固定宽度
*/

@media screen and (max-width:999px) {
    .gp-flex {
        display: flex;
        display: -webkit-flex;
    }
    .gp-flex-fixed {
        width: 250px;
    }
    .gp-flex-flexible {
        flex: 1;
        width: auto;
    }
}


/***
布局-网格样式 
**/

[class*="gp-xs"],
[class*="gp-sm"],
[class*="gp-md"],
[class*="gp-lg"] {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: top;
    width: 100%;
}

@media screen and (min-width:100px) {
    [class*="gp-avg"] li {
        width: 100%;
    }
    /*平均分配*/
    .gp-avg-xxs-1>li {
        width: 100%;
    }
    .gp-avg-xxs-2>li {
        width: 50%;
    }
    .gp-avg-xxs-3>li {
        width: 33.3%;
    }
    .gp-avg-xxs-4>li {
        width: 25%;
    }
    .gp-avg-xxs-5>li {
        width: 20%;
    }
    .gp-avg-1>li {
        width: 100%;
    }
    .gp-avg-2>li {
        width: 50%;
    }
    .gp-avg-3>li {
        width: 33.3%;
    }
    .gp-avg-4>li {
        width: 25%;
    }
    .gp-avg-5>li {
        width: 20%;
    }
}

@media screen and (max-width:479px) {
    [class*="gp-xs"] {
        width: 100%;
        display: block;
    }
    /*平均分配*/
    .gp-avg-xxs-1>li {
        width: 100%;
    }
    .gp-avg-xxs-2>li {
        width: 50%;
    }
    .gp-avg-xxs-3>li {
        width: 33.3%;
    }
    .gp-avg-xxs-4>li {
        width: 25%;
    }
    .gp-avg-xxs-5>li {
        width: 20%;
    }
}

@media screen and (min-width:479px) {
    /*平均分配*/
    .gp-avg-xs-1>li {
        width: 100%;
    }
    .gp-avg-xs-2>li {
        width: 50%;
    }
    .gp-avg-xs-3>li {
        width: 33.3%;
    }
    .gp-avg-xs-4>li {
        width: 25%;
    }
    .gp-avg-xs-5>li {
        width: 20%;
    }
}

@media screen and (min-width:767px) {
    /*平均分配*/
    .gp-avg-sm-1>li {
        width: 100%;
    }
    .gp-avg-sm-2>li {
        width: 50%;
    }
    .gp-avg-sm-3>li {
        width: 33.3%;
    }
    .gp-avg-sm-4>li {
        width: 25%;
    }
    .gp-avg-sm-5>li {
        width: 20%;
    }
}

@media screen and (min-width:997px) {
    /*平均分配*/
    .gp-avg-md-1>li {
        width: 100%;
    }
    .gp-avg-md-2>li {
        width: 50%;
    }
    .gp-avg-md-3>li {
        width: 33.3%;
    }
    .gp-avg-md-4>li {
        width: 25%;
    }
    .gp-avg-md-5>li {
        width: 20%;
    }
}

@media screen and (min-width:1300px) {
    /*平均分配*/
    .gp-avg-lg-1>li {
        width: 100%;
    }
    .gp-avg-lg-2>li {
        width: 50%;
    }
    .gp-avg-lg-3>li {
        width: 33.3%;
    }
    .gp-avg-lg-4>li {
        width: 25%;
    }
    .gp-avg-lg-5>li {
        width: 20%;
    }
}


/*
表格
*/

.gp-table>tbody>tr>td,
.gp-table>tbody>tr>th,
.gp-table>tfoot>tr>td,
.gp-table>tfoot>tr>th,
.gp-table>thead>tr>td,
.gp-table>thead>tr>th {
    padding: 14px;
    padding: 1.4rem;
}

.gp-table-bordered {
    border: solid #e6e6e6;
    border-width: 0px 0 1px 0px;
}

.gp-table * {
    word-wrap: break-word;
}


/*边框*/

.gp-table-bordered td {
    border: solid #e6e6e6;
    border-width: 1px 1px 0px 1px;
}


/*条纹*/

.gp-table-striped>tbody>tr:nth-child(odd)>td,
.gp-table-striped>tbody>tr:nth-child(odd)>th {
    background-color: #f5f5f5
}


/*置顶*/

.gp-goTop {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 2.5rem;
    transition: all 0.3s ease-in-out;
    color: #fff !important;
    background: #004ea1;
}

.gp-goTop-fixed {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 800;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.gp-goTop-fixed.bottom {
    bottom: 150px;
}


/*低版本跳转样式*/

.ie_bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.7;
    filter: alpha(opacity=70);
    z-index: 99999;
}

.ie9tips {
    width: 400px;
    height: 300px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin: -150px 0 0 -200px;
    line-height: 1.8;
    color: #fff;
    z-index: 99999;
    text-align: center;
}

.ie9tips a {
    color: red;
}

.ie9tips img {
    display: block;
    margin: 0 auto;
    opacity: 0.98;
    filter: alpha(opacity=98);
}

.ie9tips p {
    padding-top: 10px;
    color: #fff;
    width: 420px;
    margin: 10px auto;
	font-size: 14px;
    line-height: 1.8;
}


/*5移动端搜索默认*/

.gp-m-search {
    width: 90%;
    margin: 10px auto 0;
    display: block;
}

.gp-m-search .notxt1 {
    right: auto;
    left: 0;
    width: 40px;
}

.gp-m-search input.notxt {
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding-left: 42px;
}

.fadeInUpSmall {
    -webkit-animation-name: fadeInUpSmall;
    animation-name: fadeInUpSmall;
    animation-duration: 0.4s;
    -webkit-animation-duration: 0.4s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
    display: block;
}

@-webkit-keyframes fadeInUpSmall {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUpSmall {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 20px, 0);
        -ms-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}


/*置顶*/

.gp-goTop {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 25px;
    color: #ffcc03 !important;
    background: #0154a4;
}

.gp-goTop-fixed {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 800;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    display: none;
}

.gp-goTop-fixed.bottom {
    bottom: 150px;
}


/* style */

body {
    background-color:  #fdfdfd;
    background-size: 100% auto
}

.header {
    position: relative;
    z-index: 880;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.top {
    transition: all 0.35s ease-in-out;
    position: relative;
    z-index: 992;
    padding: 25px 0 18px;
    height: auto;
}

.top img:hover {
    transform: scale(1);
    opacity: 1;
}
.gp-logo{ width: auto; float: left;}
.top .logo1 {
    position: relative;
    z-index: 2;
    vertical-align: middle;
	display: inline-block;
}

.top .logo2 {
    width: 208px;
    position: relative;
    z-index: 2;
    vertical-align: middle;
    margin-left: 13px;
	display: inline-block;
}

.top .logo1 a {
    display: block;
    background: none;
}

.top .logo2 a {
    display: block;
    background: none;
}

.topRight {
    float: right;
    position: relative;
    vertical-align: middle;
    line-height: 72px;
}

/* .topRight a {
    font-size: 14px;
    color: #444;
    line-height: 26px;
} */

.topRight a:nth-of-type(2) {
    margin-left: 16px;
}


/* .navWrap{height: 50px;background-color: #004ea1;position: relative;z-index: 10;} */

.nav {
    background: #fff;
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    text-align: justify;
    font-size: 0;
}

.nav {
    font-size: 0;
    text-align: justify;
}


/* .nav:after {
  content:'';
  width: 100%;
  display: inline-block;
  overflow: hidden;
  height: 0;
} */


/* .nav > li{text-align: center;position: relative;padding: 0 3%;width: auto;} */

.nav>li {
    float: left;
    position: relative;
    padding: 0 3%;
}
.nav>li.on .second_nav1 { display: block;animation:rotate 400ms;-webkit-animation:rotate 400ms;-moz-animation:rotate 400ms;}

/* .nav > li{position: relative;display: inline-block;text-align: center;vertical-align: middle;text-align: center;} */


/* .nav>li{position: relative;text-align: center;display: inline-block;vertical-align: middle;} */

.nav>li:hover {
    background: url(../images/li_bg.png)
}

.nav>li:hover>a {
    color: #fff;
}

.nav>li>a {
    display: block;
    line-height: 63px;
    font-size: 18px;
    color: #222;
    /* transition: all 0.35s ease-in-out; */
    position: relative;
    z-index: 0;
}


/* .nav > li > a{display:block;height: 63px;line-height: 63px;font-size: 18px;color: #222;transition: all 0.35s ease-in-out;position: relative;z-index: 0;padding: 0 39px;} */


/* .nav > li > a{font-size: 18px;display: block;position: relative;color: #444;} */


/* .nav > li.active{background: url(../images/li_bg.png);} */

.nav>li.active {
    background: @primaryColor;
    position: relative;
}

.nav>li.active::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 5px;
    background: #610008;
}
.nav>li.on::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 5px;
    background: #610008;
}

.nav>li.active>a {
    color: #fff;
}

.second_nav1 {
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 63px;
    width: 100%;
    display: none;
    text-align: center;
    z-index: 10;
}

.second_nav1>dd {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.second_nav1>dd>a {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    color: #444;
    line-height: 1.2;
}

.second_nav1>dd>a:hover {
    background-color: #8e000b;
    color: #fff;
}
@keyframes rotate{
    from{
        transform: rotateX(90deg) translateY(0%);
        top:63px;
    }
    to{
        transform: rotateX(0deg) translateY(0%);
        top:63px;
    }
}
@-moz-keyframes rotate{
    from{
        -moz-transform: rotateX(90deg) translateY(0%);
        top:63px;
    }
    to{
        -moz-transform: rotateX(0deg) translateY(0%);
        top:63px;
    }
}
@-webkit-keyframes rotate{
    from{
        -webkit-transform: rotateX(90deg) translateY(0%);
        top:63px;
    }
    to{
        -webkit-transform: rotateX(0deg) translateY(0%);
        top:63px;
    }
}

/*手机端导航*/

.mobile {
    width: 100%;
    position: absolute;
    height: 10px;
    display: none;
    top: 0;
    right: 0;
    z-index: 999
}

.mobile_title {
    width: 100%;
    float: left;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: normal;
}

.mobile-inner-header {
    width: 40px;
    height: 42px;
    position: absolute;
    top: 20px;
    right: 0px;
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 40px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 40px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
    opacity: 0.8;
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 15px) / 2);
    top: calc((100% + 10px) / 3);
    width: 15px;
    height: 2px;
    background-color: #8e000b
}
.mobile-inner-header-icon-click span{ top: calc((100% + 0px) / 3);}
.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}


/*.mobileLink{height: 39px;line-height: 39px;}
.mobileLink dd{height: 39px;line-height: 39px;float:left;width: 25%;text-align: center;font-size: 16px;font-size: 1.6rem;}
.mobileLink dd a{color:#fff;} */

.mobile-inner-header-icon {
    color: #fff;
    height: 31px;
    text-align: left;
    float: right;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: relative;
    cursor: pointer;
    margin-right: 10px;
    font-weight: bold;
    text-align: right;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    position: relative;
    z-index: 99;
}

.mobile-inner-header-icon-out span {
    width: 15px;
    height: 2px;
    background-color: #8e000b;
    display: block;
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outthird;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(3) {
    transform: translateY(-14px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

.mobile-inner-header-icon-click span:nth-child(3) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickthird;
}

.mobile_links {
    margin: 0 20px;
}

.mobile-inner-nav .mobile_links a {
    display: inline-block;
    width: auto;
    margin: 0 8px;
    border-bottom: none;
    color: #fff;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }
    100% {
        transform: translateY(4px) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }
    100% {
        transform: translateY(4px) rotate(-45deg);
    }
}

@keyframes clickthird {
    0% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

.mobile-inner-header-icon-out span:nth-child(3) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outthird;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }
    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }
    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

@keyframes outthird {
    0% {
        transform: translateY(0) rotate(90deg);
    }
    100% {
        transform: translateY(12px) rotate(0deg);
    }
}

.mobile-inner-nav {
    background-color: #8e000b;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0px;
    padding-top: 73px;
    padding-bottom: 25px;
    display: none;
}

.mobile-inner-nav a {
    display: inline-block;
    line-height: 45px;
    text-decoration: none;
    width: 100%;
    font-size: 1.4rem;
    border-bottom: solid 1px rgba(97, 0, 8, 0.4);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.mobile-inner-nav a:hover {
    color: #fff;
}

.mobile-inner-nav li {
    position: relative;
    padding: 0 20px;
}

.mobile-inner-nav li a {
    text-indent: 15px;
    color: #fff;
}

.mobile-inner-nav li strong {
    color: #fff;
    position: absolute;
    right: 20px;
    top: 0;
    font-size: 2.5rem;
    cursor: pointer;
    width: 40px;
    height: 45px;
    text-align: center;
    line-height: 40px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.mobile-inner-nav a {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}

@-webkit-keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.mobile_subNav {
    display: none;
    padding-left: 10px;
}

.mobile-inner-nav dd a {
    height: 35px;
    line-height: 35px;
    border-bottom: dotted 1px rgba(0, 0, 0, 0.2);
    font-size: 1.2rem;
}

footer {
    background: url(../images/footer_bg.png) no-repeat center center;
    background-size: cover;
    margin-top: 42px;
    padding: 52px 0 42px; 
	position: relative;
}
footer:before{ content: ''; position: absolute; width: 100%; height: 100%; left: 0px; top:0px;}
footer p {
    font-size: 14px;
    line-height: 30px;
    color: #fff;
    opacity: 70%;
    filter: alpha(opacity=0.7);
}

.footer_lt {
    float: left;
}

.footer_rt {
    float: right;
    text-align: right;
}

/* body{opacity: 0.5;}::-webkit-scrollbar{width: 0;}html{background: top left no-repeat url(../images/方案3.0.jpg) !important;} */
.content{margin-top: 60px;}
.subLeft {width: 300px;float: left;overflow: hidden;padding-bottom: 10px;}
/* .gpCon01 {background-color: #fff;margin-bottom: 20px;padding-bottom: 40px;} */
.gpCon01{text-align: center;padding-top: 44px;background: #fff;padding-bottom: 50px;position: relative;}
.gpCon01 div{width: 203px;overflow: hidden;margin: 0 auto;}
/* .gpCon01 div span{padding-bottom: 140%;} */
.gpCon01::before{content: "";width: 100%;height: 4px;position: absolute;top: 0;left: 0;z-index: 10;display: block;}
.gpCon01 p{font-weight: bold;margin-top: 10px;position: relative;}
.gpCon01 p::after{content: "";position: absolute;width: 100px;height: 1px;bottom: 0;left: 50%;margin-left: -50px;}

.gpCon02{margin-top: 20px;position: relative;padding-bottom: 30px;
    background: -webkit-linear-gradient(top, #fff, #fdfdfd);
    background: -o-linear-gradient(top, #fff, #fdfdfd);
    background: -moz-linear-gradient(top, #fff, #fdfdfd);
    background: linear-gradient(to bottom, #fff, #fdfdfd);}
.gpCon02::before{content: "";display: block;width: 100%;height: 4px;position: absolute;top: 0;left: 0;}
/* .gpTitle {height: 84px;padding: 0 0px 0 88px;background: url(../images/rs.png) no-repeat 30px 30px;border-bottom: 1px solid #eee;} */
.gpCon02 .gpTitle {padding: 27px 0px 27px 0px;border-bottom: 1px solid #eee;margin: 0 30px; }
.gpCon02 .gpTitle h3{font-weight: normal; padding:0 0 0 30px; background: url(../images/rs.png) no-repeat 0px 0px; background-size: 23px;}
.gpTitle p{font-size: 14px;line-height: 26px;color: #e0c67e;}
.gpCon02>p{margin: 14px 20px 0 39px;line-height: 24px;}
.gpCon02>p span{float: left;display: block;}
.gpCon02>p i{font-style: normal;display: block;}

.code01{margin-top: 20px;position: relative;}
.code01::before{content: "";display: block;width: 100%;height: 4px;position: absolute;top: 0;left: 0;}
.code01{position: relative;padding: 20px 0;}
.codeImg22{width: 218px;height: 218px;border: 10px solid #fff;display: block;box-shadow: 2px 2px 10px rgba(0,0,0,0.1);margin: 0 auto;}
.qrcodeCanvas{width: 218px;height: 218px;border: 10px solid #fff;display: block;box-shadow: 2px 2px 10px rgba(0,0,0,0.1);margin: 0 auto;}
.qrcodeCanvas canvas{ width: 100%;}

.subRight {margin-left: 340px;overflow: hidden;position: relative;
    background: #fff;
    background: -webkit-linear-gradient(top, #fff, #fdfdfd);
    background: -o-linear-gradient(top, #fff, #fdfdfd);
    background: -moz-linear-gradient(top, #fff, #fdfdfd);
    background: linear-gradient(to bottom, #fff, #fdfdfd);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#fdfdfd',GradientType=0); 
} 
:root .subRight{filter:none;} 
    
.subRight::before{content: "";display: block;width: 100%;height: 4px;position: absolute;top: 0;left: 0;}
.subRight2::before{content: "";display: block;width: 100%;height: 4px;background: #fff;position: absolute;top: 0;left: 0;}
.gpCon03{margin: 20px 30px 24px;border-bottom: 1px solid #eee;padding-bottom: 20px;}
.gpCon04{border: none;min-height: 800px;}
.gpCon03 .gpTitle{margin-bottom: 9px;}
.gpCon03 .gpTitle i { float: left; margin:4px 0 0 0;}
.gpCon03 .gpTitle h3 { margin:0 0 0 20px}
.gpCon03 .gpTitle p{font-size: 14px;line-height: 26px;color: #e0c67e;}
.gpCon03 .gpTitle h3{position: relative; line-height: 26px; display: block; margin-left: 24px;}
.gpCon03 .gpTitle h3:before{content: ''; position: absolute; width: 30px; height: 30px; font-family: icon-icon2;}
/* .gpCon03 p{font-size: 14px;line-height: 30px;color: #444;} */
.gpCon03 ul li{padding: 10px 0;}
/* .gpCon03 ul li a{font-size: 14px;line-height: 30px;color: #444;} */
.gpCon03 span{font-size: 14px;line-height: 30px;color: #444;display: block;}
.gpCon03 .more{width: 124px;height: 31px;text-align: center;line-height: 31px;display: block;margin-bottom: 10px;}

.tab1{position: relative;padding: 36px 50px;}
/* .tab1::before{content: "";display: block;width: 100%;height: 4px;background: #8e000b;position: absolute;top: 0;left: 0;} */
.tab_top{border-bottom: 1px solid #eee;padding-bottom: 8px;overflow: hidden;}
.gp-tab_top:after{content: '';display: block;clear:both;}
.tab_top h2{float: left;}
.tab_top h2 a{float: left;}
.menuList{margin-left: 104px;overflow: hidden;padding-top: 7px;}
.menuList .til_tab.on a{font-weight: bold;}
.menuList .til_tab a{line-height: 12px;margin: 0 15px;}
.bread{float: right;padding-top: 3px;;}
.bread a{line-height: 26px;}


.tabList{}
.tabList ul{padding-top: 10px;}
.tabList ul li{border: 1px solid #eee;margin-top: 10px;padding: 9px 0;}
.tabList ul li a::after{content: '';display: block;clear:both;}
.tabList ul li .list_date{float: left;position: relative;width: 80px;text-align: center;position: relative;}
.tabList ul li .list_date::after{position: absolute;right: 0;content: "";display: block;width: 1px;height: 100%;background: #eee;top: 0;}
.tabList ul li .list_date i{line-height: 26px;font-style: normal;display: block;margin-top: -6px;margin-bottom: 8px;}
.tabList ul li .list_date b{line-height: 26px;font-weight: normal;display: block;margin-top: 10px;}
.tabList ul li p{line-height: 64px;margin-left: 110px;width: calc(100% - 120px);overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.gp-page{text-align: center;padding-top: 28px;}
.gp-page a{width: 45px;height: 45px;border: 2px solid #eee;border-radius: 50%;text-align: center;line-height: 48px;display: inline-block;margin: 0 7px;}
/* .gp-page a:hover{color: #8e000b;} */
/* .gp-page a.on_pages{color: #8e000b;border-color: #8e000b;} */

.awards{}
.awards ul{margin-bottom: 10px;}
.awards ul li{margin-top: 22px;position: relative;padding-left: 100px;transition: all 0.4s;}
.awards ul li::after,.awards ul li::before{content: '';display: block;clear:both;}
.awards ul li a{display: block;box-shadow: 1px 1px 8px rgba(0,0,0,0.1);padding-top: 28px;padding-bottom: 16px;padding-right: 40px;}
.awards ul li a::after,.awards ul li a::before{content: '';display: block;clear:both;}
.awards ul li a .lt{width: 320px;position: absolute;left: 0;overflow: hidden;top: 14px;transition: all 0.4s;}
/* .awards ul li a .lt div{padding-bottom: 56.25%;} */
.awards ul li a .rt{margin-left: 240px;transition: all 0.4s;}
.awards ul li a .rt h3{overflow: hidden;white-space: nowrap;text-overflow: ellipsis;font-weight: normal;}
.awards ul li a .rt p{height: 40px;overflow: hidden;margin-top: 6px;}
.awards ul li a .rt span{margin-top: 20px;display: block;margin-bottom: 26px;}
.awards ul li a .rt span b{display: block;font-weight: normal;}
.awards ul li a .rt span i{line-height: 26px;font-style: normal;display: block;margin-top: -6px;}
.awards ul li:hover{padding-left: 0;}
.awards ul li:hover .lt{left: 10px;}
.awards ul li:hover .rt{margin-left: 340px;}
.awards ul li:hover .rt h3.title{color: #8e000b;}

.pageArticle{padding-top: 25px;}
.pageArticleTitle h3{text-align: center;}
.articleAuthor{margin-top: 11px;text-align: center;}
.articleAuthor span{line-height: 26px;}
.article p{margin-bottom: 30px;text-indent: 2em;}
.article p.art_img{overflow: hidden;text-align: center;}
.article p.art_img div{padding-bottom: 66.8%;}
.attachment{overflow: hidden;padding-top: 31px;padding-bottom: 0px;border-top: 1px solid #eee;}
.attachment .leftart{float: left;width: calc(100% - 200px);}
.attachment .leftart h4 {line-height: 30px;}
.attachment .leftart p{margin-top: 2px;}
.attachment .rightshare {float: right;margin-top: 10px;width: 200px;color: #757575;line-height: 24px;}
.attachment .rightshare>img{margin-right: 7px;vertical-align: middle;}
.rightshare a.bds_weixin, .rightshare a.bds_tsina, .rightshare a.bds_qzone {
    display: inline-block;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    margin: 0 4px;
    vertical-align: middle;
}

.shareBox {
    width: 260px;
    background-color: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    margin: -150px 0 0 -130px;
    z-index: 9998;
    height: 310px;
    border: 6px solid #8F8F8F;
    border-radius: 8px;
    box-shadow: 0 0 7px #aaa;
    display: none;
}
.weChatBox {
    width: 260px;
    height: 300px;
    background-color: #fff;
    border: solid 1px #d8d8d8;
    padding: 10px;
    position: fixed;
    left: 50%;
    top: 50%;
    margin: -130px 0 0 -140px;
    z-index: 9998;
    display: none;
    box-shadow: 0 0 10px rgb(0 0 0 / 25%);
}
.w-close {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 20px;
    position: absolute;
    right: 0;
    top: 0;
    color: #333;
    cursor: pointer;
}
.weChatBox .w-title {
    font-size: 12px;
    font-weight: bold;
    padding: 0 0 10px 0;
}
.qrcode {
    width: 200px;
    height: 200px;
    margin: 15px auto;
    background: #ccc;
}
.w-footer {
    font-size: 12px;
    line-height: 1.5;
    color: #999;
}
.weChatBox .w-title {
    font-size: 12px;
    font-weight: bold;
    padding: 0 0 10px 0;
}
#qrodeText{opacity: 0;position: absolute;left: 0;top: 0;z-index: 0;visibility:hidden;}

.stu_info{}
.stu_info ul{margin:0 -15px;padding-top: 14px;overflow: hidden;}
.stu_info ul li{width: 50%;float: left;margin-bottom: 34px;}
.stu_info ul li a{margin:0 15px;display: block;padding: 16px;box-shadow:1px 1px 10px 0px rgba(0,0,0,0.1);}
.stu_info ul li a span{position: relative;line-height: 26px;padding-left: 13px;margin-top: 15px;display: block;}
.stu_info ul li a span::before{content: "";display: block;position: absolute;left: 0;top: 50%;width: 3px;height: 16px;margin-top: -8px;}

@media screen and (max-width:996px) {
    .content{margin-top: 15px;}
    .subLeft{width: 100%;float: none;}
	.gpCon01 { width: 300px; float: left;}
	.gpCon02 { margin:0 0 0 300px;}
    .subRight{margin-left: 0;}
    .tab1{padding: 15px;}
    .attachment .leftart {
        width: 100%;
        float: none;
    }
    .attachment .rightshare {
        float: initial;
        width: 100%;
        clear: both;
    }
    .gpCon02 br{display: none;}
    .tab_top h2{font-size: 20px;font-size: 2rem;}
    .pageArticleTitle h3{font-size: 18px;font-size: 1.8rem;}
    .article p{font-size: 14px;margin-bottom: 15px;}

    .gp-page a{display: none!important;}
    .gp-page .on_pages,.gp-page .gp-page-prev,.gp-page .gp-page-next{display: inline-block!important;}
}
@media screen and (max-width:767px) {
    .menuList{clear: both;margin-left: 0;}
    .awards ul li{padding-left: 0;}
    .awards ul li a{padding: 20px;}
    .awards ul li a .lt{position: relative;margin: 0 auto;background: none;overflow: hidden;display: block;box-sizing: border-box;width: 80%;}
    .awards ul li a .rt{width: 100%;margin-left: 0;margin-top: 20px;}
    .awards ul li a .rt span{margin: 10px 0;}
    .code01{display: none;}
    .bread{display: none;}

    .gpCon02 .gpTitle{margin: 0 15px;}
    .gpCon02>p{margin: 14px 15px 0;}

    .attachment .rightshare{display: none;}
	.gpCon01 { width: 100%; float: none;}
	.gpCon02 { width: 100%; float: none; margin:0px}
}
@media screen and (max-width:540px) {

}
@media screen and (max-width:479px) {
    .stu_info ul li{width: 100%;}
}
@media screen and (max-width:1500px) {}

@media screen and (max-width:1400px) {
    /* .nav > li > a{padding: 0 32px;} */
    .nav>li {
        padding: 0 2.7%;
    }
}

@media screen and (max-width:1240px) {
    /* .nav > li > a{padding: 0 21px;} */
    .nav>li {
        padding: 0 2.1%;
    }
}

@media screen and (max-width:1060px) {
    /* .nav > li > a{padding: 0 17px;} */
    .nav>li {
        padding: 0 1.8%;
    }
}

@media screen and (max-width:996px) {
	.gpCon03 { margin:20px 0 24px;}
    .topRight {
        display: none;
    }
    .nav {
        display: none;
    }
    .mobile {
        display: block;
    }
    .top {
        padding: 15px 0;
        margin-right: 50px;
    }
    /* .top .logo1 {
        width: 225px;
    } */
    .top .logo2 {
        width: 165px;
    }
}

@media screen and (max-width:767px) {
    .footer_lt,
    .footer_rt {
        float: none;
        text-align: center;
    }
}

@media screen and (max-width:540px) {
    /* .mobile{top: 21px;} */
    .mobile-inner-nav {
        top: 0;
    }
    .top .logo1 {
        width: 41%;
    }
    .top .logo2 {
        width: 34%;
    }
}

@media screen and (max-width:479px) {
    .mobile {
        top: 0;
    }
    .mobile-inner-nav {
        top: 0;
    }
}