        @charset 'utf-8';
        /* 初始化 */
        
        * {
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: "思源宋体", "微软雅黑", Arial;
            font-size: 16px;
            color: #333;
            line-height: 1.6em;
        }
        
        h1 {
            line-height: 1.3em;
        }
        
        a:hover img,
        img {
            border: none;
        }
        
        /* img {
            vertical-align: middle;
            max-width: 100%;
        } */
        
        ul {
            list-style: none;
        }
        
        input,
        button,
        select,
        span,
        textarea {
            outline: none;
            font-family: "思源宋体", "微软雅黑", Arial;
            font-size: 16px;
            color: #333;
        }
        
        input:focus,
        button:focus,
        select:focus,
        textarea:focus {
            outline: none;
        }
        
        table input,
        table button,
        table select,
        table textarea {
            vertical-align: middle;
        }
        
        textarea {
            resize: none
        }
        
        table {
            border-collapse: collapse;
        }
        
        a {
            text-decoration: none;
            color: #333;
        }
        
        a:hover {
            text-decoration: none;
            color: #CE4245;
        }
        /* span:hover{
            color: #CE4245;
        } */

        /*remove the gray background color from tap, default value is inherit*/
        
      
        /*dt,li没有margin和padding*/
        
        body,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        dl,
        dd,
        p,
        th,
        td,
        form,
        figure {
            margin: 0;
        }
        
        ul,
        ol,
        menu {
            margin: 0;
            padding: 0;
        }
        
        ul {
            list-style-type: none;
        }
        
        img {
            vertical-align: middle;
            border: 0;
        }
        
        table {
            border-collapse: collapse;
            border-spacing: 0;
        }
        
        a {
            background: transparent;
            text-decoration: none;
            -webkit-tap-highlight-color: transparent;
            color: #333;
            transition: all 300ms ease 0s;
        }
        
        i {
            font-style: normal;
        }
        
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 2;
            font-weight: normal;
        }
        
        button,
        input,
        optgroup,
        select,
        textarea {
            border: 0;
            font-family: 'Microsoft Yahei';
        }
        
        button,
        input {
            border-radius: 0;
            padding: 0;
            outline: none;
            margin: 0;
        }
        
        textarea,
        input {
            -webkit-user-modify: read-write-plaintext-only;
            /*Android 下 input focus 消除高亮外框*/
        }
        
        input[type="submit"],
        input[type="reset"],
        input[type="button"],
        button {
            -webkit-appearance: none;
        }
        
        .clear {
            clear: both;
            *zoom: 1;
        }
        
         ::-webkit-input-placeholder {
            color: #999;
        }
        
         :-moz-placeholder {
            color: #999;
        }
        
         ::-moz-placeholder {
            color: #999;
        }
        
         :-ms-input-placeholder {
            color: #999;
        }
        
        /* img {
            max-width: 50%;
        } */
        /**********常用类简写***********/
        
        .w100 {
            width: 100%;
        }
        
        .h100 {
            height: 100%;
        }
        
        .w50 {
            width: 50%;
        }
        
        .ma {
            margin-left: auto;
            margin-right: auto;
        }
        
        .clr {
            display: block;
            clear: both;
            font-size: 1px;
            width: 1px;
            height: 0;
            visibility: hidden;
            overflow: hidden;
        }
        
        .clearfix:after {
            content: "";
            display: block;
            height: 0;
            clear: both;
            visibility: hidden;
        }
        /* only FF */
        
        .ofhidden {
            overflow: hidden;
        }
        
        .ovh {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .ovh2 {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .ovh3 {
            -webkit-line-clamp: 3;
        }
        
        .fa {
            font-family: "Arial";
        }
        
        .fs {
            font-family: "思源宋体";
        }
        
        .z9 {
            z-index: 9;
        }
        
        .overhidden {
            overflow: hidden;
        }
        
        .img100 {
            width: 100%;
            height: 100%;
        }
        
        .imgw100 {
            width: 100%;
            height: auto;
        }
        
        .imgh100 {
            width: auto;
            height: 100%
        }
        
        .imgam {
            width: auto;
            max-width: 100%;
            height: auto;
            max-height: 100%;
        }
        
        .imgvt {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            right: 0;
            margin: auto;
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
        }
        
        .imgvt85 {
            max-height: 85%;
            max-width: 85%;
        }
        
        .vt {
            vertical-align: top;
        }
        
        .vm {
            vertical-align: middle;
        }
        
        .db {
            display: block;
        }
        
        .dib {
            display: inline-block;
            *zoom: 1;
            *display: inline;
        }
        
        .tb {
            display: table;
        }
        
        .tb_cell {
            display: table-cell;
            vertical-align: middle;
        }
        
        .dn {
            display: none;
        }
        
        .fb {
            font-weight: bold;
        }
        
        .rel {
            position: relative;
        }
        
        .abs {
            position: absolute;
        }
        
        .tac {
            text-align: center;
        }
        
        .tal {
            text-align: left;
        }
        
        .tar {
            text-align: right;
        }
        /* 初始化结束 */
        /* 公共 */
        
        .clear {
            clear: both;
            *zoom: 1;
        }
        
        .fl {
            float: left;
        }
        
        .fr {
            float: right;
        }
        
        .w1120 {
            width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        /*  */
        /* 首页 */
        /* 顶部右侧-背景图片 */
        
        .top-rig-bg {
            width: 410px;
            height: 662px;
            background-image: url(../images/bg-02.png);
            background-repeat: no-repeat;
            background-size: 580px 627px;
            position: absolute;
            right: 0;
            top: 0;
            float: right;
            z-index: -999;
        }
        .bg_04{
            width: 100%;
            height: 980px;
            background: url(./bg-04.png) no-repeat;
            position: absolute;
            right: 0;
            top: 0;
            float: right;
            z-index: -999;
            background-size: 100% 980px;
        }
        .bg_05{ 
             width: 100%;
            height: 1375px;
            position: absolute;
            right: 0;
            top: 2160px;
            background: url(./bg_05.png) no-repeat;
            z-index: -999;
            background-size: 100% 1375px;
        }
        /* 头部 */
        
        .ah_header {
            width: 100%;
            height: 220px;
            background-image: url(../images/bg-03.png);
            background-size: 970px 600px;
            background-repeat: no-repeat;
        }
        .header-bg-lef{
                background: none;
        }
        .ah_header .w1120 {
            position: relative;
            height: 210px;
        }
        /* 头部的图标及文字 */
        
        .ah_header .ah_login {
            height: 80px;
            width: 500px;
            margin-left: 0px;
            margin-top: 30px;
        }
        
        .ah_header .ah_login .logs {
            width: 94px;
            height: 96px;
            margin-top: -14px;
        }
        
        .ah_header .ah_login .Group {
            width: 216px;
            height: 92px;
            margin-left: 20px;
            padding-top: 4px;
            box-sizing: border-box;
        }
        /* 头部的搜索框 */
        
        .ah_header .ah_search {
            width: 290px;
            height: 40px;
            line-height: 40px;
            border-radius: 25px;
            overflow: hidden;
            position: relative;
            margin-right: 0px;
            margin-top: 55px;
          background-color: rgba(239, 239, 239, 0.6);
        }
        
        .ah_header .ah_search input {
            border: none;
            height: 40px;
            line-height: 40px;
            padding: 0px 20px;
            width: 230px;
            background: none;
        }
        
        .ah_header .ah_search button {
            width: 30px;
            height: 30px;
            line-height: 30px;
            text-align: center;
            position: absolute;
            right: 8px;
            top: 5px;
            background: #d92229;
            border: none;
            border-radius: 20px;
        }
        .ah_header .ah_search button img{
            width: 22px;
            height: 22px;
        }
        /* 头部的导航栏 */
        
        .ah_header .ah_navs {
            position: absolute;
            width: 1210px;
            left: 20px;
            bottom: 0;
            box-sizing: border-box;
        }
        
        .ah_header .ah_navs ul li {
            width: 120px;
            height: 34px;
            float: left;
            box-sizing: border-box;
            margin-bottom: 20px;
            line-height: 34px;
            text-align: center;
            font-family: "思源宋体", "微软雅黑", Arial;
        }
        
        .ah_header .ah_navs ul li a {
            width: 120px;
            height: 34px;
            display: block;
            font-size: 20px;
            padding-bottom: 20px;
            font-family: "思源宋体", "微软雅黑", Arial;

        }
        
        .ah_header  .ah_navs   > .gs_nav_ul > .ml0 > a:hover  
         {
            color: #fff;
            width: 120px;
            height: 34px;
            background-image: url(../images/ah_navs.png);
            background-repeat: no-repeat;
            text-align: center;
            font-size: 20px;
            font-family: "思源宋体", "微软雅黑", Arial;
        }
        .ah_header  .ah_navs    .gs_nav_ul  .ml0 #navs-list ul li a{
            text-decoration: none;
            background: url(none);
        }
        .ah_header  .ah_navs  .gs_nav_ul  .ml01 >a{
            color: #ffffff;
            background-image: url(../images/ah_navs.png);
            background-repeat: no-repeat;
        }
        .ah_header  .ah_navs  .gs_nav_ul  li >a:hover{
            background-image: url(../images/ah_navs.png);
            background-repeat: no-repeat;
            color: #ffffff;
        }
        .ah_header  .ah_navs  .gs_nav_ul  li  .navs-list ul li a:hover{
            background: none;
        }
        /* 导航下拉框 */
        .ah_navs   #navs-list{
            display: none;
            height: auto;
           background-color: white;
           position: absolute;
           /* left: 0; */
           top: 30px;
           z-index: 999;
           border-radius: 10px;
           box-shadow: 0px 0px 2px 0px rgb(0 20 32 / 10%);
            max-height: 246px;
            overflow: hidden;
        }

        .ah_navs   #navs-list ul{
            width: 170px;
            height: auto;
            margin: 0 auto;
            cursor: pointer;
        }
        .ah_navs  #navs-list ul li{
            width: 170px;
            float: left;
            height: 50px;
            position: relative;
            font-size: 16px;
            text-align: left;
            text-indent: 2em;  
            line-height: 50px;
            margin-bottom: 0;
        }
        .ah_navs     #navs-list ul li span{
            display: block;
            font-size: 16px;
            float: left;
            position: relative;
        }
        .ah_navs     #navs-list ul li a:hover{
            background-color: #e0e0e0;
            color: #333333;
        }
        #navs-list ul li a{
            width: 180px;
            font-size: 16px;
        }
        #navs-list ul li img{
            margin-left:30px ;
        }
        .ah_navs ul li:hover  #navs-list{
            display: block;
        }

        .ah_navs   #navs-list ul li:hover{
            color: red;
        }
        /* 一条黄的通栏 */
        
        .yellow-tong {
            width: 100%;
            height: 8px;
            background-color: #F6DEAF;
        }
        /* 主体部分 */
        /* 主体最上面的图片 */
        
        .section .sec-img {
            width: 1208px;
            height: 160px;
            margin: 0 auto;
            margin-top: 22px;
            cursor: pointer;
        }
        
        .section .sec-img img {
            width: 100%;
            height: 100%;
        }
        /* 轮播图以及文联要闻部分 */
        
        .zhuti {
            width: 1200px;
            height: 502px;
            margin: 0 auto;
            margin-top: 24px;
        }
        /* 左侧的轮播图 */
        
        #banner {
            width: 776px;
            height: 502px;
            box-sizing: border-box;
            float: left;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        
        #banner>#imgBox {
            width: 500%;
            height: 100%;
            display: flex;
            position: absolute;
            left: 0;
            top: 0;
        }
        
        #banner>#imgBox>li {
            flex: 1;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 100px;
            color: #fff;
            box-sizing: border-box;
        }
        
        #banner>#imgBox>li img {
            width: 777px;
            height: 503px;
        }
        
        #banner>#imgBox>li .img-p {
            width: 776px;
            height: 50px;
            float: left;
            position: absolute;
            bottom: 0;
            font-size: 18px;
            line-height: 50px;
            background-color: rgba(0, 0, 0, .5);
            box-sizing: border-box;
        }
        #banner>#imgBox>li  a{
            color: #ffffff;
        }
        #banner>#pointBox {
            width: 200px;
            height: 30px;
            position: absolute;
            right: -50px;
            bottom: 10px;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, .5);
            border-radius: 15px;
            display: flex;
            justify-content: space-evenly;
            align-items: center;
        }
        
        #banner>#pointBox>li {
            width: 10px;
            height: 10px;
            background-color: #fff;
            border-radius: 50%;
            cursor: pointer;
        }
        
        #banner>#pointBox {
            list-style: none;
        }
        
        #banner>#pointBox>li.active {
            background-color: #F7B500;
        }
        
        #banner:hover>div {
            display: flex;
        }
        
        #banner>div {
            width: 30px;
            height: 40px;
            background-color: rgba(0, 0, 0, .2);
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            display: none;
            justify-content: center;
            align-items: center;
            color: #fff;
            font-size: 30px;
            cursor: pointer;
            transition: all .3s linear;
        }
        
        #banner>div:hover {
            background-color: rgba(0, 0, 0, .5);
        }
        
        #banner>div.prevBtn {
            left: 0;
            border-radius: 0 20px 20px 0;
        }
        
        #banner>div.nextBtn {
            right: 0;
            border-radius: 20px 0 0 20px;
        }

        #banner>#imgBox>li a img {
            width: 776px;
            height: 503px;
        }
        /*右侧的文联要闻  */
        
        .zhuti .ask-right {
            width: 422px;
            height: 502px;
            float: right;
            background-color: rgba(249, 247, 240, 0.5);
        }
        
        .zhuti .ask-right .top-imges {
            width: 422px;
            height: 44px;
            /* ../images/bg_title3\ 1.png */
            background-image: url(../images/bg_title3\ 1.png);
            background-repeat: no-repeat;
            margin: 20px 0 0 14px;
            position: relative;
        }
        
        .zhuti .ask-right .top-imges p {
            width: 110px;
            color: #FFFFFF;
            font-size: 18px;
            font-family: "思源宋体", "微软雅黑", Arial;
            text-indent: 1em;
            line-height: 54px;
            font-weight: 600;
            text-align: center;
        }
        
        .zhuti .ask-right .top-imges a {
            position: absolute;
            right: 17px;
            top: 10px;
        }
       
        .zhuti .ask-right .news {
            width: 389px;
            height: 403px;
            margin: 0 17px;
            margin-top: 11px;
        }
        
        .zhuti .ask-right .news p {
            color: #000;
            font-family: "思源宋体", "微软雅黑", Arial;
        }
        
        .zhuti .ask-right .news .tit {
            font-size: 18px;
            font-weight: 530;
        }
        
        .zhuti .ask-right .news .passage {
            color: #666666;
            margin-top: 8px;
            text-indent: 2em;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }
        
        .zhuti .ask-right .news ul li {
            list-style: disc;
            margin: 26px;
            margin-left: 26px;
            width: 382px;
            height: 30px;
            font-family: "思源宋体", "微软雅黑", Arial;
        }
        
        .zhuti .ask-right .news ul li p {
            width: 310px;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
        }
        
        .zhuti .ask-right .news ul li p:hover {
            color: #CE4245;
        }
        /* 网上艺术之家的部分 */
           /* 网上艺术之家的部分 */
           a{text-decoration: none;}
           .main {
             width: 100%;
             height: 660px;
             background-color: #E0E0E0;
             margin-top: 52px;
         }
         
         .main .main-top {
             width: 1200px;
             height: 44px;
             margin: 0 auto;
             padding-top: 50px;
             position: relative;
         }
         /* 协会动态 */
         .main  #news .sy_xhdt{
             /* position: absolute; */
             right: -300px;
             z-index: -999;
         }
      
      .ddd{
         right: 0px !important;
         /* transition:  1.5s ease-in; */
         transition: 0.5s linear;
         z-index: 9 !important;
         -webkit-transform: translateX(-10px);
         -moz-transform: translateX(-10px);
         -ms-transform: translateX(-10px);
         -o-transform: translateX(-10px);
         transform: translateX(-10px);
      }
         .main .banxin .lef .news ul li p a:hover .sy_xhdt{
             right: 0px !important;
             transition: 1s linear;
             z-index: 9;
             -webkit-transform: translateX(-10px);
             -moz-transform: translateX(-10px);
             -ms-transform: translateX(-10px);
             -o-transform: translateX(-10px);
             transform: translateX(-10px);
         }
         .main .main-lef-img {
             width: 134px;
             height: 60px;
             float: left;
             background-image: url(../images/bg_title3\ 1.png);
             background-repeat: no-repeat;
         }
         
         .main .main-lef-img p {
             text-align: center;
             line-height: 60px;
             font-size: 20px;
             font-family: "思源宋体", "微软雅黑", Arial;
             color: #FFF;
             font-weight: bold;
         }
         /*网上文艺家之家  */
         
         .main .main-top .main-img {
             width: 298px;
             height: 54px;
             /*  ../images/bg_titile4\ 1.png */
             background-image: url(../images/bg_titile4\ 1.png);
             background-repeat: no-repeat;
             float: right;
             margin-right: 240px;
             background-size: 200px 54px;
         }
         
         .main .main-top .main-img p {
             text-indent: 1.5em;
             line-height: 57px;
             color: #FFF;
             font-weight: bold;
             font-size: 20px;
             font-family: "思源宋体", "微软雅黑", Arial;
             float: left;
         }
         
         .main .main-top .main-img a {
             position: absolute;
             right: 0;
             margin-top: 10px;
         }
         
         .main .banxin {
             width: 1200px;
             height: 488px;
             margin: 0 auto;
             margin-top: 22px;
         }
         /* 版心里面左边的区域 */
         
         .main .banxin .lef {
             width: 672px;
             height: 488px;
             background-color: #fff;
             float: left;
             position: relative;
         }
         
         .main .banxin .lef .news {
             width: 310px;
             height: 180px;
             margin: 0 0 0 16px;
             margin-top: 10px;
             box-sizing: border-box;
             float: left;
             overflow: hidden;
         }
         
         .main .banxin .lef .news p {
             padding-top: 12px;
             color: #000;
             font-family: "思源宋体", "微软雅黑", Arial;
         }
         
         .main .banxin .lef .news .tit {
             font-size: 18px;
             font-weight: 700;
             color: #CA263A;
         }
         
         .main .banxin .lef .news .passage {
             color: #666666;
             margin-top: 8px;
             padding: 0 14px;
             text-indent: 2em;
         }
         .main .banxin .lef .news_ul{float: left; width: 660px;}
         .main .banxin .lef .news_ul li {
             list-style: circle;
             margin: 16px 0 16px 0;
             margin-left: 50px;
             /* width: 660px; */
             height: 30px;
             font-family: "思源宋体", "微软雅黑", Arial;
             color: #333333;
             box-sizing: border-box;
         }
         
         .main .banxin .lef .news_ul li p {
             width: 470px;
             text-overflow: ellipsis;
             white-space: nowrap;
             overflow: hidden;
             float: left;
         }
         .main .banxin .lef .news_ul li span{float: right;}
         
         .main .banxin .lef .news ul li p:hover {
             color: #CE4245;
         }
         /* 版心里面中间的区域 */
         
         .main .banxin .cen {
             width: 332px;
             height: 200px;
             background-color: #fff;
             float: left;
             padding-top: 12px;
             padding-bottom: 22px;
             padding-left: 20px;
             box-sizing: border-box;
         }
         
         .main .banxin .cen img {
             width: 100%;
             height: 100%;
         }
         /* 版心里面右边的区域 */
         
         .main .banxin .rig {
             width: 522px;
             height: 488px;
             background-color: #EBEBEB;
             float: right;
             box-shadow:0 0 24px #808080;
             z-index: 99999;
         }
         
         .main .banxin .rig ul {
             width: 522px;
             height: 488px;
             background: url("../images/banxin-rig-bg.png") center center no-repeat;
         }
         
         .main .banxin .rig ul li {
             width: 16px;
             height: 488px;
             margin-left: 16px;
             float: left;
             overflow: hidden;
             font-weight: 800;
             cursor: pointer;
             font-family: "思源宋体", "微软雅黑", Arial;
         }
         
         .main .banxin .rig ul li a {
             width: 16px;
             padding: 2px 0;
             height: auto;
             display: block;
         }
         
         .main .banxin .rig ul li:hover {
             color: red;
         }
        /* 基层动态 */
        
        .basic {
            width: 100%;
            height: 670px;
            margin-top: 0;
            background-image: url(../images/basic-img.png);
            background-repeat: no-repeat;
            background-size: cover;
        }
        /* 基层动态的中心 */
        
        .basic .zhongxin {
            width: 1200px;
            height: 610px;
            margin: 0 auto;
        }
        
        .basic .zhongxin .basic-top {
            width: 814px;
            height: 60px;
            padding-top: 48px;
            float: left;
        }
        
        .basic .zhongxin .basic-top #basic-top-ul {
            width: 814px;
        }
        
        .basic .zhongxin .basic-top #basic-top-ul .first {
            width: 112px;
            height: 60px;
            font-family: "思源宋体", "微软雅黑", Arial;
            font-size: 20px;
            color: #333333;
            font-weight: bold;
            text-align: center;
            line-height: 60px;
            float: left;
        }
        
        .basic .zhongxin .basic-top #basic-top-ul .on {
            width: 112px;
            height: 60px;
            background-image: url(../images/bg_title3\ 1.png);
            background-repeat: no-repeat;
        }
        /* .basic .zhongxin .basic-top #basic-top-ul :hover .first::after,
 .basic .zhongxin .basic-top #basic-top-ul:hover .first::before */
        
        .basic .zhongxin .basic-top #basic-top-ul .first:hover {
            width: 112px;
            height: 60px;
            background-image: url(../images/bg_title3\ 1.png);
            background-repeat: no-repeat;
        }
        
        .basic .zhongxin .basic-top #basic-top-ul .first:hover a,
        .basic .zhongxin .basic-top #basic-top-ul .on a {
            color: #FFFFFF;
        }
        
        .basic .zhongxin .basic-top #basic-top-ul .banner_now {
            background-image: url(../images/bg_title3\ 1.png);
            background-repeat: no-repeat;
        }
        
        .basic .zhongxin .basic-top #basic-top-ul .banner_now a {
            color: #ffffff;
        }
        
        .basic .zhongxin .more {
            position: absolute;
            right: 0px;
            bottom: -43px;
        }
        /*基层动态导航栏下面的主体框  */
        
        .basic .zhongxin .basic-sec {
            width: 814px;
            height: 496px;
            background-color: #fff;
            float: left;
        }
        /* 基层主体里面的图片 */
        
        .basic .zhongxin .basic-sec .basic-sec-img {
            width: 240px;
            height: 150px;
            padding: 18px 18px;
            float: left;
        }
        /*  基层动态导航栏下面的主体框 */
        
        .basic .zhongxin .basic-sec .basic-sec-tit {
            width: 516px;
            height: 150px;
            float: left;
        }
        
        .basic .zhongxin .basic-sec .basic-sec-tit .p-one {
            color: #333;
            font-family: "思源宋体", "微软雅黑", Arial;
            font-size: 20px;
            font-weight: bold;
            padding-top: 20px;
            ;
        }
        
        .basic .zhongxin .basic-sec .basic-sec-tit .p-two {
            padding-top: 18px;
            font-family: "思源宋体", "微软雅黑", Arial;
        }
        /* 基层动态栏下面的列表页 */
        
        .basic-sec .basic-sec-list {
            width: 814px;
            height: 300px;
            float: left;
            position: relative;
            overflow: hidden;
        }
        
        .basic-sec .basic-sec-list ul li {
            width: 814px;
            height: 24px;
            font-family: "思源宋体", "微软雅黑", Arial;
            font-weight: bold;
            font-size: 16px;
            position: relative;
            padding: 8px 0;
        }
        
        .basic-sec .basic-sec-list ul li p {
            float: left;
            width: 620px;
            padding-left: 18px;
        }
        
        .basic-sec .basic-sec-list ul li span {
            position: absolute;
            right: 18px;
            font-family: "思源宋体", "微软雅黑", Arial;
            font-weight: bold;
        }
        /* 右侧的公示公告 */
        
        .basic .zhongxin .notice {
            width: 373px;
            height: 62px;
            float: right;
            position: relative;
            top: -65px;
        }
        
        .basic .zhongxin .notice p {
            width: 140px;
            height: 62px;
            background-image: url(../images/bg_title3\ 1.png);
            background-repeat: no-repeat;
            /* text-align: center; */
            text-indent: 1.3em;
            line-height: 56px;
            color: #FFF;
            font-size: 18px;
            float: left;
            font-family: "思源宋体", "微软雅黑", Arial;
            font-weight: bold;
        }
        
        .basic .zhongxin .notice a {
            float: right;
            margin-top: 20px;
        }
        /* 右侧的公示公告栏的列表 */
        
        .basic .zhongxin .notice-list {
            width: 372px;
            height: 260px;
            background-color: #fff;
            float: right;
            position: relative;
            top: -62px;
            overflow: hidden;
        }
        
        .basic .zhongxin .notice-list ul li {
            padding: 12px;
            overflow: hidden;
        }
        
        .basic .zhongxin .notice-list ul li p {
            float: left;
            width: 238px;
            height: 20px;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
            font-family: "思源宋体", "微软雅黑", Arial;
            padding-left: 8px;
        }
        
        .basic .zhongxin .notice-list ul li span {
            position: absolute;
            right: 14px;
            font-family: "思源宋体", "微软雅黑", Arial;
        }
        /* 右侧的部门预决算 */
        
        .basic .zhongxin .branch {
            float: right;
            width: 372px;
            height: 60px;
            position: relative;
            top: -50px;
            box-sizing: border-box;
        }
        
        .basic .zhongxin .branch p {
            width: 140px;
            height: 60px;
            background-image: url(../images/bg_title3\ 1.png);
            background-repeat: no-repeat;
            text-align: center;
            line-height: 60px;
            color: #FFF;
            font-size: 18px;
            font-weight: 500;
            float: left;
            font-family: "思源宋体", "微软雅黑", Arial;
        }
        
        .basic .zhongxin .branch a {
            float: right;
            margin-top: 20px;
        }
        /* 右侧的部门预决算的列表 */
        
        .basic .zhongxin .branch-list {
            width: 372px;
            height: 156px;
            background-color: #fff;
            float: right;
            position: relative;
            top: -44px;
            overflow: hidden;
        }
        
        .basic .zhongxin .branch-list ul li {
            height: 20px;
            padding: 10px;
            font-family: "思源宋体", "微软雅黑", Arial;
        }
        
        .basic .zhongxin .branch-list ul li p {
            float: left;
            width: 238px;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
            padding-left: 8px;
        }
        
        .basic .zhongxin .branch-list ul li span {
            position: absolute;
            right: 14px;
            font-family: "思源宋体", "微软雅黑", Arial;
        }
        /* 文艺陇军 */
        
        .nav {
            width: 1200px;
            height: 260px;
            margin: 0 auto;
            margin-top: 30px;
        }
        
        .nav .nav-top {
            width: 1200px;
            height: 60px;
            float: left;
        }
        
        .nav .nav-top p {
            width: 134px;
            height: 60px;
            background-image: url(../images/bg_title3\ 1.png);
            background-repeat: no-repeat;
            text-align: center;
            line-height: 60px;
            color: #FFF;
            font-size: 18px;
            float: left;
            font-family: "思源宋体", "微软雅黑", Arial;
        }
        
        .nav .nav-top span {
            float: right;
            margin-top: 20px;
        }
        /*头部开始*/
        /* .bodyCon08{
	background:none;
	float: left;
	margin-left: 50px;
}
.bodyCon08 .students{
	width:1200px;
	height:175px;
	position:relative;
}
.bodyCon08 .students p.PP{
	width:510px;
	height:50px;
	font-size:16px;
	color:#333;
	text-align:center;
	position:absolute;
	top:60px;
	left:300px;
}
#four_flash{
	position:relative;
	width:1200px;
	height:175px;
	position:absolute;
}
#four_flash .flashBg{
	width: 1130px;
	height: 225px;
	position:relative;
	overflow:hidden;
}
#four_flash .flashBg ul.mobile{
	width:2000%;
	height:215px;
	position:absolute;
	top:15;
	left:0;
}
#four_flash .flashBg ul.mobile li{
	float:left;
	width:151px;
	height:175px;
	padding-top:40px;
	color:#6C6E85;
	margin-right: 11px;
}

#four_flash .flashBg ul.mobile li  img{
	width: 151px;
	height:138px;
	display:block;
}

#four_flash .flashBg ul.mobile li p{
	text-indent: 1em;
	width: 151px;
	height: 37px;
	margin-top: 10px;
	font-family: "思源宋体","微软雅黑" ,Arial;
	font-size: 13px;
}


#four_flash .but_left{
	width:29px;
	height:29px;
	position:absolute;
	top:95px;
	left:-35px;
	cursor: pointer;
}
#four_flash .but_right{
	width:29px;
	height:29px;
	position:absolute;
	top:95px;
	right:20px;
	cursor: pointer;
} */
        
        .yara_gw {
            width: 1220px;
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .yara_gw .hd {
            width: 28px;
            height: 28px;
            position: absolute;
            left: 0px;
            top: 90px;
            z-index: 999;
            cursor: pointer;
            background: url("../images/nav-lef.png") no-repeat;
        }
        
        .yara_gw .hdd {
            width: 28px;
            height: 28px;
            float: left;
            position: relative;
            left: 1190px;
            top: -125px;
            background: url("../images/nav-rig.png") no-repeat;
            cursor: pointer;
        }
        /* .yara_gw .hd .prev {
    width: 29px;
    height: 29px;
}

.yara_gw .hd .next {
    width: 29px;
    height: 29px;
} */
        
        .yara_gw .bd {
            margin-top: 24px;
            margin-left: 34px;
        }
        
        .yara_gw .bd ul {
            overflow: hidden;
            zoom: 1;
            width: 1704px;
            height: 290px;
            position: relative;
        }
        
        .yara_gw .bd ul li {
            margin: 0 5.5px;
            float: left;
            _display: inline;
            overflow: hidden;
            text-align: center;
        }
        
        .yara_gw .bd ul li .pic {
            width: 150px;
            height: 146px;
            text-align: center;
        }
        
        .yara_gw .bd ul li .pic img {
            width: 100%;
            height: 100%;
            display: block;
        }
        
        .yara_gw .bd ul li .title {
            height: 40px;
            line-height: 45px;
        }
        .yara_gw .bd ul li .title a p{
            width: 150px;
            overflow: hidden;
        }

        /* 文艺家 */
        .wyj{
            width: 1200px;
            height: 400px;
            margin: 0 auto;
            margin-top: 30px;
        }
        .wyj_top{
            width: 1200px;
            height: 60px;
            margin: 0 auto ;

        } 
        .wyj .wyj_top p {
            width: 134px;
            height: 60px;
            background-image: url(../images/bg_title3\ 1.png);
            background-repeat: no-repeat;
            text-align: center;
            line-height: 60px;
            color: #FFF;
            font-size: 18px;
            float: left;
            font-family: "思源宋体", "微软雅黑", Arial;
            font-weight: bold;
        }
        
        .wyj .wyj_top span {
            float: right;
            margin-top: 20px;
        }
        /* 文艺家主体 */
        .wyj_sec{
            width: 1200px;
            height: 334px;
        }
        /* 文艺家左侧的盒子 */
        .wyj_sec   .wyj_lef{
            float: left;
            width: 540px;
            height: 334px;
        }
        /* 文艺家右侧的盒子 */
        .wyj_sec  .wyj_rig{
            float: right;
            width: 630px;
            height: 334px;
        }
        .videolist:hover{ cursor: pointer; }
        .wyj_sec  .wyj_rig   .wyj_rig_box{
            width: 200px;
            height: 150px;
            float: left;
            margin-right: 10px;
            padding-bottom: 18px;
        }
        .wyj_sec  .wyj_rig   .wyj_rig_box img{
            width: 200px;
            height: 112px;
        }
        .wyj_sec  .wyj_rig  ul li{position: relative;}
        .wyj_sec  .wyj_rig  ul li .videoed { display:none; width:50px; height:50px; position: absolute; left:40%; top:20%; z-index:99; border-radius:100%; }
        .wyj_sec  .wyj_rig p{
            font-size: 14px;
            font-weight: bold;
            line-height:20px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2; /* 这里是超出几行省略 */
        }


        /* 网上展厅 */
        
        .hall {
            width: 1200px;
            height: 1080px;
            margin: 0 auto;
            margin-top: 50px;
        }
        /* 左侧网上展厅 */
        
        .hall-lef {
            width: 1200px;
            height: 350px;
            margin: 0 auto;
        }
        
        .hall-lef .hall-lef-top {
            width: 1200px;
            height: 60px;
            position: relative;
        }
        
        .hall-lef .hall-lef-top p {
            width: 134px;
            height: 60px;
            background-image: url(../images/bg_title3\ 1.png);
            background-repeat: no-repeat;
            text-align: center;
            line-height: 60px;
            color: #FFF;
            font-size: 18px;
            float: left;
            font-family: "思源宋体", "微软雅黑", Arial;
            font-weight: bold;
        }
        
        .hall-lef .hall-lef-top span {
            margin-top: 20px;
            float: left;
            position: absolute;
            right: 0;
        }
        
        .hall-lef .hall-sec {
            width: 1200px;
            height: 270px;
            float: left;
            margin: 0 auto;
            margin-top: 30px;
            box-sizing: border-box;
        }
        
        .hall-lef .hall-sec ul {
            width: 1200px;
            height: 270px;
            float: left;
            margin-left: 30px;
        }
        
        .hall-lef .hall-sec ul li {
            width: 270px;
            height: 270px;
            background-color: #fff;
            float: left;
            box-sizing: border-box;
            margin-right: 16px;
        }
        
        .hall-lef .hall-sec ul li .hall-sec-a {
            width: 270px;
            height: 180px;
        }
        
        .hall-lef .hall-sec ul li img {
            width: 100%;
            height: 100%;
        }
        
        .hall-lef .hall-sec ul li p {
            height: 55px;
            font-family: "思源宋体", "微软雅黑", Arial;
            font-weight: bold;
            color: #000000;
            box-sizing: border-box;
            font-size: 18px;
            margin-top: 12px;
            margin-left: 12px;
        }
        /* 右侧甘肃文艺资源库 */
        
        .hall-rig {
            width: 1200px;
            height: 670px;
            margin-top: 10px;
        }
        
        .hall-rig .hall-rig-top {
            width: 1200px;
            height: 60px;
            position: relative;
        }
        
        .hall-rig .hall-rig-top p {
            width: 210px;
            height: 60px;
            background-image: url(../images/bg_titile4\ 1.png);
            background-repeat: no-repeat;
            text-align: center;
            line-height: 60px;
            color: #FFF;
            font-size: 18px;
            float: left;
            font-family: "思源宋体", "微软雅黑", Arial;
            font-weight: bold;
        }
        
        .hall-rig .hall-rig-top span {
            margin-top: 20px;
            float: left;
            position: absolute;
            right: 0;
        }
        
        .hall .hall-rig .hall-rig-sec {
            width: 1200px;
            height: 480px;
            margin-top: 12px;
        }
        /* 甘肃文艺资源库的图片部分 */
        
        .hall-rig .hall-rig-sec .hall-ul-top {
            width: 1200px;
            height: 480px;
            float: left;
            box-sizing: border-box;
            margin-right: 12px;
            margin-bottom: 10px;
        }
        
        .hall-rig .hall-rig-sec .hall-ul-top ul {
            float: left;
        }
        
        .hall-rig .hall-rig-sec .hall-ul-top .hall-ul-lef {
            margin-right: 12px;
        }
        
        .hall-rig .hall-rig-sec .hall-ul-top .hall-ul-lef li {
            width: 432px;
            height: 214px;
            margin-bottom: 26px;
        }
        
        .hall-rig .hall-rig-sec .hall-ul-top .hall-ul-lef .two {
            width: 432px;
            height: 234px;
            margin-bottom: 16px;
        }
        
        .hall-rig .hall-rig-sec .hall-ul-top li img {
            width: 100%;
            height: 100%;
        }
        
        .hall-rig .hall-rig-sec .hall-ul-top .hall-ul-cen {
            width: 356px;
            height: 482px;
            margin-right: 26px;
            margin-left: 12px;
            box-sizing: border-box;
        }
        
        .hall-rig .hall-rig-sec .hall-ul-top .hall-ul-cen .one {
            width: 356px;
            height: 306px;
        }
        
        .hall-rig .hall-rig-sec .hall-ul-top .hall-ul-cen .two {
            width: 356px;
            height: 140px;
        }
        
        .hall-rig .hall-rig-sec .hall-ul-top .hall-ul-cen li {
            margin-bottom: 27px;
        }
        /* 友情链接 */
        
        .blogroll {
            width: 1200px;
            height: 40px;
            margin: 0 auto;
            margin-top: 50px;
            box-sizing: border-box;
        }
        
        .blogroll h3 {
            width: 78px;
            height: 40px;
            color: #333333;
            line-height: 40px;
            margin-right: 8px;
            float: left;
            font-weight: bold;
        }
        .blogroll ul li #lianjie{
            padding-left: 10px;
        }

        .blogroll ul li img {
          right: 2px;
          top: 16px;
          position: absolute;
        }
        /* .sublinks ul{min-height: 100px;} */
        .links{position: relative; }
        .links .linksheader{color: #666;}
        .links .sublinks{position: absolute;left: 126px;top: 20px;background: #f9f9f9;width: 942px;top: 58px;border: 1px solid #666;display: none;}
        .links .sublinks ul{padding: 22px 84px 0 26px;display: none; list-style: none; height: auto;}
        .links .sublinks ul li{height: 40px;margin-right: 28px;float: left;}
        .links .sublinks ul li a{font-size: 14px; text-decoration: none; color: #000;}
        .links .sublinks ul li a:hover{color:#fa7b1e; text-decoration: none;}
        .links-item {float: left;margin:0 40px;position: relative;z-index: 1;}
        .links-item.hover{border-bottom-color: transparent; }
        .links-item .bar{position: absolute;height: 19px;background:#f9f9f9;position: absolute;width: 100%;border: 1px solid #f9f9f9;margin-left: -1px;left: 0;top: 38px;
       border-left-color:#666 ;
       border-right-color:#666 ;
       display: none;
       border-top: 0;
       }

        .links{position: relative;}
        .links-item .links-item-sub{position: absolute;width: 1068px;border: 1px solid #666;left: 15px;top: 56px;background: #f9f9f9;}
        .links-item{height: 38px;border: 1px solid #666;line-height: 38px;cursor: pointer;box-sizing: content-box; padding: 0 15px;} 
        .links-item .linkarray{display: inline-block;vertical-align: middle;margin-left: 8px;position: relative;top: -2px;}
        .links-item.hover{border-bottom-color: transparent;}
      
        /* 一条黄色的通栏 */
        
        #botto {
            margin-top: 24px;
        }
        /* 底部 */
        .di {
            width: 100%;
            background-image: url(../images/footer-img.png);
            background-repeat: no-repeat;
            background-size: cover;
            background-color: #ececec;
        }
        .dii{
            background-image: none;
            border-top: 2px solid #c8c8c8;
        }  
        .footer {
            width: 1200px;
            height: 170px;
            margin: 0 auto;
        }
        /*  底部左侧 */
        
        .footer .footer-lef {
            width: 476px;
            height: 104px;
            margin-left: 72px;
            float: left;
            margin-top: 24px;
        }
        
        .footer .footer-lef p {
            color: #333333;
            font-family: "思源宋体", "微软雅黑", Arial;
            margin: 4px 0;
        }
        /* 底部右侧 */
        
        .footer .footer-rig {
            width: 300px;
            height: 130px;
            float: right;
            box-sizing: border-box;
            margin-top: 24px;
        }
        
        .footer .footer-rig .one {
            width: 140px;
            height: 130px;
            float: left;
        }
        
        .footer .footer-rig .one div img {
            margin-left: 20px;
        }
        
        .footer .footer-rig .one div p {
            width: 140px;
            height: 26px;
            line-height: 44px;
            margin-top: 28px;
            font-family: "思源宋体", "微软雅黑", Arial;
            font-size: 14px;
        }
        
        .footer .footer-rig .two {
            width: 126px;
            height: 130px;
            float: left;
        }
        
        .footer .footer-rig .two div img {
            margin-left: 30px;
        }
        
        .footer .footer-rig .two div p {
            width: 126px;
            height: 40px;
            line-height: 44px;
            margin-left: 14px;
            font-family: "思源宋体", "微软雅黑", Arial;
            font-size: 14px;
        }



        /* 文代会 */
.wendai{
    height: 1132px;
    background-color: #EBEBEB;
}






        /* 面包屑导航 */
.p-breadcrumb {
    overflow: hidden;
  }
  .p-breadcrumb .p-breadcrumb-center {
    padding: 16px 0;
    width: 1200px;
    box-sizing: border-box;
    margin: 0 auto;
  }
  .p-breadcrumb .p-breadcrumb-center .p-breadcrumb-ul .p-breadcrumb-li {
    display: inline-block;
    vertical-align: baseline;
    font-size: 16px;
    color: #333333;
    margin-right: 8px;
  }
  .p-breadcrumb .p-breadcrumb-center .p-breadcrumb-ul .p-breadcrumb-li:not(:first-child) {
    position: relative;
  }
  /* .p-breadcrumb .p-breadcrumb-center .p-breadcrumb-ul .p-breadcrumb-li:not(:first-child)::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 5px;
    border-color: transparent transparent transparent #231815;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
  } */
  .p-breadcrumb .p-breadcrumb-center .p-breadcrumb-ul .p-breadcrumb-li.active {
    color: #E11A00;
  }
  .p-breadcrumb .p-breadcrumb-center .p-breadcrumb-ul .p-breadcrumb-li.active::after {
    border-color: transparent transparent transparent #E11A00;
  }

  /* 文代会-中心导航 */
  .daohang{
      width: 220px;
      height: 34px;
      margin: 0 auto;
      /* background-color: red; */
  }
  .daohang .daohang-lef{
      width: 28px;
      height: 34px;
      float: left;
  }
  .daohang .daohang-lef img{
    width: 100%;
    height: 100%;
  }
  .daohang p{
      width: 160px;
      float: left;
      padding: 6px 0px ;
     color: #333333;
     font-size: 22px; 
     font-weight: bold;
     text-align: center;
  }
  .daohang .daohang-rig{
      float: right;
      width: 28px;
      height: 34px;
  }
/* 导航条 */
 .nav-bar{
    width: 1200px;
    height: 24px;
    margin: 0 auto;
    background-image: url(./nav-bar.png);
    background-repeat: no-repeat;
    margin-top: 30px;
  }

   .wendai-ul{
      width: 1200px;
      height: 780px;
      margin: 0 auto;

  }
   .wendai-ul li{
      width: 1200px;
      height: 66px;
      line-height: 66px;
      color: #333333;
      background-color: #fff;
      margin-top: 11px;
  }
   .wendai-ul li .p1{
      width: 1058px;
      float: left;
      padding-left:  24px; 
      overflow: hidden;    
  }
   .wendai-ul li a:hover{
      color: red;
  }

  /* 文化资源 */
  /* 地区 */
  .area-box{
      width: 1200px;
      margin: 0 auto;
  }
  .area-hezi{
    width: 250px;
    height: 50px;
    background: url(./qikan-nav-top.png) no-repeat;
    background-size: 250px 50px;
    margin-top: 22px;
    margin-bottom: 10px;
  }
  .area-hezi ul{
      height: 200px;
      position: relative;
  }
 #area{
      width: 210px;
      height: 50px;
        font-weight: bold;
        padding-left: 8px; 
        box-sizing: border-box;
        margin-left: 20px;

  }
 #list1 li, #area .content1{
      text-align: center;
      line-height: 40px;
  }
  #text1{	
	line-height: 60px;
	float: left;
	display: inline-block;
	color: #c3c3c3;
	width: 254px;
	text-align: center;
    /* position:relative; */
}

#list1{
	background: #c3c3c3;
	text-align: center;
	width: 254px;
    height: 160px;
    overflow: auto;
	list-style: none;
	line-height: 60px;
	border-radius: 5px;
	position: absolute;
	left:2px;
    top: 23%;
	z-index: 99999;
}

  #text1:hover ~ #list1{
	top: 23%;
	transition-duration: 0.5s;
    display: block !important;
}
#list1:hover{
	/* top: 488px; */
    display: block !important;
}
.content1:hover{
	background: #Ffffff;
	border-radius: 5px;
}

 #text1 b{
	border-style: solid;
	border-width: 5px;
	border-color: black transparent transparent transparent;
	position: relative;
	top: 13px;
	left: 2px;
}





  .wendai .wendai-ul li .p2{
    padding-left:  6px; 
}

