.carouselArea {
    height: 100vh;
    position: relative;
}
.carousel_img_div{
    position: relative;
}
.video_icon{
    position: absolute;
    top:50vh;
    left: calc((100% - 80px)/2);
    width: 80px;
    height: 80px;
    border-radius: 100%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 60px;
    background-color: rgba(0, 0, 0, 0.45);
}


.hero-content {
    position: absolute;
    top: 15vh;
    /* 稍微向下移动，避免被导航栏遮挡 */
    left: 12%;
    /*transform: translate(-50%, -50%);
            text-align: center;*/
    color: #fff;
    z-index: 3;
    width: 80%;
    max-width: 1000px;
    padding-top: 60px;
    /* 添加上内边距，确保内容不被导航栏遮挡 */
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hidden {
    display: none;
}

#see_word {
    animation: hideAfter5s 5s forwards;
}

@keyframes hideAfter5s {

    0%,
    99% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

#take_you {
    position: relative;
    animation: riseUp 5s forwards;
}

@keyframes riseUp {

    0%,
    99% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-240%);
    }
}

#city_div {
    height: 200px;
}

.city_area {
    position: absolute;
    top: calc(25%);
    left: 0;
    z-index: 2;
    height: 380px;
    width: 80%;
    animation: showAfter5s 5s forwards;
}

@keyframes showAfter5s {

    0%,
    99% {
        visibility: hidden;
        opacity: 0;
    }

    100% {
        visibility: visible;
        opacity: 1;
    }
}


.hero-content .city_container {
    height: 100%;
    position: relative;
    overflow: hidden;
    background: transparent;
    padding: 0 !important;
}

.hero-content .city {
    position: absolute;
    left: 0;
    font-size: 22px;
    color: #ffffff;
    opacity: 0;
    white-space: nowrap;
    will-change: transform, opacity;
    animation: fall 20s linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(600px);
        opacity: 0;
    }
}

.el-carousel__item {
    transition: transform 0.6s ease-in-out;
}

.el-carousel__item.is-animating {
    transition-timing-function: cubic-bezier(0.5, 0, 0.5, 1);
}

.flexArea {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article_item {
    height: 400px;

}
.text-content{
    height: 100%;
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.text-content p {
    clear: both;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
   /* max-width: 600px;*/
    margin: 0 auto;
}

.tours-grid {
   
    margin: 40px 0;
}
.carouselArea .el-image__error,.carouselArea .el-image__inner,.carouselArea .el-image__placeholder{
    height: 100vh !important;
}
.carouselArea .el-image{
    border-radius: 0;
}

@media (max-width: 1024px) {
    .container .el-carousel__container {
        min-height: 95vh !important;
    }
}

@media (max-width: 600px) {
   
   
    
}

.services {
    padding: 80px 0;
    background-image: url('/static/images/service_background.png');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

/*.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}*/

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.services .section-title {
    color: #ffffff;
    margin-bottom: 30px;
}

.service-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
}

.service-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 1);
}

.service-icon {
    font-size: 2.8rem;
    color: var(--btn-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.testimonial-highlight {
    text-align: center;
    margin-top: 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    background-color: var(--index-background-color);
    padding: 15px 30px;
    border-radius: 10px;
    display: inline-block;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.travel-ways {
    padding: 60px 0;
    background-color: var(--btn-color);
}
.travel-ways .section-title{
    color: #ffffff;
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.travel-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.travel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.travel-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.travel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.travel-card:hover .travel-image img {
    transform: scale(1.1);
}

.travel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    padding: 20px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.travel-card:hover .travel-overlay {
    transform: translateY(-10px);
}

.travel-overlay h3 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
}

.travel-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .travel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .container .text-content{
        height: 60%;
    }
    .container .image-content .el-image__inner {
         height: 40vh !important;
    }
}

@media (max-width: 600px) {
    .travel-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.carouselArea .el-carousel__item.is-animating {
    animation: fadeIn 0.1s forwards;
}

.carouselArea .el-carousel__item.is-animating.is-hiding {
    animation: fadeOut 0.1s forwards;
}

.container .el-carousel__container {
}

.testimonials {
    padding: 60px 0;
    background-color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.testimonial-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.05);
}

.testimonial-content {
    padding: 20px;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    background-color: #f9f9f9;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.client-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.client-info span {
    font-size: 0.85rem;
    color: #00704a;
}

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.pageArea{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.125rem;
    width: 3.125rem;
    border-radius: 50%;
    background-color: #fdf9ec;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1), 0 3px 4px 0 rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .14);
    transition: .2s;
    font-size: 16pt;
    cursor: pointer;
}
.nextPage{
    top: 50%;
    right: -1.5625rem;
}
.prevPage{
    top: 50%;
    left: -1.5625rem;
}

