/*样式初始化及公共样式部分*/
* {
  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: #225392;
}
.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;
}
.top {
  background-color: #225392;
}
.top .page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 50px;
}
.top * {
  color: #fff;
}
.top .hot-l {
  padding-left: 30px;
  font-size: 18px;
  background: url(../images/hot-l.png) no-repeat left center;
}
.top .hot-l i {
  font-weight: bold;
  font-size: 22px;
  font-family: Arial, Helvetica, sans-serif;
}
/* header */
.header {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
}
.header .page {
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}
/* nav */
.nav {
  width: 60%;
  margin-left: 10%;
}
.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: #225392;
  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: #225392;
}
.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: #225392;
  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: #225392;
  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 .sear-w {
  display: flex;
  overflow: hidden;
  position: relative;
}
.search .sear-w input {
  width: 240px;
  height: 40px;
  padding-left: 20px;
  padding-right: 60px;
  border: 1px solid #e8e8e8;
}
.search .sear-w input:focus {
  outline: none;
}
.search .sear-w button {
  width: 50px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  border: none;
  background: url(../images/search.png) no-repeat center center;
  cursor: pointer;
  transition: all 0.1s linear;
}
.search .sear-w button:hover {
  transition: all 0.1s linear;
}
/*网站标题*/
.wz-bt {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  position: relative;
}
.wz-bt p {
  font-size: 36px;
  position: relative;
}
.wz-bt p i {
  color: #225392;
  font-weight: bold;
}
.wz-bt span {
  font-size: 17px;
  line-height: 32px;
  margin-top: 8px;
  color: #666666;
  position: relative;
  background-color: #fff;
  z-index: 1;
  padding: 0 35px;
}
.wz-bt::after {
  content: '';
  width: 1520px;
  position: absolute;
  border-bottom: 1px solid #dddddd;
  left: 50%;
  top: 83%;
  transform: translateX(-50%);
  z-index: 0;
}
.pro-w {
  padding: 80px 0 50px;
}
.pro-w .pro-cen {
  display: flex;
  margin-top: 45px;
}
.pro-w .pro-tabs {
  margin-top: 30px;
  height: 720px;
  margin-right: 4%;
  border-right: 1px solid #6d6d6d;
}
.pro-w .pro-tabs ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pro-w .pro-tabs li {
  display: flex;
  justify-content: flex-end;
  border-right: none;
  height: 55px !important;
  line-height: 55px;
  text-align: right;
}
.pro-w .pro-tabs li a {
  min-width: 260px;
  padding: 0 16px 0 26px;
  font-size: 22px;
  border: 1px solid #6196e8;
  border-right: none;
  border-radius: 30px 0 0 30px;
  transition: all 0.2s;
}
.pro-w .pro-tabs .my-slide-thumb-active a {
  background-color: #6196e8;
  color: #fff;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s;
}
.pro-w .pro-con {
  margin-right: 2%;
  flex: 1;
}
.pro-w .pro-con ul {
  display: flex;
  flex-wrap: wrap;
}
.pro-w .pro-con ul li {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.pro-w .pro-con ul li:nth-child(3n) {
  margin-right: 0;
}
.pro-w .pro-con ul li .pic {
  overflow: hidden;
}
.pro-w .pro-con ul li .pic img {
  transition: all 0.3s linear;
}
.pro-w .pro-con ul li p {
  font-size: 18px;
  color: #333;
  line-height: 40px;
  text-align: center;
}
.pro-w .pro-con ul li:hover img {
  transform: scale(1.1);
  transition: all 0.3s linear;
}
.hf-w {
  height: 388px;
  background: url(../images/hf-bg.jpg) no-repeat top center;
}
.hf-w .page {
  display: flex;
  align-items: center;
  height: 100%;
}
.hf-w * {
  color: #fff;
}
.hf-w p {
  font-size: 47px;
  position: relative;
  padding-bottom: 23px;
  margin-bottom: 25px;
}
.hf-w p::after {
  content: '';
  width: 133px;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.hf-w ul {
  line-height: 1;
  display: flex;
}
.hf-w ul li {
  border-right: 1px solid #fff;
  padding: 0 10px;
  font-size: 22px;
}
.hf-w ul li:first-child {
  padding-left: 0;
}
.hf-w ul li:last-child {
  border-right: none;
}
.case-w {
  padding: 66px 0;
}
.case-w ul {
  width: 1200px;
  margin: 45px auto 0;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.case-w ul li {
  width: 23%;
  margin-right: 2%;
  margin-bottom: 2%;
  position: relative;
  overflow: hidden;
}
.case-w ul li:nth-child(1) {
  width: 48%;
}
.case-w ul li:nth-child(3) {
  margin-right: 0;
}
.case-w ul li:nth-child(6) {
  width: 48%;
  margin-right: 0;
  margin-top: -25%;
}
.case-w ul li .pic {
  overflow: hidden;
}
.case-w ul li .pic img {
  transition: all 0.3s linear;
}
.case-w ul li p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.63);
  line-height: 37px;
  font-size: 16px;
  color: #fff;
  padding-left: 50px;
  transition: all 0.3s linear;
}
.case-w ul li a::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  transition: 0.6s;
  z-index: 333;
  background: rgba(0, 0, 0, 0.3);
  transform-origin: 0 100%;
  transform: rotate(-90deg);
  bottom: 0;
  left: -100%;
}
.case-w ul li a::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  transition: 0.6s;
  z-index: 333;
  background: url(../images/cymdwtwo_1.png) no-repeat center;
  transform: scale(0);
  top: 0;
  left: 0;
}
.case-w ul li:hover img {
  transform: scale(1.1);
  transition: all 0.3s linear;
}
.case-w ul li:hover p {
  opacity: 0;
  transition: all 0.3s linear;
}
.case-w ul li:hover a::before {
  left: 0px;
  transform: rotate(0);
}
.case-w ul li:hover a::after {
  transform: scale(1);
  transition: 0.6s;
}
.intr .wz-bt span {
  padding: 0 15px;
}
.intr .wz-bt h1 {
  font-size: 44px;
  font-weight: normal;
}
.intr .wz-bt h2 {
  font-size: 19px;
  text-transform: uppercase;
  font-weight: normal;
  line-height: 67px;
  background: url(../images/intr-bt.png) no-repeat center bottom;
}
.intr .wz-bt::after {
  top: 50%;
}
.intr .row {
  margin-top: 50px;
  display: flex;
}
.intr .row .text {
  flex: 1;
}
.intr .row .text .tit {
  font-size: 40px;
  font-weight: lighter;
}
.intr .row .text span {
  margin-top: 30px;
  font-size: 24px;
  font-weight: lighter;
  line-height: 36px;
  text-indent: 48px;
  white-space: pre-wrap;
}
.intr .row .text .more {
  margin-top: 30px;
  width: 188px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #666;
}
.intr .row .pic {
  width: 55%;
  margin-left: 3%;
}
.facility {
  background-color: #f8f8fa;
  padding: 66px 0 0 0;
  max-width: 1920px;
  min-width: 1300px;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 45px;
}
.facility .wz-bt span {
  background-color: #f8f8fa;
}
.facility .facility-box {
  margin-top: 50px;
  position: relative;
}
.facility .facility-box .swiper {
  overflow: visible;
}
.facility .facility-box ul li {
  width: 56%;
  margin: 0 2%;
  position: relative;
}
.facility .facility-box ul li .pic {
  overflow: hidden;
}
.facility .facility-box ul li img {
  width: 100%;
  transition: all 0.3s linear;
}
.facility .facility-box ul li .text {
  display: none;
  width: 35%;
  height: 250px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  position: absolute;
  left: 50px;
  bottom: -90px;
  padding: 40px;
}
.facility .facility-box ul li .text p {
  font-size: 18px;
  font-weight: bold;
}
.facility .facility-box ul li .text span {
  font-size: 14px;
  line-height: 21px;
  margin-top: 15px;
}
.facility .facility-box ul li .text .more {
  font-size: 14px;
  color: #225392;
  margin-top: 45px;
  letter-spacing: 2px;
  background: url(../images/more-icon.png) no-repeat 73px center;
}
.facility .facility-box ul li .text::before {
  content: '';
  width: 60px;
  height: 2px;
  background-color: #225392;
  position: absolute;
  top: 80px;
  left: -30px;
}
.facility .facility-box ul li::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 0;
}
.facility .facility-box ul .swiper-slide-active .text {
  display: block;
}
.facility .facility-box ul .swiper-slide-active::after {
  display: none;
}
.facility .facility-box ul .swiper-slide-active:hover img {
  transform: scale(1.1);
  transition: all 0.3s linear;
}
.facility .facility-box ul .swiper-slide-active:hover .text p {
  color: #225392;
}
.facility .facility-box .btn {
  width: 56%;
  height: 0;
  background-color: #bfa;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.facility .facility-box .btn div {
  width: 80px;
  height: 40px;
  background: url(../images/prev-i.png) no-repeat center center;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  cursor: pointer;
  transition: all 0.3s linear;
}
.facility .facility-box .btn div:hover {
  background-color: #225392;
  background-position-x: 10px;
  transition: all 0.3s linear;
}
.facility .facility-box .btn .prev {
  left: -40px;
}
.facility .facility-box .btn .next {
  right: -40px;
  transform: translateY(-50%) scaleX(-1);
}
.facility .btm {
  margin-top: 75px;
  background-color: #225392;
}
.facility .btm ul {
  height: 240px;
  display: flex;
  align-items: center;
}
.facility .btm ul li {
  flex: 1;
  border-right: 1px solid #fff;
  text-align: center;
  padding: 0 5%;
}
.facility .btm ul li:first-child {
  padding-left: 0;
}
.facility .btm ul li:last-child {
  padding-right: 0;
  border-right: none;
}
.facility .btm ul li * {
  color: #fff;
}
.facility .btm ul li p {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  white-space: nowrap;
}
.facility .btm ul li span {
  font-size: 14px;
  font-weight: lighter;
  opacity: 0.88;
}
/* 新闻 */
.news-w {
  padding: 60px 0 50px;
}
.news-w .news-cen {
  margin-top: 45px;
}
.news-w .news-cen ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.news-w .news-cen ul li {
  width: 30%;
  margin-bottom: 2%;
}
.news-w .news-cen ul li .pic {
  overflow: hidden;
}
.news-w .news-cen ul li .pic img {
  transition: all 0.3s linear;
}
.news-w .news-cen ul li .row {
  display: flex;
  margin-top: 20px;
}
.news-w .news-cen ul li .row .date {
  width: 85px;
  padding-left: 10px;
  border-right: 2px solid #bbb;
  white-space: nowrap;
}
.news-w .news-cen ul li .row .date p {
  font-size: 16px;
  color: #333333;
  line-height: 1;
}
.news-w .news-cen ul li .row .date span {
  font-size: 55px;
  color: #333;
  line-height: 1;
  margin-top: 7px;
}
.news-w .news-cen ul li .row .text {
  flex: 1;
  padding-left: 10px;
  overflow: hidden;
}
.news-w .news-cen ul li .row .text p {
  font-size: 18px;
  color: #333;
  margin-top: 15px;
  font-weight: bold;
}
.news-w .news-cen ul li .row .text span {
  font-size: 14px;
  color: #666;
  line-height: 34px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-w .news-cen ul li:hover img {
  transform: scale(1.1);
  transition: all 0.3s linear;
}
.news-w .news-cen ul li:hover .row .text p {
  color: #225392;
}
.honor-w {
  padding-bottom: 86px;
}
.honor-w .page {
  padding: 2px 25px;
}
.honor-w .tit {
  display: flex;
  align-items: center;
}
.honor-w .tit p {
  font-size: 34px;
  font-weight: bold;
}
.honor-w .tit p i {
  font-size: 22px;
  font-weight: normal;
  text-transform: uppercase;
}
.honor-w .tit .line {
  flex: 1;
  height: 1px;
  background-color: #5f5f5f;
  margin: 8px 40px 0;
}
.honor-w .tit .more {
  width: 155px;
  line-height: 35px;
  text-align: center;
  border: 1px solid #5f5f5f;
  font-size: 14px;
  transition: all 0.2s;
}
.honor-w .tit .more:hover {
  background-color: #225392;
  color: #fff;
  transition: all 0.2s;
}
.honor-w .box {
  position: relative;
  margin-top: 45px;
}
.honor-w li .pic {
  overflow: hidden;
  border: 1px solid #ccc;
}
.honor-w li img {
  transition: all 0.3s linear;
}
.honor-w li p {
  width: 80%;
  margin: 0 auto;
  margin-top: 18px;
  font-size: 14px;
  line-height: 35px;
  background-color: #f1f1f1;
  text-align: center;
}
.honor-w li:hover img {
  transform: scale(1.15);
  transition: all 0.3s linear;
}
.honor-w li:hover p {
  background-color: #225392;
  color: #fff;
}
.honor-w .btn {
  position: absolute;
  width: 100%;
  top: 36%;
  left: 0;
  z-index: 9;
}
.honor-w .btn .swiper-prev,
.honor-w .btn .swiper-next {
  width: 39px;
  height: 39px;
  background: url(../images/hon-prev.png);
  position: absolute;
  cursor: pointer;
}
.honor-w .btn .swiper-prev {
  left: 0;
  transform: translateX(-50%);
}
.honor-w .btn .swiper-next {
  right: 0;
  transform: scaleX(-1) translateX(-50%);
}
/* footer */
.footer {
  background: url(../images/foot-bg.jpg) no-repeat top center;
}
.footer * {
  color: #fff;
}
.footer a:hover {
  color: #225392;
}
.footer .f-cen {
  padding: 80px 0 25px 0;
  display: flex;
  justify-content: space-between;
}
.footer .f-cen h5 {
  font-size: 28px;
  font-weight: bold;
  padding-bottom: 27px;
  margin-bottom: 40px;
  font-family: Arial;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
}
.footer .f-cen h5::after {
  content: '';
  width: 50px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.footer .f-cen .f-left .info {
  display: flex;
}
.footer .f-cen .f-left .info .weix {
  width: 213px;
  height: 253px;
  background: url(../images/f-logo.png) no-repeat center 25px;
  margin-right: 90px;
}
@media screen and (max-width: 1400px) {
  .footer .f-cen .f-left .info .weix {
    margin-right: 30px;
  }
}
.footer .f-cen .f-left .info .weix img {
  margin: 60px auto 10px;
  width: 149px;
}
.footer .f-cen .f-left .info .weix p {
  font-size: 14px;
  text-align: center;
}
.footer .f-cen .f-left .info .list h4 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 13px;
}
.footer .f-cen .f-left .info .list li {
  font-size: 18px;
  line-height: 28px;
  margin-top: 12px;
  padding-left: 30px;
  background: url(../images/foot-icon.png) no-repeat left;
}
.footer .f-cen .f-left .info .list li:nth-of-type(1) {
  background-position-y: -7px;
}
.footer .f-cen .f-left .info .list li:nth-of-type(2) {
  background-position-y: -69px;
}
.footer .f-cen .f-left .info .list li:nth-of-type(3) {
  background-position-y: -127px;
}
.footer .f-cen .f-left .f-nav {
  display: flex;
  margin-top: 65px;
}
.footer .f-cen .f-left .f-nav li {
  margin-right: 30px;
}
.footer .f-cen .f-left .f-nav li:last-child {
  margin: 0;
}
.footer .f-cen .f-left .f-nav li a {
  color: #898989;
}
.footer .f-cen .f-left .f-nav li a:hover {
  color: #fff;
}
.footer .f-cen .f-right {
  position: relative;
}
.footer .f-cen .f-right .hot-l {
  padding-left: 55px;
  background: url(../images/f-phone.png) no-repeat left center;
}
.footer .f-cen .f-right .hot-l p {
  font-size: 28px;
  font-weight: bold;
  white-space: nowrap;
  color: #fff;
}
.footer .f-cen .f-right .hot-l span {
  font-size: 15px;
  color: #fff;
}
.footer .f-cen .f-right .btn {
  width: 170px;
  line-height: 40px;
  padding-left: 70px;
  background: url(../images/f-kefu.png) no-repeat 35px center;
  background-color: #225392;
  margin-top: 30px;
  color: #fff;
}
.footer .f-cen .f-right .technical {
  display: flex;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 16px;
}
.footer .f-cen .f-right .technical a {
  color: #898989;
}
.footer .f-cen .f-right .technical a:hover {
  color: #fff;
}
.copy {
  background-color: #222222;
  width: 100%;
  height: 75px;
  line-height: 75px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copy * {
  font-size: 16px;
  color: #898989;
}
.copy a {
  display: inline;
}
.copy a:hover {
  color: #225392;
  text-decoration: underline;
}
/*# sourceMappingURL=./style.css.map */