div {
    font-family: 'AppleGothic', 'Microsoft Yahei', '微软雅黑';
}
a {text-decoration: none;}
/**顶部**/
.h_top {width: 100%; line-height: 20px; padding: 5px 0; background: #e8e8e8; overflow: hidden;}  
.h_top .fl span {
  display: inline-block; 
  padding: 0 5px; 
  background: #f31d51; 
  color: #fff;
  border-radius: 5px;
  float: left;
  font-size: 12px;
  overflow: hidden;
 }
.h_top .fl p {
  display: inline-block; 
  color: #111; 
  float: left;
  font-size: 14px;
  margin-left: 5px;
}
.h_top .fr a {
  display: inline-block;
  line-height: 16px;
  color: #111;
  font-size: 14px;
}
.h_top .fr a:hover {color: #f32053;}
.h_top .fr a:first-child {padding-right: 5px; border-right: 1px solid #999;}

/**logo&电话**/
.h_message {width: 100%; padding: 10px 0; overflow: hidden;}
.h_message dl {display: table; width: auto; overflow: hidden;}
.h_message dl dt {
  display: table-cell;
  align-items: center;
  vertical-align: middle;
}
.h_message dl dd {
  display: table-cell; 
  align-items: center; 
  vertical-align: middle;
  padding-left: 10px;
}
.h_message .logo dt {
  width: 100px;
  padding-right: 10px;
  border-right: 1px solid #989898;
}
.h_message .logo b {font-size: 18px;}
.h_message .logo p {font-size: 14px;}
.h_message .call dt {width: 70px; }
.h_message .call dd {
  font-size: 30px;
  font-weight: bold;
  font-style: italic;
  color: #f32053;
  padding-left: 0;
}

/**导航**/
.nav-container {
    background-color: #f31d51;
    width: 100%;
    display: flex;
    justify-content: center;
    height: 60px;
    z-index: 999;
    position: relative;
}
.nav_top {
    width: 100%;
    height: auto;
    background: #fff;
    transition: transform 0.3s ease-out;
}
.nav_top.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: none; /* 移除原有动画 */
    transform: translateY(0);
    z-index: 999;
}

/* 添加body padding防止内容跳动 */
body.fixed-nav {
    padding-top: 60px; /* 等于导航栏高度 */
}

.nav-content {
    width: 1250px;
    display: flex;
    align-items: center;
}

.nav-item {
    position: relative;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
    text-align: center;
    flex: 1; 
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-item a {
    display:block;
    color: #fff;
	text-decoration: none;
}
.nav-item a:hover {color: #fffc00;text-decoration: none;}

.nav-item:hover {
    color: #fffc00;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f31d51;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    width: calc(100% - 2px);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.3s ease-out;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #bc002e;
}

.nav-item:hover .dropdown-menu {
    max-height: 500px;
    opacity: 1;
    transform: scaleY(1);
    transition: all 0.3s ease-in;
}

/**底部公共样式**/
.bmh-footer * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "PingFang SC", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.bmh-footer {
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

:root {
    --bmh-primary: #f31d51;
    --bmh-primary-dark: #d01743;
    --bmh-dark-bg: #1a1a1a;
    --bmh-light-text: #ffffff;
    --bmh-dark-text: #333333;
    --bmh-gray-text: #666666;
    --bmh-light-gray: #f5f5f5;
    --bmh-section-padding: 60px 0;
}

/* 基础链接样式 - 使用特定类名避免冲突 */
.bmh-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 容器样式 */
.bmh-container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 按钮基础样式 */
.bmh-btn {
    display: inline-block;
    padding: 12px 60px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.bmh-btn-primary {
    background-color: var(--bmh-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(243, 29, 81, 0.3);
}

.bmh-btn-primary:hover {
    background-color: var(--bmh-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 29, 81, 0.4);
}

/* 底部表单模块 */
.bmh-enroll-section {
    background: linear-gradient(135deg, #2c3e50, #1a1a1a);
    padding: var(--bmh-section-padding);
    position: relative;
    overflow: hidden;
}

.bmh-enroll-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(243,29,81,0.05)" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>') no-repeat;
    background-size: 100% 100%;
    opacity: 0.8;
}

.bmh-enroll-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.bmh-enroll-content {
    flex: 0 0 40%;
    color: var(--bmh-light-text);
}

.bmh-enroll-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.bmh-enroll-content h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--bmh-primary);
}

.bmh-enroll-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.7;
}
.bmh-highlights p {
    padding-left: 25px;
    background: url(../images/highlights.png) left center no-repeat;
    background-size: 20px 20px;
}

.bmh-enroll-form {
    flex: 0 0 55%;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bmh-form-title {
    font-size: 22px;
    color: var(--bmh-dark-text);
    margin-bottom: 20px;
    font-weight: 600;
}

.bmh-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.bmh-form-group {
    margin-bottom: 0;
}

.bmh-form-group input,
.bmh-form-group select {
    width: 100%;
    padding: 14px 5px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
    background-color: #f9f9f9;
}

.bmh-form-group input:focus,
.bmh-form-group select:focus {
    border-color: var(--bmh-primary);
    box-shadow: 0 0 0 3px rgba(243, 29, 81, 0.1);
    outline: none;
    background-color: white;
}

.bmh-form-submit {
    grid-column: 1 / -1;
    text-align: center;
}



/* Footer模块 */
.bmh-footer-main {
    background-color: var(--bmh-dark-bg);
    color: var(--bmh-light-text);
    padding: 100px 0 60px 0;
    position: relative;
}

.bmh-footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path fill="%23f8f9fa" d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25"></path><path fill="%23f8f9fa" d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5"></path><path fill="%23f8f9fa" d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z"></path></svg>') no-repeat;
    background-size: cover;
}

.bmh-footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.bmh-footer-column {
    margin-bottom: 30px;
    text-align: center;
}

.bmh-footer-contact {
    text-align: left;
}

.bmh-footer-column h4 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
    color: white;
    display: inline-block;
}

.bmh-footer-column h4::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--bmh-primary);
}

.bmh-footer-contact h4::after {
    left: 0;
    transform: none;
}

.bmh-footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.7;
}

