body {
  font-size: 17px;
}

#numberInfo {
  background-color: rgba(109, 82, 139, 0.7);
  text-align: center;
}

.logo {
  width: 100px;
  height: 100px;
  margin-right: 20px;
}

#numberInfo .label {
  color: white;
  font-size: 20px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
  margin: 10px 0;
}

#numberInfo .number {
  color: white;
  font-size: 30px;
  font-weight: bold;
  text-shadow: 1px 1px 2px #a6a6a6;
  line-height: 2rem;
  padding: 10px 0;
  display: inline-block;
}

.jsure-li-main_h {
  font-size: calc(1rem + 6px);
  font-weight: bold;
  padding: 30px 0 20px;
  text-align: left;
  color: #81619e
}

.jsure-li-2nd-h {
  padding-bottom: .5em;
  text-align: left;
}

.brand-jsure {
  font-weight: bold;
}

.side-h-jsure {
  opacity: .7;
}

.jsure-li-p {
  font-family: Helvetica Neue, Helvetica, tahoma, Microsoft Yahei, Hiragino Sans GB, Heiti SC, sans-serif !important;
  font-size: 20px;
}

.transformYanimate {
  transform: translateY(-234px);
  transition: all 1.5s ease 1s;
  -webkit-transform: translateY(-234px);
}

.textAnimate {
  transition: all .5s ease 0s;
}



.loader {
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#ld1 {
  position: relative;
  transform: rotate(45deg);
}

#ld1 div {
  height: 20px;
  width: 20px;
  background: #FE4A49;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

#ld1 div:nth-child(1) {
  animation: ld1_div1 1s ease-in-out infinite;
}

#ld1 div:nth-child(2) {
  animation: ld1_div2 1s ease-in-out infinite;
}

#ld1 div:nth-child(3) {
  animation: ld1_div3 1s ease-in-out infinite;
}

@keyframes ld1_div1 {
  0% {
    top: 52.5px;
    background: #FE4A49;
  }

  50% {
    top: -52.5px;
    background: #59CD90;
  }

  100% {
    top: 52.5px;
    background: #009FB7;
  }
}

@keyframes ld1_div2 {
  0% {
    right: 52.5px;
    background: #FE4A49;
  }

  50% {
    right: -52.5px;
    background: #FED766;
  }

  100% {
    right: 52.5px;
    background: #59CD90;
  }
}

@keyframes ld1_div3 {
  0% {
    left: 52.5px;
    background: #FE4A49;
  }

  50% {
    left: -52.5px;
    background: #D91E36;
  }

  100% {
    left: 52.5px;
    background: #FE4A49;
  }
}

#ld2 {
  display: flex;
  flex-direction: row;
}

#ld2 div {
  height: 20px;
  width: 5px;
  background: #FE4A49;
  margin: 3px;
  border-radius: 25px;
}

#ld2 div:nth-child(1) {
  animation: ld2 1s ease-in-out infinite 0s;
}

#ld2 div:nth-child(2) {
  animation: ld2 1s ease-in-out infinite 0.1s;
}

#ld2 div:nth-child(3) {
  animation: ld2 1s ease-in-out infinite 0.2s;
}

#ld2 div:nth-child(4) {
  animation: ld2 1s ease-in-out infinite 0.3s;
}

#ld2 div:nth-child(5) {
  animation: ld2 1s ease-in-out infinite 0.4s;
}

#ld2 div:nth-child(6) {
  animation: ld2 1s ease-in-out infinite 0.5s;
}

#ld2 div:nth-child(7) {
  animation: ld2 1s ease-in-out infinite 0.6s;
}

@keyframes ld2 {
  0% {
    transform: scaleY(1);
    background: #FED766;
  }

  25% {
    background: #009FB7;
  }

  50% {
    transform: scaleY(2);
    background: #59CD90;
  }

  75% {
    background: #FE4A49;
  }

  100% {
    transform: scaleY(1);
    background: #D91E36;
  }
}

#ld3 {
  position: relative;
  animation: outercontainer 4s linear infinite;
}

#ld3 div {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

#ld3 div:nth-child(1) {
  top: 20px;
  background: #59CD90;
  animation: ld3_div1 2s linear infinite;
}

#ld3 div:nth-child(2) {
  top: -20px;
  background: #D91E36;
  animation: ld3_div2 2s linear infinite;
}

#ld3 div:nth-child(3) {
  left: 20px;
  background: #F39237;
  animation: ld3_div4 2s linear infinite;
}

#ld3 div:nth-child(4) {
  left: -20px;
  background: #0072BB;
  animation: ld3_div3 2s linear infinite;
}

