@charset "utf-8";
@import url("reset.css");
@import url("animate.css");
@import url("/public/plugins/font-awesome/css/font-awesome.min.css");

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --common-page-width: 1440px;
  --common-font-size: 14px;
  --common-color: #666;
  --common-background-color: #d00000;
  --common-background-hover-color: #d00000;
  --nav-height: 80px;
  --common-p-line-height: 200%;
  --common-p-size: 14px;
  --common-p-color: #747474;
  --common-font-color-hover: #d00000;
}

body {
  background-color: #fff;
  overflow: hidden;
  font-size: var(--common-font-size);
}

input {
  font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB,
    Microsoft YaHei, 微软雅黑, Arial, sans-serif;
}

img {
  max-width: 100%;
}

a {
  background: transparent;
  text-decoration: none;
  color: var(--common-p-color);
}

a:active,
a:hover {
  outline: 0;
}

a:hover {
  text-decoration: none;
  color: var(--common-background-color);
}

.textCenter {
  text-align: center;
}

.wrapper {
  width: var(--common-page-width);
  margin: 0 auto;
  text-align: left;
}

.index .wrapper {
  width: var(--common-page-width);
}

.ov {
  overflow: hidden;
}

.ts {
  text-transform: uppercase;
}

.mauto {
  margin: 0 auto;
}

.pz {
  position: relative;
  z-index: 0;
}

.pa {
  position: absolute;
  z-index: 0;
}

.bz {
  box-sizing: border-box;
}

.b {
  font-weight: bold;
}

.i {
  font-style: italic;
}

.hidden {
  display: none !important;
}

.cb {
  clear: both;
}

.tes {
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

.clearfix {
  zoom: 1;
}

.max1400 {
  max-width: 1430px;
  margin: 0 auto;
  padding: 0 15px;
}

.max1300 {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 15px;
}

/*animation*/
@keyframes slideDown {
  0% {
    top: 55px;
    opacity: 0;
  }

  to {
    top: var(--nav-height);
    opacity: 1;
  }
}

@-webkit-keyframes slideDown {
  0% {
    top: 55px;
    opacity: 0;
  }

  to {
    top: var(--nav-height);
    opacity: 1;
  }
}

@keyframes headerDown {
  0% {
    transform: translateY(-70%);
  }

  to {
    transform: translateY(0);
  }
}

.img img,
.image-url,
.image-url img {
  transform: scale(1);
}

a:hover .img img {
  transform: scale(1.1, 1.1);
}

.image-url {
  overflow: hidden;
}

.image-url:hover img {
  transform: scale(1.1, 1.1);
}

.flex {
  display: flex;
  display: -webkit-flex;
}

.flexJb {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
}

.flexColumn {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
}

.flexAc {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}

.flexCenter {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}

.flexWrap {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}

.flexRight {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
}

.ovd {
  overflow: hidden;
}

.db {
  display: block;
}

#app {
  overflow: hidden;
}

.mt20 {
  margin-top: 20px;
}

/*header*/
header {
  width: 100%;
  height: 80px;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: 99999 !important;
  overflow: visible !important;
}

header .logo {
  width: 211px;
  flex-grow: 0;
  flex-shrink: 0;
}

header .logo img {
  max-width: 100%;
}

header .wrapper {
  overflow: visible;
}

/*nav*/
header.active {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
}

header .search {
  width: 200px;
  flex-grow: 0;
  flex-shrink: 0;
  color: #333;
}

header .search .input {
  margin-right: 10px;
  width: 150px;
  height: 35px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0 5px;
}

nav {
  height: var(--nav-height);
  position: relative;
  z-index: 999;
  width: 900px;
  flex-grow: 0;
  flex-shrink: 0;
  overflow: visible !important;
}

nav ul {
  overflow: visible !important;
  margin: 0 auto;
  font-size: 0;
}

nav li {
  position: relative;
  z-index: 9999999;
  height: var(--nav-height);
  flex: 1;
}

nav li .a {
  display: inline-block;
  width: 100%;
  height: var(--nav-height);
  text-align: center;
  line-height: var(--nav-height);
  font-size: 14px;
  color: #333;
  position: relative;
}

nav li .a::before {
  content: "";
  display: block;
  width: 2px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

nav li:last-child .a::before {
  display: none;
}

nav li .a.active {
  font-weight: bold;
}

nav .dl {
  overflow: hidden;
  display: none;
  position: absolute;
  z-index: 999;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: rgba(215, 20, 24, 0.5);
  text-align: center;
  -webkit-animation: slideDown 0.3s 1;
  -khtml-animation: slideDown 0.3s 1;
  animation-direction: alternate;
}

nav li:hover .dl {
  display: block;
}

nav dt {
  overflow: hidden;
  width: 100%;
}

nav dt a {
  overflow: hidden;
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  line-height: 25px;
  border-bottom: 1px solid #fff;
}

nav dt:last-child a {
  border: 0;
}

nav dt a:link,
nav dt a:visited {
  font-size: var(--common-font-size);
  color: #fff;
}

nav dt a:hover {
  background-color: var(--common-background-color);
  text-decoration: none;
  color: #fff;
}

/*footer*/
footer {
  background: url(../images/bg/footer.jpg);
  padding: 62px 0 35px 0;
}

footer .footer-nav {
  width: 100%;
  line-height: 40px;
  padding-bottom: 33px;
  border-bottom: 1px solid #7a7a7a;
}

footer .footer-nav li {
  display: inline-flex;
  padding: 0 21px;
  align-items: center;
  position: relative;
}

footer .footer-nav li:first-child {
  padding-left: 0;
}

footer .footer-nav li::after {
  content: '';
  display: block;
  width: 2px;
  height: 13px;
  background-color: #747474;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

footer .footer-nav li:last-child::after {
  display: none;
}

footer .contact {
  margin-top: 34px;
}

footer .contact .contact-info .name {
  line-height: 51px;
  font-size: 24px;
  color: #747474;
}

footer .contact .contact-info .address {
  line-height: 27px;
  font-size: 16px;
  color: #747474;
}

footer .contact .contact-info .tel {
  margin-top: 22px;
  line-height: 48px;
  font-size: 36px;
  color: #747474;
}

footer .qrcode {
  margin-top: 13px;
}

footer .qrcode li {
  margin-left: 14px;
  max-width: 130px;
}

footer .qrcode li img {
  max-width: 100%;
}

footer .qrcode li .title {
  margin-top: 8px;
  line-height: 23px;
}

.copyright {
  background-color: #373737;
  padding: 15px 0;
  line-height: 34px;
  font-size: 14px;
  color: #ffff;
}

/*swiper*/
.headerSwiper {
  z-index: 0;
}

.headerSwiper img {
  width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--common-font-color) !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--common-font-color) !important;
}

