a{text-decoration:none}
a:link{text-decoration:none;  }
a:visited{text-decoration:none;  }
a:hover{text-decoration:none;  }
a:active{text-decoration:none;  }
input::input-placeholder{color: #ccc;} 
::-webkit-input-placeholder { /* WebKit browsers */ 
	color: #ccc; 
} 
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ 
	color: #ccc; 
} 
::-moz-placeholder { /* Mozilla Firefox 19  */ 
	color: #ccc; 
} 
:-ms-input-placeholder { /* Internet Explorer 10  */ 
	color: #ccc; 
}
img{
    max-width: 100%;
}


/*调整bootstrap原有风格*/
.container-fluid{
    position: relative;
    width: 100%;
    padding: 0;
}

.row{
    margin: 0;
}
/*普通页面结构设置*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    width: 100%;
    height: auto;
    font-family: "黑体";
    font-size: 100%;
    padding: 0;
    overflow-x: hidden;

    outline: 1px solid firebrick;
}

body{
    overflow: hidden;
}
ul,li{
    list-style: none;
}
ul li{
    float: left;
}
a{
    color: #000;
    cursor: pointer;
}
/*清除浮动*/
.clearfix::after{
    content: ".";
    display: block;
    height: 1px;
    visibility: hidden;
    clear: both;
}


/*************************************************************************************
                                  公共部分样式
*************************************************************************************/
/*banner start*/
.common-banner{
    display: block;
    height: 500px;
    width:100%;
    position: relative;
}
#img-banner{
    position: absolute;
    width: 100%;
    height: 100%;
}
#log{
    display: inline-block;
	vertical-align: top;
	margin-left: 9.4%;
}

.carouselWrap {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0;

   /* border: 1px solid forestgreen;*/
}

.carouselPrev,
.carouselNext {
    display: none;
    position: absolute;
    z-index: 2;
    top: 50%;
    margin-top: -50px;
    color: #fff;
    font-size: 80px;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.carouselPrev {
    display: none;
    left: 0;
    padding-right: 5px;
}

.carouselNext {
    display: none;
    right: 0;
    padding-left: 5px
}

.carouselPrev:hover,
.carouselNext:hover {
    display: none;
    background: #ccc;
    background: rgba(204, 204, 204, 0.4);
}

.carouselContent{
    display: block;
    width: 100%;
    height: 100%;
}

.carouselContent li {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center
}

.carouselContent li img {
    display: block;
    max-width: 100%;
    margin: 0;
    height: 100%;
	opacity: 0.8;
}
.carouselContent li img:hover{
	opacity: 1;
}
.carouselList {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    margin: 0;
    text-align: right;
    /*border: 1px solid firebrick;*/
}

.carouselList span {
    display: inline-block;
    width: 15px;
    height: 15px;
   border-radius: 50%;
    background: #fff;
    margin:0 20px 0 0;
    cursor: pointer;
    transition: transform 1s ease-in-out;
   /* behavior: url(ie-css3.htc); !* 通知IE浏览器调用脚本作用于'box'类 *!*/
}

.carouselList .checked {
    background: #CB1D19;
    transform: rotate(45deg);
   /* behavior: url(ie-css3.htc); !* 通知IE浏览器调用脚本作用于'box'类 *!*/
}
/*banner end*/
/*logo start*/
.logo{
    position: absolute;
    top: 13%;
    left: 46.4%;
    width: 140px;
    margin: 0;
    padding: 0;
    z-index: 1000;
}
.logo img{
    margin: 0;
    padding: 0;
}
/*logo end*/
/*nav start*/
header{
    position: relative;
}

nav.nav{
    position: absolute;
	float: left;
	top:0;
    width: 100%;
    height: 80px;
    padding: 0;
    /* margin-bottom: -1px; */
    /* background: url("../img/common/nav-bg.png")no-repeat 0 0 ; */
	background: rgba(0,0,0,.4);
	z-index: 1;
}

#hum{
    display: none;
    position: relative;
    margin: 0;
    width: 84px;
    height: 94px;

    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);

    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;


    cursor: pointer;

    z-index: 100;
}

#hum span{
    position: absolute;
    height: 5px;
    width: 35px;
    background: #A61A30;
    border-radius: 9px;
    opacity: 1;
    left: 29%;

    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

#hum span:nth-child(1) {
    top: 32px;
}

#hum span:nth-child(2),#hum span:nth-child(3) {
    top: 44px;
}

#hum span:nth-child(4) {
    top: 56px;
}

#hum.open{
    background: #A61A30;
}

#hum.open span{
    background: #fff;
}

#hum.open span:nth-child(1) {
    top: 32px;
    width: 0%;
    left: 50%;
}

#hum.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#hum.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#hum.open span:nth-child(4) {
    top: 32px;
    width: 0%;
    left: 50%;
}

ul.lists{
	position: relative;
    display: inline-block;
	width: calc(90.5% - 100px);
	box-sizing: border-box;
	height: 100%;
	padding: 0 2.5% 0 8.5%;
	overflow: hidden;
}

nav ul.lists li.list {
    float: left;
    list-style: none;
    height: 80px;
    line-height: 80px;
    width: 6.5%;
    margin-left: 4%;
}

nav ul.lists li.list a:hover,
nav ul.lists li.list a:active,
nav ul.lists li.list a:focus
{
    color: #000;
    /* border-bottom: 2px solid #000; */
    text-decoration: none;
}

nav ul.lists li.list ul a:hover,
nav ul.lists li.list ul a:active,
nav ul.lists li.list ul a:focus,
nav ul.lists li.list ul a.active{
    color: #999;
    border-bottom: none;
    text-decoration: none;
}

nav ul.lists li.list .wrapper{
    width: 100%;
    height: 100%;
    margin: 0;
}

nav ul.lists li.list .wrapper a{
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    color: #fff;
    background: url("../img/common/chevron-thin-right.png") no-repeat 100% 43px,url("../img/common/rect-bottom.png") repeat-x 0 65px;
    font-size: 1.625em;
    font-weight: bolder;
    white-space:nowrap;
}

nav ul.lists li.list .wrapper a:hover,
nav ul.lists li.list .wrapper a.active{
    /* color: #000; */
    /* background: url("../img/common/chevron-thin-down.png") no-repeat 100% 45px; */
}
nav ul.lists li.list:first-child{
    margin-left: 0;
}

nav ul.lists li.list:last-child{
    width: 7.2%;
    margin-left: 4.7%;
}

/* nav ul.lists li.list:nth-child(5){
    margin-left: 16.67%;
} */


nav ul.lists li.list .wrapper img{
    display: none;
    margin-top: 12px;
}

nav ul.lists .list:first-child{
    margin-left: 5%;
}
nav ul.lists .list ul.sub{
    display: none;
}

nav ul.lists .list ul.sub li {

}

nav ul.lists .list ul.sub li a{
    font-size: 26px;
    color:#fff;
}

head{
    position: relative;
}
#nav_search_input{
	padding-left: 3px;
	border: none;
	background: none;
	border-radius: 21px;
	outline:none;
}
#search_btn{
	cursor: pointer;
}
.searchBox{
	display: inline-block;
	position: absolute;
	right: 45px;
	margin: 18px 0 0 20px;
	padding:0 10px;
	border: 1px solid #FFFFFF;
	border-radius: 21px;
	background:  rgba(83,83,83,.16);
	color: #fff;
	line-height: 40px;
	/* background: url(../img/common/search-icon.png) no-repeat 175px center; */
}

/*nav end*/

.main{
    display: block;
    width: 100%;
    height: auto;
    margin-top: 0;
    background: url("../img/info_wenbo/main_bg_1.png") 0 0 repeat-y;
}

.main .wrapper{
    width: 87.5%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    padding-bottom: 90px;
    border: 1px solid transparent;
}

.second-stage{
    position: relative;
    width: 100%;
    margin: 54px auto 0;
}

.body{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    background: #fff;
   /* border: 1px solid firebrick;*/

    -webkit-box-shadow:  1px 0px 5px  rgba(0, 0, 0, 0.1),-0px -1px 5px  rgba(0, 0, 0, 0.1);
    -moz-box-shadow:  1px 0px 5px  rgba(0, 0, 0, 0.1),-0px -1px 5px  rgba(0, 0, 0, 0.1);
    box-shadow:  1px 0px 5px  rgba(0, 0, 0, 0.1),-1px -0px 5px  rgba(0, 0, 0, 0.1);

}

.body .titles h1{
    display: inline-block;
    width: 100%;
    margin-top: 46px;
    padding: 0;
    color: #333;
    font-family: 黑体;
    font-size: 2em;
    font-weight: 800;
    text-align: center;
}

.body .titles h1 span{
    width: 1.667%;
    height: 29px;
    margin-bottom: -4px;
    margin-right: 0;
}

#infoSecTitle{
    height: 33px;
    text-align: left;
}

.body .titles h3{
    display: inline-block;
    width: 80%;
    margin-top: 6px;
    color: #444;
    font-family: 黑体;
    font-size: 0.875em;
    text-align: center;
    margin-left:10%;
}
.body .titles h3 span{
    width: 0.95%;
    height: 14px;
    margin-bottom: 0px;
    margin-right: 0px;
}
#crumb_first{
    width: 30px;
}
#crumb_first a{
    color:inherit;
}
#crumb_second{
    width: 60px;
}
#crumb_second a{
    color:inherit;
}
#crumb_third{
    width: 60px;
}
#crumb_third a{
    color:inherit;
}
.titles a{
    color:inherit;
}
.body .titles h1 span img,.body .titles h3 span img{
    display: block;
    max-width: 100%;
    margin: 0;
}


/*页码*/
.pagesite{
    width: 70%;
    height: 40px;
    margin-left: 17.5%;
    margin-top: 90px;
    margin-bottom: 45px;
    padding: 0;
    text-align: center;
    position: relative;
    clear: both;
    /*border: 1px solid firebrick;*/
}
.pagesite2{
    width: 70%;
    height: 40px;
    margin-left: 17.5%;
    margin-top: 90px;
    margin-bottom: 45px;
    text-align: center;
    position: relative;
    clear: both;
    padding-top: 90px;

    /*border: 1px solid firebrick;*/
}
.pagesite a,.pagesite2 a{
    color: #000;
}
.pagesite span,.pagesite2 span{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 2px;
    font-size: 2em;
    text-align: center;
    color: #fff;
    background: #cd1d1a;
    border: 1px solid #818181;
}

.pagesite a span,.pagesite2 a span{
    color: #666;
    background: #fff;
}

.pagination{
    float: left;
    margin: 0 0 0 30%;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
}

.page-next{
    float: left;
    width: 60px;
    height: 40px;
    line-height: 40px;
    margin-left: 10px;

    text-align: center;
    color: #666;
    border: 1px solid #818181;
}

/*footer start*/
footer{
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 80px;
	margin-top: 0;
	background-color: rgba(0,0,0,0.3);
	z-index: 600;
}

footer a,footer p{
    color: #fff;
    font-family: '黑体';
}

footer a:hover{
    color: #FCBBBB;
}

footer .left{
    height: 60px;
    margin: 0;
    padding: 0;
    font-size: 1.125em;
    text-align: center;

}

footer .left a{
    float: left;
    height: 100%;
    line-height: 60px;
}

footer .left p{
    display: block;
    height: 100%;
    text-align: center;
    /*background: forestgreen;*/
}

footer .left a.friend-link{
    /*margin-left: 0;*/
}

footer .right{
    padding: 0;
    /*background: #f60;*/
}

footer .right p{
    display: block;
    width: 100%;
    padding: 0;
    line-height: 1.2;
    font-family: "Arial";
    font-size: 0.75em;
    font-weight: bold;
    text-align: right;
   /* background: firebrick;*/
}
footer .right p:first-child{
    margin-top: 12px;
}
footer .right p.p-second{
}
footer .right p span{
    margin-right: 2.17%;
}

footer .right p span.last{
    margin-right: 0;
}

/*媒体查询*/
@media (min-width: 1380px) and (max-width: 1440px) {

}

