@-webkit-keyframes bannerdDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bannerdDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
.page {
  max-width: 1920px;
  margin: 0 auto;
  min-width: 1200px;
  background-color: #f8f9fb;
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

.btn {
  width: 250px;
  height: 50px;
  background: linear-gradient(90deg, #ffdc38, #ff8851);
  border-radius: 25px;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  line-height: 50px;
  text-align: center;
  margin: 0 auto 50px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.btn:hover {
  transform: translateY(-5px);
}

.box-title {
  font-weight: bold;
  font-size: 34px;
  color: #333;
  text-align: center;
  padding: 45px 0 30px;
}

.top {
  background: #fff;
}
.top .wrapper {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top .logo {
  width: 504px;
  height: 43px;
  background: url("../images/logo.png") no-repeat center;
}
.top .phone {
  background: url("../images/phone.png") no-repeat left center;
  padding-left: 45px;
  font-size: 18px;
  color: #333;
  line-height: 20px;
  margin-right: 27px;
}

.banner {
  height: 500px;
  background: url("../images/banner.jpg") no-repeat center;
  background-size: cover;
  position: relative;
}
.banner .down {
  position: absolute;
  bottom: 80px;
  left: 50%;
  margin-left: -20px;
  width: 40px;
  height: 65px;
  -webkit-animation: bannerdDown 1s ease-in-out infinite;
          animation: bannerdDown 1s ease-in-out infinite;
}

.navs-box {
  background-color: #fff;
  box-shadow: 0px 3px 6px 0px rgba(222, 222, 222, 0.28);
  position: sticky;
  top: 0;
  z-index: 10;
}
.navs-box .navs {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 80px;
}
.navs-box .navs .nav {
  font-size: 18px;
  color: #333;
  position: relative;
  line-height: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.navs-box .navs .nav:hover {
  color: #e50f29;
}
.navs-box .navs .nav.active {
  color: transparent;
  background: linear-gradient(to right, #fc7130, #e50f29);
  -webkit-background-clip: text;
          background-clip: text;
}
.navs-box .navs .nav.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 4px;
  background: linear-gradient(to right, #fc7130, #e50f29);
}

.box1 {
  height: 610px;
  background: url("../images/box1.jpg") no-repeat center;
}
.box1 .content {
  margin-top: 62px;
  width: 727px;
  height: 360px;
  background: #fff;
  box-shadow: 0px 2px 30px 2px rgba(222, 222, 222, 0.28);
  box-sizing: border-box;
  padding: 54px 60px 0;
}
.box1 .content .name {
  font-weight: 500;
  font-size: 20px;
  color: transparent;
  background: linear-gradient(to right, #fc7130, #e50f29);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 35px;
  border-bottom: 1px solid #bfbfbf;
  margin-bottom: 17px;
  padding-left: 10px;
  position: relative;
}
.box1 .content .name::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 200px;
  height: 2px;
  background: linear-gradient(to right, #fc7130, #e50f29);
}
.box1 .content .des {
  font-size: 16px;
  color: #333;
  text-align: justify;
}

.box2 .box-title {
  padding-top: 40px;
  padding-bottom: 0;
}
.box2 .list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.box2 .list .item {
  box-sizing: border-box;
  width: 590px;
  height: 219px;
  padding: 30px 50px 30px 40px;
  margin-top: 20px;
  color: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.box2 .list .item:nth-child(1) {
  background-image: url("../images/box2-1bg.png");
}
.box2 .list .item:nth-child(2) {
  background-image: url("../images/box2-2bg.png");
}
.box2 .list .item:nth-child(3) {
  background-image: url("../images/box2-3bg.png");
}
.box2 .list .item:nth-child(4) {
  background-image: url("../images/box2-4bg.png");
}
.box2 .list .item:hover .des {
  height: 120px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.box2 .list .item:last-child {
  padding-right: 35px;
}
.box2 .list .item:nth-child(1) .title {
  background-image: url("../images/box2-1.png");
  background-position: 10px center;
}
.box2 .list .item:nth-child(2) .title {
  background-image: url("../images/box2-2.png");
  background-position: 0 center;
}
.box2 .list .item:nth-child(3) .title {
  background-image: url("../images/box2-3.png");
  background-position: 5px center;
}
.box2 .list .item:nth-child(4) .title {
  background-image: url("../images/box2-4.png");
  background-position: 5px center;
}
.box2 .list .item .title {
  font-weight: 500;
  font-size: 22px;
  padding-left: 50px;
  margin-bottom: 5px;
  line-height: 40px;
  background-repeat: no-repeat;
}
.box2 .list .item .des {
  font-size: 14px;
  line-height: 24px;
  padding-left: 10px;
  height: 50px;
  overflow: hidden;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: height 0.2s ease;
}
.box2 .list .item .item-list {
  width: 400px;
  display: flex !important;
  flex-wrap: wrap;
  align-content: flex-start;
  margin-top: 10px;
}
.box2 .list .item .item-list .item1 {
  width: 180px;
  font-size: 14px;
  color: #fff;
  line-height: 24px;
}

.box3 {
  margin-bottom: 50px;
}
.box3 .box-title {
  padding-top: 36px;
  padding-bottom: 25px;
}
.box3 .tabs {
  display: flex;
  align-items: flex-end;
  height: 80px;
}
.box3 .tabs .tab {
  width: 600px;
  height: 60px;
  background: linear-gradient(90deg, #ffdc38, #ff8851);
  border-radius: 16px 16px 0px 0px;
  font-weight: bold;
  font-size: 28px;
  color: #fff;
  text-align: center;
  line-height: 60px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.box3 .tabs .tab.active {
  height: 80px;
  line-height: 80px;
  background: linear-gradient(90deg, #fc7130, #e50f29);
}
.box3 .content {
  background: #fff;
  box-shadow: 0px 2px 36px 2px rgba(238, 231, 233, 0.58);
  border-radius: 0px 0px 16px 16px;
  padding: 30px 50px 1px;
  display: none;
}
.box3 .content .title {
  width: 1100px;
  height: 70px;
  background: linear-gradient(90deg, #fc7130, #e50f29);
  border-radius: 8px;
  padding: 0 30px 0 25px;
  margin-bottom: 25px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.box3 .content .title .name {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  font-size: 24px;
  color: #fff;
  padding-right: 256px;
  background: url("../images/box3-t1.png") no-repeat right center;
}
.box3 .content .title .num {
  font-weight: 800;
  font-size: 60px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.8), transparent 70%, transparent);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  letter-spacing: 5px;
}
.box3 .content .title1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  font-size: 20px;
  color: #e7192a;
  padding-left: 20px;
  padding-right: 214px;
  background: url("../images/box3-t2.png") no-repeat right center;
}
.box3 .content .list1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-evenly;
  padding-left: 120px;
  height: 95px;
}
.box3 .content .list1 .item {
  font-size: 16px;
  color: #333;
  line-height: 30px;
  width: 320px;
}
.box3 .content .list2 {
  margin-top: 12px;
  height: 200px;
  display: flex;
  padding-left: 30px;
  padding-bottom: 15px;
}
.box3 .content .list2 .left {
  height: 200px;
  padding-bottom: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.box3 .content .list2 .left .item {
  width: 575px;
  height: 50px;
  background: linear-gradient(90deg, #ffe4eb, #ffffff);
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  line-height: 50px;
  padding-left: 20px;
}
.box3 .content .list2 .right {
  width: 430px;
  height: 200px;
  background: url("../images/box3-1.png") no-repeat center;
}
.box3 .content .list3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6px 35px;
}
.box3 .content .list3 .item {
  width: 350px;
  height: 300px;
  border-radius: 16px;
  background: #ccc;
  overflow: hidden;
}
.box3 .content .list3 .item:nth-child(1) {
  background: url("../images/box3-2-1.png") no-repeat center;
}
.box3 .content .list3 .item:nth-child(2) {
  background: url("../images/box3-2-2.png") no-repeat center;
}
.box3 .content .list3 .item:nth-child(3) {
  background: url("../images/box3-2-3.png") no-repeat center;
}
.box3 .content .list3 .item:hover .item-c {
  transform: translateY(-100%);
}
.box3 .content .list3 .item .name {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 22px;
  color: #fff;
  line-height: 33px;
  text-align: center;
}
.box3 .content .list3 .item .item-c {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #fd594f, #fca66b);
  box-sizing: border-box;
  padding: 25px 28px;
  transition: transform 0.2s ease;
}
.box3 .content .list3 .item .item-c .t1 {
  font-weight: bold;
  font-size: 22px;
  color: #fff;
  padding-left: 20px;
  line-height: 30px;
  position: relative;
  margin-bottom: 5px;
}
.box3 .content .list3 .item .item-c .t1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 20px;
  background: #fff;
}
.box3 .content .list3 .item .item-c .des {
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
}
.box3 .content .list3 .item .item-c .des span {
  font-weight: bold;
}
.box3 .content .list4 {
  display: flex;
  padding-bottom: 30px;
}
.box3 .content .list4 .left {
  background: url("../images/box3-3.png") no-repeat center;
  width: 370px;
  height: 154px;
  margin-left: 60px;
}
.box3 .content .list4 .right {
  width: 600px;
  margin-left: 30px;
}
.box3 .content .list4 .right .title1 {
  padding: 0;
}
.box3 .content .list4 .right .des {
  font-size: 16px;
  color: #333;
  line-height: 24px;
  text-indent: 32px;
  padding-top: 3px;
}
.box3 .content .list5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 75px;
  margin-bottom: 30px;
}
.box3 .content .list5 .item {
  width: 450px;
  height: 60px;
  background: linear-gradient(90deg, #fc7130, #e50f29);
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.box3 .content .list6 {
  padding: 12px 50px 18px;
}
.box3 .content .list6 .list6-1 {
  width: 1000px;
  height: 140px;
  background: url("../images/box3-4-1.png") no-repeat center top;
  border-radius: 8px;
}
.box3 .content .list6 .list6-1 .title6 {
  font-weight: 500;
  font-size: 16px;
  color: #e81d2a;
  line-height: 30px;
  padding: 15px 0 25px 45px;
}
.box3 .content .list6 .list6-1 .list6-box .item:hover {
  color: #e81d2a;
}
.box3 .content .list6 .list6-2 {
  width: 1000px;
  height: 140px;
  background: url("../images/box3-4-2.png") no-repeat center top;
  border-radius: 8px;
}
.box3 .content .list6 .list6-2 .title6 {
  font-weight: 500;
  font-size: 16px;
  color: #e91e2a;
  line-height: 30px;
  padding: 15px 0 25px 45px;
}
.box3 .content .list6 .list6-2 .list6-box .item:hover {
  color: #e91e2a;
}
.box3 .content .list6 .list6-box {
  display: flex;
  align-items: center;
  padding: 15px 0 0 25px;
}
.box3 .content .list6 .list6-box .item {
  width: 115px;
  height: 50px;
  font-size: 16px;
  color: #333;
  line-height: 24px;
  text-align: center;
  margin-right: 20px;
  transition: color 0.2s ease;
}
.box3 .content .list6 .list6-box .item:first-child {
  width: 130px;
}
.box3 .content .list6 .list6-box .item:nth-child(2) {
  width: 120px;
}
.box3 .content .list6 .list6-box .item:last-child {
  margin-right: 0;
}
.box3 .content .list7 {
  display: flex;
  justify-content: space-between;
  padding-left: 45px;
  padding-right: 20px;
  margin-top: -8px;
}
.box3 .content .list7 .left {
  width: 570px;
  font-size: 16px;
  color: #333;
  line-height: 24px;
  padding-top: 30px;
}
.box3 .content .list7 .left span {
  color: #e7192a;
}
.box3 .content .list7 .right {
  width: 400px;
  height: 200px;
  background: url("../images/box3-4.png") no-repeat center;
}
.box3 .content .box-content1 {
  width: 1050px;
  margin: 22px auto 10px;
}
.box3 .content .box-content1 .box-tabs {
  display: flex;
}
.box3 .content .box-content1 .box-tabs .item {
  width: 150px;
  height: 50px;
  line-height: 50px;
  background: #ed312c;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.box3 .content .box-content1 .box-tabs .item.active {
  background: linear-gradient(90deg, #ffdc38, #ff8851);
}
.box3 .content .box-content1 .box-item {
  display: none;
  width: 1050px;
  height: 320px;
  background: linear-gradient(to bottom, #fff0f4, #fff);
  box-sizing: border-box;
  padding: 20px 80px 0 28px;
}
.box3 .content .box-content1 .box-item .item {
  display: flex;
  margin-bottom: 10px;
}
.box3 .content .box-content1 .box-item .item:nth-child(3) {
  margin-bottom: 0;
}
.box3 .content .box-content1 .box-item .item .t1 {
  width: 100px;
  height: 30px;
  background: linear-gradient(90deg, #fc7130, #e50f29);
  border-radius: 0px 8px 0px 8px;
  font-size: 16px;
  color: #fff;
  line-height: 30px;
  margin-right: 10px;
  text-align: center;
}
.box3 .content .box-content1 .box-item .item .t2 {
  flex: 1;
  font-size: 16px;
  color: #333;
  padding-top: 4px;
}
.box3 .content .box-content2 {
  width: 1000px;
  margin: 28px auto 10px;
  border-radius: 8px;
  overflow: hidden;
}
.box3 .content .box-content2 .box-tabs {
  width: 1000px;
  height: 142px;
  background: linear-gradient(90deg, #fc7130, #e50f29);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.box3 .content .box-content2 .box-tabs .item {
  width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 8px;
  font-size: 22px;
  color: #fff;
  margin: 0 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.box3 .content .box-content2 .box-tabs .item.active {
  background: #fff;
  font-weight: bold;
  color: #e7192a;
}
.box3 .content .box-content2 .box-item {
  display: none;
  width: 1000px;
  height: 300px;
  background: url("../images/box3-5.png") no-repeat center;
  box-sizing: border-box;
  padding-top: 28px;
}
.box3 .content .box-content2 .box-item.show {
  display: flex !important;
}
.box3 .content .box-content2 .box-item .item {
  width: 420px;
  padding-left: 60px;
}
.box3 .content .box-content2 .box-item .item .title1 {
  padding-left: 0;
  margin-bottom: 8px;
}
.box3 .content .box-content2 .box-item .item .des {
  font-size: 16px;
  color: #333;
}
.box3 .content .list8 {
  margin-top: -25px;
  width: 1100px;
  height: 245px;
  background: linear-gradient(to bottom, #fff0f4, #fff);
  display: flex;
  justify-content: space-around;
}
.box3 .content .list8 .item {
  flex: 1;
  text-align: center;
  padding-top: 25px;
}
.box3 .content .list8 .item .t1 {
  font-weight: bold;
  font-size: 20px;
  color: #e7192a;
  line-height: 24px;
}
.box3 .content .list8 .item .t2 {
  width: 144px;
  height: 24px;
  background: linear-gradient(90deg, #fc7130, #e50f29);
  border-radius: 0px 12px 0px 12px;
  margin: 15px auto 20px;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  padding-left: 10px;
  box-sizing: border-box;
}
.box3 .content .list8 .item .t3 {
  font-size: 16px;
  color: #333;
  line-height: 24px;
}
.box3 .show {
  display: block !important;
}

.box4 {
  padding: 0 50px;
  box-sizing: border-box;
  box-shadow: 0px 2px 36px 2px rgba(238, 231, 233, 0.58);
  border-radius: 16px;
  margin-bottom: 50px;
  background-color: #fff;
}
.box4 .box-title {
  padding-bottom: 18px;
}
.box4 .position {
  padding: 0 10px 30px;
  display: flex;
  align-items: center;
  text-align: left;
  height: 340px;
}
.box4 .position .map {
  width: 730px;
  height: 340px;
}
.box4 .position .map .amap-marker-label {
  background-color: transparent;
  border: 0;
}
.box4 .position .map .amap-marker-label:after {
  border: 10px solid transparent;
  border-top-color: #fff;
  bottom: -16px;
  content: "";
  height: 0;
  left: calc(50% - 10px);
  position: absolute;
  width: 0;
}
.box4 .position .map .info {
  background-color: #fff;
  border-radius: 8px;
  border-width: 0;
  box-shadow: 0 2px 6px rgba(114, 124, 245, 0.5);
  line-height: 20px;
  margin: 0;
  min-width: 0;
  padding: 10px 15px;
  position: relative;
  right: 0;
  top: 0;
  width: auto;
}
.box4 .position .t1 {
  font-weight: bold;
  font-size: 16px;
  line-height: 30px;
  background: linear-gradient(to right, #fc7130, #e50f29);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.box4 .position .t2 {
  font-size: 16px;
  color: #333;
  height: 40px;
  line-height: 20px;
}
.box4 .position .form-container {
  width: 330px;
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}
.box4 .position .form-container .form-item {
  font-size: 16px;
  width: 330px;
  height: 42px;
  line-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #999;
  background-color: #fff;
  margin-bottom: 12px;
}
.box4 .position .form-container .form-code {
  width: 330px;
  display: flex;
  justify-content: space-between;
  margin: 0;
}
.box4 .position .form-container .form-code .form-item {
  width: 200px;
}
.box4 .position .form-container .form-code .kaptcha-code {
  border: none;
  padding: 0;
}
.box4 .position .form-container .form-code .kaptcha-btn {
  width: 120px;
  height: 42px;
  line-height: 42px;
  background: linear-gradient(90deg, #ffdc38, #ff8851);
  color: #fff;
  font-size: 16px;
  transition: none;
}
.box4 .position .form-container .form-code .kaptcha-btn:active {
  background: #ff651e;
}
.box4 .position .form-container .form-privacy {
  font-size: 14px;
  color: #333;
  width: 330px;
  padding-left: 10px;
  box-sizing: border-box;
}
.box4 .position .form-container .form-privacy .privacy-validate {
  margin: 0 5px;
}
.box4 .position .form-container .form-privacy a {
  color: #de253c;
}
.box4 .position .form-container .submit {
  width: 330px;
  height: 46px;
  line-height: 46px;
  background: linear-gradient(90deg, #ffdc38, #ff8851);
  color: #fff;
  font-size: 20px;
  border: none;
  transition: none;
}
.box4 .position .form-container .submit:active {
  background: #ff651e;
}
.box4 .imgs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 50px;
}
.box4 .imgs .pic {
  width: 356px;
  height: 197px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.box4 .imgs .pic:last-child {
  margin-right: 0;
}
.box4 .imgs .pic:hover .img {
  transform: scale(1.1);
}
.box4 .imgs .pic .img {
  width: 100%;
  transition: transform 0.2s ease;
}

.box5 {
  position: relative;
  height: 450px;
}
.box5 .content {
  position: relative;
  top: 0;
  left: 30px;
  z-index: 2;
  width: 1140px;
  height: 400px;
  background: #fff;
  border-radius: 16px;
}
.box5 .content .box-title {
  padding: 35px 0 10px;
}
.box5 .content .list {
  padding: 0 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.box5 .content .list .item {
  width: 220px;
  height: 265px;
  background: url("../images/box5.png") no-repeat center;
  border-radius: 19px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.box5 .content .list .item:hover .item-bg {
  opacity: 1;
}
.box5 .content .list .item:hover .img-con {
  box-shadow: 0px 2px 13px 0px rgba(229, 145, 122, 0.31);
}
.box5 .content .list .item:hover .img-con .img.c-icon {
  transform: rotateY(180deg);
  z-index: 0;
}
.box5 .content .list .item:hover .img-con .img.c-img {
  transform: rotateY(0deg);
  z-index: 1;
}
.box5 .content .list .item:hover .name {
  background: linear-gradient(to right, #fc7130, #e50f29);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.box5 .content .list .item .item-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 195px;
  height: 235px;
  background: linear-gradient(to right, #fff8fa, #ffdfe2);
  border-radius: 19px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.box5 .content .list .item .img-con {
  width: 156px;
  height: 156px;
  overflow: hidden;
  position: relative;
  margin-top: 30px;
  margin-bottom: 18px;
}
.box5 .content .list .item .img-con .img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.box5 .content .list .item .img-con .img.c-icon {
  transform: rotateY(0deg);
  z-index: 1;
}
.box5 .content .list .item .img-con .img.c-img {
  transform: rotateY(180deg);
  z-index: 0;
}
.box5 .content .list .item .name {
  font-size: 16px;
  color: #fff;
  position: relative;
}
.box5 .bottom {
  width: 1200px;
  height: 201px;
  background: linear-gradient(90deg, #fc7130, #e50f29);
  border-radius: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.footer {
  padding: 45px 0 70px;
}
.footer .txt {
  font-size: 14px;
  color: #666;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .txt a {
  color: #666;
}
.footer .txt a:last-child::after {
  display: none;
}