.headerSwiper .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
}

.headerSwiper .swiper-pagination-bullet-active {
  background-color: var(--common-background-color) !important;
}

/*index*/
.itabs {
  width: 100%;
  height: 53px;
  border-bottom: 4px solid #ccc;
}

.itabs li {
  width: 150px;
  height: 49px;
  cursor: pointer;
  background-color: #ccc;
  margin-right: 5px;
  font-size: 20px;
  color: #666;
  outline: none;
}

.itabs li.active {
  background-color: var(--common-background-color);
  color: #fff;
}

.itabs .more {
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.index1 {
  position: relative;
  z-index: 0;
  padding: 89px 0 100px 0;
  background: url(../images/bg/index1.jpg) no-repeat center top;
  background-size: cover;
}

.index1 .typename {
  padding: 19px 0 0 44px;
  height: 64px;
  line-height: 45px;
  font-size: 36px;
  color: #333;
  letter-spacing: 2px;
  z-index: 10;
  border: 0;
}

.index1 .typename::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: '';
  display: block;
  width: 82px;
  height: 64px;
  background-color: #cf0000;
}

.index1 .typename span {
  color: #fff;
}

.index1 .l {
  width: 933px;
  flex-grow: 0;
  flex-shrink: 0;
}

.index1 .hotSwiper {
  position: relative;
  background: url(../images/bg/index-left.jpg) no-repeat left top;
}

.index1 .hotSwiper,
.index1 .hotSwiper .swiper-slide {
  width: 100%;
  height: 449px;
}

.index1 .hotSwiper .swiper-slide {
  padding-top: 64px;
}

.index1 .hotSwiper .swiper-slide article {
  margin-left: 51px;
  margin-right: 40px;
}

.index1 .hotSwiper .swiper-slide article .title {
  line-height: 28px;
  font-size: 18px;
  color: #333;
}

.index1 .hotSwiper .swiper-slide article .content {
  margin-top: 10px;
  line-height: 24px;
  font-size: 14px;
  color: #747474;
}

.index1 .hotSwiper .swiper-slide article .view-more {
  margin-top: 38px;
  line-height: 24px;
  font-size: 14px;
  color: #747474;
}

.index1 .hotSwiper .swiper-slide article .view-more:hover {
  color: var(--common-font-color-hover);
}

.index1 .hotSwiper .swiper-slide .image-url {
  flex-grow: 0;
  flex-shrink: 0;
}

.index1 .hotSwiper .swiper-slide .image-url,
.index1 .hotSwiper .swiper-slide img {
  width: 554px;
  height: 369px;
  object-fit: cover;
}

.index1 .hotSwiper .swiper-pagination {
  left: inherit;
  right: 596px;
  text-align: right;
  bottom: 25px;
  padding-right: 10px;
  height: 14px;
  line-height: 14px;
}

.index1 .hotSwiper .swiper-pagination-bullet {
  background-color: #ecadad;
  opacity: 1;
  width: 10px;
  height: 10px;
}

.index1 .hotSwiper .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background-color: #d00000 !important;
}

.index1 .r {
  width: 620px;
  flex-grow: 0;
  flex-shrink: 0;
  margin-left: 18px;
}

.index1 .r .view-more {
  margin-top: 51px;
  width: 130px;
  height: 40px;
  border: 1px solid #333;
}

.index1 .r .view-more:hover {
  background-color: var(--common-background-color);
  border-color: var(--common-background-color);
  color: #fff;
}

.index1 .r .line {
  margin-top: 53px;
  width: 100%;
}

.index1 .r .line::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #eceaec;
  margin-top: 1px;
}

.index1 .r .line::after {
  content: '';
  display: block;
  width: 147px;
  height: 3px;
  background-color: var(--common-background-color);
  margin-left: 22px;
}

.index1 .r .list {
  padding: 12px 0 0 22px;
  width: 100%;
}

.index1 .r .list li {
  margin-bottom: 10px;
}

.index1 .r .list li .title {
  width: 100%;
  height: 36px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  color: #333;
}

.index1 .r .list li .time {
  width: 100%;
  margin-top: 7px;
  font-style: italic;
  font-size: 14px;
  color: #a0a0a0;
  line-height: 22px;
}

.index1 .r .list li .time::after {
  content: '';
  display: block;
  width: 378px;
  height: 1px;
  background-color: #ece7ec;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.index1 .r .list li:hover .title {
  color: var(--common-background-color);
}