@media (min-width: 1200px) and (max-width: 1379px) {
    footer{
        font-size: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    footer{
        height: 120px;
    }

    .footer-row .left{
        margin: 0;
        height: 60px;
        /* background: olive;*/
        text-align: center;
    }

    .footer-row .left a{
        float: none;
    }

    .footer-left{
        display: block;
        height: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .footer-row .right p{
        text-align: center;
    }

    footer .right p:first-child{
        margin-top: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    footer{
        height: 120px;
        font-size: 100%;
    }

    .footer-row .left{
        margin: 0;
        height: 60px;
        /* background: olive;*/
        text-align: center;
    }

    .footer-row .left a{
        float: none;
    }

    .footer-left{
        display: block;
        height: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .footer-row .right p{
        text-align: center;
    }

    footer .right p:first-child{
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    footer{
        height: 120px;
        font-size: 120%;
    }

    .footer-row .left{
        margin: 0;
        height: 60px;
        /* background: olive;*/
        text-align: center;
    }

    .footer-row .left a{
        float: none;
    }

    .footer-left{
        display: block;
        height: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .footer-row .right p{
        text-align: center;
    }

    footer .right p:first-child{
        margin-top: 0;
    }
}

/*footer end*/

/*************************************************************************************
                                  艺博网站-首页
*************************************************************************************/
a.index-info-list:hover,
a.index-info-list1:hover{
    text-decoration: none;
}
.index-logo{
    top: 438px;
}
#qrcodeMask,#ticketMask{
	display: none;
	width: 100%;
	height:100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.3);
	z-index:1000;
	text-align: center;
}
#qrcode{
	display: block;
	width:300px;
	height:300px;
	margin:20px auto;
}
#ticketCode{
	position: fixed;
	bottom: 400px;
	left: 50%;
	margin-left: -150px;
	width: 300px;
	height: 300px;
}
.codeBox{
	width:400px;
	height:400px;
	background: #fff;
	padding: 10px;
	margin: 350px auto;
}
/*媒体查询*/
@media (min-width: 1380px) and (max-width: 1440px) {
    .index-logo{
        left: 45%;
    }
}

@media (min-width: 1200px) and (max-width: 1379px) {
    .index-logo{
        left: 43.5%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .index-logo{
        left: 43.8%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-logo{
        left: 42.7%;
    }
}

@media (max-width: 767px) {
    .index-logo{
        left: 40%;
    }
    .link{
        width:100%;
        padding-left: 5%;
        padding-right:5%;
    }
}

/*layout start*/
.index-main{
    position: relative;
    width: 100%;
    height: 785px;
    margin: 0 auto;
    /* background: url("../img/index/main_bg.png") no-repeat 0 0; */
    /* background-size: cover; */

    z-index: 500;
}

.index-wrapper{
    position: relative;
    width: 1280px;
    height: 100%;
    margin: 0 auto;
    z-index: 500;
    /*border: 1px solid firebrick;*/
}

.index-main .calendar,
.index-main .map,
.index-main .share{
    position: absolute;
    display: block;
    transition: top 2s;
}
.index-main .dynamic{
    height: 280px;
	margin:40px 10px 0 0;
    padding:40px 25px 40px 40px;
	background: #DFEAF0;
}
.index-main .open{
	height: 280px;
	margin-top:40px;
	padding:30px;
	background: #A3857D;
}
.index-main .activity{
	position: relative;
    height: 315px;
	margin:10px 0 40px;
    padding:30px;
	background: #DFEAF0;
}
.index-main .appreciate{
	position: relative;
	height: 315px;
	margin:10px 10px 40px 0;
	padding:40px 25px 40px 40px;
	background: #A3857D;
}
.index-main .open .btn{
	/* display: block; */
	/* margin:0 auto; */
	padding:10px;
    margin-left: 1rem;
    margin-right: 1rem;
	background: url(../img/index/btnBg.png) no-repeat;
	background-size: 100% 100%;
	font-size:1.125em;
	text-align: center;
	outline: none;
}
.index-main .activity .btn{
	display: block;
	margin:0 auto;
	padding:10px;
	background: url(../img/index/btnBgy.png) no-repeat;
	background-size: 100% 100%;
	font-size:1.125em;
	text-align: center;
	outline: none;
}
.btn:active, .btn.active{
	box-shadow: none;
}
.index-main .open .btn:hover{
	color:#fff;
}
.buyTicket{
    text-align: center;
}
.moduleTitle{
	font-size:1.5em;
	cursor: pointer;
}
.open .openList{
	width: 100%;
	overflow: hidden;
	margin-top:20px;
}
.openList .open-time,
.openList .tel,
.openList .address{
	padding-left: 30px;
}
.openList .open-time{
	background:url(../img/index/time.png) left 3px no-repeat;
}
.openList .tel{
	background:url(../img/index/tel.png) left 3px no-repeat;
}
.openList .address{
	background:url(../img/index/address.png) left 3px no-repeat;
}
.whiteColor,.whiteColor a,.whiteColor .btn{
	color:#fff;
}
.blankColor,.blankColor a,.blankColor .btn{
	color: #535353;
}
#wenbo_dynamic ul,#wenbo_dynamic ul li,#yibo_dynamic ul,#yibo_dynamic ul li{
	float: none;
	overflow: hidden;
}
.changetab{
	display: inline-block;
	overflow: hidden;
	margin-bottom:25px;
}
.item-more{
	display: inline-block;
	float: right;
	margin-top: 5px;
	vertical-align: top;
}
.changetab li.moduleTitle{
	padding: 0 22px;
}
.dynamic .changetab li.active{
	background: url(../img/common/title-bg-yellow.png) 0 center no-repeat;
	color:#DBB968;
}
.appreciate .changetab li.active{
	background: url(../img/common/title-bg-pink.png) 0 center no-repeat;
	color:#E1C5B6;
}
.exhibition .changetab li{
	color:#fff;
}
.exhibition .changetab li.active{
	background: url(../img/common/title-bg-pink.png) 0 center no-repeat;
	color: #E1C5B6;
}
.index-main .news-wrapper .index-info-list span.date{
	float: right;
	font-size:1em;
	opacity: 0.5;
}
.index-info-list{
	display: block;
	width: 100%;
}
.index-info-list .li_title{
	display: inline-block;
	width: 80%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size:1em;
}
.index-info-list .li_title.item_title{
	width: 100%;
}
.exhibition-ul,.collection-ul,.activity-ul{
	overflow: hidden;
}
.exhibition-item,.collection-item,.activity-item{
	width:100%;
	height: 160px;
}
.activity-item{
	padding-top: 20px;
}
.exhibition-img,.collection-img{
	padding:0;
	height:100%;
	object-fit: cover;
}
.exhibition-info,.collection-info{
	height:100%;
}
.exhibition-info .detail{
	text-align: justify;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	line-clamp: 4;
	-webkit-line-clamp: 4;
}
.activity-item,.exhibition-item,.collection-item{
	display:none;
}
.activity-item:first-child,.exhibition-item:first-child,.collection-item:first-child{
	display:block;
}
.page-box{
	overflow: hidden;
	position: absolute;
	bottom:10px;
	right:20px;
}
.page-box li{
	float:left;
	padding:0 9px;
	user-select: none;
	cursor: pointer;
}
.page-box li.active,.page-box li:hover{
	color:#DBB968;
}
.appreciate .page-box li.active,.appreciate .page-box li:hover{
	color:#E1C5B6;
}
.index-main .calendar{
    width: 22.27%;
    height: 0;
    margin-top: 47.2%;
    margin-left: 73.6%;
    padding-bottom: 22.27%;
    border-radius: 7%;
    background: #fff;
    z-index: 5;
    /*border: 1px solid firebrick;*/
    transform: rotate(45deg);
}
.index-main .map,
.index-main .share{
    width: 10.47%;
    height: 0;
    margin-top: 62.2%;
    margin-left: 61.8%;
    padding-bottom: 10.47%;
    border-radius: 15%;
    z-index: 5;
   /* border: 1px solid firebrick;*/
    transform: rotate(45deg);
}
.index-main .share{
    margin-top: 71%;
    margin-left: 53%;
}
.index-main .exhibition img,
.index-main .collection img,
.index-main .activity img,
.index-main .open img,
.index-main .dynamic img,
.index-main .calendar img,
.index-main .map img,
.index-main .share img{
    display: block;
    margin: 0;
    padding: 0;
    max-width: 100%;
}
.index-main .dynamic img{
    position: absolute;
    top: 2.7%;
    cursor: pointer;
}

.index-main .dynamic img.wenbo{
    left: 10%;
    top:2.7%;
    max-width: 16.05%;
    z-index: 100;
}
.index-main .dynamic img.yibo{
    top:0.8%;
    left: 28%;
    max-width: 16.05%;
    z-index: 100;
}
.index-main .dynamic img.bg{
    top: 7.1%;
    max-width: 100%;
}


/*layout end*/

/*mouse hover start*/
.box-outer-wrapper{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent;
    border-radius: 7.6%;
    z-index: 50;
    /* border: 1px solid forestgreen;*/
}
.box-outer-wrapper:hover{
    background: rgba(0,0,0,.5);
    background:transparent\0;
}
.box-inner-wrapper{
    display: block;
    position: relative;
    width: 79.79%;
    height: 79.79%;
    margin: 10.105%;

}
.box-inner-wrapper .left-top{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 8.80%;
    height: 8.80%;
    border-radius: 50% 0 0 0;
    border: 2px solid #fff;
    border-right: 2px solid transparent;
    border-bottom: 2px solid transparent;

    opacity: 0;
    transition-name: opacity;
    transition-duration: 0s;
    transition-delay: 0s;

    display:none\0;

}
.box-inner-wrapper:hover .left-top{
    opacity: 1;
    transition-name: opacity;
    transition-duration: 0.1s;
    transition-delay: 0.6s;

    display:none\0;

}
.box-inner-wrapper .right-top{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 8.80%;
    height: 8.80%;
    border-radius: 0 50% 0 0;
    border: 2px solid #fff;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    opacity: 0;
    transition-name: opacity;
    transition-duration: 0.1s;
    transition-delay: 0.6s;

    display:none\0;
}
.box-inner-wrapper:hover .right-top{
    opacity: 1;
    transition-duration: 0s;
    transition-delay: 0s;

}
.box-inner-wrapper .right-bottom{
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 8.80%;
    height: 8.80%;
    border-radius: 0 0 50% 0;
    border: 2px solid #fff;
    border-left: 2px solid transparent;
    border-top: 2px solid transparent;

    opacity: 0;
    transition-name: opacity;
    transition-duration: 0s;
    transition-delay: 0s;

    display:none\0;

}
.box-inner-wrapper:hover .right-bottom{
    opacity: 1;
    transition-name: opacity;
    transition-duration: 0.1s;
    transition-delay: 0.6s;

}
.box-inner-wrapper .left-bottom{
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 8.80%;
    height: 8.80%;
    border-radius: 0 0 0 50%;
    border: 2px solid #fff;
    border-right: 2px solid transparent;
    border-top: 2px solid transparent;

    opacity: 0;
    transition-name: opacity;
    transition-duration: 0.1s;
    transition-delay: 0.6s;

    display:none\0;
}
.box-inner-wrapper:hover .left-bottom{
    opacity: 1;
    transition-duration: 0s;
    transition-delay: 0s;
}
.box-inner-wrapper .top{
    position: absolute;
    top: 0;
    right: 8.36%;
    width: 0;
    border-top: 2px solid #fff;

    transition-name: width;
    transition-duration: 0.5s;
    transition-delay: 0.1s;

    display:none\0;
}
.box-inner-wrapper:hover .top{
    width: 83.6%;
}
.box-inner-wrapper .right{
    position: absolute;
    top: 8.36%;
    right: 0;
    height: 0;
    border-right: 2px solid #fff;

    transition-name: height;
    transition-duration: 0.5s;
    transition-delay: 0.1s;

    display:none\0;
}
.box-inner-wrapper:hover .right{
    height: 83.6%;
}

.box-inner-wrapper .bottom{
    position: absolute;
    bottom: 0;
    left: 8.36%;
    width: 0;
    border-bottom: 2px solid #fff;

    transition-name: width;
    transition-duration: 0.5s;
    transition-delay: 0.1s;

    display:none\0;
}
.box-inner-wrapper:hover .bottom{
    width: 83.6%;
}
.box-inner-wrapper .left{
    position: absolute;
    bottom: 8.36%;
    left: 0;
    height: 0;
    border-left: 2px solid #fff;

    transition-name: height;
    transition-duration: 0.5s;
    transition-delay: 0.1s;

    display:none\0;
}
.box-inner-wrapper:hover .left{
    height: 83.6%;
}
.box-inner-wrapper .center{
    position: absolute;
    width: 100%;
    height: 100%;
}

.index-main .title{
    position: absolute;
    left: 0%;
    bottom: 0%;
    width: 100%;
    height: 100%;
    color: #fff;
    z-index: 10;
    transform: rotate(-45deg);
    /*border: 1px solid forestgreen;*/
}
.index-main .title a{
    color: #fff;
    text-decoration: none;
}
.index-main .title .title-wrapper-1{
    width: 100%;
    height: 60%;
    margin-top: 12%;
    margin-bottom: 0;
    /* border: 1px solid firebrick;*/
    display: none\0;
}
.index-main .title .title-wrapper-1 .first{
    margin-top: 6%;
}
.index-main .title span{
    display: block;
    transition: opacity 0.5s;
}
.index-main .title-wrapper-2 {

    /* border: 1px solid firebrick;*/
}
.index-main .title-wrapper-2 span{
    opacity: 1;
}
.index-main .title-wrapper-1 span,
.index-main .title-wrapper-1 a{
    opacity: 0;
}
.title-wrapper-1 span.line{
    width: 100%;
    height: 0;
    margin-left: 0%;
    margin-top: 7%;
    border: 1px solid #fff;
}
.title-wrapper-1 a.more{
    display: block;
    width: 40%;
    margin: 7% auto 0;
    padding: 2% 0;
    color: #fff;
    background: #cd1c19;
    font-size: 1.2em;
    text-align: center;
    border-radius: 5px;
}
.index-main .title span.first{
    display: inline-block;
    width: 100%;
    font-size: 1.6em;
    text-align: center;
}
.index-main .title span.second{
    display: inline-block;
    width: 100%;
    font-size: 0.6em;
    word-spacing: -0.2em;
    text-align: center;
}
.index-main .exhibition:hover .title-wrapper-1 span,
.index-main .collection:hover .title-wrapper-1 span,
.index-main .open:hover .title-wrapper-1 span,
.index-main .activity:hover .title-wrapper-1 span{
    opacity: 1;
}
.index-main .exhibition:hover .title-wrapper-1 a,
.index-main .collection:hover .title-wrapper-1 a,
.index-main .open:hover .title-wrapper-1 a,
.index-main .activity:hover .title-wrapper-1 a{
    opacity: 1;
}
.index-main .exhibition:hover .title-wrapper-2 span,
.index-main .collection:hover .title-wrapper-2 span,
.index-main .open:hover .title-wrapper-2 span,
.index-main .activity:hover .title-wrapper-2 span{
    opacity: 0;
    opacity: 1\0;
}
/*mouse hover end*/

/*dynamic start*/
#wenbo_dynamic{
	position: relative;
    /* display: block;
    position: absolute;
    width: 100%;
    height: 100%; */
    /* border: 1px solid forestgreen;*/
}
.index-main .news-wrapper span{
    display: block;
}

.index-main .news-wrapper .news-title,
.index-main .news-wrapper a.item-more{
    position: absolute;
    /* transform: rotate(45deg); */
}
.index-main .news-wrapper .news-title{
    top: 15.5%;
    right: 0%;
    width: 30%;
}
.index-main .news-wrapper .news-title span{
    color: #cd1c19;
    text-align: center;
}
.index-main .news-wrapper .news-title span.up{
    font-size: 2em;
}
.index-main .news-wrapper .news-title span.down{
    word-spacing:0px;
}
.index-main .news-wrapper a.item-more{
    position: absolute;
	top: -63px;
	right: 0;
	color: #535353;
}
.index-main .news-wrapper a.item-more:hover{
    background: #94110f;
}

/*iscroll start*/
.iScrollVerticalScrollbar {
    position: absolute;
    z-index: 9999;
    width: 8px;
    bottom: 2px;
    top: 2px;
    right: 2px;
    background: #DBDBDB;
    overflow: hidden;
}

.iScrollVerticalScrollbar.iScrollBothScrollbars {
    bottom: 18px;
}

.iScrollIndicator {
    position: absolute;
    background: #121212;
    border-radius: 2px;
}

.iScrollVerticalScrollbar .iScrollIndicator {
    width: 100%;
}

/* #wrapper_wenbo,#wrapper_yibo {
    position: absolute;
    left: 19%;
    top: 27%;
    width: 65%;
    height: 54.69%;
    margin:0;
    background-color: transparent;
    z-index: 100;
    overflow: hidden;

}

#scroller_wenbo,#scroller_yibo {
    position: absolute;
    z-index: 1;

    -webkit-tap-highlight-color: rgba(0,0,0,0);
    width: 90%;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -o-text-size-adjust: none;
    text-size-adjust: none;
}

#scroller_wenbo ul,#scroller_yibo ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;

}

#scroller_wenbo li,#scroller_yibo li {
    display: block;
    float: none;
    padding: 0;
    height: 60px;
    border-bottom: 1px solid #707070;
    /*background-color: transparent;*/
}

#scroller_wenbo li a,#scroller_yibo li a{
    color: #333;
    text-decoration: none;
}

#scroller_wenbo h3.date,#scroller_yibo h3.date{
    margin-top: 10px;
    color: #000;
    font-size: 1em;
    text-align: left;
}

#scroller_wenbo p,#scroller_yibo p{
	display:inline-block;
    width: 75%;
    margin-top: 10px;
    font-size: 1.20em;
    color: #000;
    text-indent: 0;
    height: 32px;
    line-height: 32px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
} */

/*iscroll end*/

/*dynamic end*/


/*calendar start*/

.calendar-wrapper {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;

    transform: rotate(-45deg);
    /*border: 1px solid firebrick;*/
}
.calendar-wrapper .title {
    width: 100%;
    color: #cd1c19;
    transform: rotate(0deg);
    /*border: 1px solid forestgreen;*/
}
.calendar-wrapper .title span.first{
    display: block;
    width: 100%;
    font-size: 1.5em;
    text-align: center;
}
.calendar-wrapper .title span.second{
    display: block;
    font-size: 0.8em;
    text-align: center;
}
.index-cal{
    position: relative;
    display: block;
    width: 59.65%;
    height: 59.65%;
    margin-left: 20.18%;
    margin-top: 30%;

    color: #333;

    z-index: 2000;
}
.index-cal:hover{
    color: #333;
}
#index_calendar{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    background: #e9e9e9;
    box-shadow: 0 2px 2px rgba(0,0,0,.2);
    /*border: 1px solid fuchsia;*/
}
.big-mark{
    position:absolute;
    /* left:50%;*/
    top:0;
    margin-left:-3px;
    width:4px;
    height:12px;
    background:transparent;
    font-size: 0.8em;
    color: #666;
    transform-origin:50% 0%;
    -moz-transform-origin:50% 0%;
    -webkit-transform-origin:50% 0%;
    -o-transform-origin:50% 0%;
    -ms-transform-origin:50% 0%;

}


.big-mark i{
    position:absolute;
    left:-100%;
    top:12px;
    color: #333;
    font:700 1em Arial;
}

#cal_year,#cal_month,#cal_day{

    font-family: 'Arial Black';
    font-size: 1em;
    font-weight: bolder;
    text-align: center;
    /* border: 1px solid firebrick;*/
    transform: translate(-50%,0);
}
#cal_year{
    position: absolute;
    top: 70%;
    left: 50%;
    width: 100px;
}
#cal_month{
    position: absolute;
    top: 15%;
    left: 50%;
}
#cal_day{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 2em;
}

.dot{
    position: absolute;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left:-5px;

    background: #cd1c19;
    border-radius: 50%;
}

a.english{
    display: block;
    position: absolute;
    top: 765px;
    right: -1%;
    width: 3.39%;
    height: 0;
    padding-bottom: 4.64%;

    background: url("../img/index/english.png") no-repeat center;
    background-size: 100% 100%;

    z-index: 500;

    transition: .5s right;

   /* border: 1px solid firebrick;*/
}

a.english:hover{
    right: 0;
}

a.search{
    display: block;
    position: absolute;
    top: 690px;
    right: -1%;
    width: 3.39%;
    height: 0;
    padding-bottom: 3.64%;

    background: url("../img/index/search_side.png") no-repeat center;
    background-size: 100% 100%;

    z-index: 500;

    transition: .5s right;

    /* border: 1px solid firebrick;*/
}

a.search:hover{
    right: 0;
}

a.follow{
    display: block;
    position: fixed;
    top: 600px;
    right: -1%;
    width: 3.39%;
    height: 0;
    padding-bottom: 4.64%;
	background: #A1867C;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
    /* background: url("../img/index/follow.png") no-repeat center; */
    /* background-size: 100% 100%; */

    /*border: 1px solid firebrick;*/

    z-index: 500;

    transition: .5s right;
}

a.follow:hover{
    right: 0;
}

.weixin{
    display: block;
    max-width: 46.51%;
    margin: 28% 20% 0 20%;
}

.weibo{
    display: block;
    max-width: 46.51%;
    margin: 30% 30% 0 20%;
}

.tdc,.tdc2 {
    display: none;
    position: absolute;
    top: 43%;
    right: 4%;

    max-width: 6.98%;
    z-index: 500;
}
/*calendar end*/

/*媒体查询*/
@media (min-width: 1380px) and (max-width: 1440px) {
    .index-wrapper{
        width: 85%;
    }
}

@media (min-width: 1200px) and (max-width: 1379px) {
    .index-wrapper{
        width: 85%;
    }

    #wrapper_wenbo li,#wrapper_yibo li{
        height: 85px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .index-wrapper{
        width: 85%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .index-wrapper{
        width: 85%;
        font-size: 80%;
    }

    #wrapper_wenbo li,#wrapper_yibo li{
        height: 70px;
    }
}

@media (max-width: 767px) {

    .index-wrapper{
       font-size: 70%;
    }

    nav ul.lists li.list{
        width: 90%;
        margin: 0 5%;
    }

    #wrapper_wenbo li,#wrapper_yibo li{
        height: 45px;
    }

    #wrapper_wenbo h3.date ,#wrapper_yibo h3.date{
        /*margin-top: 10px;*/
        margin:0
    }

    #wrapper_wenbo a p ,#wrapper_yibo a p{
        /*margin-top: 0px;*/
        margin:0;
        font-size: 1.2em;
        height: 28px;
        line-height: 28px;
    }

    .index-main{
        height: auto;
    }

    .index-wrapper{
        width: 100%;
        height: 1300px;
        margin: 0 auto;
    }
	.index-main .dynamic{
		margin:100px 0 10px 0;
	}
	.index-main .open{
		margin-top:0;
	}
    .index-main .calendar{
        margin-left: 58%;
        margin-top: 75.9%;
    }

    .index-main .map{
        margin-left: 36%;
        margin-top: 83.5%;
    }

    .index-main .share{
        margin-left: 27%;
        margin-top: 93%;
    }
    .link{
        width:100%;
        padding-left: 10%!important;
        padding-right:10%!important;
    }

}

/***************************************************************************************************
                                    资讯-文博动态/艺博动态
***************************************************************************************************/
.info-logo{
    top: 293px;
}

/*媒体查询*/
@media (min-width: 1380px) and (max-width: 1440px) {
    .info-logo{
        left: 45%;
        top: 210px;
    }
}

@media (min-width: 1200px) and (max-width: 1379px) {
    .info-logo{
        left: 43.5%;
        top: 170px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .info-logo{
        left: 42.5%;
        top: 130px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .info-logo{
        left: 43.5%;
        top: 170px;
    }
}

@media (max-width: 767px) {
    .info-logo{
        left: 40%;
        top: 90px;
    }
}

.info-banner{
    display: block;
    max-width: 100%;
    height: auto;
}
.info-second-stage .col-item,.activity-second-stage .col-item,.edu-second-stage .col-item,.list-level2 .col-item{
    display: inline-block;
    height: 150px;
    line-height: 150px;
    padding: 0;
    margin-bottom: 25px;
}
.col-item-plane{
    background-position: center center;
    background-repeat:no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left:20px;
    right: 20px;
    height: 100%;
    overflow: hidden;
}

.info-second-stage .col-item a,.activity-second-stage .col-item a,.edu-second-stage .col-item a{
/*    display: inline-block;
    width: 94.11%;
    height: auto;
    line-height: 150px;
    color: #fff;
    text-align: center;
    font-size: 1.875em;
    font-weight: bold;
    box-shadow: 5px 5px 5px rgba(0,0,0,.1);*/
}


.info-second-stage .col-item a{
    display: block;
    position: relative;
    margin: 0;
    line-height: 0;
  /*  border: 3px solid firebrick;*/

}

.info-second-stage div.col-item:nth-child(2) a{
    margin-left: 2.95%;
}

.info-second-stage div.col-item:last-child a{
    float: right;
}

.info-second-stage .col-item a .mask{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3%;
    background: rgba(0,0,0,0.4);
    z-index: 5;

   /* border: 1px solid firebrick;*/
}
.info-second-stage .col-item a:hover .mask{
    background: rgba(0,0,0,0);
}
.info-second-stage a.col-active .mask{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3%;
    background: rgba(0,0,0,0);
    z-index: 5;
}
.info-second-stage .col-item a .circle-selected{
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    margin: 0 -14.23%;
    width: 28.46%;
    height: 100%;
    background: rgba(255,0,0,0);
    border-radius: 50%;
    z-index: 10;
}
.info-second-stage .col-item a:hover .circle-selected{
    background: rgba(167,25,49,0.6);
}

.info-second-stage a.col-active .circle-selected{
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    margin: 0 -14.23%;
    width: 28.46%;
    height: 100%;
    background: rgba(167,25,49,0.6);
    border-radius: 50%;
    z-index: 10;
}

.info-second-stage .col-item a img.info-icon{
    display: block;
    position: absolute;
    top: 41.33%;
    left: 34.91%;
    max-width: 4.93%;
    z-index: 50;

}
.info-second-stage .col-item a:hover img.info-icon{
    top: 21.33%;
    left: 47.5%;
}

.info-second-stage a.col-active  img.info-icon{
    display: block;
    position: absolute;
    top: 21.33%;
    left: 47.5%;
    z-index: 50;

}

.info-second-stage .col-item a .info{
    display: block;
    position: absolute;
    top: 50%;
    left: 43.26%;
    font-size: 1em;
    color: #fff;
    z-index: 50;

    font-weight: normal;
}
.info-second-stage .col-item a:hover .info{
    top: 60%;
    left: 38.26%;
}

.info-second-stage a.col-active  .info{
    display: block;
    position: absolute;
    top: 60%;
    left: 38.26%;
    font-size: 1em;
    color: #fff;
    z-index: 50;
}

.info-second-stage .col-item a img{
    display: block;
    margin: 0;
    max-width: 100%;
}


/*second-stage-title end*/

.info-intro-wrapper{
}

/*news start*/
 #wenbo_dynamic,#yibo_dynamic{
	position: relative;
    width: 100%;
    height: 70%;
	padding-right: 15px;
	overflow-x: hidden;
	overflow-y:auto;
    margin: 0;
   /* border: 1px solid firebrick;*/
}

 #wenbo_dynamic{
     display: block;
 }
 #yibo_intro{
     display: block;
 }
 #yibo_dynamic{
     display: block;
 }
 .info-titles p{
    display: block;
    width: 93.69%;
    height: 60px;
    margin: 45px auto 0;
    background-color: #F5F5F5;
    border-top: 4px solid #CDCDCD;
    border-bottom: 4px solid #CDCDCD;

}
.info-titles p span{
    display: inline-block;
    height: 100%;
    line-height: 56px;
    color: #333;
    font-family: '黑体';
    font-size: 1.375em;
    font-weight: bold;

   /* border: 1px solid firebrick;*/
}
.info-titles p span.time{
    width: 12%;
    margin-left: 3.56%;
    overflow: hidden;
}
.info-titles p span.title{
    width: 46%;
    padding-left: 12%;
    overflow: hidden;
}
.info-titles p span.author{
    width: 15%;
    padding-left: 4%;
    overflow: hidden;
}
.info-titles p span.source{
    width: 15%;
    padding-left: 4%;
    overflow: hidden;
}

