*,html {
     margin: 0;
     padding: 0;
     color: #333;
     font-size: 16px;
     font-family: "微软雅黑";
 }
html {
    background: #f3f8fc;
}
a {
    color: #333;
    text-decoration: none;
}
ul>li {
    list-style: none;
}

.title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sub-title {
    display: -webkit-box;
    height: 48px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vertical-center {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

em {
    color: #1464c8;
    font-weight: normal;
    font-style: normal;
}


.button {
    display: inline-block;
    padding: 2px 12px;
    color: #fff;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    background: #1464c8;
}
.btn_ff8040 {
    background: #ff8040;
}
.btn_ff8040:active {
    background: #f97d3e;
}
.btn_00c2b1 {
    background: #00c2b1;
}
.btn_00c2b1:active {
    background: #00bcab;
}
.btn_ff8040:active,
.btn_00c2b1:active {
    -webkit-box-shadow: 1px 1px 1px 1px rgba(0,0,0,.1);
    -moz-box-shadow: 1px 1px 1px 1px rgba(0,0,0,.1);
    box-shadow: 1px 1px 1px 1px rgba(0,0,0,.1);
}
button:focus {
    outline: none;
}

.underline-hover:hover {
    color: #1464c8;
    text-decoration: underline;
}

/* page start */
.page-module {
    margin: auto;
    padding: 0 10px;
    box-sizing: border-box;
    max-width: 1200px;
    min-width: 1200px;
    overflow: hidden;
}
.page-main,
.sidebar {
    position: relative;
    display: inline-block;
    margin-top: 24px;
}

.page-main {
    width: 870px;
}
.sidebar {
    float: right;
    margin-left: 11px;
    width: 294px;
}

/* page end */



/* page-header start */
.page-header {
    position: relative;
}
.page-header,
.page-header .logo {
    position: relative;
    background: #fff;
}
.page-header,
.page-header .down-list {
    height: 60px;
}

.page-header .nav {
    position: fixed;
    z-index: 5;
    margin: auto;
    left: 0;
    right: 0;
    min-width: 1200px;
    -webkit-box-shadow: 0 0 12px 0 rgba(0,0,0,.08);
    -moz-box-shadow: 0 0 12px 0 rgba(0,0,0,.08);
    box-shadow: 0 0 12px 0 rgba(0,0,0,.08);
    background: #fff;
}

.page-header .logo img {
    float: left;
    margin-top: 15px;
    margin-right: 30px;
    height: 30px;
}
.page-header .in-article-type .name {
    margin: 0 8px;

}

.page-header .down-list {
    background: #fff;
}
.page-header .down-list .down {
    float: left;
    position: relative;
    margin-right: 36px;
    top: 50%;
    height: 60px;
    line-height: 60px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.page-header .a-downlist {
    float: left;
}

.page-header .a-downlist:hover .a-downlist-item {
    top: 60px;
}




.page-header .down-list .down .down-icon {
    float: left;
    display: block;
    width: 9px;
    height: 60px;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
    background: url("../new_images/header/down-icon-1.png") no-repeat center center ;
    background-size: 9px 5px;
}
.page-header .down.active .down-icon {
    background: url("../new_images/header/down-icon.png") no-repeat center center ;
    background-size: 9px 5px;
}
.page-header .a-downlist:hover + .down-icon {
    background: url("../new_images/header/down-icon.png") no-repeat center center ;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    background-size: 9px 5px;
}



.page-header.active .nav {
    position: fixed;
    z-index: 55555;
    top: 0;
    width: 100%;
}

.page-header .search-input {
    width: 100px;
    height: 40px;
    border: solid 1px transparent;
}

.page-header .search-input button.form .icon {
    float: left;
    position: relative;
    display: inline-block;
    margin-top: 12px;
    width: 16px;
    height: 16px;
    background: url("../new_images/header/search.png") center center no-repeat;
    background-size: 16px;
}

.page-header .search-input button.form p {
    float: right;
    margin-right: 20px;
    margin-left: 12px;
    color: #666;
    font-size: 16px;
}

.page-header .search-input button.form .icon,
.page-header .search-input button.form p,
.page-header .search-input {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.page-header .search {
    position: absolute;
    margin: auto;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.page-header .search-input button.form .icon:after {
    content: "搜索";
    float: left;
    position: absolute;
    top: -12px;
    width: 80px;
}
.page-header .search-input {
    margin-right: 10px;
    overflow: hidden;
}
.page-header .search-input,
.page-header .search-btn  {
    float: left;
}

.page-header .search-btn a.btn-item {
    display: inline-block;
    margin-right: 12px;
    padding: 0 8px;
    min-width: 104px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #1464c8;
    border: solid 1px #1464c8;
}
.page-header .search-btn .a-downlist-item {
    left: -20px;
}
.page-header .search-btn .a-downlist:hover .a-downlist-item {
    top: 50px;
}
.page-header .search-btn .a-downlist .a-downlist-item:before {
    top: -5px;
    border-width: 6px;
}



.page-header .search-btn a.btn-item img {
    float: left;
    margin-top: 13px;
}
.page-header .search-btn .down {
    float: left;
}
.page-header .search-btn a.btn-item:hover {
    text-decoration: none;
}
.page-header .search-btn a.btn-item:last-child {
    color: #fff;
    background: #1464c8;
}

.page-header .search-input input:focus{
    outline: none;
}

.page-header .search-input input {
    float: left;
    padding: 0 10px;
    width: 0;
    height: 40px;
    border: none;
    box-sizing: border-box;
}

.page-header .search-input:hover {
    width: 230px;
    border: solid 1px #f2f2f2;
}

.page-header .search-input:hover button.form p {
    display: none;
}
.page-header .search-input:hover input[name=search] {
    width: 235px !important;
}
.page-header .search-input:hover button.form .icon {
    background: url("../new_images/header/search1.png") center center no-repeat;
    background-size: 16px;
}
.page-header .search-input:hover .form .icon:after {
    content: "";
}


.page-header .search-input button.form {
    border: none;
    line-height: 40px;
    cursor: pointer;
    background: #fff;
}

.nav-top,
.nav-top .page-module {
    width: 100%;
    height: 48px;
    background: #1464c8;
}
.nav-top p,
.nav-top a,
.nav-top .page-module div,
.nav-top ul li {
    float: left;
    display: inline-block;
    color: #fff;
    line-height: 48px;
}
.nav-top .logo {
    float: left;
    height: 100%;
}
.nav-top .logo img {
    margin-top: 9px;
    height: 30px;
}
.nav-top ul li {
    margin-left: 30px;
}
.nav-top ul li a.active {
    font-weight: 800;
}

.nav-top .search {
    position: relative;
    margin-top: 8px;
    margin-left: 101px;
    width: 196px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
    background: #fff;
}
.nav-top .search button {
    position: absolute;
    margin: auto;
    right: 0;
    top: 0;
    bottom: 0;
    color: #999;
    line-height: 20px;
    background: #fff;
}
.nav-top .search input {
    position: absolute;
    padding-left: 30px;
    padding-right: 20px;
    top: 0;
    bottom: 0;
    width: 100%;
    border: none;
    box-sizing: border-box;
    border-radius: 4px;
}
.nav-top .search input:focus {
    outline: none;
}
.nav-top .search img {
    position: absolute;
    margin: auto;
    left: 10px;
    bottom: 0;
    top: 0;
    width: 16px;
}

.nav-top .login {
    margin-left: 88px;
}
.login .a-downlist-item {
    top: 48px;
    left: -40px;
}
.login .down img,
.login .messages img {
    width: 15px;
    height: 16px;
}
.login .down img {
    float: left;
    margin-top: 16px;
    margin-right: 5px;
    cursor: pointer;
}
.login .messages {
    position: relative;
    margin-top: 2px;
    margin-right: 20px;
}
.login .messages:before {
    content: "";
    position: absolute;
    display: block;
    margin: auto;
    top: 0;
    bottom: 0;
    width: 24px;
    height: 18px;
    border-right: solid 1px #fff;
}

.nav-top p,
.nav-top button {
    font-size: 14px;
    cursor: pointer;
}
.nav-top div.login {
    float: right;
}
.nav-top .login button {
    margin-left: 20px;
    height: 28px;
    color: #fff;
    line-height: 18px;
    border: solid 1px #fff;
    background: #1464c8;
}
.nav-top .login button img {
    float: left;
    margin-top: 2px;
    margin-right: 5px;
    width: 12px;
}

.nav-type,
.nav-type .page-module {
    position: relative;
    width: 100%;
    height: 80px;
    background: #fff;
}
.nav-type {
    -webkit-box-shadow: 1px 1px 1px 1px rgba(0,0,0,.1);
    -moz-box-shadow: 1px 1px 1px 1px rgba(0,0,0,.1);
    box-shadow: 1px 1px 1px 1px rgba(0,0,0,.1);
}


.nav-type .logo {
    position: absolute;
    margin: auto;
    width: 166px;
    height: 42px;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
.nav-type .logo img {
    width: 100%;
    height: 100%;
}


.nav-type .type,
.nav-type .type .down,
.nav-type .type ul li a {
    height: 100%;
}

.nav-type .type li .a-downlist-item  a {
    margin: 0;
    padding: 0 10px;
    width: auto;
    height: 40px;
    line-height: 40px;
    border-right: 0;
}


.nav-type .type div {
    float: left;
    cursor: pointer;
}
.nav-type .type .down {
    position: relative;
    margin-right: 26px;
}
.nav-type .type .down img,
.nav-type .type .down p {
    float: left;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.nav-type .type .down p {
    margin: auto 10px;
    margin-top: 40px;
    line-height: 40px;
    /*color: #1464c8;*/
}

.nav-type .type ul li {
    float: left;
    line-height: 80px;
}
.nav-type .type ul li a {
    margin-right: 13px;
    padding-right: 13px;
    color: #666;
    border-right: solid 1px #ccc;
}
.nav-type .type ul li:last-child a{
    border: none;
}

.nav-type .position {
    position: absolute;
    right: 10px;
    top: 0;
    height: 100%;
}
.nav-type .position button {
    position: relative;
    margin-left: 15px;
    top: 50%;
    width: 128px;
    height: 32px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.nav-type .position button img {
    float: left;
    margin-left: 10px;
    width: 20px;
}
/* page-header end */

/* page-footer start */
.page-footer {
    position: relative;
    z-index: 3;
    margin-top: 40px;
    padding: 30px 0 20px 0;
    min-width: 1200px;
    border-top: solid 4px #1464c8;
    background: #283746;
}
.page-footer .page-module {
    overflow: inherit;
}
.page-footer p,
.page-footer a {
    color: #fff;
    font-size: 14px;
}
.page-footer .title {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 800;
}
.page-footer .footer-top {
    /*padding-bottom: 40px;*/
    width: 100%;
    height: 270px;
    /*overflow: hidden;*/
    border-bottom: solid 1px #fff;
}
.page-footer .footer-top div {
    float: left;
}
.page-footer p.logo {
    font-size: 16px;
    font-weight: bold;
}
.page-footer .about-me {
    width: 475px;
    line-height: 30px;
}
.page-footer .footer-nav {
    margin-left: 55px;
    width: 170px;
}
.page-footer .footer-nav ul {
    overflow: hidden;
}
.page-footer .footer-nav li {
    display: inline-block;
    float: left;
    width: calc(100%);
    margin-bottom: 20px;
    line-height: 14px;
}
.page-footer .qrcode {
    margin-left: 55px;
    width: 160px;
}
.page-footer .qrcode.lxwm a {
    display: inline-block;
    margin-top: 20px;
    color: #1464c8;
}

.page-footer .footer-bottom {
    margin: auto;
    margin-top: 10px;
    overflow: hidden;
}

.page-footer .footer-bottom .center {
    text-align: center;
}
.page-footer .footer-bottom .logo,
.page-footer .footer-bottom .content {
    /*float: left;*/
    display: inline-block;
}
.page-footer .footer-bottom .content {
    /*width: 100%;*/
    /*width: 516px;*/
    text-align: left;
}
.page-footer .footer-bottom ul {
    margin-bottom: 10px;
    width: 100%;
    overflow: hidden;
}
.page-footer .footer-bottom .content a {
    /*float: left;*/
    display: inline-block;
    margin-right: 25px;
}
.page-footer .footer-bottom .content p {
    margin-top: 10px
}
.page-footer .footer-bottom .logo img {
    /*margin-top: 13px;*/
    margin-right: 10px;
    width: 280px;
    height: 40px;

}

.page-footer .qrcode ul {
    margin-left: -20px;
    margin-top: -20px;
}

.page-footer .qrcode ul li {
    float: left;
    position: relative;
    margin-left: 20px;
    margin-top: 20px;
    width: 160px;
    height: 50px;
    cursor: pointer;
    background: rgba(255,255,255,.2);
}
.page-footer .qrcode ul li:hover {
    background: rgba(255,255,255,.5);
}
.page-footer .qrcode ul li .title {
    width: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
}
.page-footer .qrcode ul li .title p {
    /*float: left;*/
    /*margin-left: 10px;*/
    width: 100%;
    font-size: 15px;
    font-weight: normal;
    line-height: 30px;
    text-align: center;
}
.page-footer .qrcode.lxwm {
    margin-left: 100px;
}
.page-footer .qrcode ul li .title img {
    float: left;
}

.page-footer .qrcode .popu-qr {
    display: none;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: -190px;
    width: 140px;
    height: 174px;
    border-radius: 8px;
    border: solid 1px #ccc;
    background: #f3f8fc;
}
.page-footer .qrcode ul li:hover .popu-qr {
    display: block;
}
.page-footer .qrcode .popu-qr:before {
    content: "";
    display: inline-block;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px;
    border-color: #f3f8fc #f3f8fc transparent transparent;
    transform: rotate(135deg);
    -webkit-box-shadow: 1px -1px 1px rgba(0,0,0,.2);
    -moz-box-shadow: 1px -1px 1px rgba(0,0,0,.2);
    box-shadow: 1px -1px 1px rgba(0,0,0,.2);
}



.page-footer .qrcode .popu-qr img {
    display: block;
    margin: auto;
    margin-top: 20px;
    border: solid 4px #ccc;
}
.page-footer .qrcode .popu-qr p {
    color: #666;
    font-size: 15px;
    text-align: center;
}
.page-footer .footer-friend-herf {
    display: block;
    width: 100%;
}
.page-footer .footer-friend-herf p {
    /*float: left;*/
    font-size: 18px;
}
.page-footer .footer-friend-herf div {
    margin-top: 21px;
    /*width: calc(100% - 100px);*/
}
.page-footer .footer-friend-herf a {
    float: left;
    margin-right: 30px;
    font-size: 16px;
    line-height: 30px;
}
.page-footer .footer-friend-herf div a:hover {
    text-decoration: underline;
}
    /* page-footer end */

/* login-popu start */
.login-popu {
    position: fixed;
    z-index: 111111111111;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 480px;
    height: 390px;
    -webkit-box-shadow: 1px 1px 1px 1px rgba(0,0,0,.4);
    -moz-box-shadow: 1px 1px 1px 1px rgba(0,0,0,.4);
    box-shadow: 1px 1px 1px 1px rgba(0,0,0,.4);
    background: #fff;
}
.login-popu .logo {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: -32px;
    width: 225px;
    height: 64px;
}
.login-popu .logo img {
    width: 100%;
    height: 100%;
}
    /* login-popu end */


/* sidebar-advertisement start */
.sidebar-advertisement {
    margin: 16px 0;
}
.sidebar-advertisement img {
    width: 294px;
    height: 171px;
}
/* sidebar-advertisement end */


/* news-flash start */
.news-flash .sidebar-title ul li {
    float: left;
    position: relative;
    width: calc(100% / 4);
    font-size: 14px;
    text-align: center;
    line-height: 48px;
    cursor: pointer;
    font-weight: 800;
    color: #666;
}
.news-flash .sidebar-title ul li a {
    width: 100%;
    color: #666;
    text-align: center;
    text-decoration: none;
}
.news-flash .sidebar-title {
    padding: 0;
}
.news-flash .sidebar-title ul li.active:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 4px;
    background: #1464c8;
}
/* news-flash end */


/* sidebar-title start */
.sidebar-title {
    padding: 0 18px;
    height: 48px;
    line-height: 48px;
    background: #fff;
}
.sidebar-title img {
    float: left;
    margin-right: 10px;;
    margin-top: 17px;
    width: 24px;
}
.sidebar-title span {
    color: #666;
    font-size: 14px;
    font-weight: 800;
}
.sidebar-title a {
    float: right;
    color: #ccc;
    font-size: 12px;
}
/* sidebar-title end */


/* sidebar-list start */
.sidebar-list{
    margin-bottom: 16px;
}
.sidebar-list ul li {
    position: relative;
    height: 40px;
    line-height: 40px;
    background: #fff;
}
.sidebar-list ul li a {
    display: block;
    margin: 0 10px;
    padding-left: 10px;
    color: #666;
    font-size: 13px;
    border-top: solid 1px #eee;
}
.sidebar-list ul li .title:before {
    content: "";
    position: absolute;
    margin: auto;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #1464c8;
}
.sidebar-list li:first-child {
    border-top: solid 1px #eee;
}
.sidebar-list li:first-child a {
    border: none;
}
.sidebar-list .open {
    padding: 8px 10px;
    height: 84px;
    box-sizing: border-box;
}

.ciki-sidebar-list ul li:hover{
    background: #eee;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,.15);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,.15);
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,.15);

}
.sidebar-list .open .title {
    display: none;
}
.sidebar-list .open-status {
    display: none;
}
.sidebar-list .open .open-status {
    display: block;
}



.sidebar-list .open .open-img {
    float: left;
    width: 114px;
    height: 64px;
}
.sidebar-list .open a {
    padding-left: 0;
    border: none;
}
.sidebar-list .open .open-img img {
    width: 100%;
    height: 100%;
}
.sidebar-list .open .open-deils {
    float: right;
    width: calc(100% - 120px);
}
.sidebar-list .open .open-deils .sub-title {
    margin-top: 4px;
    height: 38px;
    color: #333;
    font-size: 12px;
    line-height: 18px;
}
.sidebar-list .open .open-deils .time {
    margin-top: 5px;
    color: #999;
    font-size: 11px;
    line-height: normal;
}
/* sidebar-list end */



/* page-number 页数 start */
.page-number {
    clear: both;
    position: relative;
    margin: 20px 0;
    height: 30px;
    font-size: 0;
    text-align: center;
}
.page-number span {
    display: inline-block;
}
.page-number span .button {
    display: inline-block;
    float: left;
    padding: 0;
    color: #999;
    width: 40px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 0;
    background: #fff;
    border: solid 1px #ccc;
    border-left: none;
}
.page-number span:first-child .button,
.page-number span:last-child .button {
    width: 64px;
}
.page-number span:first-child .button {
    border-left: solid 1px #ccc;
}
.page-number .active a {
    color: #fff;
    background: #1464c8;
}
/* page-number end */


/* tag-type start */
.tag-type {
    margin-top: 16px;
}
.tag-type .sidebar-list {
    padding: 20px;
    border-top: solid 1px #eee;
    overflow: hidden;
    background: #fff;
}
.tag-type .sidebar-list a {
    float: left;
    display: block;
    margin-bottom: 16px;
    width: 254px;
    height: 32px;
    color: #666;
    text-align: center;
    line-height: 32px;
    font-size: 12px;
    border: solid 1px #1464c8;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.tag-type .sidebar-list a:nth-child(even) {
    float: right;
}
.tag-type .sidebar-list a:nth-child(-n + 6) {
    width: 120px;
}

.tag-type .sidebar-list a:hover {
    color: #fff;
    background: #1464c8;
}
/* tag-type end */


/* article-item-list start */
.article-item-list {
    width: 100%;
    /*overflow: hidden;*/
}
.article-item-list .item {
    margin-bottom: 10px;
    padding: 16px 20px;
    height: 186px;
    border-bottom: solid 1px #eee;
    box-sizing: border-box;
    background: #fff;
}
.article-item-list .item:hover{
    /*background: #f6f6f6;*/
    -webkit-box-shadow: 0px 0px 12px 1px rgba(0,0,0,.08);
    -moz-box-shadow: 0px 0px 12px 1px rgba(0,0,0,.08);
    box-shadow: 0px 0px 12px 1px rgba(0,0,0,.08);
}
.article-item-list .item-img {
    float: left;
    width: 272px;
    height: 154px;
}
.article-item-list .item-img img {
    width: 100%;
    height: 100%;
}

.article-item-list .item_content {
    float: right;
    width: calc(100% - 292px);
}
.article-item-list .item_content h1 {
    font-size: 18px;
    line-height: 25px;
}

.article-item-list .author-deils {
    position: relative;
    margin-top: 8px;
    height: 25px;
    line-height: 25px;
}
.article-item-list .author-deils span {
    margin-right: 20px;
    color: #aaa;
    font-size: 14px;
}
.article-item-list .author-deils .author-headerimg {
    float: left;
    margin-right: 10px;
}
.article-item-list .author-deils .author-headerimg img {
    float: left;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}
.article-item-list .author-deils .article-type {
    position: relative;
    padding-left: 20px;
    color: #1464c8;
}
.article-item-list .article-type:before {
    content: "";
    position: absolute;
    margin: auto;
    left:0;
    top: 0;
    bottom: 0;
    width: 12px;
    height: 12px;
    background: url("../new_images/common/title.png") no-repeat;
    background-size: 12px 12px;
}
.article-item-list .item_content .item-deils {
    margin-top: 10px;
    color: #999;
    font-size: 13px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}


.article-advertisement {
    margin: 16px 0;
    width: 100%;
    height: 120px;
}
.article-advertisement img {
    width: 100%;
    height: 100%;
}
/* article-item-list end */


/* author start */
.author {
    padding: 20px 8px;
    box-sizing: border-box;
    background: #fff;
}
.author header {
    height: 56px;
}
.author .headerimg {
    float: left;
}
.author .headerimg img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}
.author header .title {
    float: left;
    margin-top: 5px;
    margin-left: 10px;
    width: 120px;
}

.author header .button {
    /*float: right;*/
    margin-top: 5px;
    padding: 0;
    width: 60px;
    height: 20px;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    border-radius: 0;
    margin-left: 12px;
    color: #1464c8;
    border: solid 1px #1464c8;
    background: #fff;
}
.author header .button.active {
    color: #fff;
    border-color: #1464c8;
    background: #1464c8;
}

.author header .details {
    float: left;
    margin-left: 10px;
    width: calc(100% - 80px);
    color: #666;
    font-size: 14px;
}
.author .author-data {
    margin: 10px 0;
    width: 100%;
    overflow: hidden;
}
.author .author-data div {
    float: left;
    width: calc(100% / 2);
    height: 40px;
}
.author .author-data div p {
    color: #666;
    font-size: 14px;
    text-align: center;
}

.author .author-article-list h2 {
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-top: solid 1px #ccc;
}
.author .sidebar-list li:first-child,
.author .sidebar-list ul li a {
    margin: 0;
    font-size: 13px;
    border: none;
}
.author .sidebar-list ul li .title:before {
    left: 0;
}
.sidebar-list ul li:hover{
    /*background: #f6f6f6;*/
    /*-webkit-box-shadow: 0 0 12px 0 rgba(0,0,0,.2);*/
    /*-moz-box-shadow: 0 0 12px 0 rgba(0,0,0,.2);*/
    /*box-shadow: 0 0 12px 0 rgba(0,0,0,.2);*/
}
.author-more {
    display: none;
    margin: auto;
    margin-top: 10px;
    padding: 0;
    width: 242px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}
/* author end */


/* about-love start */
.about-love {
    padding: 23px 20px 23px 20px;
    margin-bottom: 40px;
    background: #fff;
    box-sizing: border-box;
}
.about-love ul {
    margin-left: -13px;
    overflow: hidden;
}
.about-love .title {
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: solid 5px #1464c8;
}
.about-love li {
    float: left;
    margin-left: 13px;
    width: 268px;
    height: 200px;
}
.about-love li img {
    width: 268px;
    height: 150px;
}
.about-love li p {
    color: #666;
    font-size: 14px;
    line-height: 23px;
    margin-top: 4px;
}

/* about-love end */

/* side-share start */
.side-share {
    float: left;
    position: relative;
    width: 60px;
    height: 60px;
}
.side-share ul.active {
    position: absolute;
}
.side-share ul {
    position: fixed;
    z-index: 2;
    width: 60px;
    /*overflow: hidden;*/
}
.side-share ul li {
    position: relative;
    width: 60px;
    height: 60px;
    cursor: pointer;
    background: #f4f4f4;
}
.side-share ul li i {
    position: absolute;
    z-index: 2;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    width: 0;
    height: 0;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.side-share ul li:nth-child(5) {
    margin-top: 40px;
}
.side-share ul li:before {
    content: "";
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 3;
    display: block;
    width: 32px;
    height: 32px;
}
.side-share ul li:nth-child(3):before {
    width: 25px;
    height: 32px;
}
.side-share ul li:nth-child(5):before,
.side-share ul li:nth-child(6):before,
.side-share ul li:nth-child(7):before {
    width: 25px;
}

.side-share .social-share .icon-wechat .wechat-qrcode {
    top: 0 !important;
    left: 60px !important;
}
.side-share .social-share .icon-wechat .wechat-qrcode .qrcode {
    height: 100px;
}


.side-share .social-share .icon-wechat .wechat-qrcode:after {
    margin: auto;
    left: -12px;
    top: -140px;
    bottom: 0;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.side-share .social-share .icon-wechat .wechat-qrcode {
    top: 0;
    right: 0;
}

/*.side-share ul li:nth-child(1):before {*/
    /*background: url("../new_images/share/wechat.png") no-repeat;*/
    /*background-size: 32px;*/
/*}*/
/*.side-share ul li:nth-child(1):hover:before {*/
    /*background: url("../new_images/share/what_w.png") no-repeat;*/
    /*background-size: 32px;*/
/*}*/


/*.side-share ul li:nth-child(2):before {*/
    /*background: url("../new_images/share/weibo.png") no-repeat;*/
    /*background-size: 32px;*/
/*}*/
/*.side-share ul li:nth-child(2):hover:before {*/
    /*background: url("../new_images/share/weibo_w.png") no-repeat;*/
    /*background-size: 32px;*/
/*}*/


/*.side-share ul li:nth-child(3):before {*/
    /*background: url("../new_images/share/QQ.png") no-repeat;*/
    /*background-size: 25px;*/
/*}*/
/*.side-share ul li:nth-child(3):hover:before {*/
    /*background: url("../new_images/share/QQ_w.png") no-repeat;*/
    /*background-size: 25px;*/
/*}*/

/*.side-share ul li:nth-child(4):before {*/
    /*background: url("../new_images/share/QZ.png") no-repeat;*/
    /*background-size: 32px;*/
/*}*/
/*.side-share ul li:nth-child(4):hover:before {*/
    /*background: url("../new_images/share/QZ_w.png") no-repeat;*/
    /*background-size: 32px;*/
/*}*/

/*.side-share ul li:nth-child(8):before {*/
    /*background: url("../new_images/share/top.png") no-repeat;*/
    /*background-size: 25px;*/
/*}*/


.side-share ul li:nth-child(5):before,
.side-share ul li:nth-child(6):before,
.side-share ul li:nth-child(7):before,
.side-share ul li:nth-child(8):before {
    padding-top: 25px;
    color: #999;
    font-size: 12px;
    box-sizing: border-box;
    text-align: center;
}


.side-share ul li:nth-child(5):before {
    content: "评论";
    background: url("../new_images/share/chat.png") no-repeat;
    background-size: 25px;
}
.side-share ul li:nth-child(5):hover:before {
    color: #fff;
    background: url("../new_images/share/chat_w.png") no-repeat;
    background-size: 25px;
}


.side-share ul li:nth-child(6):before {
    content: "收藏";
    background: url("../new_images/share/heart.png") no-repeat;
    background-size: 25px;
}
.side-share ul li:nth-child(6):hover:before {
    color: #fff !important;
    background: url("../new_images/share/heart_w.png") no-repeat !important;
    background-size: 25px !important;
}

.side-share ul li#love.active:before {
    color: #f9575a;
    background: url("../new_images/index/love.png") no-repeat;
    background-size: 25px
}


.side-share ul li:nth-child(7):before {
    content: "点赞";
    background: url("../new_images/share/like.png") no-repeat;
    background-size: 25px;
}
.side-share ul li:nth-child(7):hover:before {
    color: #fff !important;
    background: url("../new_images/share/like_w.png") no-repeat !important;
    background-size: 25px;
}
.side-share ul li#zan.active:before {
    color: #f9575a;
    background: url("../new_images/index/zan.png") no-repeat;
    background-size: 25px
}



.side-share ul li:nth-child(8):before {
    content: "顶部";
    background: url("../new_images/share/top.png") no-repeat;
    background-size: 25px;
}
.side-share ul li:nth-child(8):hover:before {
    color: #fff;
    background: url("../new_images/share/top.png") no-repeat;
    background-size: 25px;
}




.side-share ul li:nth-child(1):hover i{
    width: 60px;
    height: 60px;
    background: #83d944;
}

.side-share ul li:nth-child(2):hover i,
.side-share ul li:nth-child(6):hover i,
.side-share ul li:nth-child(7):hover i {
    width: 60px;
    height: 60px;
    background: #f9575a;
}


.side-share ul li:nth-child(3):hover i,
.side-share ul li:nth-child(5):hover i,
.side-share ul li:nth-child(8):hover i {
    width: 60px;
    height: 60px;
    background: #5497fb;
}

.side-share ul li:nth-child(4):hover i {
    width: 60px;
    height: 60px;
    background: #ffd801;
}

.side-share .social-share .social-share-icon {
    z-index: 4;
    width: 100%;
    height: 100%;
    font-size: 32px;
    line-height: 60px;
    color: #e6e6e6;
    border: none;
    border-radius: 0;
}
.side-share  .social-share a {
    margin: 0;
}

/* side-share end */

/* tab start */
.content-tag li.active {
    border-bottom: solid 2px #1464c8;
}
.paging-tab {
    display: none;
}
.paging-tab.active {
    display: block;
}
/* tab end */

/* a-downlist-item start */
.noneoverflow {
    overflow: inherit;
}
.a-downlist {
    position: relative;
    cursor: pointer;

}
.a-downlist:hover .a-downlist-item {
    /*display: block !important;*/
    opacity: 1;
    visibility: inherit;
    /*overflow: hidden;*/
}


.a-downlist-item {
    visibility: hidden;
    /*display: none !important;*/
    position: absolute;
    z-index: 3;
    top: 80px;
    left: -40px;
    width: 160px;
    /*overflow: hidden;*/
    opacity: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-box-shadow: 1px 1px 1px 1px rgba(0,0,0,.2);
    -moz-box-shadow: 1px 1px 1px 1px rgba(0,0,0,.2);
    box-shadow: 1px 1px 1px 1px rgba(0,0,0,.2);
    background: #fff;
}
.a-downlist-item:before {
    content: "";
    display: inline-block;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px;
    border-color: #fff #fff transparent transparent;
    transform: rotate(315deg);
    -webkit-box-shadow: 1px -1px 1px rgba(0,0,0,.2);
    -moz-box-shadow: 1px -1px 1px rgba(0,0,0,.2);
    box-shadow: 1px -1px 1px rgba(0,0,0,.2);
}

.a-downlist-item a {
    display: block;
    /*padding: 10px 20px;*/
    /*width: 160px;*/
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #666;
    font-size: 16px;
    box-sizing: border-box;
    border-bottom: solid 1px #eee;
}
.a-downlist-item a:hover {
    background: #f9f9f9;
}
/* a-downlist-item end */

/* icon  start */
.icon-1:before,.icon-2:before,.icon-3:before,.icon-4:before {
    content: "";
    position: absolute;
    margin: auto;
    left: 0;
    top: 0;
    bottom: 0;
    display: block;
    width: 23px;
    height: 23px;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}
.icon-1:before {
    background: url("../new_images/header/star_1.png") no-repeat center center ;
    background-size: 20px;
}
.page-header .down.active .name {
    color: #1464c8;
}
.page-header .down.active .icon-1:before,
.icon-1:hover:before {
    background: url("../new_images/header/star.png") no-repeat center center ;
    background-size: 20px;
}

.icon-2:before {
    background: url("../new_images/header/time_1.png") no-repeat center center ;
    background-size: 20px;
}
.page-header .down.active .icon-2:before,
.icon-2:hover:before {
    background: url("../new_images/header/time.png") no-repeat center center ;
    background-size: 20px;
}

.icon-3:before {
    background: url("../new_images/header/title_1.png") no-repeat center center ;
    background-size: 20px;
}
.page-header .down.active .icon-3:before,
.icon-3:hover:before {
    background: url("../new_images/header/title.png") no-repeat center center ;
    background-size: 20px;
}
.icon-4:before {
    background: url("../new_images/header/sj.png") no-repeat center center ;
    background-size: 20px;
}
.page-header .down.active .icon-4:before,
.icon-4:hover:before {
    background: url("../new_images/header/sj1.png") no-repeat center center ;
    background-size: 20px;
}


/* icon end */

/* in-article-type start */
.in-article-type .name {
    padding-left: 20px;
    color: #999;
}
.in-article-type:hover .name {
    color: #1464c8;
}
/* in-article-type end */

.page-header .page-module {
    position: relative;
    overflow: inherit;
}

.layui-layer-content {
    color: #fff;
}


/* author-popu start */
.author-popu {
    padding: 30px;
    width: 460px;
    height: 220px;
    box-sizing: border-box;
    background: #fff;
}
.author-popu h1 {
    font-size: 20px;
    font-weight: normal;
    text-align: center;
}
.author-popu p {
    margin-top: 35px;
    font-size: 20px;
    text-align: center;
}

.author-popu .author-btn {
    margin-top: 35px;
}

.author-popu button {
    float: left;
    margin-left: 20px;
    width: 160px;
    height: 36px;
    border-radius: 6px;
    border: solid 1px #1464c8;
    color: #1464c8;
    font-size: 16px;
    cursor: pointer;
    background: #fff;
}
.author-popu button.yes {
    float: right;
    margin: 0;
    margin-right: 20px;
    color: #fff;
    background: #1464c8;
}

/* author-popu end */

/* page-top start */
.page-top {
    position: fixed;
    margin: auto;
    z-index: 2;
    height: 150px;
    right: 0;
    bottom: 0;
    top: 0;
}
.page-top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
}
.page-top a:hover .text {
    z-index: 1;
}
.page-top .text {
    position: absolute;
    z-index: -1;
    padding: 0 10px;
    padding-top: 5px;
    top: 0;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    box-sizing: border-box;
    background: #1464c8;
}
/* page-top end */
.nulldate{
    min-height: 1000px;
}
.nulldate img{
    display: block;
    margin: auto;
    margin-top:200px;
}
.nulldate p{
    text-align: center;
}
/*上一页不可点击效果*/
.page-number .prohibit {
    cursor: not-allowed;
    color: #d4d4d4 !important;
    border-color: #d4d4d4 !important;
}
/*详情资鲸精选*/
.ciki-choose-details{
    margin-top: 16px;
}
.margin_top_16{
    margin-top: 16px;
}
/*登录*/
.login-content{
    padding-bottom: 100px;
    background-image: url('/static/zixun/new_images/default/login_background.png');
}
/*法律法规版块*/
.laws-and-regulations{
    margin-top: 16px;
}
/* 404 start */
.error-page {
    position: relative;
    margin: 120px 0;
    width: 100%;
}
.error-page .block {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 10px;
    width: 236px;
    height: 236px;
    border-radius: 50%;
    -webkit-animation: blockanimation 2s;
    -o-animation: blockanimation 2s;
    animation: blockanimation 2s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    -moz-animation-direction: alternate;
    -o-animation-direction: alternate;
    animation-direction: alternate;

}
@keyframes blockanimation {
    from{

    }
    to {
        -webkit-box-shadow: 0 0 30px 0 rgba(113, 173, 249,.5);
        -moz-box-shadow: 0 0 30px 0 rgba(113, 173, 249,.5);
        box-shadow: 0 0 30px 0 rgba(113, 173, 249,.5);
    }
}
@-webkit-keyframes blockanimation /* Safari 与 Chrome */
{
    from{
        -webkit-box-shadow: 0 0 12px 0 rgb(113, 173, 249);
        -moz-box-shadow: 0 0 12px 0 rgb(113, 173, 249);
        box-shadow: 0 0 12px 0 rgb(113, 173, 249);
    }
    to {
        -webkit-box-shadow: 0 0 12px 0 rgb(113, 173, 249);
        -moz-box-shadow: 0 0 12px 0 rgb(113, 173, 249);
        box-shadow: 0 0 12px 0 rgb(113, 173, 249);
    }
}
.error-page img {
    display: block;
    margin: auto;
}

.error-page span {
    display: block;
    margin-top: 10px;
    width: 100%;
    font-size: 18px;
    text-align: center;
}
.margin-top-16{
    margin-top: 16px;
}
/*404 end*/