.index2 {
  width: 100%;
  height: 774px;
  background: url(../images/bg/index2.jpg) no-repeat center top;
  background-size: cover;
  padding: 125px 0 0;
}

.index2 .title {
  height: 55px;
  font-size: 36px;
  color: #fff;
}

.index2 .en-title {
  height: 29px;
  font-size: 24px;
  color: #fff;
}

.index2 .icon {
  width: 100%;
  height: 71px;
  margin-top: 21px;
  background: url(../images/bg/index2-icon.png) no-repeat center top;
}

.index2 .list {
  margin-top: 276px;
}

.index2 .list li .title {
  width: 255px;
  height: 47px;
  background: rgba(255, 0, 0, .5);
  border-radius: 8px;
  font-size: 20px;
  color: #fff;
}

.index2 .list li .sons {
  bottom: 53px;
  left: 0;
  display: none;
  width: 522px;
}

.index2 .list li:hover .sons {
  display: block;
}

.index2 .list li .sons ul {
  padding: 14px 21px 59px 21px;
  background: rgba(0, 0, 0, .3);
  border-bottom: 3px solid #fff;
}

.index2 .list li .sons li {
  height: 31px;
  margin-right: 23px;
}

.index2 .list li .sons li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background-color: #b4393c;
  border-radius: 50%;
  margin-right: 7px;
}

.index2 .list li .sons li a {
  color: #fff;
}

.index2 .list li .sons li a:hover {
  color: var(--common-background-color);
}

.index2 .list li .sons .arrow {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #fff;
  margin-left: 124px;
}

.index3 .l {
  width: 577px;
}

.index3 .l .title {
  line-height: 59px;
  font-size: 36px;
  color: #333;
}

.index3 .l .en-title {
  margin-top: 13px;
  line-height: 31px;
  font-size: 18px;
  color: #333;
}

.index3 .l .content {
  margin-top: 24px;
  line-height: 30px;
  font-size: 14px;
  color: #333;
}

.index3 .l .line {
  margin-top: 36px;
  width: 100%;
  height: 1px;
  background-color: #d8d8d8;
}

.index3 .l .line::after {
  content: '';
  display: block;
  width: 200px;
  height: 1px;
  background-color: #d00000;
  position: absolute;
  left: 0;
  top: 0;
}

.index3 .r {
  width: 902px;
  height: 550px;
  background: url(../images/bg/index3-cer.png) no-repeat;
  margin-right: -100px;
}

.index4 {
  margin-top: 88px;
}

.index4 li {
  width: calc((100% - 140px) / 5);
  margin-right: 35px;
}

.index4 li:nth-child(5n) {
  margin-right: 0;
}

.index4 li .image-url,
.index4 li .image-url img {
  width: 100%;
}

.index4 li a::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/bg/index4-li.png) no-repeat;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  transition: all .3s;
  opacity: 0;
}

.index4 li a:hover::after {
  opacity: 1;
}

.index4 li article {
  left: 33px;
  margin-right: 33px;
  bottom: 12px;
  opacity: 0;
  z-index: 999;
}

.index4 li:hover article {
  opacity: 1;
}

.index4 li article .title {
  line-height: 27px;
  font-size: 16px;
  color: #fff;
}

.index4 li article .list-des {
  margin-top: 13px;
  line-height: 18px;
  font-size: 14px;
  color: #fff;
}

.index5 {
  margin-top: 90px;
  background: url(../images/bg/index5.png) no-repeat center top;
}

.index5 .l {
  width: 849px;
  height: 693px;
  flex-grow: 0;
  flex-shrink: 0;
  padding: 28px 53px 0 55px;
  background: url(../images/bg/index5-bg.jpg);
}

.index5 .l .title {
  line-height: 61px;
  font-size: 36px;
  color: #333;
}

.index5 .l .form {
  width: 100%;
}

.index5 .l ul {
  margin-top: 25px;
}

.index5 .l li {
  margin-bottom: 24px;
}

.index5 .l li .input {
  width: 358px;
  height: 35px;
  border: 1px solid #e5e5e5;
  padding: 0 10px;
}

.index5 .l li .input:focus {
  border-color: #666;
}

.index5 .l li .textarea {
  width: 100%;
  height: 154px;
  border: 1px solid #e5e5e5;
  padding: 0 10px;
  line-height: 25px;
}

.index5 .l li .textarea:focus {
  border-color: #666;
}

.index5 .l li button {
  width: 100%;
  height: 35px;
  background: none;
  border: 1px solid var(--common-background-color);
}

.index5 .l li button:hover {
  background-color: var(--common-background-color);
  color: #fff;
}

.index5 .r {
  width: 557px;
  height: 693px;
  flex-grow: 0;
  flex-shrink: 0;
  padding: 28px 48px 0 48px;
  background: url(../images/bg/index5-bg.jpg);
}

.index5 .r .title {
  line-height: 61px;
  font-size: 36px;
  color: #333;
}

.index5 .r .tel {
  margin-top: 20px;
  height: 52px;
  padding-left: 65px;
  font-size: 18px;
  color: #333;
  background: url(../images/icon/tel.png) no-repeat left center;
}

.index5 .r .email {
  height: 52px;
  margin-top: 6px;
  padding-left: 65px;
  font-size: 18px;
  color: #333;

  background: url(../images/icon/email.png) no-repeat left center;
}

.index5 .r .qrcode {
  margin-top: 40px;
}

