/*
Theme Name: Twenty Twenty-Five Child
Template: twentytwentyfive
Text Domain: twentytwentyfive-child
Version: 1.0.0
*/

body {
  letter-spacing: normal;
  font-weight:400;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", 
               "Noto Sans", "Liberation Sans", Arial, sans-serif;
}

body,
button,
input,
select,
textarea {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", 
               "Noto Sans", "Liberation Sans", Arial, sans-serif, 
               "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}
 /* header */
header {
	background-color: rgba(176, 42, 55, 0.96) !important;
	width: 100%;
   position: sticky;
   top: 0px;
   z-index: 1020;
}

.zdyhd {
    width: 100%;
	 line-height: 24px;
    position: sticky;
    top: 0;
    z-index: 1020;
	  font-size: 16px;
    font-weight:400;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* 基础导航容器 */
.zdyhd-container {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(255, 255, 255, 0.15);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0 !important;
    position: relative;
}

.zdyhd .container-xl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 12px;
}

/* Logo */
.zdyhd .logoa {
    display: block;
    text-decoration: none;
    margin-right: 16px;
}

.zdyhd .logoimg {
    height: 60px;
    width: auto;
}

/* 菜单切换按钮（默认隐藏） */
.zdyhd .navbar-toggler {
    appearance: button;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    box-sizing: border-box;
    cursor: pointer;
    display: none;
    font: 400 20px / 20px system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
    height: 40px;
    line-height: 20px;
    margin: 0;
    padding: 4px 12px;
    text-align: center;
    text-size-adjust: 100%;
    transition: all 0.3s ease;
    width: 50px;
    -webkit-tap-highlight-color: transparent;
}

.zdyhd .navbar-toggler:focus {
    outline: 2px solid #ffc107;
    outline-offset: 2px;
}

.zdyhd .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    display: inline-block;
    height: 30px;
    vertical-align: middle;
    width: 30px;
}