.wendai .wendai-ul li .p2 img{
    width: 24px;
    height: 64px;
}
#area option{
    height: 30px;
}
/* 新闻详情页 */
  .new-list{
    background-color: #EBEBEB;
}
  .new-list .new-list-top{
      width: 1200px;
      height: 120px;
      margin: 0 auto;
      padding-top: 20px;
  }
  .new-list .new-list-top .p1{
        width: 100%;
        height: 24px;
        font-size: 22px;
        font-weight: bold;
        color: #333333;
        margin: 0 auto;
        padding-top: 10px;
        text-align: center;
  }
  .new-list .new-list-top .p2{
      width:100%;
      height: 30px;
      margin: 0 auto;
      margin-top:60px;
      color: #000000;
      text-align: center;
  }
  .new-list .new-list-top  .p2 span{
    color: #000000;
  }
  .new-list .new-list-top .p2 .s2{
      /* margin-left: 240px; */
  }
  .new-list .new-list-top .p2 .s3{
      margin-left: 70px;
  }

  /* 新闻详情页--内容 */
  .new-content{
      width: 1200px;
      height: auto;
      margin: 0 auto;
      text-indent: 2em;
      color: #000;
      padding-bottom: 50px;
  }
    /* 顶部-内容   */
  .new-content .new-content-top{
      height: 164px;

  }
  .new-content  p{
      color: #000;
  }
  .new-content .new-content-top p,
  .new-content .new-content-cen p,
  .new-content .new-content-bot p {
     padding: 14px 0;
     margin-left: 64px;
      color: #000;
      font-size: 16px;
  }
  /* 中部-内容 */
  .new-content .new-content-cen{
      margin-top: 50px;
  }
 .new-content .new-content-cen .p3 span{
     display: block;
    padding-left: 65px;
    color: #000;
    font-size: 16px;
 }
 .new-content .new-content-cen .p3 .s1{
     margin-top: 12px;
 }
    /* 底部--内容 */
 .new-content .new-content-bot p{
    text-indent: 2em;
 }



 /* 协会新闻-及成员结构-更多 */
    .member{
        height: auto;
        background-color: #EBEBEB;
    }
    .member .member-daohang{
        padding: 56px 0;
    }


    .member .member-sec-one{
        width: 1200px;
        height: 306px;
        margin: 0 auto;
        background: url(./member-sec.png) no-repeat;
        padding: 40px 40px;
        box-sizing: border-box;
        margin-top: 14px;
    }
    .member .member-sec-one .member-sec-top{
        width: 1120px;
        height: 48px;
        position: relative;
    }
    .member .member-sec-one .member-sec-top .p1{
        font-size: 16px;
    }
    .member .member-sec-one .member-sec-top .p2{
       position: absolute;
       top: 49%;
    }
    .member .member-sec-one .member-sec-top .p33{
        width: 28px;
        height: 17px;
        background: url(../images/member-sec-one-p2.png) no-repeat;
        position: absolute;
        right: 89%;
        bottom:4px;
    }
    .member .member-sec-one .member-sec-top .p3{
        width: 1008px;
        height: 1px;
        background: url(../images/member-sec-one-p3.png)no-repeat;
        background-size: 1008px 1px;
        position: absolute;
        right: 0%;
        bottom: 14px;
    }
    .member .member-sec-one .member-sec-top:hover{
        color: red;
    }
    .member .member-sec-one .member-sec-top:hover .p33{
        background: url(./member-sec-one-p2-hov.png) no-repeat;
    }
    .member .member-sec-one .member-sec-top:hover .p3{
        background: url(./member-sec-one-p3-hov.png) no-repeat;
    }

    .member .member-sec-one  .p4{
        margin-top: 34px;
    }

    .member .member-sec-one  .p5{
        line-height: 20px;
        margin-top: 42px;
        cursor: pointer;
    }


    .member-sec-two{
        width: 1200px;
        height: 306px;
        margin: 0 auto;
        background: url(./member-sec.png) no-repeat;
        padding: 40px 40px;
        box-sizing: border-box;
        margin-top: 14px;
    }
    .member-sec-two .member-sec-two-img{
        width: 440px;
        height: 230px;
        float: left;
    }
    .member-sec-two .member-sec-two-img img{
        width: 100%;
        height: 100%;
    }

    .member .member-sec-two .member-sec-two-rig{
        width: 630px;
        margin-left: 30px;
        float: left;
    }
    .member .member-sec-two .member-sec-top{
        width: 660px;
        height: 48px;
        position: relative;
        
    }
    .member .member-sec-two .member-sec-top .p1{
        font-size: 16px;
    }
    .member .member-sec-two .member-sec-top .p33{
        width: 28px;
        height: 16px;
        background: url(../images/member-sec-one-p2.png) no-repeat;
        position: absolute;
        right: 80%;
        bottom: -16px;
    }
    .member .member-sec-two .member-sec-top .p3{
        width: 661px;
        height: 1px;
        background: url(../images/member-sec-one-p3.png)no-repeat;
        background-size: 516px 1px;
        position: absolute;
        right: -20%;
        bottom: -8px;
    }
    .member .member-sec-two .member-sec-top:hover{
        color: red;
    }
    .member .member-sec-two .member-sec-top:hover .p33{
        background: url(./member-sec-one-p2-hov.png) no-repeat;
    }
    .member .member-sec-two .member-sec-top:hover .p3{
        background: url(./member-sec-one-p3-hov.png) no-repeat;
        background-size: 536px 1px;
    }

    .member .member-sec-two  .p4{
        margin-top: 34px;
    }

    .member .member-sec-two  .p5{
        line-height: 20px;
        margin-top: 42px;
        cursor: pointer;
    }



    /* 文联概况 */
    .general{
        /* height: 2800px; */
        height: auto;
        background-color: #EBEBEB;
    }
    .general .general-nav{
        width: 1200px;
        height: 56px;
        margin: 0 auto;
        margin-top: 94px;
    }
    .general .general-nav ul{
        width: 964px;
        height: 54px;
        margin: 0 auto;


    }
    .general .general-nav ul li{
        /* width: 160px; */
        height: 54px;
        margin: 0 30px;
        font-size: 20px;
        font-weight: bold;
        color: #000;
        padding: 0 30px;
        line-height: 54px;
        float: left;
        background-color: #ffffff;
        box-sizing: border-box;   
        background: url(./qikan-nav-top.png);
        background-repeat: no-repeat;
        cursor: pointer; 
        background-size:100% 100%;
    }
    .general .general-nav ul li:hover{
        color: #ffffff;
        background: url(../images/qikan-nav-top-hov.png) no-repeat;
        /* background-size:cover ; */
        background-size:100% 100%;
        cursor: pointer;
    }
    .general .general-nav ul .li1{
        background: url(../images/qikan-nav-top-hov.png) no-repeat;
        background-size:100% 100%;
        color: #ffffff;
        margin-left: 124px;
    }


    .general .general-list-top{
        width: 1200px;
        height: 120px;
        margin: 0 auto;
    }
    .general  .general-list-top .p1{
           width: 336px;
           height: 24px;
          font-size: 22px;
          font-weight: bold;
          color: #333333;
          margin: 0 auto;
           padding-top: 10px;
    }
    .general   .general-list-top .p2{
        width:620px;
        height: 30px;
        margin: 0 auto;
        margin-top:60px;
        color: #000000;
    }
    .general .general-list-top .p2 span{
      color: #000000;
    }
    .general  .general-list-top .p2 .s2{
        margin-left: 240px;
    }
    .general .general-list-top .p2 .s3{
        margin-left: 70px;
    }

    /* 新闻详情页的内容 */
    .general-centent{
        width: 1200px;
        height: auto;
        margin: 0 auto;
        padding-bottom: 40px;
    }
    .general-centent p{
        padding:22px 80px;
        font-size: 20px;
        color: #000;
    }
    .general-centent img{
        margin: 0 auto;
    }



    /* 文艺评奖 */
    .jury{
        height: 1782px;
        background-color: #EBEBEB;
    }

    .jury .raisal{
        width: 1200px;
        height: 456px;
        margin: 0 auto;
        margin-top: 20px;
        background-color: red;
    }
    .jury .raisal .raisal-lef{
        width: 704px;
        height: 456px;
        float: left;
        background-color: #e8dabd;
    }
    .jury .raisal .raisal-lef img{
        width: 100%;
        height: 100%;
    }

    .jury .raisal .raisal-rig{
        width: 494px;
        height: 456px;
        float: right;
        background-color: #603226;
    }
    .jury .raisal  .raisal-rig h3{
        padding: 15px 20px 15px 36px;
        color: #ffffff;
        font-size: 16px;
        font-weight: bold;
    }
    .jury .raisal .raisal-rig p{
        padding: 0px 20px 15px 36px;
        color: #ffffff;
        text-indent: 2em;
    }
    .jury .raisal  .raisal-rig .p3{
        width: 430px;
        /* padding: 0px 20px 20px 36px; */
        padding: 0;
        margin: 0 22px 20px 34px;
        border: dashed 0.1px gray;
    }
    .jury .raisal  .raisal-rig ul{
        height: 236px;
        
    }
    .jury .raisal  .raisal-rig ul li{
        color: #ffffff;
        padding: 0px 20px 20px 36px;
        height: 28px;
        line-height: 28px;
    }
    .jury .raisal  .raisal-rig ul li a{
        color: #FFFFFF;
    }
    /* 文艺奖项-中心导航 */
    .raisal-daohang{
        margin-top: 50px;
    }
    /* 文艺奖项-图片细览 */
    .jury-list{
        width: 1200px;
        height: 940px;
        margin: 0 auto;     
        overflow: hidden;
        clear: both;
    }
    .jury-list .jury-list-one{
        width:576px;
        height: 414px; 
        float: left;
        margin-top: 50px;
        margin-right: 22px;
    }

    .jury-list .jury-list-one .jury-list-one-lef{
        width: 372px;
        height: 414px;
        float: left;
        box-sizing: border-box;
    }
    .jury-list .jury-list-one .jury-list-one-lef .jury-list-one-lef-img{
        width: 330px;
        height: 276px;
        float: left;
        box-sizing: border-box;
        position: relative;
    }

    .jury-list .jury-list-one .jury-list-one-lef .jury-list-one-lef-img img{
        width: 100%;
        height: 100%;
    }
    .jury-list-one-bot-img{
        width: 330px;
        height: 286px;
        position: absolute;
        right: -22px;
        bottom: -22px;
        box-sizing: border-box;
    }
    .jury-list-one-bot-img img{
        width: 100%;
        height: 100%;
    }

    .jury-list-bot{
        width: 354px;
        height: 114px;
       padding-top: 300px;
    }
    .jury-list-bot p{
        font-size: 18px;
        margin-top: 18px;
    }
    .jury-list-bot ul{
        padding-left: 18px;
        padding-top: 18px;
    }
    .jury-list-bot ul li{
       list-style: circle;
       padding: 4px 6px;
    }

    /* 文艺评奖右面 */
    .jury-list-one-rig{
        float: right;
        width: 194px;
        height: 300px;
    }
    .jury-list-one-rig .jury-list-rig-img{
        width:96px ;
        height: 158px;
        margin-right : 86px ;
        margin-top:44px;
        margin-left: 10px;
    }
    /* .jury-list-one-rig .jury-list-rig-img img{
        width: 100%;
        height: 100%;
    } */
    .jury-list-one-rig p{
        width: 126px;
        height: 24px;
        margin-top: 28px;
        font-size: 18px;
        margin-right: 20px;
    }


    /* 文联期刊 */
    .qikan{
        height: auto;
        background-color: #EBEBEB;
    }
    .qikan .qikan-nav-top ul{
        width: 1200px;
        height: 74px;
        margin: 0 auto;
         overflow: hidden;
    }
    .qikan .qikan-nav-top ul li{
        width: 150px;
        height: 48px;
        background: url(./qikan-nav-top.png);
        background-repeat: no-repeat;
        float: left;
        font-size: 22px;
        font-weight: bold;
        text-align: center;
        line-height: 48px;
        margin: 0 30px;
    }
    .qikan .qikan-nav-top ul .li1{
        margin-left: 444px;
    }
    .qikan .qikan-nav-top ul li:hover{
        color: #ffffff;
        background: url(../images/qikan-nav-top-hov.png) no-repeat;
        /* background-size:cover ; */
        background-size:150px 48px;
        cursor: pointer;
    }
