* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
}

body {
    font-family: "å¾®è½¯é›…é»‘";
    max-width: 1500px;
    margin: auto;
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

.clear {
    clear: both;
    overflow: hidden;
}

.mobile-inner-header {
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 60px;
    display: none;
    line-height: 60px;
    text-align: center;
    color: #333;
    font-weight: bold;
    font-size: 22px;
}

.mobile-inner-header-icon {
    color: #333;
    height: 60px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 60px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
    outline: none;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(51, 51, 51, 0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: rgba(51, 51, 51, 1);
}

.mobile-inner-header img {
    height: 70%;
}

.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;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.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;
}

@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);
    }
}

.mobile-inner-nav {
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0px;
    padding-top: 30px;
    padding-bottom: 80px;
    display: none;
    z-index: 999;
}

.mobile-inner-nav a {
    display: inline-block;
    line-height: 50px;
    text-decoration: none;
    width: 80%;
    margin-left: 10%;
    color: #333;
    border-bottom: solid 1px rgba(51, 51, 51, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav a:hover {
    color: rgba(51, 51, 51, 0.4);
    border-bottom: solid 1px rgba(51, 51, 51, 0.2);
}

.banner img {
    width: 100%;
}

.head {
    width: 100%;
    height: 110px;
}

.logo {
    float: left;
    line-height: 110px;
    width: 16.5%;
}

.logo img {
    width: 100%;
}

.search {
    float: right;
    cursor: pointer;
    line-height: 110px;
}

.search-box {
    width: 28%;
    position: fixed;
    right: 0;
    top: 110px;
    display: none;
    z-index: 9999;
    background: rgba(255, 255, 255, 1);
    padding: 18px 2%;
    border: 1px solid #ddd;
}

.search-box .close {
    float: right;
    width: 35px;
    height: 35px;
    background: url(../images/wel26.png) no-repeat center;
    background-size: 100%;
    margin-top: 2px;
    opacity: 1;
}

.search-box form {
    width: 76%;
    height: 40px;
    line-height: 40px;
    position: relative;
    border: 1px solid rgba(51, 51, 51, 1);
}

.search-box form .text {
    font-size: 12px;
    color: #333;
    border: none;
    background: none;
    padding: 0 28px 0 18px;
    width: 100%;
    height: 40px;
    color: #333;
    line-height: 40px;
    outline: none;
}

.search-box form .submit {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 50%;
    right: 14px;
    margin-top: -15px;
    background: url(../images/search.png) no-repeat center;
    border: none;
}

.search-box form .text::-webkit-input-placeholder {
    color: #333;
}

.search-box form .text:-moz-placeholder {
    color: #333;
}

.search-box form .text::-moz-placeholder {
    color: #333;
}

.search-box form .text:-ms-input-placeholder {
    color: #333;
}

.nav {
    float: right;
    margin-right: 45px;
}

.nav ul {
    margin-bottom: 0;
}

.nav ul li {
    float: left;
    height: 110px;
    line-height: 110px;
    padding: 0 21px;
    position: relative;
}

.nav ul li a {
    font-size: 16px;
    color: #121111;
    display: block;
}

.nav ul li .detailnav {
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    display: none;
    z-index: 999;
}

.nav ul li .detailnav li {
    height: 41px;
    line-height: 40px;
    width: 100%;
    padding: 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
    background: #fff;
}

.nav ul li .detailnav li a {
    font-size: 14px;
}

.nav ul li:hover .detailnav {
    display: block;
}

.new {
    width: 100%;
    overflow: hidden;
    margin-top: 70px;
}

.maintitle {
    text-align: center;
    font-size: 44px;
    color: #241f1f;
}

.titleline {
    width: 28px;
    height: 5px;
    background: #074184;
    margin: 5px auto;
}

.titles {
    text-align: center;
    font-size: 18px;
    color: #454546;
}

.news {
    width: 100%;
    overflow: hidden;
    margin-top: 45px;
}

.newtop {
    width: 100%;
    overflow: hidden;
}

.left_new {
    float: left;
    width: 40%;
    overflow: hidden;
}

.left_new img {
    width: 100%;
    transition: all 0.8s;
}

.left_new img:hover {
    transform: scale(1.1);
}

.right_new {
    float: right;
    width: 56%;
    margin-right: 1%;
}

.rnewdate {
    float: left;
    width: 80px;
    height: 80px;
    text-align: center;
    background: #074184;
}

.rnewday {
    font-size: 40px;
    color: #fefefe;
}

.rnewtime {
    font-size: 16px;
    color: #fff;
    margin-top: -10px;
}

.rnewintro {
    float: right;
    width: 89%;
}

.rnewtitle {
    font-size: 20px;
    color: #181616;
}

.rnewcon {
    font-size: 14px;
    color: #595656;
    margin-top: 5px;
}

.rnew {
    overflow: hidden;
    padding-bottom: 40px;
    border-bottom: 2px solid #074184;
    margin-bottom: 35px;
}

.rnew:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.newbot {
    width: 100%;
    overflow: hidden;
    margin-top: 55px;
}

.newbots {
    width: 32%;
    float: left;
    margin-right: 2%;
}

.newbots:last-child {
    margin-right: 0;
}

.newbot_pic {
    overflow: hidden;
}

.newbot_pic img {
    width: 100%;
    transition: all 0.8s;
}

.newbot_pic img:hover {
    transform: scale(1.1);
}

.newbot_intro {
    background: #f2f2f2;
    padding: 15px 40px;
    overflow: hidden;
    width: 100%;
}

.newbot_con {
    float: left;
    font-size: 14px;
    color: #595656;
    width: 85%;
}

.newbot_more {
    float: right;
    width: 10%;
}

.newbot_more img {
    width: 100%;
}

.about {
    width: 100%;
    overflow: hidden;
    margin-top: 85px;
}

.right_ab {
    float: right;
    margin-top: 20px;
    overflow: hidden;
    width: 37.3%;
}

.right_ab img {
    width: 100%;
    transition: all 0.8s;
}

.right_ab img:hover {
    transform: scale(1.1);
}

.left_ab {
    float: left;
    width: 59%;
}

.abtitle {
    font-size: 44px;
    color: #241f1f;
}

.abline {
    width: 28px;
    height: 5px;
    background: #074184;
    margin-top: 10px;
    margin-left: 75px;
}

.abcon {
    text-indent: 3em;
    line-height: 25px;
    margin-top: 35px;
    font-size: 14px;
    color: #666666;
}

.abmore a {
    display: block;
    width: 212px;
    height: 50px;
    line-height: 48px;
    border: 1px solid #221e1e;
    text-align: center;
    font-size: 16px;
    color: #222222;
}

.abmore {
    margin-top: 90px;
}

.product {
    width: 100%;
    overflow: hidden;
    margin-top: 90px;
}

.products {
    width: 100%;
    overflow: hidden;
    margin-top: 45px;
    background: #2070b5;
}

.right_pro {
    float: right;
    width: 65.3%;
}

.right_pro img {
    width: 100%;
}

.proswiper .swiper-button-prev {
    width: 72px;
    height: 72px;
    background: url(../images/left04.png) center no-repeat;
    top: 50%;
    left: 0;
}

.proswiper .swiper-button-next {
    width: 72px;
    height: 72px;
    background: url(../images/right04.png) center no-repeat;
    top: 50%;
    right: 0;
}

.left_pro {
    float: left;
    width: 29.7%;
    margin-left: 2.3%;
}

.lpro_title {
    font-size: 28px;
    color: #fff;
    margin-top: 180px;
}

.lpro_con {
    font-size: 14px;
    color: #fff;
    line-height: 25px;
    margin-top: 15px;
}

.lpro_more a {
    display: block;
    text-align: center;
    border: 1px solid #fff;
    width: 186px;
    height: 39px;
    line-height: 37px;
    font-size: 25px;
    color: #fff;
    font-weight: 300;
}

.lpro_more {
    margin-top: 55px;
}

.foot {
    width: 100%;
    overflow: hidden;
    background: #1f2024;
}

.foots {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #3a3b3e;
    padding-top: 75px;
    padding-bottom: 40px;
    padding-left: 50px;
    padding-right: 50px;
}

.copy {
    width: 100%;
    overflow: hidden;
    line-height: 80px;
    padding: 0 50px;
}

.left_copy {
    float: left;
}

.left_copy a {
    font-size: 14px;
    color: #d3d3d3;
}

.right_copy {
    float: right;
}

.right_copy select {
    width: 132px;
    height: 36px;
    border: 1px solid #3c3c42;
    border-radius: 5px;
    padding-left: 10px;
    background: none;
    outline: none;
    color: #979798;
}

.fnav {
    float: left;
    margin-right: 125px;
}

.ftitle {
    font-size: 16px;
    color: #fff;
}

.fline {
    width: 18px;
    height: 2px;
    background: #da251d;
    margin-top: 10px;
}

.fnav ul {
    margin-bottom: 0;
}

.fnav ul li {
    margin-top: 13px;
}

.fnav ul li a {
    font-size: 14px;
    color: #bababa;
}

.fnav:nth-child(6) {
    margin-right: 0;
}

.fcontact {
    float: right;
    padding-left: 25px;
    border-left: 1px solid #3e3f41;
}

.fcon {
    font-size: 16px;
    color: #fff;
}

.fcon img {
    margin-right: 10px;
    margin-top: -3px;
}

.fnum {
    font-family: "Bahnschrift";
    font-size: 32.5px;
    color: #fff;
    margin-top: 10px;
}

.saoma {
    overflow: hidden;
    margin-top: 15px;
}

.sm {
    float: left;
    text-align: center;
    margin-right: 20px;
}

.sm:last-child {
    margin-right: 0;
}

.sm p {
    font-size: 14px;
    color: #9a9a9a;
    margin-top: 15px;
}

.inside_top_nav {
    padding: 25px 0;
    background-color: #f8f7fc;
    text-align: center;
}

.inside_top_nav a {
    padding: 0 10px;
    color: #464646;
    text-decoration: none;
    transition: all 0.2s linear;
}

.inside_main_wrapper {
    border-bottom: 1px solid #DADADA;
    margin: 80px 0;
    padding-bottom: 80px;
    padding-left: 15px;
    padding-right: 15px;
}

.inside_main {
    width: 100%;
    margin: 0 auto;
}

.inside_single {
    font-size: 14px;
    line-height: 30px;
}

.justify_center {
    justify-content: center;
}

.inside_top_nav a:hover {
    color: #2070b5;
}

.inside_main_wrapper {
    border-bottom: 1px solid #DADADA;
    margin: 80px 0;
    padding-bottom: 80px;
}

.inside_main {
    width: 100%;
    margin: 0 auto;
}

.inside_single {
    font-size: 14px;
    line-height: 30px;
}

.justify_center {
    justify-content: center;
}

.inside_top_nav a:hover {
    color: #2070b5;
}

.inside_news_item {
    width: 100%;
    border: 1px solid #DADADA;
    padding: 20px;
    margin-bottom: 30px;
}

.inside_news_item:hover {
    background-color: #fafafa;
    box-shadow: 0 0 20px rgba(129, 129, 129, 0.3);
}

.inside_news_item .inside_news_item_img {
    width: 240px;
    height: 170px;
    margin-right: 30px;
}

.inside_news_item .inside_news_item_img img {
    width: 100%;
    height: 100%;
}

.inside_news_item .inside_news_item_info {
    flex-direction: column;
    flex: 1;
}

.inside_news_item .inside_news_item_info h3 {
    font-size: 22px;
    line-height: 44px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.inside_news_item .inside_news_item_info h3 a {
    color: #000;
}

.inside_news_item .inside_news_item_info span {
    color: #999;
    line-height: 22px;
}

.inside_news_item .inside_news_item_info p {
    line-height: 22px;
    width: 100%;
    color: #777;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.inside_news_item .inside_news_item_info>a {
    display: block;
    text-align: center;
    width: 100px;
    color: #777;
    border: 1px solid #e0e0e0;
    height: 32px;
    font-size: 14px;
    line-height: 32px;
    border-radius: 5px;
}

.inside_news_item .inside_news_item_info:hover>a {
    border: 1px solid #2070b5;
    color: #fff;
    width: 120px;
    background-color: #2070b5;
}

.inside_news_item .inside_news_item_img {
    width: 240px;
    height: 170px;
    margin-right: 30px;
	display:none;
}

.justify_between {
    justify-content: space-between;
}

.box {
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.p12-aboutinfo-1 {
    max-width: 1400px;
    margin: auto;
    overflow: hidden;
}

.p12-aboutinfo-1 .tit {
    height: 160px;
    background: url(../image/d63899212b4c4e7d99ac9ed293b3ac9f_2.jpg)no-repeat center 91px;
    clear: both;
    text-align: center;
}

.p12-aboutinfo-1 .tit span {
    display: block;
    font-size: 28px;
    color: #000;
    padding-top: 45px;
}

.p12-aboutinfo-1 .tit em {
    font-style: normal;
    color: #999;
    text-transform: uppercase;
    font-family: "Times New Roman";
    padding-top: 18px;
    display: block;
}

.g-gywm {
    height: 530px;
    max-width: 1400px;
    margin: auto;
    overflow: hidden;
}

.wm-l {
    width: 40%;
    float: left;
    color: #fff;
    height: 460px;
    overflow: hidden;
    background: #2070b5;
    padding: 60px 0 0 40px;
}

.wm-l h4 {
    font: 20px "Microsoft YaHei";
    line-height: 60px;
    padding-bottom: 30px;
    margin: 0;
}

.wm-l li {
    font: 16px "Microsoft YaHei";
    color: #fff;
    line-height: 40px;
}

.wm-l li b {
    font-weight: bold;
    font-size: 20px;
    color: #fff;
}

.wm-r {
    float: left;
    width: 60%;
}

#map {
    width: 100%;
    height: 460px;
    border: 1px solid rgb(204, 204, 204);
    font-size: 12px;
}

.map-title {
    font-size: 16px;
    line-height: 24px;
}

.map-list {
    font-size: 14px;
    line-height: 22px;
    color: #333;
    margin-top: 6px;
}

.listcontacts {
    width: 100%;
    background: #f1f1f1;
    overflow: hidden;
}

.listcontacts>div {
    max-width: 1400px;
    margin: 5rem auto;
    overflow: hidden;
}

.listcontacts>div>span {
    font-size: 28px;
    color: #6a6a6a;
}

.listcontacts>div>span>i {
    font-style: normal;
    font-size: 19px;
    color: #8d8c8c;
    font-family: Arial Regular;
    text-transform: uppercase;
    margin-left: 5px;
}

.listcontactsTitle {
    overflow: hidden;
    margin-top: 3rem;
}

.listcontactsTitle input {
    height: 58px;
    display: block;
    float: left;
    padding-left: 47px;
    box-sizing: border-box;
    width: 48%;
    font-size: 16px;
    margin-bottom: 2rem;
    border: 1px solid #ccc;
    outline: none;
}

.listcontactsTitle input:nth-child(1) {
    background: url(../image/122.png)left 0 no-repeat #fff;
    background-position: 11px;
}

.listcontactsTitle input:nth-child(2) {
    float: right;
    background: url(../image/123.png)left 0 no-repeat #fff;
    background-position: 17px;
}

.listcontactsTitle input:nth-child(3) {
    background: url(../image/124.png)left 0 no-repeat #fff;
    background-position: 8px;
}

.listcontactsTitle input:nth-child(4) {
    float: right;
    background: url(../image/125.png)left 0 no-repeat #fff;
    background-position: 12px;
}

.listcontactsTextarea {
    width: 100%;
    border: 1px solid #ccc;
    background: url(../image/126.png)left 0 no-repeat #fff;
    background-position: 12px 16px;
    padding-left: 47px;
    font-size: 16px;
    padding-top: 18px;
    height: 174px;
    outline: none;
}

.listcontactsubmit {
    text-align: center;
    margin-top: 3rem;
}

.listcontactsubmit input {
    background: #2070b5;
    color: #fff;
    border: 0;
    width: 260px;
    height: 50px;
    font-size: 16px;
    margin: 0 5px;
}

.listcontactsubmit input:nth-child(2) {
    background: #484848;
}

.listpro {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 10px;
    line-height: 34px;
    font-size: 16px;
    color: #666565;
}

.listpronav {
    overflow: hidden;
    margin-top: 38px;
    margin-bottom: 45px;
}

.listpronav li {
    width: 90px;
    height: 30px;
    border: 1px solid #e6e6e6;
    text-align: center;
    line-height: 30px;
    float: left;
    margin-right: 9px;
}

.listpronav li a {
    display: block;
    color: #444;
    font-size: 16px;
}

.listpronav li:hover {
    background: #2070b5;
    border: 1px solid #2070b5;
}

.listpronav li:hover a {
    color: #fff;
}

.listpronav li.current {
    background: #2070b5;
    border: 1px solid #2070b5;
}

.listpros {
    width: 100%;
    overflow: hidden;
}

.listpros a {
    display: block;
    width: 31%;
    float: left;
    margin-right: 3.5%;
    margin-bottom: 2%;
}

.listpros a .listprosimg {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.listpros a .listprosimg img {
    width: 100%;
    transition: all 0.3s;
}

.listpros a .listprosimg div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.5s;
}

.listpros a .listprosimg div span {
    width: 64px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    display: block;
    margin: auto;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    border-bottom: 1px solid #fff;
    color: #fff;
    border-top: 1px solid #fff;
    font-size: 16px;
}

.listpros a p {
    font-size: 18px;
    color: #444;
    line-height: 44px;
    margin: 0;
}

.listpros a:nth-child(3n) {
    margin-right: 0;
}

.listpros a:hover .listprosimg img {
    transform: scale(1.1);
}

.listpros a:hover .listprosimg div {
    opacity: 1;
}

.inside_product {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.inside_pro_item {
    width: 24%;
    margin-bottom: 30px;
    background-color: #fff;
    border: 1px solid #DADADA;
}

.inside_pro_item:nth-of-type(4n) {
    margin-right: 0;
}

.inside_pro_item:hover {
    background-color: #fff;
    box-shadow: 0 0 20px rgba(129, 129, 129, .3);
}

.inside_pro_item .pro_img {
    width: 100%;
    overflow: hidden;
}

.inside_pro_item .pro_img img {
    width: 100%;
}

.inside_pro_item:hover .pro_img img {
    transform: scale(1.05);
}

.inside_pro_item .pro_text {
    height: 60px;
    font-size: 16px;
    line-height: 60px;
    text-align: center;
    transition: all .2s linear;
    border-top: 1px solid #DADADA;
}

.inside_pro_item:hover .pro_text {
    color: #fff;
    background-color: #2070b5;
}

.inside_pro_item:hover a {
    color: #fff;
}

.inside_main_wrapper {
    border-bottom: 1px solid #DADADA;
    margin: 80px 0;
    padding-bottom: 80px;
}

.inside_main {
    max-width: 1400px;
    margin: 0 auto;
}

.inside_single {
    font-size: 14px;
    line-height: 30px;
}


/* inside_product */

.inside_product {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.inside_pro_item {
    width: 24%;
    margin-bottom: 30px;
    background-color: #fff;
    border: 1px solid #DADADA;
}

.inside_pro_item:nth-of-type(4n) {
    margin-right: 0;
}

.inside_pro_item:hover {
    background-color: #fff;
    box-shadow: 0 0 20px rgba(129, 129, 129, .3);
}

.inside_pro_item .pro_img {
    width: 100%;
    overflow: hidden;
}

.inside_pro_item .pro_img img {
    width: 100%;
}

.inside_pro_item:hover .pro_img img {
    transform: scale(1.05);
}

.inside_pro_item .pro_text {
    height: 60px;
    font-size: 16px;
    line-height: 60px;
    text-align: center;
    transition: all .2s linear;
    border-top: 1px solid #DADADA;
}

.inside_pro_item:hover .pro_text {
    color: #fff;
    background-color: #2070b5;
}

.inside_pro_item:hover a {
    color: #fff;
}

.news_title {
    margin: 5px 0;
    padding: 0;
    text-align: center;
    font-size: 16px;
}

.news_info {
    text-align: center;
    color: #999;
    border: 1px solid #e1e1e1;
    border-left: 0;
    border-right: 0;
    margin: 10px 0;
    padding: 5px 0;
}

#art_content {
    word-break: break-all;
    font-size: 13px;
    padding: 0 0 10px 0;
}

#art_content img {
    max-width: 920px;
    margin: 10px;
}

.news_pre {
    margin: 10px 0 5px 0;
    clear: both;
}
.yj{
	display:none;
	position:absolute;
	top:20px;
	width:100%;
	left:0;
	text-align:center;
	background-color: #f8f7fc;
	-webkit-box-shadow: #f2f2f2 0px 0px 10px;
    -moz-box-shadow: #f2f2f2 0px 0px 10px;
    box-shadow: #f2f2f2 0px 0px 10px;
	line-height:40px;
}
.ej{
	display:none;
	position:absolute;
	top:20px;
	width:200%;
	left:-50%;
	text-align:center;
	background-color: #f8f7fc;
	-webkit-box-shadow: #f2f2f2 0px 0px 10px;
    -moz-box-shadow: #f2f2f2 0px 0px 10px;
    box-shadow: #f2f2f2 0px 0px 10px;
	line-height:40px;
}
.yj a,.ej a{
	display:block;
	padding:0;
	width:100%;
}
.lmenu_f,.fmon,.smon{
	position:relative;
}
.lmenu_f:hover .yj,
.fmon:hover .yj,
.smon:hover .ej{
	display:block;
}
.ny_news_page{
	margin:10px auto 60px;
	clear:both;
	padding-top:10px;
	width:1200px;}
.ny_news_page a,.ny_news_page span{
	display:block;
	float:left;
	line-height:40px;
	text-align:center;
	font-size:12px;
	width:70px;
	height:40px;
	color:#333;
	background-color:#f8f8f8;
	margin-right:10px}
.ny_news_page a:hover,.ny_news_page span{
	background-color:#03c;
	color:#fff;}
.ny_news_page a.page_aa{
	background-color:#00b366;
	color:#fff;}
/**************************/
.ny_news_pageaaa{
	margin-top:80px;
	margin-bottom:50px;}
