/**
 * 样式
 * @author: PeakXin<xinyflove@gmail.com>
 */
/*common*/
a:hover, a:focus, a:visited {
    text-decoration: none;
}
.no-padding {
    padding: 0;
}
.crop-text-1 {
    -webkit-line-clamp: 1;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}  
.crop-text-2 {
    -webkit-line-clamp: 2;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.crop-text-3 {
    -webkit-line-clamp: 3;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

/*header*/
.navbar {
    margin: 0;
    font-size: 18px;
}
.navbar-default .navbar-nav {
    margin-left: 50px;
}
.navbar-default .navbar-nav>li>a {
    line-height: 24px;
    color: #333333;
    padding-top: 28px;
    padding-bottom: 21px;
    padding-left: 30px;
    padding-right: 30px;
}
.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus {
    color: #333333;
    background-color: rgba(0,0,0,0);
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
    color: #333333;
    background-color: rgba(0,0,0,0);
}
.navbar-default .navbar-nav>li>a:after {
    content: "";
    border-bottom: 2px solid #0073CA;
    margin-top: 5px;
    display: block;
    width: 100%;
    transition: all 0.2s ease-out 0s;
    transform: scaleX(0);
}
.navbar-default .navbar-nav>li>a:hover:after, .navbar-default .navbar-nav>.active>a:after{
    transform:none;
}
.navbar-default .navbar-brand {
    height: 80px;
    max-width: 278px;
}
.navbar-default .navbar-brand.logo {
    padding: 16px 15px;
}
.navbar-default .navbar-brand.logo img {
    width: 100%;
    height: 100%;
}
.navbar.lucency{
    transition: all 0.7s ease-out 0s;
    background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0));
}
.navbar.lucency .navbar-nav>li>a {
    color: #fff;
}
.navbar.lucency .navbar-nav>.active>a, .navbar.lucency .navbar-nav>.active>a:hover, .navbar.lucency .navbar-nav>.active>a:focus {
    color: #fff;
}
/*面包屑导航*/
.breadcrumb-nav {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #666666;
    background: #F5F5F5;
    padding: 20px 0;
    margin-top: 80px;
}
.breadcrumb-nav .page-title {
    padding: 8px 15px;
    margin-bottom: 0;
    float: left;
}
.breadcrumb-nav .breadcrumb {
    margin-bottom: 0;
    float: right;
}
/* jumbotron */
.jumbotron {
    margin: 0;
    color: #fff;
    padding-top: 119px;
    padding-bottom: 118px;
    margin-top: 80px;
}
.jumbotron h1 {
    font-size: 48px;
    line-height: 67px;
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: bold;//加粗
}
.jumbotron p {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 0;
}

/*main*/
.main {
    background: #F5F5F5;
    padding-top: 40px;
    padding-bottom: 50px;
}
.main h1 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 44px;
    font-weight: 400;
    line-height: 62px;
    color: #333333;
}
.main .box .title {
    margin-bottom: 20px;
}
.main .box .sub-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
}
/*列表样式*/
.list {
    padding: 0 4px;
}
.list .item {
    padding: 0;
}
.list .caption {
    background: #FFFFFF;
    margin: 0 11px 20px 11px;
    height: 188px;
}
.list .caption:hover {
    box-shadow: 0 40px 60px rgba(15, 35, 65, 0.24);
}
.list .date {
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    color: #999999;
    padding-top: 29px;
    padding-left: 22px;
    padding-right: 22px;
    float: left;
    height: 100%;
}
.list .date .d {
    font-size: 32px;
    font-weight: 400;
    line-height: 36px;
    color: #0073CA;
}
.list .date .calendar {
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    display: block;
    margin: 20px auto 0 auto;
}
.list .date .calendar:before {
    font-size: 36px;
}
.list .brief {
    padding-top: 29px;
}
.list .title {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #333333;
    margin-bottom: 37px;
}
.list .excerpt {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #666666;
}
.list .cover {
    float: right;
    margin-left: 16px;
}
.list .cover img {
    height: 188px;
}
.list .empty {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
}
/*媒体列表样式*/
.list-medium {
    padding: 0 4px;
}
.list-medium .item {
    padding: 0;
}
.list-medium .caption {
    background: #FFFFFF;
    margin: 0 11px 20px 11px;
}
.list-medium .caption:hover {
    box-shadow: 0 40px 60px rgba(15, 35, 65, 0.24);
}
.list-medium .cover {
    margin-bottom: 22px;
}
.list-medium .title {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #333333;
    padding-left: 14px;
    position: relative;
    margin-bottom: 20px;
}
.list-medium .title:before {
    content: '';
    display: block;
    position: absolute;
    background-color: #0073CA;
    width: 4px;
    top: 6px;
    bottom: 6px;
    left: 0;
}
.list-medium .excerpt {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #999999;
    margin-left: 14px;
    margin-right: 14px;
    margin-bottom: 28px;
}
.list-medium .detail-btn {
    text-align: center;
    margin: 0 auto 0 auto;
    padding-bottom: 26px;
}
.list-medium .detail-btn a {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #666666;
    padding: 9px 16px;
    border: 1px solid #EAEAEA;
}
.list-medium .empty {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
}

