.head {
  height: 110px;
  width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.head .logo {
  margin-top: 29px;
  display: block;
}

.head .right {
  margin-top: 33px;
  display: flex;
}

.head .search-box {
  width: 380px;
  height: 45px;
  border: #e2e3e3 1px solid;
  position: relative;
}

.head .search-box::after {
  width: 17px;
  height: 17px;
  background: url(../images/seach-icon.png) no-repeat;
  position: absolute;
  content: '';
  display: block;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.head .search-box input {
  height: 43px;
  line-height: 40px;
  box-sizing: border-box;
  width: 100%;
  border: none;
  padding-left: 35px;
  position: relative;
}

.head .search-box input::placeholder {
  color: #999;
  font-size: 14px;
}

.head .search-box .btn {
  position: absolute;
  right: -1px;
  top: -1px;
  width: 80px;
  height: 45px;
  background-color: #f30c0c;
  border: none;
  color: #fff;
  font-size: 16px;
}

.head .tel {
  margin-left: 60px;
  text-align: right;
}

.head .tel span {
  color: #878991;
  position: relative;
  padding-left: 20px;
  line-height: 12px;
  padding-bottom: 5px;
}

.head .tel span::before {
  content: '';
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  left: 0;
  top: 2px;
  background: url(../images/tel-icon.png) no-repeat;
}

.head .tel .num {
  font-size: 24px;
  color: #f30c0c;
  font-family: "SF Pro Text";
  font-weight: 600;
}

.nav {
  height: 55px;
  position: relative;
}

.nav::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #e2e3e3;
}

.nav .wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.nav ul {
  display: flex;
}

.nav ul li {
  position: relative;
}

.nav ul li a {
  display: block;
  min-width: 150px;
  text-align: center;
}

.nav ul li a .arrow {
  display: inline-block;
  width: 10px;
  height: 6px;
  background: url(../images/down-icon1.png) no-repeat;
  margin-left: 5px;
  transition: all 0.3s ease-in;
}

.nav ul li a span {
  position: relative;
  color: #3f4044;
  line-height: 55px;
  height: 55px;
  display: inline-block;
}

.nav ul li a span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  background-color: #f30c0c;
  transition: all .2s ease;
  opacity: 0.6;
}

.nav ul li.active a .arrow, .nav ul li:hover a .arrow {
  transform: rotate(180deg);
  width: 10px;
  height: 6px;
  background: url(../images/down-icon1-hover.png) no-repeat;
}

.nav ul li.active a span, .nav ul li:hover a span {
  color: #f30c0c;
}

.nav ul li.active a span::after, .nav ul li:hover a span::after {
  transform: scaleX(1);
}

.nav ul .dropdown-menu {
  position: absolute;
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  left: 0;
  top: 55px;
  z-index: 102;
  padding: 15px 0;
}

.nav ul .dropdown-menu::after {
  display: none;
}

.nav ul .dropdown-menu li a {
  line-height: 40px;
  color: #3f4044;
  font-size: 15px;
}

.nav ul .dropdown-menu li a:hover {
  color: #f30c0c;
}

.nav .product-menu {
  cursor: pointer;
  margin: 0 auto;
  position: absolute;
  width: 55px;
  height: 55px;
  background: #f30c0c;
  right: 0;
}

.nav .product-menu .menu-global {
  backface-visibility: hidden;
  position: absolute;
  left: 14px;
  border-top: 3px solid white;
  width: 26px;
  transition: 0.55s;
}

.nav .product-menu .menu-global.menu-top {
  top: 18px;
}

.nav .product-menu .menu-global.menu-middle {
  top: 24px;
}

.nav .product-menu .menu-global.menu-bottom {
  top: 30px;
}

.nav .product-menu.active .menu-global.menu-top {
  backface-visibility: hidden;
  top: 25px;
  transform: rotate(50deg);
  transition: all 0.5s linear;
}

