.pcHeader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: transparent;
  z-index: 90;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.pcHeader.on,
.pcHeader:hover {
  background-color: #3271AE;
}
.pcHeader .pcHeaderBox {
  height: 90px;
  margin: 0 70px;
}
.pcHeader .pcHeaderBox .pcHeaderLeft {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.pcHeader .pcHeaderBox .pcHeaderLeft .logo {
  display: block;
}
.pcHeader .pcHeaderBox .pcHeaderLeft .logo img {
  width: 159px;
  height: auto;
}
.pcHeader .pcHeaderBox .pcHeaderLeft .pcHeaderMenu {
  margin-left: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.pcHeader .pcHeaderBox .pcHeaderLeft .pcHeaderMenu .pcHeaderMenuItem {
  font-size: 16px;
  color: white;
  text-decoration: none;
  display: flex;
  white-space: nowrap;
  position: relative;
  margin-right: 30px;
  cursor: pointer;
}
@media screen and (min-width: 1021px) and (max-width: 1800px) {
  .pcHeader .pcHeaderBox .pcHeaderLeft .pcHeaderMenu .pcHeaderMenuItem {
    margin-right: 20px;
    font-size: 15px;
  }
}
.pcHeader .pcHeaderBox .pcHeaderLeft .pcHeaderMenu .pcHeaderMenuItem .ricon {
  display: block;
  margin-left: 8px;
  font-size: 24px;
}
.pcHeader .pcHeaderBox .pcHeaderLeft .pcHeaderMenu .pcHeaderMenuItem.on::after,
.pcHeader .pcHeaderBox .pcHeaderLeft .pcHeaderMenu .pcHeaderMenuItem:hover::after {
  content: " ";
  display: block;
  height: 2px;
  background-color: white;
  width: 100%;
  position: absolute;
  bottom: 0;
  transform: translateY(13px);
}
.pcHeader .pcHeaderBox .pcHeaderRight .menuSearchIconBtn {
  width: 54px;
  height: 54px;
  color: white;
  cursor: pointer;
  font-size: 24px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
}
.pcHeader .pcHeaderBox .pcHeaderRight .menuSearchIconBtn .icon {
  position: relative;
  z-index: 11;
}
.pcHeader .pcHeaderBox .pcHeaderRight .menuSearchIconBtn .inputBox {
  position: absolute;
  right: 0;
  height: 90px;
  padding-right: 0;
  padding-left: 0;
  min-width: 0;
  pointer-events: none;
  opacity: 0;
  transition: all 0.2s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: default;
}
.pcHeader .pcHeaderBox .pcHeaderRight .menuSearchIconBtn .inputBox .input {
  background-color: white;
  outline: none;
  border: none;
  height: 44px;
  padding: 0;
  color: #3271AE;
  font-size: 16px;
  width: 0;
  overflow: hidden;
  min-width: 0;
  transition-property: width;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.pcHeader .pcHeaderBox .pcHeaderRight .menuSearchIconBtn .inputBox .input::placeholder {
  color: #3271AE;
  font-size: 16px;
}
.pcHeader .pcHeaderBox .pcHeaderRight .menuSearchIconBtn .menuSearchIconBtnChildrenMenu {
  display: none;
  background-color: white;
  position: absolute;
  transform: translateX(0%) translateY(100%);
  top: -50px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 89;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
.pcHeader .pcHeaderBox .pcHeaderRight .menuSearchIconBtn .menuSearchIconBtnChildrenMenu .menuSearchIconBtnChildrenMenuItem {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  display: block;
  word-break: normal;
  white-space: nowrap;
  height: 50px;
  line-height: 50px;
  padding: 0 32px;
  transition: all 0.2s;
}
.pcHeader .pcHeaderBox .pcHeaderRight .menuSearchIconBtn .menuSearchIconBtnChildrenMenu .menuSearchIconBtnChildrenMenuItem:hover {
  color: #fff;
  background-color: #3271AE;
  font-weight: bold;
}
.pcHeader .pcHeaderBox .pcHeaderRight .menuSearchIconBtn:hover .icon {
  opacity: 0.6;
}
.pcHeader .pcHeaderBox .pcHeaderRight .menuSearchIconBtn:hover .icon.searchIcon {
  color: #3271AE;
  opacity: 1;
}
.pcHeader .pcHeaderBox .pcHeaderRight .menuSearchIconBtn:hover .menuSearchIconBtnChildrenMenu {
  display: block;
}
.pcHeader .pcHeaderBox .pcHeaderRight .menuSearchIconBtn:hover .inputBox {
  pointer-events: all;
  opacity: 1;
}
.pcHeader .pcHeaderBox .pcHeaderRight .menuSearchIconBtn:hover .inputBox .input {
  padding-right: 54px;
  padding-left: 24px;
  width: 330px;
}
@keyframes pcHeaderPoupLeftBoxIconRotate {
  0% {
    height: 0vh;
    opacity: 0.6;
  }
  100% {
    height: calc(100vh - 90px - 50px);
    opacity: 1;
  }
}
.pcHeader .pcHeaderPoup {
  display: none;
  flex-direction: row;
  position: fixed;
  top: 90px;
  height: calc(100vh - 90px - 50px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: white;
  width: 100%;
  z-index: 80;
}
.pcHeader .pcHeaderPoup.on {
  display: flex;
  animation: 0.4s pcHeaderPoupLeftBoxIconRotate;
  animation-timing-function: ease;
}
.pcHeader .pcHeaderPoup .pcHeaderPoupLeft {
  padding-right: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  flex-shrink: 0;
  width: 30%;
  max-width: 550px;
  min-width: 350px;
}
.pcHeader .pcHeaderPoup .pcHeaderPoupLeft .pcHeaderPoupLeftBox {
  max-width: 225px;
}
.pcHeader .pcHeaderPoup .pcHeaderPoupLeft .pcHeaderPoupLeftBox .title {
  font-size: 24px;
  margin-top: 40px;
}
.pcHeader .pcHeaderPoup .pcHeaderPoupLeft .pcHeaderPoupLeftBox .subtitle {
  font-size: 14px;
  color: #2F4251;
  line-height: 24px;
  margin-top: 20px;
  margin-bottom: 40px;
}
.pcHeader .pcHeaderPoup .pcHeaderPoupLeft .pcHeaderPoupLeftBox .subbtn {
  text-decoration: none;
  color: #3271AE;
}
.pcHeader .pcHeaderPoup .pcHeaderPoupLeft .pcHeaderPoupLeftBox .subbtn i {
  transition: all 0.3s;
}
.pcHeader .pcHeaderPoup .pcHeaderPoupLeft .pcHeaderPoupLeftBox .subbtn:hover {
  font-weight: bold;
}
.pcHeader .pcHeaderPoup .pcHeaderPoupLeft .pcHeaderPoupLeftBox .subbtn:hover i {
  margin-left: 10px;
}
.pcHeader .pcHeaderPoup .pcHeaderPoupRight {
  flex: 1;
  background-color: #EBEDF2;
  overflow-y: auto;
}
.pcHeader .pcHeaderPoup .pcHeaderPoupRight .pcHeaderPoupRightBox {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  padding: 12px;
}
@media screen and (min-width: 1021px) and (max-width: 1800px) {
  .pcHeader .pcHeaderPoup .pcHeaderPoupRight .pcHeaderPoupRightBox {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: minmax(300px, auto);
    gap: 30px;
    padding: 30px;
  }
}
@media screen and (min-width: 1801px) {
  .pcHeader .pcHeaderPoup .pcHeaderPoupRight .pcHeaderPoupRightBox {
    grid-template-columns: repeat(auto-fill, minmax(364px, 1fr));
    grid-auto-rows: minmax(364px, auto);
    gap: 55px;
    padding: 40px;
  }
}
.pcHeader .pcHeaderPoup .pcHeaderPoupRight .pcHeaderPoupRightBox .item {
  background-color: white;
  max-width: 364px;
}
.pcHeader .pcHeaderPoup .pcHeaderPoupRight .pcHeaderPoupRightBox .item .imgBox {
  width: 100%;
  height: 202px;
}
.pcHeader .pcHeaderPoup .pcHeaderPoupRight .pcHeaderPoupRightBox .item .imgBox .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pcHeader .pcHeaderPoup .pcHeaderPoupRight .pcHeaderPoupRightBox .item .content {
  padding: 24px;
  text-align: center;
}
.pcHeader .pcHeaderPoup .pcHeaderPoupRight .pcHeaderPoupRightBox .item .content .contentTop {
  height: 160px;
}
.pcHeader .pcHeaderPoup .pcHeaderPoupRight .pcHeaderPoupRightBox .item .content .title {
  font-size: 18px;
  margin-bottom: 20px;
}
.pcHeader .pcHeaderPoup .pcHeaderPoupRight .pcHeaderPoupRightBox .item .content .subtitle {
  font-size: 12px;
  color: #5A5A5A;
  line-height: 22px;
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 3;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
}
.pcHeader .pcHeaderPoup .pcHeaderPoupRight .pcHeaderPoupRightBox .item .content .btn {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  background-color: #EBEDF2;
  color: white;
  transition: all 0.3s;
  margin: 0 auto;
}
.pcHeader .pcHeaderPoup .pcHeaderPoupRight .pcHeaderPoupRightBox .item .content .btn:hover {
  background-color: #3271AE;
  color: white;
}
.pcHeader .pcHeaderPoup .pcHeaderPoupRight .pcHeaderPoupRightBox .item:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1000px) {
  .pcHeader {
    display: none !important;
  }
}
@keyframes mobileMenuAniY {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
.mobileMenu {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 88;
  box-sizing: border-box;
  width: 100%;
  display: none;
}
@media screen and (max-width: 1000px) {
  .mobileMenu {
    display: block;
  }
}
.mobileMenu .mobileMenuTop {
  padding: 0 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}
.mobileMenu .mobileMenuTop .mobileMenuTopLeft .mobileMenuTopLeftImg {
  display: block;
  width: auto;
  height: 36px;
}
.mobileMenu .mobileMenuTop .mobileMenuTopLeft .mobileMenuTopLeftImg img {
  width: auto;
  height: 100%;
}
.mobileMenu .mobileMenuTop .mobileMenuTopLeft .mobileMenuTopLeftImg .mobileMenuTopLeftImgWhite {
  display: block;
}
.mobileMenu .mobileMenuTop .mobileMenuTopLeft .mobileMenuTopLeftImg .mobileMenuTopLeftImgBlack {
  display: none;
}
.mobileMenu .mobileMenuTop .mobileMenuTopRight {
  display: flex;
  flex-direction: row;
}
.mobileMenu .mobileMenuTop .mobileMenuTopRight .mobileRightIcon {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.mobileMenu .mobileMenuTop .mobileMenuTopRight .mobileRightIcon .menu {
  display: block;
}
.mobileMenu .mobileMenuTop .mobileMenuTopRight .mobileRightIcon .close {
  display: none;
}
.mobileMenu .mobileMenuTop .mobileMenuTopRight .mobileRightIcon .icon {
  color: white;
  font-size: 24px;
}
.mobileMenu .mobileMenuTop .mobileMenuTopRight .mobileRightIcon.on .icon {
  color: #3271AE !important;
}
.mobileMenu .mobileMenuTop .mobileMenuTopRight .mobileRightIcon.on .menu {
  display: none;
}
.mobileMenu .mobileMenuTop .mobileMenuTopRight .mobileRightIcon.on .close {
  display: block;
}
.mobileMenu.on {
  background-color: white;
}
.mobileMenu.on .mobileMenuTop .mobileMenuTopLeft .mobileMenuTopLeftImg .mobileMenuTopLeftImgWhite {
  display: none;
}
.mobileMenu.on .mobileMenuTop .mobileMenuTopLeft .mobileMenuTopLeftImg .mobileMenuTopLeftImgBlack {
  display: block;
}
.mobileMenu.on .mobileMenuTop .mobileMenuTopRight .mobileRightIcon .icon {
  color: black;
}
.mobileMenu .mobileMenuLanguage {
  width: 100%;
  height: calc(100vh - 50px);
  position: fixed;
  top: 50px;
  background-color: white;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobileMenu .mobileMenuLanguage .mobileMenuLanguageItem {
  padding: 32px 0;
  font-size: 24px;
  font-weight: bold;
  color: black;
  animation: 0.5s mobileMenuAniY;
}
.mobileMenu .mobileMenuLanguage .mobileMenuLanguageItem.on,
.mobileMenu .mobileMenuLanguage .mobileMenuLanguageItem:hover {
  color: #3271AE;
}
.mobileMenu .mobileMenuBox {
  background-color: white;
  padding: 0 15px;
  width: 100%;
  height: calc(100vh - 50px);
  position: fixed;
  top: 50px;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
  flex-direction: column;
}
.mobileMenu .mobileMenuBox .mobileMenuInputBox {
  margin: 15px 0 ;
  background-color: #EBEDF2;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 50px;
}
.mobileMenu .mobileMenuBox .mobileMenuInputBox .input {
  background-color: transparent;
  border: none;
  padding: 0;
  flex: 1;
  height: 50px;
  padding: 0 15px;
  outline: none;
}
.mobileMenu .mobileMenuBox .mobileMenuInputBox .input::placeholder,
.mobileMenu .mobileMenuBox .mobileMenuInputBox .input {
  color: #3271AE;
  font-size: 16px;
}
.mobileMenu .mobileMenuBox .mobileMenuInputBox .searchIcon {
  flex-shrink: 0;
  background-color: transparent;
  border: none;
  width: 60px;
  height: 50px;
  font-size: 24px;
  color: #3271AE;
}
.mobileMenu .mobileMenuBox .mmenu .mmenuItem {
  height: 70px;
  overflow: hidden;
  box-sizing: border-box;
  animation: 0.5s mobileMenuAniY;
}
.mobileMenu .mobileMenuBox .mmenu .mmenuItem .mmenuItemTitle {
  box-sizing: border-box;
  height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  color: #434343;
}
.mobileMenu .mobileMenuBox .mmenu .mmenuItem .mmenuItemTitle .mmenuItemIcon {
  font-size: 20px;
  transition: all 0.2s;
}
.mobileMenu .mobileMenuBox .mmenu .mmenuItem:hover > .mmenuItemTitle {
  color: #3271AE;
  cursor: pointer;
}
.mobileMenu .mobileMenuBox .mmenu .mmenuItem.on {
  height: auto;
  overflow: hidden;
}
.mobileMenu .mobileMenuBox .mmenu .mmenuItem.on > .mmenuItemTitle {
  color: #3271AE;
  border-bottom: 1px solid #3271AE;
}
.mobileMenu .mobileMenuBox .mmenu .mmenuItem.on > .mmenuItemTitle .mmenuItemText {
  font-weight: bold;
}
.mobileMenu .mobileMenuBox .mmenu .mmenuItem.on > .mmenuItemTitle .mmenuItemIcon {
  transform: rotate(180deg);
}
.mobileMenu .mobileMenuBox .mmenu .mmenuItem > .mmenu {
  margin-left: 20px;
  box-sizing: border-box;
}
.mobileMenu .mobileMenuBox .mmenu .mmenuItem > .mmenu .mmenuItemTitle {
  font-size: 16px;
}
.HomeSwiper .swiper-pagination {
  bottom: 55px;
}
.HomeSwiper .swiper-pagination .swiper-pagination-bullet {
  width: 53px;
  border-radius: 0;
  height: 5px;
}
.HomeSwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #3271AE;
}
.HomeSwiper,
.HomeSwiper .swiper {
  width: 100%;
  height: 100vh;
}
.HomeSwiper .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.HomeSwiper .swiper-slide .content {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  color: white;
  padding: 0 2%;
}
.HomeSwiper .swiper-slide .content .contentWrap {
  max-width: 722px;
}
.HomeSwiper .swiper-slide .content .contentTitle {
  font-size: 60px;
  font-weight: bold;
}
.HomeSwiper .swiper-slide .content .contentTitle1 {
  font-size: 38px;
  margin: 12px 0;
}
.HomeSwiper .swiper-slide .content .contentTitle2 {
  font-size: 16px;
}
.HomeSwiper .swiper-slide .content .contentBtn {
  margin-top: 60px;
  display: block;
  background-color: #3271AE;
  width: 248px;
  height: 64px;
  line-height: 64px;
  color: white;
  text-align: center;
}
.HomeSwiper .swiper-slide .content .contentBtn i {
  transition: all 0.3s;
  margin-left: 8px;
}
.HomeSwiper .swiper-slide .content .contentBtn:hover {
  background-color: #245280;
}
.HomeSwiper .swiper-slide .content .contentBtn:hover i {
  margin-left: 16px;
}
@media screen and (max-width: 1000px) {
  .HomeSwiper .swiper-slide .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .HomeSwiper .swiper-slide .content .contentBtn {
    margin-top: 40px;
    width: 200px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
  .HomeSwiper .swiper-slide .content .contentWrap {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .HomeSwiper .swiper-slide .content .contentTitle {
    font-size: 32px;
    font-weight: bold;
  }
  .HomeSwiper .swiper-slide .content .contentTitle1 {
    font-size: 21px;
    margin: 8px 0;
  }
  .HomeSwiper .swiper-slide .content .contentTitle2 {
    font-size: 12px;
  }
}
.footer {
  background-color: #0F2234;
  padding: 50px 70px;
}
@media screen and (max-width: 1030px) {
  .footer {
    padding: 30px 30px;
  }
}
@media screen and (max-width: 1600px) {
  .footer {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 1030px) {
  .footer {
    padding: 21px 0px;
  }
}
.footer .footerWrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 1030px) {
  .footer .footerWrap {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
  }
}
.footer .footerWrap .footerLeft {
  width: 48%;
  text-align: left;
}
.footer .footerWrap .footerLeft .logo {
  height: 60px;
  width: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 1030px) {
  .footer .footerWrap .footerLeft .logo {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1030px) {
  .footer .footerWrap .footerLeft .conteaddr,
  .footer .footerWrap .footerLeft .youqinglinks {
    display: none;
  }
  .footer .footerWrap .footerLeft .footerSubPhone {
    font-weight: bold;
    font-size: 18px;
    display: flex;
    flex-direction: column;
  }
}
.footer .footerWrap .footerLeft .footerSub {
  font-size: 14px;
  color: white;
  margin-bottom: 10px;
}
.footer .footerWrap .footerLeft .footerSub span {
  margin-right: 6px;
}
.footer .footerWrap .footerLeft .footerSub a {
  color: white;
  padding: 0 6px;
}
.footer .footerWrap .footerLeft .footerSub a:hover {
  color: #3271AE;
  text-decoration: underline;
}
.footer .footerWrap .footerLeft .footerSub a:after {
  content: " ";
  display: inline-block;
  height: 12px;
  background-color: white;
  width: 1px;
  margin-left: 12px;
}
.footer .footerWrap .footerLeft .footerSub a:last-child:after {
  display: none;
}
.footer .footerWrap .footerLeft .subcropright {
  font-size: 14px;
}
.footer .footerWrap .footerLeft .subcropright span {
  margin-right: 6px;
  color: #8FABC6;
}
.footer .footerWrap .footerLeft .subcropright a {
  color: #8FABC6;
}
.footer .footerWrap .footerLeft .subcropright a:hover {
  color: #3271AE;
  text-decoration: underline;
}
.footer .footerWrap .footerLeft .subcropright img {
  width: 14px;
  height: 14px;
}
.footer .footerWrap .footerRight {
  width: 48%;
}
.footer .footerWrap .footerRight .footerRightTitle {
  font-size: 16px;
  color: white;
  font-weight: bold;
}
.footer .footerWrap .footerRight .footerRightIcons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 36px 0;
  gap: 0 140px;
}
@media screen and (max-width: 1030px) {
  .footer .footerWrap .footerRight .footerRightIcons {
    justify-content: space-around;
  }
}
@media screen and (max-width: 1600px) {
  .footer .footerWrap .footerRight .footerRightIcons {
    gap: 0 100px;
  }
}
@media screen and (max-width: 1030px) {
  .footer .footerWrap .footerRight .footerRightIcons {
    gap: 0 10vw;
    margin: 20px 0;
  }
}
.footer .footerWrap .footerRight .footerRightIcons .footerRightIconsItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: white;
  position: relative;
}
.footer .footerWrap .footerRight .footerRightIcons .footerRightIconsItem i {
  font-size: 44px;
}
.footer .footerWrap .footerRight .footerRightIcons .footerRightIconsItem span {
  font-size: 14px;
  margin-top: 5px;
  text-align: center;
}
.footer .footerWrap .footerRight .footerRightIcons .footerRightIconsItem:after {
  content: " ";
  display: block;
  position: absolute;
  height: 60%;
  background-color: white;
  width: 1px;
  right: 0;
  opacity: 0.2;
  top: 20%;
  transform: translateX(70px);
}
.footer .footerWrap .footerRight .footerRightIcons .footerRightIconsItem:last-child:after {
  display: none;
}
.footer .footerWrap .footerRight .footerRightIcons .footerRightIconsItem:hover {
  color: #3271AE;
}
@media screen and (max-width: 640px) {
  .footer .footerWrap .footerRight .footerRightIcons .footerRightIconsItem i {
    font-size: 28px;
  }
  .footer .footerWrap .footerRight .footerRightIcons .footerRightIconsItem span {
    font-size: 12px;
  }
  .footer .footerWrap .footerRight .footerRightIcons .footerRightIconsItem:after {
    transform: translateX(5vw);
  }
}
.footer .footerWrap .footerRight .footerQrBar {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.footer .footerWrap .footerRight .footerQrBar .footerQrBarRight {
  margin-left: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 20px;
  cursor: pointer;
}
.footer .footerWrap .footerRight .footerQrBar .footerQrBarRight .footerRightIconIcon {
  width: 30px;
  height: 30px;
}
.footer .footerWrap .footerRight .footerQrBar .footerQrBarRight .footerRightIcon {
  position: relative;
}
.footer .footerWrap .footerRight .footerQrBar .footerQrBarRight .footerRightIcon .qrmenu {
  display: none;
  position: absolute;
  bottom: 0;
  z-index: 12;
  background-color: white;
  padding: 12px;
  transform: translateY(-40px) translateX(calc(-50% + 24px));
  text-align: center;
}
.footer .footerWrap .footerRight .footerQrBar .footerQrBarRight .footerRightIcon .qrmenu .qr {
  width: 150px;
  height: 150px;
}
.footer .footerWrap .footerRight .footerQrBar .footerQrBarRight .footerRightIcon:hover .qrmenu {
  display: block;
}
@media screen and (max-width: 1030px) {
  .footer .footerWrap .footerRight .footerQrBar {
    justify-content: space-between;
    padding: 12px 0;
    background-color: #132C44;
    margin-bottom: 15px;
  }
  .footer .footerWrap .footerRight .footerQrBar .footerRightTitle {
    padding-left: 0;
  }
  .footer .footerWrap .footerRight .footerQrBar .footerQrBarRight {
    padding-right: 15px;
  }
  .footer .footerWrap .footerRight .footerQrBar .footerQrBarRight .footerRightIcon:hover .qrmenu {
    display: block;
    padding: 12px;
    right: 0;
    transform: translateY(-40px) translateX(0);
  }
  .footer .footerWrap .footerRight .footerQrBar .footerRightTitle {
    margin-left: 15px;
  }
}
@media screen and (max-width: 1030px) {
  .footer .footerWrap .footerRight .footerRightTitle,
  .footer .footerWrap .footerRight .footerRightIcons {
    padding: 0 15px;
  }
}
@media screen and (max-width: 1030px) {
  .footer .footerWrap .footerLeft {
    padding: 0 15px;
  }
}
@media screen and (max-width: 1030px) {
  .footer .footerWrap .footerLeft,
  .footer .footerWrap .footerRight {
    width: auto;
  }
}
.HomeBody1 {
  background-color: #EAEDEF;
  width: 100%;
  position: relative;
  height: 100vh;
  min-height: 900px;
}
@media screen and (max-width: 1000px) {
  .HomeBody1 {
    height: 600px;
    min-height: 600px;
  }
}
.HomeBody1 .HomeBody1text {
  height: 40%;
  box-sizing: border-box;
  text-align: center;
  padding: 0 15px;
  color: #1A1A1A;
  padding-top: 84px;
}
@media screen and (max-width: 1000px) {
  .HomeBody1 .HomeBody1text {
    padding-top: 54px;
  }
}
.HomeBody1 .HomeBody1text .HomeBody1text-1 {
  font-size: 48px;
}
@media screen and (max-width: 1000px) {
  .HomeBody1 .HomeBody1text .HomeBody1text-1 {
    font-size: 28px;
  }
}
.HomeBody1 .HomeBody1text .HomeBody1text-2 {
  font-size: 24px;
  font-weight: lighter;
  text-transform: uppercase;
}
@media screen and (max-width: 1000px) {
  .HomeBody1 .HomeBody1text .HomeBody1text-2 {
    font-size: 18px;
  }
}
.HomeBody1 .HomeBody1textImg {
  width: 100%;
  height: 60%;
}
.HomeBody1 .HomeBody1textImg .HomeBody1img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.HomeBody1 .wrap {
  position: absolute;
  left: 0;
  bottom: 14%;
  width: 100%;
  box-sizing: border-box;
  padding: 0 15px;
}
.HomeBody1 .wrap .wrapBox {
  width: 100%;
  display: flex;
  flex-direction: row;
  overflow-y: hidden;
  overflow-x: auto;
  justify-content: center;
  gap: 0 20px;
}
.HomeBody1 .wrap .wrapBox::-webkit-scrollbar {
  height: 5px;
  background-color: rgba(0, 0, 0, 0.2);
}
.HomeBody1 .wrap .wrapBox::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.6);
}
@media screen and (min-width: 1800px) {
  .HomeBody1 .wrap .wrapBox {
    gap: 0 7vw;
  }
}
@media screen and (min-width: 1400px) and (max-width: 1800px) {
  .HomeBody1 .wrap .wrapBox {
    gap: 0 60px;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1399px) {
  .HomeBody1 .wrap .wrapBox {
    gap: 0 20px;
  }
}
@media screen and (max-width: 1000px) {
  .HomeBody1 .wrap .wrapBox {
    gap: 0 20px;
    flex-shrink: 0;
    justify-content: flex-start;
  }
}
.HomeBody1 .wrap .wrapBox .wrapBoxItem {
  background-color: white;
  width: 435px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1000px) {
  .HomeBody1 .wrap .wrapBox .wrapBoxItem {
    gap: 0 20px;
    flex-shrink: 0;
    width: 280px;
  }
}
.HomeBody1 .wrap .wrapBox .wrapBoxItem:nth-child(even) {
  flex-direction: column-reverse;
}
.HomeBody1 .wrap .wrapBox .wrapBoxItem .wrapBoxTop {
  padding: 50px;
  text-align: center;
  box-sizing: border-box;
}
.HomeBody1 .wrap .wrapBox .wrapBoxItem .wrapBoxTop .wrapBoxTopTitle {
  font-size: 28px;
  margin-bottom: 28px;
  color: #1A1A1A;
}
.HomeBody1 .wrap .wrapBox .wrapBoxItem .wrapBoxTop .wrapBoxTopSubBox {
  height: 148px;
}
.HomeBody1 .wrap .wrapBox .wrapBoxItem .wrapBoxTop .wrapBoxTopSub {
  font-size: 16px;
  color: #5A5A5A;
  line-height: 30px;
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 4;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
}
@media screen and (max-width: 1000px) {
  .HomeBody1 .wrap .wrapBox .wrapBoxItem .wrapBoxTop {
    padding: 30px;
  }
  .HomeBody1 .wrap .wrapBox .wrapBoxItem .wrapBoxTop .wrapBoxTopTitle {
    font-size: 21px;
    margin-bottom: 20px;
  }
  .HomeBody1 .wrap .wrapBox .wrapBoxItem .wrapBoxTop .wrapBoxTopSubBox {
    height: 100px;
  }
  .HomeBody1 .wrap .wrapBox .wrapBoxItem .wrapBoxTop .wrapBoxTopSub {
    font-size: 14px;
    line-height: 20px;
    text-overflow: ellipsis;
    width: 100%;
    /* 限制容器宽度 */
    display: -webkit-box;
    /* 设置为 WebKit 内核的弹性盒子模型 */
    -webkit-box-orient: vertical;
    /* 垂直排列 */
    -webkit-line-clamp: 3;
    /* 限制显示两行 */
    overflow: hidden;
    /* 隐藏超出范围的内容 */
  }
}
.HomeBody1 .wrap .wrapBox .wrapBoxItem .wrapBoxBottom {
  height: 241px;
  width: 100%;
  overflow: hidden;
}
.HomeBody1 .wrap .wrapBox .wrapBoxItem .wrapBoxBottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
@media screen and (max-width: 1000px) {
  .HomeBody1 .wrap .wrapBox .wrapBoxItem .wrapBoxBottom {
    height: 150px;
  }
}
.HomeBody1 .wrap .wrapBox .wrapBoxItem:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.HomeBody1 .wrap .wrapBox .wrapBoxItem:hover .wrapBoxBottom img {
  transform: scale(1.1);
}
.HomeSwiperListBox {
  width: 100%;
  min-height: 600px;
  height: 100vh;
  position: relative;
}
.HomeSwiperListBox .swiper,
.HomeSwiperListBox .swiper-wrapper,
.HomeSwiperListBox .swiper-slide {
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .HomeSwiperListBox {
    height: 600px;
  }
}
.HomeSwiperListBox .swiper-slide {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.5s;
  width: 384px;
}
.HomeSwiperListBox .swiper-slide .wrap {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 150px 60px;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.5s;
}
.HomeSwiperListBox .swiper-slide .wrap .wrapTitle {
  color: white;
  font-size: 32px;
  height: 96px;
}
.HomeSwiperListBox .swiper-slide .wrap .wrapLine {
  width: 100px;
  height: 1px;
  background-color: white;
  margin: 36px 0;
}
.HomeSwiperListBox .swiper-slide .wrap .wrapSub {
  color: white;
  font-size: 14px;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(100%);
}
.HomeSwiperListBox .swiper-slide .wrap .wrapBtn {
  transition: all 0.3s;
  transform: translateY(100%) scale(0);
  opacity: 0;
  margin-top: 100px;
  width: 66px;
  height: 66px;
  background-color: white;
  color: #3271AE;
  border-radius: 50%;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.HomeSwiperListBox .swiper-slide .wrap .wrapBtn:hover {
  background-color: #3271AE;
  color: white;
}
@media screen and (max-width: 1000px) {
  .HomeSwiperListBox .swiper-slide .wrap {
    padding: 45px 20px;
  }
  .HomeSwiperListBox .swiper-slide .wrap .wrapTitle {
    font-size: 20px;
  }
  .HomeSwiperListBox .swiper-slide .wrap .wrapLine {
    margin: 22px 0;
  }
  .HomeSwiperListBox .swiper-slide .wrap .wrapBtn {
    width: 50px;
    height: 50px;
    margin-top: 50px;
    font-size: 20px;
  }
}
.HomeSwiperListBox .swiper-slide:hover,
.HomeSwiperListBox .swiper-slide:active {
  background-size: 120% 120%;
}
.HomeSwiperListBox .swiper-slide:hover .wrap,
.HomeSwiperListBox .swiper-slide:active .wrap {
  background-color: rgba(0, 0, 0, 0.4);
}
.HomeSwiperListBox .swiper-slide:hover .wrap .wrapSub,
.HomeSwiperListBox .swiper-slide:active .wrap .wrapSub,
.HomeSwiperListBox .swiper-slide:hover .wrap .wrapBtn,
.HomeSwiperListBox .swiper-slide:active .wrap .wrapBtn {
  opacity: 1;
  transform: translateY(0%) scale(1);
}
.HomeSwiperListBox .actions {
  width: 100%;
  box-sizing: border-box;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  z-index: 80;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  pointer-events: none;
}
.HomeSwiperListBox .actions .actionsItem {
  pointer-events: all;
  width: 64px;
  height: 64px;
  background-color: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
}
.HomeSwiperListBox .actions .actionsItem:hover {
  background-color: #3271AE;
  color: white;
}
.HomeNews {
  box-sizing: border-box;
  padding: 93px 72px;
}
@media screen and (max-width: 1000px) {
  .HomeNews {
    padding: 40px 15px;
  }
}
@media screen and (min-width: 1021px) and (max-width: 1800px) {
  .HomeNews {
    padding: 40px 36px;
  }
}
.HomeNews .moreBtn {
  background-color: #3271AE;
  color: white;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 36px;
  transition: all 0.3s;
}
.HomeNews .moreBtn i {
  transition: all 0.3s;
  margin-left: 0px;
}
.HomeNews .moreBtn:hover {
  background-color: #245280;
}
.HomeNews .moreBtn:hover i {
  margin-left: 12px;
}
.HomeNews .HomeNewsHeader {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .HomeNews .HomeNewsHeader {
    flex-direction: column;
    align-items: flex-start;
  }
}
.HomeNews .HomeNewsHeader .HomeNewsLeft {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.HomeNews .HomeNewsHeader .HomeNewsLeft .moreBtn {
  display: none;
}
.HomeNews .HomeNewsHeader .HomeNewsLeft .wrapsub {
  font-size: 21px;
  font-weight: bold;
}
.HomeNews .HomeNewsHeader .HomeNewsLeft .wraptitle {
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .HomeNews .HomeNewsHeader .HomeNewsLeft {
    width: 100%;
  }
  .HomeNews .HomeNewsHeader .HomeNewsLeft .wrapsub {
    font-size: 12px;
  }
  .HomeNews .HomeNewsHeader .HomeNewsLeft .wraptitle {
    font-size: 24px;
  }
  .HomeNews .HomeNewsHeader .HomeNewsLeft .moreBtn {
    display: flex;
  }
}
.HomeNews .HomeNewsHeader .HomeNewsRight {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .HomeNews .HomeNewsHeader .HomeNewsRight {
    justify-content: flex-start;
    margin-top: 20px;
    border-bottom: 1px solid #EBEDF2;
    padding-bottom: 20px;
    width: 100%;
  }
  .HomeNews .HomeNewsHeader .HomeNewsRight .moreBtn {
    display: none;
  }
}
.HomeNews .HomeNewsHeader .HomeNewsRight .wrap {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
  gap: 0 37px;
  margin-right: 37px;
}
.HomeNews .HomeNewsHeader .HomeNewsRight .wrap .item {
  font-size: 18px;
}
.HomeNews .HomeNewsHeader .HomeNewsRight .wrap .item:hover,
.HomeNews .HomeNewsHeader .HomeNewsRight .wrap .item.on {
  color: #3271AE;
  font-weight: bold;
  cursor: pointer;
}
.HomeNews .HomeNewsContent {
  margin-top: 70px;
  display: none;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 60px;
}
.HomeNews .HomeNewsContent.on {
  display: flex;
}
@media screen and (min-width: 1021px) and (max-width: 1800px) {
  .HomeNews .HomeNewsContent {
    gap: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .HomeNews .HomeNewsContent {
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
  }
}
.HomeNews .HomeNewsContent .item {
  width: calc(25%);
}
.HomeNews .HomeNewsContent .item .titleBox {
  min-height: 58px;
}
.HomeNews .HomeNewsContent .item .titleBox .title {
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 2;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
  font-size: 18px;
  color: #1A1A1A;
}
.HomeNews .HomeNewsContent .item .linear {
  width: 34px;
  height: 1px;
  background-color: #1A1A1A;
  margin: 34px 0;
}
.HomeNews .HomeNewsContent .item .imgbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.HomeNews .HomeNewsContent .item .imgbox img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.HomeNews .HomeNewsContent .item .subbox {
  min-height: 38px;
  margin-top: 22px;
}
.HomeNews .HomeNewsContent .item .subbox .sub {
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 2;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
  font-size: 12px;
  color: #242D36;
}
.HomeNews .HomeNewsContent .item .ftime {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  font-size: 12px;
  color: #ABABAB;
}
.HomeNews .HomeNewsContent .item .ftime:hover {
  color: #3271AE;
}
.HomeNews .HomeNewsContent .item:hover .imgbox img {
  transform: scale(1.2);
}
.HomeNews .HomeNewsContent .item:hover .titleBox .title {
  color: #3271AE;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .HomeNews .HomeNewsContent .item {
    width: 100%;
    border-bottom: 1px solid #EBEDF2;
    padding-bottom: 30px;
  }
  .HomeNews .HomeNewsContent .item:last-child {
    border-bottom: none;
  }
  .HomeNews .HomeNewsContent .item .titleBox .title {
    font-size: 18px;
    font-weight: bold;
  }
  .HomeNews .HomeNewsContent .item .linear {
    margin-top: 10px;
  }
  .HomeNews .HomeNewsContent .item .subbox .sub {
    font-size: 14px;
  }
}
.ChildrenPageTopBanner {
  background-size: cover;
  background-position: center;
  transition: height 0.3s;
  height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ChildrenPageTopBanner .ChildrenPageTopBannerContent {
  padding: 0 15px;
  text-align: center;
}
.ChildrenPageTopBanner .ChildrenPageTopBannerContent .WrapTitle {
  font-size: 48px;
  color: #fff;
}
.ChildrenPageTopBanner .ChildrenPageTopBannerContent .WrapTitleSub {
  color: #fff;
  font-size: 21px;
  text-transform: uppercase;
  margin-top: 5px;
}
@media screen and (max-width: 1000px) {
  .ChildrenPageTopBanner {
    height: 250px;
  }
  .ChildrenPageTopBanner .ChildrenPageTopBannerContent .WrapTitle {
    font-size: 26px;
  }
  .ChildrenPageTopBanner .ChildrenPageTopBannerContent .WrapTitleSub {
    font-size: 14px;
  }
}
.conteaddr1300 {
  width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 15px;
}
.conteaddr1300 .wrap {
  width: 100%;
  max-width: 1300px;
  box-sizing: border-box;
}
.ContactUsCard {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 30px 0;
}
.ContactUsCard .CardContact {
  color: #1A1A1A;
  box-sizing: border-box;
  padding: 40px;
  min-height: 285px;
  background-color: white;
  width: 50%;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}
.ContactUsCard .CardContact .title {
  font-size: 21px;
  font-weight: bold;
}
.ContactUsCard .CardContact .sub {
  font-size: 16px;
  padding: 10px 0;
}
.ContactUsCard .CardContact .phone {
  font-size: 24px;
  color: #1A1A1A;
  font-weight: bold;
  margin-top: 20px;
  display: block;
}
.ContactUsCard .CardContact .phone:hover {
  color: #3271AE;
}
.ContactUsCard .CardContact:hover {
  background-color: #3271AE;
  color: white;
}
.ContactUsCard .CardContact:hover .phone {
  color: white;
}
@media screen and (max-width: 1000px) {
  .ContactUsCard {
    flex-direction: column;
  }
  .ContactUsCard .CardContact {
    width: auto;
    padding: 20px;
    min-height: auto;
  }
  .ContactUsCard .CardContact .title {
    font-size: 18px;
  }
  .ContactUsCard .CardContact .sub {
    font-size: 14px;
    padding: 5px 0;
  }
  .ContactUsCard .CardContact .phone {
    font-size: 21px;
    margin-top: 10px;
  }
}
.ContactMap {
  height: 500px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .ContactMap {
    height: 250px;
    margin-bottom: 20px;
  }
}
.NavbarMenuBox {
  border-bottom: 1px solid #EBEDF2;
}
.NavbarMenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  height: 60px;
  overflow-x: auto;
}
.NavbarMenu::-webkit-scrollbar {
  height: 5px;
  background-color: rgba(0, 0, 0, 0.2);
}
.NavbarMenu::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.6);
}
.NavbarMenu .menuLeft {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  height: 100%;
}
.NavbarMenu .menuLeft .menuLeftItem {
  padding: 0 54px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: #1A1A1A;
  font-size: 16px;
  position: relative;
  font-weight: bold;
  flex-shrink: 0;
}
.NavbarMenu .menuLeft .menuLeftItem.menuLeftItemBack {
  justify-content: flex-start;
  padding: 0;
}
.NavbarMenu .menuLeft .menuLeftItem.menuLeftItemBack span {
  padding-left: 8px;
}
.NavbarMenu .menuLeft .menuLeftItem.on,
.NavbarMenu .menuLeft .menuLeftItem:hover {
  background-color: #3271AE;
  color: white;
  font-weight: bold;
}
.NavbarMenu .menuLeft .menuLeftItem.on.menuLeftItemBack,
.NavbarMenu .menuLeft .menuLeftItem:hover.menuLeftItemBack {
  color: #3271AE;
  background-color: transparent;
}
.NavbarMenu .menuRight .menuNavlinks,
.NavbarMenu .menuRight .menuNavlinks a {
  color: #8E8E8E;
  font-size: 12px;
}
.NavbarMenu .menuRight .menuNavlinks a:hover {
  color: #3271AE;
}
@media screen and (max-width: 1000px) {
  .NavbarMenu .menuLeft .menuLeftItem {
    padding: 0 20px;
    font-size: 14px;
  }
  .NavbarMenu .menuRight {
    display: none;
  }
}
.AboutCompanyProfile-1 {
  display: flex;
  margin-top: 50px;
  margin-bottom: 50px;
  flex-direction: row;
  justify-content: space-between;
}
.AboutCompanyProfile-1 .Left {
  display: flex;
  flex-direction: column;
  margin-right: 50px;
}
.AboutCompanyProfile-1 .Left .LeftLogo {
  height: 73px;
  width: auto;
}
.AboutCompanyProfile-1 .Left .content {
  overflow-y: auto;
  height: 320px;
  margin-top: 20px;
  color: #434343;
  font-size: 16px;
  line-height: 38px;
}
.AboutCompanyProfile-1 .Left .content::-webkit-scrollbar {
  width: 5px;
  background-color: rgba(0, 0, 0, 0.2);
}
.AboutCompanyProfile-1 .Left .content::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.6);
}
.AboutCompanyProfile-1 .Rgiht {
  height: 420px;
  width: 40%;
  max-width: 550px;
  flex-shrink: 0;
  overflow: hidden;
}
.AboutCompanyProfile-1 .Rgiht img {
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.AboutCompanyProfile-1 .Rgiht img:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 1000px) {
  .AboutCompanyProfile-1 {
    margin-top: 30px;
    margin-bottom: 15px;
    flex-direction: column;
  }
  .AboutCompanyProfile-1 .Left {
    margin-right: 0px;
  }
  .AboutCompanyProfile-1 .Left .LeftImgBox {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
  .AboutCompanyProfile-1 .Left .LeftImgBox .content {
    font-size: 14px;
    line-height: 28px;
  }
  .AboutCompanyProfile-1 .Left .LeftImgBox .LeftLogo {
    height: 45px;
  }
  .AboutCompanyProfile-1 .Rgiht {
    width: 100%;
    max-width: inherit;
    margin-top: 35px;
    height: 230px;
  }
}
.AboutCompanyProfile-2 .content {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 650px;
  margin-bottom: 30px;
  padding: 0 7.3%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.AboutCompanyProfile-2 .content .text {
  box-sizing: border-box;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: rgba(50, 113, 174, 0.94);
  color: white;
  max-width: 640px;
}
.AboutCompanyProfile-2 .content .text .title {
  font-size: 31px;
  margin-bottom: 30px;
}
.AboutCompanyProfile-2 .content .text .sub {
  height: 190px;
  overflow-y: auto;
  font-size: 17px;
  line-height: 32px;
}
.AboutCompanyProfile-2 .content .text .sub::-webkit-scrollbar {
  width: 5px;
  background-color: rgba(0, 0, 0, 0.2);
}
.AboutCompanyProfile-2 .content .text .sub::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 1000px) {
  .AboutCompanyProfile-2 .content {
    height: 250px;
    margin-bottom: 15px;
  }
  .AboutCompanyProfile-2 .content .text {
    padding: 15px;
  }
  .AboutCompanyProfile-2 .content .text .title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .AboutCompanyProfile-2 .content .text .sub {
    height: 119.5px;
    overflow-y: auto;
    font-size: 13px;
    line-height: 26px;
  }
  .AboutCompanyProfile-2 .content .text .sub::-webkit-scrollbar {
    width: 5px;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .AboutCompanyProfile-2 .content .text .sub::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
.AboutCompanyProfile-3 .content {
  align-items: flex-end;
}
.AboutCompanyProfile-3 .content .text {
  background-color: rgba(0, 0, 0, 0.47);
}
.AboutCompanyPartners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 30px 0;
}
.AboutCompanyPartners .item {
  background-color: white;
  border: 1px solid #EBEDF2;
  padding: 30px;
  position: relative;
  height: 260px;
  box-sizing: border-box;
  overflow: hidden;
}
.AboutCompanyPartners .item .headerTop {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.AboutCompanyPartners .item .headerTop img {
  height: 59px;
  transition: all 0.3s;
}
.AboutCompanyPartners .item .headerTop .actions {
  font-size: 18px;
  background-color: #EBEDF2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #3271AE;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
}
.AboutCompanyPartners .item .showContent {
  color: #1A1A1A;
  height: 100px;
  margin-top: 30px;
  opacity: 1;
  transform: scale(1);
  transform-origin: 0 0;
  transition: all 0.3s;
}
.AboutCompanyPartners .item .showContent .title {
  font-size: 18px;
  margin-bottom: 8px;
}
.AboutCompanyPartners .item .showContent .sub {
  font-size: 14px;
  color: #636363;
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 2;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
}
.AboutCompanyPartners .item .showContentWrap {
  font-size: 14px;
  line-height: 28px;
  background-color: white;
  overflow-y: auto;
  margin-top: 15px;
  height: 0px;
  padding: 0 30px;
  position: absolute;
  box-sizing: border-box;
  top: 500px;
  left: 0px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  color: #636363;
}
.AboutCompanyPartners .item .showContentWrap::-webkit-scrollbar {
  width: 5px;
  background-color: rgba(0, 0, 0, 0.2);
}
.AboutCompanyPartners .item .showContentWrap::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.6);
}
.AboutCompanyPartners .item:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.AboutCompanyPartners .item:hover .headerTop .actions {
  background-color: #3271AE;
  color: white;
}
.AboutCompanyPartners .item.on {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.AboutCompanyPartners .item.on .headerTop img {
  width: auto;
  height: 27px;
}
.AboutCompanyPartners .item.on .headerTop .actions {
  transform: rotate(225deg);
  background-color: #3271AE;
  color: white;
}
.AboutCompanyPartners .item.on .showContent {
  opacity: 0;
  pointer-events: none;
  height: 0px;
}
.AboutCompanyPartners .item.on .showContentWrap {
  height: 160px;
  opacity: 1;
  top: 67px;
  pointer-events: all;
}
@media screen and (max-width: 1000px) {
  .AboutCompanyPartners {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin: 15px 0;
  }
  .AboutCompanyPartners .item {
    height: 200px;
    padding: 15px;
  }
  .AboutCompanyPartners .item .headerTop img {
    height: 36px;
  }
  .AboutCompanyPartners .item .showContent {
    margin-top: 15px;
  }
  .AboutCompanyPartners .item .showContentWrap {
    padding: 0 15px;
  }
  .AboutCompanyPartners .item.on .headerTop img {
    height: 36px;
  }
  .AboutCompanyPartners .item.on .showContentWrap {
    height: 115px;
    top: 47px;
  }
}
.AboutCompanyTalent-1 {
  padding: 30px;
  margin-top: 30px;
  background-color: #EBEDF2;
}
.AboutCompanyTalent-1 .title,
.AboutCompanyTalent-1 .sub {
  color: #434343;
}
.AboutCompanyTalent-1 .title {
  font-size: 31px;
  display: block;
  margin-bottom: 15px;
}
.AboutCompanyTalent-1 .sub {
  font-size: 14px;
  line-height: 24px;
}
@media screen and (max-width: 1000px) {
  .AboutCompanyTalent-1 {
    padding: 15px;
    margin-top: 15px;
  }
  .AboutCompanyTalent-1 .title {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: bold;
  }
  .AboutCompanyTalent-1 .sub {
    font-size: 13px;
    line-height: 22px;
  }
}
.AboutCompanyTalent-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.AboutCompanyTalent-2 .item {
  height: 437px;
}
.AboutCompanyTalent-2 .item .headerTop {
  height: 289px;
  width: 100%;
  overflow: hidden;
}
.AboutCompanyTalent-2 .item .headerTop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.AboutCompanyTalent-2 .item .title {
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 1;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
  font-size: 18px;
  color: #1A1A1A;
  margin-top: 24px;
  margin-bottom: 10px;
}
.AboutCompanyTalent-2 .item .subtitle {
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 2;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
  color: #5A5A5A;
  font-size: 14px;
}
.AboutCompanyTalent-2 .item:hover .headerTop img {
  transform: scale(1.1);
}
@media screen and (max-width: 1000px) {
  .AboutCompanyTalent-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 15px;
  }
  .AboutCompanyTalent-2 .item {
    height: 320px;
  }
  .AboutCompanyTalent-2 .item .headerTop {
    height: 240px;
  }
  .AboutCompanyTalent-2 .item .title {
    margin-top: 12px;
    margin-bottom: 5px;
    font-size: 16px;
  }
  .AboutCompanyTalent-2 .item .subtitle {
    font-size: 12px;
  }
}
.AboutCompanyTalent-3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 24px 0;
}
.AboutCompanyTalent-3 .title {
  font-weight: bold;
  font-size: 24px;
  color: #434343;
}
.AboutCompanyTalent-3 .btn {
  background-color: #3271AE;
  padding: 12px 18px;
  color: white;
  border-radius: 56px;
  font-size: 14px;
  transition: background-color 0.3s;
}
.AboutCompanyTalent-3 .btn i {
  transition: all 0.3s;
}
.AboutCompanyTalent-3 .btn:hover {
  background-color: #275786;
}
.AboutCompanyTalent-3 .btn:hover i {
  margin-left: 8px;
}
@media screen and (max-width: 1000px) {
  .AboutCompanyTalent-3 {
    padding: 16px 0;
  }
  .AboutCompanyTalent-3 .title {
    font-size: 18px;
  }
  .AboutCompanyTalent-3 .btn {
    padding: 8px 18px;
    font-size: 12px;
  }
}
.AboutCompanyTalent-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
.AboutCompanyTalent-4 .item .imgBox {
  height: 200px;
  overflow: hidden;
}
.AboutCompanyTalent-4 .item .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.AboutCompanyTalent-4 .item .itemBottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  font-size: 18px;
}
.AboutCompanyTalent-4 .item .itemBottom .title {
  flex: 1;
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 1;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
  color: #1A1A1A;
}
.AboutCompanyTalent-4 .item .itemBottom .linksicon {
  color: #3271AE;
  flex-shrink: 0;
  margin-left: 20px;
}
.AboutCompanyTalent-4 .item:hover .imgBox img {
  transform: scale(1.1);
}
@media screen and (max-width: 1000px) {
  .AboutCompanyTalent-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px  8px ;
    margin-bottom: 15px;
  }
  .AboutCompanyTalent-4 .item .imgBox {
    height: 148px;
    overflow: hidden;
  }
  .AboutCompanyTalent-4 .item .itemBottom {
    font-size: 14px;
    margin-top: 15px;
  }
}
.AboutCompanyTeamActivities {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 30px 0;
}
.AboutCompanyTeamActivities .item {
  display: flex;
  flex-direction: row;
}
.AboutCompanyTeamActivities .item .left {
  width: 450px;
  height: 293px;
  flex-shrink: 0;
  overflow: hidden;
}
.AboutCompanyTeamActivities .item .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.AboutCompanyTeamActivities .item .right {
  flex: 1;
  margin-left: 30px;
}
.AboutCompanyTeamActivities .item .right .title {
  font-size: 30px;
  color: #1A1A1A;
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 2;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
}
.AboutCompanyTeamActivities .item .right .sub {
  margin-top: 20px;
  font-size: 16px;
  color: #636363;
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 3;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
}
.AboutCompanyTeamActivities .item .right .more {
  margin-top: 28px;
  font-size: 14px;
  color: #1A1A1A;
  cursor: pointer;
}
.AboutCompanyTeamActivities .item .right .more i {
  transition: all 0.3s;
}
.AboutCompanyTeamActivities .item .right .more:hover {
  color: #3271AE;
}
.AboutCompanyTeamActivities .item .right .more:hover i {
  margin-left: 8px;
}
.AboutCompanyTeamActivities .item:hover .left img {
  transform: scale(1.1);
}
.AboutCompanyTeamActivities .item:hover .right .title {
  color: #3271AE;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .AboutCompanyTeamActivities {
    gap: 24px;
    margin: 15px 0;
  }
  .AboutCompanyTeamActivities .item {
    padding-bottom: 24px;
    border-bottom: 1px solid #EBEDF2;
  }
  .AboutCompanyTeamActivities .item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .AboutCompanyTeamActivities .item .left {
    width: 139px;
    height: 91px;
  }
  .AboutCompanyTeamActivities .item .right {
    margin-left: 11px;
  }
  .AboutCompanyTeamActivities .item .right .title {
    font-size: 18px;
    line-height: 22px;
    text-overflow: ellipsis;
    width: 100%;
    /* 限制容器宽度 */
    display: -webkit-box;
    /* 设置为 WebKit 内核的弹性盒子模型 */
    -webkit-box-orient: vertical;
    /* 垂直排列 */
    -webkit-line-clamp: 3;
    /* 限制显示两行 */
    overflow: hidden;
    /* 隐藏超出范围的内容 */
  }
  .AboutCompanyTeamActivities .item .right .sub {
    display: none;
  }
  .AboutCompanyTeamActivities .item .right .more {
    margin-top: 8px;
    font-size: 12px;
  }
}
.Pagination {
  margin: 30px 0;
}
.Pagination,
.Pagination .PaginationNumbers {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.Pagination .PaginationNumbers .item {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #EBEDF2;
  font-size: 12px;
  color: #434343;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.Pagination .PaginationNumbers .item:hover,
.Pagination .PaginationNumbers .item.on {
  background-color: #3271AE;
  color: white;
}
.Pagination .left,
.Pagination .right {
  background-color: #EBEDF2;
  font-size: 14px;
  color: #434343;
  padding: 6px 17px;
  border-radius: 36px;
  text-align: center;
}
.Pagination .left:hover,
.Pagination .right:hover {
  background-color: #3271AE;
  color: white;
}
@media screen and (max-width: 1000px) {
  .Pagination .PaginationNumbers {
    display: none;
  }
  .Pagination .left,
  .Pagination .right {
    flex: 1;
    padding: 8px 17px;
  }
}
.AboutCompanyTeamActivitiesDetail {
  color: #1A1A1A;
}
.AboutCompanyTeamActivitiesDetail .headerTop {
  margin: 30px 0;
}
.AboutCompanyTeamActivitiesDetail .headerTop .title {
  font-size: 36px;
  font-weight: bold;
}
.AboutCompanyTeamActivitiesDetail .headerTop .cataro {
  font-size: 14px;
  display: flex;
  flex-direction: row;
  gap: 0 20px;
  margin: 18px 0;
  padding-bottom: 18px;
  border-bottom: 1px solid #EBEDF2;
}
.AboutCompanyTeamActivitiesDetail .headerTop .cataro a {
  color: #1A1A1A;
}
.AboutCompanyTeamActivitiesDetail .headerTop .cataro a:hover {
  color: #3271AE;
}
.AboutCompanyTeamActivitiesDetail .content {
  font-size: 18px;
  line-height: 36px;
}
.AboutCompanyTeamActivitiesDetail .content img {
  margin: 0 auto;
  text-align: center;
  vertical-align: center;
  max-width: 100%;
}
.AboutCompanyTeamActivitiesDetail .bottomContent {
  margin-top: 45px;
  margin-bottom: 45px;
  padding-top: 45px;
  border-top: 1px solid #EBEDF2;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.AboutCompanyTeamActivitiesDetail .bottomContent a {
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 1;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
  color: #1A1A1A;
}
.AboutCompanyTeamActivitiesDetail .bottomContent a:hover {
  color: #3271AE;
}
@media screen and (max-width: 1000px) {
  .AboutCompanyTeamActivitiesDetail .headerTop {
    margin: 15px 0;
  }
  .AboutCompanyTeamActivitiesDetail .headerTop .title {
    font-size: 24px;
  }
  .AboutCompanyTeamActivitiesDetail .headerTop .cataro {
    font-size: 14px;
    display: block;
    gap: 0 5px;
    margin: 15px 0;
    padding-bottom: 15px;
  }
  .AboutCompanyTeamActivitiesDetail .headerTop .cataro span,
  .AboutCompanyTeamActivitiesDetail .headerTop .cataro a {
    margin-right: 5px;
  }
  .AboutCompanyTeamActivitiesDetail .content {
    font-size: 18px;
    line-height: 36px;
  }
  .AboutCompanyTeamActivitiesDetail .bottomContent {
    margin-top: 28px;
    margin-bottom: 28px;
    padding-top: 28px;
    gap: 15px;
    font-size: 18px;
    flex-direction: column;
  }
}
.NewsList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 30px 0;
}
.NewsList .item .left {
  width: 100%;
  max-width: 302px;
  height: 185px;
  flex-shrink: 0;
  overflow: hidden;
}
.NewsList .item .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.NewsList .item .right {
  flex: 1;
  margin-top: 24px;
}
.NewsList .item .right .titleBox {
  height: 65px;
}
.NewsList .item .right .titme {
  font-size: 14px;
  color: #1A1A1A;
  margin-bottom: 5px;
}
.NewsList .item .right .title {
  font-size: 18px;
  color: #1A1A1A;
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 2;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
}
.NewsList .item .right .subBox {
  height: 100px;
}
.NewsList .item .right .sub {
  margin-top: 5px;
  font-size: 14px;
  color: #636363;
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 3;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
  line-height: 20px;
}
.NewsList .item:hover .left img {
  transform: scale(1.1);
}
.NewsList .item:hover .right .title {
  color: #3271AE;
  font-weight: bold;
}
@media screen and (min-width: 750px) and (max-width: 1000px) {
  .NewsList .item .left {
    width: 100%;
    height: 305px !important;
    max-width: none;
  }
}
@media screen and (max-width: 1000px) {
  .NewsList {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px 15px;
    margin: 24px 0;
  }
  .NewsList .item {
    padding-bottom: 24px;
    border-bottom: 1px solid #EBEDF2;
    margin-bottom: 24px;
  }
  .NewsList .item .left {
    width: 100%;
    height: 185px;
    max-width: none;
  }
  .NewsList .item .right .subBox {
    height: 74px;
  }
}
.NewsSwiper {
  margin-top: 30px;
}
.NewsSwiper .swiper-slide,
.NewsSwiper .swiper-wrapper,
.NewsSwiper {
  height: 500px;
}
.NewsSwiper .swiper .swiper-pagination-box {
  position: absolute;
  right: -30px;
  width: 634px;
}
.NewsSwiper .swiper .swiper-pagination {
  bottom: 100px;
  text-align: left;
  right: 600px;
}
.NewsSwiper .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 53px !important;
  height: 4px;
  border-radius: 0px;
}
.NewsSwiper .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #3271AE;
}
.NewsSwiper .content {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.NewsSwiper .contentImgBox {
  width: 100%;
  height: 100%;
  max-width: 765px;
}
.NewsSwiper .contentImgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.NewsSwiper .contentWrap {
  position: absolute;
  width: 634px;
  right: 0;
  background-color: white;
  box-sizing: border-box;
  height: 411px;
  padding: 30px;
  color: #1A1A1A;
}
.NewsSwiper .contentText1 .year {
  font-size: 32px;
}
.NewsSwiper .contentText1 .date {
  font-size: 14px;
}
.NewsSwiper .contentText2 {
  font-size: 31px;
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 2;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
  margin-top: 20px;
  margin-bottom: 30px;
  font-weight: bold;
}
.NewsSwiper .contentText3 {
  font-size: 14px;
  color: #636363;
  line-height: 24px;
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 3;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
}
@media screen and (max-width: 1000px) {
  .NewsSwiper {
    margin-top: 15px;
  }
  .NewsSwiper .swiper-slide,
  .NewsSwiper .swiper-wrapper,
  .NewsSwiper {
    height: auto;
  }
  .NewsSwiper .swiper .swiper-pagination-box {
    right: 0px;
    width: 100%;
  }
  .NewsSwiper .swiper .swiper-pagination {
    bottom: 0px;
    text-align: center;
    right: 0px;
  }
  .NewsSwiper .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 53px !important;
    height: 4px;
  }
  .NewsSwiper .content {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  .NewsSwiper .contentImgBox {
    max-height: 350px;
  }
  .NewsSwiper .contentWrap {
    position: static;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
    height: auto;
  }
  .NewsSwiper .contentText1 .year {
    font-size: 20px;
  }
  .NewsSwiper .contentText1 .date {
    font-size: 12px;
  }
  .NewsSwiper .contentText2 {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.TrainingList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 30px 0;
}
.TrainingList .item .left {
  width: 100%;
  color: #1A1A1A;
  font-size: 21px;
}
.TrainingList .item .left i {
  color: #3271AE;
  transition: all 0.3s;
}
.TrainingList .item .left:hover i {
  margin-left: 8px;
}
.TrainingList .item .right {
  flex: 1;
  margin-top: 24px;
}
.TrainingList .item .right .subBox {
  height: 160px;
  overflow: hidden;
}
.TrainingList .item .right .sub {
  margin-top: 5px;
  font-size: 14px;
  color: #636363;
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 6;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
  line-height: 24px;
}
.TrainingList .item:hover .right .sub {
  color: #3271AE;
}
@media screen and (max-width: 1000px) {
  .TrainingList {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px 15px;
    margin: 24px 0;
  }
  .TrainingList .item {
    padding-bottom: 24px;
    border-bottom: 1px solid #EBEDF2;
    margin-bottom: 24px;
  }
  .TrainingList .item .right {
    margin-top: 16px;
  }
  .TrainingList .item .right .subBox .sub {
    font-size: 15px;
  }
}
.TrainingCatgo {
  padding: 0 0;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.TrainingCatgo .item {
  padding: 14px 34px;
  color: #8E8E8E;
  font-size: 14px;
  border-radius: 36px;
  border: 1px solid #EBEDF2;
}
.TrainingCatgo .item:hover,
.TrainingCatgo .item.on {
  background-color: #3271AE;
  color: white;
  border-color: #3271AE;
}
@media screen and (max-width: 1000px) {
  .TrainingCatgo {
    margin-top: 15px;
    gap: 10px 10px;
  }
  .TrainingCatgo .item {
    padding: 7px 16px;
    color: #8E8E8E;
    font-size: 12px;
    border-radius: 36px;
    border: 1px solid #EBEDF2;
  }
  .TrainingCatgo .item:hover,
  .TrainingCatgo .item.on {
    background-color: #3271AE;
    color: white;
    border-color: #3271AE;
  }
}
.EmptyList {
  min-height: 500px;
  font-size: 31px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.EmptyList .content img {
  width: 300px;
}
@media screen and (max-width: 1000px) {
  .EmptyList {
    font-size: 20px;
    height: 250px;
  }
  .EmptyList .content img {
    width: 80%;
  }
}
.TrainingDonwload {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 30px 0;
}
.TrainingDonwload .item {
  border: 1px solid #EBEDF2;
  padding: 24px;
  height: 110px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.TrainingDonwload .item .title {
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 2;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
  font-size: 18px;
  color: #1A1A1A;
}
.TrainingDonwload .item .subtitle {
  font-size: 14px;
  color: #3271AE;
}
.TrainingDonwload .item .subtitle span {
  margin-right: 10px;
}
.TrainingDonwload .item:hover .title {
  color: #3271AE;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .TrainingDonwload {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin: 15px 0;
  }
  .TrainingDonwload .item {
    padding: 15px;
    height: auto;
  }
  .TrainingDonwload .item .title {
    height: auto;
    text-overflow: ellipsis;
    width: 100%;
    /* 限制容器宽度 */
    display: -webkit-box;
    /* 设置为 WebKit 内核的弹性盒子模型 */
    -webkit-box-orient: vertical;
    /* 垂直排列 */
    -webkit-line-clamp: 3;
    /* 限制显示两行 */
    overflow: hidden;
    /* 隐藏超出范围的内容 */
  }
  .TrainingDonwload .item .subtitle {
    margin-top: 15px;
  }
}
.TalentDevelopment-1 {
  padding: 30px;
  margin-top: 30px;
  background-color: #EBEDF2;
  display: flex;
  flex-direction: row;
  align-items: center;
  box-sizing: border-box;
}
.TalentDevelopment-1 .box {
  flex: 1;
  box-sizing: border-box;
}
.TalentDevelopment-1 .title,
.TalentDevelopment-1 .sub {
  color: #434343;
}
.TalentDevelopment-1 .title {
  font-size: 21px;
  display: block;
  margin-bottom: 15px;
  font-weight: bold;
}
.TalentDevelopment-1 .sub {
  font-size: 14px;
  line-height: 24px;
}
.TalentDevelopment-1 .actions {
  flex-shrink: 0;
  margin-left: 30px;
  background-color: #3271AE;
  color: white;
  border-radius: 64px;
  padding: 14px 30px;
  font-size: 16px;
}
.TalentDevelopment-1 .actions:hover {
  background-color: #275786;
}
@media screen and (max-width: 1000px) {
  .TalentDevelopment-1 {
    padding: 15px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: normal;
  }
  .TalentDevelopment-1 .title {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: bold;
  }
  .TalentDevelopment-1 .sub {
    font-size: 13px;
    line-height: 22px;
  }
  .TalentDevelopment-1 .actions {
    padding: 14px 0;
    box-sizing: border-box;
    text-align: center;
    margin-left: 0;
    margin-top: 20px;
  }
}
.TalentDevelopment {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 30px 0;
}
.TalentDevelopment .item .imgBox {
  height: 274px;
  overflow: hidden;
}
.TalentDevelopment .item .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.TalentDevelopment .item .itemBottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  font-size: 18px;
}
.TalentDevelopment .item .itemBottom .title {
  flex: 1;
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 1;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
  color: #1A1A1A;
}
.TalentDevelopment .item .itemBottom .linksicon {
  color: #3271AE;
  flex-shrink: 0;
  margin-left: 20px;
}
.TalentDevelopment .item:hover .imgBox img {
  transform: scale(1.1);
}
@media screen and (max-width: 1000px) {
  .TalentDevelopment {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px  8px ;
    margin: 15px 0;
  }
  .TalentDevelopment .item .imgBox {
    height: 148px;
    overflow: hidden;
  }
  .TalentDevelopment .item .itemBottom {
    font-size: 14px;
    margin-top: 15px;
  }
}
.TalentDevelopmentPlan .content {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 650px;
  margin-bottom: 30px;
  margin-top: 30px;
  padding: 0 7.3%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.TalentDevelopmentPlan .content .text {
  box-sizing: border-box;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: rgba(50, 113, 174, 0.94);
  color: white;
  max-width: 640px;
}
.TalentDevelopmentPlan .content .text .title {
  font-size: 31px;
  margin-bottom: 30px;
}
.TalentDevelopmentPlan .content .text .sub {
  height: 190px;
  overflow-y: auto;
  font-size: 17px;
  line-height: 32px;
}
.TalentDevelopmentPlan .content .text .sub::-webkit-scrollbar {
  width: 5px;
  background-color: rgba(0, 0, 0, 0.2);
}
.TalentDevelopmentPlan .content .text .sub::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 1000px) {
  .TalentDevelopmentPlan .content {
    height: 250px;
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .TalentDevelopmentPlan .content .text {
    padding: 15px;
  }
  .TalentDevelopmentPlan .content .text .title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .TalentDevelopmentPlan .content .text .sub {
    height: 119.5px;
    overflow-y: auto;
    font-size: 13px;
    line-height: 26px;
  }
  .TalentDevelopmentPlan .content .text .sub::-webkit-scrollbar {
    width: 5px;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .TalentDevelopmentPlan .content .text .sub::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
.TeamCulture {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 30px 0;
  box-sizing: border-box;
  overflow: hidden;
}
.TeamCulture .item {
  position: relative;
  height: 333px;
  overflow: hidden;
}
.TeamCulture .item .TeamCultureImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.TeamCulture .item .text {
  box-sizing: border-box;
  padding: 24px;
  background-color: rgba(50, 113, 174, 0.8);
  backdrop-filter: blur(10px);
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  color: white;
}
.TeamCulture .item .text .title {
  font-size: 16px;
}
.TeamCulture .item .text .time {
  font-size: 12px;
  margin-top: 4px;
}
.TeamCulture .item .text:hover {
  font-weight: bold;
  text-decoration: underline;
}
.TeamCulture .item:hover .TeamCultureImg {
  transform: scale(1.1);
}
@media screen and (max-width: 1000px) {
  .TeamCulture {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin: 15px 0;
  }
}
.TalentDevelopmentHr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 30px 0;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .TalentDevelopmentHr {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin: 15px 0;
  }
}
.HrItem {
  box-sizing: border-box;
  padding: 24px;
  height: 300px;
  color: #1A1A1A;
  border: 1px solid #EBEDF2;
}
.HrItem.slider {
  height: auto;
  padding: 0;
  border: none;
  border-bottom: 1px solid #EBEDF2;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.HrItem.slider:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.HrItem .title {
  font-size: 24px;
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 1;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
}
.HrItem .subtitle {
  font-size: 16px;
  margin: 16px 0;
}
.HrItem .proBox {
  height: 95px;
}
.HrItem .pro {
  font-size: 14px;
  color: #636363;
  line-height: 24px;
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 3;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
}
.HrItem .actions {
  font-size: 16px;
  display: inline-flex;
  color: #434343;
  background-color: #EBEDF2;
  border-radius: 64px;
  padding: 14px 44px;
  margin-top: 35px;
}
.HrItem .actions:hover {
  background-color: #3271AE;
  color: white;
}
@media screen and (max-width: 1000px) {
  .HrItem {
    padding: 16px;
    height: auto;
  }
  .HrItem .title {
    font-size: 20px;
  }
  .HrItem .subtitle {
    font-size: 16px;
    margin: 8px 0;
  }
  .HrItem .proBox {
    height: auto;
  }
  .HrItem .actions {
    font-size: 14px;
    border-radius: 64px;
    padding: 12px 24px;
    margin-top: 16px;
  }
}
.HDRBOX {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.HDRBOX .ChildrenPageTopBannerContentHdr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 0 15px;
  width: 100%;
  max-width: 1300px;
}
.HDRBOX .ChildrenPageTopBannerContentHdr .title {
  font-size: 48px;
  color: white;
}
.HDRBOX .ChildrenPageTopBannerContentHdr .subtitle {
  font-size: 16px;
  color: white;
  margin-top: 10px;
  text-align: left;
  max-width: 588px;
}
.HDRBOX .ChildrenPageTopBannerContentHdr .actions {
  font-size: 16px;
  display: inline-flex;
  background-color: #3271AE;
  color: white;
  border-radius: 64px;
  padding: 14px 44px;
  margin-top: 35px;
}
.HDRBOX .ChildrenPageTopBannerContentHdr .actions:hover {
  background-color: #275786;
}
@media screen and (max-width: 1000px) {
  .HDRBOX .ChildrenPageTopBannerContentHdr {
    padding-top: 50px;
  }
  .HDRBOX .ChildrenPageTopBannerContentHdr .title {
    font-size: 18px;
  }
  .HDRBOX .ChildrenPageTopBannerContentHdr .subtitle {
    font-size: 14px;
    margin-top: 5px;
  }
  .HDRBOX .ChildrenPageTopBannerContentHdr .actions {
    font-size: 14px;
    border-radius: 64px;
    padding: 12px 24px;
    margin-top: 16px;
  }
}
.TalentDevelopmentHrDetail {
  display: flex;
  flex-direction: row;
  margin: 30px 0;
}
@media screen and (max-width: 1000px) {
  .TalentDevelopmentHrDetail {
    margin: 15px 0;
    flex-direction: column;
  }
}
.TalentDevelopmentHrDetail .left {
  flex: 1;
}
.TalentDevelopmentHrDetail .left .bottomContent {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.TalentDevelopmentHrDetail .left .bottomContent a {
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 1;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
  color: #1A1A1A;
}
.TalentDevelopmentHrDetail .left .bottomContent a:hover {
  color: #3271AE;
}
@media screen and (max-width: 1000px) {
  .TalentDevelopmentHrDetail .left .bottomContent {
    gap: 15px;
    flex-direction: column;
  }
}
.TalentDevelopmentHrDetail .left .content {
  margin: 30px 0;
  font-size: 16px;
  color: #434343;
  line-height: 35px;
}
.TalentDevelopmentHrDetail .left .content img {
  max-width: 100%;
}
.TalentDevelopmentHrDetail .left .actions {
  font-size: 16px;
  display: inline-flex;
  background-color: #3271AE;
  color: white;
  border-radius: 64px;
  padding: 14px 44px;
  margin-top: 35px;
}
.TalentDevelopmentHrDetail .left .actions:hover {
  background-color: #275786;
}
@media screen and (max-width: 1000px) {
  .TalentDevelopmentHrDetail .left {
    margin-bottom: 30px;
  }
  .TalentDevelopmentHrDetail .left .actions {
    font-size: 14px;
    border-radius: 64px;
    padding: 12px 0;
    text-align: center;
    margin-top: 16px;
    width: 100%;
    display: block;
  }
}
.TalentDevelopmentHrDetail .right {
  flex-shrink: 0;
  margin-left: 30px;
  width: 430px;
  box-sizing: border-box;
  padding: 30px;
  border: 1px solid #EBEDF2;
}
.TalentDevelopmentHrDetail .right .sliderTitle {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #1A1A1A;
}
@media screen and (max-width: 1000px) {
  .TalentDevelopmentHrDetail .right {
    margin-left: 0;
    padding: 15px;
    width: auto;
  }
  .TalentDevelopmentHrDetail .right .sliderTitle {
    font-size: 21px;
    margin-bottom: 15px;
  }
}
.formItem .formItemTitle {
  font-size: 18px;
  font-weight: bold;
  color: #1A1A1A;
}
.formItem .formItemSubTitle {
  font-size: 12px;
  color: #8E8E8E;
}
.formItem .formItemInput {
  margin: 20px 0;
  display: block;
  padding: 0 20px;
  box-sizing: border-box;
  border: 1px solid #C4C4C4;
  position: relative;
}
.formItem .formItemInput .filelist {
  min-height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: flex-start;
  color: #8E8E8E;
  font-size: 16px;
}
.formItem .formItemInput .filelist.on {
  color: #3271AE;
}
.formItem .formItemInput .input,
.formItem .formItemInput .select {
  border: none;
  height: 44px;
  width: 100%;
  box-sizing: border-box;
  color: #3271AE;
  font-size: 16px;
}
.formItem .formItemInput .input::placeholder,
.formItem .formItemInput .select::placeholder {
  color: #8E8E8E;
  font-size: 16px;
}
.formItem .formItemInput .input:focus,
.formItem .formItemInput .select:focus {
  outline: none;
}
.formItem .formItemInput .select {
  display: flex;
  align-items: center;
  color: #8E8E8E;
}
.formItem .formItemInput .select.on {
  color: #3271AE;
}
.formItem .formItemInput:hover {
  border: 1px solid #3271AE;
}
.formItem .actionsButtonSubmit {
  font-size: 16px;
  display: inline-flex;
  background-color: #3271AE;
  color: white;
  border-radius: 64px;
  padding: 14px 44px;
  margin-top: 35px;
  border: none;
  outline: none;
  cursor: pointer;
}
.formItem .actionsButtonSubmit:hover {
  background-color: #275786;
}
@media screen and (max-width: 1000px) {
  .formItem .actionsButtonSubmit {
    width: 100%;
    padding: 14px 0;
    text-align: center;
    display: block;
  }
}
.dailog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-items: center;
  flex-direction: row;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 920;
}
.dailog.on {
  display: flex;
}
.dailog .wrap {
  background-color: white;
  width: 96%;
  max-width: 450px;
  box-sizing: border-box;
  padding: 30px;
}
.dailog .wrap .title {
  font-size: 20px;
  text-align: center;
  padding: 15px 0;
}
.dailog .wrap .content {
  font-size: 16px;
  color: #1A1A1A;
  text-align: center;
  line-height: 30px;
}
.dailog .wrap .actions {
  font-size: 16px;
  background-color: #3271AE;
  color: white;
  border-radius: 64px;
  padding: 14px 0px;
  margin-top: 35px;
  display: block;
  text-align: center;
  border: none;
  outline: none;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.dailog .wrap .actions:hover {
  background-color: #275786;
}
.slectedListBox {
  position: relative;
}
.selectlist {
  width: 100%;
  margin-left: -20px;
  z-index: 50;
  position: absolute;
  display: block;
  box-sizing: border-box;
  border: 1px solid #3271AE;
  height: 0;
  min-height: 0;
  overflow-y: hidden;
  display: none;
  background-color: white;
}
.selectlist.on {
  height: 250px;
  overflow-y: auto;
  display: block;
}
.selectlist .group .groupTitle {
  padding: 15px;
  font-size: 16px;
  user-select: none;
}
.selectlist .group .groupTitle i {
  display: inline-block;
  transition: all 0.3s;
}
.selectlist .group .groupTitle:hover {
  color: #3271AE;
  cursor: pointer;
}
.selectlist .group .groupTitle.on i {
  transform: rotate(90deg);
}
.selectlist .group .groupMenu {
  height: 0;
  overflow: hidden;
}
.selectlist .group .groupMenu .groupMenuWrap .groupItem {
  padding: 15px 0;
  box-sizing: border-box;
  text-overflow: ellipsis;
  width: 100%;
  /* 限制容器宽度 */
  display: -webkit-box;
  /* 设置为 WebKit 内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 1;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
  padding-left: 30px;
  font-size: 15px;
  user-select: none;
}
.selectlist .group .groupMenu .groupMenuWrap .groupItem:hover {
  color: #3271AE;
  font-weight: bold;
  cursor: pointer;
}
.selectlist .group.on .groupTitle i {
  transform: rotate(90deg);
}
.selectlist .group.on .groupMenu {
  height: auto;
}
/*# sourceMappingURL=index.css.map */