* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  /* 继承父元素的颜色 */
  text-decoration: none;
  /* 去掉下划线 */
}
a:visited {
  color: inherit;
}
a:hover {
  color: inherit;
}
.header-box {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.header-box .logo {
  width: 176px;
  height: 37px;
}
.header-box .header-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 762px;
}
.header-box .header-menu .menu {
  color: #fff;
  font-size: 16px;
}
.index-box .banner-box {
  height: 960px;
  width: 100%;
  background-color: #B5B5B5;
  overflow: hidden;
}
.index-box .banner-box .swiper-container {
  width: 100%;
  height: 960px;
}
.index-box .banner-box .swiper-wrapper {
  display: flex;
  width: 100%;
  height: 960px;
}
.index-box .banner-box .swiper-slide {
  width: 100%;
  height: 960px;
  flex-shrink: 0;
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.index-box .banner-box .swiper-slide img {
  width: 100%;
  height: 960px;
}
.index-box .A-box {
  height: 1024px;
  padding-top: 174px;
}
.index-box .A-box .box-title {
  width: 1480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index-box .A-box .box-title .title-left {
  font-size: 48px;
  color: #091120;
  font-weight: bold;
}
.index-box .A-box .box-title .title-right {
  position: relative;
  height: 80px;
}
.index-box .A-box .box-title .title-right img {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
}
.index-box .A-box .box-title .title-right span {
  font-size: 18px;
  font-weight: bold;
  line-height: 80px;
  padding-left: 69px;
  position: relative;
  z-index: 1;
}
.index-box .A-box .box-msg {
  font-size: 14px;
  color: #AFAFAF;
  width: 1480px;
  margin: 0 auto;
  margin-top: 24px;
}
.index-box .A-box .box-center {
  display: flex;
  width: 1480px;
  margin: 74px auto;
  overflow: hidden;
}
.index-box .A-box .box-center .center-menu {
  background-color: #F6F6F6;
  height: 408px;
  flex: 1 1 0;
  min-width: 210px;
  max-width: 640px;
  display: flex;
  transition: flex 0.3s ease, min-width 0.3s ease;
  overflow: hidden;
}
.index-box .A-box .box-center .center-menu .menu-left {
  width: 280px;
  flex-shrink: 0;
  height: 100%;
  padding: 70px 32px;
  position: relative;
  transition: all 0.3s ease;
}
.index-box .A-box .box-center .center-menu .menu-left .left-img {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}
.index-box .A-box .box-center .center-menu .menu-left .left-title {
  color: #091120;
  font-size: 24px;
  font-weight: bold;
}
.index-box .A-box .box-center .center-menu .menu-left .left-msg {
  color: #AFAFAF;
  font-size: 12px;
}
.index-box .A-box .box-center .center-menu .menu-left .left-text {
  display: none;
}
.index-box .A-box .box-center .center-menu .menu-left .left-more {
  width: 54px;
  height: 54px;
  position: absolute;
  bottom: 50px;
  left: 50px;
}
.index-box .A-box .box-center .center-menu .menu-left .left-active {
  display: none;
}
.index-box .A-box .box-center .center-menu .menu-right {
  width: 0;
  height: 408px;
  flex-shrink: 0;
  transition: width 0.3s ease;
}
.index-box .A-box .box-center .center-menu:hover {
  background-color: #1A43D1;
  flex: 0 0 640px !important;
  min-width: 640px;
}
.index-box .A-box .box-center .center-menu:hover .menu-left {
  color: #fff;
  position: relative;
  padding: 49px 32px;
}
.index-box .A-box .box-center .center-menu:hover .menu-left .left-title {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}
.index-box .A-box .box-center .center-menu:hover .menu-left .left-img {
  display: none;
}
.index-box .A-box .box-center .center-menu:hover .menu-left .left-msg {
  display: none;
}
.index-box .A-box .box-center .center-menu:hover .menu-left .left-text {
  color: #fff;
  display: block;
  font-size: 14px;
  margin-top: 38px;
}
.index-box .A-box .box-center .center-menu:hover .menu-left .left-more {
  display: none;
}
.index-box .A-box .box-center .center-menu:hover .menu-left .left-active {
  display: block;
  width: 54px;
  height: 54px;
  position: absolute;
  bottom: 50px;
  left: 50px;
}
.index-box .A-box .box-center .center-menu:hover .menu-right {
  width: 360px;
  height: 408px;
}
.index-box .B-box {
  height: 989px;
  width: 100%;
  position: relative;
  padding-top: 224px;
  overflow: hidden;
}
.index-box .B-box .B-bg {
  height: 989px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.index-box .B-box .B-center {
  position: relative;
  z-index: 1;
  width: 1480px;
  margin: 0 auto;
  color: #fff;
}
.index-box .B-box .B-center .center-title {
  font-size: 96px;
  color: #fff;
}
.index-box .B-box .B-center .center-msg {
  font-size: 31px;
}
.index-box .B-box .B-center .center-text {
  width: 514px;
  font-size: 15px;
  color: #fff;
  margin-top: 57px;
}
.index-box .B-box .B-center .center-img {
  width: 54px;
  height: 54px;
  background: #17C371;
  border-radius: 50px 50px 50px 50px;
  margin-top: 112px;
}
.index-box .B-box .B-center .btn-box {
  position: absolute;
  top: 600px;
  left: 823px;
}
.index-box .B-box .B-center .btn-box .btn {
  width: 68px;
  height: 68px;
  margin-right: 22px;
}
.index-box .B-box .B-center .right-banner {
  position: absolute;
  top: 80px;
  left: 823px;
}
.index-box .B-box .B-center .right-banner .banner-item .item-title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 3px;
}
.index-box .B-box .B-center .right-banner .banner-item .item-msg {
  font-size: 14px;
  color: #596383;
}
.index-box .B-box .B-center .right-banner .banner-item .img-box {
  position: relative;
  width: 306px;
  height: 408px;
  border-radius: 10px;
  margin-top: 18px;
  overflow: hidden;
}
.index-box .B-box .B-center .right-banner .banner-item .img-box .card {
  position: absolute;
  width: 48px;
  height: 48px;
  top: 24px;
  right: 24px;
  z-index: 2;
}
.index-box .B-box .B-center .right-banner .banner-item .img-box .active {
  display: none;
}
.index-box .B-box .B-center .right-banner .banner-item .img-box:hover .active {
  width: 100%;
  height: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  position: absolute;
  background-color: rgba(26, 67, 209, 0.9);
  top: 0;
  left: 0;
  z-index: 1;
}
.index-box .B-box .B-center .right-banner .banner-item .img-box:hover .active .tip {
  width: 90px;
  height: 90px;
  margin-bottom: 28px;
}
.index-box .B-box .B-center .right-banner .banner-item .img-box:hover .active .tip-title {
  font-size: 28px;
  color: #fff;
  margin-bottom: 8px;
}
.index-box .B-box .B-center .right-banner .banner-item .img-box:hover .active .tip-msg {
  font-size: 16px;
  color: #fff;
}
.index-box .B-box .B-center .right-banner .banner-item .imgs {
  width: 306px;
  height: 408px;
  border-radius: 10px;
}
.index-box .B-box .B-center .swiper-container2 {
  width: 970px;
  height: 960px;
  overflow: hidden;
}
.index-box .B-box .B-center .swiper-container2 .swiper-wrapper {
  display: flex;
}
.index-box .C-box {
  padding: 137px 0;
}
.index-box .C-box .C-center {
  width: 1480px;
  margin: 0 auto;
  position: relative;
}
.index-box .C-box .C-center .center-title {
  font-size: 46px;
  font-weight: bold;
}
.index-box .C-box .C-center .center-msg {
  color: #AFAFAF;
  font-size: 14px;
  margin-top: 24px;
  margin-bottom: 128px;
}
.index-box .C-box .C-center .num-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 297px;
}
.index-box .C-box .C-center .num-box .box-menu .num {
  color: #091120;
  font-size: 16px;
}
.index-box .C-box .C-center .num-box .box-menu .num span {
  color: #1A43D1;
  font-size: 46px;
  font-weight: bold;
}
.index-box .C-box .C-center .num-box .box-menu .menu-text {
  color: #666;
  font-size: 14px;
}
.index-box .C-box .C-center .xian {
  width: 297px;
  border: 1px solid #F5F5F5;
  margin: 35px 0;
}
.index-box .C-box .C-center .center-right {
  width: 820px;
  height: 468px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.index-box .D-box {
  padding: 137px 0;
  background-color: #F5F6FA;
}
.index-box .D-box .D-center {
  width: 1480px;
  margin: 0 auto;
  position: relative;
}
.index-box .D-box .D-center .center-title {
  font-size: 46px;
  font-weight: bold;
}
.index-box .D-box .D-center .center-msg {
  color: #AFAFAF;
  font-size: 14px;
  margin-top: 24px;
  margin-bottom: 128px;
}
.index-box .D-box .D-center .new-box {
  display: flex;
  align-items: center;
}
.index-box .D-box .D-center .new-box .new-left {
  width: 654px;
  height: 510px;
  background: #1A43D1;
  padding: 80px;
  border-radius: 0px 0px 0px 0px;
}
.index-box .D-box .D-center .new-box .new-left .left-time {
  font-size: 15px;
  color: #fff;
  margin-bottom: 15px;
}
.index-box .D-box .D-center .new-box .new-left .left-title {
  font-size: 28px;
  color: #fff;
  margin-bottom: 39px;
}
.index-box .D-box .D-center .new-box .new-left .left-msg {
  width: 500px;
  font-size: 15px;
  color: #fff;
}
.index-box .D-box .D-center .new-box .new-left .xian {
  width: 430px;
  height: 0px;
  border: 2px solid #FFFFFF;
  margin-top: 60px;
}
.index-box .D-box .D-center .new-box .new-left .href {
  font-size: 16px;
  margin-top: 40px;
  color: #fff;
}
.index-box .D-box .D-center .new-box .new-right {
  width: 826px;
  height: 510px;
}
.about-box .banner-box .banner {
  height: 845px;
  width: 100%;
}
.about-box .A-box {
  height: 931px;
  padding-top: 164px;
  position: relative;
}
.about-box .A-box .A-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 893px;
  height: 767px;
}
.about-box .A-box .box-center {
  width: 1480px;
  margin: 0 auto;
  position: relative;
}
.about-box .A-box .box-center .bg {
  width: 881px;
  height: 480px;
  position: absolute;
  top: 0;
  left: 0;
}
.about-box .A-box .box-center .center-title {
  font-size: 52px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.about-box .A-box .box-center .center-msg {
  position: relative;
  z-index: 1;
  color: #666666;
  font-size: 16px;
  width: 685px;
  margin-top: 34px;
}
.about-box .B-box {
  width: 100%;
  height: 200px;
  background: #F7F8FA;
  border-radius: 0px 0px 0px 0px;
}
.about-box .B-box .center-box {
  width: 1480px;
  margin: 0 auto;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-box .B-box .center-box .num {
  font-size: 16px;
  color: #666666;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.about-box .B-box .center-box .num span {
  color: #1A43D1;
  font-weight: bold;
  font-size: 60px;
}
.about-box .C-box {
  min-height: 986px;
  padding-top: 108px;
  position: relative;
}
.about-box .C-box .bg {
  width: 100%;
  height: 654px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.about-box .C-box .box-center {
  width: 1480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about-box .C-box .box-center .center-tip {
  display: flex;
  align-items: center;
  color: #AFAFAF;
  font-size: 19px;
}
.about-box .C-box .box-center .center-tip .xian {
  width: 37px;
  height: 2px;
  background-color: #1A43D1;
  margin-right: 8px;
}
.about-box .C-box .box-center .center-money {
  font-weight: bold;
  font-size: 40px;
  margin-top: 10px;
  margin-bottom: 85px;
}
.about-box .C-box .box-center .center-year {
  display: flex;
  align-items: center;
  padding-left: 170px;
}
.about-box .C-box .box-center .center-year .year-left {
  font-size: 140px;
  margin-right: 140px;
}
.about-box .C-box .box-center .center-year .year-right .right {
  font-size: 24px;
  margin-bottom: 15px;
}
.about-box .C-box .box-center .center-year .year-right .xian {
  width: 35px;
  height: 0px;
  border: 1px solid #1A43D1;
  margin-bottom: 30px;
  color: #666666;
}
.about-box .C-box .box-center .center-year .year-right .msg {
  color: #666666;
  font-size: 16px;
  width: 600px;
}
.about-box .C-box .box-center .year-menu {
  width: 1480px;
  height: 19px;
  background: #FFFFFF;
  border-radius: 20px 20px 20px 20px;
  margin-top: 150px;
  display: flex;
  justify-content: space-around;
}
.about-box .C-box .box-center .year-menu .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-box .C-box .box-center .year-menu .menu .menu-yuan {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  border-radius: 0px 0px 0px 0px;
  border: 2px solid #1A43D1;
  border-radius: 50%;
  margin-bottom: 37px;
}
.about-box .C-box .box-center .year-menu .menu .active {
  width: 35px;
  height: 35px;
  background: #1A43D1;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  margin-top: -8px;
  border: 2px solid #FFFFFF;
  margin-bottom: 29px;
}
.about-box .C-box .box-center .year-menu .menu .menu-num {
  font-size: 24px;
  color: #4B4E58;
}
.about-box .C-box .box-center .select-box {
  display: flex;
  justify-content: center;
  margin-top: 170px;
}
.about-box .C-box .box-center .select-box .left {
  width: 60px;
  height: 60px;
  margin-right: 40px;
}
.about-box .C-box .box-center .select-box .right {
  width: 60px;
  height: 60px;
}
.about-box .D-box {
  min-height: 1086px;
  padding-top: 108px;
}
.about-box .D-box .box-center {
  width: 1480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about-box .D-box .box-center .center-tip {
  display: flex;
  align-items: center;
  color: #AFAFAF;
  font-size: 19px;
}
.about-box .D-box .box-center .center-tip .xian {
  width: 37px;
  height: 2px;
  background-color: #1A43D1;
  margin-right: 8px;
}
.about-box .D-box .box-center .center-money {
  font-weight: bold;
  font-size: 40px;
  margin-top: 10px;
  margin-bottom: 85px;
}
.about-box .D-box .box-center .center-list {
  display: flex;
  align-items: center;
  width: 1480px;
  height: 626px;
}
.about-box .D-box .box-center .center-list .list {
  flex: 1 1 35%;
  height: 626px;
  background-color: #F4F4F4;
  padding: 26px;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
}
.about-box .D-box .box-center .center-list .list .list-img {
  width: 44px;
  height: 44px;
  position: absolute;
  bottom: 26px;
  right: 50%;
  margin-right: -22px;
}
.about-box .D-box .box-center .center-list .list .list-img2 {
  display: none;
}
.about-box .D-box .box-center .center-list .list .list-name {
  font-size: 22px;
}
.about-box .D-box .box-center .center-list .list .list-msg {
  display: none;
}
.about-box .D-box .box-center .center-list .list .bg {
  display: none;
}
.about-box .D-box .box-center .center-list .active {
  flex: 0 0 1061px;
  padding: 90px;
  transition: all 0.4s ease;
}
.about-box .D-box .box-center .center-list .active .bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}
.about-box .D-box .box-center .center-list .active .list-name {
  position: relative;
  z-index: 1;
  font-size: 24px;
  color: #FFF;
  margin-bottom: 28px;
}
.about-box .D-box .box-center .center-list .active .list-img {
  display: none;
}
.about-box .D-box .box-center .center-list .active .list-img2 {
  width: 44px;
  height: 44px;
  position: absolute;
  bottom: 26px;
  right: 30px;
  display: block;
  margin-right: 0;
}
.about-box .D-box .box-center .center-list .active .list-msg {
  display: block;
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 20px;
}
.about-box .E-box {
  min-height: 486px;
  padding-top: 60px;
  background-color: #F7F8FA;
}
.about-box .E-box .box-center {
  width: 1480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about-box .E-box .box-center .center-tip {
  display: flex;
  align-items: center;
  color: #AFAFAF;
  font-size: 19px;
}
.about-box .E-box .box-center .center-tip .xian {
  width: 37px;
  height: 2px;
  background-color: #1A43D1;
  margin-right: 8px;
}
.about-box .E-box .box-center .center-money {
  font-weight: bold;
  font-size: 40px;
  margin-top: 10px;
  margin-bottom: 85px;
}
.about-box .E-box .box-center .center-list {
  position: absolute;
  top: 0;
  right: 0;
  width: 914px;
}
.about-box .E-box .box-center .center-list .list {
  width: 256px;
  height: 346px;
}
.about-box .E-box .box-center .center-list .swiper-container {
  width: 914px;
  height: 346px;
  overflow: hidden;
}
.about-box .E-box .box-center .center-list .swiper-container .swiper-wrapper {
  width: 914px;
  height: 346px;
  display: flex;
}
.about-box .E-box .box-center .center-list .swiper-container .swiper-wrapper .swiper-slide {
  width: 914px;
  height: 346px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-box .E-box .box-center .next-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 140px;
  margin-top: 98px;
}
.about-box .E-box .box-center .next-box .next {
  width: 60px;
  height: 60px;
}
.about-box .core-menu {
  height: 72px;
}
.about-box .core-menu .menu-center {
  width: 1480px;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.about-box .core-menu .menu-center .menu {
  width: 150px;
  height: 72px;
  border-radius: 0px 0px 0px 0px;
  text-align: center;
  line-height: 72px;
}
.about-box .core-menu .menu-center .active {
  background: #1A43D1;
  color: #fff;
}
.about-box .A-core {
  height: 790px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-box .A-core .box-center {
  width: 1480px;
  height: 550px;
  margin: 0 auto;
  position: relative;
  background-color: #F7F8FA;
  z-index: 1;
  display: flex;
  align-items: center;
}
.about-box .A-core .box-center .center-left {
  padding: 80px;
}
.about-box .A-core .box-center .center-left .left-title {
  display: flex;
  align-items: center;
  font-size: 36px;
  margin-bottom: 30px;
}
.about-box .A-core .box-center .center-left .left-title .left1 {
  width: 62px;
  height: 62px;
  margin-right: 40px;
}
.about-box .A-core .box-center .center-left .left-msg {
  font-size: 16px;
  color: #666666;
}
.about-box .A-core .box-center .center-right {
  width: 856px;
  height: 550px;
  background: #AEAEAE;
  border-radius: 0px 0px 0px 0px;
}
.about-box .D-core {
  background-color: #F7F8FA;
  min-height: 683px;
}
.about-box .center-list2 {
  display: flex;
  justify-content: space-between;
}
.about-box .center-list2 .list {
  width: 286px;
  height: 280px;
  background: #FFFFFF;
  border-radius: 20px 20px 20px 20px;
  padding: 24px;
  position: relative;
}
.about-box .center-list2 .list .bg {
  width: 78px;
  height: 78px;
  margin-bottom: 20px;
}
.about-box .center-list2 .list .list-name {
  color: #2C345D;
  font-size: 18px;
  margin-bottom: 8px;
}
.about-box .center-list2 .list .list-msg {
  color: #AFAFAF;
  font-size: 14px;
}
.about-box .center-list2 .list .xian {
  width: 17px;
  height: 0px;
  border: 2px solid #C1C3CF;
  position: absolute;
  bottom: 29px;
  left: 24px;
}
.about-box .F-box {
  min-height: 486px;
  padding: 100px;
  background-color: #fff;
}
.about-box .F-box .box-center {
  width: 1480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about-box .F-box .box-center .center-tip {
  display: flex;
  align-items: center;
  color: #AFAFAF;
  font-size: 19px;
}
.about-box .F-box .box-center .center-tip .xian {
  width: 37px;
  height: 2px;
  background-color: #1A43D1;
  margin-right: 8px;
}
.about-box .F-box .box-center .center-money {
  font-weight: bold;
  font-size: 40px;
  margin-top: 10px;
  margin-bottom: 85px;
}
.about-box .F-box .box-center .center-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-box .F-box .box-center .center-list .list {
  width: 720px;
  margin-bottom: 40px;
  height: 337px;
  background: #F7F8FA;
  padding: 50px;
  border-left: 2px solid #095BAD;
}
.about-box .F-box .box-center .center-list .list .Logo {
  height: 45px;
  width: 215px;
  margin-bottom: 25px;
}
.about-box .F-box .box-center .center-list .list .list-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
}
.about-box .F-box .box-center .center-list .list .list-msg {
  font-size: 16px;
  color: #666666;
  line-height: 36px;
}
.about-box .F-box .box-center .next-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 140px;
  margin-top: 98px;
}
.about-box .F-box .box-center .next-box .next {
  width: 60px;
  height: 60px;
}
.news-box {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.news-box .banner-box .banner {
  height: 100%;
  width: 100%;
}
.news-box .core-menu {
  height: 72px;
}
.news-box .core-menu .menu-center {
  width: 1480px;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.news-box .core-menu .menu-center .menu {
  width: 150px;
  height: 72px;
  border-radius: 0px 0px 0px 0px;
  text-align: center;
  line-height: 72px;
}
.news-box .core-menu .menu-center .active {
  background: #1A43D1;
  color: #fff;
}
.news-box .contact-box {
  padding: 150px;
  background-color: #F7F8FA;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.news-box .contact-box .contact-center {
  width: 1480px;
  display: flex;
}
.news-box .contact-box .contact-center .center-left {
  padding: 80px;
  background-color: #fff;
  width: 720px;
  box-sizing: border-box;
}
.news-box .contact-box .contact-center .center-left .left-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 100px;
}
.news-box .contact-box .contact-center .center-left .left-list {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #E2E6F3;
}
.news-box .contact-box .contact-center .center-left .left-list .list-left {
  width: 56px;
  height: 56px;
  margin-right: 16px;
}
.news-box .contact-box .contact-center .center-left .left-list .list-right .right-msg {
  color: #999999;
  font-size: 20px;
}
.news-box .contact-box .contact-center .center-left .left-list .list-right .right-name {
  font-size: 20px;
  margin-top: 10px;
}
.news-box .contact-box .contact-center .center-right {
  width: 760px;
  height: 700px;
  border-radius: 0px 0px 0px 0px;
}
.news-box .A-news {
  background-color: #F7F8FA;
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news-box .A-news .news-list {
  width: 1480px;
  height: 232px;
  background: #FFFFFF;
  border-radius: 0px 0px 0px 0px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.news-box .A-news .news-list .list-time {
  width: 274px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 48px;
}
.news-box .A-news .news-list .list-time span {
  font-size: 17px;
}
.news-box .A-news .news-list .banner {
  width: 320px;
  height: 180px;
  border-radius: 0px 0px 0px 0px;
  flex-shrink: 0;
}
.news-box .A-news .news-list .list-name {
  padding: 0 45px;
}
.news-box .A-news .news-list .list-name .name-title {
  color: #222222;
  font-size: 20px;
}
.news-box .A-news .news-list .list-name .name-msg {
  font-size: 14px;
  color: #A0A0A0;
}
.news-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  background-color: #F7F8FA;
  padding-bottom: 100px;
}
.news-detail .news-center {
  width: 1440px;
  margin-top: 30px;
}
.news-detail .news-center .center-title {
  display: flex;
  align-items: center;
  padding-top: 30px;
  font-size: 14px;
  color: #999999;
}
.news-detail .news-center .center-title .home {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
.news-detail .news-center .center-title .right {
  width: 14px;
  height: 14px;
  margin-right: 7px;
}
.news-detail .news-center .center-body {
  background-color: #fff;
  padding: 50px 40px;
  margin-top: 30px;
  display: flex;
}
.news-detail .news-center .center-body .body-left .left-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}
.news-detail .news-center .center-body .body-left .left-msg {
  display: flex;
  align-items: center;
  font-size: 14px;
  height: 14px;
  color: #353535;
  line-height: 14px;
}
.news-detail .news-center .center-body .body-left .left-msg span {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #D1D1D1;
}
.news-detail .news-center .center-body .body-left .left-html {
  margin-top: 30px;
  border-top: 1px solid #D1D1D1;
  padding: 30px;
  font-size: 22px;
}
.news-detail .news-center .center-body .body-left .back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 138px;
  height: 52px;
  background: rgba(0, 0, 0, 0);
  border-radius: 0px 0px 0px 0px;
  border: 1px solid #1A43D1;
  color: #1A43D1;
  font-size: 14px;
}
.news-detail .news-center .center-body .body-left .back img {
  width: 18px;
  height: 18px;
  margin-right: 3px;
}
.news-detail .news-center .center-body .body-right {
  margin-left: 48px;
  width: 350px;
  flex-shrink: 0;
}
.news-detail .news-center .center-body .body-right .right-title {
  color: #353535;
  font-weight: bold;
  font-size: 40px;
}
.news-detail .news-center .center-body .body-right .right-list {
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #D1D1D1;
}
.news-detail .news-center .center-body .body-right .right-list .list-num {
  width: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 30px;
  color: #A0A0A0;
  line-height: 40px;
  text-align: center;
  margin-right: 20px;
  border-right: 1px solid #E6E6E6;
}
.news-detail .news-center .center-body .body-right .right-list .list-num span {
  font-size: 12px;
}
.news-detail .news-center .center-body .body-right .right-list .list-time {
  color: #353535;
  width: 192px;
}
.news-detail .news-center .center-body .body-right .more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 13px;
  color: #1A43D1;
  margin-top: 24px;
}
.news-detail .news-center .center-body .body-right .more .news-right {
  width: 18px;
  height: 12px;
  margin-left: 10px;
}
.footer-box {
  width: 100%;
  background: #191919;
  color: #fff;
}
.footer-box .box-center {
  width: 1400px;
  margin: 0 auto;
  padding-top: 35px;
  display: flex;
  justify-content: space-between;
}
.footer-box .box-center .left-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 38px;
}
.footer-box .box-center .left-list {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  font-size: 16px;
}
.footer-box .box-center .left-list img {
  width: 28px;
  height: 28px;
  margin-right: 12px;
}
.footer-box .box-center .xian {
  height: 247px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.footer-box .box-center .center-right {
  display: flex;
  justify-content: space-between;
  width: 858px;
}
.footer-box .box-center .center-right .right-list .list-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 30px;
}
.footer-box .box-center .center-right .right-list .list {
  font-size: 16px;
  margin-bottom: 20px;
}
.footer-box .box-center .center-right .right-code {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 16px;
}
.footer-box .box-center .center-right .right-code .code {
  margin-bottom: 20px;
  width: 125px;
  height: 125px;
}
.footer-box .box-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  padding: 25px 260px;
  font-size: 14px;
}


/* 分页 */
.pagination { margin: 10px 0; font-size: 0; text-align: center; }
.pagination li { display: inline-block; }
.pagination a, .pagination span { display: inline-block; margin: 0 4px; width: 30px; line-height: 30px; text-align: center; background-color: #FFF; font-size: 14px; }
.pagination a:hover, .pagination span:hover { color: #B22B23; }
.pagination li.active a, .pagination li.active span { background-color: #B22B23; border-color: #B22B23; color: #FFF; }
.pagination li.disabled a, .pagination li.disabled span { background-color: #EEE; color: #BBB; }

.noresult{text-align: center;}
.scroll-to-top {
	/* 固定定位 */
	position: fixed;
	bottom: 30px;
	right: 30px;
	 
	/* 尺寸和外观 */
	width: 60px;
	height: 60px;
	border-radius: 50%;
	
	/* 视觉样式 */
	background: linear-gradient(135deg, #4b6cb7, #182848);
	color: white;
	border: none;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	
	/* 字体和图标 */
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
	
	/* 鼠标交互 */
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	
	/* 初始状态：隐藏 */
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px) scale(0.8);
	
	/* 确保按钮在最上层 */
	z-index: 1000;
	
	/* 可访问性 - 聚焦状态 */
	outline: none;
	text-align: center;
	line-height: 60px;
}
.scroll-to-top img {width:60%;margin-top:10px}
.scroll-to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}