.index5 .r .qrcode li {
  margin-left: 14px;
  max-width: 130px;
}

.index5 .r .qrcode li img {
  max-width: 100%;
}

.index5 .r .qrcode li .title {
  margin-top: 8px;
  line-height: 23px;
  font-size: 16px;
}

/*other*/
.banner {
  width: 100%;
}

.banner img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

/*sidebar*/
.sidebar {
  width: 312px;
  margin: 32px 0 0 20px;
}

.sidebar .channels {
  width: 100%;
  background-color: var(--common-background-color);
}

.sidebar .channels .cn {
  margin-top: 7px;
  height: 32px;
  font-size: 22px;
  color: #fff;
}

.sidebar .channels .en {
  height: 48px;
  font-size: 22px;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  padding-bottom: 25px;
}

.sidebar .channels ul {
  padding: 20px 0;
  background-color: #f0f5f5;
}

.sidebar .channels ul li a {
  width: 100%;
  height: 44px;
  border-bottom: 1px solid #ededed;
  font-size: 17px;
  color: var(--common-background-color);
}

.sidebar .channels ul li a:hover,
.sidebar .channels ul li a.active {
  font-weight: bold;
}

.sidebar .contact {
  margin-top: 48px;
}

.sidebar .contact .cn {
  height: 27px;
  font-size: 20px;
  color: #22a6b5;
}

.sidebar .contact .en {
  height: 26px;
  font-size: 24px;
  color: #ccc;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.sidebar .contact h4 {
  margin-top: 15px;
  height: 25px;
  font-size: 14px;
  color: #000;
}

.sidebar .contact .tel {
  height: 40px;
  border-bottom: 1px dashed #d3d3d3;
  font-size: 24px;
  color: #a69312;
  padding-left: 38px;
  background: url(../images/icon/sidebarPhone.png) no-repeat left center;
}

.sidebar .contact .address {
  height: 57px;
  border-bottom: 1px dashed #d3d3d3;
  padding-left: 33px;
  font-size: 17px;
  color: #000;
  background: url(../images//icon/sidebarAddress.png) no-repeat left center;
}

.sidebar .contact .email {
  height: 57px;
  border-bottom: 1px dashed #d3d3d3;
  padding-left: 33px;
  font-size: 17px;
  color: #000;
  background: url(../images//icon/sidebarEmail.png) no-repeat left center;
}

/*main*/
main {
  padding: 0 0 50px 0;
}

.mains .r {
  flex: 1;
  margin-left: 36px;
  position: relative;
  z-index: 0;
}


.headerSwiper .swiper-button-next,
.headerSwiper .swiper-button-prev {
  color: #fff !important;
}

.headerSwiper .swiper-button-prev {
  left: 30px;
}

.headerSwiper .swiper-button-next {
  right: 30px;
}

main .typename {
  margin-top: 19px;
  height: 58px;
  border-bottom: 1px solid #d8d8d8;
}

main .typename h1 {
  font-size: 20px;
  color: var(--common-background-color);
  padding-left: 31px;
  background: url(../images/icon/arrow-right.jpg) no-repeat left center;
}

main .typename .pos {
  padding-left: 30px;
  font-size: 14px;
  color: #555;
  background: url(../images/icon/position.jpg) no-repeat left center;
  background-size: auto 20px;
}

main .typename2 {
  width: 100%;
  line-height: 60px;
  background-color: #227dff;
  padding: 0 22px;
  font-size: 16px;
  color: #fff;
  margin-top: 26px;
}

main .typename .pos a {
  color: #555;
}

main .typename .pos a:hover {
  color: var(--common-background-color);
}

.detail {
  background-color: #fff;
  padding: 35px 0;
}

.introduction {
  padding: 24px 0;
  text-align: justify;
  line-height: var(--common-p-line-height);
  font-size: var(--common-p-size);
  color: var(--common-p-color);
}

.introduction.nmt {
  margin-top: 0;
}

.introduction div,
.introduction p {
  font-size: var(--common-p-size);
  color: var(--common-p-color);
}

.introduction img {
  max-width: 100%;
}

.articleImg {
  width: 100%;
  margin: 0 0 0 0;
  text-align: center;
}

.articleImg img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.articleImg2 {
  width: 100%;
  margin: 0 0 22px 0;
  text-align: center;
}

.articleImg2 img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.articleBody {
  width: 400px;
  margin: 20px 0;
}

.articleTitle {
  overflow: hidden;
  width: 100%;
  text-align: center;
  line-height: 32px;
  font-size: 20px;
  color: var(--common-p-color);
  margin-bottom: 8px;
}

.articleTitle2 {
  overflow: hidden;
  width: 100%;
  text-align: center;
  line-height: 32px;
  font-size: var(--common-font-size);
  color: var(--common-background-color);
  font-weight: bold;
  margin-bottom: 8px;
}

.articlePhoto {
  margin-top: 18px;
  margin-bottom: 16px;
}

.articleTime {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 15px;
  text-align: center;
  line-height: 21px;
  font-size: 16px;
  color: #636666;
  padding-bottom: 22px;
  border-bottom: 1px solid #ddd;
}

.articleDes {
  text-align: center;
  line-height: 28px;
  font-size: 14px;
  color: #42403f;
}

.articlePages {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px dashed #969797;
}

.articlePages div {
  width: 50%;
  font-size: 16px;
  color: #666;
}

/*联系我们*/
.contactus {
  margin: 21px 14px;
}

.contactus .pic {
  margin-top: 15px;
}

.contactus .pic,
.contactus .pic img {
  width: 97px;
}

.contactus article {
  margin-left: 33px;
  flex: 1;
}

.contactus article .intro {
  line-height: 180%;
  font-size: 14px;
  color: #000;
}

.contactus article .phone {
  padding-left: 48px;
  background: url(../images/icon/contactPhone.png) no-repeat left center;
  margin-bottom: 15px;
}

.contactus article .phone h4 {
  line-height: 20px;
  font-size: 14px;
  color: #000;
}

.contactus article .phone h2 {
  line-height: 120%;
  font-weight: bold;
  font-size: 21px;
  color: #000;
}

/*新闻列表*/
.newslist {}

.newslist li {}

.newslist li a {
  width: 100%;
  height: 45px;
  border-bottom: 1px solid #e2e2e2;
}

.newslist li a .title {
  font-size: 16px;
  color: #000;
}

.newslist li a .title::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--common-background-color);
  border-radius: 50%;
  margin-right: 15px;
}

