/*样式初始化及公共样式部分*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-style: normal;
  color: #111111;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #111111;
}
a:hover {
  color: #e50014;
}
.cl {
  clear: both;
  height: 0px;
}
body {
  margin: 0 auto;
  background-color: #fff;
  font-family: "Microsoft YaHei";
  min-width: 1360px;
}
img,
span,
a {
  display: block;
  max-width: 100%;
}
.page {
  width: 92%;
  max-width: 1520px;
  margin: 0 auto;
  position: relative;
}
/* header */
.header {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
}
.header .page {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}
/* nav */
.nav {
  width: 60%;
}
.nav-list {
  display: flex;
  position: relative;
}
.nav-list > li {
  flex: 1;
  display: flex;
  height: 60px;
  align-items: center;
  position: relative;
}
.nav-list > li > a {
  width: 100%;
  line-height: 40px;
  border-radius: 20px;
  text-align: center;
  font-size: 16px;
  position: relative;
}
.nav-list > li > a::after {
  content: '';
  width: 0px;
  height: 2px;
  background-color: #e50014;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s linear;
}
.nav-list > li .erji2 {
  min-width: 100%;
  background-color: #f9f9f9;
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 999;
  display: flex;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%) scaleY(0);
  transform-origin: 0 0;
  transition: all 0.3s linear;
}
.nav-list > li .erji2 ul {
  width: 100%;
  text-align: center;
}
.nav-list > li .erji2 ul li {
  border-bottom: 1px solid #ccc;
}
.nav-list > li .erji2 ul li a {
  line-height: 50px;
  font-size: 15px;
  color: #333;
  padding: 0 20px;
}
.nav-list > li .erji2 ul li:hover {
  background-color: #e50014;
}
.nav-list > li .erji2 ul li:hover a {
  color: #fff;
}
.nav-list > li .erji2 ul li:last-child {
  border: none;
}
.nav-list > li:hover > a {
  color: #e50014;
  font-weight: bold;
}
.nav-list > li:hover > a::after {
  width: 30px;
  transition: all 0.3s linear;
}
.nav-list > li:hover .erji2 {
  opacity: 1;
  transform: translateX(-50%) scaleY(1);
  transition: all 0.3s linear;
}
.nav-list .active > a {
  color: #e50014;
  font-weight: bold;
}
.nav-list .active > a::after {
  width: 30px;
}
/* 幻灯片 */
.banner-box {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: #eee;
}
.banner-box .banner-btn a {
  display: block;
  width: 49px;
  height: 104px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  transition: 0.3s all ease-in-out;
  z-index: 99;
}
.banner-box .banner-btn a:hover {
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}
.banner-box .banner-btn .prev {
  left: -50px;
  background: url(../images/banner-h.png) no-repeat 0 0;
}
.banner-box .banner-btn .next {
  right: -50px;
  background: url(../images/banner-h.png) no-repeat -49px 0;
}
.banner-box:hover .prev {
  left: 20px;
  filter: alpha(opacity=40);
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  opacity: 0.4;
}
.banner-box:hover .next {
  right: 20px;
  filter: alpha(opacity=40);
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  opacity: 0.4;
}
/* 搜索 */
.search {
  width: 100%;
  border-bottom: 1px solid #e8e8e8;
  background-color: #e7e7e7;
}
.search .page {
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: space-between;
}
.search .page .keywo {
  display: flex;
  align-items: center;
}
.search .page .keywo > p {
  padding-left: 30px;
  position: relative;
  font-size: 18px;
}
.search .page .keywo > p img {
  position: absolute;
  left: 0;
  top: 49%;
  transform: translateY(-50%);
}
.search .page .keywo a {
  font-size: 16px;
  margin-right: 10px;
  padding-right: 10px;
  color: #666;
}
.search .page .keywo a:last-child {
  border: none;
}
.search .page .keywo a:hover {
  color: #fc6902;
}
.search .page .sear-w {
  display: flex;
  overflow: hidden;
  position: relative;
}
.search .page .sear-w input {
  width: 200px;
  height: 40px;
  padding-left: 15px;
  border: 1px solid #e8e8e8;
}
.search .page .sear-w input:focus {
  outline: none;
}
.search .page .sear-w button {
  width: 80px;
  height: 40px;
  color: #fff;
  background: #e50014;
  border: none;
  cursor: pointer;
  transition: all 0.1s linear;
}
.search .page .sear-w button:hover {
  background: #fc6902;
  transition: all 0.1s linear;
}
/*网站标题*/
.wz-bt {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.wz-bt p {
  font-size: 36px;
  position: relative;
  font-weight: bold;
  color: #e50014;
}
.wz-bt span {
  font-size: 18px;
  line-height: 32px;
  margin-top: 8px;
  color: #666666;
}
.pro-w {
  padding: 60px 0 70px;
  background-color: #f9f9f9;
}
.pro-w .wz-bt span {
  padding-bottom: 25px;
  position: relative;
}
.pro-w .wz-bt span::after {
  content: '';
  width: 25px;
  height: 3px;
  background-color: #fc6902;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.pro-w .pro-tabs {
  width: 1180px;
  background-color: #fff;
  height: 50px;
  margin: 50px auto 50px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}
.pro-w .pro-tabs ul {
  display: flex;
  align-items: center;
  height: 100%;
}
.pro-w .pro-tabs ul li {
  flex: auto;
  height: 42px;
  line-height: 42px;
  margin: 4px;
  border-radius: 21px;
  text-align: center;
}
.pro-w .pro-tabs ul .swiper-slide-thumb-active {
  background-color: #e50014;
}
.pro-w .pro-tabs ul .swiper-slide-thumb-active a {
  color: #fff;
}
.pro-w .con-box {
  max-width: 1430px;
  margin: 0 auto;
}
.pro-w .con-box ul {
  display: flex;
}
.pro-w .con-box ul li {
  width: 25%;
  border: 1px solid #bfbfbf;
  border-right: none;
  background-color: #fff;
}
.pro-w .con-box ul li:last-child {
  border-right: 1px solid #bfbfbf;
}
.pro-w .con-box ul li p {
  line-height: 55px;
  text-align: center;
}
.pro-w .con-box ul li span {
  width: 120px;
  line-height: 35px;
  background-color: #f0f0f0;
  margin: 0 auto;
  border-radius: 18px;
  margin-bottom: 25px;
  text-align: center;
  transition: all 0.2s linear;
}
.pro-w .con-box ul li:hover span {
  background-color: #e50014;
  color: #fff;
  transition: all 0.2s linear;
}
.pro-w .more {
  margin: 65px auto 0;
  width: 180px;
  line-height: 50px;
  text-align: center;
  background-color: #e50014;
  border-radius: 25px;
  color: #fff;
  transition: all 0.2s linear;
}
.pro-w .more:hover {
  background-color: #fc6902;
  transition: all 0.2s linear;
}
.app-w {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}
.app-w .app-con li {
  position: relative;
}
.app-w .app-con li .text {
  width: 666px;
  position: absolute;
  top: 25%;
  left: 8%;
}
.app-w .app-con li .text * {
  color: #fff;
}
.app-w .app-con li .text h3 {
  width: 230px;
  font-size: 48px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}
.app-w .app-con li .text h3::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.app-w .app-con li .text p {
  font-size: 22px;
  letter-spacing: 32px;
  margin-bottom: 20px;
}
.app-w .app-con li .text span {
  font-size: 14px;
  line-height: 2;
}
.app-w .lf {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.app-w .lf li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 150px;
  background-color: rgba(0, 0, 0, 0.5);
  border-right: 2px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
}
.app-w .lf li:last-child {
  border-right: none;
}
.app-w .lf li * {
  color: #fff;
}
.app-w .lf li i {
  display: block;
  width: 60px;
  height: 60px;
  background: no-repeat center;
}
.app-w .lf li p {
  font-size: 22px;
  margin-top: 5px;
}
.app-w .lf .my-slide-thumb-active {
  background: url(../images/app-lbg.png);
}
.intr .page {
  width: 100%;
  max-width: none;
}
.intr .row {
  margin: 0 0 0 auto;
  width: 1343px;
  height: 679px;
  background: url(../images/intr-bg.png);
  position: relative;
}
.intr .row .text {
  margin: 0 0 0 auto;
  width: 1080px;
  padding: 100px 0 0;
  text-align: center;
}
.intr .row .text .tit {
  background: url(../images/intr-bt.png) no-repeat center;
  padding-bottom: 26px;
  margin-bottom: 14px;
}
.intr .row .text .tit em {
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
}
.intr .row .text .tit h1 {
  font-size: 30px;
}
.intr .row .text > span {
  font-size: 18px;
  line-height: 2;
  opacity: 0.9;
}
.intr .row .text ul {
  display: flex;
  margin-top: 70px;
  justify-content: center;
}
.intr .row .text ul li {
  width: 150px;
  height: 205px;
  border: 1px solid #b5b5b5;
  transition: all 0.2s;
}
.intr .row .text ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.intr .row .text ul li i {
  width: 50px;
  height: 50px;
  display: block;
  background: url(../images/tubiao.png);
  background-position-y: -10px;
}
.intr .row .text ul li:nth-child(1) i {
  background-position-x: -28px;
}
.intr .row .text ul li:nth-child(2) i {
  background-position-x: -128px;
}
.intr .row .text ul li:nth-child(3) i {
  background-position-x: -228px;
}
.intr .row .text ul li:nth-child(4) i {
  background-position-x: -328px;
}
.intr .row .text ul li p {
  font-size: 16px;
  margin-top: 25px;
  opacity: 0.9;
}
.intr .row .text ul li:hover {
  background-color: #e50014;
  transition: all 0.2s;
}
.intr .row .text ul li:hover i {
  background-position-y: -96px;
}
.intr .row .text ul li:hover p {
  color: #fff;
}
.intr .row .more {
  position: absolute;
  left: 60px;
  top: 506px;
  text-align: center;
  background-color: #e50014;
}
.intr .row .more a {
  width: 166px;
  line-height: 45px;
  color: #fff;
  position: relative;
  z-index: 11;
}
.intr .row .more::before {
  content: '';
  width: 6px;
  height: 100%;
  background-color: #fc6902;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s linear;
}
.intr .row .more:hover::before {
  width: 100%;
  transition: all 0.3s linear;
}
.partner {
  padding: 80px 0;
}
.partner .tit {
  width: 290px;
  height: 72px;
  text-align: center;
  border: 1px solid #333;
  margin: 0 auto;
  position: relative;
}
.partner .tit p {
  width: 320px;
  font-size: 24px;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}
.partner .tit p::before,
.partner .tit p::after {
  content: '';
  width: 30px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
}
.partner .tit p::before {
  left: 0;
}
.partner .tit p::after {
  right: 0;
}
.partner .ptn-box li .pic {
  border: 1px solid #ddd;
}
.partner .box {
  margin-top: 55px;
  padding: 0 100px;
  position: relative;
}
.partner .box .btn {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
}
.partner .box .btn div {
  width: 62px;
  height: 152px;
  background: url(../images/ptn-prev.png);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.partner .box .btn .ptn-prev {
  left: 0;
}
.partner .box .btn .ptn-next {
  right: 0;
  transform: translateY(-50%) scale(-1);
}
/* 新闻 */
.news-w {
  padding: 70px 0 80px;
  background: url(../images/news-bg.png) no-repeat top center;
}
.news-w .page {
  width: 1200px;
}
.news-w .tit {
  text-align: center;
}
.news-w .tit p {
  background: url(../images/intr-bt.png) no-repeat center;
  font-size: 35px;
  font-weight: bold;
}
.news-w .tit span {
  font-size: 25px;
  margin-top: 10px;
  text-transform: uppercase;
  opacity: 0.8;
}
.news-w .list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  height: 453px;
  background: url(../images/news-line.png) no-repeat center top;
}
.news-w .list li {
  width: 50%;
}
.news-w .list li:nth-child(2n-1) {
  padding-right: 110px;
}
.news-w .list li:nth-child(2n) {
  padding-left: 110px;
}
.news-w .list li a {
  display: flex;
}
.news-w .list li .date {
  width: 80px;
  height: 70px;
  border: 1px solid #a0a0a0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 33px;
}
.news-w .list li .date em {
  font-size: 46px;
  font-weight: bold;
  color: #515151;
  line-height: 1;
}
.news-w .list li .date i {
  font-size: 18px;
  color: #515151;
}
.news-w .list li .row {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  overflow: hidden;
}
.news-w .list li .row P {
  font-size: 16px;
}
.news-w .list li .row span {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-w .list li:hover .row p {
  color: #e50014;
  font-weight: bold;
}
.links {
  width: 100%;
  background-color: #e50014;
}
.links * {
  color: #fff;
}
.links a:hover {
  text-decoration: underline;
  color: #fff;
}
.links .page {
  max-width: 1200px;
}
.links .text {
  display: flex;
  height: 80px;
  align-items: center;
}
.links .text p {
  padding-left: 35px;
  font-size: 18px;
}
.links .text p img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.links .text ul {
  display: flex;
}
.links .text ul li {
  margin-right: 15px;
}
.links .text ul li a {
  font-size: 16px;
}
.links .text a {
  font-size: 14px;
  margin: 0 0 0 auto;
}
.footer {
  background: #222;
  background-image: url(../images/foot-bg.png);
  padding-top: 80px;
}
.footer .page {
  max-width: 1200px;
  padding-bottom: 25px;
}
.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: 10px;
  color: #fff;
  font-size: 17px;
}
.footer .footer-main .footer-cont .footer-lianxi {
  width: 40%;
}
.footer .footer-main .footer-cont .footer-lianxi .footer-lianxi-title h1 {
  color: #fff;
  font-family: arial;
  font-size: 28px;
}
.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: 22px;
  margin-bottom: 20px;
}
.footer .footer-main .footer-cont .footer-lianxi ul li {
  color: #ddd;
  line-height: 40px;
  font-size: 18px;
  padding-left: 30px;
  background: url(../images/foot-icon.png) no-repeat left;
}
.footer .footer-main .footer-cont .footer-lianxi ul li:nth-child(1) {
  background-position-y: -2px;
}
.footer .footer-main .footer-cont .footer-lianxi ul li:nth-child(2) {
  background-position-y: -64px;
}
.footer .footer-main .footer-cont .footer-lianxi ul li:nth-child(3) {
  background-position-y: -123.5px;
}
.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: 28px;
}
.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: 40px;
  height: 40px;
  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: #e50014;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row > div .footer-tell p {
  color: #fff;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row a {
  background: #e50014;
  display: flex;
  align-items: center;
  width: 150px;
  padding: 12px 0px;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  margin-top: 25px;
  transition: all 0.2s linear;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row a img {
  margin-right: 8px;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row a:hover {
  background-color: #fc6902;
  transition: all 0.2s linear;
}
.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: #fff;
  font-size: 17px;
}
.footer .footer-main .footer-nav-row .footer-nav ul li a:hover {
  color: #fc6902;
}
.footer .footer-main .footer-nav-row .footer-jishu {
  width: 20%;
}
.footer .footer-main .footer-nav-row .footer-jishu a {
  color: #fff;
  font-size: 15px;
}
.footer .footer-main .footer-nav-row .footer-jishu a:hover {
  color: #fc6902;
}
.footer-copying {
  border-top: 1px solid #393939;
  padding: 15px 0px;
  background-color: #222222;
}
.footer-copying .footer-copying-main {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-copying .footer-copying-main p {
  font-size: 16px;
  color: #898989;
  margin-right: 10px;
}
.footer-copying .footer-copying-main a {
  color: #898989;
  font-size: 16px;
}
.footer-copying .footer-copying-main a:hover {
  color: #fc6902;
}