.info-lists{
    width: 100%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
}
.info-lists ul{
    display: block;
    width: 93.69%;
    height: auto;
    margin: 0 auto 60px;
}
.info-lists ul li{
    float: none;
    display: inline-block;
    width: 100%;
    height: 60px;
    margin-left: 0;
    border-bottom: 2px solid #E4E4E4;
}
.info-lists ul li:nth-child(2n),.edu-lists ul li:nth-child(2n){
	background: #DFEAF0;
}
.service-type .info-lists ul li:nth-child(2n){
	background: #fff;
}
.info-lists ul li span{
    display: inline-block;
    margin: 0;
    height: 100%;
    line-height: 60px;
    font-family: '黑体';
    font-size: 1.1em;
    font-weight: normal;
   /* border: 1px solid firebrick;*/
}
.info-lists ul li span.time{
    width: 12%;
    margin-left: 3.558%;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.info-lists ul li span.title{
    width: 48%;
    padding-left: 8%;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.info-lists ul li span.author{
    width: 10%;
    padding-left: 2%;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.info-lists ul li span.source{
    width: 18%;
    padding-left: 3%;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.info-lists{
    width: 100%;
}

/*媒体查询*/
@media (min-width: 1380px) and (max-width: 1439px) {
}

@media (min-width: 1200px) and (max-width: 1379px) {
    #infoSecTitle{
        font-size: 1em;
    }

    .info-lists ul li span.title{
        width: 46%;
        padding-left: 6%;
    }

    .info-lists ul li span.author{
        width: 12%;
        padding-left: 3%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .info-lists ul li span{
        font-size: 1em;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #infoSecTitle{
        font-size: 1em;
    }

    .info-lists ul li span{
        font-size: 1em;
    }
}

@media (max-width: 767px) {
    #infoSecTitle{
        font-size: 0.9em;
    }

    #wenbo_dynamic1,#yibo_dynamic1{
        font-size: 70%;
    }

    .info-lists ul li span.time{
        width: 12%;
        display: none;
    }
    .info-lists ul li span.title{
        width: 100%;
        padding-left: 6%;
    }

    .info-lists ul li span.author{
        width: 12%;
        padding-left: 2%;
        display: none;
    }
    .info-lists ul li span.source{
        width: 19%;
        display: none;
    }
}

/*文博艺博内内容页底部列表*/
.info__page--jump{
    /*border: 1px solid firebrick;*/
}
.info__page--jump ul{
    float: left;
    width: 50%;
    height: auto;
}
.info__page--jump ul li{
    display: block;
    float: none;
    margin-bottom: 5px;
   /* border: 1px solid firebrick;*/
}

.info__page--jump ul li a{
    color: #333;
}

.info__page--jump ul li a:hover{
    color: #cd1c19;
    text-decoration: none;
}

.info__content--back{
    display: block;
    float: right;
    width: 6%;
    height: 0;
    margin-top: 15px;
    padding-bottom: 3%;
    padding-right: 10px;
    line-height: 2.3em;
    text-align: right;
    color: #333;
    background: url("../img/common/back.png") no-repeat 10% center;
    border: 1px solid #cdcdcd;
    border-radius: 2px;
}
/*news end*/
/*main end*/
/*************************************************************************************************
                                     艺博简介-场馆介绍
**************************************************************************************************/
.main .wrapper .art-brief{
    height: auto;
}
.venue-intro-items{
    width: 76.19%;
    margin: 38px 11.90% 44px;
    height: 60px;
    border: 1px solid #e5e5e5;
}

/*clear float*/
.venue-intro-items ul{
    display: inline-block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    zoom: 1;
}
.venue-intro-items ul li{
    display: inline-block;
    width: 25%;
    height: 100%;
    border-right: 1px solid #e5e5e5;
}

.venue-intro-items ul li a{
    display: inline-block;
    width: 100%;
    height: 100%;
    line-height: 60px;
    color: #666;
    text-align: center;
    font-family: 黑体;
    font-size: 1.625em;
    font-weight: bold;
    text-decoration: none;
    overflow: hidden;
}

.venue-intro-items ul li a.active{
    color: #a61a30;
    background: #f2f2f2;
    border-bottom: 2px solid #a61a30;
    text-decoration: none;
}

/*媒体查询*/
@media (min-width: 1380px) and (max-width: 1440px) {
    .venue-intro-items ul li a{
        font-size: 1.5em;
    }
}

@media (min-width: 1200px) and (max-width: 1379px) {

}

@media (min-width: 992px) and (max-width: 1199px) {
    .venue-intro-items ul li a{
        font-size: 1.5em;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

}

@media (max-width: 767px) {
    .venue-intro-items ul li a{
        font-size: 0.6em;
    }
}

.venue-intro-body{
    margin-bottom: 54px;
    padding-bottom: 20px;
}

.venue-intro-body .detail{
    display: block;
    width: 100%;
    height: auto;
    padding-bottom: 20px;
}

.venue-intro-body .detail h1{
    display: block;
    width: 100%;
    margin-bottom: 34px;
    color: #333;
    text-align: center;
    font-family: 黑体;
    font-size: 1.625em;
    font-weight: bold;
    letter-spacing: 3px;
}

.venue-intro-body .detail p{
    display: inline-block;
    width: 76.19%;
    margin-left: 11.90%;
    line-height: 2;
    color: #333;
    font-family: 黑体;
    font-size: 1.125em;
    letter-spacing: 1px;
}

#venue_intro .img-wrapper{


}

#venue_intro .venue-img{
    display: block;
    max-width: 57.5%;
    margin: 64px auto 90px;
}



#former_curator{
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

#former_curator .time-axis{
    display: block;
    margin: 125px auto 205px;
    width: 0;
    height: 1316px;
    border-left: 1px solid #7F1600;
}

#former_curator span.time-point, #former_curator span.time, #former_curator span.time-s, #former_curator span.curator,#former_curator p.brief{
    position: absolute;
    right: 50%;
}

#former_curator span.time-point{

    top: 0px;
    width: 8px;
    height: 8px;
    margin-right: -4px;
    border-radius: 100%;
    background: #811701;
}

#former_curator span.time{
    top: 0;
    margin-right: 1.31%;
    margin-top: -12px;
    color: #2E2E2E;
    font-family: 黑体, Sans-Serif;
    font-size: 1.5em;
}
#former_curator span.time-s{
    top: 24px;
    margin-right: 1.31%;
    color: #000;
    font-family: Sans-Serif;
    font-size: 0.875em;
}

#former_curator span.curator{
    left: 50%;
    top: 0;
    margin-left: 1.31%;
    margin-top: -12px;
    width: 12%;
    color: #2E2E2E;
    font-family: 黑体, Sans-Serif;
    font-size: 1.5em;
    white-space: nowrap;


   /* border: 1px solid forestgreen;*/
}
#former_curator p.brief{
    display: block;
    left: 50%;
    top: 24px;
    margin-left: 1.31%;
    width: 25%;
    color: #888;
    font-family: Sans-Serif;
    font-size: 0.875em;
    /*border: 1px solid forestgreen;*/
}

/*#former_curator span.time-point:nth-child(3),#former_curator span.time:nth-child(12),#former_curator span.curator:nth-child(30){
    top: 116px;
}
#former_curator span.time-point:nth-child(4),#former_curator span.time:nth-child(13),#former_curator span.curator:nth-child(31){
    top: 308px;
}
#former_curator span.time-point:nth-child(5),#former_curator span.time:nth-child(14),#former_curator span.curator:nth-child(32){
    top: 510px;
}
#former_curator span.time-point:nth-child(6),#former_curator span.time:nth-child(15),#former_curator span.curator:nth-child(33){
    top: 644px;
}
#former_curator span.time-point:nth-child(7),#former_curator span.time:nth-child(16),#former_curator span.curator:nth-child(34){
    top: 846px;
}
#former_curator span.time-point:nth-child(8),#former_curator span.time:nth-child(17),#former_curator span.curator:nth-child(35){
    top: 1048px;
}
#former_curator span.time-point:nth-child(9),#former_curator span.time:nth-child(18),#former_curator span.curator:nth-child(36){
    top: 1182px;
}
#former_curator span.time-point:nth-child(10),#former_curator span.time:nth-child(19),#former_curator span.curator:nth-child(37){
    top: 1316px;
}
#former_curator span.time-s:nth-child(21),#former_curator p.brief:nth-child(39){
    top: 140px;
}
#former_curator span.time-s:nth-child(22),#former_curator p.brief:nth-child(40){
    top: 332px;
}
#former_curator span.time-s:nth-child(23),#former_curator p.brief:nth-child(41){
    top: 534px;
}
#former_curator span.time-s:nth-child(24),#former_curator p.brief:nth-child(42){
    top: 668px;
}
#former_curator span.time-s:nth-child(25),#former_curator p.brief:nth-child(43){
    top: 870px;
}
#former_curator span.time-s:nth-child(26),#former_curator p.brief:nth-child(44){
    top: 1072px;
}
#former_curator span.time-s:nth-child(27),#former_curator p.brief:nth-child(45){
    top: 1206px;
}
#former_curator span.time-s:nth-child(28),#former_curator p.brief:nth-child(46){
    top: 1340px;
}*/



#wanshou_temple{
    display: none;
    width: 76.07%;
    /* height: 1500px; */
    margin: 0 auto;
}

#wanshou_temple .image-text{
    width: 100%;
    /* height: 70.22%; */
    margin: 0;
   /* border: 1px solid forestgreen;*/
}

#wanshou_temple .image-text img.model{
    display: block;
    /* float: left; */
	width:60%;
    margin: 20px auto;
    /* max-width: 44.13%; */
}

#wanshou_temple .image-text .image-text-right{
    position: relative;
    display: block;
    margin-left: 5.9%;
    width: 49.92%;
    height: 1010px;
    /*border: 1px solid firebrick;*/
}

#wanshou_temple .image-text .show-area{
    position: relative;
    display: block;
    float: right;
    margin: 0;
    height: 544px;
    width: 49.92%;
    overflow: hidden;
}

#wanshou_temple .image-text .show-area img{
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 100%;
}

#wanshou_temple .image-text .show-area .brief-intro{
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    background-color: rgba(0,0,0,.5);
}

#wanshou_temple .image-text .show-area .brief-intro p{
    display: block;
    width: 86.51%;
    height: auto;
    margin: 6px auto;
    color: #fff;
    font-family: 黑体,'sans-serif';
    font-size: 0.875em;

    text-indent: 0;
}

#wanshou_temple h3{
    display: block;
    width: 100%;
    color: #333;
    text-align: center;
    font-family: 黑体, 'sans-serif';
    font-size: 1.625em;
    font-weight: bold;

}
#wanshou_temple p{
    margin-top: 40px;
    line-height: 1.875em;
    color: #333;
    font-family: 黑体, 'sans-serif';
    font-size: 1.125em;
    text-indent: 2.25em;
}
#wanshou_temple p.last{
    margin-top: 0;
}

#wanshou_temple .image-text{
    margin-top: 40px;
}
/******************************万寿寺滚动条start*****************************/
.temple-border{
    position: relative;
    float: left;
    width: 49.92%;
    margin-left: 5.48%;
    background-color: #fff;
    -moz-box-shadow: 5px 5px 7px rgba(34,23,20,.1),-5px 5px 7px rgba(34,23,20,.1);
    -ms-box-shadow: 5px 5px 7px rgba(34,23,20,.1),-5px 5px 7px rgba(34,23,20,.1);
    box-shadow: 5px 5px 7px rgba(34,23,20,.1),-5px 5px 7px rgba(34,23,20,.1);
}
#temple_wrapper{
    position: relative;
    width: 100%;
    padding-left:5%;
    height: 466px;
}


#temple_wrapper ul{
    width: 100%;
}



#temple_wrapper .scroll-list {
    width: 100%;
    float:none;
    height: 122px;
    margin: 0;
    padding-top: 20px;
    cursor: pointer;
}
#temple_wrapper .scroll-list:hover{
    background: #F2F2F2;
}

#temple_wrapper .active{
    background: #F2F2F2;
}

#wanshou_temple .scroll-list img{
    display: block;
    float: left;
    max-width: 26.69%;
    margin: 0 0 0 3.56%;
}
#wanshou_temple .scroll-list .brief{
    float: left;
    width: 59.61%;
    margin-left: 5.70%;
}
#wanshou_temple .scroll-list .brief h4{
    margin: 0;
    padding-bottom: 8px;
    color: #131313;
    font-family: 黑体,'sans-serif';
    font-size: 1.125em;
    font-weight: bold;
    border-bottom: 1px solid #333;
}
#wanshou_temple .scroll-list .brief .brief-p{
    display: block;
    margin-top: 18px;
   /* border: 1px solid firebrick;*/
}
#wanshou_temple .scroll-list .brief .brief-p span{
    display: block;
    float: left;
    width: 6px;
    height: 6px;
    margin-top: 5px;
    background: #7d7d7d;
}
#wanshou_temple .scroll-list .brief .brief-p p{
    display: block;
    float: right;
    width: 95%;
    margin: 0;
    color: #000;
    line-height: 1.5em;
    font-family: 黑体, 'sans-serif';
    font-size: 0.875em;
    font-weight: 500;
    text-indent: 0;
   /* border: 1px solid firebrick;*/
}

/*媒体查询*/
@media (min-width: 1380px) and (max-width: 1440px) {
    .venue-intro-body{
       padding-bottom: 40px;
    }
    #wanshou_temple .scroll-list{
       height: 140px;
    }

    #wanshou_temple .image-text .show-area{
        height: 400px;
    }
}

@media (min-width: 1200px) and (max-width: 1379px) {
    .venue-intro-body{
        height: auto;
        padding-bottom: 20px;
    }
    #wanshou_temple .scroll-list{
        height: auto;
    }

    #wanshou_temple .scroll-list img{
        display: block;
        float: none;
        max-width: none;
        width: 100%;
        margin: 0 ;
    }
    #wanshou_temple .scroll-list .brief{
        float: none;
        width: 100%;
        margin: 0;
    }

    #wanshou_temple .scroll-list .brief{
        margin-top: 20px;
    }

    #wanshou_temple .image-text .show-area{
        height: 350px;
    }

}

@media (min-width: 992px) and (max-width: 1199px) {
    .venue-intro-body{
        display: block;
        height: auto;
    }

    #wanshou_temple{
        height: 1700px;
    }
    #wanshou_temple .scroll-list{
        height: auto;
    }

    #wanshou_temple .scroll-list img{
        display: block;
        float: none;
        max-width: none;
        width: 100%;
        margin: 0 ;
    }
    #wanshou_temple .scroll-list .brief{
        float: none;
        width: 100%;
        margin: 0;
    }

    #wanshou_temple .scroll-list .brief{
        margin-top: 20px;
    }

    #wanshou_temple .image-text .show-area{
        width: 100%;
    }

    #wanshou_temple .image-text .show-area img{
        max-width: none;
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #temple_wrapper{
        position: relative;
        width: 88.09%;
        height: 400px;
        margin: 0 auto;
    }

    .venue-intro-body{
        display: block;
        height: auto;
    }

    #wanshou_temple{
        height: 1600px;
    }

    .temple-border{
        height: 400px;
    }

    #wanshou_temple .scroll-list{
        height: auto;
    }

    #wanshou_temple .scroll-list img{
        display: block;
        float: none;
        max-width: none;
        width: 100%;
        margin: 0 ;
    }
    #wanshou_temple .scroll-list .brief{
        float: none;
        width: 100%;
        margin: 0;
    }

    #wanshou_temple .scroll-list .brief{
        margin-top: 20px;
    }

    #wanshou_temple .image-text .show-area{
        width: 100%;
        margin: 20px auto;
        height: 400px;
    }

    #wanshou_temple .image-text .show-area img{
        max-width: none;
        width: 100%;
    }
}

@media (max-width: 767px) {
    #wanshou_temple{
        height: 1600px;
    }

    .temple-border{
        height: 400px;
    }

    #wanshou_temple .scroll-list{
        height: auto;
    }

    #wanshou_temple .scroll-list img{
        display: block;
        float: none;
        max-width: none;
        width: 100%;
        margin: 0 ;
    }
    #wanshou_temple .scroll-list .brief{
        float: none;
        width: 100%;
        margin: 0;
    }

    #wanshou_temple .scroll-list .brief{
        margin-top: 20px;
    }

    #wanshou_temple .image-text .show-area{
        width: 100%;
        margin: 20px auto;
        height: 300px;
    }

    #wanshou_temple .image-text .show-area img{
        max-width: none;
        width: 100%;
    }
}
/******************************万寿寺滚动条end*****************************/

#yibo_style{
    display: none;
    width: 76.07%;
    height: auto;
    margin: 0 auto;
}