/* 红色背景图 点击切换 */
.qikan .qikan-nav-top ul .li-1{
    background: url(../images/qikan-nav-top-hov.png) no-repeat;
    background-size:150px 48px;
    color: #ffffff;
}

    /* 文联期刊 -- 导航主体 */
    .qikan .qikan-nav-sec{
        width: 1200px;
        height: auto;
        margin: 0 auto;
        position: relative;
        background-color: #D8D8D8;
        overflow: hidden;

    }
    /*   顶部年份-导航  */
    .qikan .qikan-nav-sec  .top{
        width: 1200px;
        height: 36px;
        background-color: #A71922 ;
    }
    .qikan .qikan-nav-sec  .top ul li{
        width: 46px;
        height: 20px;
        color: #D8D8D8;
        float: left;
        font-size: 20px;
        line-height: 36px;
        padding: 0 13px;
        cursor: pointer;
        
    }
    /* 点击年份切换颜色 */
    .qikan .qikan-nav-sec  .top ul .li1{
        color: #ffffff;
    }
    /* 顶部-月份导航 */
    .qikan .qikan-nav-sec  .nav-bot{
        width: 1200px;
        height: 30px;
        background-color: #E3E1E1;
    }
    .qikan .qikan-nav-sec  .nav-bot ul li{
        width: 20px;
        height:30px;
        line-height: 30px;
        padding-left: 18px;
        margin-right: 60px;
        float: left;
        color: #000;
        cursor: pointer;
    }
    .qikan .qikan-nav-sec  .nav-bot ul li:hover{
        color: #A71922;
    }
    /* 点击月份切换颜色 */
    .qikan .qikan-nav-sec  .nav-bot ul .nav-bot-ul1_li{
        color: #A71922;
    }
    /* 文联期刊 -- 导航主图 */
    .qikan .nav-sec-img{
        width:558px ;
        height: auto;
        margin: 0 auto;
        margin-top: 18px;
        box-sizing: border-box;
    }
    .qikan .nav-sec-img img{
        width: 100%;
        height: 100%;
    }
    /* 文联期刊 -- 切换按钮 */
    .nav-sec-button{
        position: absolute;
        right: 17%;
        top: 450px;
        cursor: pointer;
    }
    .nav-sec-button_pre{
        position: absolute;
        left: 17%;
        top: 450px;
        cursor: pointer;
        transform: rotateY(180deg); 
    }

    /* 服务平台 */
    .fuwu{
        height: auto;
        background-color: #EBEBEB;
    }
    .fuwu .fuwu-sec{
        width: 1200px;
        height: auto;
        margin: 0 auto;
    }
    .fuwu .fuwu-sec .fuwu-sec-ul{
        width: 1200px;
        height: 126px;
        margin-top: 68px;
        cursor: pointer;
    }
    .fuwu .fuwu-sec .fuwu-sec-ul li{
        height: 48px;
        padding: 0 28px;
        float: left;
        font-size: 20px;
        color: #333333;
        line-height: 48px;
        background: url(../images/qikan-nav-top.png) no-repeat center;
        background-size: 100% 100%;
        margin-left: 25px;
        margin-bottom: 16px;
        font-weight: bold;
    }
    .fuwu .fuwu-sec .fuwu-sec-ul li:hover{
        background: url(../images/qikan-nav-top-hov.png)no-repeat center;
        background-size: 100% 100%;
        color: #ffffff;
    }
    .fuwu .fuwu-sec .fuwu-sec-ul .lil{
        background: url(../images/qikan-nav-top-hov.png)no-repeat center;
        background-size: 100% 100%;
        color: #ffffff;
    }

    /* 左侧 */
    .fuwu .fuwu-sec .fuwu-sec-tion{
        width: 1200px;
        height: auto;
        margin-top: 44px;
        background: url(fw_bg.png) no-repeat;
        background-size: 100% 100%;
    }
    .fuwu .fuwu-sec .fuwu-sec-tion .fuwu-sec-tion-lef{
        width:250px ;
        height:auto ;
        float: left;
        /* background: url(../images/fuwu-sec-tion-lef.png) no-repeat;
        background-size: 100% 100%; */
    }
    .fuwu .fuwu-sec .fuwu-sec-tion .fuwu-sec-tion-lef .one{
        width: 250px;
        height: 130px;
        padding: 46px 0 0 70px;
        box-sizing: border-box;
        cursor: pointer;
    }

    .fuwu-sec-tion .fuwu-sec-tion-lef .one ul .fir{
        font-size: 46px;
        color: #FFFFFF;
        padding-left: 36px;
        
    }
    .fuwu-sec-tion .fuwu-sec-tion-lef .one ul .two{
        margin-top: 10px;
        width: 178px;
        height: 16px;
        background: url(./fuwu-sec-tion-lef-img.png) no-repeat;
    }
    .fuwu-sec-tion .fuwu-sec-tion-lef .one ul .three{
        color: #aa9892;
        padding-left: 36px;
    }
    .fuwu-sec-tion .fuwu-sec-tion-lef .one ul:hover li {
        color: #ffffff;   
    }
    .fuwu-sec-tion .fuwu-sec-tion-lef .one ul:hover .two{
        background: url(./fuwu-sec-tion-lef-img-hov.png) no-repeat;
    }
    .fuwu-sec-tion .fuwu-sec-tion-lef .first .one ul .firsts{
        background: url(./fuwu-sec-tion-lef-img-hov.png) no-repeat;
    }

    .fuwu .fuwu-sec .fuwu-sec-tion .fuwu-sec-tion-rig{
        width: 950px;
        height: auto;
        float: right;
        /* background: url(./fuwu-sec-tion-rig.png) no-repeat;
        background-size: 100% 100%; */
        min-height: 524px;
    }
    .fuwu .fuwu-sec .fuwu-sec-tion .fuwu-sec-tion-rig .p1{
        margin-top: 46px;
    }
    .fuwu .fuwu-sec .fuwu-sec-tion .fuwu-sec-tion-rig p{
        padding: 0px 44px 24px 44px;
        color: #FFFFFF;
        font-size: 16px;
    }

