.content-navbar {
  border-bottom: 2px solid #bdbdbd;
}

.content-navbar .cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.content-navbar .cont li {
  position: relative;
  margin-right: 2em;
}

.content-navbar .cont li.active::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  bottom: -2px;
  background-color: #e41c26;
}

.content-navbar .cont li.active a {
  color: #e41c26;
}

.content-navbar .cont li a {
  color: #333;
  font-size: 16px;
  line-height: 4;
  display: block;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.content-navbar .cont li:last-child {
  margin-right: 0;
}

.content-navbar .cont li:nth-child(1) a {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.content-navbar .cont li:nth-child(2) a {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.content-navbar .cont li:nth-child(3) a {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.content-navbar .cont li:nth-child(4) a {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.content-navbar .cont li:nth-child(5) a {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.content-navbar .cont li:nth-child(6) a {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.content-navbar .cont li:nth-child(7) a {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.content-container {
  padding: 60px 0;
}

.content-container .content-title {
  text-align: center;
  margin-bottom: 20px;
}

.content-container .content-title .en {
  color: #e41c26;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.content-container .content-title h3 {
  color: #505050;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.content-container .content-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.content-container .content-nav ul li {
  color: #333;
  font-size: 20px;
  line-height: 3;
  position: relative;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.content-container .content-nav ul li a {
  color: #333;
  font-size: 20px;
  padding: 0 1em;
}

.content-container .content-nav ul li::before {
  width: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  content: "";
  position: absolute;
  background-color: #e41c26;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.content-container .content-nav ul li.active,
.content-container .content-nav ul li:hover {
  color: #e41c26;
}

.content-container .content-nav ul li.active::before,
.content-container .content-nav ul li:hover::before {
  width: 100%;
  left: 0;
}

.content-container .content-nav ul li:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.content-container .content-nav ul li:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.content-container .content-nav ul li:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.content-container .content-nav ul li:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.content-container .content-nav ul li:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.content-container .content-nav ul li:nth-child(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.content-container .content-nav ul li:nth-child(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.content-container .content-nav ul li:nth-child(8) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.content-container .content-list .paging {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 48px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.content-container .content-list .paging a {
  height: 39px;
  min-width: 39px;
  line-height: 35px;
  text-align: center;
  margin: 0 6px;
  color: #3c3b3b;
  font-size: 16px;
  border: 2px solid #e6e6e6;
  -webkit-transition: all 0.33s linear;
  -o-transition: all 0.33s linear;
  transition: all 0.33s linear;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.content-container .content-list .paging a.active,
.content-container .content-list .paging a:hover {
  background-color: #e41c26;
  border-color: #e41c26;
  color: #fff;
}

.content-container .content-list .paging a.active .iconfont,
.content-container .content-list .paging a:hover .iconfont {
  color: #fff;
}

.content-container .content-list .paging a:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.content-container .content-list .paging a:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.content-container .content-list .paging a:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.content-container .content-list .paging a:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.content-container .content-list .paging a:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.content-container .content-list .paging a:nth-child(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.content-container .content-list .paging a:nth-child(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.content-container .content-list .paging a:nth-child(8) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.content-container .content-list .paging .prev .iconfont,
.content-container .content-list .paging .next .iconfont {
  color: #3c3b3b;
  font-size: 20px;
  -webkit-transition: all 0.33s linear;
  -o-transition: all 0.33s linear;
  transition: all 0.33s linear;
}

.content-container .content-list .pro-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 40px;
}

.content-container .content-list .pro-list ul li {
  width: 288px;
  margin-right: 16px;
  margin-top: 16px;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.content-container .content-list .pro-list ul li:nth-child(4n) {
  margin-right: 0;
}

.content-container .content-list .pro-list ul li .pic {
  width: 100%;
  height: 300px;
  display: block;
}

.content-container .content-list .pro-list ul li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.content-container .content-list .pro-list ul li .tit {
  display: block;
  text-align: center;
  line-height: 2.5;
  color: #3c3b3b;
  font-size: 16px;
  -webkit-transition: all 0.33s linear;
  -o-transition: all 0.33s linear;
  transition: all 0.33s linear;
}

.content-container .content-list .pro-list ul li:hover .tit {
  color: #e41c26;
}

.content-container .content-list .news li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 17px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5f5f5;
  margin-top: 46px;
  position: relative;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.content-container .content-list .news li:first-child {
  margin-top: 0;
}

.content-container .content-list .news li .bg {
  background: #e41c26;
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}

.content-container .content-list .news li .pic {
  width: 318px;
  height: 198px;
  position: relative;
}

.content-container .content-list .news li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.content-container .content-list .news li .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  margin-right: 24px;
  position: relative;
}

.content-container .content-list .news li .info .date {
  color: #5c5c5c;
  font-size: 14px;
  line-height: 1.5;
  padding: 0 0.5em;
  border: 1px solid #7c7c7c;
  -webkit-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}

.content-container .content-list .news li .info .tit {
  color: #2d2d2d;
  font-size: 16px;
  line-height: 1;
  margin-top: 25px;
  margin-bottom: 18px;
  -webkit-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
  font-weight: bold;
}

.content-container .content-list .news li .info .desc {
  color: #7c7c7c;
  font-size: 15px;
  line-height: 30px;
  -webkit-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}

.content-container .content-list .news li .more {
  margin-left: auto;
  position: relative;
}

.content-container .content-list .news li .more .iconfont {
  color: #333;
  font-size: 24px;
  -webkit-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}

.content-container .content-list .news li.active .bg {
  width: 100%;
  height: 100%;
}

.content-container .content-list .news li.active .info .date {
  color: #fff;
  border-color: #fff;
}

.content-container .content-list .news li.active .info .tit {
  color: #f5f5f5;
}

.content-container .content-list .news li.active .info .desc {
  color: #fff;
}

.content-container .content-list .news li.active .more .iconfont {
  color: #fff;
}

.content-container .content-list .content-detail {
  color: #333;
  font-size: 16px;
  line-height: 2;
}
.content-container .content-list .content-detail img {
  max-width: 100%;
}

/*表单*/
.form {
  width: 100%;
  padding-top: 55px;
}
.form_tit {
  width: 100%;
  text-align: center;
}
.form_tit .p1 {
  font-size: 36px;
  color: #efefef;
  text-transform: uppercase;
}
.form_tit .p2 {
  font-size: 24px;
  color: #333333;
  height: 68px;
  line-height: 68px;
}
.form_tit .p3 {
  width: 800px;
  height: 43px;
  line-height: 43px;
  background: #efefef;
  margin: 0 auto;
  font-size: 12px;
  color: #9c9c9c;
}
.layui-form {
  width: 830px;
  margin: 50px auto 0;
}
.layui-form td span {
  font-size: 16px;
  color: #333333;
  margin: 0 15px;
  float: left;
  line-height: 46px;
}
.layui-form table {
  width: 100%;
}
.layui-form td {
  width: 50%;
  padding-bottom: 25px;
  position: relative;
}
.layui-form td input {
  height: 46px;
  text-indent: 25px;
  font-size: 16px;
  line-height: 46px;
  border-radius: 5px;
  background: none;
  outline: none;
  border: 1px solid #cccccc;
  width: 264px;
}
.layui-form .new input {
  width: 674px;
}
.layui-form td .s1 {
  color: red;
  float: right;
  margin-right: 10px;
}
.layui-form textarea {
  resize: none;
  border: 1px solid #cccccc;
  border-radius: 5px;
  width: 670px;
  padding: 5px;
  outline: none;
  background: none;
  height: 153px;
}
.form ul {
  width: 100%;
  text-align: center;
}
.form ul li {
  display: inline-block;
  width: 120px;
  height: 35px;
  line-height: 35px;
  margin: 0 15px;
}
.form ul li input {
  width: 100%;
  height: 100%;
}
/* all */
::-webkit-input-placeholder {
  color: #dedede;
}
::-moz-placeholder {
  color: #dedede;
}
/* firefox 19+ */
:-ms-input-placeholder {
  color: #dedede;
}
/* ie */
input:-moz-placeholder {
  color: #dedede;
}
/* individual: webkit */
.form td input::-webkit-input-placeholder {
  color: #dedede;
}
.form td input::-webkit-input-placeholder {
  color: #dedede;
}
.form td input::-webkit-input-placeholder {
  color: #dedede;
}
/* individual: mozilla */
.form td input::-moz-placeholder {
  color: #dedede;
}
.form td input::-moz-placeholder {
  color: #dedede;
}
.form td input::-moz-placeholder {
  color: #dedede;
}