#yibo_style ul.seasons-album{
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
}
#yibo_style ul.seasons-album li{
    display: block;
    width: 100%;
    min-height: 250px;
    margin: 20px 0 0;
    border-bottom: 1px solid #aaa;
    overflow: hidden;
}
#yibo_style ul.seasons-album li:first-child{
    margin-top: 0;
}
#yibo_style ul.seasons-album li .img-wrapper{
    float: left;
/*    width: 28.17%;
    padding: 7px 0;
    background: #E2D9CF;*/
    height:214px;
    position: relative;

}
#yibo_style ul.seasons-album li .img-wrapper .plane{
    position: absolute;
    left:17px;
    right:17px;
    top:0;
    bottom: 0;
    background: #E2D9CF;
}
#yibo_style ul.seasons-album li .img-wrapper .plane .bg{
    position: absolute;
    top:8px;
    left:8px;
    right: 8px;
    bottom:8px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
#yibo_style ul.seasons-album li .img-wrapper img{
    display: block;
    max-width: 96.76%;
    margin: 0 1.67%;
}

#yibo_style ul.seasons-album li .right{
    position: relative;
    display: block;
    float: left;
    font-family: 黑体,'sans-serif';
}
#yibo_style ul.seasons-album li .right h3{
    display: block;
    margin: 0;
    color: #323232;
    font-size: 1.5em;
    font-weight: bold;

}#yibo_style ul.seasons-album li .right h4{
    color: #333;
    font-size: 1.125em;
 }
#yibo_style ul.seasons-album li .right p{
    display: block;
    width: 82.01%;
    color: #333;
    line-height: 33px;
    font-size: 1.125em;
    text-indent: 2.25em;
    height:99px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
}
#yibo_style ul.seasons-album li .right a.more{
    display: block;
    position: relative;
    float: right;
    width: 90px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    background: #cd1c19;
    font-size: 1em;
    text-align: center;
    border-radius: 10%;
    margin-bottom: 20px;
}

#season_album,.season_album{
    display: block;
    width: 76.07%;
    height: auto;
    margin: 54px auto;
   /* border: 1px solid forestgreen;*/
}
#season_title,.season_title{
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    color: #333;
    font-family: 黑体, 'sans-serif';
    font-size: 1.625em;
    text-align: center;
}

#season_album,.season_album{
    display: none;
}

#season_album .season_wrapper,.season_album .season_wrapper{
    position: relative;
    width: 82.94%;
    padding-bottom: 70.42%;
    margin: 50px auto 0;
    margin-bottom: 16.67%;
    
   /* border: 1px solid forestgreen;*/
}

#season_album .season_wrapper .big-container,.season_album .season_wrapper .big-container{
    width: 100%;
    height: 70%;
    overflow: hidden;
    /*border: 1px solid firebrick;*/
}

#season_album .season_wrapper .big-container ul li img,.season_album .season_wrapper .big-container ul li img{
    width: 100%;
    height: 100%;
}

#preview_container,.preview_container{
    width: 100%;
    height: 14%;
    background: #000;
    overflow: hidden;
}

#preview_container ul li .share,.preview_container ul li .share{
    cursor: pointer;
}

#preview_list,.preview_list{
    display: block;
    width: auto;
    height: 76%;
    margin: 9px 0;
    float: left;
    overflow: hidden;
    position: absolute;
   /* border: 1px solid forestgreen;*/
}

#season_album .season_wrapper .btn,.season_album .season_wrapper .btn{
    position: absolute;
    top: 40%;
    width: 56px;
    height: 68px;
    background: rgba(167,19,31,.8);
   /* border-radius: 0 10% 10% 0;*/
}

#season_album .season_wrapper .btn img,.season_album .season_wrapper .btn img{
    display: block;
    margin: 14px 0;
}

#left_btn,.left_btn{
    left: 0;
}

#right_btn,.right_btn{
    right: 0;
    border-radius: 10% 0 0 10%;
}
#right_btn img,.right_btn img{
    margin: 14px 0 10px;
}

#season_album p,.season_album p{
    display: block;
    width: 100%;
    color: #333;
    line-height: 1.5em;
    font-size: 1.125em;
    text-indent: 2.25em;
   /* border: 1px solid firebrick;*/
}
#season_album p.img-brief,.season_album p.img-brief{
    margin-top: 50px;
    text-align: center;
    text-indent: 0;
    font-weight: bold;
}

#season_album .page-jump,.season_album .page-jump{
    display: block;
    width: 100%;
    height: auto;
    margin: 80px 0 0;
   /* border: 1px solid forestgreen;*/
}

 .page-jump button{
    display: inline-block;
    float: right;
    line-height: 40px;
    border:1px solid #999;

    cursor: pointer;

     margin-bottom: 15px;
}

 .page-jump button.back{
    width: 75px;
    height: 40px;
    text-indent: 1.5em;
    background: url("../img/common/back.png") no-repeat 10% center;
}

.page-jump button.next, .page-jump button.prev{
    width: 90px;
    height: 40px;
    margin-left: 25px;
}
.page-jump button.next{
    text-indent: -0.8em;
    background: url("../img/common/pagedown.png") no-repeat 90% center;
}
 .page-jump button.prev{
    text-indent: 0.5em;
    background: url("../img/common/pageup.png") no-repeat 10% center;
}


/*媒体查询*/
@media (min-width: 1380px) and (max-width: 1440px) {
  #preview_container{
      height: 150px;
  }

  #preview_list,.preview_list{
    height: 80%;
  }
}

@media (min-width: 1200px) and (max-width: 1379px) {
    #yibo_style ul.seasons-album li .right a.more{
        width: 15%;
    }

    #preview_container{
        height: 150px;
    }

    #preview_list,.preview_list{
        height: 80%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    #yibo_style ul.seasons-album li .right a.more{
        width: 15%;
    }

    #yibo_style ul.seasons-album li .right a.more{
        width: 15%;
    }

    #preview_container{
        height: 120px;
    }

    #preview_list,.preview_list{
        height: 80%;
        margin: 12px 0;
    }

    #preview_list img,.preview_list img{
        max-width: none;
        height: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #yibo_style ul.seasons-album li .img-wrapper{
        float: none;
        width: 100%;
    }
    #yibo_style ul.seasons-album li .img-wrapper img{
        width: 100%;
    }

    #preview_container{
        height: 120px;
    }

    #preview_list,.preview_list{
        height: 80%;
        margin: 12px 0;
    }

    #preview_list img,.preview_list img{
        max-width: none;
        height: 100%;
    }

    #preview_container{
        display: none;
    }

    #yibo_style ul.seasons-album li .right{
        float: none;
        width: 100%;
        margin-top: 20px;
    }

    #yibo_style ul.seasons-album li .right a.more{
        width: 15%;
    }
}

@media (max-width: 767px) {
    #yibo_style{
        height: 2800px;
    }
    #yibo_style ul.seasons-album li .img-wrapper{
        float: none;
        width: 100%;
    }
    #yibo_style ul.seasons-album li .img-wrapper img{
        width: 100%;
    }

    #preview_container{
        display: none;
    }

    #yibo_style ul.seasons-album li .right{
        float: none;
        width: 100%;
        margin-top: 20px;
    }

    #yibo_style ul.seasons-album li .right a.more{
        width: 15%;
    }
}

/***********************************************************************************************
                                  艺博网站-藏品
************************************************************************************************/
.collection-logo{
    top: 14.2%;
}
.collection-second-stage{
    display: block;
    height: 150px;
   /* border: 1px solid firebrick;*/
}
.collection-second-stage .collection-item{
    height: 100%;
    padding: 0;
   /* border: 1px solid forestgreen;*/
}

.collection-second-stage .collection-item a{
     float: left;
     margin-left: 0;
 }


.collection-second-stage  a{
    position: relative;
    display: block;
    width: 88.56%;
    margin: 0;
    color: #fff;
}

.collection-second-stage img{
    max-width: 100%;
}

.collection-second-stage a .collection{
    color: #fff;
}

.collection-second-stage a .mask{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3%;
    background: rgba(0,0,0,0.4);
    z-index: 5;

   /* border: 1px solid firebrick;*/
}
.collection-second-stage  a:hover .mask,
.collection-second-stage  a.col-active .mask{
    background: rgba(0,0,0,0);
}
.collection-second-stage  a .circle-selected{
    display: block;
    position: absolute;
    left: 19.51%;
    top: 0;
    width: 60.98%;
    height: 100%;
    background: rgba(255,0,0,0);
    border-radius: 50%;
    z-index: 10;
}
.collection-second-stage  a:hover .circle-selected,
.collection-second-stage  a.col-active .circle-selected{
    background: rgba(167,25,49,0.6);
}

.collection-second-stage .collection-item a .collection{
    display: block;
    position: absolute;
    top: 42%;
    left: 42%;
    font-size: 1.8em;
    color: #fff;
    z-index: 50;
}
.collection-second-stage .collection-item a:hover .collection,
.collection-second-stage .collection-item a.col-active .collection{
    top: 50%;
    left: 32%;
}

.collection-second-stage  a.collection-active .collection{
    display: block;
    position: absolute;
    top: 60%;
    left: 38.26%;
    font-size: 1em;
    color: #fff;
    z-index: 50;
}

.collection-second-stage a img.collection-icon{
    display: block;
    position: absolute;
    top: 45%;
    left: 24.39%;
    margin: 0;
    max-width: 10.98%;
    z-index: 50;
}

.collection-second-stage a:hover img.collection-icon,
.collection-second-stage a.col-active img.collection-icon{
    top: 21.33%;
    left: 44%;
}

/*媒体查询*/
@media (min-width: 1380px) and (max-width: 1440px) {
    .collection-second-stage a img.collection-icon{
        display: block;
        position: absolute;
        top: 47%;
        left: 24%;
        margin: 0;
        z-index: 50;
    }

    .collection-second-stage a:hover img.collection-icon,
    .collection-second-stage a.col-active img.collection-icon{
        top: 20%;
        left: 44%;
    }

    .collection-second-stage .collection-item a .collection{
        top: 42%;
        left: 42%;
        font-size: 1.5em;
    }
    .collection-second-stage .collection-item a:hover .collection,
    .collection-second-stage .collection-item a.col-active .collection{
        top: 50%;
        left: 32%;
    }

    .collection-second-stage .collection-item:nth-child(5) a .collection-icon{
        top: 45%;
    }
}

@media (min-width: 1200px) and (max-width: 1379px) {
    .collection-second-stage a img.collection-icon{
        display: block;
        position: absolute;
        top: 47%;
        left: 22%;
        margin: 0;
        z-index: 50;
    }

    .collection-second-stage a:hover img.collection-icon,
    .collection-second-stage a.col-active img.collection-icon{
        top: 20%;
        left: 44%;
    }

    .collection-second-stage .collection-item a .collection{
        top: 40%;
        left: 38%;
        font-size: 1.3em;
    }

}

@media (min-width: 992px) and (max-width: 1199px) {
    .collection-second-stage a img.collection-icon{
        display: block;
        position: absolute;
        top: 47%;
        left: 22%;
        margin: 0;
        z-index: 50;
    }

    .collection-second-stage a:hover img.collection-icon,
    .collection-second-stage a.col-active img.collection-icon{
        top: 20%;
        left: 44%;
    }

    .collection-second-stage .collection-item a .collection{
        top: 40%;
        left: 38%;
        font-size: 1em;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .collection-second-stage .collection-item{
        margin-bottom: 20px;
        padding: 0;
        border: 1px solid firebrick;
    }

    .collection-second-stage .collection-item img.second-column{
    }

    .collection-second-stage .collection-item:nth-child(3) a{
      float: right;
    }

    .collection-second-stage .collection-item:nth-child(4) a{
      float: left;
    }

    .collection-second-stage a img.collection-icon{
        display: block;
        position: absolute;
        top: 47%;
        left: 22%;
        margin: 0;
        z-index: 50;
    }

    .collection-second-stage a:hover img.collection-icon,
    .collection-second-stage a.col-active img.collection-icon{
        top: 20%;
        left: 44%;
    }

    .collection-second-stage .collection-item a .collection{
        top: 40%;
        left: 38%;
        font-size: 1em;
    }
}

@media (max-width: 767px) {
    .collection-second-stage .collection-item{
        padding: 0;
    }

    .collection-second-stage .collection-item img.second-column{

    }

    .collection-second-stage .collection-item:nth-child(2) a{
       margin-left: 6%;
    }
   .collection-second-stage .collection-item:nth-child(3) a{
         float: right;
    }

    .collection-second-stage .collection-item:nth-child(4) a{
        float: left;
        margin-top: 0;
    }

    .collection-second-stage .collection-item:nth-child(5) a{
        margin-left: 6%;
        margin-top: 0;
    }

    .collection-second-stage .collection-item:last-child a{
        float: right;
    }

    .collection-second-stage a img.collection-icon{
        display: block;
        position: absolute;
        top: 44%;
        left: 22%;
        margin: 0;
        z-index: 50;
    }

    .collection-second-stage a:hover img.collection-icon,
    .collection-second-stage a.col-active img.collection-icon{
        top: 20%;
        left: 44%;
    }

    .collection-second-stage .collection-item a .collection{
        top: 42%;
        left: 38%;
        font-size: 1.2em;
    }

    .collection-second-stage .collection-item a.col-active .collection{
        left: 36%;
    }
}


.collection-body .titles h1{
    text-align: center;
}

.collection-body .titles .second-title{
    height: 35px;
    margin-left: 0;

}


.main .wrapper .collection-col-item{
    padding: 0;
    margin: 0 auto;
}

.main .wrapper .collection-body,
.main .wrapper .activity-body{
	/* margin-top:54px; */
    width: 100%;
    height: auto;
    background: #fff;
    font-family: 黑体;
}
.main .wrapper .activity-body.activity-body-bg{
	background: none;
	padding: 0;
	margin-bottom: 0;
}
.collection-img-lists{
    width: 93.45%;
    height: auto;
    margin: 44px auto;
    /* border: 1px solid crimson;*/
}
.collection-img-lists ul{
    display: block;
    width: 100%;
    height: auto;

    /*border: 1px solid forestgreen;*/
}
.collection-img-list{
    position: relative;
    float: left;
    display: block;
    min-height:327px;
}
.collection-img-list:first-child,
.collection-img-list:nth-child(2),
.collection-img-list:nth-child(3){
    margin-top: 0;
}
.col-8,.col-4,.col-4-r{
    padding: 0;
    /* border: 1px solid forestgreen;*/
}
.row-2,.row-3{
    margin-top: 20px;
}
.collection-img-lists a{
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;

    text-decoration: none;
}
.collection-img-lists img{
    margin: 0;
    max-width: 100%;
}
.collection-img-plane{
    position: absolute;
    top:0;
    bottom: 65px;
    left: 15px;
    right: 15px;
    background-size: cover;
    background-position: center center;
}

.collection-img-lists span{
    display: block;
    padding: 0;
    color: #333;
    font-family: 黑体;
    font-size: 1.125em;
    position: absolute;
    height: 65px;
    line-height: 65px;
    left:15px;
    right: 15px;
    bottom: 0;
    overflow: hidden;
}

.col-collection{
    position: relative;
}

.collection_mask{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right:0;
    bottom:0;
    background-color: rgba(0,0,0,0.6);
}

.collection-img-list:hover .collection_mask{
    display: block;
}
.collection_mask_plane{
    position: absolute;
    width: 100%;
    height: 112px;
    top:50%;
    margin-top:-66px;

}
.collection_mask b{
    display: block;
    width: 100%;
    max-height:56px;
    overflow: hidden;
    color: #fff;
    font-family: 黑体,'sans-serif';
    font-size: 1.5em;
    line-height: 28px;
    text-align: center;

   /* border: 1px solid firebrick;*/
}
.collection_mask .click-wrapper{
/*    display: block;
    width: 100%;
    height: auto;
    margin-top: 10%;
    text-align: center;*/
    position: absolute;
    width: 106px;
    height: 38px;
    bottom:0;
    left:50%;
    margin-left: -53px;
}

.collection_mask .click-wrapper a.three-dimension-jump,.collection_mask .click-wrapper a.enlarge{
    display: inline-block;
    border: 1px solid #fff;
    width: 37px;
    height: 37px;
    position: absolute;
}

.collection_mask .click-wrapper a.three-dimension-jump{
    background-image:url("../img/collection/three-icon.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    bottom: 0;
    left:0;
}

.collection_mask .click-wrapper a.enlarge{
    background-image:url("../img/collection/enlarge-icon.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
}

.collection-img-lists .right .search,.activity-body .right .search{
    /* border: 1px solid forestgreen;*/
    width: 100%;
    overflow: hidden;
}
.collection-img-lists .right .search input,.activity-body .right .search input,#find_it{
    display: block;
    float: right;
    width: 90%;
    height: 48px;
    margin-top: 0;
    /* border: 2px solid forestgreen;*/
}

.collection-img-lists .right .search span,.activity-body .right .search span,#btn_find{
    display: block;
    float: right;
    width: 10%;
    height: 48px;
    margin: 0;
    background-color: #cd1d1a;
    background-image: url("../img/common/Search.png");

    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    left:0;
    right: 0;
}
.collection-img-lists .right img{
    float: right;
    margin-right: 0;
    margin-top: 50px;
    max-width: 100%;
    margin-bottom: 135px;
}

.collection-big-mask{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);

    z-index: 1000;
}

.collection-img-wrapper{
    position: fixed;
    width: 44%;
    left: 28%;
    height: 0;
    padding-bottom: 44.32%;
    margin: 5% auto;
    /*border: 1px solid firebrick;*/
}
.collection-img-wrapper img{
    display: block;
    margin: 0;
    width: 100%;
}
.collection-img-wrapper .collection-close{
    position: absolute;
    top: 0;
    right:0;

    font-size: 1.25em;

    cursor: pointer;
    color:#cd1d1a;
}
/*****************藏品3d展示页面 start***********************/
.three-show{
    display: none;
    position: relative;
    margin: 0;
    width: 100%;
    height: 974px;
}
#three_iframe{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
.three-switch{
    display: block;
    position: absolute;
    top: 500px;
    width: 3.13%;
    height: 0;
    padding-bottom: 4.17%;

    border-radius: 5px;
    z-index: 1005;
}
.three-prev{
    left:3.65%;
    background: url("../img/collection/three/page-up.png")no-repeat center;
    background-color: rgba(92,92,92,.5);
}
.three-next{
    right:3.65%;
    background: url("../img/collection/three/page-down.png")no-repeat center;
    background-color: rgba(92,92,92,.5);
}

.three-prev:hover,.three-next:hover{
    background-color: rgba(92,92,92,1);
}

.three-shrink,.three-enlarge,.three-reset{
    display: block;
    position: absolute;
    bottom: 102px;
    width: 3.02%;
    height: 0;
    padding-bottom: 3.02%;

    cursor: pointer;
    z-index: 1005;
}
.three-shrink{
    right: 3.65%;
    background: url("../img/collection/three/shrink.png");
}
.three-shrink:hover{
    background: url("../img/collection/three/shrink_d.png");
}
.three-enlarge{
    right: 8.65%;
    background: url("../img/collection/three/enlarge.png");
}
.three-enlarge:hover{
    background: url("../img/collection/three/enlarge_d.png");
}
.three-reset{
    right: 13.65%;
    background: url("../img/collection/three/rotate.png");
}
.three-reset:hover{
    background: url("../img/collection/three/rotate_d.png");
}

