.querys {
  background: #ffffff;
  overflow: hidden;
  padding: 0 15px;
  position: relative;
}
.querys .query-center {
  max-width: 1100px;
  margin: 180px auto 180px;
  background: #e9edf1;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.querys .query-center .title {
  width: 100%;
  max-width: 400px;
  text-align: center;
  margin-right: 20px;
}
.querys .query-center .title img {
  width: 70px;
}
.querys .query-center .title p {
  margin-top: 20px;
  font-size: 40px;
  font-weight: bold;
  color: #3049a1;
  line-height: 40px;
  min-width: 200px;
  display: block;
}
.querys .query-center .right-box {
  width: 500px;
  min-width: 300px;
  margin-right: 100px;
}
.querys .query-center .right-box .form .item {
  width: 100%;
  margin-bottom: 20px;
}
.querys .query-center .right-box .form .item .input-title {
  font-size: 18px;
  font-weight: 400;
  color: #3c3c3c;
  line-height: 32px;
}
.querys .query-center .right-box .form .item .input {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  background: #f9fafc;
  border-radius: 5px;
  border: 1px solid #f9fafc;
}
.querys .query-center .right-box .form .item .input textarea,
.querys .query-center .right-box .form .item .input input {
  width: 93%;
  height: 100%;
  background: transparent;
  border: none;
  font-size: 16px;
  padding: 0 17px;
  color: #3c3c3c;
}
.querys .query-center .right-box .form .item .input textarea {
  margin: 20px 0;
  width: 97%;
  height: 80%;
}
.querys .query-center .right-box .form .item .input-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.querys .query-center .right-box .form .item .input-code .input {
  flex: 1;
}
.querys .query-center .right-box .form .item .input-code .code {
  cursor: pointer;
  margin: 8px 0 0 15px;
  height: 46px;
}
.querys .query-center .right-box .form .item .input-code .code img {
  height: 100%;
  display: inline;
}
.querys .query-center .right-box .btn {
  width: 160px;
  height: 44px;
  background: #3049a1;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  color: #f9fafc;
  line-height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  cursor: pointer;
}
.querys .query-center .right-box .result {
  display: none;
}
.querys .query-center .right-box .result .tit {
  font-size: 24px;
  font-weight: bold;
  color: #3049a1;
  line-height: 40px;
  margin-bottom: 17px;
}
.querys .query-center .right-box .result .ct {
  line-height: 64px;
}
.querys .query-center .right-box .result .ct .it:last-child {
  margin-bottom: -20px;
}
.querys .query-center .right-box .result .ct .it .lb {
  padding-right: 20px;
}
.querys .query-center .right-box .result .ct .it .link {
  color: #3049a1;
  cursor: pointer;
  font-weight: bold;
}
.querys .query-center .right-box .result .ct .it .link:hover {
  font-weight: bolder;
  text-decoration: underline;
}
.querys .query-center .right-box .result .btn-box {
  margin-top: 40px;
}
.querys .query-center .right-box .result .btn-box .btn {
  margin-top: 0;
  margin-bottom: 5px;
}
@media screen and (max-width: 840px) {
  .querys .query-center {
    margin: 100px auto;
  }
  .querys .query-center .right-box {
    width: 100%;
    margin-right: 0px;
  }
}
@media screen and (max-width: 730px) {
  .querys .query-center {
    flex-direction: column;
    padding: 50px 20px;
  }
  .querys .query-center .title p {
    margin-top: 10px;
    font-size: 32px;
  }
  .querys .query-center .right-box {
    margin-top: 30px;
    width: 100%;
    margin-right: 0px;
  }
  .querys .query-center .right-box .form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .querys .query-center .btn {
    width: 100%;
  }
}
.querys .diy-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 11;
  display: none;
}
.querys .diy-dialog .dialog-box {
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  border-radius: 3px;
  text-align: center;
  padding: 20px;
}
.querys .diy-dialog .dialog-box .dialog-title {
  line-height: 40px;
  font-weight: bold;
}
.querys .diy-dialog .dialog-box input {
  background-color: transparent;
  border: 1px solid #ddd;
  padding: 10px 20px;
  margin-top: 20px;
  width: 280px;
  border-radius: 3px;
}
.querys .diy-dialog .dialog-box .btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 10px;
}
.querys .diy-dialog .dialog-box .btn-box .btn {
  border: 0;
  background: #3049a1;
  color: #fff;
  padding: 5px 12px;
  border-radius: 3px;
  cursor: pointer;
}
.querys .diy-dialog .dialog-box .btn-box .btn.cancle {
  margin-right: 20px;
  background-color: #fff;
  color: #333;
  border: 1px solid #333;
  margin-right: 90px;
}
@media screen and (max-width: 500px) {
  .querys .diy-dialog .dialog-box {
    width: 80%;
  }
}


.querys .swiper-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000007c;
  z-index: 1300;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;

}
.querys .swiper-box .close-btn {
  margin-bottom: 30px;
  width: 85%;
  /*max-width: 400px;*/
  text-align: right;
  cursor: pointer;
}
.querys .swiper-box .close-btn img {
  max-width: 40px;
  height: 40px;
}

.querys .swiper-content{
  width: 85%;
   position: relative;
   overflow: hidden;
}
.querys .swiper-box .swiper-view {
     width: 100%;
    position: relative;
  
}
/*.querys .swiper-box .swiper-view .swiper-wrapper{*/
/*  width: 100%;*/
/*}*/

.querys .swiper-box .swiper-view img {
  width: 100%;
}
.swiper-box .btn-view {
  margin-top: 30px;
  width: 85%;
  max-width: 400px;
  cursor: pointer;
}
.querys .swiper-box .btn-view a {
  width: 100%;
  height: 50px;
  border-radius: 40px;
  background-color: #0A9AA5;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-size: 18px;
}
.querys .swiper-box .btn-view a img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.querys .swiper-box .tip-text {
  margin-top: 15px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
}
.querys .loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000007c;
  z-index: 1300;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.querys .loading img {
  width: 40px;
  height: 40px;
}








