* {
  margin: 0;
  padding: 0;
  font-family: "Microsoft Yahei", arial, "Hiragino Sans GB", 宋体, sans-serif;
}
.teltxt { color: #076ce0 !important;}
@media screen and (max-width: 1025px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 1026px) {
  .sp-only {
    display: none !important;
  }
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

:root {
  --primary-color: #193D87;
  --btn-color: #2C5DBC;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
}

.notyf__icon{
  display: none !important;
}
.notyf__dismiss-btn{
  opacity: 1 !important;
}

.btn {
  background-color: var(--btn-color);
  color: white;
  font-size: 16px;
  padding: 10px 22px;
  border-radius: 4px;
  width: fit-content;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-out;
  width: 0;
  height: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.4);
  content: "";
  z-index: 4;
}

.btn:hover::after {
  animation: btnAnimation 0.8s ease-in-out forwards;
}

@keyframes btnAnimation {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    width: 160px;
    height: 160px;
    opacity: 0;
  }
}

.submit-btn { width: 266px;}

header {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  z-index: 999;
}

header .pc-header {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ffffff9e;
  padding: 10px 0;
  margin-top: 20px;
}

header .pc-header .logo img,
header .pc-header .logo svg {
  height: 72px;
  width: auto;
}

header .pc-header ul {
  display: flex;
  gap: 15px;
}

header .pc-header ul li a {
  color: #ffffffb0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  width: 110px;
}

header .pc-header ul li a::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  bottom: -29px;
  width: 0%;
  height: 5px;
  background-color: transparent;
  content: "";
}

header .pc-header ul li a div {
  transition: all 0.3s ease;
}

header .pc-header ul li a div:first-child {
  font-size: 18px;
  position: relative;
  top: 0;
}

header .pc-header ul li a div:last-child {
  font-size: 12px;
  position: relative;
  top: 0;
}

header .pc-header ul li a:hover {
  color: #FFF;
}