/* 点击 1 2 3 4 后 切换背景白色 */
.fuwu-sec-tion .fuwu-sec-tion-lef .first .one ul .firsts{
    background: url(./fuwu-sec-tion-lef-img-hov.png) no-repeat;
}
.fuwu-sec-tion .fuwu-sec-tion-lef .first .one ul .san{
    color: #FFFFFF;
    padding-left: 36px;
}





    /*  */
    .fuwu-daohang{
        margin-top: 50px;
    }


    /* 文件下载 */
    .download{
        width: 1200px;
        margin-top: 38px;
        box-sizing: border-box;
    }
    .download ul{
        width: 1200px;
        /* height: 68px; */
        box-sizing: border-box;
    }
    .download ul li{

        height: 60px;
        /* padding: 28px 514px 24px 38px; */
        position: relative;
        cursor: pointer;
        background-color: #fff;
        margin-bottom: 10px;
        line-height: 60px;
    }
    .download ul li p{
        float: left;
        margin-left: 50px;
    }
    .download ul li span{
        position: absolute;
        right: 4%;
    }
    .download ul li:hover{
        color: #9A2929;
        border-bottom: 2px solid #9A2929 ;
    }



    /* 协会新闻-及成员结构 */

    /* 头部左侧背景 */
    /* #news-member-top-lef{
        width: 100%;
        height: 850px;
        background: url(./news-member-top-sec.png) no-repeat;
        background-size: 840px 850px;
      
       
        position: absolute;
        right: 53%;
    } */

    .news-member-top-top{
        width: 1200px;
        height: 880px;
        margin: 0 auto;
        position: relative;
    }
    #news-member-top-rig{
        width: 100%;
        height: 380px;
        /* background: url(./news-member-top-sec.png) no-repeat left 10px center; */
        background-size: 100% 100%;
        /* float: left; */
        z-index: -99999;
        margin: 0 auto;
    }
    #news-member-top-rig img{
        width: 100%;
        height: 380px;
    }
    #news-member-top-rig .news-member-top-size{
        width: 670px;
        height: 496px;
        position: absolute;
        right: -2%;
        top:350px;
    }



    #news-member-top-rig .news-member-top-size ul .onn{
        color: #ffffff;
    }