.bmh-footer-links {
    list-style: none;
    padding: 0;
}

.bmh-footer-links li {
    margin-bottom: 12px;
}

.bmh-footer-link {
    color: rgba(255, 255, 255, 0.8);
    display: inline-block;
    transition: all 0.3s;
}

.bmh-footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.bmh-contact-info {
    text-align: left;
}
.bmh-contact-info a,
.bmh-contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 30px;
   
}
.bmh-contact-info a.a1 {background: url(../images/contact1.png) left center no-repeat; background-size: 20px 20px; }
.bmh-contact-info a.a2 {background: url(../images/contact2.png) left center no-repeat; background-size: 20px 20px; }
.bmh-contact-info p.p1 {background: url(../images/contact3.png) left center no-repeat; background-size: 20px 20px; }
.bmh-contact-info p.p2 {background: url(../images/contact4.png) left center no-repeat; background-size: 20px 20px; }


/* 二维码区域样式 */
.bmh-qrcode-section {
    margin-top: 20px;
}

.bmh-qrcode-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: white;
}

.bmh-qrcode-img {
    width: 120px;
    height: 120px;
    background-color: white;
    padding: 5px;
    margin: 0 auto;
}

.bmh-qrcode-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bmh-qrcode-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
}

.bmh-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.bmh-footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 10px;
}

.bmh-record-link {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.bmh-record-link:hover {
    color: var(--bmh-primary);
}

/**右侧侧边栏**/
.r-fix-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    width: 50px;
    height: 100%;
    border-left: 1px solid #eaeaea;
    text-align: center;
    background: hsla(0,0%,100%,1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.r-fix-nav ul {padding-top: 150px; width: 100%; height: 100%; position: relative;}
.r-fix-nav li{
    float: right;
    width: 49px;
    height: 60px;
    cursor: pointer;
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    overflow: hidden;
}
.r-fix-nav li.right{
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
}
.r-fix-nav li.tel-hover{
    width: 360px;
    margin-right: -230px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
}
.r-fix-nav li img {width: 30px; height: 23px;}
.r-fix-nav .fix-nav-box{
    width: 100%;
    height: 50px;
    float: left;
}
.r-fix-nav li.right:hover{
    width: 160px;
    background-color: #eaeaea;
}
.r-fix-nav li.right:hover .let-icon p {display: none;}

.r-fix-nav .let-icon{
    float: left;
    width: 35px;
    height: 35px;
    margin-top: 13px;
    margin-left: 10px;
}
.r-fix-nav .let-icon p {display: block; width: 100%;}
.r-fix-nav .right-text{
    color: red;
    float: left;
    margin-left: 9px;
    margin-top: 13px;
    color: #000;
    text-transform:uppercase;
}
.right-tel {
    width: 230px;
    height: 60px;
    float: left;
}

.return-top {
    text-align: center;
    position: absolute;
    right: 0;
    bottom: 246px;
}