.zdyhd .navbar-toggler:hover .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* 右侧菜单区域 */
.zdyhd .menuright {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

/* 菜单列表 */
.zdyhd .menus {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* 菜单项 */
.zdyhd .nav-item {
    display: flex;
    flex-direction: column;
    list-style: none;
    text-align: center;
}

/* 菜单链接 */
.zdyhd .nav-link {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 9999px;
    padding: 8px 24px;
    text-align: center;
    white-space: nowrap;
    font-size: 16px;
    line-height: 24px;
}

.zdyhd .nav-link:hover,
.zdyhd .nav-link:focus {
    border-radius: 9999px !important;
    background-color: #ffcd39 !important;
    color: #000 !important;
}

.zdyhd .nav-link:active,
.zdyhd .nav-link.active {
    background-color: #ffc107;
    color: #000;
    box-shadow: none;
}

/* 下拉菜单 */
.zdyhd .dropdown {
    position: relative;
}

.zdyhd .dropdown-toggle {
    white-space: nowrap;
    padding: 8px 24px;
    border-radius: 9999px;
    color: #fff;
}

.zdyhd .dropdown-menu {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.176);
    border-radius: 6px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    display: none;
    list-style: none;
    margin: 0;
    min-width: 160px;
    padding: 8px 0;
    position: absolute;
    text-align: left;
    z-index: 1000;
    top: 100%;
    left: 0;
}

.zdyhd .dropdown-menu.show {
    display: block;
}

.zdyhd .dropdown-menu a {
    color: #212529;
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    white-space: nowrap;
}

.zdyhd .dropdown-menu a:hover {
    background-color: #f8f9fa;
}

/* 分隔线 */
.zdyhd .tb-2 {
    padding: 4px 0;
}

.zdyhd .yline {
    align-self: stretch;
    background-color: #fff;
    display: flex;
    margin: 0 8px;
    opacity: 0.25;
    width: 1px;
    height: 56px;
}

.zdyhd .small-yline {
    display: none;
}

/* 电话区域 */
.zdyhd .phone {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 16px;
    width: auto;
}

.zdyhd .phone-text {
    color: #f8f9fa;
    cursor: pointer;
    display: block;
    font-size: 20px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 预订流程样式 */
.bookingflow-container {
  background-color: rgb(251, 249, 246);
  padding: 48px 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
}

.bookingflow-container-inner {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.bookingflow-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  gap: 1rem;
}


.bookingflow-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 0 0%;
  padding-left: 12px;
  padding-right: 12px;
  max-width: 25%;
}


.bookingflow-ctline {
    position: relative;
    overflow: visible;
}

.bookingflow-ctline::after {
  content: "\300B";
  font-family: 'bootstrap-icons'; 
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem; 
  color: #333 !important; 
  line-height: 1; 
  vertical-align: middle;
  display: inline-block; 
}

/* 最后一列不显示右边框 */
.bookingflow-col:last-child .bookingflow-ctline {
  border-right: none;
}

.bookingflow-feature-icon {
 
  width: 5rem;
    height: 5rem;
    border-radius: 10rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.bookingflow-heading {
  margin-bottom: 0.5rem;
}

.bookingflow-subheading {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: rgb(33, 37, 41);
}

.bookingflow-description {
  font-size: 16px;
  font-weight: 400;
  color: rgb(33, 37, 41);
  margin-bottom: 16px;
  margin-block-start: 0;
}

/* Bootstrap类的替代样式 */
.bookingflow-flex-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bookingflow-bg-primary {
  background-color: #0d6efd;
  color: #fff;
}

.bookingflow-fs-2 {
  font-size: 2rem;
}

.bookingflow-fs-3 {
  font-size: 28px;
  font-weight: 500;
  margin-block-start: 0;
}

.bookingflow-mb-0 {
  margin-bottom: 0;
  font-size: 28px;
  margin-block-start: 0;
  font-weight: 500;
  line-height: 1.2;
}

.bookingflow-mb-3 {
  margin-bottom: 1rem;
}

.bookingflow-text-center {
  text-align: center;
}

.booking-float{
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #0d6efd;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.2rem;
}


/* 响应式设计 - 小屏幕 (max-width: 767.98px) */
@media (max-width: 767.98px) {
    .zdyhd {
        box-sizing: border-box;
        color: rgb(33, 37, 41);
        display: block;
        font-size: 16px;
        font-weight: 400;
        height: auto; /* 改为 auto，避免固定高度导致内容溢出 */
        line-height: 24px;
        text-align: start;
        text-size-adjust: 100%;
        unicode-bidi: isolate;
        -webkit-tap-highlight-color: transparent;
    }

    .zdyhd-container {
        height: auto !important;
        padding: 12px 0;
    }

    .zdyhd .container-xl {
        align-items: center;
    }

    .zdyhd .logoa {
        margin-right: 0;
        padding: 5px 0;
    }

    .zdyhd .navbar-toggler {
        display: block;
        background-color: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.4);
        color: #fff;
        height: 42px;
        width: 56px;
        font: 20px / 20px system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    }

    .zdyhd .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .zdyhd .menuright {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }

    .zdyhd .menuright.show {
        display: flex;
    }

    .zdyhd .menus {
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
    }

    .zdyhd .nav-item {
        width: 100%;
    }

    .zdyhd .nav-link {
        display: block;
        padding: 8px 24px;
        text-align: center;
        border-radius: 0;
    }

    .zdyhd .menuright .nav-link:hover,
    .zdyhd .menuright .nav-link:focus {
        border-radius: 9999px !important;
        background-color: #ffcd39 !important;
        color: #000 !important;
    }

    .zdyhd .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        margin-top: 2px;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .zdyhd .dropdown-menu.show {
        display: block;
    }

    .zdyhd .yline {
        display: none;
    }

    .zdyhd .small-yline {
        display: block;
        margin: 8px auto;
        width: 80%;
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.5);
        opacity: 1;
    }

    .zdyhd .phone {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .zdyhd .phone-text {
        width: auto;
    }

    .bookingflow-col {
    flex: 0 0 auto;
    width: 40%;
    max-width: 100%;
  }

  .bookingflow-fs-3 {
    font-size: 24px;  
  }
}