.three-description{
    position: absolute;
    left: 3.65%;
    bottom: 78px;
    width: 16.73%;
    height: 300px;
    padding-bottom: 1.5%;

    z-index: 1005;
    border-radius: 1%;
    border: 1px solid #dac7ad;

    overflow: hidden;
}
#three_wrapper{
    position: relative;
    width: 100%;
    height: 85%;
    margin: 20px 0 0;
    overflow: hidden;

    /* Prevent native touch events on Windows */
    -ms-touch-action: none;

    /* Prevent the callout on tap-hold and text selection */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    /* Prevent text resize on orientation change, useful for web-apps */
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -o-text-size-adjust: none;
    text-size-adjust: none;

    z-index: 1010;

    /*border: 1px solid firebrick;*/
}
#scroller{
    position: absolute;

    min-height: 100%;

    /* Prevent elements to be highlighted on tap */
    -webkit-tap-highlight-color: rgba(0,0,0,0);

    /* Put the scroller into the HW Compositing layer right from the start */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);

    z-index: 1020;
}
.three-description p{
    display: block;
    width: 88%;
    height: auto;
    margin: 0 auto;
    padding-left: 1%;
    color: #dac7ad;
    font: 1.125em/1.7 黑体,'sans-serif';

    /*border: 1px solid forestgreen;*/
}

.three-desc-btn{
    position: absolute;
    left: 10.94%;
    bottom: 90px;
    width: 1.93%;
    padding-bottom: 1.20%;

    background: url("../img/collection/three/hide.png");

    z-index: 1010;
    cursor: pointer;
}

.three-bottom-bar{
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 78px;
    background-color: #811D2F;
    z-index: 1005;
}
.three-decade,.three-name{
    display: block;
    margin-left: 3.65%;
    color: #d2c7ad;
    font-family:黑体, 'sans-serif';
}
.three-decade{
    margin-top: 10px;
    font-size: 1.25em;
}
.three-name{
    font-size: 1.5em;
}

.three-back{
    float: right;
    display: block;
    width: 6.25%;
    height: 100%;
    line-height: 78px;
    margin-top: -72px;
    margin-right: 3.65%;
    text-align: center;
    color: #d2c7ad;
    background: url("../img/collection/three/back.png") no-repeat center;

    font-family: 黑体,'sans-serif';
    font-size: 1.5em;

    cursor: pointer;
   /* border: 1px solid firebrick;*/
}

.three-back:hover{
    background: url("../img/collection/three/back_d.png") no-repeat center;
}
/*****************藏品3d展示页面 end************************/

/*******************************************************************************************************
                                        艺博网站-活动预告
********************************************************************************************************/
.activity-logo{
    top: 295px;
}
.activity-second-stage{
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
}
.activity-second-stage .col-item a{
    display: block;
    position: relative;
    margin: 0;
    line-height: 0;
}
.activity-second-stage .col-item:last-child a{
    float: right;
}
.activity-second-stage .col-item:nth-child(2) a{
    margin-left: 2.95%;
}
.activity-second-stage .col-item a .mask{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3%;
    background: rgba(0,0,0,.4);
    z-index: 5;
}
.activity-second-stage .col-item a:hover .mask{
    background: rgba(0,0,0,0);
}
.activity-second-stage a.col-active .mask{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3%;
    background: rgba(0,0,0,0);
    z-index: 5;
}
.activity-second-stage .col-item a .circle-selected{
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    margin: 0 -14.23%;
    width: 28.46%;
    height: 100%;
    background: rgba(255,0,0,0);
    border-radius: 50%;
    z-index: 10;
}
.activity-second-stage .col-item a:hover .circle-selected{
    background: rgba(167,25,49,0.6);
}

.activity-second-stage  a.col-active .circle-selected{
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    margin: 0 -14.23%;
    width: 28.46%;
    height: 100%;
    background: rgba(167,25,49,0.6);
    border-radius: 50%;
    z-index: 10;
}

.circle-selected{
    display: none;
    position: absolute;
    height: 150px;
    width: 150px;
    border-radius: 75px;
	background: rgba(131,160,173,0.6);
    /* background: rgba(167,25,49,0.6); */
    left:50%;
    margin-left:-75px;
}
.col-active .circle-selected{
    display: block;
}
.col-item-plane:hover .circle-selected{
    display: block;
}

.activity-second-stage .col-item a img.activity-icon{
    display: block;
    position: absolute;
    top: 42%;
    left: 35%;
    max-width: 5.31%;
    z-index: 50;
}
.activity-second-stage .col-item a:hover img.activity-icon{
    top: 25%;
    left: 47.5%;
    max-width: 5.31%;
}

.activity-second-stage  a.col-active img.activity-icon{
    display: block;
    position: absolute;
    top: 22%;
    left: 47.5%;
    max-width: 5.31%;
    z-index: 50;
}


.activity-second-stage .col-item a .activity{
    display: block;
    position: absolute;
    top: 50%;
    left: 42%;
    font-size: 1em;
    font-weight: normal;
    color: #fff;
    z-index: 50;
}
.activity-second-stage .col-item a:hover .activity{
    top: 60%;
    left: 38.26%;
}

.activity-second-stage  a.col-active .activity{
    display: block;
    position: absolute;
    top: 60%;
    left: 38.26%;
    font-size: 1em;
    color: #fff;
    z-index: 50;
}


.activity-second-stage .col-item a img{
    display: block;
    margin: 0;
    max-width: 100%;
}

.second_activity_survey{
    display: block;
    float: right;
    margin-right: 0;
}

.activity-body .titles .second-title{
    height: 35px;
}

.activity-body .activity-lists{
    width: 93.69%;
	padding-top: 46px;
    margin: 46px auto;
}

.activity-row {
    margin: 26px 0;
    padding-bottom: 26px;
    border-bottom: 1px dashed #666;
}
.activity-row-first{
    margin-top: 0;
}

.activity-lists .col-4 img{
    max-width: 100%;
}

.activity-lists  .info{
    padding-left: 2.857%;
    /*margin-left: 22px;*/
    color: #333;
    font-family: 黑体;
    /*border: 1px solid saddlebrown;*/
}
.activity-body-bg .activity-main{
	width: 75%;
	min-height: 494px;
	margin: 0 auto;
}
.activity-box{
	display: inline-block;
    width: 48%;
	height: 296px;
	margin:1%;
	padding: 0;
}
.activity-box:nth-child(2),.activity-box:nth-child(3),.activity-box:nth-child(6){
	background: #DFEAF0;
}
.activity-box:nth-child(1),.activity-box:nth-child(4),.activity-box:nth-child(5){
	background: #A1867C;
	
}
.activity-lists .activity-box:nth-child(2) .info,
.activity-lists .activity-box:nth-child(2) .info .header a,
.activity-lists .activity-box:nth-child(2) .info .header span,
.activity-lists .activity-box:nth-child(3) .info,
.activity-lists .activity-box:nth-child(3) .info .header a,
.activity-lists .activity-box:nth-child(3) .info .header span,
.activity-lists .activity-box:nth-child(6) .info,
.activity-lists .activity-box:nth-child(6) .info .header a,
.activity-lists .activity-box:nth-child(6) .info .header span{
	color:#000;
}
.activity-lists .activity-box:nth-child(1) .info,
.activity-lists .activity-box:nth-child(1) .info .header a,
.activity-lists .activity-box:nth-child(1) .info .header span,
.activity-lists .activity-box:nth-child(4) .info,
.activity-lists .activity-box:nth-child(4) .info .header a,
.activity-lists .activity-box:nth-child(4) .info .header span,
.activity-lists .activity-box:nth-child(5) .info,
.activity-lists .activity-box:nth-child(5) .info .header a,
.activity-lists .activity-box:nth-child(5) .info .header span{
	color:#fff;
}
.activity-lists .activity-box .info  p{
	text-align: center;
	font-size:1em;
}
.activity-lists .activity-box .info p.info-description{
	height: 30px;
	margin:20px 0;
	line-height: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	text-align: justify;
	font-size:0.8em;
}
.activity-lists .activity-box span.appoint,.activity-lists .activity-box span.activityBtn{
	float: none;
	margin:0 auto;
}
.boxImg{
	display: inline-block;
	width: 246px;
	height:100%;
	vertical-align: top;
}
.boxImg img{
	height:100%;
	object-fit: cover;
}
.activity-lists .activity-box .info .header h2{
	text-align: center;
	float: none;
	font: size 1.125em;
	font-weight: 400;
	padding: 4px 0;
	margin:10px 0;
	border-top: 1px dashed #fff;
	border-bottom: 1px dashed #fff;
}
.activity-lists .activity-box:nth-child(2) .info .header h2,.activity-lists .activity-box:nth-child(3) .info .header h2{
	border-top: 1px dashed #000;
	border-bottom: 1px dashed #000;
}
.activity-box .info{
	display: inline-block;
	margin-top: 20px;
	width: 50%;
	text-align: center;
}
.activity-lists .info .header{
    margin-bottom: 18px;
    /*  border: 1px solid fuchsia;*/
    overflow: auto;
}
.activity-lists .info .header h2 {
    float: left;
    margin-top: 0;
    font-size: 1.375em;
    font-weight: bold;
    text-align: left;
    text-indent: 0;
    /* border: 1px solid firebrick;*/
}

.activity-lists .info .header span{
    display: block;
    float: right;
    color: #666;
    font-size: 1em;
}

.activity-lists .info p{
    display: block;
    font-size: 1.125em;
    /* border: 1px solid forestgreen;*/
}

.activity-lists .info span.activity-end,.activity-lists span.appoint,.activity-lists span.cancel,.activity-lists span.activityBtn{
    display: block;
    float: right;
    width: 90px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    background: #999;
    text-align: center;
    font-family: 黑体;
    font-size: 1em;
    border-radius: 5px;
}
.activity-lists span.appoint,.activity-lists span.activityBtn{
    background-color: #cc1e1b;
    cursor: pointer;
    margin-right: 1%;
}

.page-number ul li.notice-next{
    background: url("../img/info_wenbo/next.png") no-repeat 45% 45%;
    border-right: 1px solid #818181;
}

/************活动预告页日历 start***************/
button{
    display: block;
    background: #fff;
    outline: none;
    font-weight: bold;
}

.activity_calendar-wrapper{
    float: right;
    width: 100%;
    height: auto;
    margin: 36px 0;
    padding: 30px 20px 10px;

    border: 1px solid #666;
    border-radius: 1%;
}

#calendar {
    width: 464px;
    height: 444px;
    margin: 0;
    padding: 0 10px;
}

.activity_calendar-wrapper .legend{
    display: inline-block;
    float: right;
    margin-top: -15px;
    width: 80px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #CD1D1A;
    background: url("../img/activity/activity_icon.png") no-repeat 0 center;
    background-size: 18%;
   /* border: 1px solid firebrick;*/
}


span.fc-title{
    display: block;
    margin: 0;
    width: 45px;
    height: 40px;
    line-height: 20px;

    color: #CD1D1A;
    background: url("../img/activity/activity_icon.png") no-repeat 10% 25%;
    background-size: 25%;
    text-align: right;
    font-family: 黑体, 'sans-serif';
    font-size: 0.8em;

    border: none;
}

.fc-day-header{
    font-family: 黑体, 'sans-serif';
    font-size: 1.2em;
}
a.fc-day-grid-event {
    border: none;
}
/************活动预告页日历 end***************/
/*****************活动页预约 start******************/
.activity-mask {
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,.6);
    z-index: 1002;
}

.activity-mask span{
    display: inline-block;
    width: 90px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    font-family: 黑体;
    text-align: center;
    border-radius: 5px;
    /*border: 1px solid firebrick;*/
}

.activity-mask .appoint-close{
    display: block;
    position: absolute;
    top: 0;
    right: 1%;
    width: 4%;
    color: #fff;

    z-index: 100;
    cursor: pointer;
}

.login {
    position: fixed;
    display: none;
    width: 550px;
    margin: 100px auto;
    padding: 0;
    font-size: 16px;
    text-align: center;
   /* border: 1px solid firebrick;*/
    left: 50%;
    margin-left: -275px;
}

/* Reset top and bottom margins from certain elements */
.login-header,
.login p {
    margin-top: 0;
    margin-bottom: 0;
}

.login-header {
    background: #A71931;
    padding: 18px 0;
    font-size: 1.4em;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    color: #fff;

    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.login-container {
    width: 100%;
    margin-top: 0;
    background: #ebebeb;

    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: 1px solid transparent;
}

/* Every row inside .login-container is defined with p tags */
.login p {
    display: block;
    width: 62.18%;
    height: 42px;
    margin: 18px auto;
    border: 1px solid #aaa;
    position: relative;
}
.login p.name{
    background: url("../img/activity/name.png") no-repeat 3% center;
    background-size: 7.0%;
}
.login p.phone{
    background: url("../img/activity/phone.png") no-repeat 3% center;
    background-size: 7.0%;
}
.login p.email{
    background: url("../img/activity/email.png") no-repeat 3% center;
    background-size: 7.0%;
}
.login p.submit{
    border: none;
}

.login input {
    float: right;
    display: block;
    width: 87.72%;
    height: 100%;
    padding: 16px;
    box-sizing: border-box;

    color: #666;
    font-family: inherit;
    font-size: 1.125em;

    outline: 0;
    border: none;
    border-left: 1px solid #aaa;
}

.login input[type="email"] {
    background: #fff;
    color: #555;
}

/* Text fields' focus effect */
.login input[type="email"]:focus{
}

.login input[type="submit"],#submit {
    width: 100%;
    height: 100%;
    margin: 0;
    color: #fff;
    background: #a71931;
    border-radius: 5px;
    border: none;
    outline: none;
    cursor: pointer;
    position: absolute;
    left: 0;
    line-height: 42px;
    font-size: 1.125em;
}
/*****************活动页预约 end******************/
/*******************************************************************************************************
                                        艺博网站-活动预告-进入
********************************************************************************************************/
.activity-body .into-info,.activity-body .detail{
    width: 76.01%;
    height: auto;
    margin: 70px auto;
    padding-bottom: 5px;
    border-bottom: 1px solid #e1e1e1;
    overflow: auto;
}
.activity-body .into-info{
    margin-bottom: 20px;
}
.activity-body .into-info img{
    display: inline-block;
    float: left;
    max-width: 100%;
}
.activity-body .into-info .lists{
    display: inline-block;
    float: left;
    padding-top: 0;
    padding-left: 34px;
    margin-bottom: 1em;
    border: 1px solid forestgreen;
    font-family: 黑体;
}
.activity-body .into-info .lists h2{
    margin-top: 0;
    font-size: 1.3em;
    font-weight: bold;
    /*border: 1px solid firebrick;*/
}
.activity-body .into-info .lists p{
    line-height: 1.8em;
    color: #333;
    font-size: 1.125em;
}

.activity-body .into-info .lists span.appoint-number{
    display: block;
    margin-top: 3em;
    font-size: 1.125em;
    color: #CD1C19;
    /* border: 1px solid crimson;*/
}
.activity-body .into-info .appointment{
    float: right;
    margin-top: 200px;
    /* border: 1px solid firebrick;*/
}

.activity-body .into-info .appointment span{
    display: inline-block;
    width: 90px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    font-family: 黑体;
    text-align: center;
    border-radius: 5px;
    /*border: 1px solid firebrick;*/
}
.activity-body .into-info .appointment span.appoint{
    background-color: #CE1C1A;
    cursor: pointer;
}


.activity-body .detail{
    margin-top: 20px;
}
.activity-body .detail p.header{
    color: #333;
    font-family: 黑体;
    font-size: 1.625em;
    /* border: 1px solid fuchsia;*/
}
.activity-body .detail p.header span{
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: 10px solid #CE1A1b;
    border-bottom: 10px solid transparent;
}
/*******************************************************************************************************************************************
                                                 艺博网站-活动回顾
*******************************************************************************************************************************************/
.activity-body .review-lists{
    width: 76.01%;
    height: auto;
    margin: 70px auto;
    padding-bottom: 5px;
    border-bottom: 1px solid #e1e1e1;
    overflow: auto;
}
.activity-body .review-lists .review{
    width: 100%;
    margin: 20px;
    margin-left: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #cbcbcb;
    overflow: hidden;
}

.activity-body .review-lists .review img,
.activity-body .review-lists .review .right{
    display: block;
    float: left;
}

.activity-body .review-lists .review img{
    width: 28.27%;
    margin: 0;
}
.activity-body .review-lists .review .right{
    width: 68.91%;
    height: auto;
    margin-left: 2.82%;
    font-family: 黑体;
}
.activity-body .review-lists .review .right h2{
    margin-top: 0;
    font-size: 1.375em;
    font-weight: bold;
    text-align: left;
}
.activity-body .review-lists .review .right span.intro,
.activity-body .review-lists .review .right p{
    display: inline-block;
    margin-top: 16px;
    font-size: 1.125em;
}
.activity-body .review-lists .review .right p{
    text-indent: 2.25em;
}
.review-details{
    display: block;
    float: right;
    width: 90px;
    height: 30px;
    padding: 0;
    margin: 30px 0 0;
    line-height: 30px;
    color: #fff;
    background-color: #cc1e1b;
    text-align: center;
    font-size: 1em;
    border-radius: 5px;
    overflow: hidden;
}

.activity-content-display{
    width: 76.07%;
    height: auto;
    margin: 30px auto;
}
/*媒体查询*/
@media (min-width: 1380px) and (max-width: 1440px) {

}

@media (min-width: 1200px) and (max-width: 1379px) {
    #activitySecTitle{
        font-size: 0.9em;
    }
    .activity-body .review-lists .review .right h2{
        font-size: 1.2em;
    }
    .activity-body .review-lists .review .right p{
        font-size: 1.1em;
    }
    .review-details{
        margin: 20px 0 0;
        border: 1px solid firebrick;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    #activitySecTitle{
        font-size: 0.8em;
    }
    .activity-body .review-lists{
        margin-top: 0;
    }
    .activity-body .review-lists .review .right h2{
        font-size: 1.2em;
    }
    .activity-body .review-lists .review .right p{
        font-size: 1.1em;
        margin-top: 0;
    }
    .review-details{
        margin: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #activitySecTitle{
        font-size: 0.8em;
    }

    .activity-body .review-lists{
        margin-top: 0;
    }
    .activity-body .review-lists .review .right h2{
        font-size: 1.1em;
    }
    .activity-body .review-lists .review .right p{
        font-size: 1.0em;
        margin: 0;
    }
    .review-details{
        margin: 0;
    }
}

@media (max-width: 767px) {
    .activity-body .review-lists{
        margin-top: 20px;
    }
    .activity-body .review-lists .review img,
    .activity-body .review-lists .review .right
    {
        display: block;
        float: none;
        max-width: none;
        width: 100%;
        margin: 15px 0;
    }
    .activity-body .review-lists .review .right p{
        margin-top: 0;
    }

    .review-details{
        margin-top: 10px;
    }
}


