﻿@charset "UTF-8";
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333333
}

a:focus {
    outline: none
}

a:focus {
    border: none
}

img {
    border: 0;
    vertical-align: middle;
}

input, button {
    vertical-align: middle;
    border: none;
}

textarea {
    border: none;
    resize: none;
}

input, textarea {
    box-sizing: content-box;
    background: 0 0;
    font-family: "Microsoft YaHei"
}

input {
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #acacac;
}

input:-moz-placeholder, textarea:-moz-placeholder {
    color: #acacac;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    color: #acacac;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #acacac;
}

.rt {
    float: right;
}

.lf {
    float: left;
}

body {
    color: #000;
    font-family: "Microsoft YaHei"
}

/*清除浮动*/
.clearfix {
    *zoom: 1;
}

/* 针对IE7 hack，触发IE7的haslayout，以清除浮动 */
.clearfix:before, .clearfix:after {
    display: table;
    content: "";
    line-height: 0;
}

.clearfix:after {
    clear: both;
}

table tr td, table {
    border-collapse: collapse;
}

/*通用样式*/
/*省略号：添加元素必定包含块级元素上（有float、block、inline-block等）*/
.ellipsis {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*1、改变滚动条样式：
*使用方法：
*在需要改变滚动条的标签元素上添加class="bsfw-rdfw"即可
*
*/
/*chrome*/
.bsfw-rdfw::-webkit-scrollbar-track {
    background-color: #eee;
}

/*定义滚动条高宽及背景*/
.bsfw-rdfw::-webkit-scrollbar {
    width: 4px;
    /*background: url(../images/py-main-icon16.png);*/
}

/*定义滚动条*/
.bsfw-rdfw::-webkit-scrollbar-thumb {
    background-color: #d0d0d0;
}

/*IE*/
.bsfw-rdfw {
    /*三角箭头的颜色*/
    scrollbar-arrow-color: #eee;
    /*滚动条滑块按钮的颜色*/
    scrollbar-face-color: #d0d0d0;
    /*滚动条整体颜色*/
    scrollbar-highlight-color: #d0d0d0;
    /*滚动条阴影*/
    scrollbar-shadow-color: #eee;
    /*滚动条轨道颜色*/
    scrollbar-track-color: #eee;
}

/*
*2、鼠标经过图片逐渐放大：
*（可自行修改）
*/
.act-big a img{
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.act-big a:hover img{
    -webkit-transform: translate3d(0, 0, 0px) scale(1.05);
    -moz-transform: translate3d(0, 0, 0px) scale(1.05);
    -ms-transform: translate3d(0, 0, 0px) scale(1.05);
    -o-transform: translate3d(0, 0, 0px) scale(1.05);
    transform: translate3d(0, 0, 0px) scale(1.05);
}

/*
*3、鼠标经过抖动动画：
*（可自行修改）
*/
.act-rotate a:hover img{
    animation:myfirst 0.5s;
    -moz-animation:myfirst 0.5s; 
    -webkit-animation:myfirst 0.5s; 
    -o-animation:myfirst 0.5s;
}
@keyframes myfirst {
    0% {
        transform: rotate(10deg);
    }
    20% {
        transform: rotate(-10deg);
    }
    40% {
        transform: rotate(10deg);
    }
    60% {
        transform: rotate(-10deg);
    }
    80% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@-moz-keyframes myfirst /* Firefox */
{
    0% {
        transform: rotate(10deg);
    }
    20% {
        transform: rotate(-10deg);
    }
    40% {
        transform: rotate(10deg);
    }
    60% {
        transform: rotate(-10deg);
    }
    80% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@-webkit-keyframes myfirst /* Safari 和 Chrome */
{
    0% {
        transform: rotate(10deg);
    }
    20% {
        transform: rotate(-10deg);
    }
    40% {
        transform: rotate(10deg);
    }
    60% {
        transform: rotate(-10deg);
    }
    80% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@-o-keyframes myfirst /* Opera */
{
    0% {
        transform: rotate(10deg);
    }
    20% {
        transform: rotate(-10deg);
    }
    40% {
        transform: rotate(10deg);
    }
    60% {
        transform: rotate(-10deg);
    }
    80% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/*公共部分*/
.comwid {
    width: 1200px;
    margin: 0 auto;
}

.sx-main-conts {
    width: 100%;
    box-sizing: border-box;
    padding: 0 24px;
    background: url(../images/main-conts-bg.png);
    border: 1px solid #d8e4f1;
    border-top-color: transparent;
}

body {
    background: #f4f9fd url(../images/sx-body-bg.png) no-repeat top center;
}


/****************************************头部****************************************/
.sx-top-tool {
    height: 80px;
    width: 100%;
    background: url(../images/sx-tool-bg.png) repeat-x top center;
}

.sx-tool-thr {
    height: 40px;
}

.sx-tool-about {
    margin-right: 15px;
}

.sx-tool-link a,
.sx-tool-about a {
    line-height: 39px;
    font-size: 13px;
    color: #666;
}

.sx-tool-link a {
    margin-left: 40px;
}

.sx-tool-about a {
    margin-right: 25px;
}

.sx-tool-search {
    margin-left: 160px;
    font-size: 0px;
    margin-top: 8px;
}

.sx-tool-search .s-type {
    width: 60px;
    height: 25px;
    margin-left: 6px;
    line-height: 25px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    background: #448aca;
}
.sear-word {
    height: 25px;
    width: 180px;
    border: 1px solid #dcdcdc;
    border-right-color: transparent;
    line-height: 25px;
    box-sizing: border-box;
    padding: 0 10px;
    font-size: 12px;
    color: #666;
    float: left;
    position: relative;
}

.sear-tbtn {
    height: 25px;
    width: 44px;
    background: #1959a7;
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 25px;
    float: left;
    position: relative;
    cursor: pointer;
}

.sx-top-muen .item {
    position: relative;
    float: left;
    padding: 0 40px;
    line-height: 36px;
    color: #666;
    font-size: 12px;
}

.sx-top-muen .item a {
    color: #666;

}

.sx-top-muen .item .tit {
    display: block;
    position: relative;
    z-index: 99;
}

.sx-top-muen .item.cur .tit {
    border-bottom: 2px solid #0e53a9;
}

.sx-top-muen .item:hover .tit {
    border-bottom: 2px solid #0e53a9;
}

.sx-top-muen .zk {
    display: none;
    position: absolute;
    width: 75px;
    background: url("../images/zkljbg.png") repeat;
    padding: 10px 0;
    top: 35px;
    left: 50%;
    margin-left: -38px;
    z-index: 9;
}

.sx-top-muen .zk a {
    text-align: center;
    display: block;
    line-height: 40px;
}

.sx-top-muen .zk a:hover{
    color: #0e53a9;
    background: #fafafa;
}

.sx-header {
    height: 128px;
}

.sx-logo-link {
    margin: 12px 0 0 60px;
    height: 104px;
    width: 245px;
}

.sx-logo-link img {
    display: block;
    height: 104px;
    width: 245px;
}

.tg-header-box {
    margin: 26px 43px 0 0;
}

.tg-header-box p {
    font-size: 0;
    float: left;
    margin-left: 10px;
}

.tg-header-box b {
    font-weight: normal;
    font-size: 13px;
    display: inline-block;
    background: #296ac1;
    color: #fff;
    height: 71px;
    width: 65px;
    text-align: center;
    vertical-align: middle;
    line-height: 20px;
    box-sizing: border-box;
    padding: 12px 0;
}

.tg-header-box a {
    color: #333;
    display: inline-block;
    font-size: 13px;
    height: 71px;
    background: #fff;
    width: 212px;
    box-sizing: border-box;
    border: 1px solid #e5e5e5;
    vertical-align: middle;
    line-height: 20px;
    text-align: center;
    padding: 12px 20px;
}

.border-radius1 b {
    border-radius: 5px 0px 0px 5px;
}

.border-radius1 a {
    border-radius: 0px 5px 5px 0;
    background: #fff url(../images/header-icon01.png) no-repeat -3px center;
    border-left-color: transparent;
}

.border-radius2 a {
    border-radius: 5px;
}

.sx-nav {
    height: 48px;
    width: 100%;
    background: #0a4fa6;
    border-radius: 5px 5px 0 0;
    box-sizing: border-box;
    /*padding:0 40px;*/
    overflow: hidden;
}

.sx-nav a {
    float: left;
    line-height: 48px;
    color: #fff;
    font-size: 16px;
    padding: 0 32px;
}

.sx-nav .nav-index {
    padding: 0 50px;
}

.sx-nav a.cur {
    background: #4780cf;
}

.sx-nav a:hover {
    background: #4780cf;
}

.sx-btm {
    height: 220px;
}

.sx-btm .con {
    width: 1200px;
    margin: 0 auto;
}

.sx-btm .dzjg {
    display: block;
    width: 52px;
    height: 64px;
    margin: 30px auto;
}

.sx-btm .bqxx {
    font-size: 14px;
    line-height: 23px;
    color: #666666;
    text-align: center;
}

.sx-btm .bqxx.ss {
    color: #333333;
}

.sx-main-conts {
    position: relative;
}

/*左侧*/
.sx-cons-tit {
    display: block;
    line-height: 30px;
    color: #333;
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e2e2;
    background: url(../images/tit-icon001.png) no-repeat 230px center;
}

.sx-left-lists {
    margin-top: 12px;
    margin-bottom: 36px;
}

.sx-left-lists li {
    height: 33px;
}

.sx-left-lists a:hover {
    color: #00489d;
}

.sx-left-lists span {
    float: left;
    line-height: 15px;
    font-size: 12px;
    height: 15px;
    width: 15px;
    background: #dcdcdc;
    color: #666;
    text-align: center;
    margin: 9px 12px 0 0;
}

.sx-left-lists span.cur {
    background: #4780cf;
    color: #fff;
}

.sx-left-lists a {
    float: left;
    line-height: 33px;
    font-size: 13px;
    color: #666;
    max-width: 270px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranks-img-lists {
    margin-top: 14px;
}

.ranks-img-lists a {
    margin-bottom: 8px;
}

.ranks-img-lists a,
.ranks-img-lists img {
    height: 64px;
    width: 251px;
    display: block;
}

/*左图右字*/
.ztyzk .pic{
    display: block;
    width: 183px;
    height: 103px;
}

.ztyzk .pic img{
    width: 100%;
    height: 100%;
}

.ztyzk .nr{
    width: 170px;
    height: 103px;
    position: relative;
    margin-left: 15px;
}

.ztyzk .wztit1{
    display: block;
    font-size: 15px;
    color: #333333;
    font-weight: bold;
    margin-top: 5px;
}

.ztyzk .wztit1:hover{
    color: #0f54aa;
}

.ztyzk .rq1{
    font-size: 13px;
    color: #999999;
    position: absolute;
    right: 15px;
    bottom: 15px;
}

/*列表1*/

.listk1{
    width: 100%;
}

.listk1 ul{
    padding: 20px 0;
}

.listk1 .lip1{
    display: block;
    width: 3px;
    height: 3px;
    margin: 11px  15px 0 0;
    background: url("../images/lip.png");
}

.cm-news-list li a,
.listk1 .wzt {
    font-size: 13px;
    color: #666;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.listk1 .wzt {
    line-height: 25px;
    display: block;
    max-width: 90%;
}

.listk1 .wzt:hover,
.cm-news-list li a:hover {
    color: #0f54aa;
}

/* 扩展列表1 */
.listk1-1 .wzt {
    line-height: 30px;
}
.listk1-1 li {
    text-align: right;
    color: #999;
    font-size: 13px;
}
.listk1-1 .wzt {
    color: #666;
}

/* 背景图列表 */
.cm-news-list li {
    height: 21px;
    line-height: 21px;
    text-align: right;
    font-size: 12px;
}
.cm-news-list li a {
    float: left;
    max-width: 330px;
    font-size: 13px;
}
.m-newslist-1 li a {
    padding-left: 20px;
    background: url('../images/sx_jcdt-video1.png') no-repeat left center;
}
.w200.m-newslist-1 li a  {
    max-width: 180px;
}

/*上图下字*/

.stxzk{
    height: 340px;
}

.stxzk .pic{
    position: relative;
    display: block;
    width: 100%;
    height: 190px;
}

.stxzk .pic img{
    width: inherit;
    height: inherit;
}

.stxzk .nav{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 35px;
    line-height: 35px;
    background: url("../images/jtywnav.png");
}

.stxzk .name{
    display: block;
    font-size: 14px;
    color: #fff;
    margin-left: 20px;
    max-width: 85%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stxzk .pic:hover .name {
    color: #c1c3c6;
}

.stxzk .wzms{
    margin: 20px 8px;
    font-size: 13px;
    color: #666;
    line-height: 22px;
}


/*推荐专题*/
.sx-tjzt{
    height: 228px;
    background-color: #eaf1f9;
    border: 1px #e0e7f0 solid;
    margin:  40px 0;
}

.sx-tjzt div.tit{
    position: relative;
    width: 50px;
    height: 230px;
    background-color: #0f54aa;
    margin: -1px 0 0 -1px;
}

.sx-tjzt a.title{
    display: block;
    font-size: 18px;
    color: #fff;
    width: 18px;
    margin: 35px auto 0 auto;
}

.sx-tjzt .btn{
    position: absolute;
    width: 20px;
    height: 42px;
    left: 15px;
    bottom: 28px;
}

.sx-tjzt .pre{
    cursor: pointer;
    display: block;
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
    background: url('../images/jrywpre.png');
}

.sx-tjzt .nex {
    cursor: pointer;
    display: block;
    width: 20px;
    height: 20px;
    background: url('../images/jrywnex.png');
}

.sx-tjzt .lbt{
    margin: 20px 0 0 27px;
    width: 1044px;
    height: 189px;
    position: relative;
    overflow: hidden;
}

.sx-tjzt .stxzk{
    position: absolute;
    background: #fff;
    width: 240px;
    height: 189px;
}
.sx-tjzt .stxzk .pic{
    height: 135px;
}

.sx-tjzt .stxzk .nav{
    height: 25px;
    line-height: 25px;
}

.sx-tjzt .stxzk .wzms{
    font-size: 12px;
    line-height: 15px;
    margin: 8px;
}
/* 推荐专题结束 */

.ztyzk .nr .ms{
    font-size: 12px;
    color: #999;
    line-height: 16px;
    margin-top: 8px;
}

.picitem{
    display: block;
    float: left;
    width: 180px;
}

.picitem .pic{
    width: 100%;
}

.picitem .name{
    padding-top: 8px;
    text-align: center;
    font-size: 13px;
    color: #333;
    line-height: 20px;
}
.f-oh .picitem .name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.picitem:hover .name{
    color: #044aa0;
}

/****************************************公共部分模块****************************************/

.f-oh {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.act-op a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
}
.w760 {
    width: 760px;
}
.w415 {
    width: 415px;
}
.w360 {
    width: 360px;
}
.w365 {
    width: 365px;
}
/* 轮播 */
.banner {
    position: relative;
}
.banner-img {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.banner-img >a,
.banner-img img {
    display: block;
}
.banner-img >a,
.banner-img >li {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
}
.banner-img >li {
    list-style: none;
}
.banner-img >a:first-child,
.banner-img >li:first-child {
    display: block;
}
.banner-tools {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
}
.banner-text {
    padding-right: 145px;
    padding-left: 21px;
    overflow: hidden;
}
.banner-text p,
.banner-text p a {
    color: #fff;
}
.banner-text p {
    display: none;
}
.banner-text p:first-child {
    display: block;
}
.banner-text p:hover,
.banner-text p:hover a {
    color: #3270cc;
}
.banner-text p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.banner-btn {
    position: absolute;
    font-size: 0;
    bottom: 21px;
    right: 22px;
}
.banner-btn span {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 9px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}
.banner-btn span.cur {
    background: #137bd3;
}
.banner-arrow .btn {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    width: 19px;
    height: 39px;
    background: #fff;
    border: 1px solid #e5e5e5;
    cursor: pointer;
}
.banner-arrow .btn:hover {
    background-color: #1959a7;
    border-color: #1959a7;
}
.banner-arrow .btn-lf {
    left: 0;
    background: #fff url('../images/sx_index-arrow2.png') no-repeat center;
}
.banner-arrow .btn-lf:hover {
    background-image: url('../images/sx_index-arrow2-1.png');
}
.banner-arrow .btn-rt {
    right: 0;
    background: #fff url('../images/sx_index-arrow1.png') no-repeat center;
}
.banner-arrow .btn-rt:hover {
    background-image: url('../images/sx_index-arrow1-1.png');
}
.tabContent{
    overflow: hidden;
}
.tabItem {
    display: none;
}
.visiContent {
    position: relative;
    overflow: hidden;
}
.visiItem {
    position: absolute;
    width: 100%;
    visibility: hidden;
}
/* 轮播结束 */

/*标题*/
.m-headtt1 {
    height: 30px;
    font-size: 0;
    border-bottom: 2px solid #e2e2e2;
}
.m-headtt1 .title {
    display: inline-block;
    height: 30px;
    border-bottom: 2px solid transparent;
}
.m-headtt1 .title .s {
    display: inline-block;
    line-height: 20px;
    padding: 0 6px 10px;
    color: #333;
    font-size: 21px;
    border-bottom: 2px solid #e2e2e2;
}
.m-headtt1 .title.cur {
    padding-left: 9px;
    padding-right: 9px;
    border-color: #fff;
}
.m-headtt1 .title.cur:first-child {
    padding-left: 0;
}
.m-headtt1 .title.cur .s {
    border-color: #1959a7;
}
.u-more1 {
    width: 29px;
    height: 5px;
    background: url('../images/sx_index-more1.png') no-repeat center;
}
.m-headtt1 .u-more1 {
    margin-top: 10px;
    margin-right: 2px;
}

.m-title {
    line-height: 28px;
    font-size: 18px;
    color: #333;
    font-weight: normal;
}
/*标题结束*/

/* 菜单卡 */

/* 上图下文 */
.cm-icontxt a {
    position: relative;
    display: block;
    float: left;
    width: 155px;
    height: 45px;
    margin-left: 8px;
    margin-top: 6px;
    font-size: 0;
    text-align: center;
    background: #1959a7;
}
.cm-icontxt a .s {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.cm-icontxt a .txt {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    line-height: 17px;
    font-size: 13px;
    color: #fff;
}

/* 左图右文 */
.cm-icontxt1 a {
    text-align: left;
}
.cm-icontxt1 .imgbx {
    float: left;
    width: 45px;
    height: 100%;   
}
.cm-icontxt1 a .img {
    margin-left: 20px;
}
.cm-icontxt1 a .txt {
    left: 60px;
    height: 100%;
}
.cm-icontxt1 a .s-txt {
    display: inline-block;
    width: 80px;
    font-size: 13px;
    color: #fff;
    vertical-align: middle;
}
/* 菜单卡结束 */


/* 子导航栏 */
.cm-subnav a {
    display: block;
    height: 43px;
    padding-left: 22px;
    line-height: 43px;
    margin-bottom: 7px;
    font-size: 13px;
    color: #1959a7;
    border: 1px solid #e5e5e5;
    background: #fff url('../images/sx_index-icon9.png') no-repeat 279px center;
}
/* 子导航栏结束 */

/* 特殊盒子 */
.m-box1 {
    position: relative;
    background: #fff;
}
.m-box1 .angle {
    position: absolute;
    width: 8px;
    height: 8px;
}
.m-box1 .angle.lt {
    left: 3px;
    top: 3px;
    background: url('../images/sx_index-lt.png') no-repeat center;
}
.m-box1 .angle.rt {
    right: 3px;
    top: 3px;
    background: url('../images/sx_index-rt.png') no-repeat center;
}
.m-box1 .angle.lb {
    left: 3px;
    bottom: 3px;
    background: url('../images/sx_index-lb.png') no-repeat center;
}
.m-box1 .angle.rb {
    right: 3px;
    bottom: 3px;
    background: url('../images/sx_index-rb.png') no-repeat center;
}
/* 特殊盒子结束 */

/*视频*/
.m-vedio {
    position: relative;
}
.m-vedio .vbtn {
    position: absolute;
    top: 50%;
    left: 50%;
}
.m-vedio .vbtn-1 {
    width: 45px;
    height: 45px;
    margin-left: -23px;
    margin-top: -23px;
    background: url('../images/video1.png') no-repeat;
}
.m-vedio .vbtn-2 {
    width: 32px;
    height: 32px;
    margin-left: -16px;
    margin-top: -16px;
    background: url('../images/video2.png') no-repeat;
}
/* 视频结束 */

/* 下拉选项链接 */
.m-select1 {
    position: relative;
    width: 148px;
    height: 28px;
    line-height: 28px;
    font-size: 13px;
    color: #999;
    border: 1px solid #e5e5e5;
    }
.m-select1 .label {
    margin-left: 14px;
}
.m-select1 .link-info {
    display: none;
    position: absolute;
    left: 0;
    top: 28px;
    width: 100%;
    height: 92px;
    overflow: auto;
    border: 1px solid #e5e5e5;
    box-sizing: border-box;    
    z-index: 1;
}
.m-select1 .link-info  li {
    height: 30px;
    line-height: 30px;
    padding-left: 13px;
    background: #fff;
}
.m-select1 .link-info  li a {
    display: block;
    color: #999;
    font-size: 13px;
}
/* 下拉选项链接结束 */

/* 悬浮窗 */
.sx-ffwindow,
.sx-ffwindow .weixin {
    box-sizing: border-box;
    border: 1px solid #dfe6f0;
    background: #fff;
    border-radius: 3px;
}
.sx-ffwindow {
    position: fixed;
    left: 50%;
    margin-left: 620px;
    top: 208px;
    width: 50px;
    height: 200px;
}
.sx-ffwindow a {
    display: block;
    width: 27px;
    height: 32px;
    margin-top: 16px;
    margin-left: 12px;
    text-align: center;
    font-size: 0;
    border-bottom: 1px solid #e2e7ee;
}
.sx-ffwindow a.douyin {
    background: url('../images/sx_index-douyin.png') no-repeat center top;
}
.sx-ffwindow a.douyin:hover {
    background-image: url('../images/sx_index-douyin_1.png');
}
.sx-ffwindow a.weibo {
    background: url('../images/sx_index-weibo.png') no-repeat center top;
}
.sx-ffwindow a.weibo:hover {
    background-image: url('../images/sx_index-weibo_1.png');
}
.sx-ffwindow a.weixinbox {
    background: url('../images/sx_index-weixin.png') no-repeat center top;
}
.sx-ffwindow a.weixinbox:hover {
    background: url('../images/sx_index-weixin_1.png') no-repeat center top;
}
.sx-ffwindow a.weixin-icon {
    background: url('../images/sx_index-ma.png') no-repeat center top;
}
.sx-ffwindow .weixin-icon:hover {
    background: url('../images/sx_index-ma_1.png') no-repeat center top;
}
.sx-ffwindow .weixin-icon:hover .weixin {
    display: block;
}
.sx-ffwindow a:last-child {
    border: none;
}
.sx-ffwindow .weixin {
    display: none;
    position: absolute;
    right: 0;
    top: 96px;
    right: 48px;
    width: 90px;
    padding: 10px;
}
.sx-ffwindow .weixin p {
    margin-bottom: 3px;
    line-height: 24px;
    font-size: 12px;
    color: #333;
}
/* 悬浮窗结束 */

/*菜单选项卡*/
.cm-menu {
    line-height: 0;
    font-size: 0;
}
.cm-menu a {
    display: inline-block;
    width: 278px;    
    height: 33px;
    margin-left: 15px;
    margin-top: 14px;
    line-height: 33px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border: 1px solid #dcdcdc;
}
.cm-menu a:hover {
    color: #0f54aa;
}
/* 菜单选项结束 */

/* 分页 */
.cm-page {
    height: 23px;
    line-height: 23px;
    margin-top: 40px;
    color: #666;
    font-size: 13px;
    text-align: center;
    font-size: 0;
}
.cm-page .total {
    margin-right: 30px;
    font-size: 13px;
}
.cm-page .total .num {
    margin: 0 5px;
    color: #3471c4;
    font-size: 13px;
    font-weight: normal;
}
.cm-page a {
    display: inline-block;
    font-size: 13px;
    color: #666;
}
.cm-page .page {
    height: 21px;
    margin-left: 6px;
    line-height: 21px;
    text-align: center;
    border: 1px solid #e0e1e2;
}
.cm-page .page:hover,
.cm-page .page.cur {
    border-color: #4780cf;
    background: #4780cf;
    color: #fff;
}
.cm-page .page-num {
    width: 21px;
}
.cm-page .page1 {
    width: 58px;
}
.cm-page .first {
    margin-right: 15px;
}
.cm-page .last {
    margin-left: 20px;
    margin-right: 20px;
}
.cm-page .page-r {
    display: inline-block;
    font-size: 13px;
    color: #666;
}
.cm-page .ipttxt {
    width: 21px;
    height: 21px;
    padding: 0 2px;
    line-height: 21px;
    font-size: 12px;
    box-sizing: border-box;
    vertical-align: middle;
    border: 1px solid #e0e1e2;
}
.cm-page .iptbtn {
    width: 50px;
    height: 23px;
    margin-left: 15px;
    text-align: center;
    color: #fff;
    line-height: 23px;
    background: #0e53aa;
}
/* 分页结束 */

/* 轮播一点点滚动 */
.roll-box {
    position: relative;
    overflow: hidden;
}
.roll-box .roll-item {
    position: absolute;
    float: none;
}
.sx-roll1.roll-box {
    height: 148px;
}
.sx-roll2.roll-box {
    height: 390px;
}
.sx-roll3.roll-box {
    height: 128px;
}
.sx-main-right .ct1.sx-roll3 .picitem {
    margin-left: 0;
}
.sx-roll4.roll-box {
    height: 352px;
}
/* 轮播一点点滚动结束 */