@keyframes outercontainer {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes ld3_div1 {
  0% {
    top: 20px;
  }

  25% {
    top: 0;
  }

  50% {
    top: 20px;
  }

  75% {
    top: 0;
  }

  100% {
    top: 20px;
  }
}

@keyframes ld3_div2 {
  0% {
    top: -20px;
  }

  25% {
    top: 0;
  }

  50% {
    top: -20px;
  }

  75% {
    top: 0;
  }

  100% {
    top: -20px;
  }
}

@keyframes ld3_div3 {
  0% {
    left: -20px;
  }

  25% {
    left: 0;
  }

  50% {
    left: -20px;
  }

  75% {
    left: 0;
  }

  100% {
    left: -20px;
  }
}

@keyframes ld3_div4 {
  0% {
    left: 20px;
  }

  25% {
    left: 0;
  }

  50% {
    left: 20px;
  }

  75% {
    left: 0;
  }

  100% {
    left: 20px;
  }
}

#ld4 {
  position: relative;
  display: flex;
  width: 25%;
  justify-content: space-between;
}

#ld4 div {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: #D91E36;
}

#ld4 div:nth-child(1) {
  animation: ld4 3s linear infinite 0s;
}

#ld4 div:nth-child(2) {
  animation: ld4 3s linear infinite 0.15s;
}

#ld4 div:nth-child(3) {
  animation: ld4 3s linear infinite 0.3s;
}

#ld4 div:nth-child(4) {
  animation: ld4 3s linear infinite 0.45s;
}

@keyframes ld4 {
  0% {
    opacity: 0;
    transform: scale(0.3);
    background: #59CD90;
  }

  25% {
    opacity: 1;
    transform: scale(1.8);
    background: #0072BB;
  }

  50% {
    opacity: 0;
    transform: scale(0.3);
    background: #FE4A49;
  }

  75% {
    opacity: 1;
    transform: scale(1.8);
    background: #FED766;
  }

  100% {
    opacity: 0;
  }
}

.tabMenu.active {
  padding: 0;
  border: 2px solid #883989;
  border-bottom: 4px solid #883989;
}

.tabMenu {
  border-bottom: 2px solid #883989;
  margin: 0 3px !important;
  background-color: #f3f8ff;
  flex-grow: 1;
  padding: 2px;
  font-size: 20px;
}

#post>div.row:nth-child(odd) {
  background-color: #f4f4f4;
}

.applyPost {
  background-color: transparent;
  border: 3px solid #883989;
  color: #883989;
  box-shadow: 3px 3px #c9b0d563;
  border-radius: 3px;

  font-size: 20px;
}

.applyPost:hover {
  color: white;
  background-color: #883989;
}

#post {

  width: 100%;
  overflow: hidden;
  text-align: center;
}

#post>div.row {
  font-size: 25px;
  line-height: 60px;
  padding: 30px 0;
}

.postTitle {
  cursor: pointer;
}

.postTitle>h3 {
  font-weight: bolder;
}

.postTitle:hover {
  color: #883989;
}
#form{
  width: 500px;
  padding: 50px;
}
/* 设置滚动条的样式 */

/* 修改滚动条轨道的样式 */
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  /* 设置轨道的背景颜色 */
}

/* 修改滚动条滑块的样式 */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #2eaedc;
  /* 设置滑块的背景颜色 */
}

/* 修改滚动条的宽度 */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  /* 设置滚动条的宽度 */
}

@media (min-width:1450px) {
  .container {
    width: 1450px;
  }
}

@media only screen and (max-width: 767px) {
  #contact {
    background: url("../images/map-and.jpg") no-repeat;
  }

  p,
  a,
  a span,
  #post>div,
  label.applyPost {
    font-size: 14px !important;
  }
.postTitle{
  font-size: 18px;
}
#form{
  width: 300px;
  padding: 0;
}
  #post {
    text-align: left;

    padding-left: 10px;
  }

  #post>.row {
    padding: 0;
  }

  .postTitle>h3 {
    font-size: 17px;
    font-weight: bold;
  }

  .applyPost {
    border-width: 1px;
  }

  #numberInfo {
    background-color: #f3f8ff !important;
  }

  #numberInfo .label {
    color: #797575;
    font-size: 13px;
    margin: 15px;
    display: inline;
    line-height: 45px;
  }

  #numberInfo .number {
    color: #b77ec9 !important;
    font-size: 40px;
    font-weight: bolder;
  }

  #countUpArear div.haveBorder {
    border-bottom: 1px solid #e0e0e0;
    /* margin: 15px; */
  }
  #bbs{
    padding-top: 10px;
  }
}

#bbs {
  background-color: #f3f8ff;
}

.img-zhaomu {
  height: 272px;
}

.contain {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  /*设置文案容器高度，超出部分隐藏*/
  min-height: 200px;
  height: 200px;
  overflow: hidden;
  /*设置文案容器高度，超出部分隐藏*/
}

.open-btn {
  position: absolute;
  width: 100%;
  bottom: -30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);

  /*实现渐变效果，遮罩效果*/
}

.open-btn a {
  text-decoration: none;
  color: #1e7dd2;
  display: inline-block;
  font-size: 22px;
  margin-left: 100px;
  margin-top: 20px;
  cursor: pointer;
}

#benefit {
  padding-left: 0;
}
#content img{
  max-width: 100% !important;
}
#joinUs{
  margin-top: 50px;
}