.cyjg{
    background-image: none;
    height: 60px;
}
.cyjg .w1120{
    height: 60px;
    /* padding-top: 10px; */
}

    /* 协会新闻-主体 */
    .news-member-sec{
        /* height: 1200px; */
        background-color: #ebebeb;
        clear: both;
        padding-bottom: 60px;
    }
    .news-member-daohang{
        padding-top: 64px;
    }

    /* 热点咨询下面的主体 */
    .news-member-sec .news-member-box{
        width: 1200px;
        height: 440px;
        /* background-color:pink; */
        margin: 0 auto;
        margin-top: 44px;
        background: url(./news-member-box.png) no-repeat;
    }
    .news-member-sec .news-member-box .news-member-box-lef{
        width: 526px;
        height:352px ;
        margin: 54px 36px 36px 36px;
        box-sizing: border-box;
        float: left;
    }
    .news-member-sec .news-member-box .news-member-box-lef ul li{
        margin-bottom: 16px;
        cursor: pointer;
    }
    .news-member-sec .news-member-box .news-member-box-lef ul li p{
        color: #FFFFFF;
        width: 526px;
        height: 20px;    
        line-height: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .news-member-sec .news-member-box .news-member-box-lef ul li .p1{
        font-size: 16px;
        padding-bottom: 10px;
    }
    .news-member-sec .news-member-box .news-member-box-lef ul li .p2{
        font-size: 14px;
    }
    .news-member-sec .news-member-box .news-member-box-lef ul li .p3{
        border-bottom: 1px dashed #ffffff;
        width: 526px;
        height: 16px;
    }



        /* 协会章程 */
    .xhzc{
        width: 1200px;
        height: 434px;
        overflow: hidden;
        margin: 0 auto;
        margin-top: 38px;
        background: url(./xhzc.png) no-repeat;
        overflow: auto;

    }
    .xhzc .xhzc-cen{
        padding: 38px 20px;
    }
    .xhzc .xhzc-cen p{
        font-size: 16px;
        color: #333333;
        line-height: 32px;
        padding: 14px 0;
        font-weight: bold;
    }
    /* 查看更多-本届主席团 */
    .news-member-sec .news-member-box-bottom{
        width: 1200px;
        height: 26px;
        margin: 0 auto;
        margin-top: 22px;
    }
    .news-member-sec .news-member-box-bottom .p5{
        width: 113px;
        height: 26px;
        margin: 0 auto;      
    }
    #news-member-daohang{
        width: 260px;
    }
    #news-member-daohang p{
        padding: 0 16px;
        line-height: 34px;
    }
    /* 本届主席团下面的-图片 */
    .news-member-sec .news-member-zhuxi-img{
        width: 1200px;
        height: 310px;
        margin: 0 auto;
        margin-top: 72px;
    }
    .news-member-sec .news-member-zhuxi-img ul .li1{
        /* margin-left: 0; */
    }
    .news-member-sec .news-member-zhuxi-img ul li{
        width: 228px;
        height: 290px;
        float: left;
        position: relative;
        margin-left: 14px;
        cursor: pointer;
    } 
    .news-member-sec .news-member-zhuxi-img ul li div{
        width: 228px;
        height: 76px;
        background-color: rgba(0, 0, 0, .5);
        position: absolute;
        bottom: 0;
    }
    .news-member-sec .news-member-zhuxi-img ul li div p{
        color: #Ffffff;
        text-align: center;
        line-height: 24px;
    }
    .news-member-sec .news-member-zhuxi-img ul li div .p1{
        margin-top: 14px;
    }
    .news-member-sec .news-member-zhuxi-img ul li img{
        width: 100%;
        height: 100%;
    }


    /* 网上展厅 */
    .zhanting{
        /* height: 1572px; */
        height: auto;
        background-color: #EBEBEB;
        padding-bottom: 80px;
    }


    #gallery-wrapper {
		position: relative;
		/* max-width: 75%; */
		/* width: 75%; */
        width: 1200px;
		margin:0px auto;
        margin-top: 50px;
		}
		img.thumb {
            width: 370px;
		max-width: 100%;
		height: auto;
		}
		.white-panel {
           
		position: absolute;
		background: white;
		border-radius: 5px;
		box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
		padding: 10px;
		}
		.white-panel h1 {
		font-size: 1em;
        padding: 0 28px;
        text-align: center;
        font-size: 16px;
		}
		.white-panel h1 a {
            color: #000;
		}
        .white-panel p{
            text-align: center;
        }
		.white-panel:hover {
		box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
		margin-top: -5px;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		}

   /* 网上展厅-细览 */
   .new-content-img{
       width: 1200px;
   }
    .new-content-img img{
        margin: 0 auto;
        width: 136px;
        height: 192px;
        text-align: center;
        display: block;
        border: 1px solid gray;
    }
    .new-content-img p{
        margin: 0 auto;
        text-align: center;
        font-weight: bold;
        color: #000;
        font-size: 18px;
        line-height: 38px;
        text-indent: 0em;
    }
    /* 网上展厅-作品展示 */
    .new-list .zpzs{
        width: 1200px;
        margin: 0 auto;
        margin-top: 30px;
    }
     .new-list .zpzs ul{
         width: 1000px;
         margin: 0 auto;
         padding-bottom: 20px;
     }
    .new-list .zpzs ul li{
        width: 174px;
        float: left;
        margin-right: 18px;
    }
    .new-list .zpzs ul li img{
        width: 164px;
        height: 160px;
        padding: 4px;
        border: 1px solid gray;
    }
    .new-list .zpzs ul li p{
        text-align: center;
    }
        /* 文联概况-领导简介 */
        .ldjj_box{
            /* height: auto; */
            background-color: #EBEBEB;
            margin-top: 32px;  
        }
    
        .ldjj-section{
            /* height: 1350px; */
            height: auto;
            width: 1200px;
            margin: 0 auto;
            background-color: #EBEBEB;
            padding-bottom: 36px;
        }
        .fudong{
            clear: both;
        }
        /* 盒子 */
         .ldjj-section .ldjj-section_box{
            width:290px;
            height:420px;
            float: left;
            padding-right: 10px;
           padding-top: 14px;
        }
    
        /* <!--盒子上面的图片  --> */
        .ldjj-section .ldjj-section_box .img{
            width: 290px;
            height: 280px;
        }
         .ldjj-section .ldjj-section_box .img img{
            width: 100%;
            height: 100%;
        }
        /* 盒子里面的领导-及简介 */
         .ldjj-section .ldjj-section_box .bot{
            height: 140px;
            background-color: #FFFFFF;
        }
         .ldjj-section .ldjj-section_box .bot .p1{
            font-size: 20px;
            color: #333333;    
            font-weight: 900;
            width: 200px;
            height: 34px;
            line-height: 34px;
            padding: 18px 20px;
        }
         .ldjj-section .ldjj-section_box .bot .p2{
            font-size: 18px;
            padding-left: 20px;
            width: 236px;
            box-sizing: border-box;
        }


        /* 品牌活动 */
        .pphd{
            background-color: #EBEBEB;
        }

        .pphd .pphd_section{
            width: 1200px;
            margin: 0 auto;
            padding-bottom: 100px;
        }
        .pphd .pphd_section   .pphd_section_box{
            width: 386px;
            height: 288px;
            float: left;
            margin-top: 20px;
           margin-left: 12px;
           box-sizing: border-box;
           background-color: #fff;
        }
        .pphd .pphd_section .pphd_section_box .img{
            width: 386px;
            height: 230px;
        }
        .pphd .pphd_section .pphd_section_box .img img{
            width: 100%;
            height: 100%;
        } 
        .pphd .pphd_section .pphd_section_box .p1{
            width: 386px;
            height: 58px;
            overflow: hidden;
            line-height: 58px;
            font-size: 18px;
            color: #333333;
            text-align: center;
        }

        /* 品牌活动详情页 */
        .pphd_xq{
            background-color: #EBEBEB;
        }
        /* 品牌活动的导航 */
        .pphd_xq_daohang{
            width: 100%;
            height: 34px;
            margin: 0 auto;
            margin-top: 20px;
            /* background-color: red; */
        }
        .pphd_xq_daohang p{
            width: 100%;
            float: left;
            padding: 6px 0px ;
           color: #333333;
           font-size: 22px; 
           font-weight: bold;
           text-align: center;
        }
        /* 品牌活动-“我们的中国梦”文化进万家 */
        .pphd_xq_top{
             width: 1200px;
             height: 298px;
             margin: 0 auto;
             background: url(./pphd_xq_top.png) no-repeat;
            margin-bottom: 56px;
            margin-top: 38px;
            overflow: hidden;
            }

            /*  品牌活动-“我们的中国梦”文化进万家的版心*/
            .pphd_xq_top .cen {
                padding: 38px 20px;
                max-height: 270px;
                overflow: hidden;
            }
            .pphd_xq_top .cen p{
                font-size: 16px;
                color: #333333;
                font-weight: bold;         
                line-height: 32px;
            }





            /* 品牌活动列表页 */
            .pphd_xq_list{
                margin-top: 40px;
                padding-bottom: 40px;
            }



            /* 文艺家列表页 */
            .wyj_lby{
             background-color:#EBEBEB; 
             padding-bottom: 50px;
            }
            .wyj_lb{
                width: 1200px;
                height: auto;
                margin: 0 auto;
                margin-top: 30px;
                clear: both;
            }
            .wyj_lb .wyj_lb_box ul{
                clear: both;
                 height: auto;
            }
            .wyj_lb .wyj_lb_box{
                width: 222px;
                height: 194px;
                float: left;
                margin-right: 18px; 
                margin-bottom: 20px;
            }
            .wyj_lb .wyj_lb_box img{
                width: 222px;
                height: 126px;
            }
            .wyj_lb .wyj_lb_box p{
                width: 222px;
                height: 68px;
                font-size: 16px;
                padding: 0 16px;
                box-sizing: border-box;
                background-color: #fff;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2; /* 这里是超出几行省略 */
            }
          /* 文艺家详情页 */
            .wyj_xq_box{
                width: 1200px;
                margin: 0 auto;
            }
            .wyj_xq_box .video{
                width: 480px;
                height: 416px;
                margin: 0 auto;
            }
            .wyj_xq_centent p{
                text-align: center;
                line-height: 50px;
            }




            /* 微信公众号 */
            .fy_main_notice{
                background: url(ah_add_bg.png);
            }
            .fy_main {
                background: #fff;
                position: relative;
            }
            /* ================================================================ */
