* {
  font-family: MicrosoftYaHei;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
html {
  font-size: calc(100vw / 1920);
}

@media screen and (min-width: 2100px) {
  html {
    font-size: 1.1px;
  }
}

/* 基础样式 */
.padding-20 {
  padding: 20rem;
}
.padding-15 {
  padding: 15rem;
}
.border-radio {
  border-radius: 12rem;
  -webkit-border-radius: 12rem;
  -moz-border-radius: 12rem;
  -ms-border-radius: 12rem;
  -o-border-radius: 12rem;
}

.title {
  text-align: center;
}
.title h5 {
  font-size: 34rem;
  color: #333;
  margin: 0;
  font-weight: normal;
}
.title p {
  font-size: 16rem;
  margin-top: 20rem;
  color: #888c92;
}
.double-title {
  text-align: center;
  font-size: 36rem;
}
.double-title p:first-child {
  font-weight: 400;
  color: #ececec;
  margin: 0;
}
.double-title p:last-child {
  font-size: 34rem;
  font-weight: bold;
  color: #2b2d2f;
  margin-top: -15rem;
}

.lineAni {
  position: relative;
}
.lineAni:hover::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 5px);
  height: 2px;
  background: #333;
  width: 100%;
  animation: lineGrow 0.15s ease-in;
  -webkit-animation: lineGrow 0.15s ease-in;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.lineAni-active::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 5px);
  height: 2px;
  background: #333;
  width: 100%;
  animation: lineGrow 0.15s ease-in;
  -webkit-animation: lineGrow 0.15s ease-in;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.container {
  width: 1200rem;
  position: relative;
}

button {
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  width: 190rem;
  height: 60rem;
  text-align: center;
  color: #fff;
  background: #b0b7bb;
  font-size: 18rem;
  outline: none;
  border: none;
  position: relative;
  overflow: hidden;
}
button span {
  z-index: 99;
  position: relative;
}
button.primary {
  background: #176ae6;
}
button.radio {
  border-radius: 30rem;
  -webkit-border-radius: 30rem;
  -moz-border-radius: 30rem;
  -ms-border-radius: 30rem;
  -o-border-radius: 30rem;
}
button:not(.primary):after {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0%;
  z-index: 50;
  background: #176ae6;
  transition: all 0.2s;
  /* transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%); */
}
button:hover::after {
  width: 100%;
}

.flexs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* 头部样式 */
header {
  position: fixed;
  width: 100%;
  height: 96rem;
  background: rgba(255, 255, 255, 0.9);
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  padding: 0 11.5%;
  box-sizing: border-box;
}
header > img {
  margin-right: 70rem;
  width: 52rem;
}

header ul {
  list-style: none;
  display: flex;
  padding: 0;
  background: transparent;
}
header ul li {
  margin-right: 60rem;
}

header ul li a {
  text-decoration: none;
  color: #333333;
  font-size: 20rem;
}

header .header-info {
  display: flex;
  align-items: center;
  font-size: 20rem;
  position: absolute;
  right: 34rem;
}
header .header-info > div {
  display: flex;
  align-items: center;
  margin-left: 60rem;
  cursor: pointer;
  position: relative;
}
header .header-info img {
  width: 25rem;
  margin-right: 10rem;
}
header .header-info > div:hover .qrcode-layer {
  display: block;
}
header .qrcode-layer {
  display: none;
  position: absolute;
  top: calc(100% + 15rem);
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
}

header .qrcode-layer img {
  width: 100%;
}

/* banner */
.banner {
  width: 100%;
  height: 900rem;
  background-image: url(../images/banner.jpg);
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  padding-top: 500rem;
}

.banner-form {
  background: #fff;
  padding: 30rem 40rem;
  box-shadow: 0 6px 10px 1px #e5eaef;
  width: 100%;
  position: absolute;
  bottom: 0;
  transform: translateY(67rem);
  -webkit-transform: translateY(67rem);
  -moz-transform: translateY(67rem);
  -ms-transform: translateY(67rem);
  -o-transform: translateY(67rem);
}

.banner-form h5 {
  color: #333;
  text-align: center;
  font-size: 35rem;
  margin: 0;
  font-family: MicrosoftYaHei Bold;
  margin-top: 10rem;
}
.banner-form-content {
  display: flex;
  justify-content: space-between;
  margin-top: 40rem;
}

