/*html,*/
/*body {*/
/*    position: relative;*/
/*    height: 100%;*/
/*}*/


.language-dropdown {
    position: relative;
    display: inline-block;
}
.language-dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    /*background-color: #1a2b47;*/
    min-width: 120px;
    box-shadow: 0 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    margin-top: 0;
    transition: opacity 0.2s, visibility 0.2s;
    padding-top: 5px;
    top: 28px;
}
.language-dropdown-content a {
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
    font-size: 12px;
    text-align: left;
}
.language-dropdown-content a:hover {
    background-color: #2c3e50;
}
.language-dropdown:hover .language-dropdown-content {
    visibility: visible;
    opacity: 1;
}
.language-dropdown .current-language {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 5px 0;
}
/*.language-dropdown .current-language:after {*/
/*    content: "\f0d7";*/
/*    font-family: "Font Awesome 5 Free";*/
/*    font-weight: 900;*/
/*    margin-left: 5px;*/
/*}*/
.language-dropdown .active {
    background-color: #2c3e50;
}

.dropdown-hidden {
    display: none;
}


/* ==========================================================================
   Component: Pagination
 ============================================================================ */
.am-pagination {
    padding-left: 0;
    margin: 1.5rem 0;
    list-style: none;
    color: #999999;
    text-align: left;
}
.am-pagination:before,
.am-pagination:after {
    content: " ";
    display: table;
}
.am-pagination:after {
    clear: both;
}
.am-pagination > li {
    display: inline-block;
}
.am-pagination > li > a,
.am-pagination > li > span {
    position: relative;
    display: block;
    padding: 0.3em 0.6em;
    text-decoration: none;
    line-height: 1.2;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 2px;
    margin-bottom: 5px;
    margin-right: 5px;
}
.am-pagination > li:last-child > a,
.am-pagination > li:last-child > span {
    margin-right: 0;
}
.am-pagination > li > a:hover,
.am-pagination > li > span:hover,
.am-pagination > li > a:focus,
.am-pagination > li > span:focus {
    background-color: #eeeeee;
}
.am-pagination > .am-active > a,
.am-pagination > .am-active > span,
.am-pagination > .am-active > a:hover,
.am-pagination > .am-active > span:hover,
.am-pagination > .am-active > a:focus,
.am-pagination > .am-active > span:focus {
    z-index: 2;
    color: #fff;
    background-color: #000000;
    border-color: #000000;
    cursor: default;
}
.am-pagination > .am-disabled > span,
.am-pagination > .am-disabled > span:hover,
.am-pagination > .am-disabled > span:focus,
.am-pagination > .am-disabled > a,
.am-pagination > .am-disabled > a:hover,
.am-pagination > .am-disabled > a:focus {
    color: #999999;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed;
    pointer-events: none;
}
.am-pagination .am-pagination-prev {
    float: left;
}
.am-pagination .am-pagination-prev a {
    border-radius: 2px;
}
.am-pagination .am-pagination-next {
    float: right;
}
.am-pagination .am-pagination-next a {
    border-radius: 2px;
}
.am-pagination-centered {
    text-align: center;
}
.am-pagination-right {
    text-align: right;
}

.alphabet-link {
    font-size: 0.8rem;
    padding: 0 3px;
}
.alphabet-link.active {
    color: #00BFA5;
    font-weight: bold;
}

/*.tabs {*/
/*    display: flex;*/
/*    gap: 20px;*/
/*    margin-bottom: 20px;*/
/*}*/
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px; /* PC端间隙 */
    margin-bottom: 20px;
}
/* PC端：屏幕宽度 > 992px 时，一行4个 */
.tabs > * {
    flex: 0 0 calc(25% - 12px); /* 25%宽度 - 间隙补偿 (16px*3/4=12px) */
    box-sizing: border-box;
}
/* 平板端：768px~992px，一行3个（可选） */
@media (max-width: 992px) {
    .tabs > * {
        flex: 0 0 calc(33.33% - 11px); /* 33.33%宽度 - 间隙补偿 */
    }
}
/* 手机端：屏幕宽度 ≤ 768px 时，一行2个 */
@media (max-width: 768px) {
    .tabs {
        gap: 8px; /* 手机端间隙更小 */
    }
    .tabs > * {
        flex: 0 0 calc(50% - 4px); /* 50%宽度 - 间隙补偿 (8px*1/2=4px) */
    }
}

/*.tab {*/
/*    cursor: pointer;*/
/*    padding: 2px 10px;*/
/*    border-bottom: 2px solid transparent;*/
/*}*/

/*.tab.active {*/
/*    font-weight: bold;*/
/*    !*border-bottom: 2px solid #000;*!*/
/*}*/