/* 微信公众号集成 */
.wl_ewm{
	padding: 40px 0 40px;
}

.ztitle{
	position: relative;
	width: 850px;
	margin: 0px auto;
}
.ztitle p{
	font-size: 26px;
	text-align: center;
	color: #00a0ff;
	line-height: 80px;
}
.ztitle span{
	position: absolute;
	width: 200px;
	height: 1px;
	background: #00a0ff;
	top: 50%;
}
.ztitle span i{
	position: absolute;
	height: 20px;
	width: 1px;
	top: 50%;
	background: #00a0ff;
	margin-top: -10px;
}
.ztitle .ztitle_l{
	left: -26px;
}
.ztitle .ztitle_l i{
	right: 0;
}
.ztitle .ztitle_r{
	right: -28px;
}
.ztitle .ztitle_r i{
	left: 0;
}

.ewm_tit{
	position: relative;
	width: 450px;
	margin: 30px auto;
}
.ewm_tit p{
	font-size: 22px;
	line-height: 40px;
	text-align: center;
}
.ewm_tit span{
	position: absolute;
	width: 100px;
	height: 1px;
	top: 50%;
}
.ewm_tit span i{
	position: absolute;
	height: 8px;
	width: 8px;
	top: 50%;
	margin-top: -4px;
	border-radius: 50%;
}
.wl_ewm .ewmitem.bk1 .ewm_tit p{
	color: #96d07f;
}
.wl_ewm .ewmitem.bk1 .ewm_tit span,
.wl_ewm .ewmitem.bk1 .ewm_tit span i{
	background-color: #96d07f;
}

