.clear{
    clear: both;
}
.vertical-container {
    display: -webkit-flex;
    display:         flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
a:hover{
    color: #00a296;
}
.dg_lnsidepages_content a {
    color: #005bac;
}
.dg_lnsidepages_content a:hover{
    color: white !important;
    background: #999999;
}

.rss{
    width: 24px;
    height: 24px;
    background: url(../images/icons.png) no-repeat -75px -12px;
    font-size: 0;
    position: absolute;
    top: 4px;
    right: 10px;
}
/**button hover**/
.btn-4 {
    overflow: hidden;
    position: relative;
}
.btn-4:before {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .2;
    position: absolute;
    top: -50px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: 2;
}

.btn-4:hover:before {
    left: 120%;
    -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 2;
}
/**Fill Vertical**/
.btn-fill-vert {
    background-color: #e5e5e5;
    border: 1px solid #fff;
    color: #a6a6a6;
    overflow: hidden;
}
.btn-fill-vert:before, .btn-fill-vert:after {
    content: '';
    width: 100%;
    height: 0;
    opacity: 0;
    position: absolute;
    left: 0;
    z-index: -1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.btn-fill-vert:before {
    top: 50%;
}
.btn-fill-vert:after {
    bottom: 50%;
}
.btn-fill-vert:hover {
    color: #fff;
}
.btn-fill-vert:hover:before, .btn-fill-vert:hover:after {
    height: 50%;
    opacity: 1;
}
.btn-fill-vert.btn-green:before, .btn-fill-vert.btn-green:after {
    background-color: #00a296;
}
.btn-fill-vert.btn-green:hover {
    border-color: #00a296;
}
/**Border Reversed - Open**/
.btn-border-rev-o {
    position: relative;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.btn-border-rev-o:before, .btn-border-rev-o:after {
    content: '';
    border-style: solid;
    position: absolute;
    z-index: 5;
    box-sizing: content-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.btn-border-rev-o:before {
    width: 0;
    height: 100%;
    border-width: 1px 0 1px 0;
    top: -1px;
    right: 0;
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}
.btn-border-rev-o:after {
    width: 100%;
    height: 0;
    border-width: 0 1px 0 1px;
    bottom: 0;
    left: -1px;
}
.btn-border-rev-o:hover:before {
    width: 100%;
}
.btn-border-rev-o:hover:after {
    height: 100%;
}
.btn-border-rev-o.btn-green:before, .btn-border-rev-o.btn-green:after {
    border-color: #00a296;
}
.btn-border-rev-o.btn-green:hover {
    color: #fff;
}
/**緊急公告**/
.dg_emergency{
    position: fixed;
    width: 140px;
    bottom: 200px;
    right: 20px;
    background-color: #005bac;
    padding: 8px 9px;
    color: white;
    border-radius: 5px;
    z-index: 9999;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.dg_emergency.active{
    position: fixed;
    width: 140px;
    bottom: 200px;
    right: -140px;
    background-color: #005bac;
    padding: 8px 9px;
    color: white;
    border-radius: 5px;
    z-index: 9999;
}
.dg_emergency_more{
    position: absolute;
    top: 15px;
    right: 130px;
    width: 30px;
    height: 50px;
    border: 1px solid #005bac;
    background-color: #005bac;
    border-radius: 9px;
    padding-right: 5px;
    z-index: -1;
    cursor: pointer;
}

.dg_emergency_more.active:after{
    content: '';
    position: absolute;
    top:20px;
    right: 10px;
    width: 15px;
    height:1px;
    background-color: #fff;
    transform:rotate(-45deg);
    -o-transform:rotate(-45deg);
    -ms-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    -webkit-transform:rotate(-45deg);
    transition: all 0.3s;
}
.dg_emergency_more.active:before{
    content: '';
    position: absolute;
    top:30px;
    right: 10px;
    width: 15px;
    height:1px;
    background-color: #fff;
    transform:rotate(45deg);
    -o-transform:rotate(45deg);
    -ms-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    -webkit-transform:rotate(45deg);
    transition: all 0.3s;
}
.dg_emergency_more:after{
    content: '';
    position: absolute;
    top:20px;
    right: 10px;
    width: 15px;
    height:1px;
    background-color: #fff;
    transform:rotate(45deg);
    -o-transform:rotate(45deg);
    -ms-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    -webkit-transform:rotate(45deg);
    transition: all 0.3s;
}
.dg_emergency_more:before{
    content: '';
    position: absolute;
    top:30px;
    right: 10px;
    width: 15px;
    height:1px;
    background-color: #fff;
    transform:rotate(-45deg);
    -o-transform:rotate(-45deg);
    -ms-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    -webkit-transform:rotate(-45deg);
    transition: all 0.3s;
}
.dg_emergency p.urgent_title{
    font-size: 1.4em;
    padding-bottom: 5px;
    text-align: center;
    border-bottom: 1px solid white
}
.dg_emergency h4{
    font-size: 1.1em;
    padding: 5px 0;
    text-align: center;
    border-bottom: 1px solid white
}
.dg_emergency h4:last-of-type{
    font-size: 1.1em;
    padding: 5px 0;
    border-bottom:none;
}
.dg_emergency h4 > span > a{
    font-size: 1em;
    padding: 0 3px;
    margin-left: 10px;
    color: #005bac;
    background-color: white;
    border-radius: 10px;
}
.dg_emergency p{
    font-size: .7em;
    padding: 10px 0;
    margin: 0;
    text-align: justify;
    border-bottom: 1px solid white
}
/**slider**/
.swiper-button-prev, .swiper-button-next {
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    margin-top: 0;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}
#exhibition-swiper-container {
    width: 100%;
    /* height: 345px; */
    box-sizing: border-box;
}
#exhibition-swiper-container img{
    width: 100%;
    height: 35vw;
    max-height:448px;
}
.exhibition-swiper-button-next{
    background-image: url(../new_images/exhibition-next.svg);
}
.exhibition-swiper-button-prev{
    background-image: url(../new_images/exhibition-prev.svg);
}
.swiper-button-next{
    background-image: url(../new_images/exhibition-next.svg);
}
.swiper-button-prev{
    background-image: url(../new_images/exhibition-prev.svg);
}
.swiper-button-size{
    width: 35px;
    height: 100%;
    /* margin-top: -12px; */
}
#theater-swiper-container{
    width: 100%;
    box-sizing: border-box;
}
#activity-swiper-container{
    width: 100%;
    box-sizing: border-box;
}
#offer-swiper-container{
    width: 100%;

}
#theater-swiper-container img{
    width: 100%;
    height: 13vw;
    max-height:166px;
}
#activity-swiper-container img{
    width: 100%;
    height: 13vw;
    max-height:166px;
}
#offer-swiper-container img{
    width: 100%;
    height: 13vw;
    max-height:166px;
}

