* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
/* 圆角圈样式（自适应文字） */
.rounded-tag {
  display: inline-block; /* 行内块，随文字宽度自适应 */
  padding: 4px 12px; /* 上下/左右内边距，控制圈的大小 */
  border: 2px solid #67c23a; /* 边框样式 */
  border-radius: 999px; /* 超大圆角，适配任意高度 */
  background-color: #f0f9ff;
  color: #67c23a;
  font-size: 14px;
  line-height: 1.5; /* 行高保证文字垂直居中 */
}
.basenavbar {
  padding-top: 80px;
}
.basenavbar .basenavbar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFF;
  padding: 0 50px;
  height: 80px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 110;
}
.basenavbar .basenavbar-nav .left {
  display: flex;
  height: 100%;
}
.basenavbar .basenavbar-nav .left .logo {
  margin-top: 20px;
  height: 36px;
}
.basenavbar .basenavbar-nav .left .nav-box {
  height: 100%;
  padding-top: 22px;
  margin-top: 5px;
  display: flex;
  font-family: Noto Sans SC, sans-serif;
}
.basenavbar .basenavbar-nav .left .nav-in {
  height: 100%;
  margin-left: 40px;
}
.basenavbar .basenavbar-nav .left .nav-in:first-child {
  margin-left: 60px;
}
.basenavbar .basenavbar-nav .left .nav-box > a {
  height: 32px;
  margin-left: 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.basenavbar .basenavbar-nav .left .nav-box .cpbox {
  height: 32px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  column-gap: 6px;
}
.basenavbar .basenavbar-nav .left .nav-box .border {
  padding: 0 10px;
  border-radius: 5px;
  border: 0px solid #85DFFD;
}
.cpbox svg {
  width: 13px;
  height: 8px;
  transition: all 0.3s;
}
.cpbox path {
  fill: #333;
}
.basenavbar .basenavbar-nav .left .nav-box > a:hover,
.basenavbar .basenavbar-nav .left .nav-box .cpbox:hover,
.basenavbar .basenavbar-nav .left .nav-box .nav-hover.nav-in .cpbox {
  color: #18A8D2;
}
.nav-box .nav-hover.nav-in .cpbox svg {
  transform: rotate(180deg);
}
.nav-box .nav-hover.nav-in .cpbox path {
  fill: #18A8D2;
}
.basenavbar .basenavbar-nav .phonebox {
  display: flex;
  align-items: center;
  color: #009EE2;
  font-weight: 600;
}
@media (max-width: 1300px) {
.basenavbar .basenavbar-nav .left .nav-box > a {
  height: 32px;
  margin-left: 40px;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.basenavbar .basenavbar-nav .left .nav-box .cpbox {
  height: 32px;
  font-size: 20px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  column-gap: 6px;
}
.basenavbar .basenavbar-nav .phonebox {
  display: flex;
  align-items: center;
  color: #009EE2;
  font-size: 20px;
  font-weight: 600;
}
}
.basenavbar .basenavbar-nav .phonebox img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}
.dropdown {
  position: absolute;
  left: 0;
  top: 80px;
  width: 100%;
  line-height: 2;
  z-index: 110;
  display: none;
}
.dropdown-container {
  width: 100%;
  background-color: #FBFBFB;
  padding: 36px 50px 50px;
  box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, .2);
  box-sizing: border-box;
  display: flex;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
}
.dropdown-btn-wrap {
  width: 280px;
  padding-top: 100px;
}
.dropdown .dropdown-btn {
  width: 200px;
  height: 44px;
  border-radius: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  background: linear-gradient(270deg, #4BBEFF 0%, #4872F8 100%);
  cursor: pointer;
  flex-shrink: 0;
  transition: all .3s;
  opacity: 0;
  transform: translateX(30px);
}
.dropdown .dropdown-alone {
  flex-shrink: 0;
  border-right: 1px solid #CCC;
  padding-right: 50px;
}
.dropdown .dropdown-alone-title {
  font-size: 20px;
  font-weight: bold;
  color: #18A8D2;
  margin-bottom: 15px;
}
.dropdown .dropdown-alone-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.dropdown .dropdown-alone-item {
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
  color: #18A8D2;
  letter-spacing: 2px;
}
.dropdown .dropdown-column {
  width: 224px;
  flex-shrink: 0;
  padding: 0 28px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #CCC;
  transition: all .3s;
  opacity: 0;
  transform: translateX(30px);
}
.dropdown .dropdown-column:last-child {
  border-right: none;
}
.dropdown .dropdown-title {
  font-size: 20px;
  font-weight: bold;
  color: #1A1A1A;
  margin-bottom: 5px;
}
.dropdown .dropdown-list {
  display: flex;
  flex-direction: column;
}
.dropdown .dropdown-item {
  height: 45px;
  line-height: 45px;
  background-color: transparent;
  border-radius: 8px;
  font-size: 16px;
  color: #505050;
  padding: 0 12px;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s;
}
.dropdown .dropdown-item:hover {
  color: #18A8D2;
  background: linear-gradient(to right, #ecf0fb 0%, #f1f7fd 41%, #d2e2fb 100%);
}
.dropdown .dropdown-column:nth-child(5n+2) {
  transition-delay: .15s;
}
.dropdown .dropdown-column:nth-child(5n+3) {
  transition-delay: .3s;
}
.dropdown .dropdown-column:nth-child(5n+4) {
  transition-delay: .45s;
}
.dropdown .dropdown-column:nth-child(5n+5) {
  transition-delay: .6s;
}
.dropdown .dropdown-column:nth-child(5n+6) {
  transition-delay: .75s;
}
.nav-hover .dropdown .dropdown-btn,
.nav-hover .dropdown .dropdown-column {
  opacity: 1;
  transform: translateX(0px);
}

.right-v {
  z-index: 99;
  position: fixed;
  right: 2%;
  top: 21%;
}
.right-v .rt-v-wx,
.right-v .rt-v-phone {
  display: none;
  position: absolute;
  top: 0;
  right: 76px;
  background: url('../img-v/chrh-rtbg1.png') no-repeat;
  background-size: 100% 100%;
  width: 198px;
  height: 108px;
}
.right-v .rt-v-wx .rt-v-wx-title,
.right-v .rt-v-phone .rt-v-wx-title {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #555;
  text-align: center;
}
.right-v .rt-v-wx .rt-text,
.right-v .rt-v-phone .rt-text {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.right-v .rt-v-wx .rt-v-wxok,
.right-v .rt-v-phone .rt-v-wxok {
  display: none;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #FFF;
  font-size: 12px;
  padding: 5px;
}
.right-v .rt-v-wx .rt-v-wx-img,
.right-v .rt-v-phone .rt-v-wx-img {
  display: block;
  margin-top: 5px;
  width: 137px;
  height: 84px !important;
  margin: 8px auto 0px !important;
}
.right-v .rt-v-wx .rt-v-wx-sub,
.right-v .rt-v-phone .rt-v-wx-sub {
  font-size: 12px;
}
.right-v .rt-v-phone {
  top: 120px;
  padding-left: 20px;
  text-align: left;
}
.right-v .rt-v-phone .rt-v-wx-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #333;
  text-align: left;
  margin-top: 20px;
}
.right-v .rt-v-phone .rt-v-phonep {
  font-size: 20px;
  font-weight: bold;
  line-height: 40px;
  color: #18A8D2;
  text-align: left;
}
.right-v .rt-v-box {
  width: 84px;
  height: 340px;
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 72, 93, 0.16);
  border-radius: 41px;
  padding: 28px 0;
}
.right-v .rt-v-box .rt-v-item {
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #555;
  text-align: center;
}
.right-v .rt-v-box .rt-v-item img {
  height: 32px;
  margin: 0 auto 14px;
  display: block;
}
.right-v .rt-v-box .rt-line {
  width: 64px;
  height: 1px;
  background: #EEE;
  margin: 20px auto 20px;
}
.right-v .rt-vwx:hover .rt-v-wx {
  display: block !important;
}
.right-v .rt-phone:hover .rt-v-phone {
  display: block !important;
}

.navicon {
  display: none;
}

@media (max-width: 500px) {
  .basenavbar .banner66-banner {
    display: none !important;
  }	
}

@media (min-width: 500px) {
  .right-v {
    z-index: 99;
    position: fixed;
    right: 2%;
    top: 21%;
  }
  .right-v .rt-v-wx,
  .right-v .rt-v-phone {
    display: none;
    position: absolute;
    top: 0;
    right: 76px;
    background: url('../img-v/chrh-rtbg1.png') no-repeat;
    background-size: 100% 100%;
    width: 198px;
    height: 108px;
  }
  .right-v .rt-v-wx .rt-v-wx-title,
  .right-v .rt-v-phone .rt-v-wx-title {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #555;
    text-align: center;
  }
  .right-v .rt-v-wx .rt-text,
  .right-v .rt-v-phone .rt-text {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .right-v .rt-v-wx .rt-v-wxok,
  .right-v .rt-v-phone .rt-v-wxok {
    display: none;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 12px;
    padding: 5px;
  }
  .right-v .rt-v-wx .rt-v-wx-img,
  .right-v .rt-v-phone .rt-v-wx-img {
    display: block;
    margin-top: 5px;
    width: 137px;
    height: 84px !important;
    margin: 8px auto 0px !important;
  }
  .right-v .rt-v-wx .rt-v-wx-sub,
  .right-v .rt-v-phone .rt-v-wx-sub {
    font-size: 12px;
  }
  .right-v .rt-v-phone {
    top: 120px;
    padding-left: 20px;
    text-align: left;
  }
  .right-v .rt-v-phone .rt-v-wx-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #333;
    text-align: left;
    margin-top: 20px;
  }
  .right-v .rt-v-phone .rt-v-phonep {
    font-size: 20px;
    font-weight: bold;
    line-height: 40px;
    color: #18A8D2;
    text-align: left;
  }
  .right-v .rt-v-box {
    width: 84px;
    height: 340px;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 72, 93, 0.16);
    border-radius: 41px;
    padding: 28px 0;
  }
  .right-v .rt-v-box .rt-v-item {
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #555;
    text-align: center;
  }
  .right-v .rt-v-box .rt-v-item img {
    height: 32px;
    margin: 0 auto 14px;
    display: block;
  }
  .right-v .rt-v-box .rt-line {
    width: 64px;
    height: 1px;
    background: #EEEEEE;
    margin: 20px auto 20px;
  }
  .right-v .rt-vwx:hover .rt-v-wx {
    display: block !important;
  }
  .right-v .rt-phone:hover .rt-v-phone {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  html {
    scroll-padding-top: 80px;
  }
}

@media (max-width: 1300px) {
  .gototop {
    position: fixed;
    right: 2%;
    bottom: 3%;
    z-index: 10;
    cursor: pointer;
  }
}

@media (max-width: 1200px) {
  .basenavbar {
    padding-top: 0px;
  }
  .basenavbar .basenavbar-nav {
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    display: none;
  }
  .basenavbar .basenavbar-nav .left .logo {
    height: 24px;
    margin: auto 0;
  }
  .basenavbar .basenavbar-nav .left .nav-box > a,
  .basenavbar .basenavbar-nav .left .nav-box .cpbox {
    margin-left: 20px;
    font-size: 14px;
  }
  .basenavbar .basenavbar-nav .left .nav-box .cpbox {
    margin-left: 32px;
  }
  .basenavbar .basenavbar-nav .phonebox img {
    height: 20px;
    width: 20px;
  }
  .basenavbar .basenavbar-nav .phonebox {
    font-size: 12px;
  }
  .basenavbar .basenavbar-nav .left .nav-box {
    display: none;
  }
  .basenavbar .basenavbar-nav {
    height: 44px;
  }
  .navicon {
    display: block;
    height: 24px;
    margin-left: 20px;
    cursor: pointer;
  }
  .toright {
    display: flex;
    justify-content: flex-end;
  }
  .right-v {
    z-index: 99;
    position: fixed;
    right: 1%;
    top: 10%;
  }
  .right-v .rt-v-box {
    width: 44px;
    height: 294px;
  }
  .right-v .rt-v-box .rt-line {
    width: 36px;
    height: 1px;
    background: #EEEEEE;
    margin: 10px auto 10px;
  }
  .right-v .rt-v-box .rt-v-item img {
    height: 20px;
    margin: 0 auto 5px;
  }
  .right-v .rt-v-box .rt-v-item {
    font-size: 14px;
  }
  .right-v .rt-v-wx,
  .right-v .rt-v-phone {
    right: 44px;
  }
  .right-v .rt-vwx:hover .rt-v-wx {
    display: block !important;
  }
  .right-v .rt-phone:hover .rt-v-phone {
    display: block !important;
  }
  .right-v .rt-v-phone {
    top: 96px;
  }
}

@media (max-width: 500px) {
  .basenavbar {
    padding-top: 0;
  }
  .basenavbar .basenavbar-nav {
    display: none;
  }
  .right-v {
    display: none;
  }
}