body {
  background: #000;
  overflow-x: hidden;
}

.dialog_form {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 11;
  background: white;
  display: none;
}
.dialog_form .content {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 10.4166666667vw;
  bottom: 3.8541666667vw;
}
.dialog_form .content .close {
  position: absolute;
  right: 10.4166666667vw;
  top: -0.3125vw;
  cursor: pointer;
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  border-radius: 50%;
  background: #005CB9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dialog_form .content .close svg {
  width: 0.8333333333vw;
  display: block;
  height: auto;
}
.dialog_form .content .t {
  font-size: 1.25vw;
  font-weight: 600;
}
.dialog_form .content .form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.dialog_form .content .form .item {
  width: 47%;
  margin-top: 1.0416666667vw;
}
.dialog_form .content .form .item .sr {
  position: relative;
}
.dialog_form .content .form .item .sr .tip {
  position: absolute;
  left: 0.7291666667vw;
  top: 0.8333333333vw;
  font-size: 1.25vw;
  color: #000;
  pointer-events: none;
  font-weight: 500;
}
.dialog_form .content .form .item .sr .tip span {
  color: #F00;
}
.dialog_form .content .form .item .sr input {
  width: 100%;
  outline: none;
  border: 1px solid #DBDBDB;
  height: 3.4375vw;
  padding: 1.1979166667vw 0.7291666667vw;
  border-radius: 1.0416666667vw;
  background: rgba(255, 255, 255, 0.5);
  font-size: 1.25vw;
  color: #000;
  font-weight: 500;
}
.dialog_form .content .form .item .sr .d1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #DBDBDB;
  height: 3.4375vw;
  padding: 1.1979166667vw 0.7291666667vw;
  border-radius: 1.0416666667vw;
  background: rgba(255, 255, 255, 0.5);
  font-size: 1.25vw;
  color: #000;
  cursor: pointer;
  font-weight: 500;
}
.dialog_form .content .form .item .sr .d1 .icon svg {
  display: block;
  width: 1.7708333333vw;
}
.dialog_form .content .form .item .sr .d2 {
  position: absolute;
  left: 0;
  top: 105%;
  border-radius: 1.0416666667vw;
  padding: 0.3645833333vw 0.5729166667vw 0.7291666667vw 0.5729166667vw;
  background: #005CB9;
  width: 100%;
  z-index: 10;
  display: none;
}
.dialog_form .content .form .item .sr .d2 p {
  padding: 0.2083333333vw 1.4583333333vw;
  color: #FFF;
  cursor: pointer;
  font-size: 0.8333333333vw;
  line-height: 1.5;
  transition: all 600ms;
  border-radius: 1.0416666667vw;
}
.dialog_form .content .form .item .sr .d2 p:hover {
  background: #FFF;
  color: #005CB9;
}
.dialog_form .content .form .item .sr .d2 .write {
  padding: 0.2083333333vw 1.4583333333vw;
  display: flex;
  justify-content: space-between;
}
.dialog_form .content .form .item .sr .d2 .write span {
  font-size: 0.8333333333vw;
  color: #FFF;
  width: 3.0208333333vw;
}
.dialog_form .content .form .item .sr .d2 .write .tx {
  width: calc(100% - 3.125vw);
  border-bottom: 1px solid white;
}
.dialog_form .content .form .item .sr .d2 .write .tx input {
  background: transparent;
  outline: none;
  border: none;
  color: white;
  height: 1.1458333333vw;
  padding: 0;
  font-size: 0.8333333333vw;
  font-weight: 400;
  border-radius: 0;
}
.dialog_form .content .form .item .sr textarea {
  width: 100%;
  outline: none;
  border: none;
  height: 14.6354166667vw;
  padding: 1.1979166667vw 0.7291666667vw;
  border-radius: 1.0416666667vw;
  border: 1px solid #DBDBDB;
  line-height: 1.5;
  font-size: 1.25vw;
  color: #000;
  resize: none;
  font-weight: 500;
}
.dialog_form .content .form .item .sr textarea::placeholder {
  color: rgba(255, 255, 255, 0.66);
}
.dialog_form .content .form .item:nth-child(2) {
  z-index: 2;
}
.dialog_form .content .form .item:nth-child(4) {
  z-index: 1;
}
.dialog_form .content .form .msg {
  width: 100%;
}
.dialog_form .content .form .btn {
  width: 10.4166666667vw;
  height: 2.5vw;
  border-radius: 1.0416666667vw;
  background: #005CB9;
  margin: 4.125vw auto 0 auto;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8333333333vw;
  transition: all 600ms;
  outline: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}
.dialog_form .content .form .btn:hover {
  background: #000;
  color: white;
}