.swiper-pagination-bullet-active{
    opacity: 1;
    background: #B3282D;
}
.dg_slider_type{
    position: absolute;
    top: 0;
    left: 0;
    width: 7vw;
    height: 3vw;
    max-width:85px;
    max-height:36px;
    color: white;
    background-color: #006665;
    text-align: center;
    font-size: 1.8vw;
    line-height: 3vw;
    font-weight: bold;
    z-index: 2;
}
.dg_slider_type:after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
}
.swiper-slide {
    box-sizing: border-box;
}
.dg_slider_background{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.prev-button{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 17.3px 10px;
    border-color: transparent transparent #666666 transparent;
    margin:7.7px auto 0 auto;
    cursor: pointer;
}
.next-button{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 17.3px 10px 0 10px;
    border-color: #666666 transparent transparent transparent;
    margin:0 auto 7.7px auto;
    cursor: pointer;
}
/**news**/
.dg_news_warp{
    width: 100%;
    height: 22vw;
    max-height:281px;
}
.news_item{
    display: block;
    padding: 5px 0;
    color: #040000;
}
.news_date{
    display: inline-block;
    padding-right:20px;
    overflow: hidden;
    font-size: 1em;
    line-height: 24px;
}
.news_title{
    display: inline-block;
    text-overflow : ellipsis;
    white-space : nowrap;
    width : calc(100% - 110px);
    font-size: 1em;
    line-height: 24px;
}
.dg_news_ul{
    width: 100%;
    background-color: #fff;
    border-right: 1px solid white;
    box-sizing: border-box;
}
.dg_news-links{
    float: left;
    color: #0D8076;
    font-size: 1.1em;
    font-weight: bold;
    line-height: 35px;
    min-height: 35px;
    padding: 0 12px;
    cursor: pointer;
    position: relative;
    display: block;
    transform: translateX(-1px);
}
.dg_news-links::after{
    content: '';
    height: 55%;
    width: 1px;
    display: block;
    background-color:#0D8076;
    position: absolute;
    top: 20%;
    left: -1px;
}
.dg_news_ul li:nth-child(1)::after{
    display: none;
}
.dg_news-links.active::after{
    left: 0;
}

.dg_news-links.active{
    color: #fff;
    background-color: #0D8076;
}
.dg_news-links:hover{
    color: #fff;
    background-color: #0D8076;
}
.dg_news{
    position: relative;
    width: 100%;
    height: 100%;
    border-right: 1px solid white;
}
.dg_news a{
	display: block;
	margin:3px;
}
.dg_news_area.active{
    display: block;
}
.news_links_ul{
    position: absolute;
    bottom: 5px;
    right: 15px;

}

.news_links_ul li{
    display: inline-block;
}

.news_links_ul a{
    position: relative;
    color: #333;
    padding-top: 1px;
}
.news_links_ul li{
    position: relative;
    margin-right:30px;
}
.dg_newslinks_icon{
    position: absolute;
    top:-1px;
    left:-20px;
    width: 20px;
    height: 20px;
    background-color: #0D8076;
    border-radius: 99%;
}
.dg_newslinks_icon::before{
    content: '';
    position: absolute;
    top: 11px;
    right: 4px;
    width: 9px;
    height: 1px;
    background-color: #fff;
    transform:rotate(-35deg);
    -o-transform:rotate(-35deg);
    -ms-transform:rotate(-35deg);
    -moz-transform:rotate(-35deg);
    -webkit-transform:rotate(-35deg);
}
.dg_newslinks_icon::after{
    content: '';
    position: absolute;
    top: 6px;
    right: 4px;
    width: 9px;
    height: 1px;
    background-color: #fff;
    transform:rotate(35deg);
    -o-transform:rotate(35deg);
    -ms-transform:rotate(35deg);
    -moz-transform:rotate(35deg);
    -webkit-transform:rotate(35deg);
}
.dg_news_area{
    box-sizing: border-box;
    display: none;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    overflow-y: scroll;
    height:100%;
}
.dg_news_listarea{
    padding: 10px 20px 27px 10px;
    border: 1px solid #007A6E;
    height: calc(100% - 35px);
}
.dg_news_area a{
    color:#040000;
}
.dg_news_area a:hover{
    color:#00a296;
}

.news_item{
    display: block;
    padding: 7px 0;
    color: #040000;
    line-height:0;
}


@media (max-width:1130px){
    .news_item{
        display: block;
        padding: 6px 0;
        color: #040000;
        line-height:0;
    }

    .dg_news_area{
        box-sizing: border-box;
        display: none;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        overflow-y: scroll;
        height:100%;
        padding: 10px 10px 10px 0;
    }

}
@media (max-width:992px){
    .news_item{
        display: block;
        padding: 2px 0;
        color: #040000;
        line-height:0;
    }


    .dg_news_area{
        box-sizing: border-box;
        display: none;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        overflow-y: scroll;
        height:100%;
        padding: 10px 10px 10px 0;
    }

}
@media (max-width:767px){
    .news_item{
        display: block;
        padding: 2px 0;
        color: #040000;
        line-height:0;
    }


    .dg_news_area{
        box-sizing: border-box;
        display: none;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        overflow-y: scroll;
        height:100%;
        padding: 10px 10px 10px 0;
    }
    .dg_news_warp{
        width: 100%;
        height: 300px;
    }

}
@media (max-width:500px){
    .news_item{
        display: block;
        padding: 2px 0;
        color: #040000;
        line-height:0;
    }


    .dg_news_area{
        box-sizing: border-box;
        display: none;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        overflow-y: scroll;
        height:100%;
        padding: 0px 10px 0px 0;
    }
    .dg_news_warp{
        width: 100%;
        height: 300px;
    }

}
/**video**/
.dg_video_warp{
    width: 100%;
    height: 100%;
}
.dg_video_area{
    background-color: #0D8076;
    height: 35px;
    padding: 0 28px 0 5px;
}
.dg_video_area h4{
    float: left;
    color: white;
    font-size: 1.1em;
    height: 35px;
    line-height: 35px;
}
.dg_video_more{
    position: relative;
    float: right;
    font-size: 1.1em;
    height: 35px;
    line-height: 35px;
}
.dg_video_morearrow{
    position: absolute;
    top: 7px;
    right: -23px;
    display: inline-block;
    width: 20px;
    height:20px;
    border: 1px solid white;
    border-radius: 99%;
}
.dg_video_morearrow:after{
    content: '';
    position: absolute;
    top: 6px;
    right: 4px;
    width: 9px;
    height:1px;
    background-color: white;
    transform:rotate(35deg);
    -o-transform:rotate(35deg);
    -ms-transform:rotate(35deg);
    -moz-transform:rotate(35deg);
    -webkit-transform:rotate(35deg);
}
.dg_video_morearrow:before{
    content: '';
    position: absolute;
    top: 11px;
    right: 4px;
    width: 9px;
    height:1px;
    background-color: white;
    transform:rotate(-35deg);
    -o-transform:rotate(-35deg);
    -ms-transform:rotate(-35deg);
    -moz-transform:rotate(-35deg);
    -webkit-transform:rotate(-35deg);
}
.dg_video{
    width: 100%;
    height: 100%;
}
/**map**/
.dg_map_area{
    width: 100%;
    height: 29vw;
    max-height: 371px;
}
.dg_map_ul{
    width: 100%;
    background-color: #fff;
    border-right: 1px solid white;
    box-sizing: border-box;
}
.dg_map-links{
    float: left;
    color: #007A6E;
    font-size: 1.1em;
    font-weight: bold;
    line-height: 35px;
    min-height: 35px;
    padding: 0 8px;
    cursor: pointer;
    position: relative;
    display: block;
    transform: translateX(-1px);
}
.dg_map-links::after{
    content: '';
    height: 55%;
    width: 1px;
    display: block;
    background-color:#0D8076;
    position: absolute;
    top: 20%;
    left: -1px;
}
.dg_map_ul li:nth-child(1)::after{
    display: none;
}
.dg_map-links.active::after{
    left: 0;
}
.dg_map-links.active{
    color: #fff;
    background-color: #0D8076;
}
.dg_map-links:hover{
    color: #fff;
    background-color: #0D8076;
}
.dg_map{
    position: relative;
    width: 100%;
    height: calc(100% - 35px);
    border: 1px solid #007A6E;
}
.dg_map_item.active{
    display: block;
}
.dg_map_item{
    box-sizing: border-box;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px 20px 20px 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
/**time**/
.close_text{
    line-height: 80px;
}
.dg_everyopen_warp{
    position: relative;
    float: left;
    width: 50%;
    height: 18vw;
    max-height:228px;
    box-sizing: border-box;
    border: 1px solid #0D8076;
}
.dg_everyopen_warp .open_time{
    width: 100%;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: white;
    background-color: #0D8076;
    font-size: 1.2em;
    font-weight: bold;
}
.dg_everyopen_area{
    width: 100%;
    height: calc(100% - 35px);
    padding: 10px 20px;
    color: #4D4D4D;
}
.dg_everyopen_area p.everyopen_subtext_title_1{
    width: 100%;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
}
.dg_everyopen_content{
    width: 100%;
    height: calc(100% - 70px);
    border-bottom: 1px solid #c5c5c5;
    padding: 10px 0;
}
.dg_everyopen_time{
    float: left;
    width: 50%;
    height: 100%;
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1em;
    text-align: center;
}
.dg_everyopen_text{
    float: right;
    width: 50%;
    height: 100%;
    text-align: center;
}
.dg_everyopen_text h5{
    display: block;
    font-size: 1.05em;
    font-weight: bold;
    text-align: center;
}
.dg_everyopen_text h6{
    display: block;
    font-size: .6em;
    margin-bottom: 25px;
}
.dg_everyopen_closetext{
    float: left;
    padding: 15px 10px 0 10px;
}
.dg_everyopen_closetext h5{
    font-size: 1.15em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}
.dg_everyopen_closetext p.everyopen_subtext_title_2{
    font-size: .9em;
    font-weight: bold;
    text-align: center;
    margin: 0;
}
.dg_everyopen_more a{
    color: #4D4D4D;;
}
.dg_everyopen_more{
    position: absolute;
    bottom: 10px;
    right: 50px;
    font-size: 1.1em;
    font-weight: bold;
    height: 35px;
    line-height: 35px;
}
.dg_everyopen_morearrow{
    position: absolute;
    top: 4px;
    right: -26px;
    display: inline-block;
    width: 22px;
    height:22px;
    background-color: #00a296;
    border-radius: 99%;
}
.dg_everyopen_morearrow:after{
    content: '';
    position: absolute;
    top: 7px;
    right: 5px;
    width: 10px;
    height:1px;
    background-color: white;
    transform:rotate(40deg);
    -o-transform:rotate(35deg);
    -ms-transform:rotate(35deg);
    -moz-transform:rotate(35deg);
    -webkit-transform:rotate(35deg);
}
.dg_everyopen_morearrow:before{
    content: '';
    position: absolute;
    top: 13px;
    right: 5px;
    width: 10px;
    height:1px;
    background-color: white;
    transform:rotate(-40deg);
    -o-transform:rotate(-35deg);
    -ms-transform:rotate(-35deg);
    -moz-transform:rotate(-35deg);
    -webkit-transform:rotate(-35deg);
}
.dg_weekopen_warp{
    float: left;
    width: 50%;
    height: 18vw;
    max-height:228px;
    box-sizing: border-box;
    border-left: 1px solid white;
}
.dg_weekopen_items{
    height: 100%;
    border-bottom: 1px solid white;
}
.dg_weekopen_warp .week_open_time{
    width: 100%;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: white;
    background-color: #0D8076;
    font-size: 1.1em;
    font-weight: bold;
}
.dg_weekopen_item:nth-child(odd){
    width: 100%;
    height: calc(14% - 4px);
    background-color: rgba(235, 235, 235, .18);
}
.dg_weekopen_item:nth-child(even){
    width: 100%;
    height: calc(14% - 4px);
    background-color: rgba(146, 146, 146, .18);
}
.dg_weekopen_warp span{
    display: inline-block;
    font-size: 1.05em;
    font-weight: bold;
    color: #666666;
    padding: 2px 0;
}
.dg_weekopen_item span:nth-child(2){
    font-weight: bold;
    color: white;
    background-color: #0071B5;
    padding: 0 20px;
    font-size: .9em;
    border-radius: 5px;
}
.dg_weekopen_item span:nth-child(3){
    display: inline-block;
    font-size: 1.05em;
    font-weight: bold;
    color: #666666;
    padding: 2px 0;
    min-width: 97px;
    text-align: center;
}
.dg_time_links{
    position: relative;
    float: left;
    width: 50%;
    height: 5.5vw;
    max-height:72px;
    background-color: #727171;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    box-sizing: border-box;
    padding: 0 6px 0 14px;
    text-align: right;
    opacity: .999;
    cursor: pointer;

}
.dg_time_links_div{
    width:100%;
    height:100%;
    padding: 10px 0;
    font-size: 1.6em;
    font-weight: bold;
    color: white;
}
.dg_time_links a{
    display: inline;
    width: 100%;
    height: 100%;
}
.dg_time_links img{
    float: left;
    height: 100%;
    width: auto;
}
@media (min-width:1360px) and (max-width:1600px) {
    .dg_time_links_div{
        width:100%;
        height:100%;
        padding: 10px 0;
        font-size: 1.4em;
        font-weight: bold;
        color: white;
    }
    .dg_time_links a{
        display: inline;
        width: 100%;
        height: 100%;
        font-size: 1.4em;
        font-weight: bold;
        color: white;
    }
}
@media (min-width:992px){
    .dg_time_links_div{
        width:100%;
        height:100%;
        padding: 10px 0;
        font-size: 1.1em;
        font-weight: bold;
        color: white;
    }
    .dg_time_links a{
        display: inline;
        width: 100%;
        height: 100%;
        font-size: 1.1em;
        font-weight: bold;
        color: white;
    }
    .dg_weekopen_warp span{
        display: inline-block;
        font-size: .75em;
        font-weight: bold;
        color: #666666;
        padding: 2px 0;
    }
    .dg_weekopen_item span:nth-child(2){
        font-weight: bold;
        color: white;
        background-color: #0071B5;
        padding: 0 7px;
        font-size: .6em;
        border-radius: 5px;
    }
    .dg_weekopen_item span:nth-child(3){
        display: inline-block;
        font-size: .75em;
        font-weight: bold;
        color: #666666;
        padding: 2px 0;
        min-width: 75px;
        text-align: center;
    }
}
/**links**/
.dg_links_item{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 47px;
    cursor: pointer;
}
#centercontainer > div:nth-child(5) .dg_links_item.one:after{
    content: '';
    display: inline;
    position: absolute;
    top: 0;
    left: -25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 47px 25px;
    border-color: transparent transparent #873b1f transparent;
}
#centercontainer > div:nth-child(5) .dg_links_item.one:before{
    content: '';
    display: inline;
    position: absolute;
    top: 0;
    right: -25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 47px 25px 0 0;
    border-color: #873b1f transparent transparent transparent;
}
#centercontainer > div:nth-child(6) .dg_links_item.one:after{
    content: '';
    display: inline;
    position: absolute;
    top: 0;
    left: -25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 47px 25px;
    border-color: transparent transparent #ad441d transparent;
}
#centercontainer > div:nth-child(6) .dg_links_item.one:before{
    content: '';
    display: inline;
    position: absolute;
    top: 0;
    right: -25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 47px 25px 0 0;
    border-color: #ad441d transparent transparent transparent;
}
#centercontainer > div:nth-child(7) .dg_links_item.one:after{
    content: '';
    display: inline;
    position: absolute;
    top: 0;
    left: -25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 47px 25px;
    border-color: transparent transparent #873b1f transparent;
}
#centercontainer > div:nth-child(7) .dg_links_item.one:before{
    content: '';
    display: inline;
    position: absolute;
    top: 0;
    right: -25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 47px 25px 0 0;
    border-color: #873b1f transparent transparent transparent;
}
#centercontainer > div:nth-child(8) .dg_links_item.one:after{
    content: '';
    display: inline;
    position: absolute;
    top: 0;
    left: -25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 47px 25px;
    border-color: transparent transparent #ad441d transparent;
}
#centercontainer > div:nth-child(8) .dg_links_item.one:before{
    content: '';
    display: inline;
    position: absolute;
    top: 0;
    right: -25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 47px 25px 0 0;
    border-color: #ad441d transparent transparent transparent;
}
#centercontainer > div:nth-child(9) .dg_links_item.one:after{
    content: '';
    display: inline;
    position: absolute;
    top: 0;
    left: -25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 47px 25px;
    border-color: transparent transparent #873b1f transparent;
}
#centercontainer > div:nth-child(9) .dg_links_item.one:before{
    content: '';
    display: inline;
    position: absolute;
    top: 0;
    right: -25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 47px 25px 0 0;
    border-color: #873b1f transparent transparent transparent;
}
#centercontainer > div:nth-child(10) .dg_links_item.one:after{
    content: '';
    display: inline;
    position: absolute;
    top: 0;
    left: -25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 47px 25px;
    border-color: transparent transparent #ad441d transparent;
}
#centercontainer > div:nth-child(10) .dg_links_item.one:before{
    content: '';
    display: inline;
    position: absolute;
    top: 0;
    right: -25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 47px 25px 0 0;
    border-color: #ad441d transparent transparent transparent;
}
.dg_links_item p{
    width: calc(100% - 30px);
    float: left;
    color: white;
    font-size: 1.05em;
    font-weight: bold;
    line-height: 47px;
    text-align: center;
}
.dg_links_item img{
    float: right;
    width: 30px;
    height: 30px;
    margin-top: 8.5px;
}
#today_now{
    text-align: center;
    font-size: 1.65rem;
    line-height: 1;
}
/**手機版**/