/*.tab-content {*/
/*    display: none;*/
/*}*/

/*.tab-content.active {*/
/*    display: block;*/
/*}*/
.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    /*text-align: center;*/
    font-size: 18px;
    /*background: #fff;*/
    /*height: calc((100% - 30px) / 2) !important;*/

    /*!* Center slide text vertically *!*/
    display: flex;
}
/*.swiper-pagination-bullet {*/
/*    width: 80px;*/
/*    height: 6px;*/
/*    display: inline-block;*/
/*    border-radius: 6px;*/
/*    background: #fffbeb;*/
/*}*/
/*.swiper-pagination-bullet-active {*/
/*    width: 80px;*/
/*    height: 6px;*/
/*    border-radius: 6px;*/
/*    background-color: #000000;*/
/*}*/


.swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 8px; /* 增加分页点间距 */
}

.multipleColumn .hd ul li {
    margin: 2px 5px;
    width: 80px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
}
.multipleColumn .hd ul li::after{
    content: '';
    display: block;
    width: 100%;
    height: 6px;
    background-color: #ffffff;
    transition: all .3s;
    border-radius: 5px;
}
.multipleColumn .hd ul li.on{
    color: #000000;
    font-weight: bold;
}
.multipleColumn .hd ul li.on::after{
    content: '';
    display: block;
    width: 100%;
    height: 6px;
    background-color: #000000;
    transition: all .3s;
}
.multipleColumn .hd .prev, .multipleColumn .hd .next{
    cursor: pointer;
}


#build-detail .swiper {
    width: 100%;
    height: 100%;

}

#build-detail .swiper-slide {
    text-align: center;
    font-size: 18px;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

#build-detail .buildSwiper2 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


#build-detail .swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

#build-detail .swiper-slide {
    background-size: cover;
    background-position: center;
}

#build-detail .buildSwiper2 {
    height: 500px;
    width: 100%;
}

#build-detail .buildSwiper {
    height: 110px;
    box-sizing: border-box;
    padding: 10px 0;
}
@media (max-width: 768px) {
    #build-detail .buildSwiper {
        height: 90px;
        box-sizing: border-box;
        padding: 10px 0;
    }
    #build-detail .buildSwiper2 {
        height: 384px;
        width: 100%;
    }
}
#build-detail .buildSwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

#build-detail .buildSwiper .swiper-slide-thumb-active {
    opacity: 1;
}


#build-detail .buildSwiper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*服务式办公室*/
#serviced-office-detail .swiper {
    width: 100%;
    height: 100%;

}

#serviced-office-detail .swiper-slide {
    text-align: center;
    font-size: 18px;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

#serviced-office-detail .buildSwiper2 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


#serviced-office-detail .swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

#serviced-office-detail .swiper-slide {
    background-size: cover;
    background-position: center;
}

#serviced-office-detail .buildSwiper2 {
    height: 500px;
    width: 100%;
}
#serviced-office-detail .buildSwiper {
    height: 110px;
    box-sizing: border-box;
    padding: 10px 0;
}

@media (max-width: 768px) {
    #serviced-office-detail .buildSwiper2 {
        height: 384px;
        width: 100%;
    }
    #serviced-office-detail .buildSwiper {
        height: 90px;
        box-sizing: border-box;
        padding: 10px 0;
    }
}


#serviced-office-detail .buildSwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

#serviced-office-detail .buildSwiper .swiper-slide-thumb-active {
    opacity: 1;
}


#serviced-office-detail .buildSwiper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/**服务式办公室关联大厦轮播**/
#office-build-detail .swiper {
    width: 100%;
    height: 472px;
}
@media (max-width: 768px) {
    #office-build-detail .swiper {
        height: 384px;
    }
}
#office-build-detail .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 442px;
}


#office-build-detail .swiper-slide img {
    display: block;
    /*width: 100%;*/
    height: 100%;
    object-fit: cover;
}

#office-build-detail .swiper {
    margin-left: auto;
    margin-right: auto;
}
#office-build-detail .swiper-pagination-bullet-active {
    background: #000000;
}

/**大厦关联楼盘**/
#build-with-office .build-with-office {
    width: 85%;
    height: 100%;
    margin: 30px 80px;
    overflow: hidden;
}
@media (max-width: 768px) {
    #build-with-office .build-with-office{
        width: 100%;
        height: 100%;
        margin: 10px;
        overflow: hidden;
    }

}