.nav .product-menu.active .menu-global.menu-middle {
  opacity: 0;
}

.nav .product-menu.active .menu-global.menu-bottom {
  backface-visibility: hidden;
  top: 25px;
  transform: rotate(-410deg);
  transition: all 0.5s linear;
}

.nav .product-menu-show {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute;
  transform: translateY(50px);
  z-index: 1002;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in;
  padding: 30px;
}

.nav .product-menu-show.show {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(55px);
  transition: all 0.2s ease-in;
}

.nav .product-menu-show dl {
  float: left;
  width: 25%;
}

.nav .product-menu-show dl dt {
  font-weight: bold;
  font-size: 15px;
  color: #3f4044;
  margin-bottom: 15px;
}

.nav .product-menu-show dl dd {
  line-height: 24px;
  font-size: 14px;
}

.nav .product-menu-show dl dd a {
  color: #878991;
  display: block;
}

.nav .product-menu-show dl dd a:hover {
  text-decoration: underline;
  color: #3f4044;
}

.nav.nav-fixed {
  position: fixed;
  top: 0;
  background-color: #fff;
  width: 100%;
  z-index: 106;
  box-shadow: rgba(63, 64, 68, 0.1) 0 0 10px;
}

.FocusImg {
  width: 100%;
  height: 600px;
  position: relative;
}

.FocusImg .pic {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 100;
}

.FocusImg .pic li {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
}

.FocusImg .num {
  width: 1200px;
  height: 10px;
  bottom: 15px;
  position: absolute;
  z-index: 101;
  left: 50%;
  text-align: center;
  margin-left: -600px;
  font-size: 0px;
}

.FocusImg .num a {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin: 0 5px;
  background: #fff;
  border-radius: 100%;
}

.FocusImg .num a.current {
  background: #f30c0c;
  width: 16px;
  border-radius: 5px;
}

.section-title {
  font-size: 24px;
  color: #3f4044;
  position: relative;
}

.section-title span {
  text-transform: uppercase;
  color: rgba(63, 64, 68, 0.4);
  font-size: 14px;
  display: block;
}

.section-title .btn-box {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 5px;
}

.btn-box {
  display: inline-block;
}

.btn-box a {
  height: 38px;
  border: #f30c0c 1px solid;
  padding: 0 30px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f30c0c;
  border-radius: 19px;
}

.btn-box a span {
  width: 21px;
  height: 21px;
  background: url(../images/left-icon1.png) no-repeat;
  margin-left: 10px;
  transition: all 0.3s linear;
}

.btn-box a:hover {
  background-color: #f30c0c;
  color: #fff;
}

.btn-box a:hover span {
  transform: translateX(5px);
}

.about-section {
  position: relative;
  height: 530px;
  width: 100%;
  margin-top: -50px;
  z-index: 105;
}

.about-section::after {
  background-color: #f30c0c;
  height: 530px;
  right: 0;
  top: 0;
  bottom: 0;
  left: calc(50% + 295px);
  content: '';
  display: inline-block;
  position: absolute;
}

.about-section .video-intro {
  position: relative;
  z-index: 105;
  width: 520px;
  float: right;
}

.about-section .video-intro .section-title {
  width: 350px;
  float: right;
  text-align: right;
  color: #fff;
  margin-top: 35px;
  position: relative;
  display: block;
}

.about-section .video-intro .section-title span {
  color: #fff;
}

.about-section .video-intro .section-title .more {
  position: absolute;
  left: 20px;
  top: 5px;
}

.about-section .video-intro .video-box {
  width: 520px;
  height: 340px;
  background: #000;
  margin-top: 30px;
}

.about-intro {
  margin-top: 85px;
  float: left;
  width: 695px;
}

.about-intro ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  margin-top: 50px;
}

.about-intro ul li {
  text-align: center;
  color: #878991;
}

