html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  text-align:justify;
}
.fb{
    font-weight:bold;
}
.text {
    text-align: justify;
}

.info-content {
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    background: rgba(254,254,254,1);
    border-radius: 10px;
    margin-bottom: 7px;
}

.meeting-info {
    height: 49px;
    background: rgba(23,158,89,1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.meeting-title {
    font-size: 18px;
    font-family: PingFangTC-Medium,PingFangTC;
    color: #ffffff;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0 20px;
}

.meeting-date-wrap {
    padding: 0 25px;
}
.image-container {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .image-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    }

.image-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f8f9fa;
    min-height: 250px;
}

.responsive-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

    .responsive-image:hover {
        transform: scale(1.03);
    }

.image-caption {
    text-align: center;
    margin-top: 15px;
    font-weight: 500;
    color: #495057;
}


@media (max-width: 768px) {
    .image-container {
        margin-bottom: 20px;
    }

    .responsive-image {
        max-height: 250px;
    }
}

.accordion1-header {
    background-color: #f5f5f5;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0;
}

    .accordion1-header .btn {
        display: block;
        width: 100%;
        text-align: left;
        padding: 1rem 1.25rem; /* 保持Bootstrap的按钮内边距 */
        text-decoration: none;
        color: inherit;
        border: none;
        background: none;
    }

        .accordion1-header .btn:hover {
            background-color: #f8f9fa;
            text-decoration: none;
        }

        .accordion1-header .btn:focus {
            box-shadow: none;
            outline: none;
        }




.transport-option {
    margin-bottom: 15px;
}

.taxi {
    border-left: 4px solid #ff6b6b;
    padding-left: 10px;
}

.bus {
    border-left: 4px solid #4ecdc4;
    padding-left: 10px;
}