/*滚动条样式*/
::-webkit-scrollbar{/*滚动条整体部分，其中的属性有width,height,background,border等（就和一个块级元素一样）（位置1）*/
    width:7px;
    height:7px;
    background: #fff;
}
::-webkit-scrollbar-button{/*滚动条两端的按钮，可以用display:none让其不显示，也可以添加背景图片，颜色改变显示效果（位置2）*/
    display: none;
}
::-webkit-scrollbar-track{/*外层轨道，可以用display:none让其不显示，也可以添加背景图片，颜色改变显示效果（位置3）*/
    display: none;
}
::-webkit-scrollbar-track-piece{/*内层轨道，滚动条中间部分（位置4）*/
    display: none;
}
::-webkit-scrollbar-thumb{/*滚动条里面可以拖动的那部分（位置5）*/
    background: rgba(0,0,0,0.50);
    border-radius: 100px;
    width: 7px;
    height: 7px;
}
::-webkit-scrollbar-corner {/*边角（位置6）*/
    display: none;
}
::-webkit-scrollbar-resizer  {/*定义右下角拖动块的样式（位置7）*/
    display: none;
}
html,body {
    min-height: 100%;
    position: relative;
}
html{
    height: 100%;
}
body{
    scrollbar-arrow-color: #50586C; /**//*三角箭头的颜色*/
    scrollbar-face-color: #CDCDCD; /**//*立体滚动条的颜色*/
    scrollbar-3dlight-color: #666; /**//*立体滚动条亮边的颜色*/
    scrollbar-highlight-color: #666; /**//*滚动条空白部分的颜色*/
    scrollbar-shadow-color: #999; /**//*立体滚动条阴影的颜色*/
    scrollbar-darkshadow-color: #666; /**//*立体滚动条强阴影的颜色*/
    scrollbar-track-color: #50586C; /**//*立体滚动条背景颜色*/
    scrollbar-base-color:#50586C; /**//*滚动条的基本颜色*/
}
input::-webkit-input-placeholder {
    color: #A7A7A7;
}
input::-webkit-input-placeholder {
    color: #A7A7A7;
}
input::-webkit-input-placeholder {
    color: #A7A7A7;
}
/* 火狐浏览器 */
input::-moz-placeholder {
    color: #A7A7A7;
}
input::-moz-placeholder {
    color: #A7A7A7;
}
input::-moz-placeholder {
    color: #A7A7A7;
}
body,html{
    font-family: "Microsoft YaHei";
}
.width-12{
    width: 1200px;
    max-width: 100%;
}
.public-header{
    height:44px;
    background:rgba(34,34,34,1);
    width: 100%;
    position: fixed;
    padding: 8px 0;
    z-index: 99;
}
.header-fl{
    font-size:12px;
    color:rgba(255,255,255,1);
    line-height:16px;
    margin-top: 6px;
}
.header-fl>span{
    margin-right: 5px;
}
.fl-option a{
    display: block;
    float: left;
    padding: 4px 20px;
    border-radius: 100px;
    color:rgba(255,255,255,1);
    line-height:20px;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
}
.fl-option a:hover{
    background:linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -webkit-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -moz-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -ms-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -o-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
}
.header-div{
    height:80px;
    background:rgba(255,255,255,1);
    width: 100%;
    padding: 17px 0 18px 0;
    box-shadow: 0 0 12px 0 rgba(0,0,0,0.12);
    -webkit-box-shadow: 0 0 12px 0 rgba(0,0,0,0.12);
    -ms-box-shadow: 0 0 12px 0 rgba(0,0,0,0.12);
    -moz-box-shadow: 0 0 12px 0 rgba(0,0,0,0.12);
    -o-box-shadow: 0 0 12px 0 rgba(0,0,0,0.12);
}
.head-logo{
    width: 132px;
    height: 46px;
    display: block;
    float: left;
}
.public-content{
    padding: 44px 0 257px 0;
}
.head-title{
    background:rgba(255,76,103,1);
    border-radius:2px;
    color: #fff;
    padding: 3px;
    width: 18px;
    height: 34px;
    font-size:12px;
    font-weight:normal;
    color:rgba(255,255,255,1);
    line-height:14px;
    float: left;
    margin: 1px 0 0 5px;
}
.header-ul{
    padding-top: 10px;
}
.header-ul li{
    float: left;
    margin-left: 40px;
    /* width: 64px; */
    font-size:16px;
    color:rgba(34,34,34,1);
    line-height:21px;
    text-align: center;
    position: relative;
    cursor: pointer;
}
.header-ul li a{
    width: 100%;
    color:rgba(34,34,34,1);
}
.header-ul li:hover a{
    color: #FF4C67;
}
.header-ul .header-li a{
    color: #FF4C67;
    font-weight: bold;
}
.header-ul .header-li::after{
    position: absolute;
    bottom: -33px;
    content: "";
    background:rgba(255,76,103,1);
    width:20px;
    height:4px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    border-radius: 6px;
}
.search-div{
    height:40px;
    background:rgba(248,248,248,1);
    position: relative;
    padding: 10px 10px 10px 44px;
}
.search-div input{
    border: none;
    background: rgba(0,0,0,0) !important;
    color: #333;
    font-size:14px;
    font-weight:400;
    line-height:20px;
    display: block;
}
.search-div a{
    background: url("../images/search-i.png") no-repeat;
    background-size: 100% 100%;
    width: 18px;
    height: 18px;
    display: block;
    cursor: pointer;
    position: absolute;
    left: 15px;
    top: 11px;
}
.headline-fr p{
    font-size: 12px;
    margin-top: 5px;
    color: #666666;
    letter-spacing: 0.25px;
    line-height: 20px;
}
.headline-banner .swiper-container{
    width: 480px;
    height: 320px;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next,.swiper-button-next, .swiper-container-rtl .swiper-button-prev{
    background-image: none;
    font-size: 24px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    line-height: 44px;
    text-align: center;
}
.swiper-button-next,.swiper-button-prev{
    /* display: none; */
    background-color: transparent;
}
.swiperBox:hover .swiper-button-next{
    display: block;
}
.swiperBox:hover .swiper-button-prev{
    display: block;
}
.swiper-button-next,.swiper-button-prev{
    width: 40px;
    height: 70px;
    font-weight: bold;
    font-size: 30px;
    font-family: "宋体";
    line-height: 70px;
}
.swiper-button-next:hover,.swiper-button-prev:hover{
    /* background: #FF4C67; */
}
.swiper-wrapper img{
    width: 100%;
    height: 100%;
    display: block;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next{
    left: 0;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev{
    right: 0;
}

.headline-banner .swiper-wrapper p{
    font-size: 18px;
    color: #FFFFFF;
    position: absolute;
    bottom: 0;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    left: 0;
    padding: 18px 150px 18px 20px;
    width: 100%;
    line-height: 30px;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
    width: auto;
    left: auto;
    right: 20px;
    bottom: 25px;
}
.headline-banner .swiper-pagination-bullet{
    background: #fff;
    opacity: 0.5;
    border-radius: 0;
    width: 16px;
    height: 2px;
}
.swiper-pagination-bullet-active{
    width:24px !important;
    height:2px;
    background:rgba(255,76,103,1) !important;
    opacity: 1 !important;
    border-radius: 0;
}
.headline-banner{
    width: 480px;
    height: 320px;
    overflow: hidden;
}
.swiper-slide>a{
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.more-a{
    font-size:12px;
    display: block;
    color:rgba(34,34,34,1);
    line-height:37px;
    float: right;
    cursor: pointer;
}
.more-a:hover{
    color: #FF4C67;
}
.more-a i{
    background: url("../images/more.png") no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    margin-left: 5px;
    display: block;
    float: right;
    position: relative;
    top: 7px;
}
.title-public{
    font-size:28px;
    float: left;
    font-weight:bold;
    color:rgba(34,34,34,1);
    line-height:37px;
}
.more-title{
    display: block;
    cursor: pointer;
}
.more-title:hover .more-a{
    color: #FF4C67;
}
.banner-list{
    padding-top: 10px;
}
.banner-list li{
    margin-top: 20px;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
}
.banner-list li a{
    font-size:16px;
    display: block;
    color:rgba(34,34,34,1);
    line-height:21px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.banner-list li::after{
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background:rgba(255,76,103,1);
    top:6px;
    left: 0;
}
.banner-list li:hover a{
    color: #FF4C67;
}
.headlines-div{
    height:50px;
    /* background:rgba(248,248,248,1); */
    border-radius: 100px;
    padding: 9px 40px 9px 23px;
}
.headlines-banner{
    width: 691px;
    height: 19px;
    overflow: hidden;
    margin: 6px 20px 0 18px;
}
.headlines-banner a{
    width: 100%;
    display: block;
    float: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size:14px;
    color:rgba(34,34,34,1);
    line-height:19px;
}
.headlines-banner a:hover{
    color: #FF4C67;
}
.btn-option a,.consultation-fr{
    display: block;
    /* float: left; */
    padding: 6px 20px 7px 22px;
    height:32px;
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr=#ff2854, endColorstr=#ff6f90);
    background:linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -webkit-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -moz-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -o-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    font-size:14px;
    color:rgba(255,255,255,1);
    line-height:19px;
    cursor: pointer;
    border-radius: 100px;
}
.consultation-fr{
    padding: 13px 30px;
    height: 50px;
    font-size:18px;
    color:rgba(255,255,255,1);
    line-height:24px;
}
.btn-option a+a{
    margin-left: 20px;
}
.btn-option i,.consultation-fr i{
    width: 18px;
    height: 18px;
    /* margin-right: 7px; */
    position: relative;
    top:1px;
    display: block;
    float: left;
}
.btn-option1 i{
    background: url("../images/btn1.png") no-repeat;
    background-size: 100% 100%;
}
.consultation-fr i{
    background: url("../images/btn11.png") no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    top:3px;
}
.btn-option2 i{
    background: url("../images/btn2.png") no-repeat;
    background-size: 100% 100%;
}
.review-list>div{
    width: 380px;
    float: left;
    margin-top: 20px;
}
.review-list>div:nth-child(2n){
    float: right;
}
.review-a{
    display: block;
    position: relative;
    border-radius:8px;
}
.review-a img{
    border-radius:8px;
}
.review-a span{
    padding: 5px 10px;
    border-radius:2px;
    font-size:12px;
    text-align: center;
    color:rgba(255,255,255,1);
    line-height:16px;
    position: absolute;
    right: 12px;
    top: 12px;
}
.review-span{
    background:linear-gradient(135deg,rgba(83,235,224,1) 0%,rgba(0,197,170,1) 100%);
    background-image: -webkit-linear-gradient(135deg,rgba(83,235,224,1) 0%,rgba(0,197,170,1) 100%);
    background-image: -moz-linear-gradient(135deg,rgba(83,235,224,1) 0%,rgba(0,197,170,1) 100%);
    background-image: -ms-linear-gradient(135deg,rgba(83,235,224,1) 0%,rgba(0,197,170,1) 100%);
    background-image: -o-linear-gradient(135deg,rgba(83,235,224,1) 0%,rgba(0,197,170,1) 100%);
}
.review-violet{
    background:linear-gradient(135deg,rgba(153,104,218,1) 0%,rgba(124,50,223,1) 100%);
    background-image: -webkit-linear-gradient(135deg,rgba(153,104,218,1) 0%,rgba(124,50,223,1) 100%);
    background-image: -moz-linear-gradient(135deg,rgba(153,104,218,1) 0%,rgba(124,50,223,1) 100%);
    background-image: -ms-linear-gradient(135deg,rgba(153,104,218,1) 0%,rgba(124,50,223,1) 100%);
    background-image: -o-linear-gradient(135deg,rgba(153,104,218,1) 0%,rgba(124,50,223,1) 100%);
}
.review-title{
    font-size:18px;
    display: block;
    color:rgba(34,34,34,1);
    line-height:24px;
    text-overflow: ellipsis;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    margin-top: 15px;
}
.color-hover:hover{
    color: #FF4C67;
    text-decoration: underline !important;
    cursor: pointer;
}
.review-tit{
    font-size:12px;
    margin-top: 8px;
    color:rgba(102,102,102,1);
    line-height:18px;
}
.title-state span{
    font-size:14px;
    font-weight:bold;
    color:rgba(34,34,34,1);
    line-height:19px;
    display: block;
    float: left;
}
.title-state span+span{
    margin-left: 30px;
}
.title-state span:last-child{
    float: right;
}
.state1{
    width: 20%;
}
.state2{
    width: 90px;
}
.state3{
    width: 33%;
}
.state3 a{
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.state4{
    width: 240px;
}
.state5{
    width: 150px;
}
.title-state-div{
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid #222222;
}
.title-state-div .more-a{
    position: absolute;
    right: 0;
    top:-8px;
}
.title-state-ul li{
    padding: 15px 10px;
    border-bottom: 1px solid #EEEEEE;
}
.title-state-ul span,.title-state-ul a{
    font-size:14px;
    color:rgba(34,34,34,1);
    line-height:19px;
    display: block;
    float: left;
}
.title-state-ul span:last-child{
    float: right;
}
.title-state-ul span+span{
    margin-left: 30px;
}
.title-state-ul li:nth-child(2n){
    background: #F8F8F8;
}
.title-state-ul li:hover{
    background: #EEEEEE;
}
.list-ul li{
    font-size:18px;
    color:rgba(34,34,34,1);
    line-height:24px;
    position: relative;
    margin-right: 30px;
    float: left;
    cursor: pointer;
}
.list-ul .list-li{
    font-weight:bold;
}
.list-ul .list-li::before{
    position: absolute;
    bottom: -11px;
    border-radius:6px;
    width:20px;
    height:4px;
    background:rgba(255,76,103,1);
    content: "";
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.list-ul li:hover{
    color: #FF4C67;
}
.trophy-div{
    padding: 3px 7px 3px 23px;
    background: url("../images/top4.png") no-repeat;
    background-size: 100% 100%;
    border-radius: 100px;
    font-size:10px;
    font-weight:normal;
    color:rgba(255,255,255,1);
    line-height:15px;
    height: 20px;
}
.trophy-list>div:nth-child(1) .trophy-div{
    background: url("../images/top1.png") no-repeat;
    background-size: 100% 100%;
}
.trophy-list>div:nth-child(2) .trophy-div{
    background: url("../images/top2.png") no-repeat;
    background-size: 100% 100%;
}
.trophy-list>div:nth-child(3) .trophy-div{
    background: url("../images/top3.png") no-repeat;
    background-size: 100% 100%;
}
.trophy-list>div{
    margin-top: 24px;
}
.trophy-bank{
    font-size:14px;
    color:rgba(34,34,34,1);
    line-height:19px;
    margin-left: 15px;
}
.skillbar-sty .skillbar{
    width: 100px;
    height: 4px;
    background: #EEEEEE;
    margin-right: 17px;
    position: relative;
    top: 7px;
}
.skillbar-sty div{
    font-size:12px;
    color:rgba(34,34,34,1);
    line-height:16px;
}
.skillbar-sty .skillbar-bar,.skillbar-sty .skillbar-title span{
    height: 4px;
}
.trophy-box>div{
    display: none;
}
.trophy-box .trophy-show{
    display: block;
}
.office-title{
    font-size:28px;
    font-weight:bold;
    color:rgba(34,34,34,1);
    line-height:37px;
}
.politics-list{
    padding-top: 5px;
}
.politics-list a{
    font-size:14px;
    font-family:MicrosoftYaHei;
    color:rgba(34,34,34,1);
    line-height:19px;
    display: block;
    width: 180px;
    float: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 15px;
}
.politics-list a:nth-child(2n){
    float: right;
}
.politics-po{
    font-size:22px;
    top:20px;
    left: 30px;
    font-weight:bold;
    color:rgba(34,34,34,1);
    position: absolute;
    line-height:29px;
}
.politics-fr{
    height:566px;
    background:url("../images/map.png") no-repeat;
    background-size: 100% 100%;
    border-radius: 8px;
    margin-top: 49px;
    position: relative;
}
.map-po{
    position: absolute;
    width: 700px;
    height: 482px;
    top:64px;
    left: 30px;
    background: url("../images/map-po.png") no-repeat;
    background-size: 100% 100%;
}
.politics-fr a{
    position: absolute;
    cursor: pointer;
    font-size:12px;
    background:rgba(46,140,255,1);
    border-radius:2px;
    padding: 3px 8px;
    display: block;
    color:rgba(255,255,255,1);
    line-height:16px;
    z-index: 3;
}
.background-red{    background: red!important;}
/**金城江区*/
.position451202{
    top: 50%;
    left: 45%;
}
/**市辖区*/
.position451201{
    top: 40%;
    left: 45%;
}
/**宜州区*/
.position451203{
    top:58%;
    left: 70%;
}
/**南丹县*/
.position451221{
    top: 35%;
    left: 35%;
}
/**天峨县*/
.position451222{
    top: 35%;
    left: 20%;
}
/**凤山县*/
.position451223{
    top: 52%;
    left: 18%;
}
/**东兰县*/
.position451224{
    top: 55%;
    left: 32%;
}
/**罗城仫佬族自治县*/
.position451225{
    top: 42%;
    left: 75%;
}
/**环江毛南族自治县*/
.position451226{
    top: 32%;
    left: 58%;
}
/**巴马瑶族自治县*/
.position451227{
    top: 68%;
    left:18%;
}
/**都安瑶族自治县*/
.position451228{
    top: 68%;
    left: 52%;
}
/**大化瑶族自治县*/
.position451229{
    top: 75%;
    left: 35%;
}
.position1{
    top: 83px;
    left: 140px;
}
.position2{
    top: 181px;
    left: 47px;
}
.position3{
    top:149px;
    left: 100px;
}
.position4{
    top:240px;
    left: 100px;
}
.position5{
    top:188px;
    left: 143px;
}
.position6{
    top:129px;
    left: 180px;
}
.position7{
    top:88px;
    left: 221px;
}
.position8{
    top: 68px;
    left: 287px;
}
.position9{
    top:93px;
    left: 423px;
}
.position10{
    top:114px;
    left: 510px;
}
.position12{
    top:149px;
    left: 279px;
}
.position11{
    top:72px;
    left: 345px;
}
.position13{
    top:174px;
    left: 208px;
}
.position14{
    top:229px;
    left: 247px;
}
.position16{
    top:197px;
    left: 411px;
}
.position15{
    top: 125px;
    left: 353px;
}
.position17{
    top:152px;
    left: 443px;
}
.position18{
    top:161px;
    left: 555px;
}
.position20{
    top:220px;
    left: 643px;
}
.position19{
    top:194px;
    left: 353px;
}
.position21{
    top:210px;
    left: 495px;
}
.position22{
    top:278px;
    left: 180px;
}
.position23{
    top:317px;
    left: 100px;
}
.position24{
    top:294px;
    left: 281px;
}
.position25{
    top:350px;
    left: 188px;
}
.position26{
    top:394px;
    left: 120px;
}
.position27{
    top:394px;
    left: 261px;
}
.position28{
    top: 300px;
    left: 353px;
}
.position29{
    top:272px;
    left: 430px;
}
.position30{
    top:320px;
    left: 470px;
}
.position31{
    top:272px;
    left: 555px;
}
.position32{
    right: 62px;
    bottom: 206px;
}
.position33{
    right: 77px;
    bottom: 95px;
}
.position34{
    right: 165px;
    bottom: 162px;
}
.footer-div{
    border-top: 2px solid #FF4C67;
    padding: 15px 0 20px 0;
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 177px;
    background: #F9F9F9;
    text-align: center;
}
.footer-logo{
    width: 110px;
    height: 46px;
    margin-right: 5px;
    display: block;
}
.footer-about li{
    padding: 0 30px;
    float: left;
    position: relative;
}
.footer-about li a{
    font-size:15px;
    color:rgba(34,34,34,1);
    cursor: pointer;
    line-height:20px;
}
.footer-about li a:hover{
    text-decoration: underline !important;
    color: #FF4C67;
}
.footer-about li::after{
    position: absolute;
    top:2px;
    right: 0;
    height: 19px;
    background: #E1E1E1;
    content: "";
    width: 1px;
}
.footer-about li:last-child::after{
    display: none;
}
.bottom-p{
    font-size:12px;
    color:rgba(102,102,102,1);
    line-height:20px;
    margin-top: 23px;
    text-align: center;
}
.footer-about{
    padding-top: 9px;
}
.bottom-down{
    font-size:14px;
    color:rgba(34,34,34,1);
    line-height:19px;
}
.down-div{
    padding-top: 15px;
}
.down-div>div+div{
    margin-left: 38px;
}
.down-div>div{
    width: 80px;
    text-align: center;
    float: left;
}
.down-div-top img{
    width: 100%;
    height: 72px;
    display: block;
}
.down-div-top{
    border:1px solid rgba(225,225,225,1);
    padding: 4px;
}
.down-div p{
    font-size:12px;
    margin-top: 8px;
    color:rgba(102,102,102,1);
    line-height:16px;
}
.search-result{
    display: none;
    background:rgba(234,243,255,1);
    width: 100%;
    padding: 15px 0;
    margin-top:21px;
}
.search-result i{
    background: url("../images/search-result.png") no-repeat;
    background-size: 100% 100%;
    width: 16px;
    height: 16px;
    display: block;
    float: left;
    position: relative;
    top:2px;
    margin-right: 8px;
}
.search-result p{
    font-size:12px;
    color:rgba(46,140,255,1);
    line-height:16px;
}
.paging-box{
    text-align: center;
}
.page-more{
    font-size: 18px;
    color: #333333;
    line-height: 21px;
    margin-left: 15px;
}
.page-tit{
    font-size: 16px;
    color: #333333;
    line-height: 21px;
    margin-left: 15px;
}
.page-input{
    background-color: #FFFFFF !important;
    width: 44px;
    height: 30px;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    color: #333;
    margin-left: 9px;
    position: relative;
    top:-2px;
    text-align: center;
}
.page-go{
    padding: 7px 11px;
    background: #E1E1E1;
    border-radius: 3px;
    font-size: 14px;
    color: #999999;
    line-height: 16px;
    margin-left: 10px;
}
.page-go:hover{
    background: #FFA600;
    cursor: pointer;
    color: #fff;
}
.arrow-page{
    background: url("../images/leftArrow.png") no-repeat center;
    background-color: #F8F8F8;
    background-size: 11px 18px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    top: 14px;
}
.arrow-page.prov_rota{
    margin-left: 15px;
}
.arrow-page:hover{
    background: url("../images/leftArrow-black.png") no-repeat center;
    background-size: 11px 18px;
    background-color: #F8F8F8;
}
.page-num{
    padding: 12px 16px;
    font-size: 14px;
    color: #666;
    line-height: 16px;
    cursor: pointer;
    margin-left: 15px;
}
.page-active{
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr=#ff2854, endColorstr=#ff6f90);
    background:linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -webkit-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -moz-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -ms-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -o-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    border-radius: 3px;
    color: #fff;
}
.page-num:hover{
    background: #E1E1E1;
    color: #333333;
    border-radius: 3px;
}
.page-active:hover{
    background-image: -webkit-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -moz-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -ms-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -o-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    color: #fff;
}
.paging-box{
    text-align: center;
}
.page-more{
    font-size: 18px;
    color: #333333;
    line-height: 21px;
    margin-left: 15px;
}
.page-tit{
    font-size: 16px;
    color: #333333;
    line-height: 21px;
    margin-left: 15px;
}
.page-input{
    background-color: #FFFFFF !important;
    width: 44px;
    height: 30px;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    color: #333;
    margin-left: 9px;
    position: relative;
    top:-2px;
    text-align: center;
}
.page-go{
    padding: 7px 11px;
    background: #E1E1E1;
    border-radius: 3px;
    font-size: 14px;
    color: #999999;
    line-height: 16px;
    margin-left: 10px;
}
.page-go:hover{
    background: #FFA600;
    cursor: pointer;
    color: #fff;
}
/*面包屑*/
.second-div{
    font-size: 12px;
    color: #222;
    letter-spacing: 0.29px;
    line-height: 16px;
}
.second-div a{
    color: #222;
}
.second-arrow{
    font-family: "宋体";
    margin: 0 10px;
}
.second-div .second-active{
    font-size: 12px;
    color: #333333;
    font-weight: bold;
}
.second-div>a{
    cursor: pointer;
}
.second-div>a:hover{
    text-decoration: underline !important;
}
.home-icon{
    width: 16px;
    height: 16px;
    background: url("../images/home.png") no-repeat;
    background-size: 100% 100%;
    display: block;
    float: left;
    margin-right: 8px;
}
.department-ul{
    padding: 21px 20px 20px 23px;
    /* height: 60px; */
    background: #FFFFFF;
    box-shadow: 0 0 10px 0 rgba(93, 115, 135, 0.2);
}
.department-ul li>a{
    color:rgba(34,34,34,1);
}
.department-ul li{
    float: left;
    position: relative;
    font-size:14px;
    color:rgba(34,34,34,1);
    line-height:19px;
    cursor: pointer;
}
.department-ul li:hover{
    color: #FF4C67;
}
.department-ul li{
    /* margin-left: 40px; */
    margin-right: 30px;
    padding-top: 10px;
}
.department-ul .department-i{
    background: url("../images/list.png") no-repeat;
    width: 18px;
    height: 18px;
    background-size: 100% 100%;
    margin-right: 10px;
    display: block;
    float: left;
    position: relative;
    top:1px;
}
.department-ul-sty li:first-child{
    padding-right: 0;
}
/* .department-ul li:first-child::before{
    position: absolute;
    right: 0;
    width: 1px;
    height: 16px;
    background: #CCCCCC;
    content: "";
    top:4px;
} */
.department-ul-sty li:first-child::before{
    display: none;
}
/* .department-ul-sty li:nth-child(2){
    margin-left: 40px;
} */
.department-ul .department-li::after{
    position: absolute;
    content: "";
    width:20px;
    height:4px;
    background:rgba(255,76,103,1);
    bottom: -20px;
    border-radius: 6px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.my-wenzheng::after{
    bottom: 10px !important;
}
.department-ul .department-li{
    font-weight: bold;
}
.department-icon li{
    width: 200px;
    height: 200px;
    text-align: center;
    position: relative;
    float: left;
    border-right: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
}
.department-icon li a{
    cursor: pointer;
}
.department-icon img{
    width: 50px;
    height: 50px;
    display: block;
}
.department-icon p{
    font-size:16px;
    margin-top: 18px;
    color:rgba(34,34,34,1);
    line-height:21px;
}
.department-div>ul{
    display: none;
}
.department-div .department-show{
    display: block;
}
.fl-my{
    font-size:14px;
    color:rgba(255,255,255,1);
    line-height:19px;
    cursor: pointer;
    padding-right: 20px;
    float: left;
}
.fl-my img{
    height: 30px;
    width: 30px;
    display: block;
    float: left;
    margin-right: 10px;
    border-radius: 50%;
}
.fl-my span{
    line-height: 30px;
    display: block;
    float: left;
}
.out-a{
    font-size:14px;
    padding-left: 20px;
    border-left: 1px solid #646464;
    color:rgba(46,140,255,1);
    line-height:19px;
    float: left;
    margin-top: 5px;
    cursor: pointer;
}
.out-a:hover{
    color: #fff;
}
.government-ranking li{
    width: 380px;
    margin-bottom: 35px;
    box-shadow: 0 0 10px 0 rgba(93, 115, 135, 0.2);
    margin-right: 30px;
    position: relative;
    /* height: 247px; */
    float: left;
    padding: 33px 15px 15px;
    transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
}
.government-ranking li a{
    cursor: pointer;
    display: block;
}
.government-ranking li:hover{
    -ms-transform: translate(-2px,-2px);
    transform: translate(-2px,-2px);
    -webkit-transform: translate(-2px,-2px);
    -o-transform: translate(-2px,-2px);
    -moz-transform: translate(-2px,-2px);
}
.government-ranking li:nth-child(3n){
    margin-right: 0;
}
.ranking-po{
    background: url("../images/rank4.png") no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top:-5px;
    left: 15px;
    width: 86px;
    font-size:14px;
    font-weight:normal;
    color:rgba(255,255,255,1);
    line-height:26px;
    height: 28px;
    padding-left: 25px;
}
.government-ranking li:nth-child(1) .ranking-po{
    background: url("../images/rank1.png") no-repeat;
    background-size: 100% 100%;
}
.government-ranking li:nth-child(2) .ranking-po{
    background: url("../images/rank2.png") no-repeat;
    background-size: 100% 100%;
}
.government-ranking li:nth-child(3) .ranking-po{
    background: url("../images/rank3.png") no-repeat;
    background-size: 100% 100%;
}
.ranking-p{
    font-size:18px;
    font-weight:bold;
    color:rgba(34,34,34,1);
    line-height:24px
}
.handle-div{
    padding-top: 15px;
}
.handle-div div{
    font-size:12px;
    color:rgba(153,153,153,1);
    line-height:16px;
}
.office-box-handle div{
    font-size:16px;
    color:rgba(34,34,34,1);
    line-height:21px;
}
.handle-div div+div{
    margin-left: 25px;
}
.handle-div span{
    font-size:18px;
    color:rgba(46,140,255,1);
    line-height:21px;
    margin-left: 6px;
}
.office-box-handle span{
    font-size:28px;
    line-height: 32px;
}
.office-box-handle{
    margin-left: 70px;
    padding-top: 6px;
}
.office-box-handle div+div{
    margin-left: 50px;
}
.fraction-num{
    font-size:44px;
    font-weight:bold;
    color:rgba(34,34,34,1);
    line-height:50px;
    margin-top: 11px;
    text-align: center;
}
.star-sty{
    margin-top: 2px;
}
.star-sty i{
    width: 20px;
    height: 20px;
    background: url("../images/star1.png") no-repeat;
    background-size: 100% 100%;
    display: inline-block;
}
.star-sty .star-active{
    background: url("../images/star2.png") no-repeat;
    background-size: 100% 100%;
}
.score-div .star-active{
    background: url("../images/star3.png") no-repeat;
    background-size: 100% 100%;
}
.star-sty i+i{
    margin-left: 3px;
}
.score-div i+i{
    margin-left: 13px;
}
.score-fen{
    font-size:14px;
    margin-left: 13px;
    color:rgba(34,34,34,1);
    line-height:25px;
}
.satisfaction-p{
    font-size:12px;
    text-align: center;
    color:rgba(34,34,34,1);
    line-height:16px;
    margin-top: 9px;
}
.satisfaction-p>p+p{
    margin-top: 2px;
}
.fraction-fl{
    font-size:12px;
    margin-right: 10px;
    color:rgba(153,153,153,1);
    line-height:16px;
}
.people-num{
    font-size:12px;
    margin-left: 10px;
    color:rgba(34,34,34,1);
    line-height:16px;
}
.skillbar-pingfen .skillbar{
    width: 156px;
    height: 13px;
    background: #F8F8F8;
}
.skillbar-pingfen span,.skillbar-bar{
    height: 13px;
}
.skillbar-fl{
    padding-top: 4px;
}
.skillbar-fl>div{
    margin-top: 14px;
}
.skillbar-fl>div:nth-child(1) .skillbar-bar{
     background:linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
     background-image: -webkit-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
     background-image: -moz-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
     background-image: -ms-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
     background-image: -o-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
 }
.skillbar-fl>div:nth-child(2) .skillbar-bar{
    background:linear-gradient(135deg,rgba(255,220,81,1) 0%,rgba(255,182,0,1) 100%);
    background-image: -webkit-linear-gradient(135deg,rgba(255,220,81,1) 0%,rgba(255,182,0,1) 100%);
    background-image: -moz-linear-gradient(135deg,rgba(255,220,81,1) 0%,rgba(255,182,0,1) 100%);
    background-image: -ms-linear-gradient(135deg,rgba(255,220,81,1) 0%,rgba(255,182,0,1) 100%);
    background-image: -o-linear-gradient(135deg,rgba(255,220,81,1) 0%,rgba(255,182,0,1) 100%);
}
.skillbar-fl>div:nth-child(3) .skillbar-bar{
    background:linear-gradient(135deg,rgba(69,221,255,1) 0%,rgba(46,140,255,1) 100%);
    background-image: -webkit-linear-gradient(135deg,rgba(69,221,255,1) 0%,rgba(46,140,255,1) 100%);
    background-image: -moz-linear-gradient(135deg,rgba(69,221,255,1) 0%,rgba(46,140,255,1) 100%);
    background-image: -ms-linear-gradient(135deg,rgba(69,221,255,1) 0%,rgba(46,140,255,1) 100%);
    background-image: -o-linear-gradient(135deg,rgba(69,221,255,1) 0%,rgba(46,140,255,1) 100%);
}
.skillbar-fl>div:nth-child(4) .skillbar-bar{
    background:linear-gradient(135deg,rgba(83,235,224,1) 0%,rgba(0,197,170,1) 100%);
    background-image: -webkit-linear-gradient(135deg,rgba(83,235,224,1) 0%,rgba(0,197,170,1) 100%);
    background-image: -moz-linear-gradient(135deg,rgba(83,235,224,1) 0%,rgba(0,197,170,1) 100%);
    background-image: -ms-linear-gradient(135deg,rgba(83,235,224,1) 0%,rgba(0,197,170,1) 100%);
    background-image: -o-linear-gradient(135deg,rgba(83,235,224,1) 0%,rgba(0,197,170,1) 100%);
}
.skillbar-fl>div:nth-child(5) .skillbar-bar{
    background:linear-gradient(135deg,rgba(153,104,218,1) 0%,rgba(124,50,223,1) 100%);
    background-image: -webkit-linear-gradient(135deg,rgba(153,104,218,1) 0%,rgba(124,50,223,1) 100%);
    background-image: -moz-linear-gradient(135deg,rgba(153,104,218,1) 0%,rgba(124,50,223,1) 100%);
    background-image: -ms-linear-gradient(135deg,rgba(153,104,218,1) 0%,rgba(124,50,223,1) 100%);
    background-image: -o-linear-gradient(135deg,rgba(153,104,218,1) 0%,rgba(124,50,223,1) 100%);
}
.focus-details{
    font-size:32px;
    font-weight:bold;
    color:rgba(34,34,34,1);
    line-height:42px;
}
.focus-date{
    font-size:12px;
    color:rgba(153,153,153,1);
    line-height:16px;
    margin-top: 15px;
}
.focus-date span+span{
    margin-left: 30px;
}
.details-box p{
    margin-top: 18px;
    font-size:16px;
    font-family:MicrosoftYaHei;
    color:rgba(34,34,34,1);
    line-height:28px;
}
.details-box img{
    border-radius:8px;
    width: auto;
    display: block;
    margin-top: 40px;
    max-width: 100%;
}
.finish{
    text-align: center;
}
.finish span{
    display: inline-block;
    position: relative;
    font-size:24px;
    color:rgba(153,153,153,1);
    line-height:31px;
}
.finish span::before,.finish span::after{
    position: absolute;
    content: "";
    width: 124px;
    background: #D8D8D8;
    top:15px;
    left: -139px;
    height: 1px;
}
.finish span::after{
    left: auto;
    right: -139px;
}
.office-box{
    background: #F8F8F8;
    padding: 25px 30px 25px 33px;
    border-radius:8px;
}
.office-box-i i{
    width: 50px;
    height: 50px;
    background: url("../images/icon2.png") no-repeat;
    background-size: 100% 100%;
    display: block;
    float: left;
}
.office-box-i div{
    font-size:26px;
    margin-left: 20px;
    font-weight:bold;
    color:rgba(34,34,34,1);
    line-height:50px;
    float: left;
}
.average-ul{
    padding-top: 15px;
}
.average-ul li{
    float: left;
    font-size:14px;
    padding: 0 20px;
    border-right: 1px solid #CCCCCC;
    color:rgba(34,34,34,1);
    line-height:19px;
}
.average-ul li:last-child{
    border-right: 0;
}
.average-ul li:first-child{
    padding: 0 20px 0 0;
}
.average-clear .skillbar{
    width: 1000px;
}
.average-clear>div{
    margin-top: 26px;
}
.average-clear{
    padding-top: 9px;
}
.average-clear span{
    width: 90px;
}
.average-clear .fraction-fl{
    text-align: right;
    font-size: 14px;
}
.average-clear .people-num{
    text-align: left;
    font-size: 14px;
}
.table-infor{
    width: 100%;
    text-align: center;
    background: #222;
}
.table-infor td{
    background: #fff;
}
.table-infor th{
    background:rgba(238,238,238,1);
    font-weight: normal;
}
.table-infor td,.table-infor th{
    padding: 10px 0 12px 0;
    font-size:14px;
    color:rgba(34,34,34,1);
    line-height:19px;
}
.table-infor tr+tr td:first-child{
    font-weight: bold;
}
.title-state{
    padding: 0 10px;
}
.main-ul li{
    margin-top: 20px;
    font-size:12px;
    color:rgba(34,34,34,1);
    line-height:16px;
}
.service-ul li+li{
    margin-top: 12px;
}
.service-ul li{
    font-size:12px;
    color:rgba(34,34,34,1);
    line-height:16px;
}
.departmental-file li:first-child{
    border-top: 1px solid #EEEEEE;
}
.departmental-file li{
    background: #F8F8F8;
    padding: 15px 20px 16px 10px;
    border-bottom: 1px solid #EEEEEE;
}
.departmental-file li:nth-child(2n){
    background: #fff;
}
.departmental-file li:hover{
    background: #EEEEEE;
}
.departmental-file li a{
    display: block;
    font-size:14px;
    color:rgba(34,34,34,1);
    cursor: pointer;
    line-height:19px;
}
.departmental-file .fl{
    width: 1000px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.departmental-file .fr{
    width: 125px;
}
.departmental-file .fl:hover{
    color: #FF4C67;
}
.flex-logn{
    width:420px;
    background:rgba(255,255,255,1);
    padding: 30px 40px 40px;
    border-radius: 8px;
}
.flex-logn-title{
    font-size:26px;
    position: relative;
    font-weight:bold;
    color:rgba(34,34,34,1);
    line-height:35px;
}
.close-flex{
    position: absolute;
    cursor: pointer;
    top:-10px;
    right: -10px;
    width: 16px;
    height: 16px;
    background: url("../images/close.png") no-repeat;
    background-size: 100% 100%;
    display: block;
}
.login-input{
    border:1px solid rgba(233,233,233,1);
    padding: 11px 12px;
    font-size:16px;
    font-weight:400;
    display: block;
    width: 100%;
    background-color: rgba(0,0,0,0) !important;
    color:#333;
    border-radius: 6px;
    line-height:22px;
}
.forgrt-password{
    margin-top: 15px;
    font-size:14px;
    color:rgba(34,34,34,1);
    line-height:19px;
}
.forgrt-password a{
    margin-left: 20px;
    cursor: pointer;
}
.login-a{
    background: #CCCCCC;
    display: block;
    font-size:18px;
    text-align: center;
    color:rgba(255,255,255,1);
    line-height:50px;
    height:50px;
    cursor: pointer;
    border-radius:100px;
}
.login-active{
    background:linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -webkit-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -moz-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -ms-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -o-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
}
.account-onther{
    font-size:14px;
    color:rgba(153,153,153,1);
    line-height:19px;
    text-align: center;
}
.account-onther-div{
    padding-top: 15px;
    text-align: center;
}
.account-onther-div a,.binding-ul a{
    display: inline-block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
}
.binding-ul li{
    float: left;
    margin-right: 20px;
}
.account-onther-div a+a{
    margin-left: 20px;
}
.wechat{
    background: url("../images/wechat2.png") no-repeat;
    background-size: 100% 100%;
}
.weibo{
    background: url("../images/weibo2.png") no-repeat;
    background-size: 100% 100%;
}
.qq{
    background: url("../images/qq2.png") no-repeat;
    background-size: 100% 100%;
}
.code-input{
    position: relative;
}
.code-input-a{
    padding-right: 109px;
}
.code-input-a{
    background:linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -webkit-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -moz-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -ms-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -o-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    font-size:14px;
    padding: 6px 12px;
    font-weight:400;
    display: block;
    position: absolute;
    right: 6px;
    top:6px;
    color:rgba(255,255,255,1);
    line-height:20px;
    border-radius:100px;
    cursor: pointer;
}
.code-input-code{
    width:62px;
    height:32px;
    background:rgba(216,216,216,1);
    border-radius:4px;
    position: absolute;
    display: block;
    right: 6px;
    top:6px;
}
.code-input-sty{
    background: #CCCCCC;
}
.register-title{
    font-size:20px;
    margin-left: 15px;
    font-weight:bold;
    color:rgba(34,34,34,1);
    line-height:45px;
}
.register-cont{
    background: #fff;
    box-shadow: 0 0 12px 0 rgba(0,0,0,0.12);
    -webkit-box-shadow: 0 0 12px 0 rgba(0,0,0,0.12);
    -ms-box-shadow: 0 0 12px 0 rgba(0,0,0,0.12);
    -moz-box-shadow: 0 0 12px 0 rgba(0,0,0,0.12);
    -o-box-shadow: 0 0 12px 0 rgba(0,0,0,0.12);
    border-radius:8px;
    padding: 30px;
    text-align: center;
}
.register-cont>div+div{
    margin-top: 20px;
}
.register-div>div{
    display: inline-block;
}
.register-div>div:nth-child(1){
    text-align: right;
    font-size:12px;
    color:rgba(34,34,34,1);
    line-height:44px;
    width: 60px;
}
.register-div>div+div{
    margin-left: 20px;
}
.register-input{
    width: 340px;
    position: relative;
}
.register-wz .register-input{
    width: 812px;
}
.register-input input{
    border-radius:6px;
    display: block;
    height: 44px;
    padding: 0 12px;
    width: 100%;
    border:1px solid rgba(233,233,233,1);
    background-color: #fff !important;
    font-size:16px;
    font-weight:400;
    color: #333;
    line-height:22px;
}
/*多选复选样式*/
.change_answer{
    position: relative;
    top:6px;
}
.change_answer>li{
    height: auto;
}
.change_answer>li span{
    text-align: justify;
    font-size: 14px;
    color: #222222;
    line-height: 20px;
    display: block;
    cursor: pointer;
}
.change_answer label>div{
    position: static !important;
    margin-right: 10px;
    margin-top: 1px;
}
.change_answer label div{
    float: left;
}
/*答题界面的input样式修改*/
.change_radio label,.change_checkbox label{
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}
.change_radio label input,.change_checkbox label input{
    display: inline-block ;
    opacity: 0 ;
    width: 18px;
}
.change_radio label div{
    width: 20px;
    height: 20px;
    top:0;
    position: absolute;
    left: 0;
    background: url("../images/radio1.png") no-repeat;
    background-size: 100% 100%;
}
.change_radio input:checked+div {  /*当radiuo被选中时，把input下边的div标签的背景图片替换掉*/
    background: url("../images/radio.png") no-repeat;
    background-size: 100% 100%;
}
.change_answer img{
    width: 100%;
    display: block;
    border-radius: 4px;
    margin-top: 10px;
}
.change_answer-img{
    overflow: hidden;
}
.investigation-ul>li+li{
    margin-left: 40px;
}
.register-p{
    font-size:12px;
    color:rgba(34,34,34,1);
    line-height:16px;
    margin-top: 15px;
    text-align: center;
}
.register-p a{
    color: #2E8CFF;
    cursor: pointer;
}
.register-p a:hover{
    text-decoration: underline !important;
}
.agreement-p{
    font-size:20px;
    text-align: left;
    font-weight:bold;
    color:rgba(34,34,34,1);
    line-height:26px;
}
.agreement-list{
    text-align: left;
    font-size:12px;
    color:rgba(34,34,34,1);
    line-height:16px;
}
.agreement-list p{
    margin-top: 20px;
}
.register-wz{
    padding-top: 10px;
}
.register-wz>div{
    margin-top: 20px;
}
.bitian{
    position: relative;
}
.bitian::after,.score-bitian::after{
    content: "*";
    position: absolute;
    color: red;
    left: -10px;
    top: -2px;
}
.score-bitian{
    font-size:12px;
    color: #222;
    line-height:25px;
    position: relative;
}
.score-bitian::after{
    font-size: 12px;
}
.register-input>select{
    padding: 11px 25px 11px 12px;
    width: 340px;
    border-radius:6px;
    height: 44px;
    border:1px solid rgba(233,233,233,1);
    background-color: #fff !important;
    display: block;
    background: url("../images/xiala.png") no-repeat center right 17px;
    background-size: 20px 20px;
    float: left;
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
}
.register-input>select+select{
    margin-left: 20px;
}
.register-wz .register-div>div{
    display: block;
    float: left;
}
.register-wz .register-input input{
    width: 340px;
    float: left;
}
.up-list>div{
    width:110px;
    height:110px;
    border-radius:8px;
    float: left;
    position: relative;
    margin: 0 20px 20px 0;
}
.up-list>div:nth-child(6n){
    margin: 0 0 20px 0;
}
.up-div{
    border:1px solid rgba(233,233,233,1);
    background: url("../images/up.png") no-repeat center;
    background-size: 16px 16px;
}
.up-list img{
    width: 100%;
    display: block;
    height: 100%;
    border-radius: 8px;
}
.up-list .delete-i{
    background: url("../images/delete.png") no-repeat;
    background-size: 100% 100%;
    position: absolute;
    right: 0;
    top:0;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.play-icon{
    background: url("../images/olay-icon.png") no-repeat;
    background-size: 100% 100%;
    width: 30px;
    height: 30px;
}
.up-div input{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.change_checkbox label div{
    width: 20px;
    height: 20px;
    position: absolute;
    top: 1px;
    left: 0;
    background: url("../images/gou.png") no-repeat;
    background-size: 16px 16px;
    background-color: #fff;
    border-radius: 50%;
    border:1px solid rgba(238,238,238,1);
}
.change_checkbox input:checked+div {  /*当radiuo被选中时，把input下边的div标签的背景图片替换掉*/
    background: url("../images/gou.png") no-repeat center;
    background-size: 16px 16px;
    background-color: #FF4C67;
    border: none;
}
.details-head{
    font-size:12px;
    line-height: 30px;
    color: #222;
}
.details-head img{
    width:30px;
    height:30px;
    display: block;
    float: left;
    margin-right: 6px;
    border-radius: 50%;
    position: relative;
    top:-2px;
}
.focus-date-list span{
    line-height: 30px;
}
.wait-bar{
    width: 240px;
    margin-left: 40px;
    height: 20px;
    background: #EEEEEE;
    border-radius: 100px;
    position: relative;
    top: 3px;
}
.wait-bar .skillbar-bar{
    height:20px;
    background:linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -webkit-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -moz-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -ms-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -o-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
}
.skillbar-title span{
    width: 240px;
    font-size: 12px;
    color: rgba(255,255,255,1);
    line-height: 20px;
}
.wait-bar .skillbar-bar{
    border-radius: 100px;
}
.details-img-list{
    padding-top: 10px;
}
.details-img-list>img{
    border-radius:8px;
    margin-right: 20px;
    margin-top: 20px;
    width: 200px;
    height: 200px;
    float: left;
    display: block;
}
.details-img-list>div{
    border-radius:8px;
    margin-right: 20px;
    margin-top: 20px;
    width: 200px;
    height: 200px;
    float: left;
    display: block;
    position: relative;
    cursor: pointer;
}

.details-img-list>div img{
    width: 100%;
    height: 100%;
}

.details-img-list>div .bofang{
    width: 35px;
    height: 35px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.politics-fl{
    font-size:12px;
    color:rgba(34,34,34,1);
    line-height:32px;
}
.politics-option>div{
    padding: 7px 20px;
    background:rgba(255,255,255,1);
    border-radius:16px;
    border:1px solid rgba(238,238,238,1);
    text-align: center;
    font-size:14px;
    color:rgba(34,34,34,1);
    line-height:19px;
    cursor: pointer;
}
.politics-option .politics-option-btn{
    background: #EEEEEE;
}

.politics-option>div+div{
    margin-left: 15px;
}
.politics-option i{
    width: 18px;
    height: 18px;
    margin-right: 5px;
    display: block;
    float: left;
    position: relative;
    top:1px;
}
.politics-zan i{
    background: url("../images/zan.png") no-repeat;
    background-size: 100% 100%;
}
.politics-zan.politics-option-btn i{
    background: url("../images/zanList.png") no-repeat;
    background-size: 100% 100%;
}
.politics-shoucang i{
    background: url("../images/shoucang.png") no-repeat;
    background-size: 100% 100%;
}
.politics-shoucang.politics-option-btn i{
    background: url("../images/shoucnag2.png") no-repeat;
    background-size: 100% 100%;
}
.politics-share i{
    background: url("../images/share.png") no-repeat;
    background-size: 100% 100%;
}
.politics-share{
    position: relative;
}
.share-box{
    padding: 20px 24px;
    background: #fff;
    position: absolute;
    width: 241px;
    top:32px;
    left: 0;
    box-shadow:0px 2px 4px 0px rgba(0,0,0,0.11);
    border-radius:8px;
    border:1px solid rgba(238,238,238,1);
    display: none;
    text-align: center;
    z-index: 999;
}
.share-div p{
    font-size:12px;
    margin-top: 8px;
    color:rgba(34,34,34,1);
    line-height:16px;
}
.share-div div{
    width:75px;
    height:75px;
    padding: 5px;
    border:1px solid rgba(225,225,225,1);
}
.share-div img{
    display: block;
    width: 100%;
    height: 100%;
}
.share-ul li{
    display: inline-block;
    text-align: center;
}
.share-ul li+li{
    margin-left: 20px;
}
.share-ul a{
    display: block;
}
.share-ul img{
    width:40px;
    height:40px;
    display: block;
    border-radius: 50%;
}
.share-ul p{
    font-size:12px;
    margin-top: 8px;
    color:rgba(34,34,34,1);
    line-height:16px;
}
.share-ul{
    margin-top: 20px;
}
.politics-share:hover .share-box{
    display: block;
}
.gf-reply{
    resize: none;
    height:150px;
    border-radius:6px;
    padding: 20px;
    border:1px solid rgba(233,233,233,1);
    background-color: #fff !important;
    width: 100%;
    font-family: "Microsoft-YaHei";
    display: block;
    font-size:16px;
    color:rgba(34,34,34,1);
    line-height:21px;
}
.gf-reply-title{
    font-size:20px;
    font-weight:bold;
    color:rgba(34,34,34,1);
    line-height:26px;
}
.score-a{
    background:linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -webkit-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -moz-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -ms-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -o-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    text-align: center;
    padding: 12px 0 14px;
    display: block;
    font-size:18px;
    cursor: pointer;
    color:rgba(255,255,255,1);
    line-height:24px;
    width: 192px;
    border-radius: 100px;
}
.comment-ul li{
    padding: 30px 0 20px 0;
    border-top: 1px solid #E1E1E1;
}
.comment-head{
    margin-right: 15px;
}
.comment-head,.comment-head img{
    width:50px;
    height:50px;
    display: block;
    float: left;
    border-radius: 50%;
}
.comment-div{
    overflow: hidden;
}
.comment-top{
    font-size:14px;
    font-weight:bold;
    color:rgba(34,34,34,1);
    line-height:19px;
    justify-content: space-between;
    display: flex;
}
.comment-top span{
    font-size:14px;
    margin-left: 10px;
    color:rgba(153,153,153,1);
    line-height:19px;
    font-weight: normal;
}
.comment-a{
    margin-top: 12px;
    font-size:16px;
    color:rgba(51,51,51,1);
    line-height:22px;
}
.comment-opction>div{
    float: left;
    cursor: pointer;
    font-size:12px;
    font-family:MicrosoftYaHei;
    color:rgba(153,153,153,1);
    line-height:16px;
}
.comment-opction a{
    color:rgba(153,153,153,1);
}
.comment-opction>div+div{
    margin-left: 20px;
}
.comment-opction i{
    width: 16px;
    height: 16px;
    display: block;
    float: left;
    margin-right: 6px;
}
.comment-1 i{
    background: url("../images/commit.png") no-repeat;
    background-size: 100% 100%;
}
.comment-2 i{
    background: url("../images/dianzan.png") no-repeat;
    background-size: 100% 100%;
}
.comment-2 .zaned-i{
    background: url("../images/zan2.png") no-repeat;
    background-size: 100% 100%;
}
.jubao i{
    background: url("../images/jubao.png") no-repeat;
    background-size: 100% 100%;
}
.hf-tit{
    font-size:16px;
    color:#222;
    line-height:21px;
}
.hf-tit a{
    color: #2E8CFF;
}
.comment-hf{
    display: none;
    margin-top: 5px;
    width: 100%;
    height: 59px;
    background: url("../images/bg.png") no-repeat;
    background-size: 100% 59px;
    position: relative;
}
.comment-hf input{
    width: 99%;
    height: 50px;
    padding-right: 118px;
    padding-left: 20px;
    border: none;
    display: block;
    position: relative;
    top:6px;
    font-size:14px;
    color: #222;
    background-color: #fff !important;
}
.comment-hf a{
    position: absolute;
    right: 0;
    top:4px;
    width:108px;
    text-align: center;
    display: block;
    height:54px;
    background:linear-gradient(90deg,rgba(255,118,150,1) 0%,rgba(255,26,72,1) 100%);
    background-image: -webkit-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -moz-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -ms-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -o-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    border-radius:0px 4px 4px 0px;
    font-size:18px;
    font-family:MicrosoftYaHei;
    color:rgba(255,255,255,1);
    line-height:54px;
}
.comment-show{
    display: block;
}
.comment-sty{
    background:rgba(238,238,238,1);
    border-radius:6px;
    padding: 14px 20px 15px 20px;
    font-size:16px;
    color:rgba(34,34,34,1);
    line-height:21px;
}
.score-div{
    background:rgba(255,255,255,1);
    width: 420px;
    padding: 30px 40px;
    background: #fff;
    border-radius:8px;
}
.score-text{
    height:150px;
    border-radius:6px;
    border:1px solid rgba(233,233,233,1);
    padding: 15px 20px;
    line-height:19px;
    font-size: 14px;
    color: #222;
    display: block;
    background: #fff !important;
    width: 100%;
}
.score-option{
    text-align: center;
}
.score-option>a{
    display: inline-block;
    height: 50px;
    width: 160px;
    text-align: center;
    font-size:18px;
    line-height: 50px;
    color:rgba(34,34,34,1);
    border-radius:100px;
}
.score-git{
    background:linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -webkit-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -moz-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -ms-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -o-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    color: #fff !important;
}
.score-quxiao{
    background:rgba(255,255,255,1);
    border:1px solid rgba(238,238,238,1);
}
.reason-div-p{
    margin-top: 23px;
    font-size:14px;
    font-weight:bold;
    color:rgba(34,34,34,1);
    line-height:19px;
    margin-bottom: 17px;
}
.reason-div li+li{
    margin-left: 0;
    margin-top: 20px;
}
.flex-layer .register-input>div{
    width: 100px;
    height: 100px;
    margin: 0 20px 20px 0;
}
.flex-layer .register-input>div:nth-child(3n){
    margin: 0 0 20px 0;
}
.flex-title{
    font-size:14px;
    border-radius: 8px 8px 0 0;
    color:rgba(34,34,34,1);
    line-height:22px;
    padding: 20px;
    border-bottom: 1px solid #EEEEEE;
}
.btn-flex{
    display: flex;
    display: -webkit-flex;
}
.btn-flex a{
    flex: 1;
    -webkit-flex: 1;
    font-size:16px;
    color:rgba(34,34,34,1);
    line-height:53px;
    cursor: pointer;
    text-align: center;
}
.btn-flex a:hover{
    color: #2E8CFF;
}
.xiala-i{
    background: url("../images/right.png") no-repeat;
    background-size: 100% 100%;
    width: 10px;
    height: 10px;
    display: inline-block;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    margin-left: 6px;
}
.my-wenzheng{
    position: relative;
    padding-bottom: 30px;
}
.my-wenzheng-box{
    width: 109px;
    background:rgba(255,255,255,1);
    box-shadow:0 1px 6px 0 rgba(0,0,0,0.1);
    border-radius:8px;
    text-align: center;
    position: absolute;
    top: 41px;
    display: none;
    left: -21px;
    z-index: 999;
}
.my-wenzheng-box a{
    font-size:14px;
    padding: 10px;
    display: block;
    font-weight: normal;
    color:rgba(34,34,34,1);
    line-height:19px;
    border-bottom: 1px solid #EEEEEE;
}
.my-wenzheng:hover .my-wenzheng-box{
    display: block;
}
.my-wenzheng-box a:hover{
    display: block;
    font-weight: bold;
}
.head-img{
    width: 120px;
}
.head-img-a,.head-img-a img{
    width: 100%;
    height: 120px;
    border-radius: 100%;
    display: block;
}
.head-img-p{
    margin-top: 16px;
    font-size:14px;
    margin-top: 16px;
    color:rgba(34,34,34,1);
    line-height:19px;
    text-align: center;
}
.infor-list>div{
    padding: 30px 0;
    border-bottom: 1px solid #E1E1E1;
}
.infor-list>div:last-child{
    border-bottom: none;
}
.infor-list-tit{
    font-size:18px;
    font-weight: bold;
    color:rgba(34,34,34,1);
    line-height:24px;
    padding-bottom: 10px;
}
.nickname-fl{
    padding-right: 12px;
    font-size:12px;
    color:rgba(34,34,34,1);
    line-height:44px;
    width: 85px;
    text-align: right;
}
.infor-list-div{
    margin: 0 8px;
    height: 44px;
    width: 340px;
}
.infor-list-div>input{
    border-radius:6px;
    border:1px solid rgba(233,233,233,1);
    display: block;
    width: 100%;
    color: #222;
    height: 100%;
    padding: 0 10px;
    background: rgba(0,0,0,0) !important;
}
.edit-fl{
    width: 72px;
    text-align: center;
    font-size:14px;
    color:rgba(46,140,255,1);
    line-height:44px;
    cursor: pointer;
}
.ask-politics img{
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
}
.ask-politics a{
    padding: 15px 32px;
    border-radius:100px;
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr=#ff2854, endColorstr=#ff6f90);
    background:linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -webkit-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -moz-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -ms-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -o-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    font-size:18px;
    color:rgba(255,255,255,1);
    line-height:24px;
}
.ask-politics i{
    width: 24px;
    height: 24px;
    background: url("../images/btn11.png") no-repeat;
    background-size: 100% 100%;
    display: block;
    float: left;
    margin-right: 10px;
}
.ask-politics{
    position: relative;
}
.interview-ul{
    padding-top: 10px;
}
.interview-ul li{
    float: left;
    margin: 20px 20px 0 0;
    width: 285px;
    height: 189px;
    border-radius:8px;
    position: relative;
}
.interview-ul li:nth-child(4n){
    margin: 20px 0 0 0;
}
.img-maxWidth img{
    max-width: 100% !important;
    height: auto !important;
}
.interview-ul a{
    display: block;
    cursor: pointer;
}
.interview-ul img{
    border-radius:8px;
    width: 100%;
    height: 100%;
    display: block;
}
.interview-title{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size:14px;
    padding: 10px 15px 11px 15px;
    background:linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 100%);
    border-radius:0px 0px 8px 8px;
    color:rgba(255,255,255,1);
    line-height:19px;
    text-shadow:0px 2px 4px rgba(0,0,0,0.5);
}
.interview-po{
    position: absolute;
    right: 10px;
    top:10px;
    background:linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -webkit-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -moz-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -ms-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    background-image: -o-linear-gradient(135deg,rgba(255,123,154,1) 0%,rgba(255,21,68,1) 100%);
    padding: 5px 10px;
    border-radius:2px;
    font-size:12px;
    color:rgba(255,255,255,1);
    line-height:16px;
}
.notice-color{
    background:linear-gradient(135deg,rgba(153,104,218,1) 0%,rgba(124,50,223,1) 100%);
    background-image: -webkit-linear-gradient(135deg,rgba(153,104,218,1) 0%,rgba(124,50,223,1) 100%);
    background-image: -moz-linear-gradient(135deg,rgba(153,104,218,1) 0%,rgba(124,50,223,1) 100%);
    background-image: -ms-linear-gradient(135deg,rgba(153,104,218,1) 0%,rgba(124,50,223,1) 100%);
    background-image: -o-linear-gradient(135deg,rgba(153,104,218,1) 0%,rgba(124,50,223,1) 100%);
}
.review-color{
    background:linear-gradient(135deg,rgba(83,235,224,1) 0%,rgba(0,197,170,1) 100%);
    background-image: -webkit-linear-gradient(135deg,rgba(83,235,224,1) 0%,rgba(0,197,170,1) 100%);
    background-image: -moz-linear-gradient(135deg,rgba(83,235,224,1) 0%,rgba(0,197,170,1) 100%);
    background-image: -ms-linear-gradient(135deg,rgba(83,235,224,1) 0%,rgba(0,197,170,1) 100%);
    background-image: -o-linear-gradient(135deg,rgba(83,235,224,1) 0%,rgba(0,197,170,1) 100%);
}
.department-div>ul,.department-div>div{
    display: none;
}
.commented{
    background:rgba(245,245,245,1);
    border-radius:4px;
    margin-top: 19px;
    padding: 12px 20px;
    font-size:16px;
    font-family:MicrosoftYaHei;
    color:#222222;
    line-height:21px;
}
.commented span{
    color: #2E8CFF;
}
.load-more{
    background: #F6F6F6;
    cursor: pointer;
    width: 100%;
    height: 40px;
    text-align: center;
    font-size: 14px;
    color: #999999;
    line-height: 40px;
}
.load-more:hover{
    color: #ff214e;
}
.no-comment{
    text-align: center;
    padding: 50px 0 20px;
    font-size: 16px;
    color: #999;
}

.slidercaptcha {
    margin: 0 auto;
    width: 314px;
    height: 256px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgb(0 0 0 / 13%);
    margin-top: 40px;
    z-index: 99999;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
}


.card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
}


.slidercaptcha {
    margin: 0 auto;
    width: 314px;
    height: 256px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgb(0 0 0 / 13%);
    margin-top: 40px;
    z-index: 99999;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
}


.slidercaptcha .card-body {
    padding: 3px;
}


.slidercaptcha canvas:first-child {
    border-radius: 4px;
    border: 1px solid #e6e8eb;
}


.slidercaptcha.card .card-header {
    background-image: none;
    background-color: rgba(0, 0, 0, 0.03);
}


.refreshIcon {
    top: -54px;
}

.slidercaptcha.card .card-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
}

.slidercaptcha.card .card-header span {
    flex: 1
}



.top0{ width:100%; height:94px; margin: 0 auto; margin-top:0px;background:url(../images/index_04.jpg);}
.top01{ width:1200px; height:94px; margin: 0 auto; margin-top:0px;background:url(../images/index_04.jpg);}

.top01 a{ color:#000; float:left; margin-left:38px; text-decoration:none; font-size:20px; line-height:55px; background-color:#b81300; font-family:"微软雅黑"}
.top01 a:hover{color:#000; float:left; margin-left:38px; text-decoration:underline; font-size:20px; line-height:55px; background-color:#b81300;font-family:"微软雅黑"}

.topp0{ width:100%; height:150px; margin: 0 auto; margin-top:0px;}
.topp01{ width:1200px; height:150px; margin: 0 auto; margin-top:0px;}


.topf0{ width:100%; height:430px; margin: 0 auto; background-color:#fff;}
.topf01{ width:1200px; font-size:12px; height:250px;line-height:30px; margin: 0 auto; margin-top:0px;background-color:#fff;color:#000;}
.topf01 a{ color:#000; text-decoration:none; font-size:12px; line-height:30px; background-color:#fff; font-family:"微软雅黑"}



.friend_links {
    height: 550px;
    /* background: url(http://hcw.hcwang.cn/footimg/v8_index_20200408_38.png) center no-repeat; */
    background-color: #2E8CFF;
  }
  
  .friend_links .logo {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    padding: 20px 0 10px 0;
  }
  
  .friend_links .line {
    height: 2px;
    font-size: 0px;
    line-height: 0;
    background: url(http://hcw.hcwang.cn/footimg/v8_index_20200408_37.png);
  }
  
  .friend_links .list {
    margin: 20px 0;
  }
  
  .friend_links .list ul {
    overflow: hidden;
  }
  
  .friend_links .list ul li {
    float: left;
    font-size: 14px;
    color: #fff;
    margin: 5px 10px;
  }
  
  .friend_links .list ul li a {
    color: #fff;
  }
  
  .friend_links .product_link {
    display: flex;
    justify-content: space-between;
  }
  
  .friend_links .product_link .f-content {
    width: 102px;
    margin: 35px 0;
    position: relative;
  }
  
  .friend_links .product_link .f-content .pic {}
  
  .friend_links .product_link .f-content .pic img {
    width: 100%;
  }
  
  .friend_links .product_link .f-content .pic::before {
    position: absolute;
    top: -110px;
    left: -4px;
    display: none;
  }
  
  .friend_links .product_link .f-content:hover .pic::before {
    display: block;
  }
  
  .friend_links .product_link .f-content .pic::before img {
    width: 100px;
  }
  
  .friend_links .product_link .content .qswb::before {
    content: url(http://hcw.hcwang.cn/footimg/202101pt.png);
  }
  
  .friend_links .product_link .f-content .qswx::before {
    content: url(http://hcw.hcwang.cn/footimg/202102p.png);
  }
  
  .friend_links .product_link .f-content .xesx::before {
    content: url(http://hcw.hcwang.cn/footimg/202103p.png);
  }
  
  .friend_links .product_link .f-content .wgwb::before {
    content: url(http://hcw.hcwang.cn/footimg/202104p.png);
  }
  
  .friend_links .product_link .f-content .wgwx::before {
    content: url(http://hcw.hcwang.cn/footimg/202105p.png);
  }
  
  .friend_links .product_link .f-content .zztg::before {
    content: url(http://hcw.hcwang.cn/footimg/202106p.png);
  }
  
  .friend_links .product_link .f-content .dylx::before {
    content: url(http://hcw.hcwang.cn/footimg/lx01.png);
  }
  
  .friend_links .product_link .f-content .text {
    font-size: 16px;
    color: #fff;
    text-align: center;
    padding-right: 10px;
  }
  
  .friend_links .product_link .f-content .text a {
    color: #fff;
  }
  
  .friend_links .copyright {
    font-size: 12px;
    text-align: center;
    color: #fff;
    margin: 20px 0 0 0;
    line-height: 32px;
  }
  
  .friend_links .copyright a {
    color: #fff;
  }
  
  @media (max-width: 1400px) {
    .friend_links {
      height: 480px;
    }
  
    .friend_links .logo {
      font-size: 16px;
      margin: 15px 0 10px 0;
    }
  
    .friend_links .list {
      margin: 10px 0;
    }
  
    .friend_links .list ul li {
      font-size: 12px;
      margin: 5px 10px;
    }
  
    .friend_links .product_link .f-content {
      width: 80px;
      margin: 25px 0;
    }
  
    .friend_links .product_link .f-content .text {
      font-size: 14px;
    }
  }