/*子导航*/
.subnavbar .nav-tabs {
    display: flex;
    justify-content: center;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    border-bottom: 0;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.04);
}
.subnavbar .nav-tabs>li>a {
    margin-right: 2px;
    line-height: 28px;
    border: 0;
    border-radius: 0 0 0 0;
    padding: 21px 15px 0 15px;
    color: #333333;
    background-color: #fff;
    letter-spacing: 1px;
}
.subnavbar .nav-tabs>li.active>a, .subnavbar .nav-tabs>li.active>a:hover, .subnavbar .nav-tabs>li.active>a:focus {
    color: #0073CA;
    background-color: #fff;
    border: 0;
    border-bottom-color: transparent;
    cursor: default;
}
.subnavbar  .nav-tabs>li {
    margin-bottom: 0;
}
.subnavbar .nav-tabs>li>a:after {
    content: "";
    border-bottom: 3px solid #0073CA;
    margin-top: 18px;
    display: block;
    width: 100%;
    transition: all 0.2s ease-out 0s;
    transform: scaleX(0);
    border-right: 20px;
}
.subnavbar .nav-tabs>li.active>a:after, .subnavbar .nav-tabs>li.active>a:hover:after, .subnavbar .nav-tabs>li.active>a:focus:after {
    transform:none;
}
.subnavbar .nav-tabs>li>a:hover:after, .subnavbar .nav-tabs>li>a:focus:after {
    transform:none;
}

/*footer*/
footer .footer {
    padding: 42px 0 40px 0;
    background-color: #0F2341;
    margin-top: 0px;
    color: #fff;
    font-size: 13px;
}
footer .footer h4 {
    font-size: 16px;
}
footer .footer ul {
    margin: 0;
}
footer .footer ul li {
    padding-top: 3px;
    padding-bottom: 3px;
}
footer .footer a,footer .footer span {
    color: #9fa7b3;
}
footer .footer .footer-qrcode img {
    width: 102px;
}
footer .footer .footer-qrcode p {
    font-size: 12px;
    margin-bottom: 0;
}
footer .copyright {
    background-color: #11284B;
    font-size: 13px;
    line-height: 18px;
}
footer .copyright ul {
    margin-top: 16px;
    margin-bottom: 16px;
}
footer .copyright a,li {
    color: #9fa9b7;
}

.message {
    position: fixed;
    bottom: 40px;
    right: 20px;
}
.message ul {
    padding: 0;
    margin: 0;
}
.message ul li {
    width: 38px;
    height: 38px;
    background-size: cover;
    list-style: none;
    margin-bottom: 10px;
    cursor: pointer;
}
.message ul li:last-child {
    margin-bottom: 0;
}
.message .phone {
    background-image: url(../images/icon-phone.png);
    position: relative;
}
.message .phone span {
    background: #0073CA;
    height: 38px;
    width: 157px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #FFFFFF;
    opacity: 1;
    padding: 8px 16px;
    position: absolute;
    top: 0;
    right: 48px;
    display: none;
}
.message .phone:hover span {
    display: block;
}
.message .qrcode {
    background-image: url(../images/icon-qrcode.png);
}
.message .back-to-top {
    background-image: url(../images/icon-back-to-top.png);
    display: none;
}