.about-intro ul li span {
  font-size: 72px;
  font-weight: 600;
  color: #f30c0c;
  display: block;
  line-height: 70px;
  font-family: "DINCond";
}

.about-intro ul li span sup {
  font-size: 30px;
  margin-top: -15px;
}

.about-intro .depict {
  font-size: 15px;
  color: #3f4044;
  margin: 40px 0;
  line-height: 24px;
  text-indent: 2em;
}

.classify-menu {
  margin-top: 15px;
}

.classify-menu a {
  height: 38px;
  border: #e6e6e6 1px solid;
  display: inline-block;
  background-color: #fff;
  line-height: 38px;
  padding: 0 19px;
  color: #3f4044;
  margin-top: 15px;
  margin-right: 15px;
  transition: all 0.3s linear;
}

.classify-menu a:hover, .classify-menu a.active {
  background-color: #f30c0c;
  color: #fff;
}

.product-section {
  background: #f2f2f2;
  padding: 60px 0;
}

.product-section .swiper-product {
  margin-top: 30px;
  position: relative;
  width: 1280px;
  overflow: hidden;
  padding-bottom: 50px;
}

.product-section .swiper-product .swiper-slide {
  width: 406px;
}

.product-section .swiper-product .swiper-slide:hover .name {
  background-color: #f30c0c;
}

.product-section .swiper-product .swiper-slide:hover .name a {
  color: #fff;
}

.product-section .swiper-product .swiper-slide .cover {
  width: 406px;
  border: rgba(63, 64, 68, 0.4);
  height: 303px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-section .swiper-product .swiper-slide .name {
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #e6e6e6;
}

.product-section .swiper-product .swiper-slide .name a {
  color: #3f4044;
}

.product-section .swiper-product .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border: #3f4044 1px solid;
  opacity: 1;
  background-color: #f2f2f2;
}

.product-section .swiper-product .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #f30c0c;
  border: #f30c0c 1px solid;
}

.product-section .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0;
}

.news-section {
  width: 1280px;
  margin: 60px auto;
}

