.flex {
  display: flex;
}
.flex.column {
  flex-direction: column;
}
.flex.column.column-center {
  align-content: center;
}
.flex.column.column-space-between {
  align-content: space-between;
}
.flex.column.column-start {
  align-content: flex-start;
}
.flex.column.column-end {
  align-content: flex-end;
}
.flex.center {
  justify-content: center;
}
.flex.start {
  justify-content: flex-start;
}
.flex.end {
  justify-content: flex-end;
}
.flex.space-between {
  justify-content: space-between;
}
.flex.space-around {
  justify-content: space-around;
}
.flex.middle {
  align-items: center;
}
.flex.stretch {
  align-items: stretch;
}
.flex.top {
  align-items: flex-start;
}
.flex.bottom {
  align-items: flex-end;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.grow {
  flex-grow: 1;
}

.flex-one {
  flex: 1;
}

.flex-two {
  flex: 2;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Microsoft YaHei", tahoma, arial, "Hiragino Sans GB", STSong, sans-serif;
  --default-font-family: "Microsoft YaHei", tahoma, arial, "Hiragino Sans GB", STSong, sans-serif;
  font-size: 16px;
  color: #222;
}

.pc-show {
  display: block;
}

.pc-hide {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

input::-webkit-input-placeholder,
input:-moz-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
textarea::-webkit-input-placeholder,
textarea:-moz-placeholder,
textarea::-moz-placeholder,
textarea:-ms-input-placeholder {
  color: #848484;
}

@media (max-width: 1201px) {
  .tablet-show {
    display: block;
  }

  .tablet-hide {
    display: none;
  }
}
@media (max-width: 1000px) {
  .phone-show {
    display: block;
  }

  .phone-hide {
    display: none;
  }
}
/*header*/
header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: 999;
}
header .logo {
  background: url(../image/logo.png?t=23) no-repeat 0 0;
  width: 25%;
  height: 100px;
  background-position: center;
  background-size: 100% auto;
  display: block;
}
header .logo .span1{
    font-size: 29px;
    margin-left: 90px;
    padding-top: 28px;
    display: block;
}

header .items a {
  display: block;
  text-align: center;
  font-weight: bold;
}
header .items .item {
  width: 85px;
  background-color: rgba(107, 224, 253, 0);
  font-size: 14px;
  color: #222222;
  height: 100px;
  line-height: 100px;
  display: block;
  position: relative;
}
header .items .item:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #2098D1;
  height: 4px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  background-color: #26cdff;
}
header .items .item:hover:before, header .items .item:active:before {
  left: 0;
  right: 0;
}
header .items .item:hover {
  color: #26cdff;
}
header .items .tel-item {
  margin-left: 52px;
  width: 150px;
  height: 46px;
  line-height: 46px;
  background-color: #26cdff;
  font-size: 14px;
  color: white;
  text-align: center;
}

main {
  padding-top: 100px;
}