/***************************************************************************************************************************
                                              艺博网站-教育
***************************************************************************************************************************/
.edu-logo{
    top: 295px;
}
.edu-second-stage{
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
}
.edu-second-stage .col-item a{
/*    display: block;
    position: relative;
    margin: 0;
    line-height: 0;*/
}

.edu-second-stage .col-item:nth-child(2) a{
    margin-left: 2.95%;
}

.edu-second-stage .col-item:last-child a{
    /*float: right;*/
}

.edu-second-stage .col-item a .mask{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3%;
    background: rgba(0,0,0,.4);
    z-index: 5;
}
.edu-second-stage .col-item a:hover .mask{
    background: rgba(0,0,0,0);
}
.edu-second-stage  a.col-active .mask{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3%;
    background: rgba(0,0,0,0);
    z-index: 5;
}
.edu-second-stage .col-item a .circle-selected{
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    margin: 0 -14.23%;
    width: 28.46%;
    height: 100%;
    background: rgba(255,0,0,0);
    border-radius: 50%;
    z-index: 10;
}
.edu-second-stage .col-item a:hover .circle-selected{
    background: rgba(167,25,49,0.6);
}

.edu-second-stage a.col-active .circle-selected{
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    margin: 0 -14.23%;
    width: 28.46%;
    height: 100%;
    background: rgba(167,25,49,0.6);
    border-radius: 50%;
    z-index: 10;
}

.edu-second-stage .col-item a img.edu-icon{
    display: block;
    position: absolute;
    top: 42%;
    left: 35%;
    max-width: 5.31%;

    z-index: 50;

}
.edu-second-stage .col-item a:hover img.edu-icon{
    top: 25%;
    left: 47.5%;
}

.edu-second-stage a.col-active img.edu-icon{
    display: block;
    position: absolute;
    top: 25%;
    left: 47.5%;
    z-index: 50;

}


.edu-second-stage .col-item a .education{
    display: block;
    position: absolute;
    top: 50%;
    left: 43%;
    font-size: 1em;
    color: #fff;
    z-index: 50;
}

.edu-second-stage .col-item:last-child a:hover .education{
    left: 41%;
}

.edu-second-stage .col-item a:hover .education{
    top: 60%;
    left: 38.26%;
}

.edu-second-stage  a.col-active .education{
    display: block;
    position: absolute;
    top: 60%;
    left: 38.26%;
    font-size: 1em;
    color: #fff;
    z-index: 50;
}

.edu-second-stage .col-item a img{
    /*display: block;*/
    /*margin: 0;*/
    max-width: 100%;
}



.when-active,.when-no-active{
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;

    text-align: center;

    color:#fff;
    font-size: 1.2em;
}
.when-active a,.when-no-active a{
    color:#fff;
}
.when-active span,.when-no-active span{
    font-size: 1.5em;
	text-shadow: 0px 1px 1px rgba(0,0,0,0.6);
}
.when-active img,.when-no-active img{
    margin-top:-7px;
}
.when-active-img{
    top:0;
    left:0;
    width: 100%;
    height: 75px;
    line-height: 100px;
    position: absolute;
}
.when-active-span{
    position: absolute;
    width: 100%;
    line-height: 25px;
    height: 75px;
    bottom: 0;
    left:0;
}


.when-active{
    display:none;
}

.col-active .when-active{
    display:block;
}
.col-active .when-no-active{
    display:none;
}
.col-item-plane:hover .when-active{
    display: block;
}
.col-item-plane:hover .when-no-active{
    display: none;
}


/*媒体查询*/
@media (min-width: 1380px) and (max-width: 1440px) {
    .edu-second-stage .col-item a .education{
        font-size: 0.8em;
    }
    .edu-second-stage .col-item a:hover .education,
    .edu-second-stage a.col-active .education {
        top: 60%;
        left: 38.26%;
        font-size: 0.8em;
    }

    .edu-second-stage a.col-active img.edu-icon,
    .edu-second-stage a:hover img.edu-icon{
        top: 20%;
        left: 46%;
    }
}

@media (min-width: 1200px) and (max-width: 1379px) {
    .edu-second-stage .col-item a .education{
        font-size: 0.7em;
    }
    .edu-second-stage .col-item a:hover .education,
    .edu-second-stage a.col-active .education {
        left: 37.5%;
    }

    .edu-second-stage a img.edu-icon{
        top: 40%;
        left: 33%;
    }

    .edu-second-stage a.col-active img.edu-icon,
    .edu-second-stage a:hover img.edu-icon{
        top: 16%;
        left: 46%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .edu-second-stage .col-item a .education{
        left: 43%;
        font-size: 0.6em;
    }
    .edu-second-stage .col-item a:hover .education,
    .edu-second-stage a.col-active .education {
        left: 37%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .edu-second-stage .col-item a .education{
        font-size: 0.6em;
    }
    .edu-second-stage .col-item a:hover .education,
    .edu-second-stage a.col-active .education {
        left: 37%;
    }
}




.second_edu_publication{
    display: block;
    float: right;
    margin-right: 0;
}

#second_edu_publication img.edu-item-3{
    display: block;
    float: right;
}

.edu-body .titles .second-title{
    height: 35px;
}
.edu-body .titles  .crumb-edu-first{
    width: 2%;
}
.edu-body .titles  .crumb-edu-second{
    width: 4%;
}
.edu-body .titles  .crumb-edu-third{
    width: 25%;
    text-align: left;
}

#edu_lecture,#edu_exchange,#edu_publication{
    display: block;
}

.edu-titles p{
    display: block;
    width: 93.69%;
    height: 60px;
    margin: 45px auto 0;
    background-color: #F5F5F5;
    border-top: 4px solid #CDCDCD;
    border-bottom: 4px solid #CDCDCD;

}
.edu-titles p span{
    display: inline-block;
    height: 100%;
    line-height: 56px;
    color: #333;
    font-family: '黑体';
    font-size: 1.375em;
    font-weight: bold;

    /* border: 1px solid firebrick;*/
}
.edu-titles p span.time{
    width: 12%;
    margin-left: 3.56%;
    overflow: hidden;
}
.edu-titles p span.title{
    width: 46%;
    padding-left: 12%;
    overflow: hidden;
}
.edu-titles p span.author{
    width: 15%;
    padding-left: 4%;
    overflow: hidden;
}
.edu-titles p span.source{
    width: 15%;
    padding-left: 4%;
    overflow: hidden;
}

.edu-lists{
    width: 100%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
}
.edu-lists ul{
    display: block;
    width: 93.69%;
    height: auto;
    margin: 0 auto 60px;
}
.edu-lists ul li{
    float: none;
    display: inline-block;
    width: 100%;
    height: 60px;
    margin-left: 0;
    border-bottom: 2px solid #E4E4E4;
}
.edu-lists ul li span{
    display: inline-block;
    margin: 0;
    height: 100%;
    line-height: 60px;
    font-family: '黑体';
    font-size: 1.1em;
    font-weight: normal;
    /*border: 1px solid firebrick;*/
}
.edu-lists ul li span.time{
    width: 12%;
    margin-left: 3.558%;
    overflow: hidden;

}
.edu-lists ul li span.title{
    width: 48%;
    padding-left: 8%;
    overflow: hidden;
}
.edu-lists ul li span.author{
    width: 10%;
    padding-left: 2%;
    overflow: hidden;
}
.edu-lists ul li span.source{
    width: 18%;
    padding-left: 3%;
    overflow: hidden;
}

.edu-lists{
    width: 100%;
}

/*媒体查询*/
@media (min-width: 1380px) and (max-width: 1439px) {
}

@media (min-width: 1200px) and (max-width: 1379px) {
    #eduSecTitle{
        font-size: 1em;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .edu-lists ul li span{
        font-size: 1em;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #eduSecTitle{
        font-size: 1em;
    }

    .edu-lists ul li span{
        font-size: 1em;
    }
}

@media (max-width: 767px) {
    .edu-type{
        font-size: 70%;
    }

    #eduSecTitle{
        font-size: 1.2em;
    }

    .edu-lists ul li span.time{
        width: 12%;
        display: none;
    }
    .edu-lists ul li span.title{
        width: 100%;
    }

    .edu-lists ul li span.author{
        width: 11%;
        display: none;
    }
    .edu-lists ul li span.source{
        width: 19%;
        display: none;
    }
}


.edu__lecture--lists,.edu__exchange--lists{
    display: block;
    width: 93.69%;
    height: auto;
    margin: 30px auto;
}
.edu__lecture--lists li,.edu__exchange--lists li{
    float: none;
    display: inline-block;
    width: 100%;
    height: 60px;
    margin-left: 0;
    border-bottom: 2px solid #E4E4E4;
}
.edu__lecture--lists li span,.edu__exchange--lists li span{
    display: inline-block;
    margin-top: 12px;
    font-family: '黑体';
    font-size: 1.25em;
    font-weight: normal;
}
.edu__lecture--lists li span.time,.edu__exchange--lists li span.time{
    margin-left: 3.558%;
}
.edu__lecture--lists  li span.title,.edu__exchange--lists  li span.title{
    margin-left: 7%
}
.edu__lecture--lists li span.author,.edu__exchange--lists li span.author{
    margin-left: 28%;
}
.edu__lecture--lists li span.source,.edu__exchange--lists li span.source{
    margin-left: 9%
}
.edu__lecture--lists li span.browsing-times,.edu__exchange--lists li span.browsing-times{
    margin-left: 7%
}

/****************学术讲座视频页 start*****************/
.edu__lecture--show{
    position: relative;
    display: block;
    width: 70%;
    height: auto;
    margin: 36px auto;

   /* border: 1px solid forestgreen;*/
}
.edu__lecture--show iframe{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 451px;
    margin-bottom: 40px;
}
.edu__page--jump{
    display: block;
    position: absolute;
    top: 75%;
    left: 0;
    width: 100%;
    height: auto;

    color: #333;
    font-family: 黑体, 'sans-serif';
    font-size: 1.25em;

   /* border: 1px solid firebrick;*/
}
.edu__page--jump ul{
    display: block;
    float: left;
    width: 50%;
    height: auto;
   /* border: 1px solid #f0ad4e;*/
}

.edu__page--jump ul li{
    float: none;
    display: block;
    margin-bottom: 5px;
}

.edu__page--jump li a{
    color: #333;
    width: 100%;
}

.edu__page--jump li a:hover{
    text-decoration: none;
}

.edu__page--jump a.edu-back{
    display: block;
    float: right;
    width: 7.01%;
    height: 0;
    margin-top: 15px;
    padding-bottom: 3.74%;
    padding-right: 5px;
    line-height: 2.0em;
    text-align: right;
    color: #333;
    background: url("../img/common/back.png") no-repeat left center;
    border: 1px solid #cdcdcd;
    border-radius: 2px;
}
.edu__page--jump a.edu-back:hover{
    text-decoration: none;
}
/****************学术讲座视频页 end*******************/
/***************************************************************************************************************************
                                              艺博网站-教育-出版物
***************************************************************************************************************************/
.edu-body .publication-lists{
    width: 75.83%;
    height: auto;
    margin: 38px auto;
    /*border: 1px solid firebrick;*/
}

.edu-body .publication-lists ul,.edu-body .publication-lists ul li{
    width: 100%;
}

.publication-lists ul li a{
    color: #333;
}


.edu-body .publication-lists ul li .img-wrapper{
    position: relative;
    height: 310px;
    float: left;
    margin-bottom: 18px;
    /*border: 1px solid forestgreen;*/
}
.edu-body .publication-lists ul li .img-wrapper img{
    display: block;
    margin: 0 6.61%;
    max-width: 86.777%;
}
.img-wrapper-plane{
    position: absolute;
    height: 100%;
    background-color: #DCDCDC;
    left:9px;
    right: 9px;
}
.img-wrapper-img{
    position: absolute;
    left:15px;
    right: 15px;
    top:11px;
    bottom: 11px;
    background-size: 100% 100%;
    background-position: center center;
}
.edu-body .publication-lists ul li .desc{
    position: relative;
    float: right;
    font-family: 黑体;
    margin-bottom: 18px;
    padding-left: 9px;
    padding-right: 9px;
    /* border: 1px solid forestgreen;*/
}
.edu-body .publication-lists ul li{
    display: block;
    overflow: hidden;
    margin-top: 18px;
    position: relative;

}
.edu-body .publication-lists ul li:first-child{
    margin-top: 0;
}
.edu-body .publication-lists ul li .desc{
    height: 310px;
}
.edu-body .publication-lists ul li .desc .h2{
    font-size: 1.375em;
    font-weight: bold;
    /* text-indent: 22px; */
    margin-top: 36px;
    text-overflow: ellipsis;
    white-space: nowrap;
    /* padding-left: 30px; */
    /* padding-right: 30px; */
    /* width: 100%; */
    position: absolute;
    left: 30px;
    right: 30px;
    display: block;
    overflow: hidden;
}
.edu-body .publication-lists ul li .desc p.detail{
    color: #333;
    font-size: 1em;
    padding-right: 30px;
    padding-left: 30px;
    height: 81px;
    line-height: 27px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    margin-top: 72px;
}

.edu-body .publication-lists ul li .desc .reading-download{
    margin-top: 60px;
    overflow: hidden;
    /* border: 1px solid firebrick;*/
}

.edu-body .publication-lists ul li .desc .reading-download .online-reading{
    float: right;
    width: 125px;
    height: 28px;
    line-height: 28px;
    margin-right: 30px;
    /* padding-left: 3.661%; */
    color: #CD1C19;
    font-size: 1.25em;
    /* border: 1px solid forestgreen; */
    /* background: url(../img/education/zxyd_icon.png) no-repeat left center; */
    text-align: right;
}
.edu-body .publication-lists ul li .desc .reading-download .online-reading a{
    color:inherit;
}
.edu-body .publication-lists ul li .desc .reading-download .online-reading img{
    margin-top:-2px;
}
.edu-body .publication-lists ul li .desc .reading-download .download{
    float: right;
    width: 105px;
    margin-right: 30px;
    height: 28px;
    line-height: 28px;
    color: #CD1C19;
    font-size: 1.25em;
    /*background: url(../img/education/down_icon.png) no-repeat left center;*/
    text-align: right;
}
.edu-body .publication-lists ul li .desc .reading-download .download a{
    color:inherit;
}
.edu-body .publication-lists ul li .desc .reading-download .download img{
    margin-top: -5px;
}

/*@media (min-width: 992px){
    .edu-body .publication-lists ul li .desc .reading-download .online-reading{

    }
}*/


/***************************************************************************************************************************
                                              艺博网站-教育-学术讲座-进入
***************************************************************************************************************************/
.edu-wrapper{
    width: 63.69%;
    height: auto;
    margin: 36px auto;
    /*border: 1px solid firebrick;*/
}
.edu-wrapper .info{
    width: 100%;
    height: auto;
    margin-top: 30px;
    overflow: hidden;
}

.edu-wrapper .info .lecture-titles{
    float: left;
}
.edu-wrapper .info .lecture-titles h3,.edu-wrapper .info .lecture-titles p{
    color: #333;
    font-family: 黑体;
    font-size: 1.25em;
}
.edu-wrapper .info .lecture-titles p{
    line-height: 1.67;
    font-size: 1.125em;
    text-indent: -0.625em;
}
.edu-wrapper .info .page-switch{
    float: right;
    margin-top: 96px;
    border: 1px solid forestgreen;
}
.edu-wrapper .info .page-switch span{
    display: inline-block;
    padding: 10px;
    padding-left: 30px;
    color: #333;
    font-family: 黑体;
    font-size: 1.25em;
    border: 1px solid #D1D1D1;
}
.edu-wrapper .info .page-switch span.return{
    padding-left: 40px;
    background: url("../img/education/back_icon.png")no-repeat 10px center;
}
.edu-wrapper .info .page-switch span.prev{
    margin-left: 25px;
    background: url("../img/education/pageup_icon.png")no-repeat 10px center;
}
.edu-wrapper .info .page-switch span.next{
    margin: 25px;
    background: url("../img/education/pagedown_icon.png")no-repeat 10px center;
}

/***************************************************************************************************************************
                                              艺博网站-展览
***************************************************************************************************************************/
.exhibition-logo{
    top: 295px;
}
.exhibition-second-stage ul{
    display: block;
    overflow: hidden;
}


.exhibition-second-stage ul li{
    display: block;
    float: left;
    width: 18.095%;
    margin-left: 2.38%;
}
.exhibition-second-stage ul li:first-child{
    margin-left: 0;
}
.exhibition-second-stage ul li a{
    position: relative;
    display: block;
    width: 100%;
}
.exhibition-second-stage ul li a img{
    max-width: 100%;
}

.exhibition-second-stage ul li a .mask{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3%;
    background: rgba(0,0,0,0.4);
    z-index: 5;

   /* border: 1px solid firebrick;*/
}
.exhibition-second-stage ul li a:hover .mask,
.exhibition-second-stage ul li a.col-active .mask{
    background: rgba(0,0,0,0);
}
.exhibition-second-stage ul li a .circle-selected{
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    margin: 0 -24.67%;
    width: 49.34%;
    height: 100%;
    background: rgba(255,0,0,0);
    border-radius: 50%;
    z-index: 10;
}
.exhibition-second-stage ul li a:hover .circle-selected,
.exhibition-second-stage ul li a.col-active .circle-selected{
    background: rgba(167,25,49,0.6);
}

.exhibition-second-stage ul li a img.exhibition-icon{
    display: block;
    position: absolute;
    top: 45%;
    left: 23.03%;
    margin: 0;
    max-width: 9.21%;
    z-index: 50;

}
.exhibition-second-stage ul li a:hover img.exhibition-icon,
.exhibition-second-stage ul li a.col-active img.exhibition-icon{
    top: 21.33%;
    left: 45%;
}

.exhibition-second-stage ul li a .exhibition{
    display: block;
    position: absolute;
    top: 40%;
    left: 38.82%;
    font-size: 1.875em;
    color: #fff;
    z-index: 50;
}
.exhibition-second-stage ul li a:hover .exhibition,
.exhibition-second-stage ul li a.col-active .exhibition{
    top: 47%;
    left: 30%;
}
/*媒体查询*/
@media (min-width: 1380px) and (max-width: 1440px) {
    .exhibition-second-stage ul li a img.exhibition-icon{
        top: 47%;
        left: 23.03%;
    }
    .exhibition-second-stage ul li a:hover img.exhibition-icon,
    .exhibition-second-stage ul li a.col-active img.exhibition-icon{
        top: 21.33%;
        left: 45%;
    }

    .exhibition-second-stage ul li a .exhibition{
        top: 40%;
        left: 37.8%;
        font-size: 1.5em;
    }
    .exhibition-second-stage ul li a:hover .exhibition,
    .exhibition-second-stage ul li a.col-active .exhibition{
        top: 47%;
        left: 29.5%;
    }
}