.news-section .headline {
  width: 765px;
  float: left;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

.news-section .headline .cover {
  width: 350px;
  height: 210px;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.news-section .headline .info {
  flex: 1;
  padding-left: 30px;
}

.news-section .headline .info .name {
  color: #3f4044;
  font-size: 18px;
  line-height: 30px;
}

.news-section .headline .info .time {
  font-size: 14px;
  color: #878991;
  display: block;
  margin-top: 5px;
}

.news-section .headline .info .decs {
  color: #636467;
  line-height: 24px;
  margin-top: 30px;
  text-overflow: ellipsis;
  overflow: hidden;
  empty-cells: initial;
  display: -webkit-box;
  white-space: normal !important;
  word-wrap: break-word;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-section .headline .info .more {
  color: #f30c0c;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.news-section .headline .info .more span {
  width: 21px;
  height: 21px;
  background: url(../images/left-icon1.png) no-repeat;
  display: inline-block;
  margin-left: 10px;
}

.news-section .news-ul {
  width: 440px;
  float: right;
  margin-top: 30px;
}

.news-section .news-ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.news-section .news-ul li:hover .time {
  background-color: #f30c0c;
  color: #fff;
}

.news-section .news-ul li:hover .time span {
  color: #fff;
}

.news-section .news-ul li:hover a {
  color: #f30c0c;
  text-decoration: underline;
}

.news-section .news-ul li .time {
  width: 60px;
  height: 60px;
  background: #ececec;
  text-align: center;
  font-size: 30px;
  line-height: 30px;
  padding-top: 8px;
}

.news-section .news-ul li .time span {
  display: block;
  font-size: 16px;
  line-height: 16px;
  color: #878991;
}

.news-section .news-ul li a {
  flex: 1;
  font-size: 16px;
  color: #3f4044;
  padding-left: 20px;
}

.foot {
  background: #3f4044;
  padding-top: 40px;
}

.foot .wrap {
  display: flex;
}

.foot dl {
  width: 28%;
}

.foot dl:nth-child(2) {
  padding-left: 50px;
}

.foot dl:nth-child(4) {
  width: 14%;
  text-align: center;
}

.foot dl:nth-child(4) img {
  border: #fff 3px solid;
}

.foot dl dt {
  color: #fff;
}

.foot dl dt span {
  margin-right: 10px;
  width: 22px;
  height: 22px;
}

.foot dl dd {
  color: #ececec;
  font-size: 14px;
  padding-left: 32px;
  margin-top: 15px;
}

.foot .copyright {
  height: 45px;
  background: #2f3033;
  color: #ececec;
  font-size: 14px;
  line-height: 45px;
  text-align: center;
  display: block;
  margin-top: 40px;
}

#back-top {
  width: 50px;
  height: 50px;
  background: #f30c0c;
  position: fixed;
  right: 50px;
  bottom: 260px;
  cursor: pointer;
  z-index: 106;
  transition: all 0.6s ease-in-out;
}

.sub-banner {
  width: 100%;
  height: 320px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.sub-banner .writing {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 24px;
}

.sub-banner .writing h2 {
  font-weight: lighter;
  margin-bottom: 10px;
}

.sub-banner .writing small {
  text-transform: uppercase;
  font-family: arial;
}

.sub-menu {
  background: #f2f2f2;
}

.sub-menu .nav-list {
  height: 60px;
}

.sub-menu .nav-list .title {
  box-sizing: border-box;
  width: 285px;
  background: #f30c0c;
  height: 100%;
  padding-top: 12px;
  color: #fff;
  padding-left: 20px;
  overflow: hidden;
  float: left;
  position: relative;
}

.sub-menu .nav-list .title .cn {
  color: #fff;
  position: relative;
  z-index: 1;
  font-size: 24px;
}

.sub-menu .nav-list .title .en {
  font-family: arial;
  color: #fff;
  text-transform: uppercase;
  font-size: 40px;
  position: absolute;
  left: 20px;
  z-index: 0;
  top: 15px;
  opacity: 0.2;
}

.sub-menu .nav-list ul {
  float: left;
}

.sub-menu .nav-list ul li {
  float: left;
  line-height: 60px;
  position: relative;
}

.sub-menu .nav-list ul li a {
  color: #3f4044;
  font-size: 16px;
  margin: 0 30px;
  display: block;
}

.sub-menu .nav-list ul li a:hover, .sub-menu .nav-list ul li a.active {
  color: #f30c0c;
  font-weight: bold;
}

.sub-menu .site {
  color: #3f4044;
  padding: 15px 0;
  float: right;
  margin-top: -55px;
}

.sub-menu .site a {
  color: #878991;
  padding-right: 15px;
  margin-right: 10px;
  position: relative;
}

.sub-menu .site a.home span {
  width: 14px;
  height: 14px;
  background: url(../images/home-icon.png) no-repeat;
  background-size: 14px 14px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 5px;
}

.sub-menu .site a:before {
  content: "-";
  position: absolute;
  right: 0;
  display: inline-block;
  color: #878991;
}

.news-list {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.news-list .item {
  border-bottom: 1px solid #e2e3e3;
  position: relative;
  padding: 30px 0;
}

.news-list .item a {
  display: flex;
}

.news-list .item:after {
  display: block;
  content: '';
  clear: both;
}

.news-list .item .cover-pic {
  width: 285px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-list .item .cover-pic img {
  display: block;
  max-width: 100%;
}

.news-list .item .content-box {
  flex: 1;
  padding: 30px 180px 0px 30px;
  height: auto;
  transition: all .3s ease-out 0s;
  position: relative;
}

.news-list .item .content-box .title {
  font-size: 18px;
  color: #3f4044;
  display: block;
  height: 24px;
  overflow: hidden;
  margin-bottom: 20px;
}

.news-list .item .content-box .decs {
  height: 78px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: all 0.3s ease-out 0s;
  color: #878991;
  line-height: 26px;
  text-align: left;
  margin-top: 20px;
}

.news-list .item .content-box .date {
  width: 320px;
  height: auto;
  background: transparent;
  position: absolute;
  top: 28px;
  right: 0px;
  text-align: right;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.news-list .item .content-box .date:after {
  width: 35px;
  height: 1px;
  content: '';
  background: #e2e3e3;
  position: absolute;
  top: 24px;
  right: 84px;
  transition: all 0.3s ease-out 0s;
}

.news-list .item .content-box .date .year {
  font-size: 22px;
  color: #878991;
  display: block;
  line-height: 46px;
  position: relative;
  top: 0px;
  width: 100%;
  display: inline-block;
  font-family: Arial;
}

.news-list .item a.details {
  font-size: 24px;
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  display: block;
  color: transparent;
  position: absolute;
  top: 130px;
  right: 0;
  transition: all 0.3s ease-out 0s;
  line-height: 36px;
  text-align: center;
}

.news-list .item a.details i {
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/left-icon3.png) no-repeat;
}

.news-list .item:hover a.details {
  background: #ed1c24;
}

.news-list .item:hover a.details i {
  background: url(../images/left-icon3-hover.png) no-repeat;
}

.news-list .item:hover .content-box {
  padding-right: 175px;
}

.news-list .item:hover .content-box .title {
  color: #f30c0c;
}

.news-list .item:hover .content-box .date {
  top: 28px;
  right: 0px;
  color: #3f4044;
}

.news-list .item:hover .content-box .date .year {
  color: #3f4044;
}

.news-list .item:hover .content-box .date:after {
  background: #878991;
  width: 60px;
}

.pagination {
  text-align: center;
  display: block;
  margin: 20px auto 50px;
}

.pagination ul li {
  vertical-align: top;
  letter-spacing: normal;
  word-spacing: normal;
  display: inline-block;
  min-width: 32px;
  margin: 0 5px;
}

.pagination ul li span {
  color: #878991;
  background-color: #FFF;
  text-align: center;
  display: block;
  width: inherit;
  height: inherit;
  padding: 0 5px;
  border: 1px solid #e5e5e5;
  position: relative;
  text-align: center;
  line-height: 32px;
  font-size: 14px;
}

.pagination ul li span.currentpage {
  color: #FFF;
  background-color: #f30c0c;
  border-color: #f30c0c;
  position: relative;
  z-index: 2;
}

.pagination ul li a span, .pagination ul li a:visited span {
  color: #3f4044;
  height: 100%;
  width: 100%;
  padding: 0 5px;
  border: 1px solid rgba(63, 64, 68, 0.4);
}

.pagination ul li a:hover span, .pagination ul li a:active {
  color: #f30c0c;
  text-decoration: none;
  border: 1px solid #f30c0c;
}

.single-page {
  padding: 50px 0;
  line-height: 28px;
}

.single-page .head-title {
  text-align: center;
  border-bottom: #e2e3e3 1px solid;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.single-page .head-title h1 {
  font-size: 24px;
  line-height: 30px;
  font-weight: normal;
}

.single-page .head-title .time {
  font-size: 15px;
  color: #878991;
  margin-top: 10px;
}

.single-page h2 {
  font-size: 16px;
}

.pageswitch {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 50px;
}

.pageswitch a {
  font-size: 16px;
  float: left;
  width: 50%;
  transition: all ease-out .3s;
  line-height: 30px;
  position: relative;
  color: #878991;
  padding: 20px 20px 20px 40px;
  box-sizing: border-box;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.pageswitch a:before {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  transition: all .3s ease-out 0s;
  text-align: center;
  line-height: 30px;
  border: #ddd 1px solid;
  content: '';
  background: url(../images/left-icon3.png) no-repeat center;
}

.pageswitch a.prev:before {
  left: 0;
  display: block;
  transform: rotate(-180deg);
}

.pageswitch a:hover {
  padding-left: 50px;
  text-decoration: underline;
  color: #f30c0c;
}

.pageswitch a:hover:before {
  left: 10px;
  border: #f30c0c 1px solid;
  background: #f30c0c;
  background: #f30c0c url(../images/left-icon3-hover.png) no-repeat center;
}

.pageswitch a.next {
  text-align: right;
  padding-right: 40px;
  padding-left: 20px;
}

.pageswitch a.next:before {
  display: block;
  left: auto;
  right: 0;
}

.pageswitch a.next:hover {
  padding-right: 50px;
}

.pageswitch a.next:hover:before {
  right: 10px;
}

.product-list {
  margin-top: 30px;
  position: relative;
  width: 1280px;
  overflow: hidden;
}

.product-list li {
  width: 406px;
  border: #e2e3e3 1px solid;
  margin-right: 30px;
  float: left;
  margin-bottom: 30px;
}

.product-list li:nth-child(3n) {
  margin-right: 0;
}

.product-list li:hover .name {
  background-color: #f30c0c;
}

.product-list li:hover .name a {
  color: #fff;
}

.product-list li .cover {
  width: 404px;
  border: rgba(63, 64, 68, 0.4);
  height: 301px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-list li .name {
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #e6e6e6;
}

.product-list li .name a {
  color: #3f4044;
}

.product-show {
  margin: 40px 0;
  display: flex;
}

.product-show .pic-view {
  border: #e2e3e3 1px solid;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-show .parameter {
  margin-left: 30px;
  flex: 1;
}

.product-show .parameter h2 {
  font-weight: lighter;
  font-size: 24px;
  margin-bottom: 30px;
}

.product-show .parameter ul {
  line-height: 32px;
}

.product-show .parameter ul .title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-show .parameter ul li span {
  color: #878991;
  display: inline-block;
  width: auto;
}

.product-detail {
  background-color: #f2f2f2;
}

.product-detail .single-page {
  width: 1280px;
  margin: 0 auto;
}

.join-list {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}

.join-list li {
  background: #fff;
  margin-bottom: 10px;
}

.join-list li:last-child {
  margin-bottom: 0;
}

.join-list li.open .name {
  background-color: #f30c0c;
  color: #fff;
}

.join-list li.open .iconfont::before {
  transform: rotate(90deg);
}

.join-list li .name {
  padding: 0 20px;
  color: #3f4044;
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: #e6e6e6;
  font-size: 16px;
}

.join-list li .name .iconfont {
  position: absolute;
  right: 20px;
}

.join-list li .name .iconfont::before {
  content: '';
  width: 21px;
  height: 21px;
  display: block;
  transition: all 0.3s linear;
  background: url(../images/left-icon1.png) no-repeat;
}

.join-list li .decs {
  padding: 20px 35px;
  display: none;
  position: relative;
  line-height: 26px;
  color: #878991;
}

.join-list li .decs h3 {
  font-size: 16px;
  color: #3f4044;
  margin-bottom: 20px;
}

.about-page .section-title {
  text-align: center;
}

.about-page .about-intro {
  margin-top: 50px;
  float: initial;
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.about-page .about-intro p {
  line-height: 28px;
  margin-bottom: 20px;
}

.about-page .about-honor {
  background: #f2f2f2;
  padding: 50px 0;
}

.about-page .about-culture {
  padding: 50px 0;
}

.about-page .about-culture .content {
  display: flex;
  justify-content: space-between;
  margin: 80px auto 130px auto;
  align-items: center;
  width: 1280px;
}

.about-page .about-culture .content .pic {
  width: 560px;
  height: 340px;
  position: relative;
}

.about-page .about-culture .content .pic img {
  display: block;
  width: 100%;
}

.about-page .about-culture .content .pic::before, .about-page .about-culture .content .pic::after {
  content: '';
  height: 162px;
  width: 123px;
  position: absolute;
  background-color: #f30c0c;
  right: -22px;
  top: -28px;
  z-index: -1;
}

.about-page .about-culture .content .pic::after {
  left: 0;
  right: initial;
  top: initial;
  bottom: -60px;
  background-color: #f30c0c;
  width: 210px;
}

.about-page .about-culture .content .info {
  flex: 1;
  padding-left: 100px;
}

.about-page .about-culture .content .info h3 {
  font-size: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-end;
}

.about-page .about-culture .content .info p {
  line-height: 28px;
  color: #3f4044;
}

#honor {
  position: relative;
  width: 1280px;
  margin: 50px auto 0 auto;
}

#honor .swiper-container {
  padding-bottom: 60px;
}

#honor .swiper-container .swiper-slide {
  width: 520px;
  height: 420px;
  background: #fff;
  box-shadow: 0 8px 30px #ddd;
}

#honor .swiper-container .swiper-slide .pic {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 520px;
  height: 340px;
  padding: 10px;
}

#honor .swiper-container .swiper-slide img {
  display: block;
  width: 100%;
}

#honor .swiper-container .swiper-slide p {
  line-height: 80px;
  text-align: center;
  color: #3f4044;
  margin: 0;
  font-size: 16px;
}

#honor .swiper-pagination {
  width: 100%;
  bottom: 20px;
}

#honor .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
  border: 1px solid #878991;
  background-color: #f2f2f2;
  width: 16px;
  height: 16px;
  opacity: 1;
}