/*footer*/
footer .question-section {
  margin-top: 30px;
  height: 222px;
  z-index: 0;
  overflow: hidden;
  background: url(../image/bk-5.png) no-repeat 0 0;
  background-size: auto 100%;
  background-position: center;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
footer .question-section .content {
  width: 100%;
  height: 100%;
  background-color: rgba(3, 61, 117, 0.9019607843);
}
footer .question-section .content .question {
  margin-left: 75px;
  word-break: break-word;
  font-size: 50px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
}
footer .question-section .content .question:before {
  position: absolute;
  left: 0;
  top: 70px;
  width: 60px;
  height: 6px;
  background-color: #26cdff;
  content: "";
  display: block;
}
footer .question-section .content .question-btn {
  margin-right: 75px;
  width: 211px;
  height: 50px;
  line-height: 50px;
  z-index: 1;
  background-color: white;
  overflow: hidden;
  font-size: 14px;
  color: #222222;
  font-weight: bold;
  text-align: center;
  align-items: center;
  border-left-width: 2px;
  border-left-color: #26cdff;
  border-left-style: solid;
  border-top-width: 2px;
  border-top-color: #26cdff;
  border-top-style: solid;
  border-right-width: 2px;
  border-right-color: #26cdff;
  border-right-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: #26cdff;
  border-bottom-style: solid;
}
footer .question-section .content .question-btn:hover {
  color: #26cdff;
  border-top-color: #222222;
  border-top-style: solid;
  border-top-width: 2px;
  border-bottom-color: #222222;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-left-color: #222222;
  border-left-style: solid;
  border-left-width: 2px;
  border-right-color: #222222;
  border-right-style: solid;
  border-right-width: 2px;
}
footer .bottom-section {
  width: 100%;
  height: 400px;
  background-color: #033d75;
  margin-top: 30px;
  color: #ffffff;
}
footer .bottom-section .bottom-section-1 {
  font-size: 22px;
  word-break: break-word;
  color: #ffffff;
  padding-top: 35px;
  margin-left: 0;
  padding-bottom: 20px;
  line-height: 40px;
  font-family: Calibri;
  font-weight: bold;
}
footer .bottom-section .bottom-section-2 {
  width: 100%;
}
footer .bottom-section .bottom-section-2 .text-phone {
  display: none;
}
footer .bottom-section .bottom-section-2 .item {
  font-size: 16px;
  line-height: 1.3;
  word-break: break-word;
  margin-left: 20px;
}
footer .bottom-section .bottom-section-2 .item:first-of-type {
  margin-left: 0;
}
footer .bottom-section .bottom-section-2 .icon-phone {
  background: url(../image/phone.png) no-repeat 0 0;
  background-position: center;
  background-size: 100% 100%;
  width: 49px;
  height: 49px;
  display: block;
}
footer .bottom-section .bottom-section-2 .tel {
  font-size: 30px;
}
footer .bottom-section .bottom-section-2 .tel a:hover {
  color: #26cdff;
}
footer .bottom-section .bottom-section-3 {
  margin-top: 30px;
  font-size: 14px;
}
footer .bottom-section .bottom-section-4 {
  margin-top: 30px;
  height: 70px;
  border-top: rgba(255, 255, 255, 0.2509803922) solid 1px;
  font-size: 14px;
}
footer .bottom-section .bottom-section-4 a {
  color: #cccccc;
  margin: 0 20px;
}
footer .bottom-section .bottom-section-4 a:hover {
  color: #26cdff;
}

@media (max-width: 1200px) {
  .container {
    width: calc(100% - 30px);
    margin: 0 auto;
  }

  /*header*/
  header {
    width: 100%;
    height: auto;
    background: #ffffff;
  }
  header .menu-button {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
  }
  header .menu-button:before {
    content: "";
    position: absolute;
    top: 0px;
    left: calc(50% - 99px);
    background: url(../image/logo.png) no-repeat 0 0;
    width: 198px;
    height: 100%;
    background-position: center;
    background-size: auto 85%;
    display: block;
  }
  header .menu-button .points {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    width: 50px;
    height: 100%;
  }
  header .menu-button .points .p {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #222222;
    border-radius: 50%;
    transition: all 0.5s;
  }
  header .menu-button .points .p.p1 {
    left: 25%;
  }
  header .menu-button .points .p.p2 {
    left: 50%;
  }
  header .logo {
    display: none;
  }
  header .items.flex.middle {
    width: 100vh;
    height: calc(100vh - 30px);
    z-index: 1000;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
    display: none;
  }
  header .items.flex.middle .item {
    width: auto;
    background-color: rgba(107, 224, 253, 0);
    font-size: 1.5rem;
    color: #222222;
    height: 76px;
    line-height: 76px;
    display: block;
    position: relative;
  }
  header .items.flex.middle .item:before {
    left: unset;
    right: unset;
  }
  header .items.flex.middle .item:hover:before, header .items.flex.middle .item:active:before {
    left: unset;
    right: unset;
  }
  header .items.flex.middle .item:hover {
    color: #26cdff;
  }
  header .items.flex.middle .tel-item {
    margin-left: 0;
    width: 70%;
    height: 76px;
    line-height: 76px;
    background-color: #26cdff;
    font-size: 1.5rem;
    color: white;
    text-align: center;
  }
  header.menu-open {
    display: flex !important;
    flex-direction: column;
  }
  header.menu-open .points .p.p1, header.menu-open .points .p.p3, header.menu-open .points .p.p3 {
    left: 50%;
  }

  /*main*/
  main {
    padding-top: 60px;
  }

  /*footer*/
  footer .question-section {
    margin-top: 30px;
    height: auto;
  }
  footer .question-section .content {
    width: calc(100% - 2rem);
    height: calc(100% - 3rem);
    padding: 1.5rem 1rem;
  }
  footer .question-section .content .question {
    margin-left: 0.5rem;
    font-weight: bold;
    font-size: 1.5rem;
    position: relative;
    padding: 0;
  }
  footer .question-section .content .question:before {
    top: 2.2rem;
    width: 6rem;
    height: 6px;
  }
  footer .question-section .content .question-btn {
    margin-right: 0;
    width: 100%;
    height: 2rem;
    line-height: 2rem;
    margin-top: 2rem;
  }
  footer .bottom-section {
    width: 100%;
    height: auto;
    background-color: #033d75;
    margin-top: 1.5rem;
    color: #ffffff;
  }
  footer .bottom-section .bottom-section-1 {
    font-size: 1.2rem;
    padding-top: 35px;
    padding-bottom: 1rem;
    line-height: 1.5rem;
  }
  footer .bottom-section .bottom-section-2 {
    width: 100%;
  }
  footer .bottom-section .bottom-section-2 .text {
    display: none;
  }
  footer .bottom-section .bottom-section-2 .text-phone {
    display: flex;
    margin-bottom: 1rem;
  }
  footer .bottom-section .bottom-section-2 .item {
    font-size: 0.86rem;
    line-height: 1.3;
    word-break: break-word;
    margin-left: 20px;
  }
  footer .bottom-section .bottom-section-2 .item:first-of-type {
    margin-left: 0;
  }
  footer .bottom-section .bottom-section-2 .icon-phone {
    width: 2rem;
    height: 2rem;
  }
  footer .bottom-section .bottom-section-2 .tel {
    font-size: 1.5rem;
  }
  footer .bottom-section .bottom-section-3 {
    margin-top: 1rem;
    font-size: 14px;
  }
  footer .bottom-section .bottom-section-4 {
    margin-top: 30px;
    height: 70px;
    border-top: rgba(255, 255, 255, 0.2509803922) solid 1px;
    font-size: 14px;
  }
  footer .bottom-section .bottom-section-4 a {
    color: #cccccc;
    margin: 0 20px;
  }
  footer .bottom-section .bottom-section-4 a:hover {
    color: #26cdff;
  }
}
@media (max-width: 1000px) {
  .phone-show {
    display: block;
  }

  .phone-hide {
    display: none;
  }
}
/*index main css*/
main.index {
  /*section-1*/
  /*section-2*/
  /*section-3*/
  /*section-4*/
  /*section-5*/
  /*section-6*/
  /*section-7*/
}
main.index .section-1 {
  background: url(../image/bk.jpg) no-repeat 0 0;
  background-size: 100% auto;
  background-position: center;
  width: 100%;
  height: 555px;
}
main.index .section-1 .content {
  background-color: rgba(167, 167, 167, 0.5);
  width: 100%;
  padding-top: 100px;
  height: calc(100% - 100px);
}
main.index .section-1 .content .section-1-1 {
  font-size: 44px;
  color: #ffffff;
  font-weight: bold;
  padding-left: 20px;
  border-left-width: 8px;
  border-left-color: #26cdff;
  border-left-style: solid;
}
main.index .section-1 .content .section-1-2 {
  font-size: 44px;
  color: #05536a;
  font-weight: bold;
  margin: 20px 0 60px;
}
main.index .section-1 .content .section-1-3 {
  width: 293.5px;
  height: 57px;
  line-height: 57px;
  background-color: #26cdff;
  font-size: 24px;
  color: white;
  display: block;
  font-weight: bold;
  text-align: center;
}
main.index .section-1 .content .section-1-3:hover {
  background-color: white;
  border-top-color: #26cdff;
  border-top-style: solid;
  border-top-width: 1px;
  border-bottom-color: #26cdff;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-left-color: #26cdff;
  border-left-style: solid;
  border-left-width: 1px;
  border-right-color: #26cdff;
  border-right-style: solid;
  border-right-width: 1px;
  font-size: 14px;
  color: #26cdff;
}
main.index .section-2 .title {
  font-weight: bold;
  font-size: 40px;
  position: relative;
  margin: 50px 0;
  text-align: center;
}
main.index .section-2 .title:before {
  content: "";
  width: 166px;
  height: 6px;
  position: absolute;
  top: 60px;
  left: calc(50% - 83px);
  bottom: unset;
  background-color: #26cdff;
}
main.index .section-2 .items .item {
  width: 31%;
  height: auto;
}
main.index .section-2 .items .item .content {
  background-color: rgba(3, 61, 117, 0.9019607843);
  width: 100%;
  height: calc(100% - 40px);
  padding-top: 40px;
}
main.index .section-2 .items .item .content img {
  width: auto;
  height: 64px;
  margin: 0 auto 20px;
  display: block;
}
main.index .section-2 .items .item .content .item-title {
  color: #26cdff;
  font-size: 22px;
  text-align: center;
  font-weight: bold;
}
main.index .section-2 .items .item .content .item-text {
  color: #ffffff;
  font-size: 16px;
  padding: 20px 20px 40px;
}
main.index .section-2 .items .item:nth-of-type(1) {
  background: url(../image/pic-1.jpg) no-repeat 0 0;
  background-position: center;
  background-size: cover;
}
main.index .section-2 .items .item:nth-of-type(2) {
  background: url(../image/bk-2.jpg) no-repeat 0 0;
  background-position: center;
  background-size: cover;
}
main.index .section-2 .items .item:nth-of-type(3) {
  background: url(../image/bk-3.jpg) no-repeat 0 0;
  background-position: center;
  background-size: cover;
}
main.index .section-2 .hot-line {
  color: #f39c12;
  font-size: 20px;
  font-weight: bold;
  margin: 50px auto;
  text-align: center;
}
main.index .section-3 {
  width: 100%;
  background-image: url(../image/bk-4.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  margin-top: 20px;
  position: relative;
  overflow: visible;
}
main.index .section-3 .content {
  background-color: rgba(28, 28, 28, 0.5);
  width: 100%;
  height: 100%;
}
main.index .section-3 .content .container {
  padding-top: 100px;
  position: relative;
  padding-bottom: 70px;
}
main.index .section-3 .content .container .man {
  background: url(../image/man.png) no-repeat 0 0;
  background-position: right bottom;
  background-size: auto 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 110%;
}
main.index .section-3 .content .container .form {
  width: 60%;
}
main.index .section-3 .content .container .form .title {
  font-weight: bold;
  font-size: 40px;
  color: #ffffff;
  position: relative;
}
main.index .section-3 .content .container .form .title:before {
  position: absolute;
  left: 0;
  top: 60px;
  width: 160px;
  height: 6px;
  background-color: #26cdff;
  content: "";
  display: block;
}
main.index .section-3 .content .container .form .des {
  color: #f1c40f;
  font-size: 16px;
  margin: 30px 0 20px;
}
main.index .section-3 .content .container .form input, main.index .section-3 .content .container .form textarea, main.index .section-3 .content .container .form .select {
  margin-bottom: 20px;
}
main.index .section-3 .content .container .form .input-group input {
  width: calc(50% - 30px);
  height: 50px;
  background-color: white;
  font-size: 14px;
  color: #848484;
  padding: 0 10px;
  line-height: 50px;
  border: none;
}
main.index .section-3 .content .container .form .input-group .select {
  width: calc(50% - 10px);
  height: 50px;
  background-color: white;
  font-size: 14px;
  color: #848484;
  line-height: 50px;
  border: none;
  padding: 0;
}
main.index .section-3 .content .container .form .input-group .select .select2-container .select2-selection--single {
  border-radius: 0;
  height: 48px;
  border: none;
}
main.index .section-3 .content .container .form .input-group .select .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 48px;
  padding: 0 10px;
}
main.index .section-3 .content .container .form .input-group .select .select2-container .select2-selection--single .select2-selection__arrow {
  top: calc(50% - 13px);
}
main.index .section-3 .content .container .form textarea {
  width: calc(100% - 20px);
  height: 140px;
  background-color: white;
  font-size: 14px;
  color: #848484;
  padding: 10px;
  line-height: 20px;
  border: none;
}
main.index .section-3 .content .container .form .btn-submit {
  background-color: #26cdff;
  border: 1px solid #26cdff;
  width: 100%;
  height: 46px;
  line-height: 46px;
  font-size: 14px;
  color: white;
  text-align: center;
  display: block;
  font-weight: bold;
}
main.index .section-3 .content .container .form .btn-submit:hover {
  color: #26cdff;
  background-color: rgba(38, 205, 255, 0);
  border: 1px solid #26cdff;
}
main.index .section-4 {
  margin: 50px 0;
}
main.index .section-4 .left {
  width: 50%;
}
main.index .section-4 .left .title {
  font-weight: bold;
  font-size: 40px;
  position: relative;
}
main.index .section-4 .left .title:before {
  position: absolute;
  left: 0;
  top: 60px;
  width: 160px;
  height: 6px;
  background-color: #26cdff;
  content: "";
  display: block;
}
main.index .section-4 .left .items {
  margin-top: 20px;
}
main.index .section-4 .left .items .item {
  color: #777777;
  font-size: 16px;
  margin-bottom: 10px;
}
main.index .section-4 .left .items .item strong {
  color: #26cdff;
  font-size: 20px;
}
main.index .section-4 .right {
  width: 50%;
  overflow: hidden;
  height: 650px;
}
main.index .section-4 .right img {
  width: auto;
  height: 100%;
}
main.index .section-5 {
  background: url(../image/bk-5.jpg) no-repeat 0 0;
  background-size: 100% auto;
  background-position: center;
}
main.index .section-5 .content {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 50px 0;
}
main.index .section-5 .content .title {
  font-weight: bold;
  font-size: 36px;
}
main.index .section-5 .content .sub-title {
  font-weight: bold;
  font-size: 36px;
  color: #26cdff;
  position: relative;
}
main.index .section-5 .content .sub-title:before {
  position: absolute;
  left: 0;
  top: 50px;
  width: 160px;
  height: 6px;
  background-color: #26cdff;
  content: "";
  display: block;
}
main.index .section-5 .content .items {
  margin-top: 30px;
}
main.index .section-5 .content .items .item {
  font-size: 16px;
  color: #797979;
  margin-top: 10px;
  line-height: 2;
  margin-right: 100px;
}
main.index .section-5 .content .rect {
  width: calc(100% - 60px);
  padding: 30px;
  color: #ffffff;
  background-color: #033d75;
  margin-top: 30px;
}
main.index .section-5 .content .rect:hover {
  background-color: #26cdff;
}
main.index .section-5 .content .rect .text {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
main.index .section-5 .content .rect .sub-text {
  font-size: 14px;
}
main.index .section-5 .content .rect .btn {
  width: 211px;
  height: 50px;
  background-color: white;
  font-size: 14px;
  color: #222222;
  line-height: 50px;
  border-left-width: 2px;
  border-left-color: #26cdff;
  border-left-style: solid;
  border-top-width: 2px;
  border-top-color: #26cdff;
  border-top-style: solid;
  border-right-width: 2px;
  border-right-color: #26cdff;
  border-right-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: #26cdff;
  border-bottom-style: solid;
  font-weight: bold;
  text-align: center;
}
main.index .section-5 .content .rect .btn:hover {
  color: #26cdff;
  border-top-color: #222222;
  border-top-style: solid;
  border-top-width: 2px;
  border-bottom-color: #222222;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-left-color: #222222;
  border-left-style: solid;
  border-left-width: 2px;
  border-right-color: #222222;
  border-right-style: solid;
  border-right-width: 2px;
}
main.index .section-6 {
  width: 100%;
  background-color: #f8f8f8;
  overflow: hidden;
  position: relative;
  height: 606px;
}
main.index .section-6 .path {
  left: -23.9999994309%;
  width: 1319px;
  right: unset;
  top: -16.9266758768%;
  height: 1087.7833328247px;
  bottom: unset;
  z-index: 0;
  background-color: #26cdff;
  box-shadow: 0px 0px -1px black;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  position: absolute;
  z-index: 0;
}
main.index .section-6 .content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0px;
  padding-top: 50px;
  padding-bottom: 50px;
}
main.index .section-6 .content .title {
  font-weight: bold;
  font-size: 40px;
  position: relative;
  margin-bottom: 50px;
  text-align: center;
}
main.index .section-6 .content .title:before {
  position: absolute;
  left: calc(50% - 80px);
  top: 60px;
  width: 160px;
  height: 6px;
  background-color: #26cdff;
  content: "";
  display: block;
}
main.index .section-6 .content .items {
  width: 100%;
  margin-right: -20px;
}
main.index .section-6 .content .items .item {
  display: block;
  width: calc((100% - 60px - 4px * 3) / 3);
  text-align: center;
  word-break: break-word;
  font-size: 20px;
  height: 77px;
  line-height: 77px;
  background-color: white;
  border-left-width: 2px;
  border-left-color: rgba(0, 0, 0, 0);
  border-left-style: solid;
  border-top-width: 2px;
  border-top-color: rgba(0, 0, 0, 0);
  border-top-style: solid;
  border-right-width: 2px;
  border-right-color: rgba(0, 0, 0, 0);
  border-right-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  margin-right: 20px;
  margin-bottom: 20px;
  font-weight: bold;
}
main.index .section-6 .content .items .item:hover {
  border-top-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-right-width: 2px;
  border-top-color: #26cdff;
  border-top-style: solid;
  border-bottom-color: #26cdff;
  border-bottom-style: solid;
  border-left-color: #26cdff;
  border-left-style: solid;
  border-right-color: #26cdff;
  border-right-style: solid;
  background-color: white;
  color: #26cdff;
}
main.index .section-6 .content .items .item:last-of-type {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 22px;
}
main.index .section-7 {
  padding: 50px 0;
}
main.index .section-7 .left {
  width: 40%;
  overflow: hidden;
}
main.index .section-7 .left img {
  width: 100%;
  height: auto;
}
main.index .section-7 .right {
  width: 50%;
}
main.index .section-7 .right .title {
  font-weight: bold;
  font-size: 44px;
  position: relative;
}
main.index .section-7 .right .title:before {
  position: absolute;
  left: 0;
  top: 60px;
  width: 175px;
  height: 6px;
  background-color: #26cdff;
  content: "";
  display: block;
}
main.index .section-7 .right p {
  font-size: 18px;
  word-break: break-word;
}

.select2-search--dropdown {
  display: none;
}

@media (max-width: 1000px) {
  main.index {
    /*section-1*/
    /*section-2*/
    /*section-3*/
    /*section-4*/
    /*section-5*/
    /*section-6*/
    /*section-7*/
  }
  main.index .section-1 {
    background: url(../image/bk.jpg) no-repeat 0 0;
    background-size: auto 100%;
    background-position: center;
    width: 100%;
    height: auto;
  }
  main.index .section-1 .content {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  main.index .section-1 .content .section-1-1 {
    font-size: 1.5rem;
  }
  main.index .section-1 .content .section-1-2 {
    font-size: 1.5rem;
  }
  main.index .section-1 .content .section-1-3 {
    font-size: 1.5rem;
  }
  main.index .section-2 .title {
    font-size: 1.5rem;
    margin: 1.5rem 0;
  }
  main.index .section-2 .title:before {
    top: 2.2rem;
    width: 6rem;
    left: calc(50% - 3rem);
  }
  main.index .section-2 .items .item {
    width: 100%;
    position: relative;
  }
  main.index .section-2 .items .item .content {
    height: calc(100% - 1.5rem);
    padding-top: 1.5rem;
  }
  main.index .section-2 .items .item .content img {
    width: auto;
    height: 2rem;
    margin: 0 auto 1rem;
    display: block;
  }
  main.index .section-2 .items .item .content .item-title {
    color: #26cdff;
    font-size: 1.5rem;
    text-align: center;
    font-weight: bold;
  }
  main.index .section-2 .items .item .content .item-text {
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem 1rem 2rem;
  }
  main.index .section-2 .hot-line {
    font-size: 1rem;
    margin: 1.5rem 0;
  }
  main.index .section-3 {
    margin-top: 1.5rem;
  }
  main.index .section-3 .content .container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  main.index .section-3 .content .container .man {
    display: none;
  }
  main.index .section-3 .content .container .form {
    width: 100%;
  }
  main.index .section-3 .content .container .form .title {
    font-size: 1.5rem;
  }
  main.index .section-3 .content .container .form .title:before {
    left: 0;
    top: 2.2rem;
    width: 6rem;
    height: 6px;
  }
  main.index .section-3 .content .container .form .des {
    color: #f1c40f;
    font-size: 0.8rem;
    margin: 1rem 0;
  }
  main.index .section-3 .content .container .form input, main.index .section-3 .content .container .form textarea, main.index .section-3 .content .container .form .select {
    margin-bottom: 0.5rem;
  }
  main.index .section-3 .content .container .form .input-group input {
    width: calc(50% - 0.8rem);
    height: 2rem;
    padding: 0 0.3rem;
    line-height: 2rem;
  }
  main.index .section-3 .content .container .form .input-group .select {
    width: calc(50% - 0.2rem);
    height: 2rem;
    line-height: 2rem;
  }
  main.index .section-3 .content .container .form .input-group .select .select2-container .select2-selection--single {
    height: calc(2rem - 2px);
  }
  main.index .section-3 .content .container .form .input-group .select .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: calc(2rem - 2px);
    padding: 0 0.3rem;
  }
  main.index .section-3 .content .container .form .input-group .select .select2-container .select2-selection--single .select2-selection__arrow {
    top: calc(50% - 13px);
  }
  main.index .section-3 .content .container .form textarea {
    height: 5rem;
    padding: 0.1rem;
    line-height: 1rem;
    width: calc(100% - 0.2rem);
  }
  main.index .section-3 .content .container .form .btn-submit {
    height: 2rem;
    line-height: 2rem;
  }
  main.index .section-4 {
    margin: 1.5rem 0;
  }
  main.index .section-4 .right {
    display: none;
  }
  main.index .section-4 .left {
    width: 100%;
  }
  main.index .section-4 .left .title {
    font-weight: bold;
    font-size: 1.5rem;
    position: relative;
  }
  main.index .section-4 .left .title:before {
    top: 2.2rem;
    width: 6rem;
    height: 6px;
  }
  main.index .section-4 .left .items {
    margin-top: 1.5rem;
  }
  main.index .section-4 .left .items .item {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }
  main.index .section-4 .left .items .item strong {
    font-size: 1rem;
  }
  main.index .section-5 {
    background-size: auto 100%;
  }
  main.index .section-5 .content {
    width: 100%;
    height: 100%;
    padding: 1.5rem 0;
  }
  main.index .section-5 .content .title {
    font-weight: bold;
    font-size: 1.1rem;
  }
  main.index .section-5 .content .sub-title {
    font-weight: bold;
    font-size: 1.1rem;
    color: #26cdff;
    position: relative;
  }
  main.index .section-5 .content .sub-title:before {
    top: 1.8rem;
    width: 6rem;
    height: 6px;
  }
  main.index .section-5 .content .items {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
  main.index .section-5 .content .items .item {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 2;
    width: 100%;
    margin: 0;
  }
  main.index .section-5 .content .rect {
    width: calc(100% + 30px - 1.6rem);
    margin-left: -15px;
    margin-right: -15px;
    padding: 0.8rem;
    margin-top: 0;
  }
  main.index .section-5 .content .rect .left {
    width: 100%;
  }
  main.index .section-5 .content .rect .left .text {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  main.index .section-5 .content .rect .left .sub-text {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }
  main.index .section-5 .content .rect .btn {
    width: 100%;
    height: 2rem;
    line-height: 2rem;
  }
  main.index .section-6 {
    height: 500px;
  }
  main.index .section-6 .content {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  main.index .section-6 .content .title {
    font-size: 1.5rem;
    position: relative;
    margin: 1.5rem 0;
  }
  main.index .section-6 .content .title:before {
    top: 2.2rem;
    width: 6rem;
    height: 6px;
    left: calc(50% - 3rem);
  }
  main.index .section-6 .content .items {
    width: 100%;
    margin-right: -1rem;
  }
  main.index .section-6 .content .items .item {
    width: calc((100% - 1rem - 4px * 3) / 2);
    height: 3rem;
    line-height: 3rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 3rem;
  }
  main.index .section-6 .content .items .item:last-of-type {
    font-size: 0.8rem;
    line-height: 0.9rem;
  }
  main.index .section-7 {
    margin: 1.5rem 0;
  }
  main.index .section-7 .left {
    display: none;
  }
  main.index .section-7 .right {
    width: 100%;
  }
  main.index .section-7 .right .title {
    font-weight: bold;
    font-size: 1.5rem;
    position: relative;
  }
  main.index .section-7 .right .title:before {
    top: 2.2rem;
    width: 6rem;
    height: 6px;
  }
  main.index .section-7 .right p {
    font-size: 1rem;
    word-break: break-word;
  }
}
/*index main css*/
main.news {
  /*section-1*/
  /*section-2*/
  /*section-3*/
}
main.news .section-1 .page-title-group .page-title {
  font-size: 30px;
  padding-bottom: 10px;
  font-weight: bold;
  text-align: center;
}
main.news .section-1 .page-title-group .page-subtitle {
  padding-bottom: 20px;
  text-align: center;
}
main.news .section-1 .search .search-group input {
  font-size: 14px;
  border-width: 1px;
  border-color: #aaaaaa;
  border-style: solid;
  border-radius: 0px;
  padding: 0 10px;
  height: 42px;
  line-height: 42px;
  width: 449.15625px;
}
main.news .section-1 .search .search-group .btn-search {
  border: 1px solid black;
  text-align: center;
  line-height: 45.171875px;
  height: 42px;
  line-height: 42px;
  width: 101.484375px;
  color: black;
  display: block;
}
main.news .section-1 .search .search-group .btn-search:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
main.news .section-1 .search .btn-add {
  background-color: #3864af;
  color: #faf6f6;
  text-align: center;
  line-height: 42px;
  height: 42px;
  width: 138px;
  margin-left: 10px;
  border-radius: 5px;
}
main.news .section-2 {
  margin-top: 40px;
}
main.news .section-2 .items {
  width: 100%;
}
main.news .section-2 .items .item {
  background-color: rgba(52, 65, 65, 0.09);
  position: relative;
  width: calc(33.33% - 30px - 20px);
  font-size: 14px;
  padding: 15px;
  margin-bottom: 20px;
  margin-right: 20px;
}
main.news .section-2 .items .item .title {
  font-size: 25px;
}
main.news .section-2 .items .item .number {
  font-size: 14px;
}
main.news .section-2 .items .item .appointment {
  font-size: 14px;
  padding-left: 20px;
}
main.news .section-2 .items .item .text {
  font-size: 14px;
  margin-top: 40px;
        font-weight: bold;

}
main.news .section-2 .pages {
  width: 100%;
  height: 44px;
  background-color: gainsboro;
}
main.news .section-2 .pages .page-item {
  padding: 5px 10px;
  height: 44px;
  line-height: 44px;
  cursor: pointer;
}
main.news .section-2 .pages .page-item.active {
  font-weight: bold;
}
main.news .section-3 {
  margin-top: 40px;
}
main.news .section-3 .container {
  margin: 0 auto;
}
main.news .section-3 .container .form {
  width: 60%;
  margin: 0 auto;
}
main.news .section-3 .container .form .title {
  border-left-width: 8px;
  border-left-color: #ce0000;
  border-left-style: solid;
  padding-left: 20px;
  font-size: 24px;
  margin-bottom: 20px;
}
main.news .section-3 .container .form .form-input-group input {
  background-color: #f4f4f4;
  overflow: hidden;
  box-sizing: border-box;
  font-size: 14px;
  border: 1px rgba(0, 0, 0, 0.1254901961) solid;
  box-shadow: 0px 0px -1px black;
  padding: 10px;
  height: 40px;
  width: calc(50% - 10px);
  margin-bottom: 10px;
  margin-right: 10px;
}
main.news .section-3 .container .form .btn-add {
  background-color: #3864af;
  display: block;
  color: #faf6f6;
  text-align: center;
  border-radius: 5px;
  height: 42.171875px;
  width: 138.046875px;
  color: #faf6f6;
  line-height: 42.171875px;
  margin: 20px auto;
}

@media (max-width: 1000px) {
  main.news {
    /*section-1*/
    /*section-2*/
    /*section-3*/
  }
  main.news .section-1 .page-title-group .page-title {
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
  }
  main.news .section-1 .page-title-group .page-subtitle {
    padding-bottom: 1rem;
    text-align: center;
  }
  main.news .section-1 .search .search-group {
    width: 100%;
    margin-bottom: 1rem;
  }
  main.news .section-1 .search .search-group input {
    font-size: 0.9rem;
    padding: 0 0.5rem;
    height: 2rem;
    width: 80%;
  }
  main.news .section-1 .search .search-group .btn-search {
    line-height: 2rem;
    height: 2rem;
    width: 20%;
  }
  main.news .section-1 .search .search-group .btn-search:hover {
    background-color: rgba(0, 0, 0, 0.2);
  }
  main.news .section-1 .search .btn-add {
    line-height: 2.5rem;
    height: 2.5rem;
    width: 40%;
    margin-left: 0;
    border-radius: 5px;
    font-size: 1rem;
  }
  main.news .section-2 {
    margin-top: 1rem;
  }
  main.news .section-2 .items {
    width: 100%;
  }
  main.news .section-2 .items .item {
    width: calc(100% - 3rem);
    padding: 1rem;
    margin-bottom: 1rem;
    margin-right: 0;
  }
  main.news .section-2 .items .item .title {
    font-size: 1.2rem;
  }
  main.news .section-2 .items .item .number {
    font-size: 0.9rem;
  }
  main.news .section-2 .items .item .appointment {
    font-size: 0.9rem;
    padding-left: 1rem;
  }
  main.news .section-2 .items .item .text {
    font-size: 0.9rem;
    margin-top: 1rem;

  }
  main.news .section-2 .pages {
    height: 2.5rem;
  }
  main.news .section-2 .pages .page-item {
    padding: 0 0.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
  }
  main.news .section-3 {
    margin-top: 2rem;
  }
  main.news .section-3 .container {
    margin: 0 auto;
  }
  main.news .section-3 .container .form {
    width: 100%;
    margin: 0 auto;
  }
  main.news .section-3 .container .form .title {
    border-left-width: 8px;
    border-left-color: #ce0000;
    border-left-style: solid;
    padding-left: 1.2rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  main.news .section-3 .container .form .form-input-group input {
    padding: 0 0.8rem;
    height: 2.5rem;
    line-height: 2.5rem;
    width: calc(50% - 0.8rem);
    margin-bottom: 0.8rem;
    margin-right: 0.8rem;
  }
  main.news .section-3 .container .form .btn-add {
    border-radius: 5px;
    height: 2.5rem;
    width: 50%;
    line-height: 2.5rem;
    margin: 1.2rem auto;
  }
}

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