﻿@charset "UTF-8";
/*
@File: Naon HTML Template

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************
** - Default CSS Style
** - Top Header Area CSS Style
** - Navbar Area CSS Style
** - Sidebar Modal CSS Style

** - Footer Area CSS Style
** - Copyright Area CSS Style
** - Other Area CSS Style

*******************************************
/*

/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  box-sizing: border-box; }

:root {
  --headerFonts: 'Playfair Display', serif;
  --bodyFonts: PingFang SC, Source Han Sans CN, Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
  --mainColor: #3894ff;
  --titleColor: #202031;
  --bodyColor: #555555;
  --whiteColor: #ffffff;
  --fontSize: 16px;
  --transition: 0.5s; }

body {
  background: #f7f9fb;
  padding: 0;
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
  font-size: var(--fontSize);
  font-family: var(--bodyFonts); }

.bg-white {
  background: var(--whiteColor); }

p {
  color: var(--bodyColor);
  margin-bottom: 10px; }
  p:last-child {
    margin-bottom: 0; }

a {
  display: inline-block;
  text-decoration: none; }
  a:hover, a:focus {
    text-decoration: none; }

button {
  outline: 0;
  border: none; }
  button:focus {
    outline: 0;
    border: 0; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--titleColor);
  line-height: 1.4; }

h3 {
  font-size: 22px; }

.d-table {
  width: 100%;
  height: 100%; }

.d-table-cell {
  display: table-cell;
  vertical-align: middle; }

img {
  max-width: 100%; }

.pt-150 {
  padding-top: 150px; }

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px; }

.pt-100 {
  padding-top: 100px; }

.pb-100 {
  padding-bottom: 100px !important; }

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px; }

.pt-70 {
  padding-top: 70px; }

.pb-70 {
  padding-bottom: 70px; }

.pt-50 {
  padding-top: 50px; }

.pt-45 {
  padding-top: 45px; }

.pt-20 {
  padding-top: 20px; }

.pl-20 {
  padding-left: 20px; }

.pr-20 {
  padding-right: 20px; }

.pb-10 {
  padding-bottom: 10px; }

.mt-20 {
  margin-top: 20px; }

.mb-45 {
  margin-bottom: 45px; }

.ml-20 {
  margin-left: 20px; }

.mr-20 {
  margin-right: 20px; }

.mb-20 {
  margin-bottom: 20px; }

.mb-30 {
  margin-bottom: 30px; }

.border-radius-5 {
  border-radius: 5px !important; }

.border-radius-50 {
  border-radius: 50px !important; }

.border-radius-0 {
  border-radius: 0 !important; }
  .border-radius-0 img {
    border-radius: 0 !important; }

.box-shadow {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06); }

.container {
  max-width: 1430px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px; }

.container-full {
  max-width: 1730px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px; }

.clearfix::after {
  content: "";
  display: table;
  clear: both; }

.fl {
  float: left; }

.fr {
  float: right; }

.row {
  margin: 0 -15px; }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row > [class*="col-"] {
    padding: 0 15px;
    float: left; }

.col-5 {
  width: 41.66666667%; 
  display: grid;
  place-items: center;
  margin-top: 6%;
}

.col-6 {
  width: 50%; }

.col-7 {
  width: 58.33333333%; }

.va-middle > * {
  display: inline-block;
  vertical-align: middle; }

.default-btn {
  width: 175px;
  height: 48px;
  border: 1px solid #707070;
  text-align: center;
  font-size: 18px;
  color: #242424;
  padding-right: 10px;
  line-height: 46px;
  border-radius: 24px;
  transition: 0s;
  position: relative; }
  .default-btn i {
    position: absolute;
    right: 10px;
    font-size: 22px;
    top: 50%;
    transform: translateY(-50%); }
  .default-btn:hover {
    background: var(--mainColor);
    color: #fff;
    border-color: var(--mainColor); }
    .default-btn:hover i {
      color: #fff; }

.default-btn-white {
  color: #fff;
  border: 1px solid #fff; }
  .default-btn-white:hover {
    background: var(--mainColor);
    color: #fff;
    border-color: var(--mainColor); }
    .default-btn-white:hover i {
      color: #fff; }

.section-title {
  position: relative;
  text-align: center; }
  .section-title h2 {
    font-size: 45px;
    color: #1a1a1a;
    font-weight: 500;
    margin: 0; }
  .section-title h6 {
    font-size: 20px;
    color: #606060;
    font-weight: 400;
    margin: 0; }
  .section-title .default-btn {
    position: absolute;
    right: 0;
    bottom: 0; }

.section-bg {
  background-color: #FAEFED; }

.color1 {
  color: var(--whiteColor) !important; }

.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

/*=================================
Preloader CSS
====================================*/
#preloader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999; }

