
/*------------------------ 通用样式 ------------------------*/

* {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    font-size: 14px;
    font-family: verdana, '宋体', arial, sans-serif;
}

a {
    text-decoration: none;
}

a:hover {
    /*text-decoration: underline;*/
}

input[type=button],input[type=submit],a{
    cursor: pointer;
}

/*------------------------ A标签颜色及hover样式 ------------------------*/

.aUnderline {text-decoration: underline;}
.aType:hover { color: #ff6600; text-decoration: underline; transition: color .3s linear; }
.aTypeNoLine:hover { color: #ff6600; transition: color .3s linear; }
.aType0 { color:#000; } .aType0:hover { color: #ff6600; text-decoration: underline; transition: color .3s linear; }
.aType1 { color:#333; } .aType1:hover { color: #ff6600; text-decoration: underline; transition: color .3s linear; }
.aType2 { color:#555; } .aType2:hover { color: #ff6600; text-decoration: underline; transition: color .3s linear; }
.aType3 { color:#777; } .aType3:hover { color: #ff6600; text-decoration: underline; transition: color .3s linear; }
.aType4 { color:#999; } .aType4:hover { color: #ff6600; text-decoration: underline; transition: color .3s linear; }
.aType5 { color:#0000ff; } .aType5:hover { color: #ff6600; text-decoration: underline; transition: color .3s linear; }
.aType6 { color:#59c4fc; } .aType6:hover { color: #ff6600; text-decoration: underline; transition: color .3s linear; }
.aType7 { color:#5588fc; } .aType7:hover { color: #ff6600; text-decoration: underline; transition: color .3s linear; }
.aType8 { color:#93aeed; } .aType8:hover { color: #ff6600; text-decoration: underline; transition: color .3s linear; }
.aType9 { color:#00608d; } .aType9:hover { color: #ff6600; text-decoration: underline; transition: color .3s linear; }
.aType10 { color:#c29937; } .aType10:hover { color: #ff6600; text-decoration: underline; transition: color .3s linear; }
.aType11 { color:#6FADCE; } .aType11:hover { color: #ff6600; text-decoration: underline; transition: color .3s linear; }
.aType12 { color:#3288C8; } .aType12:hover { color: #ff6600; text-decoration: underline; transition: color .3s linear; }
.aGreen {color: #5cb43f;} .aGreen:hover {color: #ff6600;text-decoration: underline;transition: color .3s linear;}
.aPurple {color: #9170C9;} .aPurple:hover {color: #ff6600;text-decoration: underline;transition: color .3s linear;}
.aPink {color: #ff81d0;} .aPink:hover {color: #ff6600;text-decoration: underline;transition: color .3s linear;}
.aBrown {color: #2ccab6;} .aBrown:hover {color: #ff6600;text-decoration: underline;transition: color .3s linear;}
.aRed {color: #ff0000;} .aRed:hover {color: #ff6600;text-decoration: underline;transition: color .3s linear;}

/*------------------------ 输入框专用发光样式 ------------------------*/

.txtStyle {
    border: 1px solid #bbb;
    -webkit-box-shadow: inset 0 5px 5px rgba(0, 0, 0, 0.075);
    box-shadow: inset 1px 2px 2px #f2f2f2;
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
}

.txtStyle:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.txtStyle2 {
    border: 1px solid #bbb;
    -webkit-box-shadow: inset 0 5px 5px rgba(0, 0, 0, 0.075);
    box-shadow: inset 1px 2px 2px #f2f2f2;
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
}

.txtStyle2:focus {
    border-color: #f9c05d;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(249, 192, 93, 0.8);
}

/*------------------------ 分页专用样式 ------------------------*/

.pageDiv {
    overflow: hidden;
    border-left: 1px solid #d3dde1;
}

.pageDiv a {
    float: left;
    padding: 5px 7px;
    height: 20px;
    line-height: 20px;
    color: #2283c5;
    font-size: 14px;
    font-family: '宋体';
    min-width: 20px;
    text-align: center;
    background-color: #fafafa;
    border: 1px solid #d3dde1;
    border-left: none;
}

.pageDiv a[disabled=disabled] {
    cursor:not-allowed;
}

.pageDiv a:hover {
    transition: background-color 0.1s ease-in 0s;
    background-color: #e4eaee;
}
.pageDiv .pageLeft font {
    letter-spacing: 2px; padding-left: 2px;
}
.pageDiv .pageLeft .more {
    font-size:14px;font-weight:700;font-family: arial, sans-serif;
}

.pageDiv .currentPage {
    cursor: text;
    float: left;
    padding: 5px 7px;
    height: 20px;
    line-height: 20px;
    color: #fff;
    font-size: 14px;
    font-family: '宋体';
    min-width: 20px;
    text-align: center;
    background-color: #6faed9;
    border: 1px solid #d3dde1;
    border-left: none;
}

.pageDiv select {
    float: left;
    padding: 2px;
    height: 20px;
    line-height: 20px;
    border: 1px solid #d3dde1;
}

/*------------------------ 分页专用样式_风格2 ------------------------*/

.pageDiv2 {
    overflow: hidden;
    border-left: 1px solid #d3dde1;
}

.pageDiv2 a {
    float: left;
    padding: 5px;
    height: 12px;
    line-height: 12px;
    color: #2283c5;
    font-size: 12px;
    font-family: '宋体';
    min-width: 15px;
    text-align: center;
    background-color: #fafafa;
    border: 1px solid #d3dde1;
    border-left: none;
}

.pageDiv a[disabled=disabled] {
    cursor:not-allowed;
}

.pageDiv2 a:hover {
    transition: background-color 0.1s ease-in 0s;
    background-color: #e4eaee;
}

.pageDiv2 .currentPage {
    cursor: text;
    float: left;
    padding:5px 7px;
    height: 12px;
    line-height: 12px;
    color: #777;
    font-size: 12px;
    font-family: '宋体';
    min-width: 15px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #d3dde1;
    border-left: none;
}

.pageDiv2 select {
    float: left;
    padding: 2px;
    height: 20px;
    line-height: 20px;
    border: 1px solid #d3dde1;
}

/*------------------------ 当分页数量只有1页时的pageDiv的样式 ------------------------*/

.pone {
    border:none;
}
.ulfx {
    float: left;
    width: 278px;
    margin-top: 8px;
}

.ulfx li {
    width: 278px;
    line-height: 27px;
    display:block;
    overflow:hidden;
    white-space: nowrap;
    text-overflow:ellipsis;
}

.ulfx .spanleft {
    height: 10px;
    width: 10px;
    float: left;
    margin-top: 9px;
    background: url('../images/listp3.png') no-repeat;
    background-position: 0 -10px;
}
.ulfx .arttype {
    margin-left:7px;
    float:left;
    font-family:'宋体';

}
.ulfx .spanTitle {
    margin-left: 7px;
}

.ulfx li:hover .spanleft {
    background-position: 0 0;
}

.ulfxjz {
    float: left;
    width: 402px;
    margin-top: 8px;
}

.ulfxjz li {
    width: 402px;
    line-height: 27px;
    display:block;
    overflow:hidden;
    white-space: nowrap;
    text-overflow:ellipsis;
}

.ulfxjz .spanleft {
    height: 10px;
    width: 10px;
    float: left;
    margin-top: 9px;
    background: url('../images/listp2.png') no-repeat;
    background-position: 0 -10px;
}
.ulfxjz .juzia {
    margin-left:7px;
    letter-spacing:1px;
}

.ulfxjz li:hover .spanleft {
    background-position: 0 0;
}

.uljuzi {
}
.uljuzi li {
    margin: 0 15px 0 15px;
    overflow: hidden;
    border-bottom: 1px dashed #ccc;
}
.uljuzi li:hover {
    /*border-bottom: 1px dashed #83c327;*/
}
.uljuzi li a {
    display: block;
    height: 42px;
    line-height: 42px;
    letter-spacing: 1px;
    /*font-family: '微软雅黑';*/
    width: 510px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.btnLogin {
    float: none;
    background-color: #53aff7;
    vertical-align: baseline;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    color: white;
    cursor: pointer;
    font-family: '微软雅黑',simsun;
    font-size: 16px;
    padding-top: 3px;
    padding-bottom: 3px;
    vertical-align: middle;
    border: 1px solid #53aff7;
    text-align: center;
    letter-spacing: 5px;
    font-weight: 700;
}

.btnLogin:hover {
    background-color: #3c9be6;
}

.aTypeGtePwd {
    color: #bea322;
}

.aTypeGtePwd:hover {
    color: #2595ea;
    text-decoration: underline;
    transition: color .3s linear;
}

.linkPage1 {
    position: absolute;
    left: 0;
    top: 13px;
    width: 20px;
    height: 40px;
    background: url('../images/link_left20.png') no-repeat 0px 10px;
}

.linkPage1:hover {
    background-color: #eee;
}

.linkPage2 {
    position: absolute;
    right: 0;
    top: 13px;
    width: 20px;
    height: 40px;
    background: url('../images/link_right20.png') no-repeat 0px 10px;
}

.linkPage2:hover {
    background-color: #eee;
}

.linkr {
    color: #999;
    position: absolute;
    right: 0;
    margin-top: 2px;
    font-size: 12px;
    font-family: '微软雅黑';
}

.linkArea {
    width:100%;
}

.linkcontent {
    width: 1200px;
    height: 100px;
    background: #fff;
    margin: 15px auto 0 auto;
    overflow: hidden;
}

.linkmain {
    overflow: hidden;
    width: 1170px;
    margin: 0 auto;
    position: relative;
}

.linkmainture {
    margin-top:15px;
}

.linkmainfull {
}

.linkmainfull a {
    float: left;
    margin-right: 15px;
}

.tjdiv {
    width: 375px;
    height: 212px;
    background-color: #e5e5e5;
    margin: 5px 0 0 15px;
}

.tjtxt {
    clear: both;
    width: 375px;
    height: 33px;
    line-height: 31px;
    text-align: left;
    text-indent: 5px;
    background-color: #e5e5e5;
    margin: 0px auto;
    overflow:hidden;
}

/*图片轮换样式*/
#DivImgG {
    width: 375px;
    height: 212px;
    position: relative;
    left: 0px;
    z-index: 88;
}

.picG {
    width: 375px;
    height: 212px;
    border: none;
    overflow: hidden;
    position: absolute;
    top: 5px;
    text-align: center;
}

.picG img {
    border: none;
    width: 365px;
    height: 207px;
    text-align: left;
}

.picGChangeChoose {
    background-color: red;
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
    cursor: pointer;
    color: #FFFFFF;
    font-size: 12px;
    height: 8px;
    width: 28px;
    padding-bottom: 0px;
}

.picGChangeNoChoose {
    background-color: #a4a3a3;
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
    cursor: pointer;
    color: #FFFFFF;
    font-size: 12px;
    height: 8px;
    width: 28px;
    padding-bottom: 0px;
    position: relative;
    left: 0px;
}

#DivImgG ul {
    position: absolute;
    right: 5px;
    bottom: -21px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#DivImgG ul li {
    float: left;
    margin-left: 0px;
    text-align: center;
    line-height: 8px;
    font-family: Tahoma, Geneva, sans-serif;
    border: 0px solid #2894FF;
    color: White;
}

.GN {
    border-right: 1px solid #e4e4e4;
    height: 8px;
}
.GNlast {
    border-right:none;
}

.TxtShow {
    width: 375px;
    height: 33px;
}

.txtChangeShow {
    display: block;
}

.txtChangehHide {
    display: none;
}

.indexMain {
    width:100%; overflow:hidden;
}
.imContent {
    width:1200px; margin:0 auto 0 auto; overflow:visible;
}
.imleft {
    float:left; width:810px;
}
.imleft1 {
    width:100%;  background: #fff; margin-top:15px;
}
.imleft1tj {
    float:left;width:405px; height: 300px;
}
.imleftnew {
    float:left;width:405px; height: 300px; overflow: hidden;
}
.imleft2 {
    width:810px; height: 125px; background: #fff; margin-top:15px;
}
.imleftspan {
    float: left; margin: 8px 10px 10px 15px; width: 35px; line-height: 27px; text-align: center; font-family: '微软雅黑'; font-weight: 700; background: #fefaf5; color: #C386FC; -moz-box-shadow: 0 0 1px 1px #fce5c2; -webkit-box-shadow: 0 0 2px 2px #FFE4BB; box-shadow: 0 0 2px 2px #FFE4BB;
}
.imleftspan2 {
    float: left; margin: 8px 10px 10px 15px; width: 35px; line-height: 27px; text-align: center; font-family: '微软雅黑'; font-weight: 700; background: #fefaf5; color: #08e274; -moz-box-shadow: 0 0 1px 1px #fce5c2; -webkit-box-shadow: 0 0 2px 2px #FFE4BB; box-shadow: 0 0 2px 2px #FFE4BB;
}
.imleft3 {
    width:810px;  background: #fff; margin-top:15px;
}
.imleft3s {
    width:810px; overflow: hidden;
}
.imleft3a {
    width:400px;
}
.imleft3b {
;width:400px;
}
.imleft4 {
    width:810px; height: 255px; background: #fff; margin-top:15px;
}
.imleft5 {
    width: 810px; height: 355px; background: #fff; margin-top: 15px; overflow: hidden;
}
.imleft5a {
    float: left; width: 270px; height: 355px;
}
.imleft5b {
    float: left; width: 540px; height: 355px;
}
.imright {
    float:left; width:375px; margin-left:15px;
}
.rightU {
    width:375px; height: 300px; background: #fff; margin-top:15px;
}
.rightUi1 {
    margin:15px 15px 0 15px; height:95px; background: #f5f5f5; overflow: hidden;
}
.rightUi2 {
    float: left; width:105px; height: 95px;
}
.rightUi2 img {
    border:none; width:75px; height: 75px; margin:10px 15px; border-radius:100px;
}
.rightUi3 {
    float: left; width:230px; height: 95px; line-height:25px; font-family: '微软雅黑';
}
.rightUi4 {
    display: block; margin-top: 20px; color: #555; letter-spacing: 1px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.rightUi4w {
    font-weight: 700;
}
.rightUi5 {
    margin-top: 8px; letter-spacing: 1px;
}
.rightUi5tip {
    margin: 0 10px; color: #aaa;
}
.rightUi6 {
    margin: 15px 15px 0 15px; height: 125px; line-height:25px; letter-spacing:1px; overflow: hidden; font-family: '微软雅黑';
}
.rightUi7 {
    overflow: hidden; padding-bottom: 15px; border-bottom: 1px solid #e0e0e0;
}
.rightUi7 a{
    float:left;
}
.rightUi7 span{
    font-size: 12px; float: left; margin: 0 15px; color: #aaa;
}
.rightUi8 {
    overflow: hidden; margin-top: 15px; padding-bottom: 20px; border-bottom: 1px solid #e0e0e0;
}
.rightUi8 .goart{
    float: left; text-align: center; width: 110px; margin-top: 6px; height: 32px; line-height: 31px; border: 1px solid #6ab2fc; color: #fff; border-radius: 2px; font-size: 14px; font-family: '微软雅黑'; background: url('../images/article.png') #6ab2fc no-repeat 13px 7px; text-indent: 28px; letter-spacing: 2px;
}
.rightUi8 .gojuzi{
    float: left; margin-left: 12px; text-align: center; width: 110px; margin-top: 6px; height: 32px; line-height: 31px; border: 1px solid #51C854; color: #fff; border-radius: 2px; font-size: 14px; font-family: '微软雅黑'; background: url('/Img/user/addjuzi.png') #51C854 no-repeat 13px 7px; text-indent: 28px; letter-spacing: 2px;
}
.rightUi8 .goxinqing{
    float: left; margin-left: 12px; text-align: center; width: 95px; margin-top: 6px; height: 32px; line-height: 31px; border: 1px solid #ff81d0; color: #fff; border-radius: 2px; font-size: 14px; font-family: '微软雅黑'; background: url('/Img/user/addxq2.png') #ff81d0 no-repeat 13px 7px; text-indent: 28px; letter-spacing: 2px;
}
.rightL {
    width:375px; height: 300px; background: #fff; margin-top:15px;
}
.rightLi1 {
    margin:15px 15px 0 30px;
}
.rightLi2 {
    overflow: hidden; width: 313px; height: 28px; border: 1px solid #aaa; border-radius: 4px;
}
.rightLi2 span{
    float: left; text-align: center; text-indent: 10px; width: 70px; height: 28px; line-height: 28px; background-color: #eee; border-right: 1px solid #bbb; font-family: '微软雅黑'; font-size: 14px; color: #777; letter-spacing: 3px;
}
.rightLi2 input{
    box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075); outline: 0; float: left; width: 232px; height: 28px; line-height: 28px; padding-left: 5px; padding-right: 5px; background-color: #fff; border: none; font-family: '微软雅黑';
}
.rightLi3 {
    margin-top:15px; overflow: hidden; width: 313px; height: 28px; border: 1px solid #aaa; border-radius: 4px;
}
.rightLi3 span{
    float: left; text-align: center; text-indent: 10px; width: 70px; height: 28px; line-height: 28px; background-color: #eee; border-right: 1px solid #bbb; font-family: '微软雅黑'; font-size: 14px; color: #777; letter-spacing: 3px;
}
.rightLi3 input{
    box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075); outline: 0; float: left; width: 232px; height: 28px; line-height: 28px; padding-left: 5px; padding-right: 5px; background-color: #fff; border: none; font-family: '微软雅黑';
}
.rightLi4 {
    overflow: hidden;padding:15px 0; width: 350px;
}
.rightLi4 label{
    float: left; text-align: left; font-family: '微软雅黑'; font-size: 12px; color: #777; letter-spacing: 1px;
}
.rightLi4 label span{
    vertical-align:middle; margin-right:3px;
}
.rightLi4 label input{
    vertical-align:middle;
}
.rightLi4 a{
    float: left; margin-left: 20px; font-family: '微软雅黑'; font-size: 12px; letter-spacing: 1px; vertical-align: middle;
}
.rightLi4 a font{
    vertical-align:middle; text-decoration:none;
}
.btnLogin {
    width: 315px;
}
.rightLi5 {
    overflow: hidden;
}
.rightLi5span {
    line-height: 40px; color: #777; font-family: '微软雅黑';
}
.rightLi5 .loginqq{
    float:left; border:none; background:url(../images/login_qq.png) no-repeat #73a2e1 44px 8px; text-indent:29px; color:#fff; font-family:'微软雅黑',simsun; letter-spacing:1px; text-align:center; width:152px; height: 30px;border-radius: 4px;
}
.rightLi5 .loginwb{
    margin-left:11px; float:left; border:none; background:url(../images/login_wb.png) no-repeat #ff6766 37px 8px; text-indent:32px; color:#fff; font-family:'微软雅黑',simsun; letter-spacing:1px; text-align:center; width:152px; height: 30px;border-radius: 4px;
}
/*.loginqq{float:left; border:none; background:url(../images/login_qq3.png) no-repeat #73a2e1 center 8px; text-indent:30px; color:#fff; font-family:'微软雅黑',simsun; text-align:center; width:152px; height: 30px; line-height:30px; cursor:pointer; border-radius: 4px;}
.loginqq a{ display:block; width:100%;height:100%;}
.loginqq a img{ display:none;}
.loginwb{margin-left:11px; float:left; border:none; background:url(../images/login_wb3.png) no-repeat #ff6766 center 8px; text-indent:35px; color:#fff; font-family:'微软雅黑',simsun; text-align:center; width:152px; height: 30px; line-height:30px; cursor:pointer; border-radius: 4px;}
.loginwb a{ display:block; width:100%;height:100%;}
.loginwb a img{ display:none;}*/
.imrightabout {
    width:375px; height: 45px; background: #fff; margin-top:15px; overflow:hidden;
}
.imrightabout a {
    display: block; width:365px; height:35px; margin: 5px; line-height: 35px; text-align: center; overflow: hidden; background: url('/Img/appimg/index_download.png') #FCEFBA no-repeat;
}
.iras1 {
    display: block; text-align: center; line-height: 45px; font-size: 14px; font-weight: 700; color: #FF81D0; font-family: '微软雅黑'; letter-spacing: 3px;
}
.iras2 {
    letter-spacing:0; margin-right:10px;
}
.imrightnotice {
    width:359px; height: 49px; padding:8px 8px; background: #fff; margin-top:15px;
}
.rnd1 {
    overflow:hidden; height:50px;
}
.rnd2 {
    float:left; width:35px; line-height:25px; text-align: center; border-right:1px solid #ebc793;color:#FF6600;font-family: '微软雅黑'; font-weight:700;
}
.rnd3 {
    float: left; width: 305px; height: 50px; line-height: 25px; padding-left: 10px;
}
.rnd3 li{
    overflow: hidden;
}
.rnd3 li a{
    float: left;width:255px; overflow:hidden; white-space: nowrap; text-overflow:ellipsis;
}
.rnd3 li span{
    float: right;color:#999;font-size:12px;
}
.righthot {
    width:375px; height: 1074px; background: #fff; margin-top:15px;
}
.rightrand {
    width:375px; height: 255px; background: #fff; margin-top:15px;
}
.righttj {
    width:375px; height: 545px; background: #fff; margin-top: 15px;
}
.zxsc {
    margin-top:-5px;
}

/*新版样式*/

.imleft1,.imleft2,.imleft3,.imleft4,.imleft5,.rightU,.rightL,.imrightnotice,.righthot,.rightrand,.ultag,.righttj {
    border:1px solid #0bdac4; box-shadow:0px 0px 1px 0px #67f3e4;
}
.imrightabout {
    border:1px solid #e7d072; box-shadow:0px 0px 1px 0px #eeda8c;
}
.imrightnotice {
    margin-top:13px;
}
.linkArea {
    width:1210px; margin:0 auto;  padding-left:2px;
}
.linkcontent {
    width:1200px; border:1px solid #aaa; box-shadow:0px 0px 1px 0px #ccc;
}

body {
    min-width:1200px;
}
.cnzztj {
    display:none;
}

.logoitemtip {
    float: left;
    height: 65px;
    line-height:63px;
    margin:0 10px 0 13px;
    padding:0;
    letter-spacing:0;
    cursor:default;
    text-align:center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: '微软雅黑';
}
.lasttip {
    margin-right:0;
}

.logoitem {
    float: left;
    height: 65px;
    line-height: 65px;
    padding: 0 12px 0 15px;
    letter-spacing: 3px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: '微软雅黑';
}

.logoitem:hover {
    background: #58c0f5;
    text-decoration:none;
}

.logoitemcurrent {
    background: #58c0f5;
}
.logoitem2 {
    float: left;
    line-height: 45px;
    padding: 0 18px 0 3px;
    color: #6fadce;
    font-size: 14px;
    font-family: '微软雅黑';
    letter-spacing: 1px;
}

.logoitem2:hover {
    color: #ff6600;
    text-decoration: underline;
    transition: color .3s linear;
}

.citemtitle {
    margin: 0 15px;
    height: 35px;
    line-height: 35px;
    border-bottom: 2px solid #e9e9e9;
    position: relative;
}

.citemtitle div {
    position: absolute;
    height: 35px;
    line-height: 35px;
    border-bottom: 2px solid #91d6fd;
}

.citemtitle a {
    position: absolute;
    right: 0;
    margin-top: 2px;
    font-family: '微软雅黑';
}

.citemtitle div span {
    font-size: 14px;
    font-weight: 700;
    color: #999;
    font-family: '微软雅黑';
}

.citemtitle .moItem {
    position:initial;
    float:right;
}
.citemtitle .moreLine {
    color:#999;
    margin:0 5px;
    position:initial;
    float:right;
}

.ul1 {
    margin: 10px 15px;
    line-height: 27px;
}

.ul1 li {
    overflow: hidden;
}

.ul1 li:hover .spanback {
    background-position: 0 -5px;
}

.ul1 .spanback {
    float: left;
    width: 5px;
    height: 5px;
    margin-right: 7px;
    margin-top: 11px;
    background: url('../images/listico.png') no-repeat;
}

.ul1 .spanleft {
    float: left;
    margin-right: 5px;
    font-family: '宋体';
}

.ul1 .spantitle {
    float: left;
    font-family: '宋体';
}

.ul1 .spanright {
    float: right;
    color: #999;
    font-size: 12px;
}

.ulhot {
    margin: 10px 15px 5px 15px;
    line-height: 27px;
}

.ulhot li {
    overflow: hidden;
}

.ulhot li:hover .spanback {
    background-position: 0 -5px;
}

.ulhot .spanback {
    float: left;
    width: 5px;
    height: 5px;
    margin-right: 7px;
    margin-top: 11px;
    background: url('../images/listico.png') no-repeat;
}

.ulhot .spanleft {
    float: left;
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin-top: 3px;
    text-align: center;
    background: #d0d0d0;
    color: #fff;
    margin-right: 5px;
    font-family: '宋体';
    border-radius:10px;
}

.ulhot .spantitle {
    float: left;
    font-family: '宋体';
}

.ulhot .spanright {
    float: right;
    color: #999;
    font-size: 12px;
}

.mt5px {
    margin-top:5px;
}

.uluser {
    margin: 0 0 0 15px;
    overflow: hidden;
}

.uluser a {
    float: left;
    margin: 10px 15px 0 0;
    width: 82px;
    height: 90px;
    line-height: 25px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    color: #555;
    white-space:nowrap;
    text-overflow:ellipsis;
    overflow:hidden;
}

.uluser a img {
    display: block;
    margin: 5px 0 0 11px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    border:none;
}

.uluser a:hover {
    border: 1px solid #91d6fd;
    color: #ff6600;
}

.ulwenji {
    margin: 0 0 0 15px;
    overflow: hidden;
}
.ulwenji a {
    text-align: center;
    width: 103px;
    margin-right:5px;
    margin-top:10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #555;
}
.ulwenji a:hover {
    border: 1px solid #91d6fd;
    color: #ff6600;
}
.ulwenji a img {
    width: 60px;
    height: 80px;
    margin-top: 10px;
    box-shadow: 2px 2px 2px #ccc;
}
.ulwenji a span {
    line-height: 35px;
    width: 93px;
    margin-left: 5px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/*热词标签*/
.ultag {
    width: 345px;
    height: 195px;
    margin: 10px 0 0 15px;
    overflow: hidden;
}

.ultag a {
    float: left;
    text-align: center;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    height: 38px;
    line-height: 38px;
    padding:0 10px;
    font-family: verdana, "宋体", arial, sans-serif;
}

.ultag a:hover {
    text-decoration: underline;
    cursor: pointer;
    color: #ff6600;
    transition: color .3s linear;
}

.color1 {
    background-color: #d2ecfa;
    color: #555;
}

.color2 {
    background-color: #d3fafc;
    color: #555;
}

.color3 {
    background-color: #c8f9e0;
    color: #555;
}

/*顶部CSS*/
.mainTop {
    width: 100%;
    height: 65px;
    background-color: #76CBFC;
}
.mainTopContent {
    width: 1200px;
    height: 65px;
    margin: 0 auto;
    overflow: hidden;
}
.aLogo {
    float: left;
    width: 135px;
    height: 65px;
    padding-right: 16px;
}
.aLogo img {
    border:none;
    width: 135px;
    height: 65px;
}
.menuDiv {
    float: left;
    height: 65px;
    overflow: hidden;
}
.moreItem {
    display: block;
    width: 100%;
    text-align: center;
    height: 35px;
    line-height: 35px;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: '微软雅黑';
}
.moreItem:hover {
    background: #45b4ee;
}
.menuMore {
    float: left;
    height: 65px;
    overflow: hidden;
}
.menuMore a {
    float: left;
    width: 64px;
    height: 65px;
    background: url('../images/navmore.png') 23px 27px no-repeat;
}
.menuLoginDiv {
    float: right;
    height: 65px;
    overflow: hidden;
}
.menuLogin {
    float: left;
    height: 65px;
    line-height: 65px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    background: url('../images/top_user2.png') no-repeat;
    background-position: 0 24px;
    padding-left: 19px;
    margin: 0 20px 0 20px;
}
.menuRegister {
    float: left;
    height: 65px;
    line-height: 65px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    background: url('../images/top_regist2.png') no-repeat;
    background-position: 0 24px;
    padding-left: 19px;
}

.menuUserDiv {
    float: right;
    height: 65px;
    line-height: 60px;
    overflow: hidden;
}

.loginarea {
    height: 65px;
}

.loginout {
    float: right;
}

.loginout a {
    color: #fff;
    vertical-align: middle;
}

.logintip {
    padding: 0 10px 2px 10px;
    line-height: 58px;
    float: right;
}

.logintip span {
    color: #d4eefc;
    font-size: 18px;
    vertical-align: middle;
}

.loginarea {
    float: right;
}

.loginuser {
    color: #fff;
    padding: 0 0 2px 0;
    height: 18px;
    float: right;
}

.loginspan {
    float: right;
    color: #fff;
    line-height: 65px;
}

.loginuser a {
    font-family: '宋体';
    text-decoration: none;
    border-bottom: 1px solid #d4eefc;
    padding-bottom: 5px;
    padding-right: 2px;
}

.loginuser a:hover {
    text-decoration: none;
}

.loginuser a img {
    border: none;
    vertical-align: middle;
    padding: 0 3px 0 3px;
}

.loginuser .s2 {
    color: #fff;
    font-weight: 700;
    vertical-align: middle;
    text-decoration: none;
}

.loginmore {
    float: right;
    width: 24px;
    height: 24px;
    margin-top: 21px;
    background: url('../images/topdown2.png') no-repeat 6px 10px;
}

.navmoreDiv {
    display: none;
    position: relative;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100px;
    height: 140px;
    padding: 0 0 20px 0;
    background: #58c0f5;
}

.loginmorediv {
    display: none;
    position: relative;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100px;
    height: 105px;
    padding: 0 0 20px 0;
    background: #58c0f5;
}

/*顶部2*/
.mainTop2 {
    width: 100%;
    height: 45px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}
.mainTop2Content {
    width: 1200px;
    height: 45px;
    line-height: 45px;
    margin: 0 auto;
    overflow: hidden;
}
.searchDiv {
    float: right;
    height: 65px;
    line-height: 65px;
    overflow: hidden;
}
.searchDiv .searchBtn {
    float: right;
    margin-top: 7px;
    width: 31px;
    height: 31px;
    background: url('../images/top_search.png') no-repeat #fff;
    background-position: 7px 7px;
    border: 1px solid #ddd;
    color: #91d6fd;
    font-size: 14px;
    text-align: center;
    font-weight: 700;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    cursor: pointer;
}
.searchDiv .searchTxt {
    float: right;
    margin-top: 7px;
    width: 180px;
    height: 29px;
    text-indent: 5px;
    border: 1px solid #ddd;
    border-right: 0;
    font-size: 14px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

/*底部CSS*/
.mainBottom {
    width: 100%;
    line-height: 30px;
    padding-top: 10px;
    background: #fff;
    margin: 15px auto 0 auto;
    border-top: 1px solid #ddd;
}
.mainBottom .bottom1 {
    width: 1200px;
    text-align: center;
    margin: 0 auto;
    color:#777;
    font-family: SimSun,'宋体';
    line-height: 35px;
}
.mainBottom .bottom1 a {
    font-family: SimSun,'宋体';
    font-size: 14px;
    margin-right: 10px;
    margin-left: 10px;
}
.mainBottom .bottom1 .bottomitem1 {
    font-family: SimSun,'宋体';
    font-size: 14px;
    margin-right: 10px;
    margin-left: 0;
}
.mainBottom .bottom2 {
    width: 1200px;
    height: 100px;
    font-size: 12px;
    text-align: center;
    margin: 0 auto;
}
.mainBottom .bottom2 .bottom2s1 {
    color: #668F99;
    vertical-align:middle;
    display:inline-table;
}
.mainBottom .bottom2 a {
    margin-top:0; display:inline-table;
}
.mainBottom .bottom2 a img{
    vertical-align: middle;
}
.mainBottom .bottom2 .bottom2s2 {
    color: #999;
}
.mainBottom .bottom2 .bottom2s3 {
    color: #777;
}

/*右侧浮动*/
.frDiv {
    height: 166px;
    position: fixed;
    right: 0;
    bottom: 253px;
}

.frDiv .fritem4 {
    background: url('../images/fr_up.png') no-repeat center center;
}

.frDiv .fritem3 {
    background: url('../images/fr_mobile.png') no-repeat center center;
    background-size: 32px 26px;
}

.frDiv .fritem2 {
    background: url('../images/fr_map.png') no-repeat center center;
    background-size: 26px 26px;
}

.frDiv .fritem1 {
    background: url('../images/fr_share.png') no-repeat center center;
    background-size: 26px 26px;
}

.frDiv .fritem0 {
    background: url('../images/fr_tougao.png') no-repeat center center;
    background-size: 18px 18px;
}



.frDiv .item {
    width: 50px;
    height: 50px;
    background-color: #92d3f5;
    padding: 0;
    margin: 0;
    border: 0;
    margin-bottom: 2px;
    border-right: 0;
    cursor: pointer;
}

.frDiv .item:hover {
    background-color: #76cbfc;
}

.frDiv .itemTG {
    background-color: #ff9900;
}
.frDiv .itemTG:hover {
    background-color: #ff7700;
}
.frs1 {
    display: block;
    width: 50px;
    height: 26px;
}
.frs2 {
    display: block;
    text-align: center;
    width: 50px;
    height: 24px;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    font-family: 'Microsoft YaHei';
}

.frDiv .frs1 a {
    width: 100%;
    height: 100%;
    background: none;
    margin: 0;
    padding: 0;
}
.frDiv .frs2 a {
    width: 100%;
    height: 100%;
    background: none;
    margin: 0;
    padding: 0;
    line-height: 20px;
}
.frDiv .frs2 a:hover {
    color:#fff;
}
.morem {
    display: none;
    width: 202px;
    height: 263px;
    position: fixed;
    right: 40px;
    bottom: 162px;
}

.moremcontent {
    position: relative;
    width: 190px;
    height: 263px;
    margin-right: 10px;
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
}

.frtxtmain .s1 {
    display: block;
    padding-top: 4px;
    line-height: 30px;
    color: #777;
    font-family: 'Microsoft YaHei';
    letter-spacing: 1px;
    text-align: center;
}

.frtxtmain .d1 {
    padding-top: 6px;
    line-height: 20px;
    text-align: center;
}

.frtxtmain .d1 a {
    border: 1px solid #5588FC;
    padding: 3px 15px;
    text-decoration: none;
}

.frtxtmain .s2 {
    display: block;
    padding-top: 4px;
    line-height: 30px;
    color: #777;
    font-family: 'Microsoft YaHei';
    letter-spacing: 1px;
    text-align: center;
}

.frtxtmain .d2 {
    margin: 2px auto 0 auto;
    border: 1px solid #ddd;
    width: 155px;
    height: 155px;
    background-image: url('../images/webappewm.png');
    background-repeat: no-repeat;
    background-size: 155px 155px;
}

.frarrow {
    display: block;
    position: absolute;
    bottom: 52px;
    right: -9px;
    width: 9px;
    height: 21px;
    background-image: url('../images/frarrow.png');
    background-repeat: no-repeat;
    background-size: 9px 21px;
}









.footer{
    background: #fff;
    padding: 20px 0;
    color: #555;
    font-size: 14px;
    text-align: center;
}
.footer a{
    color: #555;
}





.row1{
    word-break: break-word!important;
    overflow: hidden;text-overflow: ellipsis;display: -webkit-box!important;-webkit-line-clamp: 1!important;-webkit-box-orient: vertical;
}
.row2{
    word-break: break-word!important;
    overflow: hidden;text-overflow: ellipsis;display: -webkit-box!important;-webkit-line-clamp: 2;-webkit-box-orient: vertical;
}
.row3{
    word-break: break-word!important;
    overflow: hidden;text-overflow: ellipsis;display: -webkit-box!important;-webkit-line-clamp: 3;-webkit-box-orient: vertical;
}
.row4{
    word-break: break-word!important;
    overflow: hidden;text-overflow: ellipsis;display: -webkit-box!important;-webkit-line-clamp: 4;-webkit-box-orient: vertical;
}
.row5{
    word-break: break-word!important;
    overflow: hidden;text-overflow: ellipsis;display: -webkit-box!important;-webkit-line-clamp: 5;-webkit-box-orient: vertical;
}



.pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    /*background: #fff;*/
    padding: 0 0.3rem;
}
.pagination li{
    list-style: none;
    background: none;
}
.pagination li a{
    margin: 14px 5px;
    display: inline-block;
    line-height: 30px;
    border-radius: 4px;
    text-align: center;
    background: #e3e3e3;
    color: #333;
    font-size: 14px;
    position: relative;
    padding: 5px 10px;
    border: none;
    height: auto;
}
.pagination span{
    margin: 14px 5px;
    display: inline-block;
    line-height: 30px;
    text-align: center;
    padding: 5px 10px;
    border-radius: 4px;
    height: auto;
}

.pagination li:last-child a{
    background: #e3e3e3;
    color: #333;
}
.pagination li:first-child a{
    background: #e3e3e3;
    color: #333;
}
.disabled span{
    background: #e3e3e3;
    color: #333;
}
.pagination .active span{
    background: #76CBFC;
    color: #fff;
}

.selhover{
    color: #fff!important;
    background-color: #76CBFC;
}
.listnav{
    display: flex ;
    align-items: center;
    flex-wrap: wrap;
    height: auto;
    /*margin-bottom: 0.2rem;*/
    /*background: #fff;*/
    /*padding-left: 20px;*/

}
.listnav a{
    display: block;
    padding: 5px 10px;
    color: #222;
    margin: 5px 0;
    border-radius: 4px;
    font-size: 20px;
}