.newslist li a .time {
  font-size: 15px;
  color: #666;
}

.newslist li a:hover * {
  color: var(--common-background-color);
}

/*图片文字列表*/
.picstextlist {
  width: 100%;
  background-color: #fff;
  padding: 47px 43px;
}

.picstextlist a {
  padding: 25px;
  border: 1px solid #eee;
}

.picstextlist li:last-child a {
  margin-bottom: 0;
}

.picstextlist .img {
  width: 218px;
}

.picstextlist img {
  width: 218px;
}

.picstextlist article {
  width: 500px;
  width: calc(100% - 246px);
}

.picstextlist .title {
  line-height: 28px;
  font-size: 20px;
  color: #000;
  margin-top: 10px;
}

.picstextlist .time {
  margin: 6px 0;
  line-height: 33px;
  font-size: 18px;
  color: #c8c8c8;
}

.picstextlist .time i {
  margin-right: 8px;
}

.picstextlist .des {
  margin-top: 20px;
  line-height: 25px;
  font-size: 17px;
  color: #636363;
}

.picstextlist .more {
  margin-top: 20px;
  width: 150px;
  height: 40px;
  border: 1px solid #d4d4d4;
  font-size: var(--common-font-color);
  color: #212121;
}

.picstextlist a:hover .more {
  background-color: var(--common-background-hover-color);
  border-color: var(--common-background-hover-color);
  color: #fff;
}

.picstextlist .ly:hover {
  background: #1279ba;
}

/*图片列表*/
.picslist {
  background-color: #fff;
  padding: 34px 0;
}

.picslist li {
  width: 244px;
  width: calc((100% - 100px) / 3);
  margin: 0 50px 50px 0;
}

.picslist li:nth-child(3n) {
  margin-right: 0;
}

.picslist .img {
  width: 100%;
  border: 1px solid #949292;
  padding: 3px;
  overflow: hidden;
}

.picslist img {
  width: 100%;
}

.picslist .title {
  width: 100%;
  margin-top: 10px;
  line-height: 160%;
  color: var(--common-background-color);
  font-size: 14px;
  text-align: center;
}

.picslist a:hover .title {
  color: var(--common-background-color);
}

/*团队列表*/
.teamlist {
  padding: 35px 4px;
}

.teamlist li {
  width: 204px;
  width: calc((100% - 107px * 2) / 3);
  margin: 0 107px 31px 0;
}

.teamlist li:nth-child(3n) {
  margin-right: 0;
}

.teamlist li a {}

.teamlist li .img,
.teamlist li img {
  width: 92px;
}

.teamlist li article {
  flex: 1;
  margin-left: 25px;
}

.teamlist li .title {
  line-height: 30px;
  font-size: 25px;
  color: #666;
}

.teamlist li .des {
  margin: 8px 0 15px 0;
  line-height: 150%;
  font-size: 16px;
  color: #000;
}

.teamlist li .details {
  width: 83px;
  height: 31px;
  background: url(../images/icon/arrowRight.png) no-repeat 61px center #948b8e;
  border-radius: 12px;
  padding-left: 17px;
  font-size: 20px;
  color: #fff;
}

.teamDetail {
  margin: 34px 0 0;
}

.teamDetail .img,
.teamDetail .img img {
  width: 301px;
}

.teamDetail article {
  flex: 1;
  margin-left: 47px;
}

.teamDetail article .name {
  line-height: 38px;
  font-size: 26px;
  color: #d71418;
  padding-bottom: 15px;
  border-bottom: 2px dashed #ccc;
}

.teamDetail article .des {
  margin-top: 9px;
  padding-bottom: 6px;
  border-bottom: 1px dashed #ccc;
}

.teamDetail article .des li {
  padding-left: 27px;
  line-height: 33px;
  font-size: 17px;
  color: #2d2d2d;
  background: url(../images/icon/star2.png) no-repeat left center;
}

.teamDetail article .intro {
  padding: 16px 2px;
  line-height: 180%;
  font-size: 16px;
  color: #2d2d2d;
}

.teamDetail article .intro h2 {
  line-height: 31px;
  font-size: 17px;
  color: var(--common-background-color);
  margin-bottom: 15px;
}

.openHtml {
  overflow: hidden;
  width: 798px;
  height: 533px;
  background-color: #fff;
}

.openHtml .h1 {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 46px;
  border-bottom: 1px solid #eee;
  line-height: 46px;
  text-indent: 25px;
  font-size: 14px;
  font-family: "Microsoft YaHei";
  color: #333;
}

.openHtml .close {
  position: absolute;
  z-index: 999;
  top: 14px;
  right: 17px;
  display: block;
  width: 13px;
  height: 11px;
  background: url(../images/close.gif) no-repeat;
}

