/*样式初始化及公共样式部分*/
* {
  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: #036eb8;
}
.cl {
  clear: both;
  height: 0px;
}
body {
  margin: 0 auto;
  background-color: #fff;
  font-family: "Microsoft YaHei";
  min-width: 1360px;
  overflow-x: hidden;
}
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: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}
.header .logo {
  margin-right: 8%;
}
/* nav */
.nav {
  flex: 1;
}
.nav-list {
  display: flex;
  position: relative;
}
.nav-list > li {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}
.nav-list > li > a {
  width: 100%;
  line-height: 85px;
  border-radius: 20px;
  text-align: center;
  font-size: 16px;
  position: relative;
}
.nav-list > li > a::after {
  content: '';
  width: 0px;
  height: 10px;
  background: url(../images/nav-btm.png) no-repeat center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s linear;
}
.nav-list > li .erji2 {
  min-width: 180px;
  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 {
  background-color: rgba(0, 0, 0, 0.85);
  margin-bottom: 1px;
}
.nav-list > li .erji2 ul li a {
  line-height: 40px;
  font-size: 15px;
  color: #fff;
  padding: 0 20px;
}
.nav-list > li .erji2 ul li:hover {
  background-color: #036eb8;
}
.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: #036eb8;
}
.nav-list > li:hover > a::after {
  width: 95px;
  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: #036eb8;
}
.nav-list .active > a::after {
  width: 95px;
}
/* 幻灯片 */
.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 {
  background-color: #0f73b7;
}
.search .page {
  display: flex;
  height: 64px;
  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: 15px;
  color: #fff;
}
.search .page .keywo > p img {
  position: absolute;
  left: 0;
  top: 49%;
  transform: translateY(-50%);
}
.search .page .keywo a {
  font-size: 15px;
  margin-right: 10px;
  padding-right: 10px;
  color: #fff;
}
.search .page .keywo a:last-child {
  border: none;
}
.search .page .keywo a:hover {
  color: #be0202;
}
.search .page .sear-w {
  display: flex;
  overflow: hidden;
  position: relative;
}
.search .page .sear-w input {
  width: 300px;
  height: 40px;
  padding: 0 30px;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
}
.search .page .sear-w input:focus {
  outline: none;
}
.search .page .sear-w button {
  margin-left: 5px;
  width: 80px;
  height: 40px;
  border-radius: 20px;
  color: #fff;
  background: #be0202;
  border: none;
  cursor: pointer;
  transition: all 0.1s linear;
}
.search .page .sear-w button:hover {
  background: #be0202;
  transition: all 0.1s linear;
}
/*网站标题*/
.wz-bt {
  text-align: center;
}
.wz-bt p {
  font-size: 34px;
  position: relative;
  font-weight: bold;
}
.wz-bt span {
  font-size: 18px;
  line-height: 32px;
  color: #666666;
  margin: 3px 0;
}
.wz-bt em {
  display: block;
  height: 32px;
  background: url(../images/bt-pic.png) no-repeat center;
}
.char-w {
  background-color: #e8edf8;
}
.char-w .page {
  display: flex;
}
.char-w .text {
  width: 30%;
  white-space: nowrap;
}
.char-w .text p {
  font-size: 23px;
  line-height: 85px;
  opacity: 0.86;
  position: relative;
}
.char-w .text p::after {
  content: '';
  width: 60px;
  height: 2px;
  background-color: #538ca6;
  position: absolute;
  left: 0;
  bottom: 0;
}
.char-w .text span {
  margin-top: 10px;
  font-size: 15px;
  opacity: 0.6;
  line-height: 30px;
}
.char-w .list {
  flex: 1;
  display: flex;
}
.char-w .list li {
  flex: 1;
  cursor: pointer;
}
.char-w .list li .box {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.char-w .list li p {
  font-size: 24px;
  color: #036eb8;
}
.char-w .list li span {
  font-size: 14px;
  padding: 0 25px;
  color: #666;
  margin-top: 10px;
  font-weight: lighter;
}
.char-w .list li i {
  display: block;
  width: 60px;
  height: 60px;
  margin: 30px 0 10px;
  background: url(../images/char-icon.png);
  transition: all 0.2s linear;
  background-position-y: -135px;
}
.char-w .list li:nth-child(1) i {
  background-position-x: -20px;
}
.char-w .list li:nth-child(2) i {
  background-position-x: -120px;
}
.char-w .list li:nth-child(3) i {
  background-position-x: -220px;
}
.char-w .list li:nth-child(4) i {
  background-position-x: -320px;
}
.char-w .list li:nth-child(5) i {
  background-position-x: -420px;
}
.char-w .list li:nth-child(6) i {
  background-position-x: -520px;
}
.char-w .list .on .box {
  background-color: #fff;
}
.char-w .list .on i {
  background-position-y: -37px;
  transition: all 0.2s linear;
}
.intr {
  background: url(../images/intr-bg.jpg) no-repeat top center;
  padding: 66px 0 130px;
}
.intr .page {
  max-width: 1400px;
}
.intr .row {
  display: flex;
  margin-top: 30px;
  align-items: center;
}
.intr .row .text {
  flex: 1;
  margin-right: 50px;
}
.intr .row .text h1 {
  font-size: 42px;
  opacity: 0.86;
}
.intr .row .text p {
  font-size: 23px;
  color: #036eb8;
  letter-spacing: 1px;
  margin-top: 25px;
}
.intr .row .text span {
  font-size: 36px;
  color: #036eb8;
  font-weight: bold;
}
.intr .row .text .con {
  margin-top: 20px;
  font-size: 15px;
  line-height: 25px;
}
.intr .row .text .btn {
  margin-top: 35px;
  display: flex;
}
.intr .row .text .btn a {
  width: 140px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #036eb8;
  margin-right: 15px;
  font-size: 14px;
}
.intr .row .text .btn a:hover {
  background-color: #036eb8;
  color: #fff;
}
.world {
  padding: 70px 0;
  background-color: #4391c7;
}
.world .top {
  display: flex;
  justify-content: center;
}
.world .top .text {
  min-width: 930px;
  padding-left: 70px;
  background: url(../images/site-ico.png) no-repeat left center;
}
.world .top .text p {
  font-size: 28px;
  font-style: italic;
  font-weight: bold;
  text-transform: uppercase;
  font-family: Arial black;
  margin-bottom: 20px;
  padding-left: 180px;
  color: #fff;
  background: url(../images/w-logo.png) no-repeat 10px center;
}
.world .top .text span {
  font-size: 16px;
  font-weight: lighter;
  line-height: 1.875;
  color: #fff;
}
.world .map {
  width: 996px;
  height: 507px;
  margin: 80px auto 0;
  background: url(../images/map.png);
  position: relative;
}
.world .map .line {
  display: block;
  width: 542px;
  height: 286px;
  background: url(../images/w-line.png);
  position: absolute;
  left: 222px;
  top: 100px;
}
.world .map > div {
  position: absolute;
  z-index: 1;
  cursor: pointer;
}
.world .map > div::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s linear;
}
.world .map > div:hover::before {
  opacity: 1;
  transition: all 0.5s linear;
}
.world .map > div:hover .point .text::after {
  opacity: 1;
  transition: all 0.5s linear;
}
.world .map > div:hover .point .circle {
  transform: scale(0);
  transition: all 0.4s linear;
}
.world .map .point {
  width: 21px;
  height: 29px;
  position: absolute;
}
.world .map .point::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/site-ico2.png);
  z-index: 1;
}
.world .map .point .text {
  position: absolute;
  white-space: nowrap;
  border-radius: 2px;
  font-size: 14px;
  left: 30px;
  top: -30px;
  width: 160px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  z-index: 1;
  box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.35);
  color: #fff;
  text-transform: uppercase;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.world .map .point .text img {
  width: 66px;
  margin-top: -3px;
}
.world .map .point .text::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.65;
}
.world .map .point .circle {
  position: absolute;
  border-radius: 50%;
  transition: all 0.4s linear;
}
.world .map .beimei {
  width: 316px;
  height: 274px;
  left: 0px;
  top: 8px;
}
.world .map .beimei::before {
  background: url(../images/beimei.png);
}
.world .map .beimei .point {
  left: 240px;
  top: 166px;
}
.world .map .beimei .point .text::after {
  background-color: #33ccff;
}
.world .map .beimei .point .circle {
  background: rgba(51, 204, 255, 0.6);
}
.world .map .beimei .point .cc1 {
  width: 70px;
  height: 70px;
  left: -46px;
  top: 31px;
  margin-left: -35px;
  margin-top: -35px;
}
.world .map .beimei .point .cc2 {
  width: 100px;
  height: 100px;
  left: 11px;
  top: 26px;
  margin-left: -50px;
  margin-top: -50px;
}
.world .map .ouzhou {
  width: 150px;
  height: 209px;
  left: 451px;
  top: 6px;
}
.world .map .ouzhou::before {
  background-image: url(../images/ouzhou.png);
}
.world .map .ouzhou .point {
  left: 86px;
  top: 118px;
}
.world .map .ouzhou .point .text::after {
  background-color: #f04848;
}
.world .map .ouzhou .point .circle {
  background: rgba(240, 72, 72, 0.6);
}
.world .map .ouzhou .point .cc1 {
  width: 70px;
  height: 70px;
  left: 29px;
  top: 58px;
  margin-left: -35px;
  margin-top: -35px;
}
.world .map .ouzhou .point .cc2 {
  width: 100px;
  height: 100px;
  left: -34px;
  top: 44px;
  margin-left: -50px;
  margin-top: -50px;
}
.world .map .yazhou {
  width: 395px;
  height: 352px;
  left: 572px;
  top: 128px;
}
.world .map .yazhou::before {
  background-image: url(../images/yazhou.png);
}
.world .map .yazhou .point {
  left: 180px;
  top: 42px;
}
.world .map .yazhou .point .text::after {
  background-color: #7ce315;
}
.world .map .yazhou .point .circle {
  background: rgba(124, 227, 21, 0.6);
}
.world .map .yazhou .point .cc1 {
  width: 40px;
  height: 40px;
  left: -44px;
  top: 52px;
  margin-left: -20px;
  margin-top: -20px;
}
.world .map .yazhou .point .cc2 {
  width: 100px;
  height: 100px;
  left: 23px;
  top: -37px;
  margin-left: -50px;
  margin-top: -50px;
}
.world .map .yazhou .point .cc3 {
  width: 120px;
  height: 120px;
  left: 9px;
  top: 26px;
  margin-left: -60px;
  margin-top: -60px;
}
.world .map .feizhou {
  width: 186px;
  height: 207px;
  left: 432px;
  top: 190px;
}
.world .map .feizhou::before {
  background-image: url(../images/feizhou.png);
}
.world .map .feizhou .point {
  left: 115px;
  top: 108px;
}
.world .map .feizhou .point .text::after {
  background-color: #ff9933;
}
.world .map .feizhou .point .circle {
  background: rgba(255, 153, 51, 0.6);
}
.world .map .feizhou .point .cc1 {
  width: 70px;
  height: 70px;
  left: 13px;
  top: 73px;
  margin-left: -35px;
  margin-top: -35px;
}
.world .map .feizhou .point .cc2 {
  width: 100px;
  height: 100px;
  left: -9px;
  top: 12px;
  margin-left: -50px;
  margin-top: -50px;
}
.world .map .nanmei {
  width: 157px;
  height: 227px;
  left: 201px;
  top: 260px;
}
.world .map .nanmei::before {
  background-image: url(../images/nanmei.png);
}
.world .map .nanmei .point {
  left: 70px;
  top: 82px;
}
.world .map .nanmei .point .text::after {
  background-color: #ffcc00;
}
.world .map .nanmei .point .circle {
  background: rgba(255, 204, 0, 0.6);
}
.world .map .nanmei .point .cc1 {
  width: 70px;
  height: 70px;
  left: -4px;
  top: 80px;
  margin-left: -35px;
  margin-top: -35px;
}
.world .map .nanmei .point .cc2 {
  width: 100px;
  height: 100px;
  left: 28px;
  top: 20px;
  margin-left: -50px;
  margin-top: -50px;
}
.pro-w {
  padding: 50px 0 70px;
  background: url(../images/pro-bg.jpg) no-repeat top center;
}
.pro-w .tit {
  text-align: center;
}
.pro-w .tit em {
  font-size: 41px;
  color: #0f73b7;
  opacity: 0.51;
  text-transform: uppercase;
  font-weight: bold;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  line-height: 1;
}
.pro-w .tit p {
  font-size: 40px;
  margin-top: -35px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.pro-w .tit span {
  font-size: 18px;
  color: #666666;
  margin-top: 8px;
}
.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: #be0202;
}
.pro-w .pro-tabs ul .swiper-slide-thumb-active a {
  color: #fff;
}
.pro-w .con-box {
  max-width: 1300px;
  margin: 0 auto;
}
.pro-w .con-box ul {
  display: flex;
}
.pro-w .con-box ul li {
  width: 21.25%;
  margin-right: 5%;
  padding: 30px;
  border-radius: 15px;
  background-color: #fff;
}
.pro-w .con-box ul li:last-child {
  margin-right: 0;
}
.pro-w .con-box ul li p {
  font-size: 15px;
  line-height: 55px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}