header .pc-header ul li a:hover::after {
  width: 100%;
  background-image: linear-gradient(to right, #105db4, #2182f1);
}

header .pc-header ul li a:hover div:first-child {
  top: 22px;
}

header .pc-header ul li a:hover div:last-child {
  top: -22px;
}

header .pc-header ul .active a {
  color: #FFF;
}

header .pc-header ul .active a::after {
  background-color: #076ce0;
  width: 100%;
}

header .sp-header {
  display: flex;
  justify-content: space-between;
}

header ul {
  list-style: none;
}


@media screen and (max-width: 1400px) {
  header .pc-header {
    /*max-width: 90vw;*/
  }

  header .pc-header ul {
    gap: 20px;
  }
}


footer {
  background-image: url("/guang/images/footer.jpg");
  background-size: cover;
  padding: 40px 0 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

footer .copyright {
  font-size: 14px;
  color: white;
  text-align: center;
}

footer .copyright a {
  color: white;
}

footer .footer {
  max-width: 1200px;
  width: 90vw;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}


.grey-btn {
  background-color: #f6f6f6;
  color: #333;
}


.share-btn {
  background-color: #f6f6f6;
  color: #333;
  font-size:0px !important;
  gap:0px;
  
}
.share-btn img{ width:15px}

footer .footer .foot_logo {
  width: 24%;
  margin: 0 30px 0 0;
}

footer .footer .foot_logo img {
  width: 65%;
  margin: 10px 0;
  display: block;cursor: pointer;
}

.footer .menu_bu,
.menu_en,
.menu_tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  font-weight: 400;
}

footer .footer .menu_bu {
  width: 20%;
}

footer .footer .menu_bu span {
  margin: 0 0 12px 0;
  font-weight: normal;
  font-size: 18px;
  color: #fff;
}

footer .footer .menu_bu a {
  margin: 5px 0;
  font-size: 16px;
  color: #ffffffb8;
}

footer .footer .menu_bu a:hover {
  color: #fff;
}

footer .footer .menu_en {
  width: 20%;
}

footer .footer .menu_en span {
  margin: 0 0 12px 0;
  font-weight: normal;
  font-size: 18px;
}

footer .footer .menu_en i {
  font-size: 12px;
  color: #ffffffb8;
  font-style: normal;
}

footer .footer .menu_en a {
  margin: 5px 0;
  font-size: 16px;
  color: #ffffffb8;
}

footer .footer .menu_en a:hover {
  color: #fff;
}

footer .footer .menu_tel {
  width: 24%;
  border-left: #ffffff26 1px solid;
  padding: 0 0 0 30px;
}

footer .footer .menu_tel span {
  font-size: 18px;
  font-weight: normal;
  color: #fff;
}

footer .footer .menu_tel i {
  font-style: normal;
  margin: 5px 0 8px 0;
  font-size: 16px;
  color: #ffffffb8;
  cursor: pointer;
}

footer .footer .menu_tel i:hover {
  color: #fff;
}


@media screen and (max-width: 768px) {
  footer .footer {
    display: none !important;
  }
}

@media screen and (max-width:900px) {

  footer .footer .menu_bu span,
  footer .footer .menu_en span,
  footer .footer .menu_tel span {
    font-size: 15px;
  }

  footer .footer .menu_bu a,
  footer .footer .menu_en a,
  footer .footer .menu_tel i {
    font-size: 15px;
  }
}


footer .footer .menu {
  display: flex;
  gap: 14px;
  font-size: 16px;
  color: #FFF;
  height: 30px;
}

footer .footer .menu a,
footer .footer .menu span {
  color: #fff;
  white-space: nowrap;
  margin: 0 15px 0 0;
}

footer .footer .menu a:hover,
footer .footer .menu span:hover {
  opacity: 0.7;
}

footer .left {
  display: flex;
  float: left;

}

footer .left .qrcode {
  width: 100px;
  margin-top: 30px;
}

footer .left .qrcode img {
  width: 100%;
}



footer .cta {
  color: white;
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  float: right;
}

footer .cta .logo {
  width: 175px;
}

footer .cta .logo img {
  width: 100%;
}

footer .cta a {
  color: white !important;
}

footer .cta .sub-title {
  padding: 1px 0 12px 0;
  border-bottom: 1px solid #FFF;
  font-size: 14px;
}

footer .cta .mobile-info {
  padding-top: 0px;
  display: flex;
  align-items: flex-end;
  font-size: 28px;
  white-space: nowrap;
}

footer .cta .mobile-info span {
  font-size: 14px;
  margin-left: 10px;
  margin-bottom: 4px;
}

footer .cta .contact-info {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding-top: 15px;
}

footer .cta .contact-info .contact-item {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  white-space: nowrap;
  position: relative;
}

footer .cta .contact-info .contact-item svg {
  width: 40px;
  height: 40px;
}

footer .cta .contact-info .contact-item .qrcode-show {
  position: absolute;
  bottom: 110%;
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  z-index: 4;
}

footer .cta .contact-info .contact-item .qrcode-show img {
  width: 120px;
}

footer .cta .contact-info .first-item {
  margin-right: 20px;
}

footer .cta .contact-info span {
  font-size: 12px;
  white-space: nowrap;
}

footer .footer .address {
  font-size: 14px;
  color: #FFF;
  margin-top: 50px;
  padding: 0 0 0 22px;
  background: url("/guang/images/foot_addicon.png");
  background-repeat: no-repeat;
}

.kv {
  width: 100%;
  background-size: cover;
  height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kv .container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

@media screen and (max-width: 1400px) {
  .kv .container {
    max-width: 90vw;
  }
}

.kv .container h2 {
  font-size: 38px;
  color: #FFF;
  text-indent: 100px;
  position: relative;
  width: fit-content;
}

.kv .container h4 {
  margin-top: 10px;
  font-size: 16px;
  color: #CCC;
  font-weight: normal;
}

.kv .english-title {
  font-size: 38px;
  font-style: italic;
  color: #FFF;
  opacity: 0.7;
  font-weight: normal;
  position: relative;
  width: fit-content;
  font-weight: lighter;
  letter-spacing: 2px;
}

.kv .english-title::after {
  position: absolute;
  right: -28px;
  height: 50px;
  width: 1px;
  background-color: white;
  opacity: 0.7;
  content: "";
  top: -5px;
  z-index: 22;
  transform: rotateZ(45deg);
}

.kv .english-title::before {
  position: absolute;
  left: 80px;
  height: 50px;
  width: 1px;
  background-color: white;
  opacity: 0.7;
  content: "";
  top: 102%;
  z-index: 22;
  transform: rotateZ(45deg);
}

.kv h2 {
  font-size: 38px;
  color: #FFF;
}

.kv h4 {
  margin-top: 10px;
  font-size: 16px;
  color: #CCC;
  font-weight: normal;
}

@media screen and (max-width: 1025px) {
  .kv {
    height: 50vh;
  }

  .kv .container {
    padding: 0 20px;
    max-width: 70vw;
    justify-content: flex-start;
    margin: 0 0 0 10px;
  }

  .kv .container h2 {
    font-size: 22px;
  }

  .kv .container h4 {
    font-size: 14px;
  }

  .page-kv {
    padding-top: 5vh;
    height: 33vh;
    min-height: 34vw;
    background-position: right;
  }

  .page-kv .container h2 {
    text-indent: 50px;
  }

  .page-kv .container .english-title {
    font-size: 24px;
    white-space: nowrap;
  }

  .page-kv .container .english-title::after {
    top: 3px;
    height: 30px;
    right: -10px;
    transform: rotateZ(30deg);
  }

  .page-kv .container .english-title::before {
    top: 102%;
    height: 30px;
    left: 40px;
    transform: rotateZ(30deg);
  }
}

.multi-intro-group {
  max-width: 1300px;
  margin: 50px auto 150px auto;
}

@media screen and (max-width: 1400px) {
  .multi-intro-group {
    max-width: 90vw;
  }
}

.multi-intro-group .group-menu {
  width: calc(100%);
  /*width: calc(100% - 100px);*/
  border-bottom: 1px solid #CCC;
  display: flex;
  margin-bottom: 40px;
  padding: 0px;
  justify-content: space-around;
}

.multi-intro-group .group-menu .menu-item {
  font-size: 22px;
  color: #888;
  padding: 20px 30px;
  border-bottom: 4px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.multi-intro-group .group-menu .left-item {
  margin-right: 0;
  margin-left: 0;
}

.multi-intro-group .group-menu .right-item {
  margin-left: auto;
  margin-right: 0;
}

.multi-intro-group .group-menu .active {
  color: var(--primary-color);
  border-bottom: 4px solid var(--primary-color);
}

.multi-intro-group .intro-group {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 0;
}

@media screen and (max-width: 1000px) {
  .multi-intro-group .intro-group {
    width: 90vw;
    margin:30px auto;
  }
}

.multi-intro-group .intro-group .intro-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.multi-intro-group .intro-group .intro-item .info {
  width: 45vw;
  max-width: 600px;
}

.multi-intro-group .intro-group .intro-item .info .title {
  font-weight: normal;
  font-size: 22px;
}

.multi-intro-group .intro-group .intro-item .info .description {
  font-size: 16px;
  color: #666;
  line-height: 30px;
  margin: 20px 0 20px 0;
}

.multi-intro-group .intro-group .intro-item .info .description p {
  text-indent: 2em;
  text-align: justify;
}

.multi-intro-group .intro-group .intro-item .intro-image {
  /*max-width: 36vw;*/
  width: 45vw;
  max-width: 600px;
}

.multi-intro-group .intro-group .intro-item .intro-image img {
  /*max-width: 36vw;*/
  width: 45vw;
  max-width: 600px;
  height: 410px;
  object-fit: cover;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
  transition: all .3s ease-in-out;
}

@media screen and (max-width: 1210px) {
  .multi-intro-group .intro-group .intro-item .intro-image .intro-image-item {
    aspect-ratio: 600/410;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
  }

  .multi-intro-group .intro-group .intro-item .intro-image img {
    /*max-width: 36vw;*/
    width: 100%;
    max-width: 600px;
    height: 100%;
    object-fit: contain;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
  }

}

.multi-intro-group .intro-group .intro-item .intro-image .intro-image-item {
  position: relative;
}

.multi-intro-group .intro-group .intro-item .intro-image .scale-btn {
  position: absolute;
  content: '';
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.2);
  right: 30px;
  top: 30px;
  z-index: 33;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0;

  pointer-events: none;
}

.multi-intro-group .intro-group .intro-item .intro-image .scale-btn:hover {
  transform: scale(1.2);
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 1;
}

.multi-intro-group .intro-group .intro-item .intro-image img:hover {
  /* transform: scale(1.03); */
}

.multi-intro-group .intro-group .intro-item .intro-image:hover .scale-btn {
  opacity: 1;
}

.multi-intro-group .intro-group .intro-item:nth-child(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 960px) {
  .multi-intro-group {
    max-width: 90vw;
    margin: 10px auto 30px auto;
    padding: 20px 0 50px 0;
  }

  .multi-intro-group .group-menu {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0;
    overflow-x: scroll;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .multi-intro-group .group-menu::-webkit-scrollbar {
    display: none;
  }

  .multi-intro-group .group-menu .menu-item {
    font-size: 16px;
    padding: 10px 10px;
    white-space: nowrap;
  }

  .multi-intro-group .group-menu .active {
    border-bottom: 2px solid var(--primary-color);
  }

  .multi-intro-group .intro-group {
    gap: 50px;
    padding: 0 0;
  }

  .multi-intro-group .intro-group .intro-item {
    gap: 5px;
    flex-direction: column;
    padding-bottom: 20px;
  }

  .multi-intro-group .intro-group .intro-item .info {
    width: 100%;
    max-width: 90vw;
  }

  .multi-intro-group .intro-group .intro-item .info .title {
    font-size: 20px;
  }

  .multi-intro-group .intro-group .intro-item .info .description {
    font-size: 16px;
    margin: 10px 0 20px 0;
  }

  .multi-intro-group .intro-group .intro-item .intro-image {
    max-width: 80vw;
    width: 80vw;
  }

  .multi-intro-group .intro-group .intro-item .intro-image img {
    max-width: 80vw;
    width: 80vw;
    height: 53vw;
    object-fit: cover;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .multi-intro-group .intro-group .intro-item:nth-child(even) {
    flex-direction: column;
  }
}

@media screen and (max-width: 1025px) {
  header .sp-header {
    background-color: white;
    position: fixed;
    right: 0;
    top: 0;
    width: calc(100% - 20px);
    height: 50px;
    z-index: 99;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    padding: 10px;
    align-items: center;
  }

  header .sp-header .logo {
    height: 50px;
  }

  header .sp-header .logo img {
    height: 50px;
    width: auto;
  }

  header .sp-header .menu-btn {
    height: 30px;
  }

  header .sp-header .menu-btn svg path {
    transition: all 0.3s ease;
    fill: var(--primary-color);
    position: relative;
  }

  header .sp-header .menu-btn-active svg path:first-child {
    transform: rotateZ(45deg) translate(9px, -12px);
  }

  header .sp-header .menu-btn-active svg path:nth-child(2) {
    opacity: 0;
  }

  header .sp-header .menu-btn-active svg path:last-child {
    transform: rotateZ(-45deg) translate(-25px, -4px);
  }

  header .sp-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    z-index: 59;
  }

  header .sp-menu ul {
    margin-top: 70px;
    list-style: none;
    display: flex;
    flex-direction: column;
  }

  header .sp-menu ul li a {
    color: #666;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #CCC;
    position: relative;
  }

  header .sp-menu ul .active a {
    color: var(--primary-color);
  }

  header .sp-menu ul .active a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: var(--primary-color);
    content: "";
  }

  footer {
    padding: 20px 0;
    gap: 30px;
  }

  footer .footer .left .menu {
    gap: 4px;
  }

  footer .footer .left .address {
    margin-top: 20px;
  }

  footer .footer .cta .sub-title {
    padding: 1px 0 12px 0;
    border-bottom: 1px solid #FFF;
    font-size: 14px;
  }

  footer .footer .cta .mobile-info {
    padding-top: 15px;
    font-size: 22px;
  }

  footer .footer .cta .mobile-info span {
    font-size: 12px;
    margin-left: 10px;
    margin-bottom: 4px;
  }

  footer .footer .cta .contact-info {
    gap: 10px;
    padding-top: 12px;
  }

  footer .footer .cta .contact-info .contact-item svg {
    width: 30px;
    height: 30px;
  }

  footer .footer .cta .contact-info .first-item {
    margin-right: 10px;
  }

  footer .footer .cta .contact-info span {
    font-size: 12px;
    white-space: nowrap;
  }


}


@media screen and (max-width: 768px) {

  .page-kv .container .english-title {
    font-size: 18px;
  }

  .page-kv .container h2 {
    font-size: 25px;
  }

  .kv .container .bottom-shine {
    left: -18%;
  }

  .page-kv .container .english-title::after {
    right: -6px;
  }

  .page-kv .container .english-title::before {
    top: 110%;
    left: 45px;
  }

  .kv .container .bottom-shine {
    width: 250px !important;
  }


  footer .footer {
    padding: 30px;
    flex-direction: column;
    gap: 30px;
  }
}

@media screen and (max-width: 468px) {

  .head-title h2 {
    font-size: 20px;
  }
}

.image-section {
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100vw;
  height: 100vh;
  z-index: 55;
  display: none;
}

.image-section .image-container {
  width: 100%;
  height: 100%;
  max-width: 50vw;
  max-height: 80vh;
  left: 50%;
  top: 50%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 8;
}

.image-section .close-btn {
  position: absolute;
  right: 40px;
  top: 20px;
  cursor: pointer;
  z-index: 9;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.image-section .close-btn:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 1025px) {
  .image-section .image-container {
    max-width: 80vw;
    max-height: 60vh;
  }

  .image-section .close-btn {
    right: 24px;
    top: 93px;
  }
}

nav {
  position: fixed;
  right: 0;
  bottom: 150px;
  z-index: 10;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  padding: 0 5px;
  background-color: var(--btn-color);
}

nav ul li {
  padding: 10px 5px 7px 5px;
  border-bottom: 1px dashed #CCC;
  cursor: pointer;
  position: relative;
}

nav ul li svg {
  width: 26px;
  height: 26px;
}

nav ul li:last-child {
  border-bottom: none;
}

nav ul li .nav-show {
  transition: all 0.3s ease-in-out;
  position: absolute;
  right: -200px;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  background-color: white;
  z-index: 11;
  width: 180px;
  padding-left: 10px;
  border-radius: 5px;
  gap: 8px;
  border: 1px solid var(--btn-color);
  color: var(--btn-color);
}

nav ul li .nav-show svg {
  color: var(--btn-color);
}

nav ul li .nav-show svg path {
  color: var(--btn-color);
}

nav ul li .nav-show .nav-detail {
  position: absolute;
  padding: 14px 10px;
  right: 110%;
  background-color: white;
  border-radius: 5px;
  padding: 10px 15px;
  gap: 5px;
  z-index: 12;
  width: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: #333;
}

nav ul li .nav-show .nav-detail img {
  width: 120px;
}

nav ul li .nav-show .phone-detail {
  align-items: flex-start;
}

nav ul li .nav-show .phone-detail div:first-child {
  color: #666;
}

nav ul li .nav-show .hide {
  display: none;
}

nav ul li:hover .nav-show {
  right: -10px;
}

.detail-image-show {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
}

.detail-image-show img {
  max-width: 80vw;
  max-height: 80vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}

.detail-image-show .close-btn {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
  z-index: 9999;
  transform: scale(1);

}

.detail-image-show .close-btn:hover {
  transform: scale(1.2);
}

.scale-show {
  transform: translate(-50%, -50%) scale(1) !important;
}




body {
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 0 !important;
}




.common-detail-container {
  position: relative;
}

.common-detail-container .detail-head {
  margin-bottom: 30px;
}

.common-detail-container .detail-head h2 {
  font-weight: normal;
}

.common-detail-container .back-btn {
  position: absolute;
  right: 0;
  top: 0;
}

.common-detail-container .head-menu {
  margin: 50px 0 0 0;
  background-color: #EFF2F6;
  padding: 20px 30px 0 30px;
}

.common-detail-container .head-menu ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f2f2f2;
}

.common-detail-container .back-btn {
  background-color: #7aa4c3;
  color: white;
}

@media screen and (max-width: 900px) {
  .common-detail-container .head-menu ul {
    overflow-x: scroll;
    overflow-y: hidden;
  }
}

.common-detail-container .head-menu ul li a {
  color: #888;
  padding-bottom: 20px;
  white-space: nowrap;
}


.common-detail-container .head-menu ul li.active a {
  color: #076ce0;
  border-bottom: 3px solid #076ce0;
}

.common-detail-container .detail-content {
  font-size: 18px;
  color: #333;
  line-height: 36px;
  text-align: justify;
}

.common-detail-container .m-content {
  background-color: white;
  padding: 30px 30px;
}

.text-limit-tips {
  position: relative;
  width: fit-content;
  font-size: 12px;
  margin-left: auto;
  color: #888;
  margin-right: 20px;
  top: -40px;
}

.hide {
  display: none;
}


.job-detail .container .back-btn {
  background-color: #7aa4c3;
}

.detail-content table {
  border-collapse: collapse;
  margin: 10px auto
}

.detail-content table tbody {}

.detail-content table tr {}

.detail-content table td {
  border: 1px #ccc solid;
}


.service_item {
  width: 80%;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px #ebebeb dashed;
  padding: 0 0 20px 0;
  margin: 5px 0 20px 0;
  flex-direction: column;
  gap: 20px;
}

.service_item .service_text {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px
}

.service_item .service_text h2 {
  font-size: 16px;
  font-weight: normal;
}

.service_item .service_text h2 span {
  font-size: 16px;
  /* text-decoration: underline; */
}

.service_item .service_input {
  width: 100%;
  display: flex;
  align-items: center;
}

.service_item .service_input>label {
  width: 100px;
  display: inline-block;
  text-align: left;
  padding: 0 15px 0 0;
}

.service_item .service_input>input {
  width: 100%;
  border-color: transparent;
  border-style: solid;
  border-width: 1px;
  outline: none;
  padding: 14px;
  border-radius: 5px;
  background-color: #f5f5f5;
  font-size: 16px;
  color: #333;
  font-family: auto;
}

.text-limitinput-tips {
  position: absolute;
  width: 60px;
  font-size: 12px;
  color: #888;
  right: 13%;
}


.checkbox {
  position: relative;
  width: 17px;
  height: 17px;
  border-radius: 3px;
  border: 1px solid #AAA;
}

.checkbox img {
  position: absolute;
  width: 18px;
  left: -1px;
  bottom: -1px;
}

.hide {
  display: none;
}

@media screen and (max-width: 1100px) {
  .text-limitinput-tips {
    right: 11%;
  }

  .text-limitinput-tips span {
    font-size: 12px !important;
  }
}

@media screen and (max-width: 900px) {
  .sp-more-mt {
    margin-top: 70px !important;
  }
}

@media screen and (max-width: 850px) {
  .service_item {
    width: 85%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }

  .service_item .service_text {
    width: 100%;
  }

  .service_item .service_input {
    width: 100%;
  }

  .text-limitinput-tips {
    right: 8%;
  }
}


@media screen and (max-width: 550px) {
  .service_item {
    width: 95%;
  }

  .service_item .service_text h2 {
    font-size: 14px;
  }

  .service_item .service_text h2 span {
    font-size: 14px;
  }

  .service_item .service_input {
    padding: 0 0 20px 0;
  }

  .service_item .service_input>label {
    font-size: 14px;
  }

  .service_item .service_input>input {
    font-size: 14px;
  }

  .text-limitinput-tips {
    right: 5%;
    margin: 80px 0 0 0;
  }
}

  @media screen and (max-width: 450px) {
    .detail-content table {font-size: 15px;}
    
    .form-more-tips{font-size:13px!important;}
  }


  .form-table .form-item .invalue {
    box-shadow: none !important;

  }
  
  
.sp_clear_btn{top: 10px!important; right: 30px!important;}
  
  
.contact-group-part h4,.form-out-part h4 { font-size: 18px;  font-weight:600;text-align: center;margin: 10px auto;position: relative;color:#888;}

.contact-group-part h4::before, .form-out-part h4::before{position: absolute;right: 130%;height: 1px;content: "";top: 50%;width: 22vw;background-color: #efefef;z-index: 0;}
.contact-group-part h4::after, .form-out-part h4::after{position: absolute;left: 130%;height: 1px;content: "";top: 50%;width: 22vw;background-color: #efefef;z-index: 0;}




.contact-group-part .tips {
  font-size: 14px;
  color: #666;
  margin: 20px 0 40px 0;
}

/* 批量上传 */
.files-group{margin:0px 0 20px 0; width: 80%;   padding: 0;}
.files-group>div{}
.files-group span{    display: flex;align-content: center;   flex-wrap: wrap;   flex-direction: row;align-items: center;justify-content: flex-start;gap: 20px;}
.upload-components{margin:20px 0;}
.files-group h3{font-size: 16px; font-weight: normal;  margin: 5px 0 5px 0;  text-align: left;display: flex;
    flex-direction: row;align-items: center;}
.files-group h1{font-weight:bold;font-size: 16px; margin: 10px 0 10px 0;}
.files-group i{font-size: 14px;font-style: normal;clear: both;color: #c91919; line-height:40px;}
.file-uploader-btn{    padding: 5px 15px;background: #4394e7;border: 1px solid #337ac3;border-radius: 5px;color: #fff;}
.file-list li{display: flex;width: 100%;gap: 10px;align-items: center;padding: 10px 5px 5px 5px;position: relative;border-bottom: 1px solid #f1f1f1;}
.file-list li::after{ position: absolute;}
.file-list li span{ cursor: pointer; color: white; background-color: #eb3737; width: 15px; height: 15px; font-size: 10px;  display: flex;  justify-content: center; align-items: center; border-radius: 50%; margin-left: 10px; transform: scale(1);  transition: all 0.2s ease-in-out;}
.file-list li span:hover{  transform: scale(1.05);}
.file-upload{ gap: 10px;}
.file-upload-btn{  padding: 2px 5px;  border-radius: 4px;  font-size: 14px;  border: 1px solid #CCC;  cursor: pointer;}
.file-upload-btn:hover{  background-color: #DDD;}
.upload-tips{ font-size: 14px; color: #333;}
.file-list{  font-size: 14px;  color: #666;  padding:15px 0 15px 0;}

@media screen and (max-width: 900px) {
    .files-group .row{display: flex;align-items: flex-start;flex-direction: column;gap:10px;margin:0px 0 10px 0;}
    .file-list{padding: 5px 0 20px 0;}
    .files-group h3{
      width: 100%;
    }
}
 @media(max-width:550px){
    .files-group span{gap: 5px;  margin: 0 0 20px 0;}
    .files-group{width: 95% ;}
}
/* 批量上传 */


/* 就业创业列表选择区域 */
.listselect { width: 100%;display: flex;margin: 40px 20px 0px 20px;align-content: center;justify-content: flex-start;align-items: center;flex-wrap: wrap;gap: 30px;}
.choose-city,.choose-tag { display: flex;flex-direction: row;justify-content: center;align-items: center;}
.listselect a {padding: 4px 10px;cursor: pointer;color: #555;font-size: 14px;}
.listselect a.active,.listselect a:hover {color: #2C5DBC;}
.listselect .head-title {font-weight: bold;}
    @media(max-width:700px){
.listselect{ width: 100%;display: flex;margin: 30px 20px 0px 20px;align-content: center;justify-content: flex-start;align-items: flex-start;
        flex-wrap: wrap;gap: 30px;flex-direction: column;}
/*.choose-city,.choose-tag {display: flex;flex-direction: row;justify-content: flex-start;align-items: center;width: 90%;flex-wrap: nowrap;
        gap: 10px;} */
    }
    

/* 就业创业列表选择区域 */

    /* 就业创业列表下拉 */
    .list-select-box{position:relative;width: 180px;}
    /* 触发器（a 标签） */
    .list-select-box>.select-toggle{
      display:flex;align-items:center;justify-content:space-between;padding:.6rem .9rem;background:#fff;border:1px solid #d0d7e3;
      border-radius:.3rem;font-size:14px;color:#333;cursor:pointer;transition:border-color .25s,box-shadow .25s;}
    .select-toggle:hover,.select-toggle.active{border-color:#0066ff;box-shadow:0 2px 8px rgba(0,0,0,.15);}
    /* 箭头 */
    .select-arrow{width:1.5em;height:1.5em;fill:#666;transition:transform .3s;}
    .select-toggle.active .select-arrow{transform:rotate(180deg);}
    /* 下拉列表 */
    .list-select-box>.select-list{
      display:none;position:absolute;top:calc(100% + .3rem);width:100%;max-height:220px;overflow:auto;background:#fff;
      border:1px solid #d0d7e3;border-radius:.3rem;box-shadow:0 2px 8px rgba(0,0,0,.15);z-index:9;}
     .list-select-box>.select-list a{display:block;padding:.6rem .9rem;font-size:14px;color:#333;transition:background .2s;}
    .select-list a:hover{background:#f0f4ff;}
    .select-list a:not(:last-child){border-bottom:1px solid #f0f2f5;}
    

.news-head .search a{margin:0 0 0 20px;color: #333; cursor: pointer;text-decoration: underline;}
.news-head .search a:hover{color: #2c5dbc;text-decoration:none;}

@media screen and (max-width: 500px) {
    .news-head .search a{font-size:12px;margin:0 0 0 10px;}
    .news-head .search input{width:120px}
    .news-head .search .search-btn{width: 60px;}
    .top-news .left .news-item .news-detail .title{font-size:18px;}
}

    /* 小屏加大字体 */
    @media(max-width:550px){
      .list-select-box{width:70%;}
      .select-toggle,.select-list a{font-size:1rem;}
    }
    @media(max-width:370px){
      .list-select-box{width:70%;}
      .select-toggle,.select-list a{font-size:1rem;}
    }
   /* 就业创业列表下拉 */

   /* 列表分类 */
   .listclass{display: flex;flex-direction: row;padding: 0 20px;line-height: 30px;justify-content: flex-start;flex-wrap: wrap;width: 98%;
    margin: 40px 20px 0px 20px;align-items: center;}
   .listclass h2{font-size:16px;font-weight:normal;}
   .listclass ul{list-style: none;display: flex;margin: 0 40px 0 5px;}
   .listclass ul li{}
   .listclass ul li a{font-size: 16px;padding: 4px 10px;cursor: pointer;color: #555;}
   .listclass ul li a:hover{color:#2C5DBC;text-decoration: underline;}
   .listclass ul li a.active{color:#2C5DBC}
   
    @media(max-width:480px){
   .listclass{display: flex;flex-direction: row;padding: 0;line-height: 30px;flex-wrap: wrap;align-items: flex-start;}
   .listclass h2{font-size:14px;font-weight:normal;padding: 0 0 0 8px;}
   .listclass ul{list-style: none;display: flex;margin: 0 0 20px 0;}
   .listclass ul li a{font-size: 14px;padding:4px 5px;}

   
    }

 /* 二维码 */
.show-hr-qrcode{position: fixed;top: 0;left: 0; background-color: rgba(0, 0, 0, 0.6); width: 100vw; height: 100vh; z-index: 999;}
.hr-qrcode-container{ position: absolute; display: flex; justify-content: center; align-items: center;  flex-direction: column; top: 50%;
  left: 50%;  transform: translate(-50%, -50%); background-color: white; padding: 20px; max-width: 300px;}
.hr-qrcode-container img{width:100%;height:100%;}
#close-hr-qrcode{ position: absolute; top: 110%; left: 50%; transform: translateX(-50%); transition: all 0.2s ease; cursor: pointer;}
#close-hr-qrcode:hover{ transform: translateX(-50%) scale(1.1);}
.hr-tips{  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); padding: 15px 30px; background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;  z-index: 999; color: white; font-size: 20px;}
 /* 二维码 */

.hr-qrcode-container .qrcode-text{
  color: white;
  position: absolute;
  top: -50px;
  font-size: 22px;
}

    @media(max-width:800px){
       .hr-qrcode-container .qrcode-text{font-size: 18px;top: -40px;} 
    }
    
.error-tips{ border-color: #4394e7 !important;}

.auto-input{ background-color: #EEE !important; cursor: not-allowed;}

.cross-line{ width: 100%; background-color: white; padding: 5px 10px; text-align: center; position: relative; border-bottom: 1px dashed #EEE;
  margin-top: 30px; margin-bottom: 10px;  font-size: 14px;  color: #777;}


/* 列表所在区域选择 */
.city-select-box{display: flex;align-items: center;gap: 10px;}
.city-select-box .invalue{border-color: #d0d7e3;border-style: solid;border-width: 1px; outline: none; padding: 10px !important;border-radius: 5px; background-color: #fff;font-size: 14px;color: #333;font-family: auto;box-shadow: none !important;}

.area-form-item #city_text{font-size: 14px;}
.area-form-item #quxian_text{font-size: 14px;}

@media(max-width:700px){
.choose-city,.choose-tag {display: flex;flex-direction: row;justify-content: flex-start;align-items: center;width: 90%;flex-wrap: nowrap;
        gap: 10px;}
.city-select-box{ width:70%}
.city-select-box .sp_container{ width:50%!important}

.sp_result_area_open{left:10% !important;}

    }

/* 列表所在区域选择 */