.banner-form-content input {
  background: #f9f9f9;
  border: none;
  outline: none;
  height: 60rem;
  padding: 0 30rem;
  border-radius: 30rem;
  -webkit-border-radius: 30rem;
  -moz-border-radius: 30rem;
  -ms-border-radius: 30rem;
  -o-border-radius: 30rem;
  min-width: 256rem;
  font-size: 14rem;
}

.banner-form-content input:nth-child(3) {
  min-width: 340rem;
}

/* 各类模块 section 样式 */

.section1,
.section {
  display: flex;
  justify-content: center;
  padding-top: 180rem;
  padding-bottom: 40rem;
}
.section {
  padding-top: 40rem;
}
.section2 {
  flex-direction: column;
  align-items: center;
  padding-top: 70rem;
}
.question {
  background: #fafcfe;
  padding: 70rem 0 280rem;
}
.company {
  background-image: url(../images/company-bg.jpg);
  background-size: 100% auto;
  background-position: auto top;
  flex-direction: column;
  align-items: center;

  padding: 80rem 5px 70rem;
}
.case {
  flex-direction: column;
  align-items: center;
  padding-bottom: 60rem;
  padding-top: 110rem;
}
.given {
  padding: 100rem 0 110rem;
}
.aboutUs {
  padding: 94rem 0 40rem;
}

/*  */
.cardlist {
  display: flex;
  justify-content: space-between;
  margin-top: 58rem;
}

.cardlist .cardlist-item {
  width: 18%;
  padding: 32rem 16rem;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  box-shadow: 0 5px 10px 1px #e5eaef;
  text-align: center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  cursor: default;
}

.cardlist .cardlist-item:hover {
  box-shadow: 0 5px 10px 1px #b5b7b9;
}
.cardlist .cardlist-item:hover h6 {
  color: #176ae6;
}

.cardlist .cardlist-item h6 {
  font-size: 20rem;
  color: #333;
  margin: 0;
  text-align: center;
  font-weight: bolder;
  margin: 30rem 0 20rem;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.cardlist .cardlist-item p {
  color: #888c92;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

.cardlist .cardlist-item img {
  width: 90rem;
}

.process {
  width: 100%;
  height: 118rem;
  margin-top: 70rem;
  max-width: 1920px;
}

.iconlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10rem;
}
.iconlist .iconlist-item {
  width: 25%;
  text-align: center;
  margin-top: 48rem;
}

.iconlist .iconlist-item p {
  color: #333;
  font-size: 18rem;
  margin-top: 30rem;
}

.iconlist .iconlist-item img {
  width: 120rem;
}

.caselist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20rem;
  margin-top: 50rem;
}

.caselist-item {
  width: 30%;
  box-shadow: 0 5px 10px 1px #e5eaef;
  padding: 20rem 0;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  margin-bottom: 28rem;
  color: #333;
  background: #fff;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.caselist-item:hover {
  background: #176ae6;
  color: #fff;
}

.caselist-item:hover p {
  background: #176ae6;
  color: #fff;
}