#build-with-office .build-with-office .swiper-slide {
    text-align: center;
    font-size: 18px;


    /*background: #fff;*/

    /* Center slide text vertically */
    /*display: -webkit-box;*/
    /*display: -ms-flexbox;*/
    /*display: -webkit-flex;*/
    /*display: flex;*/
    /*-webkit-box-pack: center;*/
    /*-ms-flex-pack: center;*/
    /*-webkit-justify-content: center;*/
    /*justify-content: center;*/
    /*-webkit-box-align: center;*/
    /*-ms-flex-align: center;*/
    /*-webkit-align-items: center;*/
    /*align-items: center;*/
}
#build-with-office .swiper-pagination-bullet {
    width: 60px;
    height: 5px;
    display: inline-block;
    border-radius: 2px;
    background: #fff;
    opacity: 1;
}

#build-with-office .swiper-pagination-bullet-active {
    opacity: 1;
    background: #000000;
}
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.filter-container {
    position: relative;
}
.filter-scroll {
    overflow-x: auto;
    /*padding-right: 48px; !* Space for the fixed button *!*/
}

/*!* 复选框选中状态 *!*/
/*.el-checkbox__input.is-checked .el-checkbox__inner,*/
/*.el-checkbox__input.is-indeterminate .el-checkbox__inner {*/
/*    background-color: #000000;*/
/*    border-color: #000000;*/
/*}*/

/*.el-checkbox__input.is-checked + .el-checkbox__label {*/
/*    color: #000000;*/
/*}*/

/*!* 复选框悬停状态 *!*/
/*.el-checkbox__input:hover .el-checkbox__inner {*/
/*    border-color: #000000;*/
/*}*/

/*!* 标签样式 *!*/
/*.el-tag--info {*/
/*    background-color: rgba(9, 32, 76, 0.1);*/
/*    border-color: rgba(9, 32, 76, 0.2);*/
/*    color: #000000;*/
/*}*/

/*.el-tag--info.is-hit {*/
/*    border-color: #000000;*/
/*}*/

/*.el-tag--info .el-tag__close {*/
/*    color: #000000;*/
/*}*/

/*.el-tag--info .el-tag__close:hover {*/
/*    background-color: rgba(9, 32, 76, 0.2);*/
/*    color: white;*/
/*}*/

/*!* 其他可能有用的样式覆盖 *!*/
/*.el-radio__input.is-checked .el-radio__inner {*/
/*    border-color: #000000;*/
/*    background: #000000;*/
/*}*/

/*.el-radio__input.is-checked + .el-radio__label {*/
/*    color: #000000;*/
/*}*/

/*.el-switch.is-checked .el-switch__core {*/
/*    border-color: #000000;*/
/*    background-color: #000000;*/
/*}*/

/*.el-button--primary {*/
/*    background-color: #000000;*/
/*    border-color: #000000;*/
/*}*/

/*.el-button--primary:hover {*/
/*    background-color: #000000;*/
/*    border-color: #000000;*/
/*    opacity: 0.8;*/
/*}*/
/*.el-input-number{*/
/*    width: 100% !important;*/
/*}*/
/*.el-tabs__header{*/
/*    margin-bottom: 5px !important;*/
/*}*/
/*.el-tabs__item.is-active, .el-tabs__item:hover {*/
/*    color: #000000 !important;*/
/*}*/
/*.el-tabs__active-bar{*/
/*    display: none;*/
/*}*/
/*.el-tabs__nav-wrap::after{*/
/*    display: none;*/
/*}*/
/*.el-slider__bar{*/
/*    background-color: #000000;*/
/*}*/
/*.el-slider__button{*/
/*    border:2px solid #000000*/
/*}*/
.item-list:hover .title,
.item-list:hover .address {
    color: #000000;
}

.checkbox-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 10px;
}

.checkbox-group a {
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s;
}

.checkbox-group a.checked {
    background-color: #409eff;
    color: white;
    border: 1px solid #409eff;
}

.checkbox-group a.unchecked {
    background-color: white;
    color: #606266;
    border: 1px solid #dcdfe6;
}

.checkbox-group a.unchecked:hover {
    border-color: #409eff;
    color: #409eff;
}

.modal {
    display: none;
}
.modal.active {
    display: flex;
}

/* Range Slider Styles */
.range-slider {
    position: relative;
    width: 100%;
    height: 5px;
    margin: 30px 0;
}

.range-slider .track {
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #d3d3d3;
    border-radius: 5px;
    z-index: 1;
}

.range-slider .range {
    position: absolute;
    height: 5px;
    background-color: #000000;
    border-radius: 5px;
    z-index: 2;
}

