﻿body {
    margin: 0 auto;
    padding: 0;
    font-size: 12px;
    font-family: 微软雅黑;
    background: #FFF url('bg.jpg') repeat-x left top;
}

div {
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

img {
    border: 0px;
}

ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    color: #007BB6;
}

p {
    line-height: 200%;
}


/******************************************************************************/

.Wrap {
    width: 100%;
    margin: auto;
    z-index: 10000;
}

.Top {
    width: 1200px;
    height: 155px;
    margin: auto;
    overflow: visible;
}

.Header {
    width: 1200px;
    height: 117px;
    margin: auto;
}

.Nav {
    width: 1200px;
    overflow: visible;
    height: 38px;
}

.Nav ul ul ul {
    display: none;
    position: absolute;
    top: -10000px;
    left: -100000px;
}

.menu,
.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu {
    line-height: 38px;
}

.menu li {
    filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#F7F7F7', endColorstr='#F7F7F7')";
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#F7F7F7', endColorstr='#F7F7F7')";
}

.menu>li {
    display: block;
    float: left;
    position: relative;
}

.menu>li:first-child {}

.menu a {
    border-left: 3px solid rgba(0, 0, 0, 0);
    color: #FFF;
    display: block;
    font-size: 14px;
    line-height: 38px;
    padding: 0 36px 0 36px;
    text-decoration: none;
    text-transform: uppercase;
}

