.tips marquee {
    width: 85%;
    height: 27px;
    line-height: 22px;
    margin-top: 0px;
    margin-bottom: -6px;
}

.marqueeItem{
    display: inline-block;
    margin-left: 80px;
    /* font-size: 0.75vw; */
    color: #333;
    padding-left: 10px;
}
.marqueeItem:hover {
    color: #0076ca;
    cursor: pointer;
}
.tips span.more {
    position: relative;
    top: 0px;
    float: right;
    background: url(../img/more.png) no-repeat 30px 10px;
    padding: 0px 30px 0px 0px;
}
.tips span.more:hover {
    color: #0076ca;
    cursor: pointer;
}
/* 走马灯容器 */
.carousel {
    width: 74%;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    height: 70vh;
    overflow: hidden;
    margin: auto;
}

.carousel-content {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 79%;
}
.carousel-item {
    min-width: 100%;
    text-align: center;
    font-size: 2rem;
}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 1vw 0;
}

.carousel-dots .dot {
    width: 30px;
    height: 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.3s;
}
.carousel-dots .dot.active {
    background: rgba(0, 0, 0, 0.45);
}
.carousel img{
    transform: scale(1);
    transition: all 0.6s;
}
.carousel img:hover{
    transform: scale(1.2);
    border-radius: 8px;
}
/* 布局容器 */
.image-layout {
    display: flex;
    height: 100%;
    gap: 10px; /* 图片间距 */
    justify-content: center;
    align-items: stretch;
    width: 90%;
    margin: 0 auto;
}
.image-layout img{
    border-radius: 8px;
}
.left-section {
    flex: 2;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}
.left-section > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 右侧区域（占50%宽度） */
.right-section {
    flex: 1;
    display: block;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}
.right-section > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 右侧上方单图（占50%高度） */
.right-top {
    flex: 1;
    height: 49%;
    overflow: hidden;
    border-radius: 8px;


}

/* 右侧下方双图容器 */
.right-bottom {
    height: 49%;
    flex: 1;
    display: flex;
    gap: 10px; /* 两张小图间距 */
    border-radius: 8px;

}

/* 并列的两张小图（各占50%宽度） */
.bottom-img {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;

}

/* 图片通用样式 */
.right-top > img,
.bottom-img > img,
.middle-item > img,
.middle-banner > img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持比例并填充 */
}
.left-section,
.right-section,
.right-top,
.bottom-img {
    position: relative;
    overflow: hidden;
}

/* 图片文字样式 */
.image-caption {
    position: absolute;
    left: 0;
    bottom: 10px;
    padding: 8px 12px;
    color: white;
    font-size: 1.1vw;
    letter-spacing: 1px;
    text-align: left;
    display: flex;
    align-items: center;
}
.spanBox{
    width: 24px;
    height: 24px;
    background: #16b385;
    border-radius: 5px;
    margin-right: 8px;
}
.caption-icon{
    width: 1.3vw;
    height: 1.3vw;
    margin-right: 8px;
   /* flex: 0 0 24px;*/
}
.caption-text{
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 1.1vw;
    color: #FFFFFF;
    line-height: 1.5;
    text-align: left;
    font-style: normal;
    text-transform: none;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
}
.gallery-container {
    width: 90%;
    overflow: hidden;
    margin: 0 auto;
}

.image-gallery {
    display: flex;
    height: 40vh;
    gap: 10px;
}

.gallery-item {
    flex: 1;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
/* 文字和装饰元素 */
.image-title {
    position: absolute;
    left: 15px;
    bottom: 50px;
    color: white;
    font-size: 1vw;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}



.viewMap {
    position: absolute;
    left: 15px;
    bottom: 15px;
    padding: 5px 10px;
    background: rgba(255,255,255,0.9);
    color: #333;
    border: none;
    border-radius: 4px;
    font-size: 0.8vw;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* 悬停效果 */
.gallery-item:hover {
    flex: 1.5;
}

.gallery-item:hover .titleLine {
    opacity: 0;
    transform: translateY(5px);
}

.gallery-item:hover .viewMap {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.02);
}

/* 非悬停项缩小 */
.image-gallery:hover .gallery-item:not(:hover) {
    flex: 0.7;
}
.middle-section{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    flex: 1;
}
.middle-item{
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    flex: 1;
    cursor: pointer;
}
.middle-item > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.middle-section-wide{
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 2;
}
.middle-row{
    display: flex;
    gap: 10px;
    flex: 1;
}
.middle-banner{
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 0;
    flex: 1;
    cursor: pointer;
}
.middle-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