.pro-w .con-box ul li p::after {
  content: '';
  width: 92px;
  height: 1px;
  background-color: #be0202;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  transition: all 0.3s linear;
}
.pro-w .con-box ul li span {
  width: 92px;
  line-height: 30px;
  background-color: #f0f0f0;
  margin: 0 auto;
  font-size: 12px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.2s linear;
}
.pro-w .con-box ul li:hover p::after {
  width: 90%;
  transition: all 0.3s linear;
}
.pro-w .con-box ul li:hover span {
  background-color: #036eb8;
  color: #fff;
  transition: all 0.2s linear;
}
.pro-w .more {
  margin: 65px auto 0;
  width: 180px;
  line-height: 50px;
  text-align: center;
  background-color: #036eb8;
  border-radius: 25px;
  color: #fff;
  transition: all 0.2s linear;
}
.pro-w .more:hover {
  background-color: #be0202;
  transition: all 0.2s linear;
}
.susta .page {
  padding: 95px 0 100px;
  display: flex;
}
.susta .page .row {
  flex: 1;
  padding-left: 50px;
}
.susta .page .row h3 {
  font-size: 45px;
  opacity: 0.77;
}
.susta .page .row em {
  font-size: 20px;
  letter-spacing: 5px;
  opacity: 0.67;
  font-weight: lighter;
}
.susta .page .row p {
  font-size: 25px;
  margin: 30px 0 35px;
  color: #036eb8;
}
.susta .page .row span {
  font-size: 18px;
  line-height: 2.25;
  color: #666;
}
.susta .page .row .more {
  width: 190px;
  line-height: 45px;
  text-align: center;
  border-radius: 25px;
  border: 1px solid #666;
  color: #666;
  margin-top: 55px;
  transition: all 0.2s;
}
.susta .page .row .more:hover {
  background-color: #036eb8;
  color: #fff;
  transition: all 0.2s;
}
.susta .page .pic {
  margin-left: 80px;
  position: relative;
}
.susta .page .pic::after {
  content: '';
  width: 80%;
  height: 1px;
  background-color: #2a2a2a;
  position: absolute;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
}
.honor {
  padding: 40px 0;
}
.honor .page {
  max-width: 1440px;
}
.honor .title {
  width: 255px;
  line-height: 70px;
  font-size: 28px;
  background-color: #036eb8;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  position: relative;
}
.honor .title::before,
.honor .title::after {
  content: '';
  width: 475px;
  height: 1px;
  background-color: #036eb8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.honor .title::before {
  right: 285px;
}
.honor .title::after {
  left: 285px;
}
.honor .hon-top {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.honor .hon-top .rt {
  width: 64%;
  padding: 2px 20px;
  position: relative;
}
.honor .hon-top .rt li {
  border: 1px solid #ccc;
}
.honor .hon-top .rt li p {
  font-size: 14px;
  line-height: 35px;
  background-color: #f1f1f1;
  text-align: center;
}
.honor .hon-top .rt li:hover p {
  background-color: #036eb8;
  color: #fff;
}
.honor .hon-top .rt .btn {
  position: absolute;
  width: 100%;
  top: 45%;
  left: 0;
  z-index: 9;
}
.honor .hon-top .rt .btn .swiper-prev,
.honor .hon-top .rt .btn .swiper-next {
  width: 41px;
  height: 41px;
  background: url(../images/hon-prev.png);
  position: absolute;
  cursor: pointer;
}
.honor .hon-top .rt .btn .swiper-prev {
  left: 0;
}
.honor .hon-top .rt .btn .swiper-next {
  right: 0;
  transform: scaleX(-1);
}
.honor .hon-top .text {
  width: 33.33%;
  padding-bottom: 53px;
  background: url(../images/honor-tb.jpg) no-repeat 10px bottom;
}
.honor .hon-top .text p {
  text-align: right;
}
.honor .btm {
  width: 1233px;
  margin: 0 auto;
  margin-top: 112px;
  display: flex;
}
.honor .btm .lt {
  flex: 1;
}
.honor .btm .lt .tit {
  margin-top: 55px;
  margin-left: 295px;
  font-size: 18px;
  color: #036eb8;
  padding-bottom: 10px;
  font-weight: bold;
  position: relative;
}
.honor .btm .lt .tit::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #036eb8;
  position: absolute;
  left: 57px;
  bottom: 0;
  z-index: -1;
}
.honor .btm .lt .text {
  width: 466px;
  margin-top: 30px;
}
.honor .btm .lt .more {
  font-size: 18px;
  color: #036eb8;
  margin-top: 50px;
  width: 100px;
  background: url(../images/hon-arrow.png) no-repeat right center;
}
.honor .btm .lt .more:hover {
  font-weight: bold;
}
.honor .btm .pic {
  width: 55.3%;
  border: 10px solid #fff;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.15);
}
.honor .text p {
  font-size: 26px;
  font-weight: bold;
}
.honor .text span {
  font-size: 15px;
  line-height: 30px;
  margin-top: 45px;
}
.news-w {
  padding: 68px 0;
  background: url(../images/news-bg.jpg) no-repeat 0px center;
}
.news-w .page {
  max-width: 1400px;
}
.news-w .wz-bt p {
  font-weight: normal;
}
.news-w .wz-bt p i {
  font-weight: bold;
  color: #008cd6;
}
.news-w .wz-bt span {
  line-height: 3;
}
.news-w .news-con {
  margin-top: 45px !important;
}
.news-w .news-con .n-top {
  display: flex;
}
.news-w .news-con .n-top .pic {
  width: 761px;
  height: 286px;
  margin-right: 10px;
}
.news-w .news-con .n-top .pic img {
  width: 100%;
  object-fit: cover;
}
.news-w .news-con .n-top ul {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-w .news-con .n-top ul li {
  flex: 1;
  background-color: #f3f3f3;
  margin-bottom: 2px;
  transition: all 0.2s linear;
}
.news-w .news-con .n-top ul li:last-child {
  margin-bottom: 0;
}
.news-w .news-con .n-top ul li a {
  display: flex;
  height: 100%;
  align-items: center;
  padding-left: 40px;
  font-size: 16px;
  position: relative;
}
.news-w .news-con .n-top ul li a::before {
  content: '';
  width: 0;
  height: 0;
  border: 4px solid;
  border-color: transparent transparent transparent #111;
  position: absolute;
  left: 23px;
  top: 50%;
  transform: translateY(-50%);
}
.news-w .news-con .n-top ul li:hover {
  background-color: #1e64bc;
  transition: all 0.2s linear;
}
.news-w .news-con .n-top ul li:hover a p {
  color: #fff;
}
.news-w .news-con .n-top ul li:hover a::before {
  border-color: transparent transparent transparent #fff;
}
.news-w .news-con .n-btm {
  margin-top: 35px;
  padding: 0 20px;
  display: flex;
}
.news-w .news-con .n-btm li {
  width: 393px;
  height: 185px;
  margin-right: 72.5px;
  background-color: #f3f3f3;
  transition: all 0.2s linear;
}
.news-w .news-con .n-btm li:last-child {
  margin-right: 0;
}
.news-w .news-con .n-btm li a {
  height: 100%;
  display: flex;
  padding: 30px 24px 0;
}
.news-w .news-con .n-btm li .date {
  width: 75px;
  margin-right: 25px;
  position: relative;
  font-family: "Microsoft YaHei";
}
.news-w .news-con .n-btm li .date i {
  display: block;
  text-align: right;
  font-size: 14px;
  font-weight: bold;
}
.news-w .news-con .n-btm li .date em {
  font-size: 24px;
  font-weight: bold;
}
.news-w .news-con .n-btm li .date::after {
  content: '';
  width: 47px;
  height: 47px;
  background: url(../images/dot-lan.png);
  position: absolute;
  left: 3px;
  top: 70px;
  opacity: 0.6;
}
.news-w .news-con .n-btm li .row {
  flex: 1;
  position: relative;
}
.news-w .news-con .n-btm li .row p {
  font-size: 16px;
  font-weight: bold;
}
.news-w .news-con .n-btm li .row span {
  font-size: 14px;
  line-height: 19px;
  margin-top: 15px;
}
.news-w .news-con .n-btm li .row::before {
  content: '';
  width: 25px;
  height: 1px;
  background-color: #111;
  position: absolute;
  left: 0;
  top: 120px;
  transition: all 0.2s linear;
}
.news-w .news-con .n-btm li .row::after {
  content: '';
  width: 4px;
  height: 4px;
  border: solid #111;
  border-width: 1px 1px 0 0;
  position: absolute;
  left: 20px;
  top: 118px;
  transform: rotate(45deg);
  transition: all 0.2s linear;
}
.news-w .news-con .n-btm li:hover {
  background-color: #1e64bc;
  transition: all 0.2s linear;
}
.news-w .news-con .n-btm li:hover * {
  color: #fff;
}
.news-w .news-con .n-btm li:hover .date::after {
  background: url(../images/dot-bai.png);
}
.news-w .news-con .n-btm li:hover .row::before {
  background-color: #fff;
  width: 40px;
  transition: all 0.2s linear;
}
.news-w .news-con .n-btm li:hover .row::after {
  border-color: #fff;
  left: 35px;
  transition: all 0.2s linear;
}
.links {
  width: 100%;
  background-color: #1e64bc;
}
.links * {
  color: #fff;
}
.links a:hover {
  text-decoration: underline;
  color: #fff;
}
.links .page {
  max-width: 1400px;
}
.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 */
.footer {
  background-color: #222222;
}
.footer .page {
  max-width: 1400px;
}
.footer * {
  color: #909090;
  font-size: 14px;
}
.footer a:hover {
  color: #fff;
}
.footer .f-con {
  padding: 50px 0 20px;
  display: flex;
  justify-content: space-between;
}
.footer .f-con .f-nav {
  width: 50%;
  display: flex;
}
.footer .f-con .f-nav ul {
  flex: 1;
  cursor: pointer;
}
.footer .f-con .f-nav ul h5 {
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  padding-bottom: 18px;
  margin-bottom: 22px;
  position: relative;
}
.footer .f-con .f-nav ul h5::after {
  content: '';
  width: 18px;
  height: 2px;
  background-color: #1e64bc;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s linear;
}
.footer .f-con .f-nav ul li {
  line-height: 32px;
}
.footer .f-con .f-nav ul:hover h5::after {
  width: 60px;
  transition: all 0.3s linear;
}
.footer .f-con .f-info {
  width: 50%;
  padding-left: 1.815%;
}
.footer .f-con .f-info .top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: url(../images/foot-btb.png) no-repeat right center;
}
.footer .f-con .f-info .top span {
  font-size: 40px;
  color: #008cd6;
  font-weight: bold;
}
.footer .f-con .f-info .btm {
  display: flex;
  align-items: flex-start;
  padding-top: 30px;
  padding-left: 1%;
}
.footer .f-con .f-info .btm li {
  line-height: 20px;
  margin-bottom: 16px;
  display: flex;
  white-space: nowrap;
}
.footer .f-con .f-info .btm li i {
  margin-right: 10px;
  color: #1e64bc;
  font-size: 20px;
}
.footer .f-con .f-info .btm li .qq {
  margin-right: 30px;
}
.footer .f-con .f-info .btm li .dz {
  white-space: normal;
}
.footer .f-con .f-info .btm .weix-pic {
  margin: 0 0 0 auto;
  display: flex;
  align-items: center;
}
.footer .f-con .f-info .btm .weix-pic p {
  width: 1rem;
  margin-right: 5px;
}
.footer .f-con .f-info .btm .weix-pic p em {
  display: block;
  transform: rotate(90deg);
}
.footer .f-con .f-info .btm .weix-pic img {
  width: 100px;
}
.copy {
  width: 100%;
  line-height: 55px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copy a {
  display: inline;
}
.copy a:hover {
  text-decoration: underline;
}
.copy .page {
  display: flex;
  justify-content: space-between;
}