.dialog_success {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 11;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.dialog_success .content {
  border-radius: 1.0416666667vw;
  background: #F4F4F4;
  width: 62.5vw;
  padding: 3.125vw 0;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4.6875vw;
}
.dialog_success .content .close {
  position: absolute;
  right: 1.25vw;
  top: 1.25vw;
  cursor: pointer;
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  border-radius: 50%;
  background: #005CB9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dialog_success .content .close svg {
  width: 0.8333333333vw;
  display: block;
  height: auto;
}
.dialog_success .content .logo img {
  vertical-align: middle;
  width: 3.125vw;
}
.dialog_success .content .p1 {
  margin: 1.25vw 0;
  color: #000;
  font-size: 1.6666666667vw;
  font-weight: 600;
}
.dialog_success .content .des {
  color: #000;
  font-size: 0.8333333333vw;
  width: 32.8645833333vw;
  margin: 0 auto;
}
.dialog_success .content .contact {
  padding: 0.625vw 2.8125vw;
  width: fit-content;
  border-radius: 1.0416666667vw;
  border: 1px solid #005CB9;
  font-size: 0.8333333333vw;
  color: #005CB9;
  display: block;
  line-height: 1.5;
  transition: all 600ms;
  margin: 3.125vw auto;
}
.dialog_success .content .contact:hover {
  background: #005CB9;
  color: white;
}
.dialog_success .content .codes {
  display: flex;
  justify-content: center;
}
.dialog_success .content .codes .item {
  margin: 0 2.4479166667vw;
}
.dialog_success .content .codes .item .pic img {
  width: 8.2291666667vw;
  vertical-align: middle;
  object-fit: cover;
}
.dialog_success .content .codes .item p {
  color: #000;
  font-size: 1.0416666667vw;
  font-weight: 500;
  margin-top: 0.625vw;
}

.banner {
  width: 100%;
  position: relative;
}
.banner .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.banner .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .text {
  position: relative;
  z-index: 3;
  padding: 3.4375vw;
  margin: 0 auto;
}
.banner .text .title {
  text-align: center;
  margin: 0 0 1.875vw;
}
.banner .text .title h1 {
  font-size: 5vw;
  font-weight: 800;
  margin: 0 0 0.5208333333vw;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner .text .title p {
  font-size: 1.875vw;
  font-weight: 600;
  background: radial-gradient(62.33% 62.33% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner .text .img {
  width: 38.2291666667vw;
  margin: 0 auto;
  transform: translateX(0.78125vw);
}
.banner .text .img img {
  display: block;
  width: 100%;
}

.sec1 {
  background: #000;
  padding: 3.3333333333vw 0 2.2916666667vw;
}
.sec1 .more a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 5.1041666667vw;
  width: 10.4166666667vw;
  height: 2.5vw;
  flex-shrink: 0;
  border-radius: 1.0416666667vw;
  background: #005CB9;
  color: #FFF;
  font-size: 0.7291666667vw;
  font-weight: 400;
  transition: 0.6s;
}
.sec1 .more a:hover {
  background: #fff;
  color: #005CB9;
}
.sec1 .text {
  width: 78.90625vw;
  margin: 0 auto 3.125vw;
  text-align: center;
}
.sec1 .text h3 {
  font-size: 2.5vw;
  font-weight: 600;
  background: radial-gradient(62.33% 62.33% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 2.0833333333vw;
  text-transform: uppercase;
}
.sec1 .text p {
  font-size: 0.8333333333vw;
  font-weight: 400;
  line-height: 1.75;
  /* 175% */
  background: radial-gradient(51.76% 51.76% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec1 .img {
  width: 56.71875vw;
  margin: 0 auto 4.1666666667vw;
}
.sec1 .img img {
  display: block;
  width: 100%;
}
.sec1 .num_list {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.sec1 .num_list::after {
  content: "";
  width: 100vw;
  height: 40.625vw;
  background: linear-gradient(180deg, rgba(71, 71, 71, 0) 6.41%, rgba(36, 36, 36, 0.7) 53.21%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  left: 0;
  top: -9.7916666667vw;
  left: -10vw;
}
.sec1 .num_list .item {
  text-align: center;
  margin: 0 0 7.0833333333vw;
  position: relative;
  z-index: 3;
  min-width: 25%;
}
.sec1 .num_list .item h5 {
  color: #D1D1D1;
  font-size: 0.8333333333vw;
  font-weight: 600;
  text-transform: capitalize;
  margin: 1.3020833333vw 0 0;
}
.sec1 .num_list .item p {
  color: #FFF;
  font-size: 2.5vw;
  font-weight: 600;
  text-transform: uppercase;
}
/*.sec1 .num_list .item:nth-child(1) {*/
/*  margin-right: 7.7604166667vw;*/
/*}*/
/*.sec1 .num_list .item:nth-child(2) {*/
/*  margin-right: 7.8125vw;*/
/*}*/
/*.sec1 .num_list .item:nth-child(3) {*/
/*  margin-right: 7.8125vw;*/
/*}*/
/*.sec1 .num_list .item:nth-child(5) {*/
/*  margin-right: 11.71875vw;*/
/*}*/

.sec2 .text {
  width: 78.90625vw;
  margin: 0 auto 4.1666666667vw;
  text-align: center;
}
.sec2 .text h1 {
  font-size: 2.5vw;
  font-weight: 600;
  margin: 0 0 1.0416666667vw;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
.sec2 .text p {
  font-size: 0.8333333333vw;
  line-height: 1.75;
  font-weight: 400;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec2 .img {
  width: 79.1666666667vw;
  margin: 0 auto;
}
.sec2 .img img {
  display: block;
  width: 100%;
}
.sec2 .content {
  width: 79.1666666667vw;
  margin: 3.125vw auto 0;
}
.sec2 .content .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec2 .content .item .item_text {
  width: 34.375vw;
}
.sec2 .content .item .item_text h5 {
  font-size: 2.5vw;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 1.3020833333vw;
  text-transform: uppercase;
  background: radial-gradient(62.33% 62.33% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec2 .content .item .item_text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8333333333vw;
  font-weight: 400;
  line-height: 1.75;
}
.sec2 .content .item .item_img {
  width: 36.5104166667vw;
}
.sec2 .content .item .item_img img {
  width: 100%;
}
.sec2 .content .item:nth-child(2) {
  flex-direction: row-reverse;
  margin: 0.8333333333vw 0 0;
}
.sec2 .content .item:nth-child(2) .item_text {
  width: 39.5833333333vw;
}
.sec2 .content .item:nth-child(2) .item_img {
  width: 29.7916666667vw;
}

.sec3 {
  padding: 7.7604166667vw 0 0;
}
.sec3 .title {
  text-align: center;
  margin: 0 0 4.9479166667vw;
}
.sec3 .title h1 {
  text-align: center;
  font-size: 2.5vw;
  font-weight: 600;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
.sec3 .flex {
  display: flex;
  justify-content: space-between;
  width: 79.1666666667vw;
  margin: 0 auto;
}
.sec3 .flex .l {
  width: 38.75vw;
}
.sec3 .flex .l .img {
  width: 100%;
}
.sec3 .flex .l .img img {
  display: block;
  width: 100%;
}
.sec3 .flex .l h5 {
  color: #FFF;
  font-size: 1.25vw;
  font-weight: 600;
  text-transform: capitalize;
  margin: 1.3020833333vw 0;
}
.sec3 .flex .l p {
  width: 32.96875vw;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8333333333vw;
  font-weight: 400;
  line-height: 1.5;
}
.sec3 .flex .r {
  width: 39.1666666667vw;
  display: flex;
  justify-content: space-between;
}
.sec3 .flex .r .part {
  width: 18.9583333333vw;
}
.sec3 .flex .r .part .item {
  width: 100%;
  height: 15.0520833333vw;
  border-radius: 1.0416666667vw;
  border: 0.0520833333vw solid #1A5495;
  background: linear-gradient(229deg, #000 4.22%, #114B8C 115.59%);
  padding: 1.0416666667vw 1.0416666667vw 0;
  cursor: pointer;
}
.sec3 .flex .r .part .item .img {
  width: 14.84375vw;
  height: 10.1041666667vw;
  margin: 0 auto 0.78125vw;
  display: block;
  align-items: center;
  justify-content: center;
}
.sec3 .flex .r .part .item .img img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 1s;
}
.sec3 .flex .r .part .item .item_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 0.46875vw;
}
.sec3 .flex .r .part .item .item_text p {
  color: #FFF;
  font-size: 0.8333333333vw;
  font-weight: 400;
  width: 80%;
  line-height: 1.5;
}
.sec3 .flex .r .part .item .item_text .jia {
  margin: 0 0 0 0.8333333333vw;
  width: 1.25vw;
  height: 1.25vw;
  background: #F1F1F1;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s;
}
.sec3 .flex .r .part .item .item_text .jia span {
  display: block;
  width: 0.625vw;
  height: 0.0520833333vw;
  background: #000;
  position: absolute;
}
.sec3 .flex .r .part .item .item_text .jia span:nth-child(2) {
  transform: rotate(90deg);
}
.sec3 .flex .r .part .item:not(:nth-last-child(1)) {
  margin-bottom: 1.25vw;
}
.sec3 .flex .r .part .item:hover .img img {
  transform: scale(1.1);
}
.sec3 .flex .r .part .item:hover .item_text .jia {
  transform: rotate(180deg);
}
.sec3 .flex .r .part .item1 {
  height: 23.125vw;
}
.sec3 .flex .r .part .item1 .img {
  width: 16.6666666667vw;
  height: 16.6666666667vw;
  margin-bottom: 1.3020833333vw;
}

.sec4 {
  padding: 10.4166666667vw 0 0;
}
.sec4 .title {
  width: 76.1979166667vw;
  margin: 0 auto 3.125vw;
  text-align: center;
}
.sec4 .title h1 {
  font-size: 2.5vw;
  font-weight: 600;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto 2.0833333333vw;
  text-transform: uppercase;
}
.sec4 .title p {
  width: fit-content;
  margin: 0 auto;
  font-size: 0.8333333333vw;
  line-height: 1.75;
  font-weight: 400;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec4 .img {
  width: 79.1666666667vw;
  margin: 0 auto;
}
.sec4 .img img {
  display: block;
  width: 100%;
}

.sec5 {
  padding: 6.5625vw 0 0;
}
.sec5 .title {
  width: 76.1979166667vw;
  text-align: center;
  margin: 0 auto 4.1666666667vw;
}
.sec5 .title h1 {
  width: fit-content;
  font-size: 2.5vw;
  font-weight: 600;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto 2.0833333333vw;
  text-transform: uppercase;
}
.sec5 .title p {
  width: fit-content;
  font-size: 0.8333333333vw;
  line-height: 1.75;
  font-weight: 500;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto;
}
.sec5 .content {
  width: 79.1666666667vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.sec5 .content .l {
  width: 56.25vw;
  height: 31.25vw;
}
.sec5 .content .l img {
  display: block;
  margin: 0 auto 0;
  width: 50vw;
}
.sec5 .content .r {
  width: 21.3541666667vw;
}
.sec5 .content .r .img {
  width: 100%;
  border-radius: 2.0833333333vw;
  overflow: hidden;
}
.sec5 .content .r .img img {
  display: block;
  width: 100%;
  transition: 1s;
}
.sec5 .content .r .img:hover img {
  transform: scale(1.1);
}
.sec5 .content .r .img:not(:nth-last-child(1)) {
  margin-bottom: 1.7708333333vw;
}

.sec6 {
  padding: 6.3541666667vw 0 0;
}
.sec6 .title {
  width: 74.1666666667vw;
  text-align: center;
  margin: 0 auto 4.5833333333vw;
}
.sec6 .title h1 {
  font-size: 2.5vw;
  font-weight: 600;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto 1.3020833333vw;
  width: fit-content;
  text-transform: uppercase;
}
.sec6 .title p {
  font-size: 0.8333333333vw;
  font-weight: 400;
  line-height: 1.75;
  width: fit-content;
  margin: 0 auto;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec6 .content {
  width: 79.1666666667vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.sec6 .content .l {
  width: 56.25vw;
  height: 31.25vw;
}
.sec6 .content .l img {
  display: block;
  margin: 0 auto 0;
  width: 44.6875vw;
}
.sec6 .content .r {
  width: 20.8333333333vw;
}
.sec6 .content .r .img {
  width: 100%;
  border-radius: 1.5625vw;
  overflow: hidden;
}
.sec6 .content .r .img img {
  display: block;
  width: 100%;
  transition: 1s;
}
.sec6 .content .r .img:hover img {
  transform: scale(1.1);
}
.sec6 .content .r .img:not(:nth-last-child(1)) {
  margin-bottom: 2.0833333333vw;
}

.sec7 {
  padding: 6.4583333333vw 0 8.3333333333vw 0;
}
.sec7 .title {
  width: 76.1979166667vw;
  text-align: center;
  margin: 0 auto 4.4270833333vw;
}
.sec7 .title h1 {
  font-size: 2.5vw;
  font-weight: 600;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto 0.625vw;
  width: fit-content;
  text-transform: uppercase;
}
.sec7 .title p {
  font-size: 0.8333333333vw;
  line-height: 1.75;
  font-weight: 400;
  width: fit-content;
  margin: 0 auto;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec7 .content {
  width: 79.1666666667vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.sec7 .content .l {
  width: 56.25vw;
  height: 31.25vw;
}
.sec7 .content .l img {
  display: block;
  margin: 0 auto 0;
  width: 45.2083333333vw;
}
.sec7 .content .r {
  width: 21.09375vw;
}
.sec7 .content .r .img {
  width: 100%;
  border-radius: 1.5625vw;
  overflow: hidden;
}
.sec7 .content .r .img img {
  display: block;
  width: 100%;
  transition: 1s;
}
.sec7 .content .r .img:hover img {
  transform: scale(1.1);
}
.sec7 .content .r .img:not(:nth-last-child(1)) {
  margin-bottom: 2.0833333333vw;
}

.sec8 {
  padding: 0;
}
.sec8 .title {
  width: 76.1979166667vw;
  text-align: center;
  margin: 0 auto 0.625vw;
}
.sec8 .title h1 {
  font-size: 2.5vw;
  font-weight: 600;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto 1.7708333333vw;
  width: fit-content;
  text-transform: uppercase;
}
.sec8 .title p {
  font-size: 0.8333333333vw;
  font-weight: 400;
  line-height: 1.75;
  width: fit-content;
  margin: 0 auto;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec8 .content {
  width: 79.1666666667vw;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.sec8 .content .l {
  width: 37.6041666667vw;
}
.sec8 .content .l img {
  display: block;
  width: 100%;
}
.sec8 .content .r {
  width: 40vw;
}
.sec8 .content .r img {
  display: block;
  width: 100%;
}

.sec9 {
  padding: 3.125vw 0 5.46875vw;
  position: relative;
}
.sec9 .title {
  width: 76.1979166667vw;
  text-align: center;
  margin: 0 auto 3.3333333333vw;
}
.sec9 .title h1 {
  font-size: 2.5vw;
  font-weight: 600;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto 2.0833333333vw;
  width: fit-content;
  text-transform: uppercase;
}
.sec9 .title p {
  font-size: 0.8333333333vw;
  font-weight: 400;
  line-height: 1.75;
  width: fit-content;
  margin: 0 auto;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec9 .img {
  width: 79.1666666667vw;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.sec9 .img img {
  display: block;
  width: 100%;
}

.sec10 .title {
  margin: 0 0 2.0833333333vw;
}
.sec10 .title h1 {
  font-size: 2.5vw;
  font-weight: 600;
  text-align: center;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin: 0 auto;
  text-transform: uppercase;
}
.sec10 .img {
  width: 79.1666666667vw;
  margin: 0 auto;
}
.sec10 .img img {
  display: block;
  width: 100%;
}

.sec11 {
  padding: 0.5208333333vw 0 6.7708333333vw;
}
.sec11 .title {
  margin: 0 0 3.3333333333vw;
}
.sec11 .title h1 {
  text-align: center;
  font-size: 2.5vw;
  font-weight: 600;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin: 0 auto;
  text-transform: uppercase;
}
.sec11 .flex {
  width: 85.4166666667vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.sec11 .flex .item {
  width: 19.7916666667vw;
  border-radius: 0.78125vw;
  background: #343434;
  padding: 2.0833333333vw 1.1979166667vw;
}
.sec11 .flex .item .img {
  width: 100%;
  overflow: hidden;
}
.sec11 .flex .item .img img {
  display: block;
  width: 100%;
  transition: 1s;
}
.sec11 .flex .item h5 {
  color: #FFF;
  text-align: center;
  font-size: 0.8333333333vw;
  font-weight: 600;
  margin: 0.9375vw 0 1.0416666667vw;
}
.sec11 .flex .item p {
  color: rgba(255, 255, 255, 0.6);
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  /* 150% */
}
.sec11 .flex .item:hover .img img {
  transform: scale(1.1);
}

.sec12 {
  padding: 6.25vw 0 10.4166666667vw;
  position: relative;
}
.sec12::after {
  content: "";
  width: 100vw;
  height: 10.9375vw;
  background: linear-gradient(180deg, #010101 -15.95%, rgba(1, 1, 1, 0) 42.14%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.sec12::before {
  content: "";
  width: 100vw;
  height: 10.9375vw;
  background: linear-gradient(0deg, #010101 -15.95%, rgba(1, 1, 1, 0) 42.14%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.sec12 .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.sec12 .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec12 .title {
  margin: 0 0 5.78125vw;
  position: relative;
  z-index: 3;
}
.sec12 .title h1 {
  text-align: center;
  font-size: 2.5vw;
  font-weight: 600;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin: 0 auto;
  text-transform: uppercase;
}
.sec12 .content {
  position: relative;
  z-index: 3;
  width: 88.5416666667vw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.sec12 .content .item {
  text-align: center;
  margin-bottom: 3.4375vw;
  width: 22.3958333333vw;
  margin: 0 3.125vw 1.0416666667vw;
}
.sec12 .content .item .icon {
  width: 6.25vw;
  margin: 0 auto 1.25vw;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s;
}
.sec12 .content .item .icon img {
  display: block;
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.sec12 .content .item h5 {
  color: #FFF;
  font-size: 1.25vw;
  font-weight: 500;
  margin: 0 0 0.46875vw;
  line-height: 1.5;
  text-align: center;
}
.sec12 .content .item p {
  color: #FFF;
  font-size: 0.8333333333vw;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.sec13 {
  padding: 8.125vw 0 5.4166666667vw;
}
.sec13 .title {
  margin: 0 0 4.1666666667vw;
}
.sec13 .title h1 {
  text-align: center;
  font-size: 2.5vw;
  font-weight: 600;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin: 0 auto;
  text-transform: uppercase;
}
.sec13 .content {
  width: 79.1666666667vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
.sec13 .content .item {
  width: 34.8958333333vw;
  height: 27.6041666667vw;
  border-radius: 1.0416666667vw;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin: 0 0 2.0833333333vw;
}
.sec13 .content .item .img {
  width: 100%;
  height: 100%;
}
.sec13 .content .item .img img {
  display: block;
  width: 100%;
  height: 100%;
  transition: 1s;
}
.sec13 .content .item .item_text {
  width: 100%;
  padding: 0 2.0833333333vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 3;
  bottom: 2.0833333333vw;
}
.sec13 .content .item .item_text p {
  color: #FFF;
  font-size: 1.25vw;
  font-weight: 500;
}
.sec13 .content .item .item_text .jia {
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.6s;
}
.sec13 .content .item .item_text .jia span {
  width: 1.09375vw;
  height: 0.0520833333vw;
  background: #000;
  position: absolute;
}
.sec13 .content .item .item_text .jia span:nth-child(2) {
  transform: rotate(90deg);
}
.sec13 .content .item:hover .img img {
  transform: scale(1.1);
}
.sec13 .content .item:hover .item_text .jia {
  background: #fff;
  transform: rotate(180deg);
}
.sec13 .content .item1 {
  width: 40.625vw;
}

.sec14 {
  padding: 0 0 10.4166666667vw;
}
.sec14 .title {
  margin: 0 0 5.46875vw;
}
.sec14 .title h1 {
  text-align: center;
  font-size: 2.5vw;
  font-weight: 600;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin: 0 auto;
  text-transform: uppercase;
}
.sec14 .content {
  width: 53.75vw;
  margin: 0 auto 6.25vw;
  display: flex;
  justify-content: space-between;
}
.sec14 .content .item {
  width: 15.9375vw;
}
.sec14 .content .item .img {
  width: 100%;
  height: 12.03125vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 3.125vw;
}
.sec14 .content .item .img img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.sec14 .content .item p {
  text-align: center;
  font-size: 1.25vw;
  font-weight: 500;
  background: radial-gradient(59.44% 59.44% at 50% 49.93%, #FFF 0%, #7E7E7E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin: 0 auto;
}
.sec14 .table {
  width: 60.9895833333vw;
  margin: 0 auto;
}
.sec14 .table h5 {
  color: #fff;
  text-align: center;
  font-size: 1.25vw;
  font-weight: 500;
  margin: 0 0 1.0416666667vw;
  text-transform: capitalize;
}
.sec14 .table table {
  width: 100%;
  border-top: 0.0520833333vw solid #fff;
}
.sec14 .table table tr td {
  width: 33.33%;
  text-align: center;
  color: #fff;
  font-size: 0.8333333333vw;
  font-weight: 400;
  height: 4.375vw;
  border-bottom: 0.0520833333vw solid #fff;
  padding: 0.78125vw 0;
  line-height: 1.5;
}
.sec14 .table table tr td .line {
  width: 1.0416666667vw;
  height: 0.15625vw;
  background: #005CB9;
  margin: 0 auto;
}

.section11 {
  background: url(../images/ibg3.png) no-repeat;
  background-size: cover;
  padding: 6.71875vw 10.4166666667vw 5.2083333333vw 10.4166666667vw;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.section11 .proc {
  display: block;
  position: absolute;
  left: 9.53125vw;
  bottom: 3.125vw;
  width: 35.625vw;
  height: 35.625vw;
}
.section11 .proc img {
  max-width: 100%;
  object-fit: contain;
}
.section11 .l {
  width: 33.3333333333vw;
  color: white;
}
.section11 .l .tag {
  font-size: 0.8333333333vw;
  font-weight: 400;
  margin: 7.34375vw 0 2.0833333333vw 0;
}
.section11 .l .p1 {
  font-size: 1.6666666667vw;
  font-weight: 500;
}
.section11 .l .p2 {
  font-size: 1.0416666667vw;
  font-weight: 400;
  margin: 0.9375vw 0 2.0833333333vw 0;
}
.section11 .l .p3 {
  font-size: 1.25vw;
  font-weight: 600;
}
.section11 .l .more {
  padding: 0.7291666667vw 2.5vw;
  border-radius: 1.5625vw;
  background: #005CB9;
  font-size: 0.8333333333vw;
  color: white;
  font-weight: 400;
  display: block;
  width: fit-content;
  transition: all 600ms;
  margin: 2.3958333333vw 0 4.1666666667vw 0;
  cursor: pointer;
}
.section11 .l .more:hover {
  background: #000;
}
.section11 .l .notice {
  font-size: 0.8333333333vw;
  font-weight: 400;
}
.section11 .r .form {
  width: 40.15625vw;
  border-radius: 1.0416666667vw;
  background: #005CB9;
  padding: 2.1875vw 2.0833333333vw;
}
.section11 .r .form .item:not(:last-child) {
  margin-bottom: 0.625vw;
}
.section11 .r .form .item .tag {
  color: #FFF;
  font-size: 0.8333333333vw;
  margin-bottom: 0.625vw;
  font-weight: 600;
}
.section11 .r .form .item .sr input {
  border-radius: 1.0416666667vw;
  outline: none;
  border: none;
  width: 100%;
  height: 3.125vw;
  padding: 0.5208333333vw 0.78125vw;
  font-size: 0.8333333333vw;
  color: #000;
  background: #F2F2F2;
}
.section11 .r .form .item .sr textarea {
  border-radius: 1.0416666667vw;
  outline: none;
  border: none;
  width: 100%;
  height: 10.4166666667vw;
  padding: 0.5208333333vw 0.78125vw;
  font-size: 0.8333333333vw;
  color: #000;
  background: #F2F2F2;
  resize: none;
}
.section11 .r .form button {
  padding: 0.5208333333vw 2.7083333333vw;
  border-radius: 1.5625vw;
  background: white;
  color: #005CB9;
  font-size: 0.7291666667vw;
  display: block;
  width: fit-content;
  transition: all 600ms;
  margin: 1.3541666667vw auto 0 auto;
  outline: none;
  border: none;
  cursor: pointer;
}
.section11 .r .form button:hover {
  background: #000;
  color: white;
}

.dialog {
  background: #000;
  position: fixed;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  transition: 0.6s;
  top: 0;
}
.dialog .close {
  width: 1.25vw;
  height: 1.25vw;
  position: fixed;
  top: 3.125vw;
  right: 3.125vw;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  cursor: pointer;
  transition: 0.6s;
}
.dialog .close span {
  width: 100%;
  height: 0.1041666667vw;
  background: #fff;
  border-radius: 0.1041666667vw;
  position: absolute;
}
.dialog .close span:nth-child(2) {
  transform: rotate(90deg);
}
.dialog .close:hover {
  transform: rotate(225deg);
}
.dialog .wrap {
  width: 71.875vw;
  margin: 3.125vw auto 0;
  padding: 0 0 7.2916666667vw;
}
.dialog .wrap .img {
  width: 100%;
  border-radius: 1.0416666667vw;
  overflow: hidden;
  margin: 0 0 2.0833333333vw;
}
.dialog .wrap .img img {
  display: block;
  width: 100%;
  transition: 1s;
}
.dialog .wrap .img:hover img {
  transform: scale(1.1);
}
.dialog .wrap h3 {
  color: #FFF;
  font-size: 2.5vw;
  font-weight: 500;
  text-align: center;
  margin: 0 0 2.0833333333vw;
}
.dialog .wrap > p {
  width: 62.5vw;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-size: 1.25vw;
  font-weight: 500;
  margin: 0 auto 2.0833333333vw;
}
.dialog .wrap .flex {
  display: flex;
  justify-content: space-between;
}
.dialog .wrap .flex .item {
  width: 34.8958333333vw;
}
.dialog .wrap .flex .item .item_img {
  border-radius: 1.0416666667vw;
  width: 100%;
  overflow: hidden;
  margin: 0 0 2.0833333333vw;
}
.dialog .wrap .flex .item .item_img img {
  display: block;
  width: 100%;
  transition: 0.6s;
}
.dialog .wrap .flex .item p {
  color: #FFF;
  font-size: 1.6666666667vw;
  font-weight: 500;
  text-align: center;
}
.dialog .wrap .flex .item:hover .item_img img {
  transform: scale(1.1);
}
.dialog.on {
  opacity: 1;
  pointer-events: all;
}

@media screen and (max-width: 1024px) {
  .dialog_form {
    overflow-y: scroll;
  }
  .dialog_form .content {
    padding: 0 5%;
    bottom: 0;
    height: 80vh;
    position: relative;
    margin-top: 100px;
  }
  .dialog_form .content .close {
    right: 5%;
    top: -25px;
    width: 20px;
    height: 20px;
  }
  .dialog_form .content .close svg {
    width: 8px;
  }
  .dialog_form .content .t {
    font-size: 18px;
  }
  .dialog_form .content .form .item {
    width: 100%;
    margin-top: 10px;
  }
  .dialog_form .content .form .item .sr .tip {
    left: 16px;
    top: 12px;
    font-size: 18px;
  }
  .dialog_form .content .form .item .sr input {
    height: 50px;
    padding: 8px 16px;
    font-size: 18px;
  }
  .dialog_form .content .form .item .sr textarea {
    height: 120px;
    padding: 8px 16px;
    font-size: 18px;
  }
  .dialog_form .content .form .item .sr .d1 {
    height: 50px;
    padding: 8px 16px;
    font-size: 18px;
  }
  .dialog_form .content .form .item .sr .d1 .icon svg {
    width: 20px;
  }
  .dialog_form .content .form .item .sr .d2 p {
    padding: 5px 8px;
    font-size: 14px;
  }
  .dialog_form .content .form .item .sr .d2 .write span {
    font-size: 14px;
    width: 60px;
  }
  .dialog_form .content .form .item .sr .d2 .write .tx input {
    height: 20px;
    font-size: 14px;
  }
  .dialog_form .content .form .btn {
    width: 150px;
    height: 48px;
    border-radius: 15px;
    margin: 25px auto;
    font-size: 14px;
  }
  .dialog_success {
    overflow-y: scroll;
  }
  .dialog_success .content {
    bottom: 0;
    left: 0;
    position: relative;
    margin-top: 20px;
    transform: translateX(0);
    width: 90%;
    padding: 30px 0;
  }
  .dialog_success .content .close {
    right: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
  }
  .dialog_success .content .close svg {
    width: 8px;
  }
  .dialog_success .content .logo img {
    width: 30px;
  }
  .dialog_success .content .p1 {
    margin: 12px 0;
    font-size: 24px;
  }
  .dialog_success .content .des {
    font-size: 16px;
    width: 80%;
    line-height: 1.6;
  }
  .dialog_success .content .contact {
    padding: 6px 27px;
    border-radius: 15px;
    font-size: 16px;
    margin: 30px auto;
  }
  .dialog_success .content .codes .item {
    margin: 0 20px;
  }
  .dialog_success .content .codes .item .pic img {
    width: 100px;
  }
  .dialog_success .content .codes .item p {
    font-size: 14px;
    margin-top: 6px;
  }
  br {
    display: none;
  }
  .banner {
    margin: 60px 0 0;
    padding: 60px 0;
  }
  .banner .text .title {
    margin: 0 0 30px;
  }
  .banner .text .title h1 {
    font-size: 32px;
    margin: 0 0 5px;
  }
  .banner .text .title p {
    font-size: 20px;
  }
  .banner .text .img {
    width: 60vw;
  }
  .sec1 {
    padding: 50px 0;
  }
  .sec1 .more a {
    width: fit-content;
    height: unset;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 15px;
    margin: 0 auto 30px;
  }
  .sec1 .text {
    width: 90%;
    margin: 0 auto 40px;
  }
  .sec1 .text h3 {
    font-size: 24px;
    margin: 0 0 15px;
  }
  .sec1 .text p {
    font-size: 14px;
  }
  .sec1 .img {
    width: 60vw;
    margin: 0 auto 30px;
  }
  .sec1 .num_list .item {
    width: 50%;
    margin: 0 0 20px !important;
  }
  .sec1 .num_list .item h5 {
    font-size: 16px;
  }
  .sec1 .num_list .item p {
    font-size: 30px;
    line-height: 1.5;
  }
  .sec1 .num_list .item:nth-last-child(1) {
    width: 100%;
  }
  .sec1 .num_list .item .flex {
    justify-content: center;
  }
  .sec1 .num_list .item .flex h5:not(:nth-last-child(1)) {
    margin-right: 20px;
  }
  .sec1 .num_list .item .flex h5:not(:nth-last-child(1))::after {
    width: 1px;
    height: 12px;
    right: -10px;
  }
  .sec2 .text {
    width: 90%;
    margin: 0 auto 30px;
  }
  .sec2 .text h1 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .sec2 .text p {
    font-size: 14px;
  }
  .sec2 .img {
    margin: 0 auto 30px;
  }
  .sec2 .content {
    width: 90%;
  }
  .sec2 .content .item {
    display: block;
    margin: 0 0 30px !important;
  }
  .sec2 .content .item .item_text {
    text-align: center;
    width: 100% !important;
    margin: 0 0 20px !important;
  }
  .sec2 .content .item .item_text h5 {
    font-size: 24px;
    margin: 0 0 15px;
  }
  .sec2 .content .item .item_text p {
    font-size: 14px;
  }
  .sec2 .content .item .item_img {
    width: 50vw !important;
    margin: 0 auto;
  }
  .sec3 {
    padding: 40px 0;
  }
  .sec3 .title {
    margin: 0 0 40px;
  }
  .sec3 .title h1 {
    font-size: 24px;
  }
  .sec3 .flex {
    display: block;
  }
  .sec3 .flex .l {
    width: 100%;
    margin: 0 0 30px;
  }
  .sec3 .flex .l h5 {
    font-size: 20px;
    margin: 20px 0 10px;
    text-align: center;
  }
  .sec3 .flex .l p {
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
  .sec3 .flex .r {
    width: 100%;
    flex-direction: column-reverse;
  }
  .sec3 .flex .r .part {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .sec3 .flex .r .part .item {
    width: 48%;
    padding: 10px;
    border-radius: 6px;
    height: unset;
    margin-bottom: 20px !important;
  }
  .sec3 .flex .r .part .item .img {
    width: 90%;
    height: 25vw;
  }
  .sec3 .flex .r .part .item .item_text p {
    font-size: 14px;
    margin-right: 6px;
  }
  .sec3 .flex .r .part .item .item_text .jia {
    width: 16px;
    height: 16px;
  }
  .sec3 .flex .r .part .item .item_text .jia span {
    width: 8px;
  }
  .sec3 .flex .r .part .item1 {
    height: unset;
  }
  .sec3 .flex .r .part .item1 .img {
    height: 35vw;
  }
  .sec4 .title {
    width: 90%;
    margin: 0 auto 40px;
  }
  .sec4 .title h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .sec4 .title p {
    font-size: 14px;
  }
  .sec4 .img {
    width: 90%;
  }
  .sec5 {
    padding: 50px 0;
  }
  .sec5 .title {
    width: 90%;
    margin: 0 auto 40px;
  }
  .sec5 .title h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .sec5 .title p {
    font-size: 14px;
  }
  .sec5 .content {
    width: 90%;
    display: block;
  }
  .sec5 .content .l {
    width: 100%;
    height: unset;
    margin: 0 0 30px;
  }
  .sec5 .content .l img {
    width: 100%;
  }
  .sec5 .content .r {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .sec5 .content .r .img {
    width: 49%;
    margin: 0 !important;
  }
  .sec6 {
    padding: 50px 0;
  }
  .sec6 .title {
    width: 90%;
    margin: 0 auto 40px;
  }
  .sec6 .title h1 {
    font-size: 24px;
  }
  .sec6 .title p {
    font-size: 14px;
  }
  .sec6 .content {
    width: 90%;
    flex-direction: column-reverse;
  }
  .sec6 .content .l {
    width: 100%;
    height: unset;
    margin: 0 0 30px;
  }
  .sec6 .content .l img {
    width: 100%;
  }
  .sec6 .content .r {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .sec6 .content .r .img {
    width: 49%;
    margin: 0 !important;
  }
  .sec7 {
    padding: 50px 0;
  }
  .sec7 .title {
    width: 90%;
    margin: 0 auto 40px;
  }
  .sec7 .title h1 {
    font-size: 24px;
  }
  .sec7 .title p {
    font-size: 14px;
  }
  .sec7 .content {
    width: 90%;
    display: block;
  }
  .sec7 .content .l {
    width: 100%;
    height: unset;
    margin: 0 0 30px;
  }
  .sec7 .content .l img {
    width: 100%;
  }
  .sec7 .content .r {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .sec7 .content .r .img {
    width: 49%;
    margin: 0 !important;
  }
  .sec8 {
    padding: 50px 0;
  }
  .sec8 .title {
    width: 90%;
    margin: 0 auto 40px;
  }
  .sec8 .title h1 {
    font-size: 24px;
  }
  .sec8 .title p {
    font-size: 14px;
  }
  .sec8 .content {
    width: 90%;
    margin: 0 auto;
  }
  .sec8 .content .l,
  .sec8 .content .r {
    width: 49%;
  }
  .sec9 {
    padding: 50px 0;
  }
  .sec9 .title {
    width: 90%;
    margin: 0 auto 40px;
  }
  .sec9 .title h1 {
    font-size: 24px;
  }
  .sec9 .title p {
    font-size: 14px;
  }
  .sec9 .img {
    width: 90%;
  }
  .sec10 {
    padding: 40px 0 60px;
  }
  .sec10 .title {
    width: 90%;
    margin: 0 auto 30px;
  }
  .sec10 .title h1 {
    font-size: 24px;
  }
  .sec10 .img {
    width: 90%;
  }
  .sec11 {
    padding: 0 0 50px;
  }
  .sec11 .title {
    width: 90%;
    margin: 0 auto 50px;
  }
  .sec11 .title h1 {
    font-size: 24px;
  }
  .sec11 .flex {
    width: 90%;
    flex-wrap: wrap;
  }
  .sec11 .flex .item {
    width: 100%;
    height: unset;
    padding: 30px 20px;
    border-radius: 10px;
    margin: 0 0 30px;
  }
  .sec11 .flex .item h5 {
    font-size: 18px;
    margin: 20px 0;
  }
  .sec11 .flex .item p {
    font-size: 14px;
  }
  .sec12 {
    padding: 60px 0;
  }
  .sec12 .title {
    width: 90%;
    margin: 0 auto 50px;
  }
  .sec12 .title h1 {
    font-size: 24px;
  }
  .sec12 .content {
    width: 90%;
  }
  .sec12 .content .item {
    width: 49%;
    margin: 0 0 40px;
  }
  .sec12 .content .item .icon {
    width: 40%;
  }
  .sec12 .content .item h5 {
    font-size: 18px;
    margin: 10px 0;
  }
  .sec12 .content .item p {
    font-size: 14px;
  }
  .sec13 {
    padding: 50px 0;
  }
  .sec13 .title {
    margin: 0 0 50px;
  }
  .sec13 .title h1 {
    font-size: 24px;
  }
  .sec13 .content {
    width: 90%;
  }
  .sec13 .content .item {
    width: 100%;
    height: unset;
    border-radius: 10px;
    margin: 0 0 20px !important;
  }
  .sec13 .content .item .item_text {
    padding: 0 30px;
    bottom: 30px;
  }
  .sec13 .content .item .item_text p {
    font-size: 18px;
  }
  .sec13 .content .item .item_text .jia {
    width: 20px;
    height: 20px;
  }
  .sec13 .content .item .item_text .jia span {
    width: 12px;
  }
  .sec14 {
    padding: 0 0 60px;
  }
  .sec14 .title {
    margin: 0 0 50px;
  }
  .sec14 .title h1 {
    font-size: 24px;
  }
  .sec14 .content {
    width: 90%;
    margin: 0 auto 50px;
  }
  .sec14 .content .item {
    width: 49%;
    height: unset;
  }
  .sec14 .content .item .img {
    width: 100%;
    height: 28vw;
    margin-bottom: 15px;
  }
  .sec14 .content .item p {
    font-size: 16px;
  }
  .sec14 .table {
    width: 90%;
  }
  .sec14 .table h5 {
    font-size: 20px;
    margin: 0 0 20px;
  }
  .sec14 .table table tr td {
    height: 60px;
    font-size: 16px;
  }
  .sec14 .table table tr td .line {
    width: 16px;
    height: 2px;
  }
  .section11 {
    padding: 30px 5% 60px 5%;
    flex-direction: column;
  }
  .section11 .proc {
    bottom: auto;
    top: 100px;
    left: auto;
    right: 5%;
    width: 200px;
    height: 200px;
  }
  .section11 .l {
    width: 100%;
  }
  .section11 .l .tag {
    font-size: 16px;
    margin: 0 0 15px 0;
  }
  .section11 .l .p1 {
    font-size: 24px;
  }
  .section11 .l .p2 {
    font-size: 18px;
    margin: 9px 0 30px 0;
  }
  .section11 .l .p3 {
    font-size: 20px;
  }
  .section11 .l .more {
    padding: 11px 35px;
    border-radius: 20px;
    font-size: 18px;
    margin: 20px 0 30px 0;
  }
  .section11 .l .notice {
    font-size: 16px;
  }
  .section11 .r {
    margin-top: 100px;
  }
  .section11 .r .form {
    width: 100%;
    border-radius: 10px;
    padding: 15px;
  }
  .section11 .r .form .item:not(:last-child) {
    margin-bottom: 15px;
  }
  .section11 .r .form .item .tag {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .section11 .r .form .item .sr input {
    border-radius: 10px;
    height: 40px;
    padding: 5px 8px;
    font-size: 16px;
  }
  .section11 .r .form .item .sr textarea {
    border-radius: 10px;
    height: 100px;
    padding: 5px 8px;
    font-size: 16px;
  }
  .section11 .r .form button {
    padding: 11px 40px;
    border-radius: 30px;
    font-size: 14px;
    margin: 20px auto 0 auto;
  }
  .dialog {
    top: 0;
  }
  .dialog .wrap {
    width: 90%;
    margin: 60px auto 0;
  }
  .dialog .wrap h3 {
    font-size: 24px;
  }
  .dialog .wrap .img {
    margin: 0 0 30px;
  }
  .dialog .wrap > p {
    font-size: 14px;
    width: 100%;
    margin: 0 0 20px;
  }
  .dialog .wrap .flex {
    display: block;
  }
  .dialog .wrap .flex .item {
    width: 100%;
    margin-bottom: 30px;
  }
  .dialog .wrap .flex .item p {
    font-size: 16px;
  }
  .dialog .close {
    width: 30px;
    height: 30px;
  }
}