#preloader-area {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 60px;
  width: 60px; }
  #preloader-area .spinner {
    width: 20px;
    height: 20px;
    z-index: 9999;
    position: relative;
    border-radius: 50%;
    background: var(--whiteColor);
    animation: 2s sping-round linear infinite; }
    #preloader-area .spinner:nth-child(2) {
      animation-delay: .2s; }
    #preloader-area .spinner:nth-child(3) {
      animation-delay: .4s; }

#preloader .preloader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background-color: var(--mainColor);
  z-index: 999;
  transform: translateX(0); }
  #preloader .preloader-section.preloader-left {
    left: 0; }
  #preloader .preloader-section.preloader-right {
    right: 0; }

.loaded #preloader-area {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out; }
.loaded #preloader .preloader-section.preloader-left {
  transform: translateX(-100%);
  transition: all 0.8s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }
.loaded #preloader .preloader-section.preloader-right {
  transform: translateX(100%);
  transition: all 0.8s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }

.loaded #preloader {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out; }

/*================================
Top Header Area
====================================*/
.header-area {
  padding: 17px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: var(--transition);
  z-index: 100; }
  .header-area.is-sticky {
    padding: 10px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: #fff; }
    .header-area.is-sticky .header-logo {
      background-image: url("../images/logo.png"); }
    .header-area.is-sticky .navbar-list a, .header-area.is-sticky .header-phone {
      color: #000; }

.header-logo {
  width: 100px;
  height: 60px;
  background: url("../images/logo-white.png") no-repeat center center;
  background-size: 100% auto; }

.header-phone {
  font-size: 18px;
  color: #fefefe;
  display: inline-block;
  margin-top: 13px; }

.navbar-list {
  padding-top: 3px;
  text-align: center; }
  .navbar-list a {
    display: inline-block;
    font-size: 18px;
    color: #fefefe;
    position: relative;
    padding: 10px 7px; }
    .navbar-list a:after {
      position: absolute;
      bottom: 0;
      left: 50%;
      display: none;
      transform: translateX(-50%);
      content: "";
      width: 33px;
      border-radius: 4px;
      height: 7px;
      background: var(--mainColor); }
    .navbar-list a:hover, .navbar-list a.on {
      color: var(--mainColor) !important; }
      .navbar-list a:hover:after, .navbar-list a.on:after {
        display: block; }

/*================================
Banner Area
====================================*/
.banner-slider {
  position: relative; }
  .banner-slider .owl-dots {
    margin-top: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; }
    .banner-slider .owl-dots .owl-dot span {
      background: none;
      border: 1px solid #fff;
      width: 15px;
      height: 15px; }
    .banner-slider .owl-dots .owl-dot.active span, .banner-slider .owl-dots .owl-dot:hover span {
      background: #fff; }

/*================================
招标公告 Area
====================================*/
.notice-area {
  background: url("../images/bj-notice.jpg") no-repeat center center;
  height: 1013px;
  padding-top: 60px; }

.notice-tab-head {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
  text-align: center;
  border-bottom: 4px solid #dfdfe4; }
  .notice-tab-head li {
    display: inline-block;
    padding: 20px 17px 24px;
    cursor: pointer;
    position: relative;
    margin: 0 50px; }
    .notice-tab-head li.on, .notice-tab-head li:hover {
      background: url("../images/notice-head-bg.png") repeat-x left bottom; }
      .notice-tab-head li.on .line, .notice-tab-head li:hover .line {
        display: block; }
      .notice-tab-head li.on h4, .notice-tab-head li:hover h4 {
        color: var(--mainColor); }
    .notice-tab-head li .line {
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 100%;
      display: none;
      height: 4px;
      background: var(--mainColor); }
  .notice-tab-head h4 {
    font-size: 20px;
    color: #272727;
    margin: 10px 0 0;
    font-weight: 500; }

.notice-tab-list {
  background: #fff;
  padding: 12px 0 12px 40px; }
  .notice-tab-list li {
    color: #d2d2d2; }
    .notice-tab-list li a {
      display: block;
      padding-right: 90px; }
      .notice-tab-list li a:hover h4 {
        color: var(--mainColor); }
      .notice-tab-list li a:hover .content {
        transition: .5s;
        padding-left: 10px; }
  .notice-tab-list .date {
    padding: 13px 0;
    float: left;
    width: 190px;
    color: #141414;
    font-size: 18px; }
  .notice-tab-list .content {
    border-bottom: 1px dotted #d5d5d5;
    margin-left: 190px;
    padding: 13px 0; }
    .notice-tab-list .content h4 {
      font-size: 18px;
      color: #141414;
      font-weight: 500;
      margin: 0; }
    .notice-tab-list .content p {
      margin: 0;
      font-size: 16px;
      color: var(--mainColor); }

.notice-tab-more {
  text-align: center; }

.btn-more {
  font-size: 18px;
  color: #242424;
  transition: .5s;
  display: inline-block; }
  .btn-more i {
    color: #fff;
    font-size: 20px;
    background: #7d7d7d;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 50%; }
  .btn-more:hover {
    transform: translateX(5px);
    color: var(--mainColor); }
    .btn-more:hover i {
      background: var(--mainColor); }

/*================================
关于我们 Area
====================================*/
.about{
   line-height: 30px;
   font-size: 18px;
}
.about-area {
  padding: 50px 0 75px; }

.about-left {
  padding: 120px 0 75px;
  width: 50%;
  float: left; }

.about-right {
  float: right;
  width: 50%; }
  .about-right .section-title {
    width: 180px; }

.about-content h4 {
  font-size: 26px;
  color: #242424;
  font-weight: 500;
  margin: 50px 0 0; }
.about-content h5 {
  margin: 45px 0 0;
  font-size: 20px;
  color: #353535;
  font-weight: 400; }
.about-content .r1 {
  font-size: 18px;
  color: #3b3b3b;
  margin: 20px 0 0; }
.about-content .r2 {
  margin-top: 10px; }
  .about-content .r2 span {
    font-size: 18px;
    color: #353535;
    margin-right: 35px;
    padding: 5px 0 5px 35px;
    display: inline-block;
    background: url("../images/about-icon-1.png") no-repeat left center; }
  .about-content .r2 .sp2 {
    background-image: url("../images/about-icon-2.png"); }
  .about-content .r2 .sp3 {
    background-image: url("../images/about-icon-3.png"); }
.about-content .default-btn {
  margin-top: 45px; }
  
 .product_item_top {
    width: 100%;
    padding: 2% 0 3%;
    text-align: center;
}
.product_item_top .en_title {
    margin-left: -0.1rem;
    margin-bottom: 1.04%;
    letter-spacing: .1rem;
    color: #112541;
	font-size: 16px;
}
.product_item_top .title {
    margin-bottom: 0.7%;
    font-weight: bold;
    letter-spacing: .2rem;
    color: #112541;
    line-height: 1.8rem;
	font-size: 1.8rem;
    margin-top: -5px;
}
.product_item_top .line {
    width: 4.95%;
    margin: 0 auto;
    height: 0.2rem;
    background-color: #2f6cc8;
    border-radius: 0.1rem;
}
.about{
	margin: 30px;
}

/*================================
服务项目 Area
====================================*/
.services-area {
  background: url("../images/bj-services.jpg") no-repeat center center;
  height: 811px;
  padding-top: 70px; }
  .services-area .section-title h2, .services-area .section-title h6 {
    color: #fff; }
  .services-area .section-title h6 {
    color: #e0e0e0; }

.services-content {
  margin-top: 180px;
  background: url("../images/services-card-bg.jpg");
  height: 470px; }

.services-item {
  position: relative;
  width: 25%;
  height: 470px;
  float: left;
  padding: 30px;
  border-top: 4px solid transparent; }
  .services-item h4 {
    font-size: 24px;
    color: #ffffff;
    margin: 70px 0 0; }
  .services-item p {
    font-size: 16px;
    color: #ffffff;
    margin: 20px 0 0;
    line-height: 1.8; }
  .services-item:hover {
    background: url("../images/services-item-bg.jpg");
    border-top-color: #fbb03b; }
  .services-item .circle {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    border: 1px solid #fff;
    padding: 3px; }
    .services-item .circle span {
      background: #fff;
      display: block;
      width: 15px;
      height: 15px;
      border-radius: 50%; }
  .services-item .line-row {
    position: absolute;
    height: 23px;
    width: 100%;
    top: 114px;
    left: 0;
    padding: 0 30px; }
  .services-item .line-left, .services-item .line-right {
    position: absolute;
    top: 11px;
    display: block;
    border-top: 1px dotted #fff; }
  .services-item .line-left {
    left: 1px;
    width: 35px; }
  .services-item .line-right {
    left: 45px;
    right: 0; }

.services-item4 .line-right {
  right: 30px; }

/*================================
政策法规 Area
====================================*/
.policy-area {
  padding: 70px 0; }

.policy-slider {
  margin-top: 50px; }
  .policy-slider .owl-prev, .policy-slider .owl-next {
    background: #fff !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 50% !important;
    position: absolute;
    height: 60px;
    line-height: 60px !important;
    top: 37%; }
    .policy-slider .owl-prev i, .policy-slider .owl-next i {
      color: #9d9d9d;
      font-size: 60px; }
    .policy-slider .owl-prev:hover, .policy-slider .owl-next:hover {
      background: none !important; }
      .policy-slider .owl-prev:hover i, .policy-slider .owl-next:hover i {
        color: var(--mainColor); }
  .policy-slider .owl-prev {
    left: -80px; }
  .policy-slider .owl-next {
    right: -80px; }

@media (max-width: 1500px) {
  .policy-slider .owl-prev {
    left: 0; }
  .policy-slider .owl-next {
    right: 0; } }
.policy-slider-item .pic {
  border-radius: 3px;
  overflow: hidden; }
.policy-slider-item .tag-list {
  margin: 26px -5px; }
.policy-slider-item .tag {
  font-size: 18px;
  color: #fff;
  background: var(--mainColor);
  display: inline-block;
  padding: 5px 11px;
  border-radius: 3px;
  margin: 5px; }
.policy-slider-item h4 {
  font-size: 26px;
  color: #292929;
  font-weight: 500;
  margin: 10px 0 0; }
.policy-slider-item p {
  font-size: 15px;
  color: #4d4d4d;
  margin: 20px 0 0; }
.policy-slider-item .date {
  font-size: 16px;
  color: #838383;
  margin-top: 5px; }
.policy-slider-item a {
  display: inline-block;
  margin-top: 25px;
  font-size: 16px;
  color: #808080;
  border-bottom: 1px solid #dcdcdc;
  padding: 5px 0; }
  .policy-slider-item a i {
    margin-left: 30px; }
  .policy-slider-item a:hover {
    color: var(--mainColor);
    border-color: var(--mainColor); }

/*================================
新闻资讯 Area
====================================*/

.content table{
    width: 100%!important;
    border: 1px #000 solid;}
.content table td{
    border: 1px #000 solid;
    text-align: center;
}
.content table tr:first-child{
    font-weight: bold;
}

.news-area {
  background: #eef2f6;
  padding: 70px 0 40px; }

.news-row {
  margin-top: 50px; }

.news-left a {
  overflow: hidden;
  transition: .5s;
  display: block; }
.news-left a:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
	}

.news-left-content {
  background: url("../images/news-left-bg.jpg") no-repeat;
  background-size: 100% 100%;
  height: 370px;
  padding: 50px 25px 30px;
  position: relative; }
.news-left-content .info {
    position: absolute;
    left: 25px;
    bottom: 25px;
    color: #879db2; 
	}
.news-left-content .date {
    font-size: 16px;
    color: #ffffff; 
	}
.news-left-content h4 {
    font-size: 30px;
    color: #ffffff;
    font-weight: 500;
    margin: 5px 0 0; 
	}

.news-left-pic {
  height: 340px;
  overflow: hidden;
  background: url("../images/news-pic-1.png") no-repeat center center;
  background-size: auto 100%; }

.news-left-item {
  display: block;
  background: #fff;
  margin-bottom: 30px;
  position: relative;
  transition: .5s;
  padding: 40px 15px 15px;
  height: 340px; }
.news-left-item h4 {
    font-size: 26px;
    font-weight: 500;
    margin: 0; 
	}
.news-left-item p {
    font-size: 16px;
    color: #1e1e1e;
    margin: 20px 0 0;
	}
.news-left-item .date {
    font-size: 16px;
    color: #1e1e1e;
    position: absolute;
    bottom: 15px;
    left: 15px; 
	}
.news-left-item i {
    transition: .5s;
    color: #464646;
    display: inline-block;
    margin-top: 5px;
    font-size: 20px; 
	}
.news-left-item:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px; 
}
.news-left-item:hover h4 {
      color: var(--mainColor); 
}
.news-left-item:hover i {
      color: var(--mainColor);
      transform: translateX(5px); 
}
.news_box {
    width: 100%;
    padding-bottom: 7.19%;
}
.news_box .crumbs {
    width: 89.58%;
    margin: 0 auto 1.67%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 50px;
    font-size: 16px;
}
.news_box .crumbs .home {
    width: 3.8%;
    padding-bottom: 3.8%;
    margin-right: 1.65rem;
    background-color: #112541;
    position: relative;
    flex-shrink: 0;
}
.news_box .crumbs .home a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.news_box .crumbs .home a i {
    font-size: 1.95rem;
    color: #FFF;
}
.news_box .crumbs ul {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    letter-spacing: .1rem;
    color: #112541;
}
.news_box .crumbs ul li {
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news_box .crumbs ul li:last-child {
    width: 82%;
}
.crumbs ul li a {
    outline: none;
    transition: 0.3s;
    transition-property: background, border, color;
	color: inherit;
}
.news_box .news {
    width: 89.58%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.news_box .news .left_box {
    width: 70.46%;
}
.news_box .news .left_box .top {
    width: 100%;
    padding-bottom: 0.65rem;
    margin: 8.66% 0 4.7%;
    border-bottom: 1px solid #717171;
}
.news_box .news .left_box .top .title {
    margin-bottom: 4.04%;
    text-align: center;
    color: #112541;
    font-weight: bold;
}
.news .left_box .title {
    font-size: 1.4rem;
}
.news_box .news .left_box .top .infor {
    display: flex;
    justify-content: flex-end;
}
.news .left_box .infor {
    font-size: .8rem;
}
.news_box .news .left_box .top .infor p:first-child {
    margin-right: 1rem;
}
.news_box .news .left_box .top .infor p {
    letter-spacing: .1rem;
    color: #717171;
}
.news .left_box .content{
	font-size: 20px;
	margin: 3%;
}
.news .left_box .content p{
	color: inherit;
}
.news_box .news .left_box .switch_box {
    padding-top: 4.2%;
    margin-top: 5.36%;
    border-top: 1px solid #717171;
    color: #717171;
}
.news_box .news .left_box .switch_box .prev {
    margin-bottom: 0.7rem;
}
.switch_box .prev a{
	color: inherit;
}
.switch_box .prev a:hover{
	color: #13233c;
}
.switch_box .next a{
	color: inherit;
}
.switch_box .next a:hover{
	color: #13233c;
}
.news_box .news .right_box {
    width: 28.37%;
    margin-top: 12.7%;
}
.news_box .news .right_box > div {
    box-sizing: border-box;
    padding: 6.97% 9.42%;
    margin-bottom: 10.66%;
    background-color: #e5e5e5;
}
.news_box .news .right_box > div .label {
    letter-spacing: 1px;
    color: #010101;
}
.news_box .news .right_box > div p {
    margin-bottom: 3.35%;
}
.news .right_box .label {
    font-size: 1.2rem;
}
.news_box .news .right_box > div .item {
    line-height: 1.5rem;
    letter-spacing: 1px;
    color: #5a5a5a;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}
.news .right_box .item {
    font-size: .9rem;
}
.news_box .news .right_box > div p {
    margin-bottom: 3.35%;
}
.right_box > div p a{
    outline: none;
	transition: 0.3s;
	transition-property: background, border, color;
	color: inherit;
}

.news_box .news .left_box1 {
    width: 100%;
}
.news_box .news .left_box1 .top {
    width: 100%;
    padding-bottom: 0.65rem;
    margin: 8.66% 0 4.7%;
    border-bottom: 1px solid #717171;
}
.news_box .news .left_box1 .top .title {
    margin-bottom: 4.04%;
    text-align: center;
    color: #112541;
    font-weight: bold;
}
.news .left_box1 .title {
    font-size: 1.4rem;
}
.news_box .news .left_box1 .top .infor {
    display: flex;
    justify-content: flex-end;
}
.news .left_box1 .infor {
    font-size: .8rem;
}
.news_box .news .left_box1 .top .infor p:first-child {
    margin-right: 1rem;
}
.news_box .news .left_box1 .top .infor p {
    letter-spacing: .1rem;
    color: #717171;
}
.news .left_box1 .content{
	font-size: 20px;
	margin: 5%;
    line-height: 30px;
}
.news .left_box1 .content p{
	color: inherit;
}
.news_box .news .left_box1 .switch_box {
    padding-top: 4.2%;
    margin-top: 5.36%;
    border-top: 1px solid #717171;
    color: #717171;
}
.news_box .news .left_box1 .switch_box .prev {
    margin-bottom: 0.7rem;
}

/*================================
底部 Area
====================================*/

.footer-area {
  padding: 27px 0 0;
  background: #13233c; }
.footer-area .copyright {
    border-top: 1px solid #485466;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #788089; 
	}
.footer-area .copyright a {
      color: #788089; 
	  }
.footer-area .copyright a:hover {
        color: var(--mainColor); 
		}

.footer-row {
  padding-bottom: 50px; }
  .footer-row .logo {
    width: 150px; }
  .footer-row .ewm {
    margin-top: 30px;
    width: 90px;
    height: 90px; }
  .footer-row .share {
    margin-top: 30px; }
    .footer-row .share a {
      display: inline-block;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid #fff;
      text-align: center;
      line-height: 40px;
      margin-right: 15px; }
      .footer-row .share a i {
        color: #fff;
        font-size: 20px; }
      .footer-row .share a:hover {
        background: var(--mainColor);
        border-color: var(--mainColor); }
        .footer-row .share a:hover i {
          color: #fff; }
  .footer-row .friend-link {
    margin-top: 20px; }
    .footer-row .friend-link span, .footer-row .friend-link a {
      font-size: 14px;
      color: #788089; }
    .footer-row .friend-link a {
      margin-right: 5px; }
.footer-row .friend-link a:hover {
        color: var(--mainColor); 
		}
.footer-row .contact {
    margin-top: 25px; 
	}
.footer-row .contact .t1 {
      font-size: 16px;
      color: #ffffff; 
	  }
.footer-row .contact .r1 {
      margin-top: 5px; 
	  }
.footer-row .contact .r1 a, .footer-row .contact .r1 span {
        font-size: 16px;
        color: #8e9cad;
        display: inline-block;
        margin-right: 15px; 
		}
.footer-row .contact .r1 a:hover {
        color: var(--mainColor); 
		}
.footer-row .nav {
    padding-bottom: 19px; 
	}
.footer-row .nav .t1 {
      font-size: 16px;
      color: #828f9d; 
	  }
.footer-row .nav .r1 {
      margin-top: 15px; 
	  }
.footer-row .nav .r1 a {
        font-size: 16px;
        color: #fefefe;
        display: inline-block;
        margin-right: 15px; 
		}
.footer-row .nav .r1 a:hover {
        color: var(--mainColor); 
		}

.banner-inside {
  background: url("../images/bg-news.jpg") no-repeat center center;
  height: 580px;
  padding-top: 200px; }
  .banner-inside h4 {
    font-size: 50px;
    color: #ffffff;
    font-weight: 500;
    margin: 0; }
  .banner-inside p {
    font-size: 26px;
    color: #ffffff;
    margin: 10px 0 0; }

.tab-inside {
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.18); }
  .tab-inside a {
    float: left;
    width: 25%;
    display: block;
    text-align: center;
    padding: 30px 20px;
    font-size: 22px;
    color: #272727; }
    .tab-inside a i {
      position: relative;
      top: -2px;
      vertical-align: middle;
      display: inline-block;
      width: 26px;
      height: 27px;
      margin-right: 13px;
      background: url("../images/new-tab-icons.png") no-repeat 0 0; }
    .tab-inside a:hover, .tab-inside a.on {
      background: var(--mainColor);
      color: #fff; }
      .tab-inside a:hover i, .tab-inside a.on i {
        background-position-y: -27px; }
  .tab-inside .a2 i {
    background-position-x: -36px; }
  .tab-inside .a3 i {
    background-position-x: -71px; }
  .tab-inside .a4 i {
    background-position-x: -107px; }

.list-inside {
  padding: 20px 0; }

.news-inside-list .policy-slider-item {
  padding: 12px 12px 20px;
  width: 25%;
  float: left; }
.news-inside-list .content {
  background: #fff;
  border-radius: 5px;
  padding: 12px 11px; }
.news-inside-list .tag-list {
  margin: 0; }
.news-inside-list .tag {
  background: #333;
  font-size: 14px; }
  .news-inside-list .tag:hover {
    background: var(--mainColor);
    color: #fff; }
.news-inside-list h4 {
  font-size: 20px; }
.news-inside-list p {
  font-size: 16px;
  line-height: 22px;
  height: 44px;
  color: #4d4d4d;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; }

.pagination-card {
  margin: 30px 0;
  text-align: center; }
  .pagination-card a, .pagination-card span {
    font-size: 16px;
    color: #575757;
    display: inline-block;
    margin: 0 5px; }
  .pagination-card a {
    padding: 0 5px; }
    .pagination-card a:hover, .pagination-card a.on {
      color: var(--mainColor); }
  .pagination-card i {
    font-size: 24px;
    vertical-align: middle;
    position: relative;
    top: -2px; }
	
/*================================
联系我们 Area
====================================*/

.contact_box .contact {
    width: 89.58%;
    padding: 3.33% 0;
    margin: 0 auto 6.3%;
    background-color: #ffffff;
    box-shadow: 0 0 2.15rem 0.3rem rgba(143, 143, 148, 0.14);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact_box .contact .content_box .qr_wrap {
    width: 100%;
    /*display: flex;*/
    justify-content: center;
    overflow: hidden;
    text-align: center;
}
.contact_box .contact .content_box .qr_wrap img {
    /*width: 100%;*/
    max-width: 100%;
}
.contact_box .contact .content_box .qr_wrap .qr {
    width: 15%;
    margin-right: 6.04%;
    text-align: center;
    color: #112541;
}
.contact_box .contact .content_box .qr_wrap .qr .img_box {
    width: 100%;
    margin-bottom: 0.4rem;
}
.img_box img {
    width: 100%;
    display: block;
}
.contact_box .contact .content_box {
    width: 100%;
}
.contact_box .contact .content_box .hotline_wrap {
    margin-bottom: 6.04%;
	width: 100%;
    padding-bottom: 3.02%;
    border-bottom: 0.1rem solid #bfbfbf;
    font-size: 18px;
    line-height: 35px;
}

.contact_box .contact .content_box .hotline_wrap .hotline {
    color: #112541;
}

/*# sourceMappingURL=style.css.map */