@media (min-width: 1200px) and (max-width: 1379px) {
    .exhibition-second-stage ul li a img.exhibition-icon{
        top: 47%;
        left: 23.03%;
    }
    .exhibition-second-stage ul li a:hover img.exhibition-icon,
    .exhibition-second-stage ul li a.col-active img.exhibition-icon{
        top: 21.33%;
        left: 45%;
    }

    .exhibition-second-stage ul li a .exhibition{
        top: 40%;
        left: 37.8%;
        font-size: 1.3em;
    }
    .exhibition-second-stage ul li a:hover .exhibition,
    .exhibition-second-stage ul li a.col-active .exhibition{
        top: 47%;
        left: 28.5%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .exhibition-second-stage ul li a img.exhibition-icon{
        top: 45%;
        left: 23.03%;
    }
    .exhibition-second-stage ul li a:hover img.exhibition-icon,
    .exhibition-second-stage ul li a.col-active img.exhibition-icon{
        top: 21.33%;
        left: 45%;
    }

    .exhibition-second-stage ul li a .exhibition{
        top: 38%;
        left: 37.8%;
        font-size: 1.1em;
    }
    .exhibition-second-stage ul li a:hover .exhibition,
    .exhibition-second-stage ul li a.col-active .exhibition{
        top: 47%;
        left: 29%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .exhibition-second-stage ul li a img.exhibition-icon{
        top: 45%;
        left: 23.03%;
    }
    .exhibition-second-stage ul li a:hover img.exhibition-icon,
    .exhibition-second-stage ul li a.col-active img.exhibition-icon{
        top: 21.33%;
        left: 45%;
    }

    .exhibition-second-stage ul li a .exhibition{
        top: 38%;
        left: 37.8%;
        font-size: 1.1em;
    }
    .exhibition-second-stage ul li a:hover .exhibition,
    .exhibition-second-stage ul li a.col-active .exhibition{
        top: 47%;
        left: 29%;
    }
}

@media (max-width: 767px) {
    .exhibition-second-stage ul li{
        display: block;
        float: left;
        width: 48%;
        margin: 10px 0;
    }

    .exhibition-second-stage ul li:nth-child(2){
        float: right;
    }

    .exhibition-second-stage ul li:nth-child(4){
        float: right;
    }

    .exhibition-second-stage ul li img.second-column{
        width: 100%;
    }

    .exhibition-second-stage ul li:last-child{
        float: right;

        margin: 10px 22%;
    }

    .exhibition-second-stage ul li a:hover .exhibition,
    .exhibition-second-stage ul li a.col-active .exhibition{
        left: 32%;
    }
}


.exhibition-body{
    position: relative;
    height: auto;
    border: 1px solid transparent;
}


.exhibition-body .titles h1{
    text-align: center;
}

.exhibition-body .titles .second-title{

    height: 35px;
    margin-left: 0;
}

.exhibition-body .lists{
    width: 88.214%;
    height: auto;
    margin: 38px auto;
    /* border: 1px solid firebrick;*/
    overflow: hidden;
}
.exhibition-body .lists ul li{
    display: block;
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    margin-top: 20px;
    border-bottom: 1px dashed #666;
    overflow: hidden;
    min-height: 310px;
}
.exhibition-body .lists ul li:first-child{
    margin-top: 0;
}
.exhibition-body .lists ul li img{
    display: block;
    /*max-width: 35.897%;*/
    height: 310px;
    float: left;

}

.exhibition-icon{
    background-size: 100% 100%;
    height: 310px;
    background-repeat: no-repeat;
    position: relative;
}

.exhibition-body .lists ul li .exhibition-info{
    position: relative;
    float: left;
    /*width: 64.1030%;*/
    height: 310px;
    /*border: 1px solid forestgreen;*/

    background-size: 100% 100%;
    height: 310px;
    background-repeat: no-repeat;
}
.exhibition-body .lists ul li .exhibition-info img{
    display: block;
    max-width: 100%;
    height: auto;
    z-index: -1;
}
.exhibition-body .lists ul li .exhibition-info .info-wrapper{
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    padding: 0;
    height: 100%;
    color: #fff;
    font-family: 黑体;
    z-index: 10;
    overflow: hidden;
}
.exhibition-info .info-wrapper a:hover{
    color: #fff;
}
.exhibition-info .info-wrapper h2{
    font-size: 2em;
    font-weight: bold;
    position: absolute;
    left: 0;
    right: 0;
    top:34px;
    height: 30px;
    line-height: 30px;
    white-space: nowrap;
}
.exhibition-info .info-wrapper p{
    margin: 0;
    font-size: 1.125em;
}

.exhibition-info .info-wrapper p.time{
    margin-top: 36px;
}
.exhibition-info .info-wrapper p.address{
    margin-top: 20px;
}
.exhibition-info .info-wrapper p.detail {
/*    margin-top: 44px;
    line-height: 1.56;*/
    line-height: 25px;
    left:0;
    right: 0;
    overflow: hidden;
    top:190px;
    height: 100px;
    position: absolute;
}

.exhibition-info .activityTime{
    position: absolute;
    left:0;
    right: 0;
    top:100px;
    height: 18px;
    line-height: 18px;
    overflow: hidden;
}
.exhibition-info .activityPlace{
    position: absolute;
    left:0;
    right: 0;
    top:138px;
    height: 18px;
    line-height: 18px;
    overflow: hidden;
}

/***************************************************************************************************************************
                                              艺博网站-展览-进入
***************************************************************************************************************************/
.exhibition-body .show{
    width: 88.095%;
    margin: 36px auto 0;
    min-height: 582px;
    overflow: hidden;
    padding-left: 15px;
    padding-right: 15px;
   /* border: 1px solid forestgreen;*/
}

.exhibition-content-show{
    float: left;
    /*width: 70%;*/
    height: 582px;
   /* border: 1px solid firebrick;*/
    background-color: #333;
    color: #fff;
    line-height: 582px;
    text-align: center;
    font-size: 20px;
    padding:0;
}

.exhibition-video{
    display: none;
    width: 100%;
    height: 100%;
}
.exhibition-panorama{
    display: none;
    width: 100%;
    height: 100%;
}

.exhibition-album{
    display: block;
    width: 100%;
    height: 100%;
}
.exhibition-picture{
    display: none;
    width: 100%;
    height: 100%;
}

.exhibition-switch{
    float: right;
    /*width: 30%;*/
    height: 582px;
    padding:0;
}
.exhibition-switch ul{
    display: block;
    width: 100%;
    height: 100%;
}
.exhibition-switch ul li{
    display: block;
    float: none;
    height: 33.333%;
    margin-bottom: 1px;
    padding:0;
    float: left;
}

.exhibition-switch ul li a{
    display: block;
    width: 100%;
    height: 100%;
    background: #222835;
}
.exhibition-switch ul li a:hover,.exhibition-switch ul li a.exhibition-active{
    color: #fff;
    background: #ce1c1a;
    text-decoration: none;
}
.ex-wrapper{
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 40px;
}
.video-wrapper{
    /*background: url("../img/exhibition/movie-icon.png")no-repeat 15.766% center;*/
    background-image:url("../img/exhibition/movie.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
.panorama-wrapper{
    /*background: url("../img/exhibition/360-icon.png")no-repeat 15.766% center;*/
    background-image:url("../img/exhibition/360.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
.picture-wrapper{
    /*background: url("../img/exhibition/pic-icon.png")no-repeat 15.766% center;*/
    background-image:url("../img/exhibition/pic.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.ex-wrapper span{
    display: block;
    margin-left: 44.045%;
    font-family: 黑体;
    font-size: 2.125em;
}
.ex-wrapper span.bottom{
    margin-top: 15px;
}

.exhibition-bottom{
    width: 88.095%;
    height: auto;
    margin: 0 auto;
    font-family: 黑体;
    border: 1px solid transparent;
    margin-top: 100px;
}
.exhibition-bottom-item{
    height: 280px;
    margin-top:20px;
    position: relative;
}
.exhibition-bottom-bg{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;

    -ms-behavior: url(../${res}/htc/backgroundsize.min.htc);
}
.exhibition-bottom-title{
    height: 80px;
    line-height: 80px;
    position: relative;
    top:200px;
    width: 100%;
    text-align: center;
    color:#fff;
    background-color: #000;
    background-color: rgba(0,0,0,0.5);
    font-size: 24px;
}

.exhibition-body .brief-intro{
    width: 88.095%;
    height: auto;
    margin: 0 auto;
    margin-top: 0;
    font-family: 黑体;
    padding-left: 15px;
    padding-right: 15px;
    /*border: 1px solid transparent;*/
}
.brief-intro-plane{
    padding-left:35px;
    padding-right: 35px;
    background: #EDEDED;
}
.exhibition-body .brief-intro h3{
    margin-top: 0;
    font-size: 1.5em;
    font-weight: bold;
    padding-top: 27px;
    /* border: 1px solid firebrick;*/
}
.exhibition-body .brief-intro p{
    font-size: 1.125em;
    line-height: 2.25;
}
.exhibition-body .brief-intro p a.open{
    color: #cd1c19;
    cursor: pointer;
}

.exhibition-body .latest-exhibition{
    width: 88.095%;
    margin: 122px auto;
}
.exhibition-body .latest-exhibition .ex-col{
    padding: 0;
    /* border: 1px solid firebrick;*/
}
.exhibition-body .latest-exhibition a{
    display: block;
    width: 100%;
    padding: 0;
}
.exhibition-body .latest-exhibition a img{
    max-width: 96.08%;
    margin-left: 0;
}
.exhibition-body .latest-exhibition a img.second{
    margin-left: 2.027%;
}
.exhibition-body .latest-exhibition a img.last{
    float: right;
    margin-right: 0;
}


.exhibition__page--jump{
    display: block;
    position: relative;
    width: 88.1%;
    height: auto;
    margin: 5% auto;
    color: #333;
    font-family: 黑体, 'sans-serif';
    font-size: 1.25em;

     /*border: 1px solid firebrick;*/
}
.exhibition__page--jump ul{
    display: block;
    float: left;
    width: 50%;
    height: auto;
    /* border: 1px solid #f0ad4e;*/
}

.exhibition__page--jump ul li{
    float: none;
    display: block;
    margin-bottom: 5px;
}
.exhibition__page--jump a{
/*    display: block;
    float: right;
    width: 7.01%;
    height: 0;
    margin-top: 15px;
    padding-bottom: 3.74%;
    padding-right: 5px;
    line-height: 2.0em;
    text-align: right;*/
    color: #333;
/*    background: url("../img/common/back.png") no-repeat left center;
    border: 1px solid #cdcdcd;
    border-radius: 2px;*/
}
.exhibition__page--jump a:hover{
    text-decoration: none;
}

a.exhibition__content--back{
    display: block;
    float: right;
    width: 6%;
    height: 0;
    margin-top: 15px;
    padding-bottom: 3%;
    padding-right: 10px;
    line-height: 2.3em;
    text-align: right;
    color: #333;
    background: url("../img/common/back.png") no-repeat 10% center;
    border: 1px solid #cdcdcd;
    border-radius: 2px;
}


.titles h1 img{
    margin-top: -6px;
}

.titles h3 img{
    margin-top: -4px;
}
/***********************************************************************************************************
                                          艺博网站-服务
************************************************************************************************************/
.service-logo{
    top: 210px;
}
.service-banner{
    display: block;
    max-width: 100%;
    height: 268px;
}
.service-second-stage{
    display: inline-block;
    height: auto;
    padding: 0;
}
.service-second-stage .service-col{
    padding: 0;
}

.service-second-stage .service-col:nth-child(2) a{
    margin-left: 2.38%;
}

.service-second-stage .service-col:nth-child(3) a{
    margin-left: 4.76%;
}

.service-second-stage .service-col:last-child a{
    float: right;
}

.service-second-stage a{
    position: relative;
    display: block;
    width: 92.86%;
}

.service-second-stage a img{
    display: block;
    margin: 0;
    max-width: 100%;
}

.service-second-stage .service-col a .mask{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3%;
    background: rgba(0,0,0,0.4);
    z-index: 5;
}
.service-second-stage .service-col a:hover .mask,
.service-second-stage a.col-active .mask{
    background: rgba(0,0,0,0);
}


.service-second-stage .service-col a .circle-selected,
.service-second-stage a.col-active .circle-selected{
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    margin: 0 -19.23%;
    width: 38.46%;
    height: 100%;
    background: rgba(255,0,0,0);
    border-radius: 50%;
    z-index: 10;
}
.service-second-stage .service-col a:hover .circle-selected,
.service-second-stage a.col-active .circle-selected{
    background: rgba(167,25,49,0.6);
}
.service-second-stage .service-col a img.service-icon,
.service-second-stage a.col-active img.service-icon{
    display: block;
    position: absolute;
    top: 45%;
    left: 32.31%;
    margin: 0;
    max-width: 6.92%;

    z-index: 50;

}
.service-second-stage .service-col a:hover img.service-icon,
.service-second-stage a.col-active img.service-icon{
    top: 21.33%;
    left: 46.67%;
}

.service-second-stage .service-col a .service,
.service-second-stage a.col-active .service{
    display: block;
    position: absolute;
    top: 40%;
    left: 44.10%;
    font-size: 1.875em;
    color: #fff;
    z-index: 50;
}
.service-second-stage .service-col a:hover .service,
.service-second-stage a.col-active .service{
    top: 47%;
    left: 34%;
}

/*媒体查询*/
@media (min-width: 1380px) and (max-width: 1440px) {
    .service-second-stage .service-col a .service,
    .service-second-stage a.col-active .service{
        font-size: 1.6em;
    }

    .service-second-stage .service-col a:hover .service,
    .service-second-stage a.col-active .service{
        top: 47%;
        left: 32%;
    }
}
@media (min-width: 1200px) and (max-width: 1379px) {
    .service-second-stage .service-col a img.service-icon,
    .service-second-stage a.col-active img.service-icon{
        display: block;
        position: absolute;
        top: 45%;
        left: 32.31%;
        margin: 0;
        z-index: 50;

    }
    .service-second-stage .service-col a:hover img.service-icon,
    .service-second-stage a.col-active img.service-icon{
        top: 21.33%;
        left: 46.67%;
    }

    .service-second-stage .service-col a .service,
    .service-second-stage a.col-active .service{
        font-size: 1.2em;
    }

    .service-second-stage .service-col a:hover .service,
    .service-second-stage a.col-active .service{
        top: 47%;
        left: 34%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service-second-stage .service-col a img.service-icon,
    .service-second-stage a.col-active img.service-icon{
        display: block;
        position: absolute;
        top: 45%;
        left: 32.31%;
        margin: 0;
        z-index: 50;

    }
    .service-second-stage .service-col a:hover img.service-icon,
    .service-second-stage a.col-active img.service-icon{
        top: 21.33%;
        left: 46.67%;
    }

    .service-second-stage .service-col a .service,
    .service-second-stage a.col-active .service{
        font-size: 1.2em;
    }

    .service-second-stage .service-col a:hover .service,
    .service-second-stage a.col-active .service{
        top: 49%;
        left: 34%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .service-second-stage a img{
        display: block;
        margin: 0;
        width: 100%;
    }

    .service-second-stage .service-col{
        margin-bottom: 30px;
    }

    .service-second-stage .service-col:nth-child(2) a{
        float: right;
        margin: 0;
    }

    .service-second-stage .service-col:nth-child(3) a{
        float: left;
        margin: 0;
    }

    .service-second-stage .service-col a .service,
    .service-second-stage a.col-active .service{
        font-size: 1.6em;
    }

    .service-second-stage .service-col a:hover .service,
    .service-second-stage a.col-active .service{
        top: 49%;
        left: 34%;
    }

}

@media (max-width: 767px) {
    .service-second-stage .service-col{
        margin-bottom: 30px;
    }

    .service-second-stage .service-col:nth-child(2) a{
        float: right;
        margin: 0;
    }

    .service-second-stage .service-col:nth-child(3) a{
        float: left;
        margin: 0;
    }

    .service-second-stage .service-col a .service,
    .service-second-stage a.col-active .service{
        font-size: 1.4em;
    }

    .service-second-stage .service-col a:hover .service,
    .service-second-stage a.col-active .service{
        left: 35%;
    }
}

.service-body .titles .second-title{
    height: 35px;
}
.service-body .titles  .crumb-ser-first{
    width: 2%;
}
.service-body .titles  .crumb-ser-second{
    width: 4%;
}

#open_info{
    display: block;
    height: auto;
}

/********************************开放信息**********************************/
.service-body .info-lists,.service-body .info-map{
    width: 76.19%;
    height: auto;
    margin: 40px auto;
    /*border: 1px solid crimson;*/
}
.service-body .info-lists ul{
    display: block;
    height: auto;
}
.service-body .info-lists ul li{
    display: block;
    float: none;
    height: auto;
}
.service-body .info-lists ul li p{
    display: block;
    padding: 0;
    padding-left: 3.91%;
    color: #333;
    font-size: 1.125em;
    line-height: 2.5;
    /* border: 1px solid firebrick;*/
}
.service-body .info-lists ul li p.tel{
    background: url("../img/service/phone.png")no-repeat left 60%;
}
.service-body .info-lists ul li p.address{
    background: url("../img/service/address.png")no-repeat left 60%;
}
.service-body .info-lists ul li p.post{
    background: url("../img/service/postcode.png")no-repeat left 60%;
}
.service-body .info-lists ul li p.bus{
    background: url("../img/service/bus.png")no-repeat left 35%;
}
.service-body .info-lists ul li p.self-driving{
    background: url("../img/service/car.png")no-repeat left 60%;
}
.service-body .info-lists ul li p.price{
    background: url("../img/service/ticket.png")no-repeat left 35%;
}
.service-body .info-lists ul li p.open-time{
    background: url("../img/service/time.png")no-repeat left 60%;
}
.service-body .info-map{
    width: 57.5%;
    height: auto;
    margin: 0 auto 40px;
}
.service-body .info-map img{
    max-width: 100%;
}

/*媒体查询*/
@media (min-width: 1380px) and (max-width: 1439px) {

}

@media (min-width: 1200px) and (max-width: 1379px) {

}

@media (min-width: 992px) and (max-width: 1199px) {

}

@media (min-width: 768px) and (max-width: 991px) {
    .service-body .info-lists ul li p{
        padding-left: 40px;
    }
}

@media (max-width: 767px) {
    .service-body .info-lists ul li p{
        padding-left: 40px;
    }

    .service-body .info-lists ul li p span{
        font-size: 1.3em;
    }
}

/**************************服务项目*************************/
.service-body .service-wrapper{
    width: 76.19%;
    height: auto;
    margin: 38px auto;
    padding: 0;
    /* border: 1px solid firebrick;*/
}
.service-body .service-wrapper h3{
    display: inline-block;
    margin: 0;
    padding-left: 1.95%;
    color: #333;
    background: url("../img/service/red_icon.png")no-repeat;
    font-size: 1.625em;
}
.service-body .service-wrapper p{
    margin-top: 20px;
    padding-left: 1.95%;
    color: #333;
    font-size: 1.125em;
    line-height: 1.875;
}
.service-body .service-wrapper .table{
    width: 96.09%;
    height: 230px;
    margin: 65px auto 38px;
    border: 1px solid #666;
}
.service-body .service-wrapper .table ul{
    display: block;
    height: 100%;
    width: 100%;
}
.service-body .service-wrapper .table ul li{
    display: block;
    height: 100%;
    width: 33.33%;
    border-right: 1px solid #959595;
}
.service-body .service-wrapper .table ul li:last-child{
    border: none;
}
.service-body .service-wrapper .table ul li .title,.service-body .service-wrapper .table ul li .content{
    width: 100%;
    height: 26.09%;
    line-height: 60px;
    color: #333;
    background: #EBEBEB;
    text-align: center;
    font-size: 1.125em;
}
.service-body .service-wrapper .table ul li .title{
    border-bottom: 1px solid #959595;
}
.service-body .service-wrapper .table ul li .content{
    line-height: 170px;
    background: #fff;
}
.service-body .service-wrapper .table ul li .open-time{
    padding-top: 50px;
    line-height: 40px;
}

/**************************************馆内设施***********************************/
.service-body img.museum-facility{
    display: block;
    margin: 36px auto;
    max-width: 72.98%;
}

/*********************************周边设施*****************************************/
.service-body{
    padding-bottom: 36px;
}
.service-body .surrounding-facility{
    position: relative;
    display: block;
    width: 71.20%;
    height: auto;
    margin: 36px auto;
    /*border: 1px solid firebrick;*/
}
.service-body .surrounding-facility img.map{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
.service-body .surrounding-facility img.zoom{
    display: block;
    position: absolute;
    top: 0;
    right: 14.0%;
    width: 52px;
    z-index: 100;
}


/*艺博动态，文博动态list详情页*/
.info-dynamic-news{
    display: block;
    width: 77.62%;
    margin: 50px auto;
     /*border: 1px solid fuchsia;*/
}
.article-title{
    display: block;
    width: 100%;
    color: #333;
    text-align: center;
    font: bold 1.5em  黑体,'sans-serif';
}

.article-meta{
    display: block;
    width: 100%;
    text-align: center;
    /* border: 1px solid firebrick;*/
    margin-bottom: 30px;
}

.article-content{

}

/*下一篇 上一篇 返回*/
.content-back{
    width: 74px;
    height: 34px;
    line-height: 34px;
    border:1px solid #eee;
    color:#999;
    text-align: center;
    font-size: 12px;
    border-radius: 4px;
    float: right;
    margin-bottom: 20px;
}
.content-btn{
    width: 83px;
    height: 34px;
    line-height: 34px;
    border:1px solid #eee;
    color:#999;
    text-align: center;
    font-size: 12px;
    border-radius: 4px;
    float:right;
    margin-left: 20px;
    margin-bottom: 20px;
}
.content-btn img,.content-back img{
    margin-top: -3px;
}
.content-pages-dosomething{
    position:relative;
    width: 76%;
    height: 34px;
    padding-bottom: 85px;
    margin: 70px auto 50px;
}

.content-pages-dosomething a,.content-pages-dosomething-video a{
    color: #999;
}
.content-pages-dosomething a:hover,.content-pages-dosomething-video a:hover{
    color:#999;
}

.content-pages-dosomething-video{
    position: relative;
    width: 100%;
    /* top: 78%; */
    height: 34px;
    margin-top: 55px;
    padding-bottom: 85px;
}

.activity-body{
    padding-bottom: 20px;
}

.myScrollbarH{
    display: none;
}
.myScrollbarV{
    display: none;
}


.list-level2{
    display: none;
    position: relative;
    min-height: 258px;
    width: 100%;
    bottom:-94px;
    background-color:#333;
    background-color:rgba(0,0,0,0.5);
    z-index: 100000000;

}
.list-level2-plane{
    position: absolute;
    top:54px;
    min-height: 150px;
    width: 87.5%;
    left:6.25%;
}

.nav-item{
    white-space:nowrap;
}

.index-main .dynamic .more{
    position: absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background-position: center center;
    background-size: contain;
    background-image: url(../img/index/more.png);
    background-repeat: no-repeat;
}

@media ( min-width : 992px) {
    nav ul.lists li.list .wrapper a:hover, nav ul.lists li.list .wrapper a.active{
        background:none
    }

    nav ul.lists li.list .wrapper a{
        background:none
    }
}
@media ( min-width : 768px) {
    nav ul.lists li.list .wrapper a:hover, nav ul.lists li.list .wrapper a.active{
        background:none
    }

    nav ul.lists li.list .wrapper a{
        background:none
    }
}
@media ( min-width : 1200px) {
    nav ul.lists li.list .wrapper a:hover, nav ul.lists li.list .wrapper a.active{
        background: url(../img/common/more.png) no-repeat right center;
    }

   nav ul.lists li.list .wrapper a{
	   /* background: url(../img/common/chevron-thin-right.png) no-repeat 100% 43px,url(../img/common/rect-bottom.png) repeat-x 0 65px; */
    }
}

.list-english{
    display: none;
}

.xs-logo{
    display: none;
}

@media ( width : 768px) {
    .xs-logo{
        display: block;
        width: 78px;
        height: 60px;
        top:15px;
        left:50%;
        margin-left: -39px;
        background-image: url(../img/common/logo.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        position: absolute;
        z-index: 1000000;
    }
}

@media ( max-width : 768px) {
    #season_album .season_wrapper .btn,.season_album .season_wrapper .btn{
        width: 26px;
        height: 54px;
    }
    .btn{
        padding:0;
    }
    .station_link{

    }

    .xs-logo{
        display: block;
        width: 78px;
        height: 60px;
        top:15px;
        right: 5px;
        background-image: url(../img/common/logo.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        position: absolute;
        z-index: 1000000;
    }

    .big-mark{
        display:none
    }
    .index-main .news-wrapper .news-title span.up{
        font-size:1em;
    }
    .index-main .news-wrapper .news-title{
        top:12.5%;
    }
    a.english{
        display: none;
    }
    a.follow{
        display:none;
    }
    .list-english{
        display: block;
    }

    .info-titles p span.time{
        display: none;
    }
    .info-titles p span.author{
        display: none;
    }
    .info-titles p span.source{
        display: none;
    }

    .pagination{
        float: left;
    }
    .page-next{
        float: right;
        width: 40px;
        height: 20px;
        line-height: 20px;
        font-size: 12px;
    }
    .pagesite span, .pagesite2 span{
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 1.5em;
    }

    .edu-titles p span.time{
        display: none;
    }
    .edu-titles p span.author{
        display: none;
    }
    .edu-titles p span.source{
        display: none;
    }

    .edu__lecture--show iframe{
        min-height: 251px;
    }

    #wanshou_temple{
        height:1800px;
    }

    #wanshou_temple .scroll-list .brief .brief-p span{
        display: none;
    }

    .index-main .title span.first{
        font-size: 1.2em;
    }
    .index-main .title span.second{
        display: none;
    }
    #cal_day{
        font-size: 1.2em;
    }
    #cal_year, #cal_month, #cal_day{
        font-size: 0.6em;
    }
    #cal_month{
        top:0;
    }
    .calendar-wrapper .first{
        margin-top: 5px;
    }

    .index-main .news-wrapper a.item-more{
        left: 12%;
        bottom: 12%;
        height: 10.25%;
    }
    .index-main .news-wrapper .news-title .down{
        display: none;
    }

    .carouselWrap{
        display:none;
    }
    .common-banner{
        display: none;
    }

    #preview_container,.preview_container{
        display: none;
    }

    .activity_calendar-wrapper .legend{
        display: none;
    }

}

@media ( max-width : 992px) {
    .big-mark{
        display:none
    }
    .index-main .news-wrapper .news-title span.up{
        font-size:1em;
    }
    .index-main .news-wrapper .news-title{
        top:15.5%;
    }
    .index-main .news-wrapper .news-title .down{
        display: none;
    }
}
@media ( max-width : 1200px){
    .index-main .news-wrapper .news-title .down{
        display: none;
    }
    .index-main .news-wrapper .news-title{
        top:18%;
    }
    .index-main .news-wrapper .news-title span.up{
        font-size:1em;
    }

    a.english{
        display: none;
    }
    a.follow{
        display:none;
    }
}

embed{
    max-width: 100%;
}

.pagesite a{
    display: inline;
    width: auto;
}

#collection_lists_find{
    display: none;
}

.col-active .mask{
    display: none;
}

.col-item-plane .mask{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    left: 0;
    top: 0;
    border-radius: 3.5%;
}

/*站内搜索*/
.search_model .info-titles{
    margin-top:3%;
    width: 100%;
}
.search_model .info-titles .search_result{
    font-size:2em;
    font-weight:bold;
    color:#333;
    line-height:300%;
    text-align: center;
    margin: 0;
}
.search_model .info-titles .search_result:before{
    display: inline-block;
    content:"";
    position:relative;
    top:2px;
    left:-20px;
    width: 25px;
    height: 30px;
    background: url(../img/sy1.png)no-repeat center center;
    background-size:contain;
}
.search_model .info-titles ul{
    width: 40%;
    overflow: hidden;
    margin: 0 auto;
}
.search_model .info-titles ul li{
    width: 9%;
    margin-left:5%;
    color:#333;
    font-size:1.2em;
}
.search_model .info-titles ul li.checknow{
    color:#cd1c19;
}
.search_model .info-titles ul li:hover{
    color:#cd1c19;
    cursor:pointer;
}
.search_model .info-lists #search_li{
    padding:0;
    position: relative;
    border:none;
}

.search_model .info-lists{
    width: 80%;
    margin-top:3%;
    min-height:500px;
}
.search_model .info-lists #search_input{
    width: 91%;
    height:40px;
    font-size:1em;
    color:#666;
    padding-left:15px;
    line-height:40px;
    border:2px solid #cdcdcd;
    margin-right:.5%;
}
.search_model .info-lists #search_btn{
    width:8.4%;
    min-width:90px;
    right:0;
    bottom:20px;
    position:absolute;
    display: inline-block;
    height:40px;
    background:url(../img/index/search_icon.png)no-repeat center center;
    background-size:cover;
    cursor:pointer;
}
.search_model .info-lists ul li span.title{
    padding-left:0;
    width: 60%;
}
.search_model .info-lists ul li span.time{
    text-align: right;
    float:right;
    width: 20%;
    margin:0;
}
.search_model .info-lists ul div{
    text-align: center;
    margin-top:30px;
}
.search_model .info-lists ul div a{
   color:#000;
}
.link{
    width:100%;
    margin-top:4%;
    padding-top:3%;
    padding-left: 20%;
    padding-right:20%;
}.link h3.webmaptitle{
     text-align: center;
    font-size: 2em;
     margin-bottom:5%;
 }