.wl_ewm .ewmitem.bk2 .ewm_tit p{
	color: #baad8f;
}
.wl_ewm .ewmitem.bk2 .ewm_tit span,
.wl_ewm .ewmitem.bk2 .ewm_tit span i{
	background-color: #baad8f;
}

.wl_ewm .ewmitem.bk3 .ewm_tit p{
	color: #9ca0bf;
}
.wl_ewm .ewmitem.bk3 .ewm_tit span,
.wl_ewm .ewmitem.bk3 .ewm_tit span i{
	background-color: #9ca0bf;
}

.wl_ewm .ewmitem.bk4 .ewm_tit p{
	color: #D7CC85;
}
.wl_ewm .ewmitem.bk4 .ewm_tit span,
.wl_ewm .ewmitem.bk4 .ewm_tit span i{
	background-color: #D7CC85;
}

.ewm_tit .ewm_tit_l{
	left: 0;
}
.ewm_tit .ewm_tit_l i{
	right: -4px;
}
.ewm_tit .ewm_tit_r{
	right: 0;
}
.ewm_tit .ewm_tit_r i{
	left: -4px;
}

.wl_ewm .ewmitem ul{
	text-align: center;
	margin: 0 40px;
}
.wl_ewm .ewmitem ul li{
	width: 185px;
	display: inline-block;
	margin: 0 15px 30px;
}
.wl_ewm .ewmitem ul li .ewm_pic{
	width: 182px;
	height: 182px;
	background-position: center;
	background-repeat: no-repeat;
	display:table-cell; 
	vertical-align: middle;
	text-align: center;
}

