/* 公共样式 */
* {
    margin: 0;
    padding: 0;
}

/* 进本样式 */
.container {
    width: 1000px;
    margin: 0 auto;
}

.clr {
    clear: both;
}

.more {
    float: right;
    font-size: 16px;
}

.more a {
    text-decoration: none;
    color: #666;
}

body {
    font-family: "Microsoft YaHei";
}

/* 头部 开始 */
.head {
}
/* 顶部文字 */
.head > .title {
    background: url(../images/head-title-bg.png) no-repeat center center;
    line-height: 39px;
    font-size: 14px;
    color: #F5F6F8;
}
.head > .title .left {
    padding-left: 9px;
}
.head > .title .right {
    float: right;
    padding-right: 14px;
}
/* 导航菜单 */
.head .nav {

}
.head .nav > ul {
    list-style-type: none;
}
.head .nav > ul > li {
    position: relative;
    float: left;
    font-size: 15px;
    margin-right: 32px;
    padding: 6px 0;
    color: #666;
    line-height: 22px;
    border-bottom: 2px solid #fff;
    cursor: pointer ;
}
.head .nav > ul > li:last-child {
    margin-right: 0;
}
.head .nav > ul > li > a {
    text-decoration: none;
    display: block;
    width: 61px;
    color: #666;
    line-height: 22px;
    border-bottom: 2px solid #fff;
}
.head .nav > ul > li > ul.sub-nav {
    width: 140%;
    position: absolute;
    top: 36px;
    left: -8px;
    background-color: #fff;
    list-style: none;
    padding: 5px 10px 5px 10px;
    border: 1px solid #c0c0c0;
    border-top: 0;
    display: none;
}
.head .nav > ul > li:hover > ul.sub-nav {
    display: block;
}
.head .nav > ul > li > ul.sub-nav a {
    text-decoration: none;
    font-size: 14px;
    color: #666;
    line-height: 24px;
}
.head .nav > ul > li > ul.sub-nav > li.active > a:hover,
.head .nav > ul > li > ul.sub-nav a:hover {
    border-bottom: 1px solid #115B8F;
}
.head .nav > ul > li.active > a {
    border-color: #115B8F;
}
.head .nav > ul > li > a:hover {
    border-color: #115B8F;
}
/* logo */
.head .logo-box {
    padding-left: 3px;
    padding-top: 18px;
    position: relative;
}
.head .logo-box > .logo {
    height: 67px;
}
.head .logo-box .search-box {
    position: absolute;
    top: 12px;
    right: 14px;
}
.head .logo-box .search-box .input-text {
    height: 32px;
    width: 160px;
    border-radius: 1.3em;
    border: 2px solid #BCC6CD;
    box-shadow: 10px 10px 25px #eee inset;
    padding-left: 10px;
    padding-right: 30px;
    line-height: 32px;
    font-size: 14px;
}
.head .logo-box .search-box .input-button {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    border: 1px solid #6CA5D5;
    border-radius: 50%;
    background: #8DCFFB url(../images/search-button.png) no-repeat center center;
    cursor: pointer;
}
/* 头部 /结束 */
/* 横幅-公用 开始 */
.banner {
    height: 300px;
    width: 100%;
    background: url(../images/banner2.png) no-repeat top center;
    background-size: auto 300px;
}
/* 横幅-公用 /结束 */
/* 主体内容 开始 */
.main {
    margin: 21px auto;
}
/* 左侧导航 开始 */
.main > .nav-left {
    float: left;
    width: 179px;
    margin-bottom: 20px;
}
.main > .nav-left > .title {
    height: 55px;
    font-size: 22px;
    line-height: 55px;
    padding: 6px 0;
    background-color: #004177;
    color: #fff;
    text-align: center;
    font-family: '新宋体';
    font-weight: 700;
}
.main > .nav-left > .title p:last-child {
    font-family: 'Microsoft YaHei';
    font-weight: 400;
}
.main > .nav-left > ul.nav-list {
    list-style: none;
}
.main > .nav-left > ul.nav-list > li {
    /* height: 51px; */
    margin-top: 5px;
    background-color: #6DC2FF;
}
.main > .nav-left > ul.nav-list > li > a {
    font-family: '新宋体';
    font-weight: 700;
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    line-height: 51px;
    text-align: center;
    display: block;
    width: 100%;
}
.main > .nav-left > ul.nav-list > li:hover > a::before,
.main > .nav-left > ul.nav-list > li.active > a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-width: 8px 13px;
    border-style: solid;
    border-color: transparent;
    border-left-color: #6DC2FF;
    /*border-left: 50px solid #6DC2FF;*/
    right: -25px;
    top: 18px;
}
.main > .nav-left > ul.nav-list > li > ul {
    max-height: 0;
    transition: max-height 0.55s ease-out;
    display: block;
    overflow: hidden;
    background: #d5d5d5;
}

.main > .nav-left > ul.nav-list > li:hover > ul {
    max-height: 500px;
    display: block;
    transition: max-height 0.55s ease-in;
}

.main > .nav-left > ul.nav-list > li > ul > li > a {
    font-family: '新宋体';
    font-weight: 700;
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    line-height: 51px;
    text-align: center;
    display: block;
    width: 100%;
}
.main > .nav-left > ul.nav-list > li > ul > li> a:hover ,
.main > .nav-left > ul.nav-list > li > ul > li > a.active  {
    color: #6DC2FF;
}
.main > .nav-left > ul.nav-list > li > ul > li > a:hover::before,
.main > .nav-left > ul.nav-list > li > ul > li > a.active::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-width: 8px 13px;
    border-style: solid;
    border-color: transparent;
    border-left-color: #6DC2FF;
    /* border-left: 50px solid #6DC2FF; */
    right: -25px;
    top: 18px;
}
/* 左侧导航 /结束 */
/* 右侧内容 开始 */
.main > .content-right {
    float: left;
}
/* 右侧内容 /结束 */
/* 主体内容 /结束 */
/* 尾部 开始 */
.footer {
    height: 139px;
    background-color: #004980;
}
.footer > .container > .link-list {
    padding-top: 43px;
    width: 100%;
    height: 16px;
}
.footer > .container > .link-list > ul {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    list-style: none;
}
.footer > .container > .link-list > ul > li {
    display: inline;
    font-size: 12px;
    color: #fff;
}

.footer > .container > .link-list > ul > li a {
    color: #fff;
    font-family: '新宋体';
    font-size: 14px;
    text-decoration: none;
}
.footer > .container > .link-list > ul > li:nth-child(2n) {
    color: #fff;
    margin: 0 2px 0 2px;
}
.footer > .container > .content {
    margin-top: 17px;
    color: #fff;
    font-size: 15px;
    font-family: '新宋体';
    text-align: center;
}
/* 尾部 /结束 */