.caselist-item:hover img {
  transform: scale(1.15);
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
}
.caselist-item > div {
  overflow: hidden;
  padding: 0 0rem;
  width: calc(100% - 40rem);
  background: #fff;
}
.caselist-item img {
  width: 100%;
  position: relative;
  z-index: 40;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.caselist-item p {
  padding: 20rem 0 0;
  margin: 0;
  margin-top: -20rem;
  font-size: 18rem;
  text-align: center;
  border-top: 1px solid #fff;
  z-index: 50;
  position: relative;
  background: #fff;
  border-top: 1px solid #e5f7f9;
  width: 100%;
}

.section .content {
  width: 100%;
}

.content-footer {
  background-image: url(../images/program-bg.jpg);
  background-size: 100% 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  height: 180rem;
}
.content-footer-main > div {
  position: relative;
  width: 25%;
}
.content-footer-main > div:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 55rem;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.content-footer-main {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.content-footer-main h5 {
  font-size: 46rem;
  margin: 0;
  font-style: italic;
}

.content-footer-main p {
  font-size: 16rem;
  margin-top: 5px;
  margin-bottom: 0;
}

.content-main {
  background-image: url(../images/section-bg.jpg);
  background-size: 100% 100%;
  height: 717rem;
  padding: 73rem 0;
  display: flex;
  justify-content: center;
  margin-top: 55rem;
}

.question-titles {
  display: flex;
  justify-content: space-between;
  margin-top: 58rem;
}
.question-title {
  width: 380rem;
  height: 115rem;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.question-title:first-child {
  background-image: url(../images/title1.jpg);
}
.question-title:nth-child(2) {
  background-image: url(../images/title2.jpg);
}
.question-title:last-child {
  background-image: url(../images/title3.jpg);
}

.question-title h5 {
  font-size: 30rem;
  margin: 0;
}

.question-title p {
  font-size: 16rem;
  margin-top: 10px;
  margin-bottom: 0;
}

.question-eassies {
  display: flex;
  justify-content: space-between;
}

.question-eassies ul {
  list-style: none;
  padding: 0;
  width: 380rem;
  padding: 0 5px;
}

.question-eassies ul a {
  display: flex;
  text-decoration: none;
  justify-content: space-between;
  color: #333;
  margin-top: 20rem;
  font-size: 14rem;
}

.question-eassies ul span {
  color: #888c92;
}

.service {
  background-image: url(../images/service-bg.png);
  width: 1138rem;
  height: 214rem;
  position: relative;
  top: -120rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 70rem;
  background-repeat: no-repeat;
}

.service .left h5 {
  color: #fff;
  font-size: 30rem;
  margin: 0;
  letter-spacing: 1px;
  font-weight: normal;
}

.service .left p {
  font-size: 18rem;
  color: #fff;
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.service .left p img {
  margin-right: 10rem;
}

.service a {
  color: #fff;
  text-decoration: none;
  width: 185rem;
  height: 55rem;
  border: 1px solid #fff;
  border-radius: 7rem;
  -webkit-border-radius: 7rem;
  -moz-border-radius: 7rem;
  -ms-border-radius: 7rem;
  -o-border-radius: 7rem;
  text-align: center;
  line-height: 55rem;
  font-size: 20rem;
}

/* footer */

footer {
  background-image: url(../images/footer-bg.jpg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40rem;
  background-size: 100% 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
}

.footer-bottom-left {
  color: #b2bdce;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 10rem;
  font-size: 14px;
}
.footer-bottom-left p {
  margin: 5px 0;
}
.footer-bottom-right {
  color: #b2bdce;
  text-align: center;
  font-size: 18rem;
}

.footer-bottom-right img {
  width: 139rem;
  height: 139rem;
  margin-bottom: 5rem;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  margin-top: -100rem;
}
.footer-main-right {
  display: flex;
  justify-content: space-between;
  padding: 20rem 0;
  flex: 2;
}

.footer-main-right ul {
  list-style: none;
  padding: 0;
  color: #fff;
}

.footer-main-right ul h6 {
  font-size: 20rem;
  margin: 0 0 20rem;
}
.footer-main-right ul li {
  margin: 10px 0;
}
.footer-main-right ul a {
  text-decoration: none;
  color: #b0b7bb;
  font-size: 14rem;
}

.footer-main-left {
  flex: 1;
  padding: 20rem 0;
}
.footer-main-left p {
  font-size: 20rem;
  color: #fff;
  display: flex;
  align-items: center;
}
.footer-main-left p img {
  margin-right: 15px;
}

.footer-main-left h5 {
  font-size: 30rem;
  color: #fff;
  margin: 0;
}

/* 理念 */
.about-linian {
  width: 48.7%;
  height: 200rem;
  margin-top: 30rem;
  background: #ffffff;
  box-shadow: 0px 0px 6rem 4rem #f2f5f7;
  border-radius: 6rem;
  padding: 30rem;
}

.about-linian .about-linian-top {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.about-linian-bot {
  font-size: 16rem;
  font-weight: 400;
  color: #505255;
  line-height: 32rem;
  padding-top: 30rem;
}

.about-linian-top > div {
  padding-left: 23rem;
}
.about-linian-top p {
  font-size: 24rem;
  font-weight: bold;
  color: #2b2d2f;
  margin: 0;
}

.about-linian-top span {
  font-size: 14rem;
  font-weight: 400;
  color: #a2a2a2;
}
@media screen and (min-width: 1921px) {
  .banner {
    background-size: 100% auto;
    background-position: center;
  }
}

/* 分页 */
.pages-box {
  margin-bottom: 8rem;
}
.itemcenter {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.pages-box ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0;
  list-style: none;
}

.pages-box ul li:first-child,
.pages-box ul li:last-child {
  width: 60rem;
}
.pages-box ul li {
  background: #ffffff;
  border-radius: 2rem;
  border: 1px solid #d7dde4;
  font-weight: 400;
  width: 28rem;
  height: 28rem;
  text-align: center;
  line-height: 28rem;
  margin-left: 12rem;
  color: #4b62ff;
}

.pages-box ul li.active {
  background: linear-gradient(45deg, #4b62ff 0%, #5ca1ff 100%);
  color: #fff;
}

.pages-box ul li a {
  text-decoration: none;
}

/* 全域小程序解决方案 */
.allarea {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content-main-left h5 {
  font-size: 36rem;
  color: #333333;
  margin: 0;
  text-align: center;
  margin: 27rem 0 66rem;
}

.content-main-right {
  padding-left: 122rem;
}
.content-main-right > div {
  background: #fff;
  width: 1130rem;
  height: 560rem;
  border-radius: 10rem;
  -webkit-border-radius: 20rem;
  -moz-border-radius: 10rem;
  -ms-border-radius: 10rem;
  -o-border-radius: 10rem;
  box-shadow: 0px 0px 5rem 0rem #e5f7f9;
}

.content-tabs {
  display: flex;
  align-items: center;
  height: 60rem;
  border-bottom: 1px solid #e5f7f9;
  position: relative;
}
.mobile-content-tabs {
  display: flex;
  align-items: center;
  height: 40rem;
  border-bottom: 1px solid #e5f7f9;
  position: relative;
  padding-right: 80rem;
}

.mobile-tabs {
  overflow-x: scroll;
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
}
.mobile-tabs::-webkit-scrollbar {
  display: none; /* Chrome Safari */
}

.mobile-content-tabs .arrows {
  right: 5px;
}
.mobile-content-tabs .arrows span {
  width: 20rem;
  height: 20rem;
  border-radius: 10rem;
  -webkit-border-radius: 10rem;
  -moz-border-radius: 10rem;
  -ms-border-radius: 10rem;
  -o-border-radius: 10rem;
  line-height: 20rem;
  margin-left: 10rem;
  padding: 0;
  position: relative;
}
.mobile-content-tabs .mobile-tabs span.active::after {
  content: '';
  background: #176ae6;
  width: 50px;
  height: 3rem;
  position: absolute;
  bottom: -10rem;
  left: 50%;
  border-radius: 1.5rem;
  -webkit-border-radius: 1.5rem;
  -moz-border-radius: 1.5rem;
  -ms-border-radius: 1.5rem;
  -o-border-radius: 1.5rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.content-tabs > span,
.mobile-content-tabs span {
  padding: 0 30px;
  font-size: 16rem;
  color: #333;
  position: relative;
  text-align: center;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-content-tabs span {
  padding: 0 10px;
  font-size: 12rem;
  width: 80px;
}

.content-tabs span.active,
.mobile-content-tabs span.active {
  color: #176ae6;
}
.content-tabs .line,
.mobile-content-tabs .line {
  content: '';
  background: #176ae6;
  width: 65px;
  height: 3rem;
  position: absolute;
  bottom: 0rem;
  left: 30rem;
  border-radius: 1.5rem;
  -webkit-border-radius: 1.5rem;
  -moz-border-radius: 1.5rem;
  -ms-border-radius: 1.5rem;
  -o-border-radius: 1.5rem;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.arrows {
  position: absolute;
  right: 30rem;
}

.arrows span {
  display: inline-block;
  width: 30rem;
  height: 30rem;
  background: #d9dfe9;
  color: #fff;
  border-radius: 15rem;
  -webkit-border-radius: 15rem;
  -moz-border-radius: 15rem;
  -ms-border-radius: 15rem;
  -o-border-radius: 15rem;
  text-align: center;
  font-size: 20rem;
  line-height: 30rem;
  margin-left: 28rem;
}

.arrows span.active {
  background: #176ae6;
}

.content-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 60rem);
}

.content-content .content-content-bot {
  display: flex;
  align-items: center;
  padding: 20rem 0;
  justify-content: space-around;
  border-top: 1px solid #e5f7f9;
}
.content-content .content-content-bot > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #a3a9ad;
  font-size: 14rem;
  text-align: center;
}

.content-content .content-content-bot img {
  width: 40rem;
  margin-bottom: 5px;
}

.content-content-main {
  display: flex;
  align-items: center;
  flex: 1;
  height: calc(100% - 100rem);
}
.content-content-main-left {
  padding: 0 50rem;
}

.content-content-main-left h5 {
  color: #333;
  font-size: 18rem;
  margin: 0 0 24rem;
}

.content-content-main-left a {
  color: #176ae6;

  font-size: 18rem;
}

.content-content-main-left p {
  color: #a3a9ad;
  font-size: 14rem;
  line-height: 1.7;
  margin-bottom: 60rem;
}
.content-content-main-right img {
  width: 400rem;
}
/*  css动画   */
@keyframes lineGrow {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* 客服 */
.fixed-right {
  position: fixed;
  right: 0;
  top: 50%;
}

.fixed-right > div {
  background: #97bffb;
  width: 87rem;
  height: 87rem;
  border-radius: 6rem;
  -webkit-border-radius: 6rem;
  -moz-border-radius: 6rem;
  -ms-border-radius: 6rem;
  -o-border-radius: 6rem;
  display: flex;
  margin-bottom: 10rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.fixed-right > div:hover {
  background: #176ae6;
}

.fixed-right > div span {
  font-size: 14rem;
  margin-top: 10rem;
  color: #fff;
}

.telephone {
  display: none;
  position: absolute;
  right: 110%;
  background-color: #fff;
  color: #176ae6;
  font-size: 16rem;
  padding: 15rem 20rem;
  box-shadow: 0 6px 10px 1px #e5eaef;
  border-radius: 5rem;
  -webkit-border-radius: 5rem;
  -moz-border-radius: 5rem;
  -ms-border-radius: 5rem;
  -o-border-radius: 5rem;
}

.fixed-right > div:last-child:hover .telephone {
  display: block;
}

@media screen and (max-width: 960px) {
  html {
    font-size: calc(100vw / 375);
  }
  .double-title {
    font-size: 24rem;
  }
  .double-title p:last-child {
    font-size: 20rem;
    margin-top: -7rem;
  }
  .about-linian {
    height: auto;
    padding: 15rem;
  }
  .about-linian-top p {
    font-size: 18rem;
  }
  .about-linian-top img {
    width: 40rem;
  }
  .about-linian-bot {
    font-size: 12rem;
  }
  .pc-header {
    display: none;
  }
  .banner {
    display: none !important;
  }
  .section1,
  .section {
    padding-top: 50rem;
  }
  .container {
    width: 100%;
    padding: 0 15rem;
  }

  .title h5 {
    font-size: 20rem;
    color: #333;
    margin: 0;
    font-weight: normal;
  }
  .title p {
    font-size: 12rem;
    margin-top: 10rem;
    color: #888c92;
  }

  .cardlist {
    flex-wrap: wrap;
  }
  .cardlist .cardlist-item {
    width: 32.5%;
    padding: 15rem 10rem;
    margin-bottom: 20rem;
  }

  .cardlist .cardlist-item h6 {
    font-size: 12rem;
    margin: 15rem 0 10rem;
  }
  .cardlist .cardlist-item p {
    font-size: 12rem;
  }
  .cardlist .cardlist-item img {
    width: 45rem;
  }
  .cardlist .cardlist-item:nth-child(4),
  .cardlist .cardlist-item:nth-child(5) {
    width: 48%;
  }
  .caselist {
    padding: 0;
  }
  .caselist .caselist-item {
    width: 49%;
    padding: 10rem 0;
  }
  .caselist-item p {
    font-size: 12rem;
    padding: 10rem 0 0;
  }
  .caselist-item > div {
    width: calc(100% - 20rem);
  }
  .iconlist .iconlist-item img {
    width: 60rem;
  }
  .iconlist .iconlist-item p {
    font-size: 12rem;
    margin: 10rem;
  }
  .iconlist .iconlist-item {
    margin-top: 20rem;
  }
  .given {
    padding: 50rem 0 55rem;
  }
  .question-titles {
    margin-top: 20rem;
  }

  .pc-question {
    display: none;
  }
  .mobile-question {
    display: block !important;
  }
  .question-eassies ul {
    width: 100%;
  }
  .question-eassies {
    flex-wrap: wrap;
  }

  .question-eassies ul:nth-child(2) .question-title {
    background-image: url(../images/title2.jpg);
  }
  .question-eassies ul:nth-child(3) .question-title {
    background-image: url(../images/title3.jpg);
  }
  .question-title {
    justify-content: center !important;
    color: #fff !important;
    width: 100%;
    height: 60rem;
  }
  .question-title h5 {
    font-size: 16rem;
  }
  .question-title p {
    font-size: 12rem;
  }
  .question {
    padding-bottom: 120rem;
  }

  .question-eassies ul a {
    font-size: 12rem;
  }

  .service {
    width: 345rem;
    height: 87rem;
    background-size: 100% 100%;
    padding: 60rem 20rem;
    top: -80rem;
  }
  .service .left h5 {
    font-size: 14rem;
  }
  .service a {
    width: 85rem;
    height: 37rem;
    font-size: 12rem;
    line-height: 37rem;
  }
  .service .left p {
    font-size: 12rem;
  }
  .service .left p img {
    width: 20rem;
  }
  .footer-main {
    flex-direction: column;
  }
  .footer-main-right {
    flex-direction: column;
  }
  footer {
    background-size: 100% 100%;
    background-image: url(../images/footer-mobile.png);
  }
  .footer-main-left p {
    font-size: 12px;
  }
  .footer-main-left h5 {
    font-size: 16rem;
  }
  .footer-main-left {
    margin-top: 20rem;
  }
  .footer-main-right ul h6 {
    width: 100%;
    margin: 10rem 0 10rem;
    font-size: 16rem;
  }
  .footer-main-right ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 12rem;
  }
  .footer-bottom-right {
    position: absolute;
    top: -60rem;
    right: 15rem;
  }
  .footer-bottom-right img {
    width: 80rem;
    height: 80rem;
  }
  .footer-bottom-right p {
    font-size: 12rem;
  }
  .footer-bottom-left {
    font-size: 12px;
  }
  .footer-main-right ul a {
    font-size: 12rem;
  }
  .footer-main-right {
    padding: 0;
  }
  .process {
    display: none;
  }
  .process-mobile {
    display: block !important;
    width: 100%;
  }
  .company,
  .case {
    padding-bottom: 0;
  }

  .content-footer {
    height: auto;
  }
  .content-footer-main {
    flex-wrap: wrap;
  }
  .content-footer-main > div {
    width: 50%;
    padding: 20rem 0;
  }
  .content-footer-main h5 {
    font-size: 24rem;
  }
  .content-footer-main p {
    font-size: 12rem;
  }
  .content-footer {
    background-image: url(../images/program-mobile.png);
  }
  .content-footer-main > div:not(:last-child)::after {
    height: 27rem;
  }
  .content-footer-main > div:nth-child(2):after {
    display: none;
  }
  .allarea {
    flex-direction: column;
  }
  /* .content-main-right > div {
    width: 375rem;
  } */
  .content-main-right {
    width: 100%;
    padding: 80rem 0rem 20rem;
  }
  .content-tabs {
    width: 100%;
  }

  .content-main {
    background-image: url(../images/section-mobile.jpg);
    padding: 0;
    height: auto;
    margin-top: 20rem;
  }
  .content-main-left {
    text-align: center;
    padding: 15rem;
  }
  .content-main-left img {
    width: 88rem;
  }
  .content-main-left h5 {
    font-size: 16rem;
    margin: 10rem 0;
  }
  button {
    width: 115rem;
    height: 36rem;
    font-size: 14rem;
  }
  .pc-content {
    display: none;
  }
  .mobile-content {
    display: block !important;
    width: 100% !important;
    height: auto !important;
  }
  .content-content {
    height: auto;
  }
  .content-content-main {
    flex-direction: column-reverse;
  }
  .content-content .content-content-bot {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 10rem;
  }
  .content-content .content-content-bot img {
    width: 25rem;
    margin-top: 10rem;
  }
  .content-content .content-content-bot > div {
    font-size: 12rem;
    padding: 0 10rem;
    width: calc(100% / 5);
  }
  .content-content-main-right img {
    width: 200rem;
    margin: 20rem;
  }
  .content-content-main-left h5 {
    font-size: 14rem;
    margin: 0;
  }
  .content-content-main-left p {
    font-size: 12rem;
    margin: 10rem 0;
  }
  .content-content-main-left a {
    font-size: 14rem;
  }
  .content-content-main-left {
    padding-bottom: 20rem;
  }
  .content-content-main-left {
    padding: 20rem 30rem;
  }
  .mobile-banner {
    display: block !important;
    position: relative;
    margin-bottom: 200rem;
    margin-top: 50rem;
  }
  .mobile-banner img {
    width: 100%;
  }
  .mobile-banner-content {
    position: absolute;
    width: 100%;
    top: 200rem;
    text-align: center;
  }
  .form {
    background: #fff;
    border-radius: 6rem;
    -webkit-border-radius: 6rem;
    -moz-border-radius: 6rem;
    -ms-border-radius: 6rem;
    -o-border-radius: 6rem;
    padding: 20rem;
    margin: 80rem 20rem;
    box-shadow: 0 6px 10px 1px #e5eaef;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .form h5 {
    font-size: 18rem;
    margin: 0 0 10rem;
  }

  .form input {
    background: #f9f9f9;
    border: none;
    outline: none;
    height: 40rem;
    padding: 0 15rem;
    border-radius: 20rem;
    -webkit-border-radius: 20rem;
    -moz-border-radius: 20rem;
    -ms-border-radius: 20rem;
    -o-border-radius: 20rem;
    width: 300rem;
    font-size: 12rem;
    margin: 8rem 0;
  }
  button.radio {
    font-size: 12rem;
    width: 300rem;
  }
  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex !important;
    justify-content: space-between;
    background: #f0f7ff;
    height: 50rem;
    align-items: center;
    padding: 15rem;
  }
  .mobile-header img {
    width: 30rem;
  }
  .menu-btn {
    position: relative;
  }
  .menu-btn img {
    width: 20rem;
  }
  .mobile-menu {
    list-style: none;
    padding: 0;
    position: absolute;
    border-radius: 6rem;
    -webkit-border-radius: 6rem;
    -moz-border-radius: 6rem;
    -ms-border-radius: 6rem;
    -o-border-radius: 6rem;
    top: 100%;
    right: 100%;
    overflow: hidden;
    z-index: 999;
  }
  .mobile-menu li {
    width: 150rem;
    height: 50rem;
    line-height: 50rem;
    background: #fff;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
  }
  .mobile-menu li::before {
    content: '';
    width: 5rem;
    height: 5rem;
    border-radius: 2.5rem;
    -webkit-border-radius: 2.5rem;
    -moz-border-radius: 2.5rem;
    -ms-border-radius: 2.5rem;
    -o-border-radius: 2.5rem;
    border: 1px solid #7c94b8;
    margin: 0 20rem;
  }
  .mobile-menu li a {
    color: #333;
    font-size: 13rem;
  }

  .mobile-menu li.active {
    background: #176ae6;
  }
  .mobile-menu li.active a {
    color: #fff;
  }
  .mobile-menu li.active::before {
    background: #fff;
  }
  .fixed-right > div {
    width: 50rem;
    height: 50rem;
  }
  .fixed-right > div img {
    width: 16rem;
  }
  .fixed-right > div span {
    font-size: 12rem;
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    margin-top: 5rem;
  }
}

/*.menu-btn:hover .mobile-menu {*/
/*  display: inline !important;*/
/*}*/
.mobile-banner,
.mobile-header,
.mobile-question,
.process-mobile,
.mobile-content,
.mobile-menu {
  display: none;
}
