* {
  padding: 0px;
  margin: 0px;
}
body {
  font-family: Arial;
  font-size: 16px;
  --themeColor: #16BC9C;
  --subColor: #ff8e24;
  overflow-x: hidden;
  padding-top: 115px;
}
a {
  text-decoration: none;
  color: #333;
}
ul {
  list-style: none;
}
.center {
  max-width: 1300px;
  width: 95%;
  margin: 0px auto;
}
.head {
  padding: 30px 0px 20px 0px;
  background: #fff;
  border-top: 10px solid var(--themeColor);
  position: fixed;
  top: 0px;
  left: 0px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  width: 100%;
  z-index: 999;
  box-sizing: border-box;
}
.head .head-main {
  max-width: 1300px;
  width: 95%;
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.head .head-main .head-logo img {
  display: block;
}
.head .head-main .head-nav {
  width: 53%;
}
.head .head-main .head-nav > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.head .head-main .head-nav > ul > li {
  position: relative;
}
.head .head-main .head-nav > ul > li:hover .erji2 {
  visibility: visible !important;
  opacity: 1 !important;
}
.head .head-main .head-nav > ul > li:hover > a {
  color: var(--themeColor);
}
.head .head-main .head-nav > ul > li:hover > a::after {
  width: 100%;
}
.head .head-main .head-nav > ul > li > a {
  display: block;
  position: relative;
  padding: 15px 0px;
  font-size: 18px;
  font-weight: bold;

}
.head .head-main .head-nav > ul > li > a::after {
  content: "";
  width: 0%;
  height: 3px;
  background: var(--themeColor);
  position: absolute;
  bottom: 0px;
  left: 0px;
  transition: all 0.5s;
}
.head .head-main .head-nav > ul > li .erji2 {
  position: absolute;
  width: 250%;
  left: -50%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
.head .head-main .head-nav > ul > li .erji2 ul {
  background: #f1f1f1;
  margin-top: 10px;
}
.head .head-main .head-nav > ul > li .erji2 ul li a {
  display: block;
  text-align: center;
  padding: 15px 0px;
}
.head .head-main .head-nav > ul > li .erji2 ul li a:hover {
  background: var(--themeColor);
  color: #fff;
}
.head .head-main .head-nav > ul > li .active {
  color: var(--themeColor);
}
.head .head-main .head-nav > ul > li .active::after {
  width: 100%;
}
.head .head-main .head-tell-row {
  display: flex;
  align-items: center;
}
.head .head-main .head-tell-row img {
  width: 45px;
  height: 45px;
  display: block;
  margin-right: 15px;
}
.head .head-main .head-tell-row p {
  color: #555;
}
.head .head-main .head-tell-row h1 {
  font-family: arial;
  color: var(--themeColor);
  margin-top: 5px;
  font-size: 28px;
}
.index-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #2C3541;
}
.index-title h1 {
  font-family: arial;
  font-size: 40px;
  color: #393939;
}
.index-pro {
  margin-top: 50px;
}
.index-pro .index-pro-main {
  max-width: 1300px;
  width: 95%;
  margin: 0px auto;
}
.index-pro .index-pro-main .index-pro-nav {
  display: flex;
  justify-content: space-between;
  padding: 0px 50px;
  background: url(../images/index-nav.png) no-repeat left;
  padding-top: 50px;
  padding-bottom: 20px;
}
.index-pro .index-pro-main .index-pro-nav .index-pro-nav-left {
  width: 75%;
  display: flex;
}
.index-pro .index-pro-main .index-pro-nav .index-pro-nav-left .index-pro-nav-title {
  line-height: 18px;
}
.index-pro .index-pro-main .index-pro-nav .index-pro-nav-left .index-pro-nav-title:hover span {
  width: 70px;
}
.index-pro .index-pro-main .index-pro-nav .index-pro-nav-left .index-pro-nav-title h1 {
  font-size: 23px;
  color: #333;
}
.index-pro .index-pro-main .index-pro-nav .index-pro-nav-left .index-pro-nav-title span {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--themeColor);
  transition: all 0.5s;
}
.index-pro .index-pro-main .index-pro-nav .index-pro-nav-left ul {
  display: flex;
  margin-left: 40px;
}
.index-pro .index-pro-main .index-pro-nav .index-pro-nav-left ul li {
  display: flex;
  padding-top: 5px;
  font-size: 16px;
}
.index-pro .index-pro-main .index-pro-nav .index-pro-nav-left ul li span {
  color: #999;
  margin: 0px 15px;
}
.index-pro .index-pro-main .index-pro-nav .index-pro-nav-left ul li a:hover {
  color: var(--themeColor);
}
.index-pro .index-pro-main .index-pro-nav .index-pro-nav-right {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.index-pro .index-pro-main .index-pro-nav .index-pro-nav-right .index-pro-nav-page {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.index-pro .index-pro-main .index-pro-nav .index-pro-nav-right .index-pro-nav-page i {
  font-size: 25px;
  margin: 0px 10px;
  color: #333;
  cursor: pointer;
}
.index-pro .index-pro-main .index-pro-nav .index-pro-nav-right .index-pro-nav-page i:hover {
  color: var(--themeColor);
}
.index-pro .index-pro-main .index-pro-nav .index-pro-nav-right .index-pro-nav-more a {
  font-size: 18px;
  font-family: arial;
  color: #888;
}
.index-pro .index-pro-main .index-pro-nav .index-pro-nav-right .index-pro-nav-more a:hover {
  color: var(--themeColor);
}
.index-pro .index-pro-main .index-pro-div {
  margin-top: 30px;
}
.index-pro .index-pro-main .index-pro-div .index-pro-list {
  display: flex;
  justify-content: space-between;
  border: 1px solid #ddd;
  padding: 20px;
}
.index-pro .index-pro-main .index-pro-div .index-pro-list:hover span {
  width: 70px !important;
}
.index-pro .index-pro-main .index-pro-div .index-pro-list:hover img {
  transform: scale(1.2);
}
.index-pro .index-pro-main .index-pro-div .index-pro-list .index-pro-list-left {
  width: 40%;
}
.index-pro .index-pro-main .index-pro-div .index-pro-list .index-pro-list-left .index-pro-list-title h1 {
  font-size: 20px;
  color: #292929;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.index-pro .index-pro-main .index-pro-div .index-pro-list .index-pro-list-left .index-pro-list-title span {
  width: 50px;
  height: 4px;
  background: var(--themeColor);
  display: inline-block;
  transition: all 0.5s;
}
.index-pro .index-pro-main .index-pro-div .index-pro-list .index-pro-list-left p {
  margin-top: 15px;
  line-height: 28px;
  color: #555;
  font-size: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.index-pro .index-pro-main .index-pro-div .index-pro-list .index-pro-list-left a {
  display: inline-block;
  margin-top: 15px;
  background: var(--themeColor);
  color: #fff;
  font-size: 14px;
  padding: 8px 23px;
  border-radius: 35px;
}
.index-pro .index-pro-main .index-pro-div .index-pro-list .index-pro-list-left a:hover {
  background: var(--subColor);
  color: #222;
}
.index-pro .index-pro-main .index-pro-div .index-pro-list .index-pro-list-right {
  width: 55%;
}
.index-pro .index-pro-main .index-pro-div .index-pro-list .index-pro-list-right a {
  display: block;
  overflow: hidden;
}
.index-pro .index-pro-main .index-pro-div .index-pro-list .index-pro-list-right a img {
  display: block;
  transition: all 0.5s;
  height: 241px;
}
.index-pro .index-pro-main .index-pro-tell {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.index-pro .index-pro-main .index-pro-tell p {
  color: #444;
  font-size: 18px;
}
.index-pro .index-pro-main .index-pro-tell p i {
  color: var(--themeColor);
  margin-right: 5px;
}
.index-pro .index-pro-main .index-pro-tell p span {
  font-size: 30px;
  font-weight: 600;
  font-family: arial;
  color: var(--themeColor);
}
.index-pro .index-pro-main .index-pro-tell a {
  margin-left: 20px;
  background: var(--themeColor);
  color: #fff;
  padding: 6px 25px;
  border-radius: 35px;
}
.index-pro .index-pro-main .index-pro-tell a:hover {
  background: var(--subColor);
  color: #222;
}
.ht-search {
  background: #f6f6f6;
  padding: 20px 0px;
}
.ht-search .ht-search-main {
  max-width: 1300px;
  width: 95%;
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ht-search .ht-search-main .ht-search-nav {
  display: flex;
  align-items: center;
}
.ht-search .ht-search-main .ht-search-nav span {
  font-size: 18px;
}
.ht-search .ht-search-main .ht-search-nav span i {
  color: #d61919;
}
.ht-search .ht-search-main .ht-search-nav ul {
  display: flex;
  align-items: center;
}
.ht-search .ht-search-main .ht-search-nav ul li {
  margin-left: 20px;
}
.ht-search .ht-search-main .ht-search-nav ul li a:hover {
  color: var(--themeColor);
  text-decoration: underline;
}
.ht-search .ht-search-main .ht-search-form form {
  display: flex;
  align-items: center;
}
.ht-search .ht-search-main .ht-search-form form input[type="text"] {
  border: 1px solid #ddd;
  padding: 12px 15px;
}
.ht-search .ht-search-main .ht-search-form form input[type="submit"] {
  background: var(--themeColor);
  color: #fff;
  border: 0px;
  padding: 13px 20px;
  cursor: pointer;
}
.ht-search .ht-search-main .ht-search-form form input[type="submit"]:hover {
  background: var(--subColor);
}
.hangye {
  background: #f6f6f6;
  margin-top: 80px;
  padding: 60px 0px;
}
.hangye .index-title {
  margin-bottom: 30px;
}
.hangye .hangye-main {
  max-width: 1300px;
  width: 95%;
  margin: 0px auto;
}
.hangye .hangye-main ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hangye .hangye-main ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hangye .hangye-main ul li img {
  width: 80px;
  height: 80px;
  display: block;
}
.hangye .hangye-main ul li p {
  margin-top: 8px;
}
.index-youshi {
  padding-top: 60px;
  margin-bottom: 100px;
}
.index-youshi .index-title p {
  font-size: 20px;
  text-align: center;
  margin-top: 15px;
  line-height: 33px;
  color: #666;
}
.index-youshi .index-youshi-main {
  max-width: 1300px;
  width: 95%;
  margin: 0px auto;
  margin-top: 60px;
}
.index-youshi .index-youshi-main .index-youshi-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index-youshi .index-youshi-main .index-youshi-item .index-youshi-left {
  width: 40%;
}
.index-youshi .index-youshi-main .index-youshi-item .index-youshi-left img {
  display: block;
  width: 100%;
}
.index-youshi .index-youshi-main .index-youshi-item .index-youshi-right {
  width: 50%;
}
.index-youshi .index-youshi-main .index-youshi-item .index-youshi-right .index-youshi-title-row {
  display: flex;
  align-items: center;
}
.index-youshi .index-youshi-main .index-youshi-item .index-youshi-right .index-youshi-title-row .index-youshi-ico {
  background: var(--themeColor);
  color: #fff;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  font-size: 30px;
  margin-right: 15px;
}
.index-youshi .index-youshi-main .index-youshi-item .index-youshi-right .index-youshi-title-row h2 {
  font-size: 30px;
  color: #393939;
}
.index-youshi .index-youshi-main .index-youshi-item .index-youshi-right ul {
  margin-top: 10px;
  padding-left: 70px;
}
.index-youshi .index-youshi-main .index-youshi-item .index-youshi-right ul li {
  line-height: 40px;
  color: #666;
  margin-bottom: 12px;
  font-size: 18px;
}
.index-about {
  background-image: url(../images/fg_bj.jpg);
  width: 100%;
  height: 800px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.index-about .index-about-main {
  max-width: 1300px;
  width: 95%;
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
}
.index-about .index-about-main .index-about-left {
  width: 65%;
}
.index-about .index-about-main .index-about-left .index-about-xian {
  width: 1px;
  height: 120px;
  background: #fff;
  margin-left: 20px;
}
.index-about .index-about-main .index-about-left .index-about-title h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 50px;
}
.index-about .index-about-main .index-about-left .index-about-title h1 b {
  color: var(--themeColor);
}
.index-about .index-about-main .index-about-left .index-about-title p {
  color: #fff;
  font-size: 22px;
  margin-bottom: 40px;
  margin-top: 10px;
  text-transform: uppercase;
}
.index-about .index-about-main .index-about-left > p {
  font-size: 15px;
  color: #000;
  background: #fff;
  line-height: 35px;
  padding: 25px;
  border-radius: 10px;
}
.index-about .index-about-main .index-about-left a {
  display: inline-block;
  color: #000;
  padding: 13px 40px;
  background: #fff;
  margin: 0px 10px;
  margin-top: 40px;
  border-radius: 35px;
  font-size: 14px;
}
.index-about .index-about-main .index-about-left a:first-child {
  margin-left: 0px;
}
.index-about .index-about-main .index-about-left a:hover {
  background: var(--themeColor);
  color: #fff;
}
.index-case {
  margin-top: 60px;
  margin-bottom: 60px;
}
.index-case .index-case-main {
  max-width: 1300px;
  width: 95%;
  margin: 0px auto;
  margin-top: 50px;
  position: relative;
}
.index-case .index-case-main a:hover img {
  transform: scale(1.2);
}
.index-case .index-case-main a .pic {
  overflow: hidden;
  border: 1px solid #ddd;
}
.index-case .index-case-main a .pic img {
  display: block;
  transition: all 0.5s;
}
.index-case .index-case-main a p {
  text-align: center;
  margin-top: 10px;
  color: #333;
  font-size: 16px;
}
.index-case .index-case-main .index-case-page i {
  position: absolute;
  top: 40%;
  font-size: 35px;
  color: #333;
  cursor: pointer;
}
.index-case .index-case-main .index-case-page i:hover {
  color: var(--themeColor);
}
.index-case .index-case-main .index-case-page .index-case-page-left {
  left: -50px;
}
.index-case .index-case-main .index-case-page .index-case-page-right {
  right: -50px;
}
.index-tedian {
  background: #f6f6f6;
  padding: 60px 0px;
}
.index-tedian .index-tedian-main {
  max-width: 1300px;
  width: 95%;
  margin: 0px auto;
  margin-top: 60px;
}
.index-tedian .index-tedian-main ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index-tedian .index-tedian-main ul li {
  width: 30%;
  background: #fff;
  margin-bottom: 30px;
}
.index-tedian .index-tedian-main ul li .pic img {
  display: block;
  width: 100%;
}
.index-tedian .index-tedian-main ul li .index-tedian-info {
  padding: 20px;
}
.index-tedian .index-tedian-main ul li .index-tedian-info h1 {
  font-size: 22px;
  margin-bottom: 10px;
}
.index-tedian .index-tedian-main ul li .index-tedian-info p {
  margin-top: 10px;
  color: #666;
  line-height: 28px;
}
.index-tedian .index-tedian-main ul li .index-tedian-info p i {
  margin-right: 8px;
}
.banner img {
  display: block;
}
.banner .swiper-pagination-bullet {
  padding: 2px 12px;
  border-radius: 35px;
}
.banner .swiper-pagination-bullet-active {
  background: var(--themeColor);
}
.index-news {
  margin-top: 60px;
  margin-bottom: 60px;
}
.index-news .index-news-main {
  width: 1200px;
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.index-news .index-news-main .index-news-left {
  width: 790px;
}
.index-news .index-news-main .index-news-left h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 25px;
  font-weight: 400;
}
.index-news .index-news-main .index-news-left h2 span {
  width: 70%;
  height: 1px;
  display: inline-block;
  background: #ddd;
}
.index-news .index-news-main .index-news-left .index-news-head {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #ddd;
}
.index-news .index-news-main .index-news-left .index-news-head .index-news-head-left {
  width: 25%;
}
.index-news .index-news-main .index-news-left .index-news-head .index-news-head-left a {
  display: block;
}
.index-news .index-news-main .index-news-left .index-news-head .index-news-head-left a img {
  display: block;
}
.index-news .index-news-main .index-news-left .index-news-head .index-news-head-right {
  width: 73%;
}
.index-news .index-news-main .index-news-left .index-news-head .index-news-head-right a h3 {
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.index-news .index-news-main .index-news-left .index-news-head .index-news-head-right a h3:hover {
  color: var(--themeColor);
}
.index-news .index-news-main .index-news-left .index-news-head .index-news-head-right a span {
  color: #777;
  margin-top: 5px;
  display: inline-block;
}
.index-news .index-news-main .index-news-left .index-news-head .index-news-head-right a p {
  font-size: 14px;
  margin-top: 15px;
  line-height: 25px;
  color: #666;
}
.index-news .index-news-main .index-news-left ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.index-news .index-news-main .index-news-left ul li {
  width: 48%;
  margin-right: 28px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #ddd;
}
.index-news .index-news-main .index-news-left ul li:nth-child(2n) {
  margin-right: 0px;
}
.index-news .index-news-main .index-news-left ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.index-news .index-news-main .index-news-left ul li a p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 85%;
}
.index-news .index-news-main .index-news-left ul li a p:hover {
  color: var(--themeColor);
}
.index-news .index-news-main .index-news-left ul li a span {
  font-size: 12px;
  color: #bb0000;
}
.index-news .index-news-main .index-news-right {
  width: 360px;
}
.index-news .index-news-main .index-news-right h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 25px;
  font-weight: 400;
}
.index-news .index-news-main .index-news-right h2 span {
  width: 73%;
  height: 1px;
  display: inline-block;
  background: #ddd;
}
.index-news .index-news-main .index-news-right ul li {
  margin-top: 20px;
}
.index-news .index-news-main .index-news-right ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f5f5f5;
  border-radius: 35px;
  font-size: 15px;
}
.index-news .index-news-main .index-news-right ul li a p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.index-news .index-news-main .index-news-right ul li a:hover {
  background: var(--themeColor);
}
.index-news .index-news-main .index-news-right ul li a:hover p {
  color: #fff;
}
.index-news .index-news-main .index-news-right ul li a:hover i {
  color: var(--themeColor);
}
.index-news .index-news-main .index-news-right ul li a i {
  width: 20px;
  height: 20px;
  background: #fff;
  display: flex;
  border-radius: 35px;
  justify-content: center;
  align-items: center;
  font-weight: 400;
}
.footer {
  background: #222;
  padding-top: 80px;
}
.footer .footer-main {
  max-width: 1300px;
  width: 95%;
  margin: 0px auto;
}
.footer .footer-main .footer-cont {
  display: flex;
  justify-content: space-between;
}
.footer .footer-main .footer-cont .footer-wechat {
  width: 130px;
}
.footer .footer-main .footer-cont .footer-wechat p {
  text-align: center;
  margin-top: 5px;
  color: #fff;
}
.footer .footer-main .footer-cont .footer-lianxi {
  width: 26%;
}
.footer .footer-main .footer-cont .footer-lianxi .footer-lianxi-title h1 {
  color: #fff;
  font-family: arial;
  font-size: 25px;
}
.footer .footer-main .footer-cont .footer-lianxi .footer-lianxi-title span {
  width: 50px;
  height: 1px;
  display: inline-block;
  background: #fff;
  margin-top: 25px;
  margin-bottom: 35px;
}
.footer .footer-main .footer-cont .footer-lianxi h2 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}
.footer .footer-main .footer-cont .footer-lianxi ul li {
  color: #ddd;
  line-height: 30px;
  font-size: 17px;
}
.footer .footer-main .footer-cont .footer-lianxi ul li i {
  margin-right: 10px;
  font-size: 20px;
  color: var(--themeColor);
}
.footer .footer-main .footer-cont .footer-message {
  width: 38%;
}
.footer .footer-main .footer-cont .footer-message form .footer-msg-item {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer-main .footer-cont .footer-message form .footer-msg-item input {
  width: 210px;
  height: 35px;
  padding: 0px 10px;
  border: 1px solid #ddd;
}
.footer .footer-main .footer-cont .footer-message form #foot-yzm {
  display: flex;
  align-items: center;
}
.footer .footer-main .footer-cont .footer-message form #foot-yzm input {
  width: 115px;
}
.footer .footer-main .footer-cont .footer-message form #foot-yzm img {
  width: 90px;
  height: 37px;
  margin-left: 5px;
}
.footer .footer-main .footer-cont .footer-message form textarea {
  width: 96%;
  padding: 10px 10px;
  border: 1px solid #ddd;
}
.footer .footer-main .footer-cont .footer-message form .footer-form {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
.footer .footer-main .footer-cont .footer-message form .footer-form input {
  border: none;
  background: var(--themeColor);
  color: #fff;
  padding: 10px 30px;
  cursor: pointer;
  font-size: 18px;
}
.footer .footer-main .footer-cont .footer-message form .footer-form input:hover {
  background: var(--subColor);
}
.footer .footer-main .footer-cont .footer-service {
  width: 25%;
}
.footer .footer-main .footer-cont .footer-service .footer-service-title h1 {
  color: #fff;
  font-family: arial;
  font-size: 25px;
}
.footer .footer-main .footer-cont .footer-service .footer-service-title span {
  width: 50px;
  height: 1px;
  display: inline-block;
  background: #fff;
  margin-top: 25px;
  margin-bottom: 35px;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row > div {
  display: flex;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row > div > img {
  width: 30px;
  height: 30px;
  display: block;
  margin-right: 15px;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row > div .footer-tell h1 {
  font-size: 30px;
  font-family: arial;
  color: var(--themeColor);
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row > div .footer-tell p {
  color: var(--themeColor);
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row a {
  background: var(--themeColor);
  display: flex;
  align-items: center;
  width: 130px;
  padding: 8px 0px;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  margin-top: 25px;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row a:hover {
  background: var(--subColor);
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row a img {
  margin-right: 8px;
}
.footer .footer-main .footer-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
.footer .footer-main .footer-nav-row .footer-nav {
  width: 55%;
}
.footer .footer-main .footer-nav-row .footer-nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-main .footer-nav-row .footer-nav ul li a {
  color: #898989;
  font-size: 15px;
}
.footer .footer-main .footer-nav-row .footer-nav ul li a:hover {
  color: var(--themeColor);
}
.footer .footer-main .footer-nav-row .footer-jishu {
  width: 20%;
}
.footer .footer-main .footer-nav-row .footer-jishu a {
  color: #898989;
  font-size: 15px;
}
.footer .footer-main .footer-nav-row .footer-jishu a:hover {
  color: var(--themeColor);
}
.footer .footer-copying {
  margin-top: 25px;
  border-top: 1px solid #393939;
  padding: 25px 0px;
}
.footer .footer-copying .footer-copying-main {
  max-width: 1300px;
  width: 95%;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer-copying .footer-copying-main p {
  font-size: 15px;
  color: #898989;
  margin-right: 10px;
}
.footer .footer-copying .footer-copying-main a {
  color: #898989;
}
.footer .footer-copying .footer-copying-main a:hover {
  color: var(--themeColor);
}
.aboutBanner {
  display: block;
}
.ht-container {
  max-width: 1300px;
  width: 95%;
  margin: 0px auto;
  margin: 80px auto;
  display: flex;
  justify-content: space-between;
}
.ht-container .ht-left {
  width: 20%;
}
.ht-container .ht-left .ht-left-nav1 .index-pro-left-nav {
  background: #fff;
}
.ht-container .ht-left .ht-left-nav1 .index-pro-left-nav .index-nav-title {
  background-image: linear-gradient(#34eac7, #16bc9c);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  height: 98px;
}
.ht-container .ht-left .ht-left-nav1 .index-pro-left-nav .index-nav-title h1 {
  font-size: 25px;
}
.ht-container .ht-left .ht-left-nav1 .index-pro-left-nav .index-nav-title p {
  text-transform: uppercase;
  font-size: 15px;
  font-family: arial;
  font-weight: 600;
  color: #ddd;
  margin-top: 5px;
}
.ht-container .ht-left .ht-left-nav1 .index-pro-left-nav > ul {
  border-right: 1px solid #ddd;
  padding: 0px 10px;
  border-bottom: 1px solid #ddd;
}
.ht-container .ht-left .ht-left-nav1 .index-pro-left-nav > ul > li {
  position: relative;
  border-bottom: 1px solid #ddd;
}
.ht-container .ht-left .ht-left-nav1 .index-pro-left-nav > ul > li:last-child {
  border-bottom: 1px solid #fff;
}
.ht-container .ht-left .ht-left-nav1 .index-pro-left-nav > ul > li:hover::before {
  content: "";
  width: 10px;
  height: 61px;
  position: absolute;
  left: -10px;
  top: 0px;
  background: var(--themeColor);
}
.ht-container .ht-left .ht-left-nav1 .index-pro-left-nav > ul > li:hover a {
  color: var(--themeColor);
  font-weight: 600;
}
.ht-container .ht-left .ht-left-nav1 .index-pro-left-nav > ul > li > a {
  font-size: 16px;
  display: block;
  padding: 20px 10px;
  text-align: center;
}
.ht-container .ht-left .ht-left-nav1 .index-pro-left-nav > ul > li::before {
  content: "";
  width: 10px;
  height: 61px;
  position: absolute;
  left: -10px;
  top: 0px;
  background: #ddd;
}
.ht-container .ht-left .ht-left-nav1 .index-pro-left-nav .active::before {
  content: "";
  width: 10px;
  height: 61px;
  position: absolute;
  left: -10px;
  top: 0px;
  background: var(--themeColor);
}
.ht-container .ht-left .ht-left-nav1 .index-pro-left-nav .active a {
  color: var(--themeColor);
  font-weight: 600;
}
.ht-container .ht-left .ht-left-nav .ht-left-nav-title {
  background-image: linear-gradient(#34eac7, #16bc9c);
  padding: 30px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.ht-container .ht-left .ht-left-nav .ht-left-nav-title p {
  text-transform: uppercase;
  font-size: 15px;
  font-family: arial;
  font-weight: 600;
  color: #ddd;
  margin-top: 5px;
}
.ht-container .ht-left .ht-left-nav .ht-left-nav-title h2 {
  color: #fff;
  font-size: 26px;
  text-align: center;
}
.ht-container .ht-left .ht-left-nav ul {
  padding: 5px 20px 20px 20px;
  border: 1px solid var(--themeColor);
}
.ht-container .ht-left .ht-left-nav ul li {
  margin-top: 10px;
}
.ht-container .ht-left .ht-left-nav ul li a {
  display: block;
  text-align: center;
  padding: 15px 0px;
  font-size: 16px;
  background: #f5f5f5;
  transition: all 0.5s;
}
.ht-container .ht-left .ht-left-nav ul li a:hover {
  background: var(--themeColor);
  color: #fff;
}
.ht-container .ht-left .ht-left-nav ul li .active {
  background: var(--themeColor);
  color: #fff;
}
.ht-container .ht-left .ht-left-lianxi {
  margin-top: 30px;
}
.ht-container .ht-left .ht-left-lianxi h2 {
  background: var(--themeColor);
  color: #fff;
  font-size: 26px;
  padding: 30px 0px;
  text-align: center;
}
.ht-container .ht-left .ht-left-lianxi ul {
  background: #f5f5f5;
  padding: 15px;
}
.ht-container .ht-left .ht-left-lianxi ul li {
  line-height: 28px;
  font-size: 14px;
  color: #666;
}
.ht-container .ht-left .ht-left-lianxi ul li img {
  border-radius: 10px 0px;
}
.ht-container .ht-right {
  width: 77%;
}
.ht-container .ht-right .ht-right-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}
.ht-container .ht-right .ht-right-title-row span {
  font-size: 25px;
  font-weight: 600;
  color: var(--themeColor);
  padding-left: 30px;
  border-left: 6px solid var(--themeColor);
}
.ht-container .ht-right .ht-right-title-row .ht-right-position {
  color: #4d4d4d;
  font-size: 15px;
}
.ht-container .ht-right .ht-right-title-row .ht-right-position a:hover {
  color: var(--themeColor);
}
.ht-container .ht-right .ht-right-title-row .ht-right-position i {
  color: var(--themeColor);
  font-size: 18px;
}
.ht-container .ht-right .aboutcont {
  font-size: 18px;
  color: #222;
  line-height: 2;
  padding-top: 20px;
}
.ht-container .ht-right .aboutcont img {
  max-width: 100% !important;
}
.newslist {
  border-radius: 4px;
  margin-top: 25px;
  padding: 15px 0px;
}
.newslist ul li:last-child a {
  border-bottom: 0px;
}
.newslist ul li a:hover {
  text-decoration: none;
  color: var(--themeColor);
}
.newslist ul li .newslink {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  transition: all 1s;
  padding: 25px 20px;
}
.newslist ul li .newslink:hover {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.newslist ul li .newslink:hover h3 {
  color: var(--themeColor) !important;
}
.newslist ul li .newslink .news-left {
  width: 25%;
}
.newslist ul li .newslink .news-left .news-left-img {
  overflow: hidden;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.newslist ul li .newslink .news-left .news-left-img img {
  display: block;
}
.newslist ul li .newslink .news-container {
  width: 70%;
  padding: 0px 25px;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}
.newslist ul li .newslink .news-container .news-title-row h3 {
  color: #111;
  font-weight: 400;
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newslist ul li .newslink .news-container .news-title-row p {
  color: #666;
  font-size: 13px;
  line-height: 2.3;
  margin-top: 12px;
  text-align: justify;
}
.newslist ul li .newslink .news-container .news-visits dl {
  display: flex;
}
.newslist ul li .newslink .news-container .news-visits dl dd {
  color: #999;
  font-size: 13px;
  border-bottom: 0px;
  margin-right: 20px;
}
.newslist ul li .newslink .news-container .news-visits dl dd i {
  margin-right: 8px;
}
.page {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
}
.page .page-status,
.page a {
  cursor: pointer;
  color: #333;
  background: #f1f1f1;
  padding: 8px 15px;
  margin: 0px 5px;
  border-radius: 4px;
  font-size: 14px;
}
.page .page-status:hover,
.page a:hover {
  background: var(--themeColor);
  color: #fff;
}
.redian {
  margin-top: 40px;
}
.redian .redian-title {
  position: relative;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
.redian .redian-title h2 {
  font-size: 70px;
  font-family: impact , arial;
  font-weight: 400;
  color: #f1f1f1;
  text-transform: uppercase;
}
.redian .redian-title h3 {
  font-size: 40px;
  color: var(--themeColor);
}
.redian .redian-list {
  margin-top: 30px;
}
.redian .redian-list .redian-top {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
}
.redian .redian-list .redian-top .redian-topLeft {
  width: 25%;
  overflow: hidden;
  border: 1px solid #ddd;
  box-sizing: border-box;
}
.redian .redian-list .redian-top .redian-topLeft img {
  display: block;
  transition: all 0.5s;
  height: 177px;
}
.redian .redian-list .redian-top .redian-topLeft img:hover {
  transform: scale(1.2);
}
.redian .redian-list .redian-top .redian-topRight {
  width: 71%;
}
.redian .redian-list .redian-top .redian-topRight a h3 {
  font-size: 18px;
  color: #222;
}
.redian .redian-list .redian-top .redian-topRight a h3:hover {
  color: var(--themeColor);
}
.redian .redian-list .redian-top .redian-topRight p {
  font-size: 14px;
  color: #777;
  line-height: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.redian .redian-list .redian-top .redian-topRight .redian-more a {
  background: var(--themeColor);
  color: #fff;
  padding: 7px 20px;
  font-size: 14px;
  border-radius: 35px;
  margin-top: 10px;
  display: inline-block;
}
.redian .redian-list .redian-top .redian-topRight .redian-more a:hover {
  background: var(--subColor);
}
.redian .redian-list ul {
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.redian .redian-list ul li {
  width: 48%;
  margin-right: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: circle;
}
.redian .redian-list ul li a {
  font-size: 14px;
  color: #333;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 70%;
}
.redian .redian-list ul li a:hover {
  color: var(--themeColor);
}
.redian .redian-list ul li span {
  font-size: 13px;
  color: #bb0000;
}
.redian .redian-list ul li:nth-child(2n) {
  margin-right: 0px;
}
.newscont {
  margin-top: 30px;
}
.newscont .newscont-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.newscont .newscont-title h2 {
  background: url(../images/title_bg.png) no-repeat center;
  height: 42px;
  width: 100%;
}
.newscont .newscont-title h1 {
  font-size: 30px;
  color: var(--themeColor);
  text-align: center;
}
.newscont .newscont-title ul {
  display: flex;
  margin-top: 20px;
  padding: 10px 0px;
  width: 100%;
  justify-content: center;
  align-items: center;
  background: #f1f1f1;
  border: 1px solid #ddd;
  margin-bottom: 25px;
}
.newscont .newscont-title ul li {
  margin-right: 20px;
  color: #777;
  font-size: 14px;
}
.newscont .newscont-title ul li i {
  margin-right: 5px;
}
.newscont .newscontent {
  font-size: 15px;
  color: #333;
  line-height: 2;
}
.newscont .newscontent img {
  max-width: 100% !important;
}
.newscont .PreNext {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.newscont .PreNext a:hover {
  color: var(--themeColor);
}
.productlist {
  margin-top: 30px;
}
.productlist ul {
  display: flex;
  flex-wrap: wrap;
}
.productlist ul li {
  width: 32%;
  margin-right: 18px;
  margin-bottom: 20px;
}
.productlist ul li:nth-child(3n) {
  margin-right: 0px;
}
.productlist ul li > a {
  display: block;
  overflow: hidden;
  position: relative;
  border: 1px solid #ddd;
}
.productlist ul li > a:hover img {
  transform: scale(1.2);
}
.productlist ul li > a img {
  display: block;
  transition: all 0.5s;
}
.productlist ul li > p {
  text-align: center;
  margin-top: 10px;
}
.caselist {
  margin-top: 30px;
}
.caselist ul {
  display: flex;
  flex-wrap: wrap;
}
.caselist ul li {
  width: 32%;
  margin-right: 18px;
  margin-bottom: 20px;
}
.caselist ul li:nth-child(3n) {
  margin-right: 0px;
}
.caselist ul li > a {
  display: block;
  overflow: hidden;
  position: relative;
  border: 1px solid #ddd;
}
.caselist ul li > a:hover img {
  transform: scale(1.2);
}
.caselist ul li > a img {
  display: block;
  transition: all 0.5s;
}
.caselist ul li > p {
  text-align: center;
  margin-top: 10px;
}
.procont .proTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.procont .proTop .proTop-left {
  width: 40%;
}
.procont .proTop .proTop-left img {
  display: block;
  width: 100%;
  border: 1px solid #ddd;
}
.procont .proTop .proTop-left ul {
  display: flex;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}
.procont .proTop .proTop-left ul li {
  width: 19%;
  margin-right: 8px;
  border: 1px solid #ddd;
  display: block;
  box-sizing: border-box;
}
.procont .proTop .proTop-left ul li:last-child a {
  border-right: 0px!important;
}
.procont .proTop .proTop-left ul li img {
  display: block;
  width: 98%;
}
.procont .proTop .proTop-left ul .active {
  border: 1px solid var(--themeColor);
}
.procont .proTop .proTop-right {
  width: 55%;
}
.procont .proTop .proTop-right h1 {
  font-size: 22px;
  color: var(--themeColor);
}
.procont .proTop .proTop-right ul {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.procont .proTop .proTop-right ul li {
  font-size: 14px;
  color: #777;
  margin-right: 15px;
}
.procont .proTop .proTop-right p {
  padding: 15px 0px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  line-height: 30px;
  color: #666;
  margin-top: 15px;
  font-size: 14px;
}
.procont .proTop .proTop-right .proTop-btn {
  margin-top: 25px;
  display: flex;
  align-items: center;
}
.procont .proTop .proTop-right .proTop-btn a {
  display: inline-block;
  width: 180px;
  margin-right: 25px;
  background: var(--themeColor);
  color: #fff;
  text-align: center;
  border-radius: 100px;
  padding: 15px 0px;
  transition: all 0.5s;
}
.procont .proTop .proTop-right .proTop-btn a:nth-child(2) {
  margin-right: 0px;
}
.procont .proTop .proTop-right .proTop-btn a:hover {
  background: var(--subColor);
  color: #fff;
}
.procont .proxq {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
}
.procont .proxq h2 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--themeColor);
}
.procont .proxq h3 {
  width: 100%;
  background: url(../images/title_bg2.png) no-repeat center;
  height: 20px;
}
.procont .procontent {
  font-size: 18px;
  color: #333;
  line-height: 3;
  padding-top: 20px;
}
.procont .procontent img {
  max-width: 100% !important;
}
.ht-liuyan {
  width: 920px;
  margin-top: 30px;
}
.ht-liuyan h3 {
  font-size: 30px;
  text-align: center;
  color: #4d4d4d;
  font-weight: 500;
}
.form-group {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-group .form-item {
  width: 49%;
}
.form-item input {
  width: 250px;
  height: 35px;
  padding: 0px 10px;
  border: 1px solid #ddd;
}
.yzm input {
  width: 140px;
  margin-right: 10px;
  padding: 0px 10px;
}
.yzm {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.neirong p {
  margin: 0px;
}
.neirong div {
  width: 100%;
}
.neirong textarea {
  width: 95%;
  padding: 10px 10px;
  border: 1px solid #ddd;
}
.form-btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.form-btn input {
  margin-right: 10px;
}
.form-btn input:nth-child(1) {
  background: var(--themeColor);
  border: none;
  color: #fff;
  padding: 8px 25px;
  cursor: pointer;
}
.form-btn input:nth-child(2) {
  background: #dd2c14;
  border: none;
  color: #fff;
  padding: 8px 25px;
  cursor: pointer;
}
input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}
textarea {
  -webkit-appearance: none;
}
@media screen and (max-width: 1800px) {
  .youshiTitle {
    width: 100% !important;
  }
  .banner img {
    width: 100%;
  }
  .aboutBanner {
    width: 100%;
  }
}