.wl_ewm .ewmitem.bk1 ul li .ewm_pic{
	background-image: url(gs_ewmbd1.png);
}
.wl_ewm .ewmitem.bk2 ul li .ewm_pic{
	background-image: url(gs_ewmbd2.png);
}
.wl_ewm .ewmitem.bk3 ul li .ewm_pic{
	background-image: url(gs_ewmbd3.png);
}


.wl_ewm .ewmitem ul li .ewm_pic img{
	width: 130px;
	height: 130px;
}

.wl_ewm .ewmitem ul li .ewm_name{
	margin-top: 10px;
}
.wl_ewm .ewmitem ul li .ewm_name p{
	line-height: 1.6;
	font-size: 14px;
	vertical-align: bottom;
}

.gs_section{
    background-color: #ffffff;
    width: 1200px;
    margin: 0 auto;
    box-shadow:0 0 10px #808080;
}


#advert{
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 999;
	max-width: 50%;
}
#advert a{
	display: block;
}
#advert span{
	color: #000;
	font-size: 22px;
    font-weight: bold;
	position: absolute;
	top: 4px;
	right: 0px;
}
#advert img{
	vertical-align: middle;
    width: 200px;
    height: 200px;
}


/* 飘窗 */
#move_port {
    position: fixed;
    width: 250px;
    min-height: 150px;
    left: 0;
    top: 0;
    cursor: pointer;
    z-index: 999;
}

#move_port img {
    width: 250px;
    margin-bottom: 10px;
}