#honor .swiper-pagination-bullets .swiper-pagination-bullet-active {
  border: 1px solid #f30c0c;
  background-color: #f30c0c;
}

#honor .swiper-button-prev {
  left: 0px;
  width: 45px;
  height: 45px;
  background: #f30c0c url(../images/left-icon3-hover.png) no-repeat center;
  transform: rotate(-180deg);
}

#honor .swiper-button-prev:hover {
  opacity: 0.8;
}

#honor .swiper-button-next {
  right: 0px;
  width: 45px;
  height: 45px;
  background: #f30c0c url(../images/left-icon3-hover.png) no-repeat center;
}

#honor .swiper-button-next:hover {
  opacity: 0.8;
}

.contact-page {
  height: auto;
  overflow: hidden;
  padding: 50px 0;
  width: 1280px;
  margin: 0 auto;
}

.contact-page .map {
  width: 600px;
  height: 300px;
  float: left;
}

.contact-page .contact-txt {
  float: right;
  width: 640px;
}

.contact-page .contact-txt h3 {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: normal;
}

.contact-page .contact-txt p {
  margin: 8px 0;
  color: #3f4044;
  display: block;
}

.contact-form {
  background-color: #f2f2f2;
}

.contact-form .wrap {
  padding: 50px 0;
}

.contact-form .wrap .section-title {
  margin-bottom: 40px;
}

.contact-form ul {
  width: 50%;
  float: left;
}

.contact-form li {
  min-height: 40px;
  line-height: 40px;
  margin-top: 20px;
}

.contact-form li span {
  width: 110px;
  text-align: right;
  display: inline-block;
  padding-right: 10px;
}

.contact-form li .text-input, .contact-form li .text-textarea {
  border: rgba(63, 64, 68, 0.4) 1px solid;
  min-height: 38px;
  padding: 0 10px;
  box-sizing: border-box;
  width: 360px;
}

.contact-form li .text-input:focus, .contact-form li .text-textarea:focus {
  border: #f30c0c 1px solid;
}

.contact-form li .text-textarea {
  height: 98px;
  width: 520px;
  padding: 10px;
}

.contact-form .btn-box {
  margin-left: 110px;
  margin-top: 30px;
}

.contact-form .btn-box a {
  width: 160px;
  background-color: #f30c0c;
  color: #fff;
}
