:root {
    --carousel-height: 40vw;
    --zw-line-height:30px
}

.header {
    background-color: rgba(26, 26, 26, 0.9) !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3) !important;
}

.previous {
    cursor: pointer;
}

.previous:hover {
    color: var(--btn-color)
}

.imgView {
    padding-top: var(--header-height);
    position: relative;
}

.product_info {
    position: absolute;
    top: calc(var(--carousel-height)*0.75);
    right: 50vw;
    z-index: 2001;
    padding: 40px 5vw;
    background-color: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    border-radius: 5px;
    width: var(--carousel-height);
    max-width: 35vw;
}

.product_title {
    font-size: 2rem;
    font-weight: 600;
}

.p_content {
    margin: 20px 0;
    line-height: var(--zw-line-height);
}

.discover {
    padding: 15px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

.discover:hover {
    background-color: #ffffff;
    color: #333333;
}

.area_info_view {
    width: 100%;
    display: flex;
    justify-content: right;
}

.area_info {
    width: 40vw;
    display: flex;
    justify-content: right;
    padding: 30px;
}

.sub_area_view {
    padding: 20px 0;
    text-align: left;

}

.sub_area_view .title {
    font-size: 16pt;
    font-weight: 700;
    line-height: 35px;

}

.sub_item {
    width: 100%;
    height: 180px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: border-color 0.3s;
    margin-top: 20px;
}

.sub_name {
    position: absolute;
    bottom: 0;
    color: #ffffff;
    padding: 15px;
    font-weight: 600;
}

.sub_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sub_item:hover img {
    transform: scale(1.15);
}

.remaining_name {
    font-size: 14pt;
    cursor: pointer;
}

.remaining_name:hover {
    color: var(--btn-color);
}

.areaView {
    width: 100%;
    background-color:  var(--area-background-color);
}

.areaView_main_container {
    padding: 30px 0 30px;
    width: 100%;
    max-width: 85%;
    margin: 0 auto;
    position: relative;
}
.trip_view{
    text-align: center;
    padding: 10px 15%;
}
.trip_main{
    margin-top: 15px;
    line-height: var(--zw-line-height);
}
.Popular_view{
    margin-top: 30px;
}
.areaView_main_container .title{
    font-size: 16pt;
    font-weight: 600;
}
.product_view{
    margin-top: 10px;
}
.staff_view{
    margin: 20px 0;

}
.staff_item{
    width: 100%;
    background-color: #ffffff;
}
.staff_msg{
    padding: 10px;
    text-align: center;
}
/*小于992*/
@media (max-width: 992px) {
    :root {
        --carousel-height: 40vh
    }

    .product_info {
        position: relative;
        top: 0;
        left: 0;
        z-index: 1;
        padding: 40px 5vw;
        background-color: rgba(26, 26, 26, 0.95);
        color: #ffffff;
        border-radius: 0;
        width: 100%;
        max-width: 90vw;
    }

    .area_info {
        display: none;
    }
}
