/* 轮播图 start */

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    user-select: none;
    display: block !important;
    margin: 0 auto;
}

.carousel-wrapper div { 
    margin-bottom: 0!important;
}
.carousel-np {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 5;
    top: calc(50% - 36px);
    cursor: pointer;
    background: url(../png/arrow.png) no-repeat 0 0;
    display: none;	
}

.carousel-pre {
    left: 16px;
    background-position: 0 -39px;   
}

.carousel-next {
    right: 16px; 
    background-position: -40px -39px;
}

.carousel-wrapper:hover .carousel-np{
	display: block;
}

.carousel-dot-list {
    position: absolute;
    left: 0;
    bottom: 55px;
    z-index: 4;
    width: 100%;
    height: 12px;
    line-height: 12px;
    margin: 0!important;
    overflow: hidden;
    text-align: center;
}

.carousel-dot-item {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 8px 0 0!important;
    cursor: pointer;
    border-radius: 50%;
    background-color: #000;
    opacity: 0.2;
}

.carousel-dot-item-active {
   opacity: 0.8;
}

.carousel-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 350px;
    max-height: 350px;
    overflow: hidden;
   
}
.carousel-image-list {
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 3;
    left: 0px;
    height: 100%;  
}

.carousel-image-item {
    position: relative;
    height: 309px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-self: center;
	overflow: unset !important;    
}
.wrap .main .articleBox .content .carousel-image-list .carousel-image-item
{
    overflow: visible
}

.carousel-image-item-img,
.carousel-image-list .carousel-image-item-img,
#text .carousel-image-list .carousel-image-item-img{
    display: block;
    flex-shrink: 0;
    width: auto!important;
    max-height: 309px!important;
    margin: 0 auto;

}
#articleContent .text .carousel-image-item-img{
    width: auto !important;
    max-width: 100% !important;
    
}
.carousel-image-item-desc {
    position: absolute;
    bottom: -35px;
    width: 100%;
    max-height: 48px;
	line-height: 24px;
    overflow: hidden;
    vertical-align: middle;
    text-align: center;
    color: #333;
}

#bigMain .carousel-image-item-desc,
.wrap #bigMain .articleBox .content .carousel-image-item-desc{
    margin-bottom: 0px !important;
}

/* 轮播图 end */