@charset "UTF-8";
body {
  position: relative;
  font-size: 12px;
  line-height: 1.5;
  color: #222;
  background-color: #fff;
  font-family: -apple-system, "PingFang SC", "Segoe UI", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  text-rendering: optimizeLegibility !important;
}
@media (min-width: 768px){
  *{letter-spacing: 0.01px;}
}
/*初始化*/
body, h1, h2, h3, h4, ul, ol, li, input, select, p, dl, dt, dd {
  margin: 0;
  padding: 0;
  list-style: none;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  *zoom: 1;
}

input, select, button {
  font-family: -apple-system, "PingFang SC", "Segoe UI", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/* 公共样式 */
img {
  border: none;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}

a, a:hover {
  color: #222;
  text-decoration: none;
}

.inner {
  margin: 0 auto;
  padding: 0 36px;
  width: 100%;
}

@media (max-width: 1199px) {
  .inner {
    padding: 0 25px;
  }
}
@media (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}
/* head */
header {
  border-bottom: 1px solid #eee;
}
header .inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logoWrap {
  display: flex;
  align-items: center;
}
.logoWrap .logo {
  text-align: center;
}
.logoWrap .logo img {
  width: 100px;
}
.logoWrap .logo .logoFont {
  font-size: 13px;
  display: flex;
  justify-content: space-around;
}
.logoWrap .slogan {
  padding-left: 18px;
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 991px) and (min-width: 768px) {
  .logoWrap .slogan {
    display: none;
  }
}
@media (max-width: 767px) {
  .logoWrap .slogan {
    font-size: 14px;
  }
}
@media (max-width: 450px) {
  .logoWrap .slogan span {
    display: block;
  }
}

.topRight {
  display: flex;
  align-items: center;
}
.topRight .nav ul {
  display: flex;
}
.topRight .nav ul a {
  font-size: 14px;
  color: #222;
  margin: 0 15px;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  font-weight: 300;
}
.topRight .nav ul a.active, .topRight .nav ul a.active:hover {
  font-weight: 600;
  border-bottom-color: #085;
}
.topRight .nav ul a:hover {
  font-weight: 400;
  border-bottom-color: rgba(0, 136, 85, 0.3333333333);
}
@media (max-width: 767px) {
  .topRight nav {
    display: none;
  }
}
.topRight .lang {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #eee;
  margin-left: 10px;
  white-space: nowrap;
}
.topRight .lang a {
  font-size: 14px;
  color: #222;
  padding: 3px 8px;
}
.topRight .lang a.active, .topRight .lang a.active:hover {
  background: #085;
  color: #fff;
}
.topRight .lang a:hover {
  background: #eee;
}

/* banner */
.banner {
  display: flex;
  width: 100%;
  min-height: 600px;
  border-bottom: 1px solid #eee;
}

.siderBar {
  flex-grow: 3;
  text-align: center;
  background: #eef3f1;
  min-height: 600px;
}
.siderBar .inner {
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.siderBar .inner h2 {
  font-weight: 300;
  font-size: 44px;
  margin-top: 5px;
}
@media (max-width: 1199px) {
  .siderBar .inner h2 {
    font-size: 33px;
  }
}
@media (max-width: 991px) {
  .siderBar .inner h2 {
    font-size: 30px;
    text-align: left;
    margin-bottom: 30px;
  }
  .siderBar .inner h2 span {
    display: block;
  }
}
.siderBar .inner p {
  font-size: 14px;
  display: inline-block;
  border-radius: 50px;
  margin-top: 1em;
  padding: 3px 15px;
  background: rgba(0, 0, 0, 0.07);
}
.siderBar .inner p span {
  color: #f60;
}
@media (max-width: 991px) {
  .siderBar .inner p {
    display: none;
  }
}
.siderBar .imgWrap {
  height: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.siderBar .imgWrap img {
  height: auto;
  max-height: 280px;
}
@media (max-width: 992px) {
  .siderBar .inner {
    height: 60%;
  }
  .siderBar .imgWrap {
    height: 40%;
  }
}

.bannerRight {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 430px;
}
@media (min-width: 767px) {
  .bannerRight {
    max-width: 430px;
  }
}
.bannerRight .regWrap {
  padding: 15px;
}
.bannerRight .regWrap .regCon {
  width: 100%;
  min-width: 330px;
  max-width: 330px;
}
@media (max-width: 767px) {
  .bannerRight .regWrap .regCon {
    min-width: 300px;
    max-width: 330px;
  }
}
.bannerRight .regWrap .regTitBox {
  margin-bottom: 30px;
}
.bannerRight .regWrap .regTit {
  display: flex;
  justify-content: space-between;
}
.bannerRight .regWrap .regTit a {
  margin-right: 1.5em;
  font-size: 24px;
  font-weight: 300;
  border-bottom: 3px solid transparent;
}
.bannerRight .regWrap .regTit a:last-child {
  margin-right: 0;
}
.bannerRight .regWrap .regTit a.active, .bannerRight .regWrap .regTit a.active:hover {
  font-weight: 400;
  color: #222;
  border-bottom-color: #085;
}
.bannerRight .regWrap .regTit a:hover {
  font-weight: 400;
  color: #666;
  border-bottom-color: rgba(0, 136, 85, 0.3333333333);
}
.bannerRight .regWrap .regTitBot {
  font-size: 18px;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .bannerRight .regWrap .regTitBot {
    display: none;
  }
}

.bdForm .itemWrap {
  position: relative;
  margin-bottom: 26px;
}
.bdForm .itemWrap .inputAdd {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.bdForm .itemWrap .inputAdd .bdInputPhone {
  padding-left: 102px;
}
.bdForm .itemWrap .inputAdd .area {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  align-items: center;
}
.bdForm .itemWrap .inputAdd .area .faArrow {
  border-right: 1px solid #eee;
}
.bdForm .itemWrap .inputAdd .area .bdInput {
  width: 90px;
  border-radius: 4px 0 0 4px;
  border-right: 0;
}
.bdForm .itemWrap .inputAdd .msgCode {
  position: absolute;
  right: 0;
}
.bdForm .itemWrap .inputAdd .msgCode a {
  font-size: 14px;
  display: inline-block;
  color: #085;
  padding: 3px 12px;
  border-left: 1px solid #eee;
}
.bdForm .itemWrap .inputAdd .faArrow {
  position: absolute;
  right: 0;
  padding: 3px 12px;
  color: #222;
}
.bdForm .itemWrap .slideUlWrap {
  display: block;
  width: 100%;
  position: absolute;
  z-index: 2;
  top: 43px;
}
.bdForm .itemWrap .slideUlWrap .slideUl::-webkit-scrollbar {
  width: 4px;
}
.bdForm .itemWrap .slideUlWrap .slideUl::-webkit-scrollbar-track {
  background: #fff;
}
.bdForm .itemWrap .slideUlWrap .slideUl::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 4px;
}
.bdForm .itemWrap .slideUlWrap .slideUl {
  width: 100%;
  max-height: 158px;
  overflow-y: auto;
  border: 1px solid #eee;
  border-radius: 4px;
  position: absolute;
  z-index: 3;
  background: white;
  left: 0;
  top: -1px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.bdForm .itemWrap .slideUlWrap .slideUl li {
  padding: 6px 0 6px 12px;
  line-height: 20px;
  cursor: pointer;
}
.bdForm .itemWrap .slideUlWrap .slideUl li:hover, .bdForm .itemWrap .slideUlWrap .slideUl li.active {
  background: #eee;
}
.bdForm .itemWrapError .bdInput {
  border-color: #085;
}
.bdForm .itemTip {
  display: none;
  color: #f60;
  position: absolute;
  top: 43px;
  z-index: 1;
}
.bdForm .itemTip .itemTipMore {
  padding: 3px 5px;
  width: 100%;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.bdForm .labelWrap {
  margin-bottom: 8px;
}
.bdForm .labelWrap .labelBox input {
  position: relative;
  top: 0.2em;
}
.bdForm .labelWrap .labelBox label {
  margin-right: 10px;
}
.bdForm .labelWrap .itemTip {
  position: relative;
  top: 0;
}
.bdForm .labelWrap1 .labelBox {
  font-size: 14px;
}
.bdForm .itemBot .bdBtn {
  margin: 10px 0;
}
.bdForm .itemBot .goLoginBox {
  width: 100%;
  font-size: 14px;
  text-align: center;
}
.bdForm .itemBot .goLoginBox .goLogin {
  color: #085;
}
.bdForm .bdInput {
  height: 42px;
  width: 100%;
  box-shadow: none;
  border: 1px solid #eee;
  outline: 0;
  font-size: 14px;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  padding: 0 12px;
}
.bdForm .bdBtn {
  display: inline-block;
  text-align: center;
  height: 42px;
  line-height: 42px;
  width: 100%;
  box-shadow: none;
  outline: 0;
  font-size: 16px;
  color: #fff;
  background-color: #085;
  border-radius: 4px;
  padding: 0 12px;
}

@media (max-width: 767px) {
  .banner {
    min-height: 0;
  }
  .siderBar {
    display: none;
  }
  .bannerRight {
    background: #eef3f1;
    min-width: auto;
  }
}
.wapImg {
  display: none;
}

@media (max-width: 767px) {
  .wapImg {
    display: block;
    width: 300px;
    margin: 0 auto;
    padding: 30px 20px 0;
  }
  .bannerRight .regWrap {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    margin: 0 auto 30px;
  }
  .bannerRight .regWrap .regTit {
    justify-content: space-between;
  }
  .bannerRight .regWrap .regTit a {
    margin-right: 0;
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.fa-spinner {
  margin-left: 3px;
  transform: rotate(360deg);
  animation: rotation 2s linear infinite;
}

/* content */
.content {
  padding: 80px 0 40px;
}
.content ul {
  display: flex;
  justify-content: space-between;
}
.content ul li {
  background: #eef3f1;
  padding: 20px 10px 20px 0px;
  margin-bottom: 20px;
  border-radius: 4px;
  width: 24%;
  display: flex;
  align-content: center;
}
.content ul dl {
  display: flex;
  align-items: center;
  width: 100%;
}
.content ul dl dt {
  width: 30%;
  text-align: center;
}
.content ul dl dt img {
  width: 56px;
  margin: 0 5px;
}
.content ul dl dd {
  font-size: 14px;
}
.content ul dl dd h4 {
  font-size: 24px;
}
@media (max-width: 1199px) and (min-width: 960px) {
  .content ul dl dt img {
    width: 44px;
  }
  .content ul dl dd {
    font-size: 12px;
  }
  .content ul dl dd h4 {
    font-size: 18px;
  }
}
@media (max-width: 960px) {
  .content ul {
    flex-wrap: wrap;
  }
  .content ul li {
    width: 48%;
  }
}
@media (max-width: 960px) and (max-width: 660px) {
  .content ul li {
    width: 100%;
  }
  .content ul li dl dt img {
    width: 44px;
  }
  .content ul li dl dd {
    font-size: 12px;
  }
  .content ul li dl dd h4 {
    font-size: 18px;
  }
}

/* foot */
footer {
  background-color: #eee;
  color: #666;
  margin: 0;
}
footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer a {
  color: #666;
}
footer a:hover {
  color: #222;
}

.footCr {
  padding-bottom: 20px;
}

.qrCode {
  padding: 1.5em 0 1em;
  white-space: nowrap;
}
.qrCode img {
  width: 88px;
  border-radius: 2px;
}
.qrCode p {
  margin: 5px 0 0;
  font-size: 12px;
}
.qrCode .qrCode1, .qrCode .qrCode2 {
  display: inline-block;
  text-align: center;
  margin-right: 2em;
}
.qrCode .qrCode2 img {
  padding: 5px;
  background: #fff;
}

@media (max-width: 767px) {
  .qrCode {
    display: none;
  }
  .footCr {
    padding: 15px 0;
  }
}
@media (min-width: 768px) {
  .bd3shake {
    -webkit-animation: bd3shake 0.8s ease-in;
    animation: bd3shake 0.8s ease-in;
  }
  @-webkit-keyframes bd3shake {
    0% {
      -webkit-transform: scale(1);
    }
    10%, 20% {
      -webkit-transform: scale(0.95) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
      -webkit-transform: scale(1.05) rotate(3deg);
    }
    40%, 60%, 80% {
      -webkit-transform: scale(1.05) rotate(-3deg);
    }
    100% {
      -webkit-transform: scale(1) rotate(0);
    }
  }
  @keyframes bd3shake {
    0% {
      transform: scale(1);
    }
    10%, 20% {
      transform: scale(0.95) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
      transform: scale(1.05) rotate(3deg);
    }
    40%, 60%, 80% {
      transform: scale(1.05) rotate(-3deg);
    }
    100% {
      transform: scale(1) rotate(0);
    }
  }
}
/* animate */
.bdBtnBox{
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  position: relative;
}
.animation-light{
  position: absolute;
  top: 10px;
  width: 6.1625rem;
  height: 2.8125rem;
  background-image: url(https://jobs.echinacities.com/static/tuiguang_20200608/light_animate.png);
  background-size: 6.1625rem 2.8125rem;
  -webkit-animation: btnLights 3s linear infinite forwards;
  -o-animation: btnLights 3s linear infinite forwards;
  animation: btnLights 3s linear infinite forwards;
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
@keyframes btnLights {
  0% {
    transform: translate(-5.66123188rem);
    -webkit-transform: translate(-5.66123188rem);
    opacity: 0;
  }
  66% {
    transform: translate(-5.66123188rem);
    -webkit-transform: translate(-5.66123188rem);
    opacity: 1;
  }
  100% {
    transform: translate(24.90942029rem);
    -webkit-transform: translate(24.90942029rem);
  }
}

/*# sourceMappingURL=2023.css.map */

input[type="password"]::-ms-reveal {
  display: none;
}