.menu li:hover {
    background-color: #FFF;
    background: -moz-linear-gradient(#FFF, #FFF);
    background: -ms-linear-gradient(#FFF, #FFF);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(#FFF, #FFF), color-stop(#FFF, #FFF));
    background: -webkit-linear-gradient(#FFF, #FFF);
    background: -o-linear-gradient(#FFF, #FFF);
    filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF', endColorstr='#FFF')";
    /*-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF', endColorstr='#FFF')";*/
    ;
    background: linear-gradient(#FFF, #FFF);
    background: url('hover.png') no-repeat center top;
}

.menu li:hover>a {
    border-radius: 5px 0 0 0;
}

.menu li li:hover {
    background: -moz-linear-gradient(#FFF, #FFF);
    background: -ms-linear-gradient(#FFF, #FFF);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(#FFF, #FFF), color-stop(#FFF, #FFF));
    background: -webkit-linear-gradient(#FFF, #FFF);
    background: -o-linear-gradient(#FFF, #FFF);
    filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF', endColorstr='#FFF')";
    /*-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF', endColorstr='#FFF')";*/
    ;
    background: linear-gradient(#FFF, #FFF);
    background-image: none;
    background-color: #FFF;
}

.menu li li:hover>a {
    color: #333;
}

.submenu {
    left: 0;
    max-height: 0;
    position: absolute;
    top: 100%;
    z-index: 0;
    -webkit-perspective: 400px;
    -moz-perspective: 400px;
    -ms-perspective: 400px;
    -o-perspective: 400px;
    perspective: 400px;
}

.submenu li {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
    -moz-transform: rotateY(90deg);
    -ms-transform: rotateY(90deg);
    -o-transform: rotateY(90deg);
    transform: rotateY(90deg);
    -webkit-transition: opacity .4s, -webkit-transform .5s;
    -moz-transition: opacity .4s, -moz-transform .5s;
    -ms-transition: opacity .4s, -ms-transform .5s;
    -o-transition: opacity .4s, -o-transform .5s;
    transition: opacity .4s, transform .5s;
    border-bottom: 1px solid #EEE;
    height: 30px;
    line-height: 30px;
    background: #F7F7F7;
}

.submenu a {
    color: #666;
    display: block;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    text-decoration: none;
    text-transform: uppercase;
    width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.submenu li:hover {
    border-bottom: 1px solid #EEE;
    border-top: none;
}

.menu>li:hover .submenu,
.menu>li:focus .submenu {
    max-height: 2000px;
    z-index: 10;
}

.menu>li:hover .submenu li,
.menu>li:focus .submenu li {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.menu li:hover .submenu li:nth-child(1) {
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.menu li:hover .submenu li:nth-child(2) {
    -webkit-transition-delay: 50ms;
    -moz-transition-delay: 50ms;
    -ms-transition-delay: 50ms;
    -o-transition-delay: 50ms;
    transition-delay: 50ms;
}

.menu li:hover .submenu li:nth-child(3) {
    -webkit-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    -ms-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms;
}

.menu li:hover .submenu li:nth-child(4) {
    -webkit-transition-delay: 150ms;
    -moz-transition-delay: 150ms;
    -ms-transition-delay: 150ms;
    -o-transition-delay: 150ms;
    transition-delay: 150ms;
}

.menu li:hover .submenu li:nth-child(5) {
    -webkit-transition-delay: 200ms;
    -moz-transition-delay: 200ms;
    -ms-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    transition-delay: 200ms;
}

.menu li:hover .submenu li:nth-child(6) {
    -webkit-transition-delay: 250ms;
    -moz-transition-delay: 250ms;
    -ms-transition-delay: 250ms;
    -o-transition-delay: 250ms;
    transition-delay: 250ms;
}

.menu li:hover .submenu li:nth-child(7) {
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.menu li:hover .submenu li:nth-child(8) {
    -webkit-transition-delay: 350ms;
    -moz-transition-delay: 350ms;
    -ms-transition-delay: 350ms;
    -o-transition-delay: 350ms;
    transition-delay: 350ms;
}

.submenu li:nth-child(1) {
    -webkit-transition-delay: 350ms;
    -moz-transition-delay: 350ms;
    -ms-transition-delay: 350ms;
    -o-transition-delay: 350ms;
    transition-delay: 350ms;
}

.submenu li:nth-child(2) {
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.submenu li:nth-child(3) {
    -webkit-transition-delay: 250ms;
    -moz-transition-delay: 250ms;
    -ms-transition-delay: 250ms;
    -o-transition-delay: 250ms;
    transition-delay: 250ms;
}

.submenu li:nth-child(4) {
    -webkit-transition-delay: 200ms;
    -moz-transition-delay: 200ms;
    -ms-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    transition-delay: 200ms;
}

.submenu li:nth-child(5) {
    -webkit-transition-delay: 150ms;
    -moz-transition-delay: 150ms;
    -ms-transition-delay: 150ms;
    -o-transition-delay: 150ms;
    transition-delay: 150ms;
}

.submenu li:nth-child(6) {
    -webkit-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    -ms-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms;
}

.submenu li:nth-child(7) {
    -webkit-transition-delay: 50ms;
    -moz-transition-delay: 50ms;
    -ms-transition-delay: 50ms;
    -o-transition-delay: 50ms;
    transition-delay: 50ms;
}

.submenu li:nth-child(8) {
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.Banner {
    width: 100%;
    height: 491px;
    margin: auto;
    overflow: visible;
}

.NBanner {
    /*width: 100%;
	background: url('nbanner.jpg') no-repeat center top;
	height: 341px;*/
}

.Container {
    width: 1200px;
    margin: auto;
}

.IndexCont {
    width: 1200px;
    margin: 20px auto;
}

.IndexCont1 {
    width: 1200px;
    height: 57px;
    background: url('xw.jpg') no-repeat left top;
}

.marquee1 {
    width: 800px;
    height: 300px;
    overflow: hidden;
}

.marquee1 ul {
    list-style: none;
    margin: 0 auto;
    padding: 0px;
}

.marquee1 li {
    float: left;
    padding: 5px;
}

.marquee1 li img {
    width: 200px;
    height: 200px;
}

.IndexCont1_1 {
    float: left;
    width: 960px;
    padding-left: 120px;
}

.IndexCont1 ul {}

.IndexCont1 ul li {
    height: 57px;
    line-height: 57px;
}

.IndexCont1 ul li {
    width: 960px;
    float: left;
}

.IndexCont1 .Name {
    width: 100%;
}

.IndexCont1 .Time {
    display: none;
    width: 0;
}

.IndexCont1 ul li a {
    font-size: 14px;
}

.IndexCont1 ul li a:hover {
    color: #277FC2;
}

.IndexCont1 .Name {
    width: 70%;
}

.IndexCont1 .Time {
    width: 30%;
}

.IndexCont1_2 {
    float: left;
    width: 100px;
}

.btnT {
    float: left;
    width: 100px;
    height: 28px;
    line-height: 28px;
    text-align: right;
}

.btnB {
    float: left;
    width: 100px;
    height: 28px;
    line-height: 28px;
    text-align: right;
}

.IndexCont2 {
    width: 1200px;
    margin: 20px auto;
}

.IndexCont2_1 {
    float: left;
    width: 202px;
}

.Lx {
    width: 202px;
    float: left;
    padding-top: 20px;
}

.Lx_1 {
    float: left;
    width: 200px;
    border: 1px #E5E3DA solid;
}

.Lx_1 p {
    padding: 10px 0px 0px 10px;
}

.Lx_1 p span {
    color: #0052A4;
}

.IndexCont2_2 {
    float: left;
    width: 980px;
}

.IndexCont2_2 ul {
    padding: 0px 0px 0px 25px;
    width: 980px;
    float: left;
}

.IndexCont2_2 ul li {
    float: left;
    width: 245px;
    height: 190px;
    overflow: hidden;
}

.IndexCont2_2 ul li a {}

.IndexCont2_2 .Image {
    position: relative;
    float: left;
    width: 210px;
}

.IndexCont2_2 .Image img {
    width: 200px;
    height: 140px;
    padding: 4px;
    border: 1px solid #CCCCCC;
}

.IndexCont2_2 .Name {
    float: left;
    font-size: 12px;
    font-weight: bold;
    height: 20px;
    width: 210px;
    margin-top: 5px;
}

.IndexCont2_2 .Brief {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 210px;
    height: 160px;
    background: url('../../style/cn_style/ty.png') no-repeat left top;
}

.IndexCont2_2 .BriefAlpha {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    color: white;
    cursor: pointer;
}

.IndexCont2_2 .BriefAlpha {}

.NIndexCont2_2 {
    float: left;
    width: 990px;
}

.NIndexCont2_2_1 {
    width: 990px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    font-weight: bold;
    color: #369;
    border-bottom: 2px #CCC dotted;
    margin-left: 18px;
    float: left;
}

.NIndexCont2_2_2 {
    width: 990px;
    float: left;
    margin-left: 20px;
    margin-top: 20px;
}

.NIndexCont2_2_2_0 {
    float: left;
    width: 990px;
}

.NIndexCont2_2_2_1 {
    float: left;
    width: 990px;
    padding-top: 20px;
}

.NIndexCont2_2_2_1 ul li {
    background: url('hover11.jpg') no-repeat center top;
    height: 25px;
    line-height: 25px;
    float: left;
    font-size: 14px;
    width: 100px;
    text-align: center;
    color: white;
}

.NIndexCont2_2_2_1 ul li a:hover {
    display: block;
    background: url('hover1.jpg') no-repeat center top;
    width: 100px;
    height: 25px;
    line-height: 25px;
    color: white;
}

.NIndexCont2_2_2_1 .active {
    display: block;
    background: url('hover1.jpg') no-repeat center top;
    width: 100px;
    height: 25px;
    line-height: 25px;
    color: white;
}

.NIndexCont2_2_2_2 {
    float: left;
    width: 940px;
    margin-top: 20px;
}

.NIndexCont2_2_2_2 table {
    width: 98%;
    border-top: 1px #CCC solid;
    border-left: 1px #CCC solid;
}

.NIndexCont2_2_2_2 table tr td {
    border-right: 1px #CCC solid;
    border-bottom: 1px #CCC solid;
    text-align: center;
    line-height: 25px;
}

.NIndexCont2_2_2_2 table .left {
    text-align: left;
    text-indent: 10px;
    color: #369;
    font-size: 14px;
    font-weight: bold;
}

.NIndexCont2_2_2_2 table .left1 {
    text-align: left;
    text-indent: 10px;
}

#myTab4_Content3 p strong {
    font-weight: bold;
    color: #369;
}

.IndexCont3 {
    width: 1200px;
    padding: 20px 0;
}

.IndexCont3_1 {
    float: left;
    width: 17px;
}

.IndexCont3_1 .btnL1 {
    float: left;
    width: 17px;
    height: 167px;
    background: url('left1.jpg') no-repeat left center;
}

.IndexCont3_2 {
    float: left;
    width: 1146px;
    padding: 0px 10px;
}

.marquee2 {
    width: 1146px;
    height: 190px;
}

.IndexCont3_2 ul li {
    float: left;
    width: 230px;
    height: 190px;
}

.IndexCont3_2 ul li img {
    padding: 4px;
    border: 1px #CCC solid;
    width: 200px;
    height: 150px;
}

.IndexCont3_2 ul li span {
    display: block;
    width: 210px;
    text-align: center;
    height: 20px;
    line-height: 20px;
}

.IndexCont3_3 {
    float: left;
    width: 17px;
}

.IndexCont3_3 .btnR1 {
    float: left;
    width: 17px;
    height: 167px;
    background: url('right1.jpg') no-repeat left center;
}

.IndexCont4 {
    width: 1200px;
}

.IndexCont4_1 {
    float: left;
    width: 380px;
}

.IndexCont4_1 ul {
    padding: 10px 0;
}

.IndexCont4_1 ul li {
    background: url('icon2.jpg') no-repeat left center;
    height: 33px;
    line-height: 33px;
    border-bottom: 1px #CCC dotted;
}

.IndexCont4_1 .Time {
    display: none;
    position: absolute;
    top: -10000px;
    left: -10000px;
}

.IndexCont4_2 {
    float: left;
    width: 380px;
    padding: 0px 30px;
}

.IndexCont4_2 p {
    padding: 10px 0;
}

.IndexCont4_2 strong {
    color: #0063BE;
}

.IndexCont4_3 {
    float: left;
    width: 380px;
}

.IndexCont4_3 p {
    padding: 10px 0 0px 10px;
}

.IndexCont4_3 p img {
    float: right;
    margin-left: 0px;
}

.IndexCont4_3 p strong {
    color: #0063BE;
}

.IndexCont6 {
    float: left;
    width: 100%;
    background: white url('bg3.jpg') repeat-x left top;
}

.IndexCont6_1 {
    width: 1200px;
    margin: auto;
    text-align: center;
}

.IndexCont7 {
    width: 1200px;
    margin: auto;
}

.marquee3 {
    width: 1200px;
    height: 80px;
}

.IndexCont7 ul li {
    float: left;
    padding: 0px 15px;
}

.IndexCont7 ul li img {
    height: 80px;
}

.Footer {
    height: 130px;
    text-align: center;
    color: white;
    margin: 20px 0 0;
    background: #666666;
}

.Footer p {
    padding: 20px 0px 0px;
    line-height: 280%;
}