.header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  border-radius: 0px 0px 35px 35px;
  border: 1px solid #ffffff;
  background: rgba(255, 255, 255, 0.74);
}
.header .h_wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  position: relative;
}
.header .h_wrapper .logo {
  width: 64px;
  height: 64px;
}
.header .h_wrapper .logo img {
  display: block;
  width: 100%;
  height: 100%;
}
.header .h_wrapper .nav {
  display: flex;
  align-items: center;
}
.header .h_wrapper .nav .ul {
  display: flex;
  align-items: center;
}
.header .h_wrapper .nav .ul .li {
  margin-left: 60px;
  position: relative;
}
.header .h_wrapper .nav .ul .li a {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 0px 20px 0px 20px;
  transition: 0.5s;
  position: relative;
}
.header .h_wrapper .nav .ul .li a:hover {
  background: #cc141c;
}
.header .h_wrapper .nav .ul .li a:hover span {
  color: #fff;
}
.header .h_wrapper .nav .ul .li a:hover .img1 {
  display: none;
}
.header .h_wrapper .nav .ul .li a:hover .img2 {
  display: block;
}
.header .h_wrapper .nav .ul .li a img {
  width: 60px;
  display: block;
  margin-right: 10px;
}
.header .h_wrapper .nav .ul .li a .img1 {
  display: block;
}
.header .h_wrapper .nav .ul .li a .img2 {
  display: none;
}
.header .h_wrapper .nav .ul .li a span {
  font-size: 20px;
  color: #000;
  transition: 0.5s;
}
.header .h_wrapper .nav .ul .li .menu {
  width: 200px;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-10%);
  top: 64px;
  z-index: 5;
  padding: 10px 20px;
  border-radius: 12px;
  opacity: 0;
  transition: 0.5s;
}
.header .h_wrapper .nav .ul .li .menu a {
  display: block;
  width: 100%;
  font-size: 18px;
  background: none;
  text-align: center;
  color: #333;
}
.header .h_wrapper .nav .ul .li .menu a:hover {
  color: #cc141c;
  text-decoration: underline;
}
.header .h_wrapper .nav .lang {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 100px;
  margin-left: 60px;
  border: 1px solid #5a5a5a;
  cursor: pointer;
  transition: 0.5s;
}
.header .h_wrapper .nav .lang span {
  font-size: 16px;
  color: #000;
  margin-right: 10px;
}
.header .h_wrapper .nav .lang img {
  width: 30px;
  height: 30px;
  display: block;
}
.header .h_wrapper .nav .lang:hover {
  border-color: #CC141C;
}
.menu_list {
  width: calc(100% - 60px);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.85);
  padding: 30px 0;
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  top: 0;
  z-index: 8;
  transition: 0.5s;
}
.menu_list .list_wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}
.menu_list .list_wrap .item {
  width: calc((100% - 90px)/4);
  position: relative;
  background: url(../images/index/39.png) no-repeat;
  background-size: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.menu_list .list_wrap .item:hover img {
  transform: scale(1.1);
}
.menu_list .list_wrap .item img {
  width: 100%;
  display: block;
  transition: 0.5s;
}
.menu_list .list_wrap .item span {
  font-size: 24px;
  color: #fff;
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
}
.footer {
  width: 100%;
}
.footer .contact {
  width: 100%;
  border-radius: 100px 100px 0px 0px;
  background: #ebebeb;
  padding: 50px 0;
}
.footer .contact .content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.footer .contact .content .title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.footer .contact .content .title strong {
  color: #1a1a1a;
  font-size: 48px;
}
.footer .contact .content .title .tips {
  width: 60%;
}
.footer .contact .content .title .tips p {
  font-size: 14px;
  color: #999;
}
.footer .contact .content .title .tips .spans {
  display: flex;
  align-items: center;
}
.footer .contact .content .title .tips .spans span {
  font-size: 16px;
  color: #666666;
  margin-right: 15px;
  position: relative;
}
.footer .contact .content .title .tips .spans span::after {
  content: "";
  width: 1px;
  height: 10px;
  background: #8f8f8f;
  position: absolute;
  right: -8px;
  top: 8px;
}
.footer .contact .content .options {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footer .contact .content .options .items {
  width: 30%;
}
.footer .contact .content .options .items .item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
}
.footer .contact .content .options .items .item .icon {
  width: 40px;
  height: 40px;
}
.footer .contact .content .options .items .item .icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.footer .contact .content .options .items .item .text {
  width: calc(100% - 60px);
}
.footer .contact .content .options .items .item .text .label {
  width: 100%;
  font-size: 16px;
  color: #999;
}
.footer .contact .content .options .items .item .text .value {
  width: 100%;
  display: block;
  font-size: 25px;
  color: #333;
  font-weight: bold;
  cursor: pointer;
}
.footer .contact .content .options .items .item .text .value:hover {
  text-decoration: underline;
}
.footer .contact .content .options .form {
  width: 40%;
  padding: 0 20px;
  box-sizing: border-box;
  border-left: 1px solid #CCCCCC;
}
.footer .contact .content .options .form .form_item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.footer .contact .content .options .form .form_item input {
  width: calc((100% - 24px) / 3);
  border: none;
  border-radius: 8px;
  background: #ffffff;
  padding: 12px 20px;
  box-sizing: border-box;
  outline: none;
}
.footer .contact .content .options .form .form_item textarea {
  width: 100%;
  border-radius: 8px;
  background: #ffffff;
  padding: 12px 20px;
  box-sizing: border-box;
  border: none;
  outline: none;
  resize: none;
  font-family: sans-serif;
}
.footer .contact .content .options .form .submit {
  width: 40%;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #cc141c;
  cursor: pointer;
  border: 2px solid #cc141c;
  transition: 0.5s;
  overflow: hidden;
}
.footer .contact .content .options .form .submit span {
  font-size: 14px;
  color: #fff;
  margin-right: 10px;
}
.footer .contact .content .options .form .submit img {
  width: 20px;
  height: 20px;
  display: block;
  transition: 0.5s;
}
.footer .contact .content .options .form .submit:hover {
  background: #fff;
}
.footer .contact .content .options .form .submit:hover img {
  transform: scale(1.1);
}
.footer .contact .content .options .form .submit:hover span {
  color: #cc141c;
}
.footer .contact .content .options .upload {
  width: 30%;
  background: #CC141C;
  border-radius: 12px;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}
.footer .contact .content .options .upload p {
  width: 100%;
  text-align: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
}
.footer .contact .content .options .upload .button {
  width: 55%;
  margin: 0 auto 20px;
  border-radius: 6px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  cursor: pointer;
}
.footer .contact .content .options .upload .button img {
  width: 28px;
  height: 28px;
  display: block;
}
.footer .contact .content .options .upload .button span {
  color: #cc141c;
  font-size: 24px;
  margin-right: 10px;
}
.footer .contact .content .options .upload .p {
  width: 100%;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.footer .contact .content .options .upload .p img {
  width: 14px;
  height: 14px;
  display: block;
  margin-right: 10px;
}
.footer .contact .content .options .upload .p span {
  font-size: 14px;
  color: #fff;
}
.footer .contact .content .options .upload .steps {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.footer .contact .content .options .upload .steps::after {
  content: "";
  width: 70%;
  height: 1px;
  border-bottom: 2px dashed #fff;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.footer .contact .content .options .upload .steps .step_item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}
.footer .contact .content .options .upload .steps .step_item img {
  width: 50px;
  height: 50px;
  display: block;
  margin-bottom: 8px;
  margin: 0 auto;
}
.footer .contact .content .options .upload .steps .step_item p {
  font-size: 16px;
  color: #fff;
}
.footer .bottom {
  width: 100%;
  background: #2F2F2F;
  border-top: 20px solid #CC141C;
}
.footer .bottom .content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 40px;
}
.footer .bottom .content .row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.footer .bottom .content .row:last-child {
  margin-bottom: 0;
}
.footer .bottom .content .row .span {
  width: 80%;
}
.footer .bottom .content .row .span p {
  width: 100%;
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
}
.footer .bottom .content .row .span .button {
  display: flex;
  align-items: center;
}
.footer .bottom .content .row .span .button span {
  font-size: 16px;
  color: #fff;
  margin-right: 10px;
}
.footer .bottom .content .row .span .button a {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 6px;
}
.footer .bottom .content .row .span .button a em {
  color: #dfe1e2;
  font-size: 16px;
  font-style: normal;
  transition: 0.5s;
}
.footer .bottom .content .row .span .button a img {
  width: 20px;
  height: 20px;
  display: block;
}
.footer .bottom .content .row .span .button a:hover em {
  color: #CC141C;
}
.footer .bottom .content .row .lang {
  display: flex;
  align-items: center;
  padding: 5px 15px;
  border-radius: 100px;
  margin-left: 60px;
  border: 1px solid #5a5a5a;
  cursor: pointer;
  transition: 0.5s;
}
.footer .bottom .content .row .lang span {
  font-size: 16px;
  color: #fff;
  margin-right: 10px;
}
.footer .bottom .content .row .lang img {
  width: 30px;
  height: 30px;
  display: block;
}
.footer .bottom .content .row .lang:hover {
  border-color: #CC141C;
}
.footer .bottom .content .row .code {
  width: 90px;
}
.footer .bottom .content .row .code .img {
  width: 100%;
  height: 90px;
  margin-bottom: 8px;
  border: 2px solid #CC141C;
  box-sizing: border-box;
  border-radius: 8px;
  overflow: hidden;
}
.footer .bottom .content .row .code .img img {
  width: 100%;
  height: 100%;
  display: block;
}
.footer .bottom .content .row .code p {
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
.footer .bottom .content .row .links {
  width: 70%;
  display: flex;
  align-items: center;
}
.footer .bottom .content .row .links a {
  color: #fff;
  padding-bottom: 4px;
  font-size: 20px;
  border-bottom: 1px solid #fff;
  margin: 0 20px;
  transition: 0.5s;
}
.footer .bottom .content .row .links a:hover {
  color: #CC141C;
}
.footer .bottom_layer {
  width: 100%;
  background: #ebebeb;
  border-bottom: 6px solid #CC141C;
  padding: 16px 0;
}
.footer .bottom_layer .content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .bottom_layer .content .p {
  display: flex;
  align-items: center;
}
.footer .bottom_layer .content .p span {
  color: #999;
}
.footer .bottom_layer .content .p a {
  color: #999;
  margin-left: 10px;
}
.footer .bottom_layer .content .p a:hover {
  color: #CC141C;
}
@media only screen and (max-width: 1280px) {
  .footer .contact .content {
    width: 80%;
  }
  .footer .contact .content .title strong {
    font-size: 30px;
    display: none;
  }
  .footer .contact .content .title .tips .spans span {
    font-size: 12px;
  }
  .footer .contact .content .title .tips p {
    font-size: 12px;
  }
  .footer .contact .content .options .items .item .text .label {
    font-size: 12px;
  }
  .footer .contact .content .options .items .item .icon {
    width: 30px;
    height: 30px;
  }
  .footer .contact .content .options .items .item .text .value {
    font-size: 18px;
  }
  .footer .contact .content .options {
    flex-wrap: wrap;
  }
  .footer .contact .content .options .items {
    display: flex;
    width: 100%;
  }
  .footer .contact .content .options .items .item {
    margin-bottom: 20px;
  }
  .footer .contact .content .options .form {
    width: 50%;
    border: none;
  }
  .footer .contact .content .options .upload {
    width: 50%;
  }
  .header .h_wrapper .nav .ul .li a span {
    font-size: 14px;
  }
  .header .h_wrapper .nav .ul .li {
    margin-left: 30px;
  }
  .header .h_wrapper {
    width: 80%;
  }
  .header .h_wrapper .nav .lang span {
    font-size: 12px;
  }
  .header .h_wrapper .nav .lang img {
    width: 20px;
    height: 20px;
  }
  .header .h_wrapper .nav .ul .li a img {
    width: 30px;
  }
  .footer .bottom .content {
    width: 80%;
  }
  .footer .bottom .content .row .lang span {
    font-size: 12px;
  }
  .footer .bottom .content .row .lang img {
    width: 20px;
    height: 20px;
  }
  .footer .bottom .content .row .links a {
    font-size: 12px;
  }
  .footer .bottom_layer .content {
    width: 80%;
  }
}
@media only screen and (max-width: 821px) {
  .footer {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 800px) {
  .footer .contact {
    border-radius: 20px 20px 0px 0px;
  }
  .footer .contact .content {
    width: 96%;
  }
  .footer .contact .content .options .items {
    flex-wrap: wrap;
  }
  .footer .contact .content .options .form {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer .contact .content .options .upload {
    width: 100%;
  }
  .footer .bottom .content .row {
    flex-wrap: wrap;
  }
  .footer .bottom .content .row .span {
    width: 100%;
  }
  .footer .bottom .content .row .lang {
    display: none;
  }
  .footer .bottom .content {
    width: 96%;
  }
  .footer .bottom .content .row .links {
    width: 100%;
  }
  .footer .bottom_layer .content .p {
    width: 100%;
  }
  .footer .bottom_layer .content {
    width: 96%;
    flex-wrap: wrap;
  }
  .footer .bottom_layer .content .p a {
    margin-left: 0;
  }
  .footer .contact .content .title .tips {
    width: 100%;
  }
  .footer .contact .content .title .tips .spans {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 640px) {
  .footer .bottom .content .row .links {
    flex-wrap: wrap;
  }
  .footer .contact {
    padding: 20px 0;
  }
  .footer .contact .content .options .form .form_item {
    flex-wrap: wrap;
  }
  .footer .contact .content .options .form .form_item input {
    width: 100%;
    margin-bottom: 10px;
  }
  .footer .contact .content .options .upload .steps .step_item p {
    font-size: 12px;
  }
  .footer .contact .content .options .upload p {
    padding-top: 10px;
  }
  .footer .contact .content .options .upload .p {
    padding-left: 10px;
    box-sizing: border-box;
  }
}
/***********/