.range-slider .thumb {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #000000;
    border-radius: 50%;
    top: -7.5px;
    z-index: 3;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.range-slider .thumb.left {
    left: 0;
}

.range-slider .thumb.right {
    right: 0;
}

.preset-btn.active {
    background-color: #000000;
    color: white;
    border-color: #000000;
}
.el-slider__bar {
    background-color: #000000;
}
.el-slider__button {
    background-color: #000000;
    border: 2px solid #000000;
}


.dropdown-hidden {
    display: none;
}

.tab-item {
    cursor: pointer;
    color: #666;
}

.tab-item:hover {
    color: #00BAB5;
}

#filter .tab-active {
    color: #000000;
    border-bottom: 2px solid #000000;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: grid;
}


/* 加载状态样式 */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 186, 181, 0.3);
    border-radius: 50%;
    border-top-color: #00BAB5;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 错误状态样式 */
.error-message {
    color: #dc3545;
    padding: 20px;
    text-align: center;
}

.tab-images:hover{
    cursor: pointer;
}

/**
预约表单
 */
@keyframes moveStripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 0;
    }
}

.progress-stripes {
    background-image: linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.3) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.3) 75%,
            transparent 75%,
            transparent
    );
    background-size: 25px 25px;
    animation: moveStripes 3s linear infinite;
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(5px);
    }
}

.wave-animation {
    display: inline-block;
}

.wave-animation span {
    display: inline-block;
    animation: wave 1.5s infinite;
}

.wave-animation span:nth-child(2) {
    animation-delay: 0.2s;
}

.wave-animation span:nth-child(3) {
    animation-delay: 0.4s;
}

.wave-animation span:nth-child(4) {
    animation-delay: 0.6s;
}

.wave-animation span:nth-child(5) {
    animation-delay: 0.8s;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.modal-open {
    animation: modalOpen 0.3s ease-in-out;
}

@keyframes modalOpen {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    animation: modalClose 0.3s ease-in-out forwards;
}

@keyframes modalClose {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

.progress-hide {
    animation: progressHide 0.5s ease-out forwards;
}

@keyframes progressHide {
    from {
        opacity: 1;
        max-height: 40px;
        margin-top: 1rem;
    }
    to {
        opacity: 0;
        max-height: 0;
        margin-top: 0;
    }
}

/* Custom form styles */
.form-input {
    @apply w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-lime-green focus:border-lime-green outline-none transition-all duration-200;
}

.form-input.error {
    @apply border-red-500 focus:ring-red-500 focus:border-red-500;
}

.error-message {
    @apply text-red-500 text-sm mt-1;
}

.form-label {
    @apply block text-gray-700 font-medium mb-2;
}

#filter .tab-active {
    color: #000000;
    border-bottom: 2px solid #000000;
}
#filter .tab-item {
    position: relative;
    cursor: pointer;
}
#filter .tab-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000000;
    transition: width 0.3s;
}
#filter .tab-item:hover::after {
    width: 100%;
}
#filter .tab-content {
    display: none;
}
#filter .tab-content.active {
    display: grid;
}
#filter .modal {
    display: none !important;
    opacity: 0;
    transition: opacity 0.2s ease;
}
#filter .modal.active {
    display: flex !important;
    opacity: 1;
}

/* Range Slider Styles */
#filter .range-slider {
    position: relative;
    width: 100%;
    height: 5px;
    margin: 30px 0;
}

#filter .range-slider .track {
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #d3d3d3;
    border-radius: 5px;
    z-index: 1;
}

#filter .range-slider .range {
    position: absolute;
    height: 5px;
    background-color: #000000;
    border-radius: 5px;
    z-index: 2;
}

#filter .range-slider .thumb {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #000000;
    border-radius: 50%;
    top: -7.5px;
    z-index: 3;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

#filter .range-slider .thumb.left {
    left: 0;
}

#filter .range-slider .thumb.right {
    right: 0;
}

#filter .preset-btn.active {
    background-color: #000000;
    color: white;
    border-color: #000000;
}

#filter .filter-btn.active {
    border-color: #000000;
    color: #000000;
}

#filter .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 10;
    margin-top: 0.25rem;
}

#filter .dropdown.active {
    display: block;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f3f4f6;
}

.dropdown-item.active {
    background-color: #f3f4f6;
    color: #000000;
}
/*input checkbox 样式*/
.round-checkbox {
    /* 隐藏默认样式 */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #000;
    border-radius: 50%; /* 圆形 */
    outline: none;
    cursor: pointer;
    vertical-align: middle;
    position: relative;
    transition: background 0.2s;
}

/* 鼠标悬停状态 */
.round-checkbox:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* 选中状态 */
.round-checkbox:checked {
    background: black; /* 黑色 */
}

/* 可添加内部小圆点 */
.round-checkbox:checked::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 50%;
}