﻿#inputBox{
    background: #fff;
}
.mobile-list-box{
    display: none;
}
.footer{
    display: none;
}
.header{
    display: none;
}
.search-box{
    display: none !important;
}
.side-menu{
    display: none;
}
.header-top{
    display: none;
}
.Park-Tours-content{
    max-width: 1920px;
    min-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    background: #ededed
}
.Park1200{
    width: 1200px;
    margin: 0 auto;
}
.aImg,.aImg img{
    display: block;
    width: 100%;
    height: 100%;
}
/* 通用标题 */
.Park-Tours-title{
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    padding: 70px 0 50px;
}
/* 公园大图 */
.Park-Tours-banner-box{
    width: 100%;
    height: 680px;
    overflow: hidden;
}
.Park-Tours-banner{
    width: 100%;
    height: 680px;
    /* transition: all .5s ease 0s;
	-ms-transition: all .5s ease 0s;	
	-moz-transition: all .5s ease 0s;
	-webkit-transition: all .5s ease 0s;
	-o-transition: all .5s ease 0s; */
    -webkit-animation: volume 30s infinite both linear;
    -moz-animation: volume 30s infinite both linear;
    -ms-animation: volume 30s infinite both linear;
    animation: volume 30s infinite both linear;
    background: url(./ParkTours-banner.jpg) top center no-repeat;
}
@-webkit-keyframes volume{
    0% {
        -webkit-transform: scale3d(1, 1, 1)
    }
    50% {
        -webkit-transform: scale3d(1.2, 1.2, 1.2)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1)
    }
}
@-ms-keyframes volume{
    0% {
        -ms-transform: scale3d(1, 1, 1)
    }
    50% {
        -ms-transform: scale3d(1.2, 1.2, 1.2)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1)
    }
}
@-moz-keyframes volume{
    0% {
        -moz-transform: scale3d(1, 1, 1)
    }
    50% {
        -moz-transform: scale3d(1.2, 1.2, 1.2)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1)
    }
}
@keyframes volume{
    0% {
        transform: scale3d(1, 1, 1)
    }
    50% {
        transform: scale3d(1.2, 1.2, 1.2)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1)
    }
}
/* 游园资讯 */
.Park-Tours-info{
    height: 635px;
    background: url(./ParkTours-bg1.jpg) top center no-repeat;
}
.Park-Tours-info-lunbo-news{
    display: flex;
    justify-content: space-between;
}
/* 游园资讯-轮播 */
.Park-Tours-info-lunbo{
    width: 790px;
    height: 390px;
}
.Park-Tours-info-box,.Park-Tours-info-img{
    display: block;
    width: 790px;
    height: 390px;
    position: relative;
}
.Park-Tours-info-img img{
    display: block;
    width: 100%;
    height: 100%;
}
.Park-Tours-info-txt{
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: 0;
    line-height: 1.3;
    font-size: 18px;
    color: #fff;
    padding: 22px 18px 22px 140px;
    background-color: rgba(0, 0, 0, 0.6);
}
.Park-Tours-info-lunbo .swiper-pagination-horizontal{
    width: max-content;
    left: 30px;
    bottom: 20px;
}
.Park-Tours-info-lunbo .swiper-pagination-bullet{
    width: 14px;
    height: 14px;
    background: #5cbda2;
    opacity: 1;
    margin: 0 7px !important;
}
.Park-Tours-info-lunbo .swiper-pagination-bullet-active{
    background: #fff;
}
/* 游园资讯-服务资讯 */
.Park-Tours-info-news{
    width: 380px;
    height: 390px;
    background: #4cb799;
}
.Park-Tours-info-news-title{
    font-size: 24px;
    font-weight: bold;
    box-sizing: border-box;
    border-bottom: 1px solid #fff;
    padding: 32px 0 22px;
    margin: 0 25px;
}
.Park-Tours-info-news-title a{
    color: #fff;
    padding: 0 3px 16px 20px;
    border-bottom: 4px solid #fff;
}
.Park-Tours-info-news-list{
    padding: 30px 30px 0;
}
.Park-Tours-info-news-list li{
    font-size: 18px;
    line-height: 1.338;
    display: flex;
    align-items: baseline;
    margin-bottom: 30px;
}
.Park-Tours-info-news-list li a{
    color: #fff;
}
.triangle{
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-right-color: #fff;
}
/* 游园指南 */
.Park-Tours-guide{
    padding-bottom: 95px;
}
.Park-Tours-guide-list{
    padding: 0 10px;
    position: relative;
}
.Park-Tours-guide-list ul{
    display: flex;
    flex-wrap: wrap;
    gap: 110px 30px;
}
.Park-Tours-guide-list li{
    width: 380px;
    height: 435px;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.Park-Tours-guide-list li:nth-child(2),.Park-Tours-guide-list li:nth-child(5){
    flex-direction: column-reverse;
}
.Park-Tours-guide-img{
    width: 100%;
    height: 285px;
    overflow: hidden;
}
.Park-Tours-guide-img img{
    transition: all .5s ease 0s;
	-ms-transition: all .5s ease 0s;	
	-moz-transition: all .5s ease 0s;
	-webkit-transition: all .5s ease 0s;
	-o-transition: all .5s ease 0s;	
}
.Park-Tours-guide-img:hover img{
    transform: scale(1.05);
    -ms-transform: scale(1.05);
}
.Park-Tours-guide-txt{
    padding: 30px 15px 10px;
    height: 190px;
    font-size: 18px;
    font-weight: bold;
    box-sizing: border-box;
    text-align: center;
    background: #fff;
    border: 1px solid #cfd8db;
}
.Park-Tours-guide-txt a{
    color: #333;
}
.Park-Tours-guide-tag{
    margin-top: 15px;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    /* gap: 10px; */
}
.Park-Tours-guide-tag a{
    border-radius: 400px;
    padding: 5px 10px;
    border: 1px solid #b3ddd1;
    background: #d3f0e8;
    margin: 0 10px 10px 0;
}
.Park-Tours-guide-more{
    text-align: right;
    padding:30px 5px 0 0;
}
.Park-Tours-guide-more a{
    font-size: 16px;
    color: #333;
    font-style: italic;
    text-decoration: underline;
}
/* 欢乐主题游 */
.Park-Tours-happy{
    height: 707px;
    background: url(./ParkTours-bg2.jpg) top center no-repeat;
}
.Park-Tours-happy-lunbo{
    padding: 0 28px;
    height: 486px;
    position: relative;
}
.Park-Tours-happy-lunbo .swiper{
    height: 100%;
}
.Park-Tours-happy-lunbo .swiper .swiper-slide{
    display: flex;
}
.Park-Tours-happy-box{
    display: flex;
    width: 260px;
    height: 433px;
    box-sizing: border-box;
    padding: 52px 18px;
    background: #fff;
    overflow: hidden;
    position: relative;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}
.Park-Tours-happy-lunbo .swiper .swiper-slide:nth-child(even) .Park-Tours-happy-box{
    align-self: flex-end;
}
.Park-Tours-happy-img,
.Park-Tours-happy-txt{
    position: absolute;
    top: 52px;
    left: 18px;
}
.Park-Tours-happy-img,.Park-Tours-happy-txt{
    width: 224px;
    height: 329px;
    z-index: 10;
}
.Park-Tours-happy-txt{
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 10px;
    line-height: 1.5;
}
.Park-Tours-happy-box:hover .Park-Tours-happy-txt{
    z-index: 20;
}
.Park-Tours-happy-lunbo .swiper-button-prev,
.Park-Tours-happy-lunbo .swiper-button-next,
.Park-Tours-guide-list .swiper-button-prev,
.Park-Tours-guide-list .swiper-button-next{
    width: 56px;
    height: 56px;
    background: #4ab597;
    z-index: 50;
    pointer-events:auto;
    outline: none;
}
.Park-Tours-happy-lunbo .swiper-button-prev,
.Park-Tours-guide-list .swiper-button-prev{
    left: 0;
}
.Park-Tours-happy-lunbo .swiper-button-next,
.Park-Tours-guide-list .swiper-button-next{
    right: 0;
}
.Park-Tours-happy-lunbo .swiper-button-prev:after,
.Park-Tours-happy-lunbo .swiper-button-next:after,
.Park-Tours-guide-list .swiper-button-prev:after,
.Park-Tours-guide-list .swiper-button-next:after{
    outline: none;
    color: #fff;
    font-size: 36px;
}
/* 镜头下的公园 */
.Park-Tours-camera{
    padding-bottom: 140px;
}
.Park-Tours-camera-box{
    height: 435px;
    position: relative;
}
.Park-Tours-camera-img{
    width: 870px;
    height: 435px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
.Park-Tours-camera-txt{
    width: 420px;
    height: 280px;
    position: absolute;
    left: 0;
    box-sizing: border-box;
    padding: 30px;
    top: calc(50% - 140px);
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(57, 175, 142, 0.9);
}
.Park-Tours-camera-tit{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
.Park-Tours-camera-des{
    line-height: 1.721;
    font-size: 14px;
}
.Park-Tours-camera-tit a,
.Park-Tours-camera-des a{
    color: #fff;
}
.Park-Tours-camera-box .Park-Tours-guide-more{
    position: absolute;
    left: 5px;
    bottom: 40px;
}

/* 移动样式 */
@media screen and (max-width: 1024px){
    body{
        width: 16rem;
        margin: 0 auto;
        background: #fff;
    }
    .InBeijing-head{
        display: none;
    }
    .capital-footer{
        display: none;
    }
    .capital-footer{
        display: none;
    }
    .capital-footer-two{
        display: none;
    }
    .footer{
        display: block;
    }
    .header{
        display: block;
    }
    .search-box{
        display: flex !important;
        background: #fff;
    }
    .side-menu{
        display: block;
    }
    .header-top {
        display: block;
    }
    .Park1200{
        width: 16rem;
    }
    .Park-Tours-content{
        max-width: 16rem;
        min-width: auto;
    }
    /* 大图 */
    .Park-Tours-banner-box{
        height: 7.18rem;
    }
    .Park-Tours-banner{
        height: 7.18rem;
        background: url(./ParkTours-banner-m.jpg) top center no-repeat;
        background-size: contain;
    }
    /* 游园资讯 */
    .Park-Tours-info{
        height: auto;
        background: url(./ParkTours-bg1-m.jpg) top center no-repeat;
        background-size: cover;
    }
    .Park-Tours-title{
        font-size: 0.92rem;
        padding: 1.4rem 0 0.9rem;
    }
    .Park-Tours-info-lunbo-news{
        flex-wrap: wrap;
        padding: 0 0.52rem 1rem;
    }
    .Park-Tours-info-lunbo,
    .Park-Tours-info-box,
    .Park-Tours-info-img{
        width: 14.96rem;
        height: 7.4rem;
    }
    .Park-Tours-info-txt{
        font-size: 0.56rem;
        padding: 0.51rem 0.51rem 0.51rem 3rem;
    }
    .Park-Tours-info-lunbo .swiper-pagination-bullet{
        width: 0.38rem;
        height: 0.38rem;
    }
    .Park-Tours-info-news{
        width: 100%;
        height: auto;
        overflow: hidden;
        margin-top: 0.7rem;
    }
    .Park-Tours-info-news-title{
        font-size: 0.77rem;
        padding: 0.77rem 0 0.47rem;
        margin: 0 0.68rem;
    }
    .Park-Tours-info-news-title a{
        padding: 0 0 0.26rem 0.25rem;
        border-bottom: 0.14rem solid #fff;
    }
    .Park-Tours-info-news-list{
        padding: 0.77rem 0.95rem 0;
    }
    .Park-Tours-info-news-list li{
        font-size: 0.6rem;
        margin-bottom: 0.7rem;
    }
    .triangle{
        border: 0.2rem solid transparent;
        border-right-color: #fff;
    }
    /* 游园指南 */
    .Park-Tours-guide{
        height: 17.4rem;
        padding: 0;
    }
    .Park-Tours-guide-list{
        width: 15.45rem;
        box-sizing: border-box;
        padding: 0 3.04rem;
        margin: 0 auto;
    }
    .Park-Tours-guide-img{
        height: 7.02rem;
    }
    .Park-Tours-guide-txt{
        height: auto;
        background: #fff;
        padding: 0.45rem;
        font-size: 0.72rem;
    }
    .Park-Tours-guide-tag{
        margin-top: 0.64rem;
        font-size: 0.54rem;
        /* gap: 0; */
    }
    .Park-Tours-guide-tag a{
        padding: 0.2rem 0.77rem;
        margin: 0 0.2rem 0.2rem 0;
    }
    /* 欢乐主题游 */
    .Park-Tours-happy-lunbo .swiper-button-prev,
    .Park-Tours-happy-lunbo .swiper-button-next,
    .Park-Tours-guide-list .swiper-button-prev,
    .Park-Tours-guide-list .swiper-button-next{
        width: 1.41rem;
        height: 1.41rem;
    }
    .Park-Tours-happy-lunbo .swiper-button-prev:after,
    .Park-Tours-happy-lunbo .swiper-button-next:after,
    .Park-Tours-guide-list .swiper-button-prev:after,
    .Park-Tours-guide-list .swiper-button-next:after{
        font-size: 0.8rem;
    }
    .Park-Tours-happy{
        height: 17.45rem;
        background: url(./ParkTours-bg2-m.jpg) top center no-repeat;
        background-size: contain;
    }
    .Park-Tours-happy-lunbo{
        height: 13.26rem;
        padding: 0;
    }
    .Park-Tours-happy-box{
        width: 7.3rem;
        height: 13.26rem;
        padding: 1.48rem 0.48rem;
        border-top-right-radius: 1.4rem;
        border-bottom-left-radius: 1.4rem;
    }
    .Park-Tours-happy-img{
        width: 6.31rem;
        height: 9.14rem;
        top: 1.48rem;
        left: 0.48rem;
    }
    .Park-Tours-happy-txt{
        width: 6.31rem;
        height: 2rem;
        box-sizing: border-box;
        top: 10.62rem;
        left: 0.48rem;
        font-size: 0.56rem;
        box-sizing: border-box;
        padding: 0.15rem;
        background: none;
        color: #333;
        font-weight: bold;
    }
    /* 镜头下的公园 */
    .Park-Tours-camera{
        padding-bottom: 2rem;
    }
    .Park-Tours-camera-box{
        width: 14.96rem;
        height: 7.47rem;
        margin: 0 auto;
    }
    .Park-Tours-camera-img{
        width: 100%;
        height: 100%;
    }
    .Park-Tours-camera-txt{
        width: 100%;
        height: auto;
        top: auto;
        right: auto;
        left: 0;
        bottom: 0;
        padding: 0.32rem;
        background: rgba(0, 0, 0, 0.6);
    }
    .Park-Tours-camera-tit{
        font-size: 0.56rem;
        margin: 0;
    }
    .Park-Tours-camera-des{
        display: none;
    }
    .Park-Tours-camera-box .Park-Tours-guide-more{
        bottom: -1.1rem;
        left: 0.05rem;
    }
    .Park-Tours-camera-box .Park-Tours-guide-more a{
        font-size: 0.51rem;
    }
}