.link h3.webmaptitle:before{
    display: inline-block;
    content:"";
    position:relative;
    top:2px;
    left:-20px;
    width: 25px;
    height: 30px;
    background: url(../img/sy1.png)no-repeat center center;
    background-size:contain;
}
.link .station_link{
    width: 100%;
    text-align: center;
    background-color: #fff;
    overflow:hidden;

    padding-top:20px;
    padding-bottom:5%;
}
.station_link .first{
    width:100%;
    border-bottom:1px  dotted #ddd;
    height:90px;
    float:left;
    text-align: left;
}
.station_link .subnav li{
    display: block;
    margin-right:5%;
    float:left;
}
.station_link .first .title{
    height:30px;
    line-height:30px;
    margin-top:10px;

}
.sectiontitle{
    margin:0;
}
.station_link .first  a:hover{
    text-decoration: underline;
    color:#2a6496;
}
.station_link .first  a{
    color:#333;
    font-size:1em;
}
.station_link .first .title a{
    font-weight:bold;
    height:30px;
    color:#333;
    font-size:1.2em;
}
/*媒体查询*/
@media (min-width: 1440px) and (max-width: 1700px) {
	.activity-body .activity-lists{
		width: 100%;
	}
	.activity-body-bg .activity-main{
		width: 90%;
		margin-left: 10%;
	}
	ul.lists{
		padding-left:5%;
	}
	nav ul.lists li.list{
		width:7.5%;
	}
}
@media (max-width: 1439px){
	.activity-box{
		width:100%;
	}
}
@media (min-width: 1380px) and (max-width: 1440px) {
  nav{
      font-size: 90%;
  }
}
@media (min-width: 1200px) and (max-width: 1379px) {
    nav{
        font-size: 85%;
    }

    nav ul.lists li.list {
        float: left;
        list-style: none;
        height: 95%;
        line-height: 94px;
        width: 6.5%;
        margin-left: 5.0%;
    }

    nav ul.lists li.list:first-child{
        margin-left: 0;
    }

    nav ul.lists li.list:last-child{
        width: 7.2%;
        margin-left: 4.7%;
    }

}

@media (min-width: 992px) and (max-width: 1199px) {
    nav{
        font-size: 80%;
    }

    nav ul.lists li.list {
        float: left;
        list-style: none;
        height: 95%;
        line-height: 94px;
        width: 7%;
        margin-left: 4.4%;
    }

    nav ul.lists li.list:first-child{
        margin-left: 0;
    }

    nav ul.lists li.list:last-child{
        width: 7.6%;
        margin-left: 4.7%;
    }

}

@media (min-width: 768px) and (max-width: 991px) {
    nav{
        font-size: 75%;
    }

    nav ul.lists li.list {
        float: left;
        list-style: none;
        height: 95%;
        line-height: 94px;
        width: 7%;
        margin-left: 4.4%;
    }

    nav ul.lists li.list:first-child{
        margin-left: 0;
    }

    nav ul.lists li.list:last-child{
        width: 7.6%;
        margin-left: 4.7%;
    }

}

@media (max-width: 767px) {
    a.search{
        display:none!important;
    }
    nav.nav{
        z-index: 1000;
    }
    #hum{
        display: block;
    }
    
    .nav_hover{
        display: none;
    }

    nav ul.lists{
        display: block;
        position: absolute;
        top: 90px;
        left: 0px;
        width: 100%;
        height: 0;
        margin: 0;
        background: #A51A2F;
		padding: 0;
    }
	.searchBox{
		right:auto;
		left:0;
	}
	#log{
		display: none;
	}
    nav ul.lists li.list{
        float: none;
        width: 90%;
        height: 60px;
        margin: 0 5%;
        padding-left: 0;
        background: none;
        text-align: left;
        border-bottom: 1px solid #c46c7b;


        cursor: pointer;
    }

    nav ul.lists li.list:first-child{
        margin-left: 5%;
    }
    nav ul.lists li.list:first-child .wrapper a{
        background: none;
    }
    nav ul.lists li.list:last-child{
        width: 90%;
        margin-left: 5%;
    }

    nav ul.lists li.list .wrapper a:hover,
    nav ul.lists li.list .wrapper a:active,
    nav ul.lists li.list .wrapper a:focus{
        color: #999;
        background: none;
        border-bottom: none;
        text-decoration: none;
    }

    nav ul.lists li.list .wrapper{
        width: 100%;
        height: 60px;
        line-height: 60px;
        overflow: hidden;
    }

    nav ul.lists li.list .wrapper a{
        background:none;

    }


    nav ul.lists li.list ul {
        float: left;
        margin-left: 30px;
    }

    nav ul.lists li.list ul li{
        float: none;
        height: 60px;
    }
    nav ul.lists li.list ul li:first-child{
        height: 60px;
        line-height: 60px;

    }
    nav ul.lists li.list ul li a{
        display: block;
        height: 100%;
        line-height: 60px;
    }
    nav ul.lists li.list ul li:first-child a{
        line-height: 60px;
    }

    nav ul.lists li.list .wrapper a{
        float: left;
        display: block;
        margin-top: 0px;
        padding: 0;
        width: 100px;
        height: 100%;
        color: #fff;
        font-size: 1.8em;
        font-weight: normal;
    }

    nav ul.lists li.list ul.display{
        display: block;
        margin-top: 0px;
    }
    nav ul.lists li.list .wrapper img{
        display: inline-block;
        float: right;
        margin-right: 5px;
        cursor: pointer;

        transition: all 0.3s;
    }

    nav ul.lists li.list .wrapper img.rotate{
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}
/*媒体查询*/
@media (min-width: 1380px) and (max-width: 1440px) {
    .info-second-stage .col-item a .info{
        font-size: 0.8em;
    }
    .info-second-stage .col-item a:hover .info,
    .info-second-stage a.col-active .info {
        top: 60%;
        left: 38.26%;
        font-size: 0.8em;
    }

    .info-second-stage a.col-active img.info-icon,
    .info-second-stage a:hover img.info-icon{
        top: 20%;
    }
}

@media (min-width: 1200px) and (max-width: 1379px) {
    .info-second-stage .col-item a .info{
        font-size: 0.7em;
    }
    .info-second-stage .col-item a:hover .info,
    .info-second-stage a.col-active .info {
        left: 37.5%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .info-second-stage .col-item a .info{
        font-size: 0.7em;
    }
    .info-second-stage .col-item a:hover .info,
    .info-second-stage a.col-active .info {
        left: 37.5%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .info-second-stage .col-item a .info{
        font-size: 0.6em;
    }
    .info-second-stage .col-item a:hover .info,
    .info-second-stage a.col-active .info {
        left: 37%;
    }
}

@media (max-width: 767px) {
    .info-second-stage .col-item a{
        float: none;
        margin: 10px auto;
    }
    .info-second-stage div.col-item:last-child a{
        float: none;
    }
    .info-second-stage .col-item a img.second-column{
        width: 100%;
    }

    .info-second-stage .col-item a:hover .info,
    .info-second-stage a.col-active .info{
        left: 40%;
    }

    .info-second-stage .col-item a img.info-icon{
        left: 37%;
    }

    .info-second-stage a.col-active img.info-icon,
    .info-second-stage a:hover img.info-icon{
        left: 47.5%;
    }
	.col-item-plane{
		left:0;
		right:0;
		margin-right: 10px;
	}
	.edu-second-stage .col-item{
		height:50px;
	}
	.second-stage{
		margin-top:100px;
	}
	.when-active span, .when-no-active span{
		font-size: 12px;
	}
	.when-active-span{
		line-height: 50px;
		height:50px;
	}
	.col-active .circle-selected{
		display:none;
	}
	.when-active-img{
		top:50px;
	}
}
@media (max-width: 767px) {
	.edu-second-stage .col-item a,
	.edu-second-stage .col-item:last-child a,
	.edu-second-stage .col-item:nth-child(2) a{
		display: block;
		height: 50px;
		line-height: 50px;
	}
	.edu-second-stage .col-item a img{
		display: none;
	}
    .edu-second-stage .col-item a img.second-column{
        width: 100%;
    }

    .edu-second-stage .col-item a:hover .education,
    .edu-second-stage a.col-active .education {
        left: 40%;
    }

    .edu-second-stage .col-item a img.edu-icon{
        left: 37%;
    }

    .edu-second-stage a.col-active img.edu-icon,
    .edu-second-stage a:hover img.edu-icon{
        left: 47.5%;
    }

    .edu-second-stage  a.col-active .education{
        font-size:0.5em;
    }
}