.openHtml .htmlContent {
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  width: 753px;
  height: 420px;
  padding: 10px 0 0 25px;
  padding-right: 10px;
  border-bottom: 1px solid #ddd;
  line-height: 28px;
  font-size: 14px;
  font-family: "Microsoft YaHei";
  color: #333;
}

.openHtml .closeBlock {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 54px;
  margin-top: 1px;
  background-color: #f5f5f5;
}

.openHtml .close2 {
  position: absolute;
  z-index: 999;
  top: 13px;
  left: 15px;
  display: block;
  width: 82px;
  height: 30px;
  background: #2384ef;
  background: linear-gradient(to bottom, #0080eb, #0565b2);
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  font-family: "Microsoft YaHei";
  color: #fff;
}

.floatMenu {
  position: fixed;
  z-index: 99999;
  width: 226px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(to bottom, #0bafff, #0bafff);
  padding: 0 11px 9px 11px;
  border-radius: 10px;
}

.floatMenu .ask {
  width: 100%;
  height: 99px;
  background: url(../images/service.png) no-repeat;
  margin-top: -29px;
}

.floatMenu ul {}

.floatMenu ul li {
  width: 100%;
  margin-bottom: 3px;
}

.floatMenu ul li a {
  width: 100%;
  height: 46px;
  background-color: #fff;
  font-size: 18px;
  color: #000;
  cursor: pointer;
}

.floatMenu ul li a:hover {
  background-color: var(--common-background-color);
  color: #fff;
}

/*分页*/
.pages {
  padding: 20px 0 15px 0;
  text-align: right;
}

.pages li {
  display: inline;
}

.pages li.active a {
  background-color: red;
}

.pages a,
.pages em {
  display: inline-block;
  height: 28px;
  margin-right: 5px;
  padding: 0 8px;
  background: var(--common-color);
  border: 1px solid #fff;
  line-height: 28px;
  font-size: 14px;
  color: #fff;
}

.pages span {
  display: inline-block;
  height: 28px;
  margin-right: 5px;
  padding: 0 8px;
  line-height: 28px;
  font-size: 14px;
  color: #fff;
}

.pages span.disabled {
  background: var(--common-color);
  color: #fff;
}

.pages em {
  background: var(--common-color);
  color: #fff;
  font-style: normal;
}

/*在线留言*/
.guestbook {
  margin-top: 40px;
}

.guestbook h2 {
  height: 32px;
  font-size: 20px;
  color: #000;
}

.guestbook ul {
  margin-top: 14px;
}

.guestbook li {
  margin-bottom: 14px;
}

.guestbook .title {
  width: 200px;
  margin-left: 50px;
  height: 26px;
  font-size: 15px;
  color: #696969;
}

.guestbook .wbk {
  box-sizing: border-box;
  width: 517px;
  height: 36px;
  background: #fff;
  border: 1px solid #b5b5b5;
  border-radius: 2px;
  padding: 0 5px;
  font-size: 15px;
  color: #333;
}

.guestbook .wby {
  box-sizing: border-box;
  width: 516px;
  height: 189px;
  border: 1px solid #b5b5b5;
  border-radius: 2px;
  padding: 5px;
  font-size: 15px;
  color: #333;
}

.guestbook .wbk:focus {
  border-color: #04654d;
}

.guestbook button {
  box-sizing: border-box;
  width: 72px;
  height: 26px;
  text-align: center;
  line-height: 26px;
  background: var(--common-background-color);
  border: 0;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
  font-family: 微软雅黑;
  margin-left: 400px;
  border-radius: 4px;
}

/*home*/
.home {
  width: 100vw;
  height: 100vh;
  background: url(../images/bg/home.jpg?1.1) no-repeat;
  background-size: 100% 100%;
}

.home .logo {
  height: 44vh;
  animation: fadeInUp 1s;
}

.home .logo img {
  height: 100%;
}

.home .font {
  height: 6.49vh;
  animation: fadeInUp 1s;
}

.home .font img {
  height: 100%;
}

.home .enter {
  width: 22.8vh;
  height: 6.4vh;
  border: 2px solid #fff;
  border-radius: 32px;
  font-size: 2.2vh;
  color: #fff;
  margin-top: 5vh;
  animation: fadeInUp 1s;
}

.home article {
  animation: fadeInUp 1s;
  line-height: 140%;
  font-size: 2vh;
  color: #fff;
  margin-top: 5vh;
}

.home article .sydw img {
  max-height: 8vh;
  margin-top: 1vh;
}

.home article .phone {
  font-size: 3vh;
  color: #fff;
  margin-bottom: 10px;
}

.home article .phone i {
  margin-right: 5px;
}

.layer-wrap {
  padding: 20px;
}

.layer-input {
  flex: 1;
  height: 40px;
  background: none;
  border: 1px solid #ccc;
  margin-right: 10px;
  padding: 0 10px;
  transition: all 0.5s;
}

.layer-input:focus {
  border-color: var(--common-background-color);
  transition: all 0.5s;
}

.layer-button {
  display: inline-block;
  padding: 0 20px;
  height: 40px;
  background: var(--common-background-color);
  color: #fff;
  font-size: 14px;
  border: 0;
}

.showM {
  display: none;
}

.navMask {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.newSubmit {
  margin-left: 324px;
}

/*表单（新）*/
.newForm {
  margin-top: 40px;
  margin-bottom: 10px;
}

.custom-label-width label {
  width: 180px !important;
}

.custom-label-width .el-form-item__content {
  margin-left: 190px !important;
}

.newForm .notice {
  margin: 0 0 35px 0;
  color: #ccc;
  padding: 0 20px;
}

.newForm * {
  font-size: 15px !important;
}

.newForm .radio-group label {
  line-height: 30px;
}

.newForm .el-form-item__error {
  font-size: 12px !important;
}

.newForm .el-form-item {
  margin-bottom: 30px !important;
}

@media (max-width: 768px) {
  :root {
    --common-page-width: 100%;
    --nav-height: 40px;
    --common-font-size: 0.24rem;
    --common-p-size: 0.24rem;
  }

  .showM {
    display: block;
  }

  .showPc {
    display: none;
  }

  .wrapper {
    width: 100%;
  }

  nav {
    width: 50%;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: auto;
    animation: none;
  }

  nav.active {
    animation: none;
    box-shadow: none;
  }

  nav.show {
    transform: translateX(0);
    animation: none;
  }

  nav .dl {
    position: static;
    display: block;
  }

  nav ul {
    flex-direction: column;
  }

  nav li .a::before {
    display: none;
  }

  nav dt a {
    border: 0;
    padding: 0.1rem 0;
  }

  header .user {
    position: static;
    padding: 4vw;
  }

  header .user .wrapper {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }

  header .user .wrapper .bars {
    height: 0.5rem;
    margin-left: 0.2rem;
  }

  header .user .wrapper .bars i {
    font-size: 0.5rem;
    color: #333;
  }

  header .search {
    background-color: #ccc;
    margin-right: 0;
    margin-left: 0.4rem;
    width: auto;
  }

  header .user a {
    color: #333 !important;
  }

  .navMask.active {
    display: block;
  }

  .index1 {
    margin-top: 4vw;
    padding: 0 2vw;
    flex-direction: column;
  }

  .index1 .l,
  .index1 .hotSwiper,
  .index1 .hotSwiper .swiper-slide {
    width: 100%;
    height: auto;
  }

  .index1 .r {
    width: 100%;
    margin-top: 0.4rem;
  }

  .itabs {
    height: 0.6rem;
  }

  .itabs li {
    display: inline-block;
    width: auto;
    padding: 0 0.2rem;
    font-size: 0.26rem;
    height: 0.6rem;
    line-height: 0.6rem;
  }

  .newslist li a .title,
  .newslist li a .time,
  .wdys .wdys_fc ul li .flwz h4,
  footer .flinks {
    font-size: 0.24rem;
  }

  .wdys {
    padding: 0.4rem;
    margin-top: 0.4rem;
    overflow: hidden;
  }

  .wdys .wdys_ft h3 {
    font-size: 0.36rem;
  }

  .wdys .wdys_ft h4 {
    font-size: 0.24rem;
  }

  .wdys .wdys_fc ul li .flwz h3 {
    font-size: 0.26rem;
  }

  .max1400 {
    padding: 0;
  }

  .index3 {
    margin-top: 0;
    padding: 0 2%;
  }

  .newslist li a .title {
    display: block;
    width: 80%;
    overflow: hidden;
    line-height: 0.4rem;
    height: 0.4rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 0.2rem;
  }

  .newslist li a .title::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  footer {
    padding-top: 0.2rem;
  }

  main {
    padding-bottom: 0.5rem;
  }

  footer .flinks {
    padding: 2vw;
  }

  .positions {
    padding: 0 2vw;
  }

  main .typename {
    height: 0.6rem;
    font-size: 0.28rem;
  }

  .newslist {
    padding: 0 2%;
  }

  main .typename {
    flex-direction: column;
    height: auto;
    align-items: flex-start;
  }

  main .typename h1 {
    font-size: 0.26rem;
  }

  .mains .r {
    margin-left: 0;
    padding: 0 2%;
  }

  .articleTitle {
    font-size: 0.3rem;
  }

  .form-group {
    margin-bottom: 0.4rem;
  }

  .input-group {
    width: 100% !important;
    height: 0.6rem;
    overflow: hidden;
    display: flex;
  }

  .input-group-addon {
    font-size: 0.3rem;
    padding: 0.2rem;
    height: 0.6rem;
    border-radius: 0.1rem;
    overflow: hidden;
    line-height: 0.6rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .form-control {
    height: 0.6rem;
    padding: 0 0.2rem;
    font-size: 0.24rem;
    border-radius: 0.1rem;
  }

  .btn {
    line-height: 0.6rem;
    padding: 0 0.2rem;
    font-size: 0.28rem !important;
  }

  .index1 .hotSwiper .swiper-slide .pa {
    flex-direction: column;
    height: auto;
    line-height: 150%;
    padding: 0.2rem;
  }

  .index1 .hotSwiper .swiper-slide .pa .title,
  .index1 .hotSwiper .swiper-slide .pa .addtime {
    width: 100%;
    display: block;
    height: auto;
    line-height: 150%;
  }

  .newSubmit {
    margin-left: 0;
    justify-content: center;
  }
}


.wdys_fbw .c .l {
  width: 626px;
  flex-grow: 0;
  flex-shrink: 0;
}

.wdys_fbw .c .l .title {
  height: 64px;
  border-bottom: 1px solid #e6e6e6;
  line-height: 63px;
}

.wdys_fbw .c .l .title b {
  font-family: Impact;
  font-size: 3rem;
  color: #d81519;
}

.wdys_fbw .c .l .title span {
  margin-left: 21px;
  font-size: 32px;
  color: #d81519;
}

.wdys_fbw .c .list {
  margin-top: 42px;
}

.wdys_fbw .c.c2 .list {
  margin-top: 13px;
}

.wdys_fbw .c .list li {
  width: 303px;
  height: 118px;
  margin-bottom: 42px;
  position: relative;
  overflow: hidden;
}

.wdys_fbw .c.c2 .list li {
  margin-bottom: 9px;
}

.wdys_fbw .c .list li:nth-child(odd) {
  margin-right: 20px;
}

.wdys_fbw .c .list li .pic {
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 303px;
  height: 118px;
}

.wdys_fbw .c .list li::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 303px;
  height: 118px;
  background-color: rgba(0, 102, 204, .84);
}

.wdys_fbw .c .list li article {
  width: 303px;
  height: 118px;
}

.wdys_fbw .c .list li:hover::before {
  background-color: rgba(216, 21, 25, .84);
}

.wdys_fbw .c .list li h2 {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-left: 12px;
}

.wdys_fbw .c .r,
.wdys_fbw .c .r img {
  width: 642px;
}

.list-search {
  margin: 0 auto;
  margin-top: 40px;
  width: 745px;
  height: 63px;
  background-color: #d71418;
}

.list-search .input {
  width: 667px;
  height: 61px;
  margin: 1px 0 1px 1px;
  padding: 0 55px;
  background: url(../images/icon/search.jpg) no-repeat 15px center #fff;
  border: 0;
  font-size: 18px;
}

.list-search button {
  width: 77px;
  height: 63px;
  font-size: 18px;
  background: none;
  border: 0;
  color: #fff;
}

.list-search i {
  right: 5px;
  top: 5px;
  font-size: 20px;
  font-weight: normal;
}

.tips {
  margin-top: 45px;
}

.new-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 5px;
  border-bottom: 1px solid #f3f3f3;
}

.new-table th {
  background-color: #1d6ed9;
  height: 74px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  line-height: 150%;
  font-weight: normal;
  vertical-align: middle;
}

.new-table td {
  padding: 5px 0;
  height: 74px;
  text-align: center;
  font-size: 14px;
  color: #333;
  line-height: 150%;
  font-weight: normal;
  vertical-align: middle;
}

.new-table tr td:first-child {
  border-left: 1px solid #f3f3f3;
}

.new-table tr td:last-child {
  border-right: 1px solid #f3f3f3;
}

.new-table tr.tr:nth-child(odd) {
  background-color: #fafafa;
}

.new-table td a.blue {
  color: #307cff;
}

.new-table a.apply-link {
  background-color: #d71418;
  border-radius: 18px;
  line-height: 36px;
  font-size: 16px;
  color: #fff;
  padding: 0 23px;
}

.fxsc-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 35px;
  border-bottom: 1px solid #f3f3f3;
}

.fxsc-table th {
  background-color: #1d6ed9;
  height: 74px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  line-height: 150%;
  font-weight: normal;
  vertical-align: middle;
}

.fxsc-table td {
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
  color: #333;
  line-height: 150%;
  font-weight: normal;
  vertical-align: middle;
  border: 1px solid #333;
}

.fxsc-table td.th {
  font-weight: 600;
  color: #000;
}

.fxsc-table td.th.yellow {
  background-color: #fdc100;
}

.fxsc-table td.th.blue {
  background-color: #01b0f1;
}

.apply {
  z-index: 999999 !important;
}

.apply .el-dialog__header {
  border-bottom: 1px solid #ccc;
}

.apply .el-dialog__body {
  padding: 10px 20px;
}

.apply dt {
  display: inline-block;
  line-height: 35px;
  border-bottom: 4px solid #d11514;
  padding: 0 6px;
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.apply dl.info dd {
  line-height: 180%;
  font-size: 16px;
}

.apply dl dd.contacts {
  text-align: center;
  line-height: 180%;
  font-size: 21px;
  margin-bottom: 20px;
  color: #fb0000;
}

.apply .submit {
  margin-bottom: 30px;
  width: 100%;
}

@media (max-width: 768px) {
  .wdys_fbw .c {
    flex-direction: column;
  }

  .wdys_fbw .c .l,
  .wdys_fbw .c .r,
  .wdys_fbw .c .r img {
    width: 100%;
  }

  .wdys_fbw .c .l {
    margin-top: 0;
  }

  .wdys_fbw .c .l .title {
    height: 45px;
    line-height: 44px;
  }

  .wdys_fbw .c .l .title b {
    font-size: 18px;
  }

  .wdys_fbw .c .l .title span {
    font-size: 16px;
  }

  .wdys_fbw .c .list {
    margin-top: 20px;
    justify-content: space-between;
  }

  .wdys_fbw .c .list li {
    width: 42vw;
    height: 16vw;
    margin-bottom: 2vw;
  }

  .wdys_fbw .c .list li:nth-child(odd) {
    margin-right: 0;
  }

  .wdys_fbw .c .list li .pic,
  .wdys_fbw .c .list li .pic img,
  .wdys_fbw .c .list li article {
    width: 42vw;
    height: 16vw;
  }

  .wdys_fbw .c .list li h2 {
    font-size: 14px;
    line-height: 140%;
  }

  .wdys_fbw .c .list li article img {
    max-height: 5vw;
  }

  .max1300 {
    padding: 0;
  }

  .list-search {
    width: 100%;
    height: 45px;
  }

  .list-search .list-search-wrap {
    flex-grow: 0;
    flex-wrap: 0;
    flex: 1;
  }

  .list-search .input {
    width: 100%;
    height: 43px;
    font-size: 14px;
  }

  .new-table {
    width: auto;
  }
}