@media (min-width: 1201px) and (max-width:1400px) {
    .dg_everyopen_area{
        width: 100%;
        height: calc(100% - 35px);
        padding: 5px 10px;
        color: #4D4D4D;
    }
    .dg_everyopen_content{
        width: 100%;
        height: calc(100% - 70px);
        border-bottom: 1px solid #c5c5c5;
        padding: 10px 0;
    }
    .dg_everyopen_area p.everyopen_subtext_title_1{
        width: 100%;
        font-size: .9em;
        font-weight: bold;
        text-align: center;
    }
    .dg_everyopen_time{
        float: left;
        width: 50%;
        height: 100%;
        font-size: 1.2em;
        font-weight: bold;
        line-height: 1.4em;
        text-align: center;
    }
    .dg_everyopen_text h5{
        display: block;
        font-size: .9em;
        font-weight: bold;
        text-align: center;
    }
    .dg_everyopen_text h6{
        display: block;
        font-size: .6em;
        margin-bottom: 5px;
    }
    .dg_everyopen_more{
        position: absolute;
        bottom: 0;
        right: 30px;
        font-size: .6em;
        font-weight: bold;
        height: 35px;
        line-height: 35px;
    }
    .dg_everyopen_morearrow{
        position: absolute;
        top: 7px;
        right: -20px;
        display: inline-block;
        width: 18px;
        height:18px;
        background-color: #00a296;
        border-radius: 99%;
    }
    .dg_everyopen_morearrow:after{
        content: '';
        position: absolute;
        top: 6px;
        right: 3px;
        width: 10px;
        height:1px;
        background-color: white;
        transform:rotate(40deg);
        -o-transform:rotate(35deg);
        -ms-transform:rotate(35deg);
        -moz-transform:rotate(35deg);
        -webkit-transform:rotate(35deg);
    }
    .dg_everyopen_morearrow:before{
        content: '';
        position: absolute;
        top: 12px;
        right: 3px;
        width: 10px;
        height:1px;
        background-color: white;
        transform:rotate(-40deg);
        -o-transform:rotate(-35deg);
        -ms-transform:rotate(-35deg);
        -moz-transform:rotate(-35deg);
        -webkit-transform:rotate(-35deg);
    }
    .dg_everyopen_closetext{
        position: absolute;
        bottom: 10px;
        left: 0;
        padding: 5px 10px 0 10px;
    }
    .dg_everyopen_closetext h5{
        font-size: .8em;
        font-weight: bold;
        text-align: center;
        margin-bottom: 5px;
    }
    .dg_everyopen_closetext p.everyopen_subtext_title_2{
        font-size: .7em;
        font-weight: bold;
        text-align: center;
        margin: 0;
    }
}
@media (min-width: 993px){
    .dg_everyopen_area{
        width: 100%;
        height: calc(100% - 35px);
        padding: 5px 10px;
        color: #4D4D4D;
    }
    .dg_everyopen_content{
        width: 100%;
        height: calc(100% - 60px);
        border-bottom: 1px solid #c5c5c5;
        padding: 10px 0;
    }
    .dg_everyopen_area p.everyopen_subtext_title_1{
        width: 100%;
        font-size: .8em;
        font-weight: bold;
        text-align: center;
    }
    .dg_everyopen_time{
        float: left;
        width: 50%;
        height: 100%;
        font-size: 1em;
        font-weight: bold;
        line-height: 1em;
        text-align: center;
    }
    .dg_everyopen_text h5{
        display: block;
        font-size: .7em;
        font-weight: bold;
        text-align: center;
    }
    .dg_everyopen_text h6{
        display: block;
        font-size: .6em;
        margin-bottom: 5px;
    }
    .dg_everyopen_more{
        position: absolute;
        bottom: 0;
        right: 30px;
        font-size: .6em;
        font-weight: bold;
        height: 35px;
        line-height: 35px;
    }
    .dg_everyopen_morearrow{
        position: absolute;
        top: 7px;
        right: -20px;
        display: inline-block;
        width: 18px;
        height:18px;
        background-color: #00a296;
        border-radius: 99%;
    }
    .dg_everyopen_morearrow:after{
        content: '';
        position: absolute;
        top: 6px;
        right: 3px;
        width: 10px;
        height:1px;
        background-color: white;
        transform:rotate(40deg);
        -o-transform:rotate(35deg);
        -ms-transform:rotate(35deg);
        -moz-transform:rotate(35deg);
        -webkit-transform:rotate(35deg);
    }
    .dg_everyopen_morearrow:before{
        content: '';
        position: absolute;
        top: 12px;
        right: 3px;
        width: 10px;
        height:1px;
        background-color: white;
        transform:rotate(-40deg);
        -o-transform:rotate(-35deg);
        -ms-transform:rotate(-35deg);
        -moz-transform:rotate(-35deg);
        -webkit-transform:rotate(-35deg);
    }
    .dg_everyopen_closetext{
        position: absolute;
        bottom: 10px;
        left: 0;
        padding: 5px 10px 0 10px;
    }
    .dg_everyopen_closetext h5{
        font-size: .7em;
        font-weight: bold;
        text-align: center;
        margin-bottom: 5px;
    }
    .dg_everyopen_closetext p.everyopen_subtext_title_2{
        font-size: .6em;
        font-weight: bold;
        text-align: center;
        margin: 0;
    }
}
@media screen and (max-width:992px) {
    .dg_everyopen_warp{
        position: relative;
        float: left;
        width: 50%;
        height: 40vw;
        box-sizing: border-box;
        border: 1px solid #0D8076;
    }
    .dg_weekopen_warp{
        float: left;
        width: 50%;
        height: 40vw;
        box-sizing: border-box;
        border-left: 1px solid white;
    }
    .dg_time_links{
        position: relative;
        float: left;
        width: 50%;
        height: 10.5vw;
        max-height:none;
        background-color: #929292;
        border-bottom: 1px solid white;
        border-right: 1px solid white;
        box-sizing: border-box;
        padding: 0 6px 0 14px;
        text-align: right;
        opacity: .999;
    }
    .dg_map_area {
        width: 100%;
        height: 35vw;
        padding-left: .5rem;
    }
}
@media screen and (max-width:767px) {
    #theater-swiper-container img{
        width: 100%;
        height: 35vw;
        max-height:266px;
    }
    #activity-swiper-container img{
        width: 100%;
        height: 35vw;
        max-height:266px;
    }
    #offer-swiper-container img{
        width: 100%;
        height: 35vw;
        max-height:266px;
    }
    .slider-pd-0.pr-2{
        padding-right: 0!important;
    }
    .slider-pd-0.pl-2{
        padding-left: 0!important;
    }

    .dg_time_links{
        position: relative;
        float: left;
        width: 50%;
        height: 13.5vw;
        background-color: #929292;
        border-bottom: 1px solid white;
        border-right: 1px solid white;
        box-sizing: border-box;
        padding: 0 6px 0 14px;
        text-align: right;
        opacity: .999;
    }
    .dg_video_warp{
        width: 100%;
        height: 55vw;
    }
    .dg_map_area {
        width: 100%;
        height: 50vw;
    }
    .dg_slider_type {
        position: absolute;
        top: 0;
        left: 0;
        width: 12vw;
        height: 5vw;
        color: white;
        text-align: center;
        font-size: 2.8vw;
        font-weight: bold;
        line-height: 5vw;
        z-index: 2;
    }
}
@media screen and (max-width:560px) {
    /*.close_text{
        line-height: 4
    }*/
    .everyopen_subtext{
        display:none;
    }
    .dg_everyopen_warp{
        position: relative;
        float: left;
        width: 50%;
        height: 50vw;
        box-sizing: border-box;
        border: 1px solid #0D8076;
    }
    .dg_weekopen_warp{
        float: left;
        width: 50%;
        height: 50vw;
        box-sizing: border-box;
        border-left: 1px solid white;
    }

    .dg_time_links{
        position: relative;
        float: left;
        width: 50%;
        height: 15.5vw;
        background-color: #929292;
        border-bottom: 1px solid white;
        border-right: 1px solid white;
        box-sizing: border-box;
        padding: 0 6px 0 14px;
        text-align: right;
        opacity: .999;
    }
    .dg_everyopen_more {
        position: absolute;
        bottom: 10px;
        right: 50px;
        font-size: 1.1em;
        font-weight: bold;
        height: 25px;
        line-height: 35px;
    }
    .dg_everyopen_content {
        width: 100%;
        height: calc(100% - 70px);
        border-bottom: 1px solid #c5c5c5;
        padding: 10px 0;
    }
    .dg_map {
        position: relative;
        width: 100%;
        height: calc(100% - 70px);
        border-right: 1px solid white;
    }
    .dg_map_area {
        width: 100%;
        height: 60vw;
    }
    .dg_time_links_div{
        width:100%;
        height:100%;
        padding: 10px 0;
        font-size: .9em;
        font-weight: bold;
        color: white;
    }
    .dg_time_links a{
        display: inline;
        width: 100%;
        height: 100%;
        font-size: 1.1em;
        font-weight: bold;
        color: white;
    }
    .dg_weekopen_warp span{
        display: inline-block;
        font-size: .85em;
        font-weight: bold;
        color: #666666;
        padding: 2px 0;
    }
    .dg_weekopen_item span:nth-child(2){
        font-weight: bold;
        color: white;
        background-color: #0071B5;
        padding: 0 5px;
        font-size: .6em;
        border-radius: 5px;
    }
    .dg_weekopen_item span:nth-child(3){
        display: inline-block;
        font-size: .85em;
        font-weight: bold;
        color: #666666;
        padding: 2px 0;
        min-width: 75px;
        text-align: center;
    }
    .dg_everyopen_time {
        float: left;
        width: 100%;
        height: 100%;
        font-size: 1.2em;
        font-weight: bold;
        line-height: 1em;
        text-align: center;
    }
    #today_now{
        text-align: center;
        font-size: 1.15rem
    }
}
@media (min-width: 1201px){
    .dg_slider_type {
        position: absolute;
        top: 0;
        left: 0;
        width: 7vw;
        height: 3vw;
        max-width: 85px;
        max-height: 36px;
        color: white;
        text-align: center;
        font-size: 1.5em;
        line-height: 36px;
        font-weight: bold;
        z-index: 2;
    }
}
@media (max-width:495px){
    .dg_news_listarea{
        height: calc(100% - 70px);
    }
}
@media (max-width:450px){
    .dg_news-links{
        font-size: .9em;
    }
    .dg_map-links{
        font-size: .9em;
    }
    .dg_news-links::after{
        height: 40%;
        top: 30%;
    }
}
@media (max-width:400px){
    .dg_everyopen_warp {
        position: relative;
        float: left;
        width: 100%;
        height: 60vw;
        box-sizing: border-box;
        border: 1px solid #0D8076;
    }
    .dg_everyopen_content {
        width: 100%;
        height: calc(100% - 50px);
        border-bottom: 1px solid #c5c5c5;
        padding: 10px 0;
    }
    .dg_weekopen_warp {
        float: left;
        width: 100%;
        height: 70vw;
        box-sizing: border-box;
        border-left: 1px solid white;
    }
    .dg_time_links {
        position: relative;
        float: left;
        width: 100%;
        height: 18.5vw;
        background-color: #929292;
        border-bottom: 1px solid white;
        border-right: 1px solid white;
        box-sizing: border-box;
        padding: 0 6px 0 14px;
        text-align: right;
        opacity: .999;
    }
}
@media (min-width:992px) and (max-width:1400px) {
    #today_now{
        text-align: center;
        font-size: 1.35rem
    }
}
@media (min-width: 1500px){
    .dg_everyopen_area{
        width: 100%;
        height: calc(100% - 35px);
        padding: 5px 10px;
        color: #4D4D4D;
    }
    .dg_everyopen_content{
        width: 100%;
        height: calc(100% - 70px);
        border-bottom: 1px solid #c5c5c5;
        padding: 10px 0;
    }
    .dg_everyopen_area p.everyopen_subtext_title_1{
        width: 100%;
        font-size: 1em;
        font-weight: bold;
        text-align: center;
    }
    .dg_everyopen_time{
        float: left;
        width: 50%;
        height: 100%;
        font-size: 1.4em;
        font-weight: bold;
        line-height: 1.4em;
        text-align: center;
    }
    .dg_everyopen_text h5{
        display: block;
        font-size: .8em;
        font-weight: bold;
        text-align: center;
    }
    .dg_everyopen_text h6{
        display: block;
        font-size: .6em;
        margin-bottom: 5px;
    }
    .dg_everyopen_more{
        position: absolute;
        bottom: 0;
        right: 30px;
        font-size: .6em;
        font-weight: bold;
        height: 35px;
        line-height: 35px;
    }
    .dg_everyopen_morearrow{
        position: absolute;
        top: 7px;
        right: -20px;
        display: inline-block;
        width: 18px;
        height:18px;
        background-color: #00a296;
        border-radius: 99%;
    }
    .dg_everyopen_morearrow:after{
        content: '';
        position: absolute;
        top: 6px;
        right: 3px;
        width: 10px;
        height:1px;
        background-color: white;
        transform:rotate(40deg);
        -o-transform:rotate(35deg);
        -ms-transform:rotate(35deg);
        -moz-transform:rotate(35deg);
        -webkit-transform:rotate(35deg);
    }
    .dg_everyopen_morearrow:before{
        content: '';
        position: absolute;
        top: 12px;
        right: 3px;
        width: 10px;
        height:1px;
        background-color: white;
        transform:rotate(-40deg);
        -o-transform:rotate(-35deg);
        -ms-transform:rotate(-35deg);
        -moz-transform:rotate(-35deg);
        -webkit-transform:rotate(-35deg);
    }
    .dg_everyopen_closetext{
        position: absolute;
        bottom: 10px;
        left: 0;
        padding: 5px 10px 0 10px;
    }
    .dg_everyopen_closetext h5{
        font-size: .9em;
        font-weight: bold;
        text-align: center;
        margin-bottom: 5px;
    }
    .dg_everyopen_closetext p.everyopen_subtext_title_2{
        font-size: .7em;
        font-weight: bold;
        text-align: center;
        margin: 0;
    }
    .dg_weekopen_item span:nth-child(2) {
        font-weight: bold;
        color: white;
        background-color: #0071B5;
        padding: 0 12px;
        font-size: .6em;
        border-radius: 5px;
    }
}