@charset "utf-8";
/*Open Sans字体*/
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans-2-webfont.woff2') format('woff2'),
         url('../fonts/open-sans-2-webfont.woff') format('woff');
}
body{
	font-size:14px;
	font-family: Arial,"Microsoft YaHei";
	background:#fff;
}
a{color: #333;}
a:focus, a:hover {
    color: #c57019;
    text-decoration: none;
	outline:0;
}
ul,li{padding: 0;margin: 0;list-style: none;}
input,select{outline:none;}

.gd{font-size: 14px;font-weight: normal;color: #999;float:right;line-height: 44px;}
.gd i{color: #999;font-size: 18px;}

.whitebg{background:#fff;}
.huise{background:#f5f5f5;}
.lanse{background:#dbedff;}
.baise{color:#fff;}
a.baise:link, a.baise:visited{color:#fff;text-decoration:none;} 
a.baise:hover, a.baise:active{color:#eee; text-decoration:none;} 
.fl{float: left;}
.fr{float: right;}
.ptb{padding-top:0px;padding-bottom:0px;}
.paddc0{padding:0!important;}
.box1{box-shadow:0 0 10px #e3e3e3;}
.padding-0 {}
/*头部*/
/**
* Template Name: Logis - v1.0.1
* Template URL: https://bootstrapmade.com/logis-bootstrap-logistics-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: Open Sans, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --font-primary: Inter, sans-serif;
  --font-secondary: Poppins, sans-serif;
}

/* Colors */
:root {
  --color-default: #0a0d13;
  --color-primary: #7c2c2c;
  --color-secondary: #0e1d34;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #8f002f;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}
*{margin:0;padding:0;list-style:none;}
li{list-style:none;}
/*---# Sections & Section Header------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #333;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header span {
  position: absolute;
  top: 46px;
  color: rgba(14, 29, 52, 0.06);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  line-height: 0;
}

.section-header p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .section-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-header span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 140px 0 80px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs .page-header:before {
  content: "";
  background-color: rgba(14, 29, 52, 0.8);
  position: absolute;
  inset: 0;
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f3f6fc;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-secondary);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4278cc;
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(13, 66, 255, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 30px 0;
	background:rgb(0 0 0 / 60%);
}

.header.sticked {
  background: rgb(0 0 0 / 60%);
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1);
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-primary);
}
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.djust{max-width: 1320px;margin: auto;}
/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/






@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background:#860b41;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: #d9964f;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--color-secondary);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color:#bd0000;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(14, 29, 52, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: rgba(13, 66, 255, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #19335c;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(14, 29, 52, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 20px;
}
.featured-services .service-item a{
  display: inline-flex;
    border-right: 1px solid #ccc;
    padding: 10px 30px;
	
}

.featured-services .service-item .icon {
  margin-right: 20px;
}

.featured-services .service-item .icon i {
  color: #000;
  font-size: 48px;
  transition: 0.3s;
}

.featured-services .service-item:hover .icon {
  background: #fff;
}

.featured-services .service-item:hover .icon i {
  color: #f00;
}

.featured-services .service-item .title {
 font-weight: 700;
    margin-bottom: 0;
    font-size: 27px;
    color: #000;
    transition: 0.3s;
    line-height: 48px;
}

.featured-services .service-item .description {
  font-size: 15px;
  color: #132848;
  margin-bottom: 10px;
}

.featured-services .service-item .readmore {
  display: flex;
  align-items: center;
  color: #f00;
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.featured-services .service-item .readmore i {
  margin-left: 8px;
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore,
.featured-services .service-item:hover .icon i {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 32px;
  font-family: var(--font-secondary);
  color: #333;
}
.about .content p {
 line-height:30px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--color-primary);
  margin-right: 20px;
  line-height: 0;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
  color: #19335c;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(13, 66, 255, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(13, 66, 255, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .card {
  border: 1px solid rgba(14, 29, 52, 0.15);
  background: #fff;
  position: relative;
  border-radius: 0;
  height: 100%;
}

.services .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.services .card .card-img img {
  transition: 0.3s ease-in-out;
}

.services .card h3 {
  font-weight: 700;
  font-size: 17px;
	line-height:30px;
  margin-bottom: 5px;
  padding: 10px 30px;
  text-transform: uppercase;
}

.services .card a {
  color: #333;
  transition: 0.3;
}

.services .card a:hover {
  color: var(--color-primary);
}

.services .card p {
  padding: 0 30px;
  margin-bottom: 10px;
  color: var(--color-secondary);
  font-size: 14px;
}

.services .card:hover .card-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(rgba(14, 29, 52, 0.6), rgba(14, 29, 52, 0.8)), url("../images/cta-bg.jpg") center center;
  background-size: cover;
  padding: 50px 0;
}

@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: #fff;
}

.call-to-action .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action .cta-btn:hover {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding-top: 80px;
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}
.features .features-item img{max-width:100%;}
.features .features-item img:hover{transform: scale(1.1); transition: .5s;}
.features .features-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #333;
	line-height: 44px;
}
.features .features-item h3 a{color:#333;}
.features .features-item h3 a:hover{color:#860b41;text-decoration: underline;}
.features .features-item p {
  font-size: 16px;
  color: #666;
	line-height:28px;
}
.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.features .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--color-secondary);
}

.pricing h4 {
  font-size: 48px;
  color: var(--color-primary);
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 4px;
  color: var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-primary);
  transition: 0.3s;
  border: 1px solid var(--color-primary);
}

.pricing .buy-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.pricing .featured {
  border-top-color: var(--color-primary);
}

.pricing .featured .buy-btn {
  background: var(--color-primary);
  color: #fff;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq {
  padding-top: 80px;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 10px;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 30px 20px 60px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: var(--color-default);
  text-align: left;
  background: rgba(14, 29, 52, 0.03);
  border-radius: 5px;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}

.faq .question-icon {
  position: absolute;
  top: 14px;
  left: 25px;
  font-size: 20px;
  color: var(--color-primary);
}

.faq .accordion-button:after {
  position: absolute;
  right: 15px;
  top: 15px;
}

.faq .accordion-body {
  padding: 0 30px 25px 60px;
  border: 0;
  background: rgba(14, 29, 52, 0.03);
  border-radius: 5px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../images/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 29, 52, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-counter .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats-counter .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid rgba(14, 29, 52, 0.15);
}

.team .member img {
  margin: -1px -1px 30px -1px;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #6c757d;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #6c757d;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: rgba(14, 29, 52, 0.5);
  transition: 0.3s;
}

.team .member .social a:hover {
  color: var(--color-primary);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Horizontal Pricing Section
--------------------------------------------------------------*/
.horizontal-pricing .pricing-item {
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  padding-bottom: 30px;
  background: #fff;
  height: 100%;
  position: relative;
}

.horizontal-pricing h3 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 24px;
  color: var(--color-secondary);
}

.horizontal-pricing h4 {
  font-size: 48px;
  color: var(--color-primary);
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 25px;
  text-align: center;
}

.horizontal-pricing h4 sup {
  font-size: 28px;
}

.horizontal-pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
}

.horizontal-pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}

.horizontal-pricing ul li {
  padding-top: 15px;
  display: flex;
  align-items: center;
}

.horizontal-pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.horizontal-pricing ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.horizontal-pricing ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

.horizontal-pricing ul .na span {
  text-decoration: line-through;
}

.horizontal-pricing .buy-btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  color: #fff;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  font-family: var(--font-primary);
}

.horizontal-pricing .buy-btn:hover {
  background: #406aff;
  border-color: #406aff;
}

.horizontal-pricing .featured {
  background: var(--color-primary);
}

.horizontal-pricing .featured h3,
.horizontal-pricing .featured h4,
.horizontal-pricing .featured h4 span,
.horizontal-pricing .featured ul,
.horizontal-pricing .featured ul .na,
.horizontal-pricing .featured ul i,
.horizontal-pricing .featured ul .na i {
  color: #fff;
}

.horizontal-pricing .featured .buy-btn {
  background: var(--color-primary);
  color: #fff;
  border-color: #fff;
}

.horizontal-pricing .featured .buy-btn:hover {
  background: #fff;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Get a Quote Section
--------------------------------------------------------------*/
.get-a-quote .quote-bg {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.get-a-quote .php-email-form {
  background: #f3f6fc;
  padding: 40px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-a-quote .php-email-form {
    padding: 20px;
  }
}

.get-a-quote .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-a-quote .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.get-a-quote .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-a-quote .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-a-quote .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-a-quote .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.get-a-quote .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.get-a-quote .php-email-form input,
.get-a-quote .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.get-a-quote .php-email-form input:focus,
.get-a-quote .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.get-a-quote .php-email-form input {
  padding: 12px 15px;
}

.get-a-quote .php-email-form textarea {
  padding: 12px 15px;
}

.get-a-quote .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.get-a-quote .php-email-form button[type=submit]:hover {
  background: rgba(13, 66, 255, 0.8);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  background: var(--color-primary);
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(14, 29, 52, 0.8);
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(13, 66, 255, 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid #d3dff3;
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid #c2cbdf;
  margin: 20px 0;
  color: var(--color-secondary);
  transition: 0.3s;
}

.service-details .services-list a.active {
  font-weight: 700;
  border-color: var(--color-primary);
}

.service-details .services-list a:hover {
  border-color: var(--color-primary);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 50vh;
  background-color: var(--color-secondary);
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 150px 0 200px 0;
  color: rgba(255, 255, 255, 0.8);
	margin-bottom: 30px;
	margin-top: -435px;
}
.hero-en {
  width: 100%;
  min-height: 50vh;
  background-color: var(--color-secondary);
  background-image: url("../images/hero-bg-en.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 150px 0 200px 0;
  color: rgba(255, 255, 255, 0.8);
	margin-bottom: 30px;
	margin-top: -435px;
}

.hero h2 {
	    margin-top: 220px;
    margin-bottom: 140px;
    padding: 0 0;
    font-size: 55px;
    text-shadow: 4px 2px #f6f6f6;
    font-weight: bold;
    color: #bb0707;
    line-height: 80px;
    font-family: cursive;
   
}

.hero-en h2 {
	    margin-top: 220px;
    margin-bottom: 140px;
    padding: 0 0;
    font-size: 55px;
    text-shadow: 4px 2px #f6f6f6;
    font-weight: bold;
    color: #bb0707;
    line-height: 80px;
    font-family: cursive;
   
}

@media (max-width: 575px) {
	.hero{padding: 150px 0 70px 0;margin-top:-190px;}
	.hero h2 {
    font-size: 30px;
    margin-top: 5px;
    margin-bottom: 0;
    line-height: 40px;
  }
	.header{padding: 20px 0;}
}

.hero p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero form {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}

.hero form .form-control {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  margin-right: 10px;
  border: none !important;
  background: none !important;
}

.hero form .form-control:hover,
.hero form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.hero form .btn-primary {
  background-color: var(--color-primary);
  padding: 15px 30px;
}

.hero form .btn-primary:hover {
  background-color: #2756ff;
}

.hero .stats-item {
  padding: 30px;
  width: 100%;
}

.hero .stats-item span {
  font-size: 32px;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

.hero .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.hero .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
}

@media(min-width:1200px) and (max-width:1399px) {
    html {
        font-size: 97%;
    }
}

@media(min-width:992px) and (max-width:1199px) {
    html {
        font-size: 95%;
    }
}

@media(min-width:768px) and (max-width:991px) {
    html {
        font-size: 90%;
    }
	
}

@media(min-width:576px) and (max-width:768px) {
    html {
        font-size: 90%;
    }
}

@media(max-width:576px) {
    html {
        font-size: 88%;
    }
}

body {
    font-family: var(--font-work-sans);
    color: var(--text-color1);
    background: #fff;
    font-size: 16px;
    margin: 0;
    line-height:1.5;
    /* background: url(../images/bg-01.png); */
}

.bg-wight {
    background: var(--white);
}



button {
    outline: none;
    border: none;
}





a {
    text-decoration: none;
	color:#302a29
}

a:hover {
    text-decoration: none;
	color:#764612
    
}

a:focus {
    outline: 0 solid;
}

input:focus,textarea:focus,button:focus {
    outline: none;
}

i.bx {
    vertical-align: middle;
}

.mb-240 {
    margin-bottom: 240px;
}

@media(min-width:992px) and (max-width:1199px) {
    .mb-240 {
        margin-bottom: 210px;
    }
}

@media(max-width:991px) {
    .mb-240 {
        margin-bottom: 200px;
    }
}

.pt-120 {
    padding-top: 120px;
}

@media(min-width:992px) and (max-width:1199px) {
    .pt-120 {
        padding-top: 90px;
    }
}

@media(max-width:991px) {
    .pt-120 {
        padding-top: 80px;
    }
}

.pt-90 {
    padding-top: 90px;
}

@media(min-width:992px) and (max-width:1199px) {
    .pt-90 {
        padding-top: 70px;
    }
}

@media(max-width:991px) {
    .pt-90 {
        padding-top: 60px;
    }
}

.pb-90 {
    padding-bottom: 90px;
}

@media(min-width:992px) and (max-width:1199px) {
    .pb-90 {
        padding-bottom: 70px;
    }
}

@media(max-width:991px) {
    .pb-90 {
        padding-bottom: 60px;
    }
}

.pb-90 {
    padding-bottom: 90px;
}

@media(min-width:992px) and (max-width:1199px) {
    .pb-90 {
        padding-bottom: 70px;
    }
}

@media(max-width:991px) {
    .pb-90 {
        padding-bottom: 60px;
    }
}

.pb-120 {
    padding-bottom: 120px;
}

@media(min-width:992px) and (max-width:1199px) {
    .pb-120 {
        padding-bottom: 90px;
    }
}

@media(max-width:991px) {
    .pb-120 {
        padding-bottom: 80px;
    }
}

.pbb-120 {
    padding-top: 120px!important;
}

@media(min-width:992px) and (max-width:1199px) {
    .pbb-120 {
        padding-top: 90px!important;
    }
}

@media(max-width:991px) {
    .pbb-120 {
        padding-top: 80px!important;
    }
}

.pb-65 {
    padding-bottom: 65px;
}

.mt-120 {
    margin-top: 120px;
}

@media(min-width:992px) and (max-width:1199px) {
    .mt-120 {
        margin-top: 90px;
    }
}

@media(max-width:991px) {
    .mt-120 {
        margin-top: 80px;
    }
}

.mb-120 {
    margin-bottom: 120px;
}

@media(min-width:992px) and (max-width:1199px) {
    .mb-120 {
        margin-bottom: 90px;
    }
}

@media(max-width:991px) {
    .mb-120 {
        margin-bottom: 80px;

    }
}

.mb-100 {
    margin-bottom: 100px;
}

.sec-mb-100 {
    margin-bottom: 100px;
}

@media(max-width:991px) {
    .sec-mb-100 {
        margin-bottom: 40px;
    }
}

.pt-80 {
    padding-top: 80px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-10 {
    padding-top: 10px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pt-110 {
    padding-top: 110px;
}

.pe-80 {
    padding-right: 80px;
}

.pb-60 {
    padding-bottom: 60px;
}

.mb-60 {
    margin-bottom: 20px;
}

@media(max-width:767px) {
    .mb-60 {
        margin-bottom: 40px;
    }
}


.mb-70 {
    margin-bottom: 70px;
}

@media(max-width:767px) {
    .mb-70 {
        margin-bottom: 40px;
    }
}

.mb-80 {
    margin-bottom: 80px;
}

@media(max-width:767px) {
    .mb-80 {
        margin-bottom: 80px;
    }
}

.mb--70 {
    margin-bottom: 70px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-20 {
    margin-bottom: 20px!important;
}

.mt-10 {
    margin-top: 10px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-40 {
    margin-top: 40px;
}



.mb-40 {
    margin-bottom: 40px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-10 {
    margin-bottom: 12px!important;
}

.mb-15 {
    margin-bottom: 15px!important;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

@media(max-width:767px) {
    .mt-70 {
        margin-top: 40px;
    }
}

.mb-95 {
    margin-bottom: 95px;
}

.mb-90 {
    margin-bottom: 90px;
}

.select2-selection {
    height: 48px;
    border: 1px solid rgba(0,167,172,.12)!important;
    border-radius: 5px!important;
}

.select2-selection .select2-search__field {
    min-height: unset!important;
    min-height: 48px!important;
    max-height: 48px!important;
    padding: 17px 0!important;
    margin: 0!important;
}

.select2-selection .select2-selection__rendered {
    margin-bottom: 0;
}

.select2-selection .select2-selection__rendered .select2-selection__choice {
    padding: 10px 30px 10px 10px;
    background-color: rgba(0,167,172,.1);
    font-family: var(--font-work-sans);
    font-weight: 400;
    font-size: 14px;
    color: var(--title-color1);
    border: unset;
}

.select2-selection .select2-selection__rendered .select2-selection__choice button {
    padding: 10px;
    background-color: transparent;
    border: none;
    border-right: unset;
    color: var(--title-color1);
    cursor: pointer;
    font-size: 1em;
    font-weight: 700;
    position: absolute;
    right: -30px;
    left: unset;
    top: 0;
    display: contents;
}

.select2-selection .select2-selection__rendered .select2-selection__choice button span {
    padding: 0;
    font-family: var(--font-work-sans);
    font-weight: 400;
    font-size: 14px;
    color: var(--title-color1);
}

.select2-selection .select2-selection__rendered .select2-selection__choice button:hover {
    background: 0 0;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: block;
}

.select2-container--default .select2-selection--multiple {
    cursor: text;
    padding-bottom: 0;
    padding-right: 0;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: rgba(0,167,172,.1);
    color: var(--title-color1);
}

.select2-selection__rendered {
    white-space: nowrap;
    overflow-x: scroll;
}

.select2-selection__rendered::-webkit-scrollbar {
    display: none;
}

.select-jobtag {
    padding-right: 15px;
}

.select-jobtag .select2-selection {
    border: 1px solid #fff!important;
}

.index-onload {
    min-width: 100%;
    min-height: 100%;
    position: fixed!important;
    z-index: 999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    overflow: hidden;
}

.section-title1 h2 {
    font-size: 1.5rem;
    /* font-weight: 700; */
    color: var(--title-color1);
    font-family: var(--font-exo2);
    line-height: 40px;
    margin-bottom: 20px;
    margin-top: 5px;
}

.section-title1 h2 span {
    color: var(--primary-color1);
    margin-left: 22px;
    font-weight: normal;
}

.section-title1 p {
    font-size: 1.125rem;
}



.lg-btn {
    padding: 2px 14px;
}

.primry-btn-1 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--title-color1);
    font-family: var(--font-exo2);
    display: flex;
    align-items: center;
    border: 1px solid #dfe9e5;
    background-color: var(--white);
    border-radius: 5px;
    position: relative;
    transition: .5s all ease;
    z-index: 1;
}

.primry-btn-1 svg {
    fill: var(--title-color1);
    margin-right: 8px;
    transition: .5s all ease;
}

.primry-btn-1::after {
    transition: .5s all ease;
    position: absolute;
    border-radius: 5px;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: "";
    background-color: #00a7ac;
    z-index: -1;
}

.primry-btn-1:hover {
    color: var(--white);
}

.primry-btn-1:hover svg {
    fill: var(--white);
}

.primry-btn-1:hover::after {
    transition: .5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
}

.primry-btn-2 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    font-family: var(--font-exo2);
    display: flex;
    align-items: center;
    border-radius: 5px;
    background-color: #00a7ac;
    position: relative;
    transition: .5s all ease;
    z-index: 1;
}

.primry-btn-2 svg {
    fill: var(--white);
    margin-left: 8px;
    /* margin-right: 8px; */
}

.primry-btn-2::before {
    transition: .5s all ease;
    position: absolute;
    border-radius: 5px;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: "";
    background-color: var(--title-color1);
    z-index: -1;
}

.primry-btn-2:hover {
    color: var(--white);
}

.primry-btn-2:hover svg {
    fill: var(--white);
}

.primry-btn-2:hover:before {
    transition: .5s all ease;
    left: 0;
    right: 0;
    opacity: .5;
}
/*手机版投稿图标*/
.show-menu .primry-btn-2 svg {
    margin-right: 8px;
}



.wrap{background: #eee;}
.wrap .navbar-header{padding: 4px 0;}
.wrap .navbar-header img{height: 28px;}

.journal-head{
	padding: 40px 10px;
	background: url(../images/head-bg.png) center;
	background-size: cover;
}
.journal-head .journal-head-bg{padding: 40px 0 35px;}




.style-1 {
    position: relative;
    width: 100%;
    z-index: 666;
    /* display: flex; */
    align-items: center;
    box-shadow: 2px 0px 5px rgba(145,109,64,.15);
}

.style-1.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 888;
    animation: smooth-header .65s linear;
    background-color: var(--white);

}
.style-1.sticky .wrap {
    display:none;
}
.style-1.sticky .header-main-logo {
    padding: 2px 0;
}
.style-1.sticky .article-search {
    margin-top: 40px;
}
.style-1.sticky .issn {
    display:none;
}
@keyframes smooth-header {
    0% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0px);
    }
}

.style-1.sticky .main-menu ul>li::before {
    /* top: -9px; */
}

.style-1.sticky .header-main-logo {
    /* display: none!important; */
    /* visibility: hidden!important; */
}

.style-1.sticky .header-logo {
    /* display: block!important; */
    /* visibility: visible!important; */
    /* padding: 0 110px; */
}

@media(max-width:1700px) {
    .style-1.sticky .header-logo {
        padding: 0 80px;
    }
}

@media(min-width:1400px) and (max-width:1599px) {
    .style-1.sticky .header-logo {
        padding: 0 38px;
    }
}

@media(max-width:1399px) {
    .style-1.sticky .header-logo {
        padding: 0 20px;
    }
}

@media(max-width:991px) {
    .style-1.sticky .header-logo {
        padding: 10px 3px;
    }
}

.style-1.sticky .top-bar {
    /* display: none!important; */
    /* visibility: hidden!important; */
}
/*
.style-1.sticky .menu-area {
    border-bottom: 1px solid #f1f1f1!important;
}
*/
.style-1 .header-main-logo {
    padding: 4px 15px;
}

@media(max-width:1700px) {
    .style-1 .header-main-logo {
        padding: 0 80px;
    }
}

@media(min-width:1400px) and (max-width:1599px) {
    .style-1 .header-main-logo {
        padding: 0 50px;
    }
}

@media(max-width:1399px) {
    .style-1 .header-main-logo {
        padding: 15px;
    }
}

.style-1 .mobile-logo-wrap img {
    max-width: 186px;
}









@media(max-width:991px) {
    .style-1 .menu-topbar-area .top-bar {
        display: none;
        visibility: hidden;
    }
}

@media(max-width:576px) {
    .style-1 .menu-topbar-area .top-bar {
        justify-content: center;
    }
}

.style-1 .menu-topbar-area .top-bar p {
    margin-bottom: 0;
    padding-left: 25px;
}

.style-1 .menu-topbar-area .top-bar p a {
    font-weight: 500;
    color: var(--primary-color1);
    padding-left: 5px;
}

@media(max-width:576px) {
    .style-1 .menu-topbar-area .top-bar p {
        display: none;
        visibility: hidden;
    }
}

.style-1 .menu-topbar-area .top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
    position: relative;
    z-index: 9;
    padding: 3px 0;
}

/*头部分享*/
.social-area{float:right;}

@media(max-width:991px) {
    .social-area {
        display: none;
        visibility: hidden;
    }
}

.social-area ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-area ul li a {
    height: 26px;
    width: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e39520;
    background-color: transparent;
    border-radius: 50%;
    transition: .35s;
    opacity: .8;
}

.social-area ul li a i {
    color: #e39520;
    transition: .35s;
}

.social-area ul li a:hover {
    background-color: #d2c179;
    border-color: #d2c179;
    opacity: 1;
}

.social-area ul li a:hover i {
    color: var(--white);
}

.style-1 .header-logo {
    padding: 10px 0;
}

@media(max-width:991px) {
    .style-1 .header-logo {
        width: 280px;
        padding: 10px 3px;
    }
}

.style-1 .header-logo img {
    min-width: 120px;
    max-width: 100%;
}

.style-1 .menu-close-btn i {
    color: var(--title-color1);
}

.style-1 .menu-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.style-1 .menu-area .header-logo {
    display: none;
    visibility: hidden;
}

@media(max-width:991px) {
    .style-1 .menu-area .header-logo {
        display: block;
        visibility: visible;
        /* padding-left: 20px; */
    }
}

.style-1 .menu-area .nav-right {
    gap: 24px;
}

@media(max-width:1500px) {
    .style-1 .menu-area .nav-right {
        gap: 15px;
    }
}

@media(max-width:991px) {
    .style-1 .menu-area .nav-right {
        justify-content: end!important;
    }
}

.style-1 .menu-area .nav-right ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

@media(max-width:1199px) {
    .style-1 .menu-area .nav-right ul {
        gap: 15px;
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .style-1 .menu-area .nav-right ul .lg-btn {
        padding: 8px 12px;
    }
}

.style-1 .menu-area .nav-right ul li .notifications-area {
    position: relative;
}

.style-1 .menu-area .nav-right ul li .notifications-area .notifacation-icon {
    height: 34px;
    width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eff1f0;
    border-radius: 50%;
    cursor: pointer;
}

.style-1 .menu-area .nav-right ul li .notifications-area .notifacation-icon svg {
    fill: var(--primary-color1);
}

.style-1 .menu-area .nav-right ul li .notifications-area span {
    height: 12px;
    width: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color1);
    color: var(--white);
    font-size: 10px;
    font-family: var(--font-work-sans);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.style-1 .menu-area .nav-right ul li .dropdown-toggle::after {
    display: none;
    visibility: hidden;
}

.style-1 .menu-area .nav-right .mobile-menu-btn {
    display: none;
    visibility: hidden;
}

.style-1 .menu-area .nav-right .mobile-menu-btn i {
    color: #e4be2a;
    font-size: 38px;
    margin-left: 5px;
}

@media(max-width:991px) {
    .style-1 .menu-area .nav-right .mobile-menu-btn {
        display: block;
        visibility: visible;
    }
}

.style-1 .main-menu {
    background: #e1ddd0;
    /* background: linear-gradient(335deg,#c5bba3,#a79b83); */
}

.style-1 .main-menu .mobile-menu-logo {
    display: none;
}

.style-1 .main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.style-1 .main-menu ul>li {
    display: inline-block;
    position: relative;
    padding: 0 8px;
}

@media(min-width:992px) and (max-width:1199px) {
    .style-1 .main-menu ul>li {
        padding: 0 8px;
    }
}

.style-1 .main-menu ul>li:hover i {
    color: var(--title-color1);
    font-size: 20px;
}

.style-1 .main-menu ul>li a {
    font-size: 1.15em;
    color: #333;
    display: block;
    padding: 9px 27px;
    transition: all .5s ease-out 0s;
    position: relative;
    font-family: 'SiYuanSong';
    /* font-weight: 600; */
}
.style-1 .main-menu-en ul>li a{padding: 9px 20px;font-size: 18px;}

@media(max-width:1500px) {
    .style-1 .main-menu ul>li a {
        padding: 10px 10px;
    }
}

@media(max-width:1442px) {
    .style-1 .main-menu ul>li a {
        font-size: 1.1rem;
        padding: 10px 10px;
    }
}

@media(max-width:991px) {
    .style-1 .main-menu ul>li a {
        padding: 25px 10px;
    }
}

.style-1 .main-menu ul>li i {
    font-size: 20px;
    text-align: center;
    color: var(--title-color1);
    font-style: normal;
    position: absolute;
    right: -5px;
    top: 15px;
    z-index: 999;
    cursor: pointer;
    display: none;
    transition: all .5s ease-out 0s;
    opacity: 0;
}

.style-1 .main-menu ul>li i.active {
    color: var(--primary-color1);
}

.style-1 .main-menu ul>li i.active::before {
    content: "\f2ea";
}

@media(max-width:991px) {
    .style-1 .main-menu ul>li i {
        opacity: 1;
    }
}

.style-1 .main-menu ul>li ul.sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    margin: 0;
    padding: 0 10px;
    opacity: 0;
    visibility: hidden;
    min-width: 160px;
    background: #ededed;
    text-align: left;
    transition: all .55s ease-in-out;
    transform: translateY(20px);
}

.style-1 .main-menu ul>li ul.sub-menu>li {
    padding: 0;
    display: block;
    position: relative;
    border-bottom: 1px #ddd dashed;
    text-align: center;
}

.style-1 .main-menu ul>li ul.sub-menu>li i {
    position: absolute;
    top: 10px;
    right: 6px;
    display: block;
    color: var(--title-color1);
    font-size: 20px;
}

.style-1 .main-menu ul>li ul.sub-menu>li .dropdown-icon {
    color: var(--title-color1);
    opacity: 1;
    top: 16px;
    font-size: 14px;
}

.style-1 .main-menu ul>li ul.sub-menu>li a {
    display: block;
    padding: 15px 15px;
    color: #333;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1;
    transition: all .4s ease-out 0s;
    position: relative;
}

.style-1 .main-menu ul>li ul.sub-menu>li a:hover {
    color: #9b7504;
}

.style-1 .main-menu ul>li ul.sub-menu>li a.active {
    color: var(--primary-color1);
}

.style-1 .main-menu ul>li ul.sub-menu>li .sub-menu {
    left: 215px;
    position: absolute;
    max-width: 230px;
    min-width: 215px;
    background: #0b0f14;
    top: 0;
}

@media only screen and (max-width:1199px) {
    .style-1 .main-menu ul>li ul.sub-menu>li .sub-menu {
        margin-left: 10px;
        position: unset;
        max-width: 230px;
        min-width: 215px;
        background: 0 0;
        top: 0;
    }
}

.style-1 .main-menu ul>li ul.sub-menu>li .sub-menu>li i {
    display: block;
}

.style-1 .main-menu ul>li ul.sub-menu>li:last-child {
    border-bottom: none;
}

.style-1 .main-menu ul>li.menu-item-has-children::after {
    content: "\f282";
    font-family: bootstrap-icons;
    font-weight: 400;
    position: absolute;
    top: 14px;
    right: 8px;
    font-size: 14px;
    color: #333;
}

@media(max-width:1500px) {
    .style-1 .main-menu ul>li.menu-item-has-children::after {
        right: 0;
        /* top: 32px; */
    }
}

@media(max-width:1399px) {
    .style-1 .main-menu ul>li.menu-item-has-children::after {
        right: -3px;
        /* top: 29px; */
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .style-1 .main-menu ul>li.menu-item-has-children::after {
        right: 0;
    }
}

@media(max-width:991px) {
    .style-1 .main-menu ul>li.menu-item-has-children::after {
        display: none;
        visibility: hidden;
    }
}

.style-1 .main-menu ul>li:hover>ul.sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.style-1 .main-menu ul>li::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .5s ease-out 0s;
    display: block;
    width: 90%;
    height: 2px;
    background: #97830c;
}

@media(max-width:991px) {
    .style-1 .main-menu ul>li::before {
        display: none;
        visibility: hidden;
    }
}

.style-1 .main-menu ul>li:hover>a {
    color: #97830c;
}

.style-1 .main-menu ul>li:hover::after {
    /* background: #9b7504; */
}

.style-1 .main-menu ul>li:hover::before {
    opacity: 1;
}

.style-1 .main-menu ul>li:hover .sub-menu li::before {
    opacity: 0;
}

.style-1 .main-menu ul>li.active>a {
    color: #9b7504;
}

.style-1 .main-menu ul>li.active::after {
    color: var(--primary-color1);
}

.style-1 .main-menu ul>li.active::before {
    opacity: 1;
}

.style-1 .main-menu ul li.menu-item-has-children>i {
    display: block;
}

@media only screen and (max-width:991px) {
    .style-1 .main-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        padding: 30px 20px!important;
        z-index: 99999;
        height: 100%;
        overflow: auto;
        background: var(--white);
        transform: translateX(-100%);
        transition: transform .3s ease-in;
        box-shadow: 0 2px 20px rgba(0,0,0,.03);
    }

    .style-1 .main-menu.show-menu {
        transform: translateX(0);
    }

    .style-1 .main-menu .mobile-menu-logo {
        text-align: left;
        padding-top: 20px;
        display: block;
        padding-bottom: 8px;
    }

    .style-1 .main-menu ul {
        float: none;
        text-align: left;
        padding: 20px 10px 35px 0;
    }

    .style-1 .main-menu ul li {
        display: block;
        position: relative;
        padding: 0 5px;
    }

    .style-1 .main-menu ul li i {
        display: block;
    }

    .style-1 .main-menu ul li a {
        padding: 10px 0;
        display: block;
        font-weight: 500;
        font-size: 1rem;
    }

    .style-1 .main-menu ul li ul.sub-menu {
        position: static;
        min-width: 200px;
        background: 0 0;
        border: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        transform: none;
        transition: none;
        display: none;
        margin-top: 0!important;
        transform: translateY(0px);
    }

    .style-1 .main-menu ul li ul.sub-menu>li {
        border-bottom: 1px solid transparent;
    }

    .style-1 .main-menu ul li ul.sub-menu>li a {
        color: var(--title-color1);
        font-size: 16px;
        font-weight: 500;
        padding: 12px 15px;
    }

    .style-1 .main-menu ul li ul.sub-menu>li a:hover {
        color: var(--primary-color1);
        margin-left: 10px;
    }

    .style-1 .main-menu ul li ul.sub-menu>li a.active {
        color: var(--primary-color1);
    }

    .style-1 .main-menu ul li ul.sub-menu>li i {
        color: var(--primary-color1);
        right: -13px;
    }

    .style-1 .main-menu ul li .bi {
        top: 8px;
        font-size: 20px;
    }

    .style-1 .mobile-menu {
        position: relative;
        top: 2px;
        padding: 0 5px;
        border-radius: 50%;
        display: inline-block;
    }

    .style-1 .cross-btn {
        display: inline-block!important;
        position: relative;
        width: 30px!important;
        height: 22px!important;
        cursor: pointer;
        border: 3px solid transparent!important;
    }

    .style-1 .cross-btn span {
        width: 100%;
        height: 2px;
        background: var(--primary-color1);
        display: block;
        position: absolute;
        right: 0;
        transition: all .3s;
    }

    .style-1 .cross-btn .cross-top {
        top: 0;
    }

    .style-1 .cross-btn .cross-middle {
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
    }

    .style-1 .cross-btn .cross-bottom {
        bottom: 0;
        width: 100%;
    }

    .style-1 .cross-btn.h-active span.cross-top {
        transform: rotate(45deg);
        top: 50%;
        margin-top: -1px;
    }

    .style-1 .cross-btn.h-active span.cross-middle {
        transform: translateX(-30px);
        opacity: 0;
    }

    .style-1 .cross-btn.h-active span.cross-bottom {
        transform: rotate(-45deg);
        bottom: 50%;
        margin-bottom: -1px;
    }

    .style-1 .social-area ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .style-1 .social-area ul li a {
        height: 30px;
        width: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--primary-color1);
        border-radius: 50%;
        transition: .35s;
    }

    .style-1 .social-area ul li a i {
        color: var(--white);
        transition: .35s;
        position: relative;
        left: 0;
        top: 0;
        margin-left: 0;
    }

    .style-1 .primry-btn-1 {
        justify-content: center;
    }

    .style-1 .primry-btn-2 {
        justify-content: center;
    }
}

/*顶部导航end*/


/*专题滚动*/
.swiper-btn1 {
    gap: 20px;
    color: #af9170;
}

.swiper-btn1 .right-btn {
    position: relative;
    cursor: pointer;
    transition: .25s;
}

.swiper-btn1 .right-btn::before {
    position: relative;
	right: 0;
    top: 3px;
    transition: .25s;
	
	text-align: center;
	border: 1px solid;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: block;
}

.swiper-btn1 .right-btn:hover::before {
    /* right: -4px; */
	color:#bdae44;
}

.swiper-btn1 .left-btn {
    position: relative;
    cursor: pointer;
    display: inline-block;
    margin-right: 0;
    transition: .25s;
}

.swiper-btn1 .left-btn::before {
    position: relative;
    right: 0;
    top: 3px;
    transition: .25s;
	text-align: center;
	border: 1px solid;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: block;
}

.swiper-btn1 .left-btn:hover::before {
    /* right: 4px; */
	color:#bdae44;
}



.home-zhuanti {
    background: #f8f8f8;
    padding: 50px 0;
}

.home-zhuanti .location-card .location-img {
    border-radius: 5px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: .35s;
	height:200px;
}
.home-zhuanti .location-card {
    margin-bottom: 15px;
}
.home-zhuanti .location-card .location-img img {
    border-radius: 5px;
    transition: .35s;
    height: 192px;
    width: 100%;
}

@media(max-width:576px) {
    .home-zhuanti .location-card .location-img img {
        width: 100%;
    }
}



.home-zhuanti .location-card .location-content h5 {
    margin-bottom: 5px;
}

.home-zhuanti .location-card .location-content h5 a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--title-color1);
    font-family: var(--font-exo2);
    transition: .35s;
}

.home-zhuanti .location-card .location-content h5 a img {
    width: 12px;
    margin-right: 8px;
}

.home-zhuanti .location-card .location-content h5 a:hover {
    color: var(--primary-color1);
}

.home-zhuanti .location-card .location-content p {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-color1);
    font-family: var(--font-exo2);
    margin-bottom: 0;
}

.home-zhuanti .location-card .location-content p span {
    color: var(--title-color1);
    font-weight: 600;
}

.home-zhuanti .location-card:hover .location-img img {
    transform: scale(1.1);
}
/*专题滚动end*/


/*推荐文章*/
@media(max-width:576px) {
    .home-tuijian .hot-slider1 {
        padding: 0 10px;
    }
}
.home-tuijian .testimonial-card {
    display: flex;
    /* align-items: center; */
    /* gap: 40px; */
    margin-bottom: 15px;
}

@media(max-width:576px) {
    .home-tuijian .testimonial-card {
        flex-wrap: wrap;
    }
}

.home-tuijian .testimonial-card .author-img {
    position: relative;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 15px;
}

.home-tuijian .testimonial-card .author-img img {
    border-radius: 6px;
    height: 120px;
    width: 242px;
}




.home-tuijian .testimonial-card .testimonial-content .author-review-area {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 8px;
}

.home-tuijian .testimonial-card .testimonial-content .author-review-area .author-area h5 {
    font-family: var(--font-exo2);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--title-color1);
    margin-bottom: 5px;
    margin-top: 0;
    line-height: 1.5;
}
.home-tuijian .testimonial-card .testimonial-content .author-review-area .author-area h5 a:hover {
    color: var(--primary-color1);
}

.home-tuijian .testimonial-card .testimonial-content .author-review-area .author-area span {
    font-family: var(--font-work-sans);
    font-weight: 400;
    font-size: 16px;
    color: var(--text-color1);
}
.home-tuijian .testimonial-card .testimonial-content .author-review-area .author-area span a {
    color: var(--primary-color1);
}

.home-tuijian .testimonial-card .testimonial-content .author-review-area ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.home-tuijian .testimonial-card .testimonial-content .author-review-area ul li i {
    font-size: 14px;
    color: #ebc500;
}

.home-tuijian .testimonial-card .testimonial-content p {
    font-size: 1rem;
    line-height: 1.5;
}

.swiper-btn-2 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.swiper-btn-2 .swiper-prev,.swiper-btn-2 .swiper-next {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid;
    border-color: rgba(0,167,172,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
    cursor: pointer;
}

.swiper-btn-2 .swiper-prev i,.swiper-btn-2 .swiper-next i {
    font-size: 20px;
    color: rgba(0,167,172,.5);
    transition: .35s;
}

.swiper-btn-2 .swiper-prev:hover,.swiper-btn-2 .swiper-next:hover {
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
}

.swiper-btn-2 .swiper-prev:hover i,.swiper-btn-2 .swiper-next:hover i {
    color: var(--white);
}

/*推荐文章end*/

/*友情链接滚动*/
.home-links {
    background-color: #eeece6;
    padding: 40px 0;
}

.home-links.two {
    background-color: transparent;
    padding: 0;
}

.home-links .section-title {
    margin-bottom: 15px;
}

.home-links .section-title h5 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--title-color1);
    font-family: var(--font-exo2);
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.home-links .section-title h5::after {
    content: "";
    width: 100px;
    height: 1px;
    background-color: #c9bdba;
    border-radius: 5px;
    position: absolute;
    top: 55%;
    right: -115px;
    transform: translateY(-50%);
}

.home-links.six {
    background-color: transparent;
    padding: 0;
}

.home-links.six .section-title {
    margin-bottom: 15px;
}

.home-links.six .section-title h5 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--white);
    font-family: var(--font-exo2);
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.home-links.six .section-title h5::after {
    content: "";
    width: 114px;
    height: 1px;
    background-color: rgba(0,167,172,.5);
    border-radius: 5px;
    position: absolute;
    top: 55%;
    right: -130px;
    transform: translateY(-50%);
}

.home-links .company-logo {
	text-align:center;
}

.home-links .company-logo img {
    display:block;
	height:50px!important;
    margin: 5px auto;
}

@media(max-width:576px) {
    .home-links .company-logo {
        justify-content: center;
    }
}

/*友情链接滚动end*/

/*底部*/
.footer {
    background: #dfd9c6;
    /* padding-top: 90px; */
    font-size: 15px;
    line-height: 180%;
}

.footer .bg-dark {
    background: #8f8567;
    color: #b5ab8b;
    padding: 5px;
	margin-top:20px;
}
.footer .bg-dark a {
    color: #b5ab8b;
}

@media(max-width:991px) {
    .footer .mb--30 {
        margin-bottom: 30px;
    }
}

@media(max-width:576px) {
    .footer .footer-widget {
        text-align: center;
    }
}

.footer .footer-widget .widget-title {
    margin-bottom: 25px;
}

@media(max-width:576px) {
    .footer .footer-widget .widget-title {
        text-align: center;
    }
}

.footer .footer-widget .widget-title h5 {
    font-family: var(--font-exo2);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 24px;
    color: var(--white);
    margin-bottom: 0;
}

.footer .footer-widget .menu-container ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer .footer-widget .menu-container ul li {
    margin-bottom: 12px;
}

.footer .footer-widget .menu-container ul li:last-child {
    margin-bottom: 0;
}

.footer .footer-widget .menu-container ul li a {
    font-family: var(--font-work-sans);
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    color: #b3b3b3;
    transition: .35s;
}

@media(max-width:576px) {
    .footer .footer-widget .menu-container ul li a {
        justify-content: center;
    }
}

.footer .footer-widget .menu-container ul li a i {
    opacity: 0;
    transition: .35s;
    padding-left: 2px;
    color: var(--primary-color1);
    transform: rotate(45deg);
    font-size: 20px;
    margin-top: -2px;
}

.footer .footer-widget .menu-container ul li a:hover {
    color: var(--primary-color1);
}

.footer .footer-widget .menu-container ul li a:hover i {
    opacity: 1;
    padding-left: 8px;
}


.footer .footer-btm {
    padding: 40px 0 10px;
    position: relative;
    color: #62511c;
}

.footer .footer-btm .footer-logo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a1a1a;
    border-radius: 50%;
    padding: 0 15px;
}

.footer .footer-btm .footer-logo.two {
    background-color: #000;
}

@media(max-width:991px) {
    .footer .footer-btm .footer-logo {
        display: none;
        visibility: hidden;
    }
}

.footer .footer-btm .support {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

@media(max-width:991px) {
    .footer .footer-btm .support {
        margin-bottom: 20px;
    }
}

@media(max-width:576px) {
    .footer .footer-btm .support {
        display: block;
    }
}

@media(max-width:576px) {
    .footer .footer-btm .support .icon {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }
}

.footer .footer-btm .support .content {
    display: flex;
    align-items: center;
    padding-left: 20px;
    position: relative;
}

@media(max-width:576px) {
    .footer .footer-btm .support .content {
        padding-left: 0;
    }
}

.footer .footer-btm .support .content::after {
    content: "";
    height: 20px;
    width: 1px;
    background-color: var(--primary-color1);
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

@media(max-width:576px) {
    .footer .footer-btm .support .content::after {
        display: none;
        visibility: hidden;
    }
}

.footer .footer-btm .support .content h5 {
    margin-bottom: 0;
    font-family: var(--font-exo2);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--white);
}

.footer .footer-btm .support .content a {
    font-family: var(--font-exo2);
    font-weight: 500;
    font-size: 1.25rem;
    text-decoration-line: underline;
    color: var(--primary-color1);
    padding-left: 25px;
    transition: .35s;
}

@media(max-width:576px) {
    .footer .footer-btm .support .content a {
        padding-left: 10px;
    }
}

.footer .footer-btm .support .content a:hover {
    color: #b3b3b3;
}

.footer .footer-btm .footer-btm-menu {
    padding-bottom: 40px;
}

.footer .footer-btm .footer-btm-menu ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 50px;
}

@media(max-width:1199px) {
    .footer .footer-btm .footer-btm-menu ul {
        gap: 25px;
    }
}

@media(max-width:576px) {
    .footer .footer-btm .footer-btm-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

.footer .footer-btm .footer-btm-menu ul li a {
    font-family: var(--font-exo2);
    font-weight: 500;
    font-size: 1rem;
    color: #b3b3b3;
    transition: .35s;
}

.footer .footer-btm .footer-btm-menu ul li a:hover {
    color: var(--primary-color1);
}

.footer .footer-btm .border-top {
    border-width: 1px;
    border-color: rgba(255,255,255,.1)!important;
}

@media(max-width:991px) {
    .footer .footer-btm .copyright-area {
        padding-top: 15px;
    }
}

.footer .footer-btm .copyright-area p {
    margin-bottom: 0;
    font-family: var(--font-work-sans);
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    /* color: var(--white); */
}

.footer .footer-btm .copyright-area p i {
    color: var(--white);
}

@media(max-width:576px) {
    .footer .footer-btm .copyright-area p {
        text-align: center;
    }
}

.footer .footer-btm .copyright-area p a {
    color: #fff;
    transition: .35s;
}

.footer .footer-btm .copyright-area p a:hover {
    color: rgba(255,255,255,.6);
}

.footer .footer-btm .social-area {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.footer .footer-btm .social-area h6 {
    font-family: var(--font-work-sans);
    font-weight: 500;
    font-size: 15px;
    line-height: 30px;
    color: var(--white);
    margin-bottom: 0;
}

.footer .footer-btm .social-area ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 15px;
}

.footer .footer-btm .social-area ul li a {
    height: 26px;
    width: 26px;
    border-radius: 50%;
    border: 1px solid #764612;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.footer .footer-btm .social-area ul li a i {
    color: var(--primary-color1);
    transition: .35s;
}

.footer .footer-btm .social-area ul li a:hover {
    background-color: var(--primary-color1);
}

.footer .footer-btm .social-area ul li a:hover i {
    color: var(--white);
}



.footer.five {
    background: #000;
}

.footer.five .footer-widget .menu-container ul li a i {
    color: #fff;
}

.footer.five .footer-widget .menu-container ul li a:hover {
    color: #f4f4f4;
}

.footer.five .footer-btm .footer-logo {
    background-color: #000;
    border-radius: 50%;
}

.footer.five .footer-btm .support .content::after {
    background-color: #fff;
}

.footer.five .footer-btm .support .content a {
    color: #fff;
    transition: .35s;
}

.footer.five .footer-btm .support .content a:hover {
    color: #b3b3b3;
}

.footer.five .footer-btm .footer-btm-menu ul li a:hover {
    color: #fff;
}

.footer.five .footer-btm .copyright-area p a {
    color: #fff;
}

.footer.five .footer-btm .social-area ul li a {
    border: 1px solid #242424;
}

.footer.five .footer-btm .social-area ul li a i {
    color: #fff;
    transition: .35s;
}

.footer.five .footer-btm .social-area ul li a:hover {
    background-color: #242424;
}
/*底部end*/




/*资讯切换------------------*/
.home1-featured-qkw-area {
    background: #f5f5f5;
    padding: 50px 0;
}

.home1-featured-qkw-area .tab-btn-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    gap: 10px;
}

.home1-featured-qkw-area .tab-btn-area .nav {
    justify-content: center;
    gap: 15px;
}

.home1-featured-qkw-area .tab-btn-area .nav .nav-item .nav-link {
    font-family: var(--font-exo2);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--title-color1);
    border: 1px solid rgba(0,167,172,.4);
    border-radius: 50px;
    background-color: rgba(0,167,172,.1);
    padding: 7px 21px
}

.home1-featured-qkw-area .tab-btn-area .nav .nav-item .nav-link:hover {
    color: var(--primary-color1);
    border: 1px solid #764612;
}

.home1-featured-qkw-area .tab-btn-area .nav .nav-item .nav-link.active {
    color: var(--white);
    background-color: var(--primary-color1);
    border: 1px solid #764612;
}


/*资讯切换*/






/*bootstrap5.0兼容*/


.justify-content-start {
    justify-content: flex-start!important;
}

.justify-content-end {
    justify-content: flex-end!important;
}

.justify-content-center {
    justify-content: center!important;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around!important;
}

.justify-content-evenly {
    justify-content: space-evenly!important;
}

.align-items-start {
    align-items: flex-start!important;
}

.align-items-end {
    align-items: flex-end!important;
}

.align-items-center {
    align-items: center!important;
}

.align-items-baseline {
    align-items: baseline!important;
}

.align-items-stretch {
    align-items: stretch!important;
}

.align-content-start {
    align-content: flex-start!important;
}

.align-content-end {
    align-content: flex-end!important;
}

.align-content-center {
    align-content: center!important;
}

.align-content-between {
    align-content: space-between!important;
}

.align-content-around {
    align-content: space-around!important;
}

.align-content-stretch {
    align-content: stretch!important;
}

.align-self-auto {
    align-self: auto!important;
}

.align-self-start {
    align-self: flex-start!important;
}

.align-self-end {
    align-self: flex-end!important;
}

.align-self-center {
    align-self: center!important;
}

.align-self-baseline {
    align-self: baseline!important;
}

.align-self-stretch {
    align-self: stretch!important;
}




.d-inline {
    display: inline!important;
}

.d-inline-block {
    display: inline-block!important;
}

.d-block {
    display: block!important;
}

.d-grid {
    display: grid!important;
}

.d-table {
    display: table!important;
}

.d-table-row {
    display: table-row!important;
}

.d-table-cell {
    display: table-cell!important;
}

.d-flex {
    display: flex!important;
}

.d-inline-flex {
    display: inline-flex!important;
}

.d-none {
    display: none!important;
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.shadow-none {
    box-shadow: none!important;
}

.position-static {
    position: static!important;
}

.position-relative {
    position: relative!important;
}

.position-absolute {
    position: absolute!important;
}

.position-fixed {
    position: fixed!important;
}

.position-sticky {
    position: -webkit-sticky!important;
    position: sticky!important;
}


@media (min-width:768px) {
    .float-md-start {
        float: left!important;
    }

    .float-md-end {
        float: right!important;
    }

    .float-md-none {
        float: none!important;
    }

    .d-md-inline {
        display: inline!important;
    }

    .d-md-inline-block {
        display: inline-block!important;
    }

    .d-md-block {
        display: block!important;
    }

    .d-md-grid {
        display: grid!important;
    }

    .d-md-table {
        display: table!important;
    }

    .d-md-table-row {
        display: table-row!important;
    }

    .d-md-table-cell {
        display: table-cell!important;
    }

    .d-md-flex {
        display: flex!important;
    }

    .d-md-inline-flex {
        display: inline-flex!important;
    }

    .d-md-none {
        display: none!important;
    }

    .flex-md-fill {
        flex: 1 1 auto!important;
    }

    .flex-md-row {
        flex-direction: row!important;
    }

    .flex-md-column {
        flex-direction: column!important;
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse!important;
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse!important;
    }

    .flex-md-grow-0 {
        flex-grow: 0!important;
    }

    .flex-md-grow-1 {
        flex-grow: 1!important;
    }

    .flex-md-shrink-0 {
        flex-shrink: 0!important;
    }

    .flex-md-shrink-1 {
        flex-shrink: 1!important;
    }

    .flex-md-wrap {
        flex-wrap: wrap!important;
    }

    .flex-md-nowrap {
        flex-wrap: nowrap!important;
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse!important;
    }

    .gap-md-0 {
        gap: 0!important;
    }

    .gap-md-1 {
        gap: .25rem!important;
    }

    .gap-md-2 {
        gap: .5rem!important;
    }

    .gap-md-3 {
        gap: 1rem!important;
    }

    .gap-md-4 {
        gap: 1.5rem!important;
    }

    .gap-md-5 {
        gap: 3rem!important;
    }

    .justify-content-md-start {
        justify-content: flex-start!important;
    }

    .justify-content-md-end {
        justify-content: flex-end!important;
    }

    .justify-content-md-center {
        justify-content: center!important;
    }

    

    .justify-content-md-around {
        justify-content: space-around!important;
    }

    .justify-content-md-evenly {
        justify-content: space-evenly!important;
    }

    .align-items-md-start {
        align-items: flex-start!important;
    }

    .align-items-md-end {
        align-items: flex-end!important;
    }

    .align-items-md-center {
        align-items: center!important;
    }

    .align-items-md-baseline {
        align-items: baseline!important;
    }

    .align-items-md-stretch {
        align-items: stretch!important;
    }

    .align-content-md-start {
        align-content: flex-start!important;
    }

    .align-content-md-end {
        align-content: flex-end!important;
    }

    .align-content-md-center {
        align-content: center!important;
    }

    .align-content-md-between {
        align-content: space-between!important;
    }

    .align-content-md-around {
        align-content: space-around!important;
    }

    .align-content-md-stretch {
        align-content: stretch!important;
    }

    .align-self-md-auto {
        align-self: auto!important;
    }

    .align-self-md-start {
        align-self: flex-start!important;
    }

    .align-self-md-end {
        align-self: flex-end!important;
    }

    .align-self-md-center {
        align-self: center!important;
    }

    .align-self-md-baseline {
        align-self: baseline!important;
    }

    .align-self-md-stretch {
        align-self: stretch!important;
    }

    .order-md-first {
        order: -1!important;
    }

    .order-md-0 {
        order: 0!important;
    }

    .order-md-1 {
        order: 1!important;
    }

    .order-md-2 {
        order: 2!important;
    }

    .order-md-3 {
        order: 3!important;
    }

    .order-md-4 {
        order: 4!important;
    }

    .order-md-5 {
        order: 5!important;
    }

    .order-md-last {
        order: 6!important;
    }

    .m-md-0 {
        margin: 0!important;
    }

    .m-md-1 {
        margin: .25rem!important;
    }

    .m-md-2 {
        margin: .5rem!important;
    }

    .m-md-3 {
        margin: 1rem!important;
    }

    .m-md-4 {
        margin: 1.5rem!important;
    }

    .m-md-5 {
        margin: 3rem!important;
    }

    .m-md-auto {
        margin: auto!important;
    }

    .mx-md-0 {
        margin-right: 0!important;
        margin-left: 0!important;
    }

    .mx-md-1 {
        margin-right: .25rem!important;
        margin-left: .25rem!important;
    }

    .mx-md-2 {
        margin-right: .5rem!important;
        margin-left: .5rem!important;
    }

    .mx-md-3 {
        margin-right: 1rem!important;
        margin-left: 1rem!important;
    }

    .mx-md-4 {
        margin-right: 1.5rem!important;
        margin-left: 1.5rem!important;
    }

    .mx-md-5 {
        margin-right: 3rem!important;
        margin-left: 3rem!important;
    }

    .mx-md-auto {
        margin-right: auto!important;
        margin-left: auto!important;
    }

    .my-md-0 {
        margin-top: 0!important;
        margin-bottom: 0!important;
    }

    .my-md-1 {
        margin-top: .25rem!important;
        margin-bottom: .25rem!important;
    }

    .my-md-2 {
        margin-top: .5rem!important;
        margin-bottom: .5rem!important;
    }

    .my-md-3 {
        margin-top: 1rem!important;
        margin-bottom: 1rem!important;
    }

    .my-md-4 {
        margin-top: 1.5rem!important;
        margin-bottom: 1.5rem!important;
    }

    .my-md-5 {
        margin-top: 3rem!important;
        margin-bottom: 3rem!important;
    }

    .my-md-auto {
        margin-top: auto!important;
        margin-bottom: auto!important;
    }

    .mt-md-0 {
        margin-top: 0!important;
    }

    .mt-md-1 {
        margin-top: .25rem!important;
    }

    .mt-md-2 {
        margin-top: .5rem!important;
    }

    .mt-md-3 {
        margin-top: 1rem!important;
    }

    .mt-md-4 {
        margin-top: 1.5rem!important;
    }

    .mt-md-5 {
        margin-top: 3rem!important;
    }

    .mt-md-auto {
        margin-top: auto!important;
    }

    .me-md-0 {
        margin-right: 0!important;
    }

    .me-md-1 {
        margin-right: .25rem!important;
    }

    .me-md-2 {
        margin-right: .5rem!important;
    }

    .me-md-3 {
        margin-right: 1rem!important;
    }

    .me-md-4 {
        margin-right: 1.5rem!important;
    }

    .me-md-5 {
        margin-right: 3rem!important;
    }

    .me-md-auto {
        margin-right: auto!important;
    }

    .mb-md-0 {
        margin-bottom: 0!important;
    }

    .mb-md-1 {
        margin-bottom: .25rem!important;
    }

    .mb-md-2 {
        margin-bottom: .5rem!important;
    }

    .mb-md-3 {
        margin-bottom: 1rem!important;
    }

    .mb-md-4 {
        margin-bottom: 1.5rem!important;
    }

    .mb-md-5 {
        margin-bottom: 3rem!important;
    }

    .mb-md-auto {
        margin-bottom: auto!important;
    }

    .ms-md-0 {
        margin-left: 0!important;
    }

    .ms-md-1 {
        margin-left: .25rem!important;
    }

    .ms-md-2 {
        margin-left: .5rem!important;
    }

    .ms-md-3 {
        margin-left: 1rem!important;
    }

    .ms-md-4 {
        margin-left: 1.5rem!important;
    }

    .ms-md-5 {
        margin-left: 3rem!important;
    }

    .ms-md-auto {
        margin-left: auto!important;
    }

    .p-md-0 {
        padding: 0!important;
    }

    .p-md-1 {
        padding: .25rem!important;
    }

    .p-md-2 {
        padding: .5rem!important;
    }

    .p-md-3 {
        padding: 1rem!important;
    }

    .p-md-4 {
        padding: 1.5rem!important;
    }

    .p-md-5 {
        padding: 3rem!important;
    }

    .px-md-0 {
        padding-right: 0!important;
        padding-left: 0!important;
    }

    .px-md-1 {
        padding-right: .25rem!important;
        padding-left: .25rem!important;
    }

    .px-md-2 {
        padding-right: .5rem!important;
        padding-left: .5rem!important;
    }

    .px-md-3 {
        padding-right: 1rem!important;
        padding-left: 1rem!important;
    }

    .px-md-4 {
        padding-right: 1.5rem!important;
        padding-left: 1.5rem!important;
    }

    .px-md-5 {
        padding-right: 3rem!important;
        padding-left: 3rem!important;
    }

    .py-md-0 {
        padding-top: 0!important;
        padding-bottom: 0!important;
    }

    .py-md-1 {
        padding-top: .25rem!important;
        padding-bottom: .25rem!important;
    }

    .py-md-2 {
        padding-top: .5rem!important;
        padding-bottom: .5rem!important;
    }

    .py-md-3 {
        padding-top: 1rem!important;
        padding-bottom: 1rem!important;
    }

    .py-md-4 {
        padding-top: 1.5rem!important;
        padding-bottom: 1.5rem!important;
    }

    .py-md-5 {
        padding-top: 3rem!important;
        padding-bottom: 3rem!important;
    }

    .pt-md-0 {
        padding-top: 0!important;
    }

    .pt-md-1 {
        padding-top: .25rem!important;
    }

    .pt-md-2 {
        padding-top: .5rem!important;
    }

    .pt-md-3 {
        padding-top: 1rem!important;
    }

    .pt-md-4 {
        padding-top: 1.5rem!important;
    }

    .pt-md-5 {
        padding-top: 3rem!important;
    }

    .pe-md-0 {
        padding-right: 0!important;
    }

    .pe-md-1 {
        padding-right: .25rem!important;
    }

    .pe-md-2 {
        padding-right: .5rem!important;
    }

    .pe-md-3 {
        padding-right: 1rem!important;
    }

    .pe-md-4 {
        padding-right: 1.5rem!important;
    }

    .pe-md-5 {
        padding-right: 3rem!important;
    }

    .pb-md-0 {
        padding-bottom: 0!important;
    }

    .pb-md-1 {
        padding-bottom: .25rem!important;
    }

    .pb-md-2 {
        padding-bottom: .5rem!important;
    }

    .pb-md-3 {
        padding-bottom: 1rem!important;
    }

    .pb-md-4 {
        padding-bottom: 1.5rem!important;
    }

    .pb-md-5 {
        padding-bottom: 3rem!important;
    }

    .ps-md-0 {
        padding-left: 0!important;
    }

    .ps-md-1 {
        padding-left: .25rem!important;
    }

    .ps-md-2 {
        padding-left: .5rem!important;
    }

    .ps-md-3 {
        padding-left: 1rem!important;
    }

    .ps-md-4 {
        padding-left: 1.5rem!important;
    }

    .ps-md-5 {
        padding-left: 3rem!important;
    }

    .text-md-start {
        text-align: left!important;
    }

    .text-md-end {
        text-align: right!important;
    }

    .text-md-center {
        text-align: center!important;
    }
}
@media (min-width:992px) {
    .float-lg-start {
        float: left!important;
    }

    .float-lg-end {
        float: right!important;
    }

    .float-lg-none {
        float: none!important;
    }

    .d-lg-inline {
        display: inline!important;
    }

    .d-lg-inline-block {
        display: inline-block!important;
    }

    .d-lg-block {
        display: block!important;
    }

    .d-lg-grid {
        display: grid!important;
    }

    .d-lg-table {
        display: table!important;
    }

    .d-lg-table-row {
        display: table-row!important;
    }

    .d-lg-table-cell {
        display: table-cell!important;
    }

    .d-lg-flex {
        display: flex!important;
    }

    .d-lg-inline-flex {
        display: inline-flex!important;
    }

    .d-lg-none {
        display: none!important;
    }

    .flex-lg-fill {
        flex: 1 1 auto!important;
    }

    .flex-lg-row {
        flex-direction: row!important;
    }

    .flex-lg-column {
        flex-direction: column!important;
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse!important;
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse!important;
    }

    .flex-lg-grow-0 {
        flex-grow: 0!important;
    }

    .flex-lg-grow-1 {
        flex-grow: 1!important;
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0!important;
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1!important;
    }

    .flex-lg-wrap {
        flex-wrap: wrap!important;
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap!important;
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse!important;
    }

    .gap-lg-0 {
        gap: 0!important;
    }

    .gap-lg-1 {
        gap: .25rem!important;
    }

    .gap-lg-2 {
        gap: .5rem!important;
    }

    .gap-lg-3 {
        gap: 1rem!important;
    }

    .gap-lg-4 {
        gap: 1.5rem!important;
    }

    .gap-lg-5 {
        gap: 3rem!important;
    }

    .justify-content-lg-start {
        justify-content: flex-start!important;
    }

    .justify-content-lg-end {
        justify-content: flex-end!important;
    }

    .justify-content-lg-center {
        justify-content: center!important;
    }

    .justify-content-lg-between {
        justify-content: space-between!important;
    }

    .justify-content-lg-around {
        justify-content: space-around!important;
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly!important;
    }

    .align-items-lg-start {
        align-items: flex-start!important;
    }

    .align-items-lg-end {
        align-items: flex-end!important;
    }

    .align-items-lg-center {
        align-items: center!important;
    }

    .align-items-lg-baseline {
        align-items: baseline!important;
    }

    .align-items-lg-stretch {
        align-items: stretch!important;
    }

    .align-content-lg-start {
        align-content: flex-start!important;
    }

    .align-content-lg-end {
        align-content: flex-end!important;
    }

    .align-content-lg-center {
        align-content: center!important;
    }

    .align-content-lg-between {
        align-content: space-between!important;
    }

    .align-content-lg-around {
        align-content: space-around!important;
    }

    .align-content-lg-stretch {
        align-content: stretch!important;
    }

    .align-self-lg-auto {
        align-self: auto!important;
    }

    .align-self-lg-start {
        align-self: flex-start!important;
    }

    .align-self-lg-end {
        align-self: flex-end!important;
    }

    .align-self-lg-center {
        align-self: center!important;
    }

    .align-self-lg-baseline {
        align-self: baseline!important;
    }

    .align-self-lg-stretch {
        align-self: stretch!important;
    }

    .order-lg-first {
        order: -1!important;
    }

    .order-lg-0 {
        order: 0!important;
    }

    .order-lg-1 {
        order: 1!important;
    }

    .order-lg-2 {
        order: 2!important;
    }

    .order-lg-3 {
        order: 3!important;
    }

    .order-lg-4 {
        order: 4!important;
    }

    .order-lg-5 {
        order: 5!important;
    }

    .order-lg-last {
        order: 6!important;
    }

    .m-lg-0 {
        margin: 0!important;
    }

    .m-lg-1 {
        margin: .25rem!important;
    }

    .m-lg-2 {
        margin: .5rem!important;
    }

    .m-lg-3 {
        margin: 1rem!important;
    }

    .m-lg-4 {
        margin: 1.5rem!important;
    }

    .m-lg-5 {
        margin: 3rem!important;
    }

    .m-lg-auto {
        margin: auto!important;
    }

    .mx-lg-0 {
        margin-right: 0!important;
        margin-left: 0!important;
    }

    .mx-lg-1 {
        margin-right: .25rem!important;
        margin-left: .25rem!important;
    }

    .mx-lg-2 {
        margin-right: .5rem!important;
        margin-left: .5rem!important;
    }

    .mx-lg-3 {
        margin-right: 1rem!important;
        margin-left: 1rem!important;
    }

    .mx-lg-4 {
        margin-right: 1.5rem!important;
        margin-left: 1.5rem!important;
    }

    .mx-lg-5 {
        margin-right: 3rem!important;
        margin-left: 3rem!important;
    }

    .mx-lg-auto {
        margin-right: auto!important;
        margin-left: auto!important;
    }

    .my-lg-0 {
        margin-top: 0!important;
        margin-bottom: 0!important;
    }

    .my-lg-1 {
        margin-top: .25rem!important;
        margin-bottom: .25rem!important;
    }

    .my-lg-2 {
        margin-top: .5rem!important;
        margin-bottom: .5rem!important;
    }

    .my-lg-3 {
        margin-top: 1rem!important;
        margin-bottom: 1rem!important;
    }

    .my-lg-4 {
        margin-top: 1.5rem!important;
        margin-bottom: 1.5rem!important;
    }

    .my-lg-5 {
        margin-top: 3rem!important;
        margin-bottom: 3rem!important;
    }

    .my-lg-auto {
        margin-top: auto!important;
        margin-bottom: auto!important;
    }

    .mt-lg-0 {
        margin-top: 0!important;
    }

    .mt-lg-1 {
        margin-top: .25rem!important;
    }

    .mt-lg-2 {
        margin-top: .5rem!important;
    }

    .mt-lg-3 {
        margin-top: 1rem!important;
    }

    .mt-lg-4 {
        margin-top: 1.5rem!important;
    }

    .mt-lg-5 {
        margin-top: 3rem!important;
    }

    .mt-lg-auto {
        margin-top: auto!important;
    }

    .me-lg-0 {
        margin-right: 0!important;
    }

    .me-lg-1 {
        margin-right: .25rem!important;
    }

    .me-lg-2 {
        margin-right: .5rem!important;
    }

    .me-lg-3 {
        margin-right: 1rem!important;
    }

    .me-lg-4 {
        margin-right: 1.5rem!important;
    }

    .me-lg-5 {
        margin-right: 3rem!important;
    }

    .me-lg-auto {
        margin-right: auto!important;
    }

    .mb-lg-0 {
        margin-bottom: 0!important;
    }

    .mb-lg-1 {
        margin-bottom: .25rem!important;
    }

    .mb-lg-2 {
        margin-bottom: .5rem!important;
    }

    .mb-lg-3 {
        margin-bottom: 1rem!important;
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem!important;
    }

    .mb-lg-5 {
        margin-bottom: 3rem!important;
    }

    .mb-lg-auto {
        margin-bottom: auto!important;
    }


    .ms-lg-0 {
        margin-left: 0!important;
    }

    .ms-lg-1 {
        margin-left: .25rem!important;
    }

    .ms-lg-2 {
        margin-left: .5rem!important;
    }

    .ms-lg-3 {
        margin-left: 1rem!important;
    }

    .ms-lg-4 {
        margin-left: 1.5rem!important;
    }

    .ms-lg-5 {
        margin-left: 3rem!important;
    }

    .ms-lg-auto {
        margin-left: auto!important;
    }

    .p-lg-0 {
        padding: 0!important;
    }

    .p-lg-1 {
        padding: .25rem!important;
    }

    .p-lg-2 {
        padding: .5rem!important;
    }

    .p-lg-3 {
        padding: 1rem!important;
    }

    .p-lg-4 {
        padding: 1.5rem!important;
    }

    .p-lg-5 {
        padding: 3rem!important;
    }

    .px-lg-0 {
        padding-right: 0!important;
        padding-left: 0!important;
    }

    .px-lg-1 {
        padding-right: .25rem!important;
        padding-left: .25rem!important;
    }

    .px-lg-2 {
        padding-right: .5rem!important;
        padding-left: .5rem!important;
    }

    .px-lg-3 {
        padding-right: 1rem!important;
        padding-left: 1rem!important;
    }

    .px-lg-4 {
        padding-right: 1.5rem!important;
        padding-left: 1.5rem!important;
    }

    .px-lg-5 {
        padding-right: 3rem!important;
        padding-left: 3rem!important;
    }

    .py-lg-0 {
        padding-top: 0!important;
        padding-bottom: 0!important;
    }

    .py-lg-1 {
        padding-top: .25rem!important;
        padding-bottom: .25rem!important;
    }

    .py-lg-2 {
        padding-top: .5rem!important;
        padding-bottom: .5rem!important;
    }

    .py-lg-3 {
        padding-top: 1rem!important;
        padding-bottom: 1rem!important;
    }

    .py-lg-4 {
        padding-top: 1.5rem!important;
        padding-bottom: 1.5rem!important;
    }

    .py-lg-5 {
        padding-top: 3rem!important;
        padding-bottom: 3rem!important;
    }

    .pt-lg-0 {
        padding-top: 0!important;
    }

    .pt-lg-1 {
        padding-top: .25rem!important;
    }

    .pt-lg-2 {
        padding-top: .5rem!important;
    }

    .pt-lg-3 {
        padding-top: 1rem!important;
    }

    .pt-lg-4 {
        padding-top: 1.5rem!important;
    }

    .pt-lg-5 {
        padding-top: 3rem!important;
    }

    .pe-lg-0 {
        padding-right: 0!important;
    }

    .pe-lg-1 {
        padding-right: .25rem!important;
    }

    .pe-lg-2 {
        padding-right: .5rem!important;
    }

    .pe-lg-3 {
        padding-right: 1rem!important;
    }

    .pe-lg-4 {
        padding-right: 1.5rem!important;
    }

    .pe-lg-5 {
        padding-right: 3rem!important;
    }

    .pb-lg-0 {
        padding-bottom: 0!important;
    }

    .pb-lg-1 {
        padding-bottom: .25rem!important;
    }

    .pb-lg-2 {
        padding-bottom: .5rem!important;
    }

    .pb-lg-3 {
        padding-bottom: 1rem!important;
    }

    .pb-lg-4 {
        padding-bottom: 1.5rem!important;
    }

    .pb-lg-5 {
        padding-bottom: 3rem!important;
    }

    .ps-lg-0 {
        padding-left: 0!important;
    }

    .ps-lg-1 {
        padding-left: .25rem!important;
    }

    .ps-lg-2 {
        padding-left: .5rem!important;
    }

    .ps-lg-3 {
        padding-left: 1rem!important;
    }

    .ps-lg-4 {
        padding-left: 1.5rem!important;
    }

    .ps-lg-5 {
        padding-left: 3rem!important;
    }

    .text-lg-start {
        text-align: left!important;
    }

    .text-lg-end {
        text-align: right!important;
    }

    .text-lg-center {
        text-align: center!important;
    }
}

.img-fluid {
    max-width: 100%;
    height: auto;
}
@media (min-width:1200px) {
    .float-xl-start {
        float: left!important;
    }

    .float-xl-end {
        float: right!important;
    }

    .float-xl-none {
        float: none!important;
    }

    .d-xl-inline {
        display: inline!important;
    }

    .d-xl-inline-block {
        display: inline-block!important;
    }

    .d-xl-block {
        display: block!important;
    }

    .d-xl-grid {
        display: grid!important;
    }

    .d-xl-table {
        display: table!important;
    }

    .d-xl-table-row {
        display: table-row!important;
    }

    .d-xl-table-cell {
        display: table-cell!important;
    }

    .d-xl-flex {
        display: flex!important;
    }

    .d-xl-inline-flex {
        display: inline-flex!important;
    }

    .d-xl-none {
        display: none!important;
    }

    .flex-xl-fill {
        flex: 1 1 auto!important;
    }

    .flex-xl-row {
        flex-direction: row!important;
    }

    .flex-xl-column {
        flex-direction: column!important;
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse!important;
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse!important;
    }

    .flex-xl-grow-0 {
        flex-grow: 0!important;
    }

    .flex-xl-grow-1 {
        flex-grow: 1!important;
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0!important;
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1!important;
    }

    .flex-xl-wrap {
        flex-wrap: wrap!important;
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap!important;
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse!important;
    }

    .gap-xl-0 {
        gap: 0!important;
    }

    .gap-xl-1 {
        gap: .25rem!important;
    }

    .gap-xl-2 {
        gap: .5rem!important;
    }

    .gap-xl-3 {
        gap: 1rem!important;
    }

    .gap-xl-4 {
        gap: 1.5rem!important;
    }

    .gap-xl-5 {
        gap: 3rem!important;
    }

    .justify-content-xl-start {
        justify-content: flex-start!important;
    }

    .justify-content-xl-end {
        justify-content: flex-end!important;
    }

    .justify-content-xl-center {
        justify-content: center!important;
    }

    .justify-content-xl-between {
        justify-content: space-between!important;
    }

    .justify-content-xl-around {
        justify-content: space-around!important;
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly!important;
    }

    .align-items-xl-start {
        align-items: flex-start!important;
    }

    .align-items-xl-end {
        align-items: flex-end!important;
    }

    .align-items-xl-center {
        align-items: center!important;
    }

    .align-items-xl-baseline {
        align-items: baseline!important;
    }

    .align-items-xl-stretch {
        align-items: stretch!important;
    }

    .align-content-xl-start {
        align-content: flex-start!important;
    }

    .align-content-xl-end {
        align-content: flex-end!important;
    }

    .align-content-xl-center {
        align-content: center!important;
    }

    .align-content-xl-between {
        align-content: space-between!important;
    }

    .align-content-xl-around {
        align-content: space-around!important;
    }

    .align-content-xl-stretch {
        align-content: stretch!important;
    }

    .align-self-xl-auto {
        align-self: auto!important;
    }

    .align-self-xl-start {
        align-self: flex-start!important;
    }

    .align-self-xl-end {
        align-self: flex-end!important;
    }

    .align-self-xl-center {
        align-self: center!important;
    }

    .align-self-xl-baseline {
        align-self: baseline!important;
    }

    .align-self-xl-stretch {
        align-self: stretch!important;
    }

    .order-xl-first {
        order: -1!important;
    }

    .order-xl-0 {
        order: 0!important;
    }

    .order-xl-1 {
        order: 1!important;
    }

    .order-xl-2 {
        order: 2!important;
    }

    .order-xl-3 {
        order: 3!important;
    }


    .order-xl-4 {
        order: 4!important;
    }

    .order-xl-5 {
        order: 5!important;
    }

    .order-xl-last {
        order: 6!important;
    }

    .m-xl-0 {
        margin: 0!important;
    }

    .m-xl-1 {
        margin: .25rem!important;
    }

    .m-xl-2 {
        margin: .5rem!important;
    }

    .m-xl-3 {
        margin: 1rem!important;
    }

    .m-xl-4 {
        margin: 1.5rem!important;
    }

    .m-xl-5 {
        margin: 3rem!important;
    }

    .m-xl-auto {
        margin: auto!important;
    }

    .mx-xl-0 {
        margin-right: 0!important;
        margin-left: 0!important;
    }

    .mx-xl-1 {
        margin-right: .25rem!important;
        margin-left: .25rem!important;
    }

    .mx-xl-2 {
        margin-right: .5rem!important;
        margin-left: .5rem!important;
    }

    .mx-xl-3 {
        margin-right: 1rem!important;
        margin-left: 1rem!important;
    }

    .mx-xl-4 {
        margin-right: 1.5rem!important;
        margin-left: 1.5rem!important;
    }

    .mx-xl-5 {
        margin-right: 3rem!important;
        margin-left: 3rem!important;
    }

    .mx-xl-auto {
        margin-right: auto!important;
        margin-left: auto!important;
    }

    .my-xl-0 {
        margin-top: 0!important;
        margin-bottom: 0!important;
    }

    .my-xl-1 {
        margin-top: .25rem!important;
        margin-bottom: .25rem!important;
    }

    .my-xl-2 {
        margin-top: .5rem!important;
        margin-bottom: .5rem!important;
    }

    .my-xl-3 {
        margin-top: 1rem!important;
        margin-bottom: 1rem!important;
    }

    .my-xl-4 {
        margin-top: 1.5rem!important;
        margin-bottom: 1.5rem!important;
    }

    .my-xl-5 {
        margin-top: 3rem!important;
        margin-bottom: 3rem!important;
    }

    .my-xl-auto {
        margin-top: auto!important;
        margin-bottom: auto!important;
    }

    .mt-xl-0 {
        margin-top: 0!important;
    }

    .mt-xl-1 {
        margin-top: .25rem!important;
    }

    .mt-xl-2 {
        margin-top: .5rem!important;
    }

    .mt-xl-3 {
        margin-top: 1rem!important;
    }

    .mt-xl-4 {
        margin-top: 1.5rem!important;
    }

    .mt-xl-5 {
        margin-top: 3rem!important;
    }

    .mt-xl-auto {
        margin-top: auto!important;
    }

    .me-xl-0 {
        margin-right: 0!important;
    }

    .me-xl-1 {
        margin-right: .25rem!important;
    }

    .me-xl-2 {
        margin-right: .5rem!important;
    }

    .me-xl-3 {
        margin-right: 1rem!important;
    }

    .me-xl-4 {
        margin-right: 1.5rem!important;
    }

    .me-xl-5 {
        margin-right: 3rem!important;
    }

    .me-xl-auto {
        margin-right: auto!important;
    }

    .mb-xl-0 {
        margin-bottom: 0!important;
    }

    .mb-xl-1 {
        margin-bottom: .25rem!important;
    }

    .mb-xl-2 {
        margin-bottom: .5rem!important;
    }

    .mb-xl-3 {
        margin-bottom: 1rem!important;
    }

    .mb-xl-4 {
        margin-bottom: 1.5rem!important;
    }

    .mb-xl-5 {
        margin-bottom: 3rem!important;
    }

    .mb-xl-auto {
        margin-bottom: auto!important;
    }

    .ms-xl-0 {
        margin-left: 0!important;
    }

    .ms-xl-1 {
        margin-left: .25rem!important;
    }

    .ms-xl-2 {
        margin-left: .5rem!important;
    }

    .ms-xl-3 {
        margin-left: 1rem!important;
    }

    .ms-xl-4 {
        margin-left: 1.5rem!important;
    }

    .ms-xl-5 {
        margin-left: 3rem!important;
    }

    .ms-xl-auto {
        margin-left: auto!important;
    }

    .p-xl-0 {
        padding: 0!important;
    }

    .p-xl-1 {
        padding: .25rem!important;
    }

    .p-xl-2 {
        padding: .5rem!important;
    }

    .p-xl-3 {
        padding: 1rem!important;
    }

    .p-xl-4 {
        padding: 1.5rem!important;
    }

    .p-xl-5 {
        padding: 3rem!important;
    }

    .px-xl-0 {
        padding-right: 0!important;
        padding-left: 0!important;
    }

    .px-xl-1 {
        padding-right: .25rem!important;
        padding-left: .25rem!important;
    }

    .px-xl-2 {
        padding-right: .5rem!important;
        padding-left: .5rem!important;
    }

    .px-xl-3 {
        padding-right: 1rem!important;
        padding-left: 1rem!important;
    }

    .px-xl-4 {
        padding-right: 1.5rem!important;
        padding-left: 1.5rem!important;
    }

    .px-xl-5 {
        padding-right: 3rem!important;
        padding-left: 3rem!important;
    }

    .py-xl-0 {
        padding-top: 0!important;
        padding-bottom: 0!important;
    }

    .py-xl-1 {
        padding-top: .25rem!important;
        padding-bottom: .25rem!important;
    }

    .py-xl-2 {
        padding-top: .5rem!important;
        padding-bottom: .5rem!important;
    }

    .py-xl-3 {
        padding-top: 1rem!important;
        padding-bottom: 1rem!important;
    }

    .py-xl-4 {
        padding-top: 1.5rem!important;
        padding-bottom: 1.5rem!important;
    }

    .py-xl-5 {
        padding-top: 3rem!important;
        padding-bottom: 3rem!important;
    }

    .pt-xl-0 {
        padding-top: 0!important;
    }

    .pt-xl-1 {
        padding-top: .25rem!important;
    }

    .pt-xl-2 {
        padding-top: .5rem!important;
    }

    .pt-xl-3 {
        padding-top: 1rem!important;
    }

    .pt-xl-4 {
        padding-top: 1.5rem!important;
    }

    .pt-xl-5 {
        padding-top: 3rem!important;
    }

    .pe-xl-0 {
        padding-right: 0!important;
    }

    .pe-xl-1 {
        padding-right: .25rem!important;
    }

    .pe-xl-2 {
        padding-right: .5rem!important;
    }

    .pe-xl-3 {
        padding-right: 1rem!important;
    }

    .pe-xl-4 {
        padding-right: 1.5rem!important;
    }

    .pe-xl-5 {
        padding-right: 3rem!important;
    }

    .pb-xl-0 {
        padding-bottom: 0!important;
    }

    .pb-xl-1 {
        padding-bottom: .25rem!important;
    }

    .pb-xl-2 {
        padding-bottom: .5rem!important;
    }

    .pb-xl-3 {
        padding-bottom: 1rem!important;
    }

    .pb-xl-4 {
        padding-bottom: 1.5rem!important;
    }

    .pb-xl-5 {
        padding-bottom: 3rem!important;
    }

    .ps-xl-0 {
        padding-left: 0!important;
    }

    .ps-xl-1 {
        padding-left: .25rem!important;
    }

    .ps-xl-2 {
        padding-left: .5rem!important;
    }

    .ps-xl-3 {
        padding-left: 1rem!important;
    }

    .ps-xl-4 {
        padding-left: 1.5rem!important;
    }

    .ps-xl-5 {
        padding-left: 3rem!important;
    }

    .text-xl-start {
        text-align: left!important;
    }

    .text-xl-end {
        text-align: right!important;
    }

    .text-xl-center {
        text-align: center!important;
    }
}

/*兼容end*/


.zhezhao{
    border-radius: 4px;
    width: 100%;
    height: 75%;
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg,transparent,rgba(251,242,235,.8));
}
.swiper {
    z-index: 0;
	padding-left:15px;
	padding-right:15px;
}


.fade {
    opacity: 1;
}
.nav-pills li {
    margin: 8px 15px;
	
}.nav-pills>li+li {
    margin: 8px 15px;
}




/*综述*/


.sdgs-liebiao{}
.sdgs-beijing{background:url(../images/sdgs-bg.png) no-repeat top center;background-size: cover;}
.zhuanti{color:#fff;font-size: 24px;font-weight: bold;overflow: hidden;margin-bottom:20px;line-height: 1.6;}
.white-box-shadow{position: relative;margin-bottom: 7px;}
.white-box-shadow img{position: relative;max-height: 133px;overflow: hidden;margin: 0 auto;}
.white-box-shadow .border-right{height: 96%;}
.sdgs-biaoti{
    display: block;
    text-align: center;
    color: #fff;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sdgs-biaoti:hover{
    color: #edef91;
}
.sdgs-liebiao li{margin: 10px 0;}
.more{font-size: 14px; color:#fff;float: right;}
.sdgs-more a{color:#fff;margin-bottom: 10px;}


.zongshu-bg{background:#e5f6f7;padding: 30px 0;}
.zongshu{padding-right:36px;}
.zongsu{color:#302a29;}

/*检索*/
.article-search .input-group{width: 320px;float: left;}
.article-search .adv-search{float: right;margin-left: 10px;}
.article-search .adv-search a{display: inline-block;background: rgb(223 185 94 / 92%);border-radius: 4px;color: #fff;font-size: 15px;padding: 0 10px;height: 37px;line-height: 37px;}
.article-search .adv-search a:hover{background: rgba(199,182,99,1);text-decoration: none;}
.article-search .adv-search-en a{padding: 0 7px;}
.article-search .tubiao a{background: rgba(182,185,13,.8);}
.article-search .tubiao a:hover{background: rgba(18,158,139,1);text-decoration: none;}

.article-search .btn-default,.article-search .form-control{height: 37px;}
.article-search .form-control{background: rgba(250,248,245,.8);font-size: 14px;border-radius: 4px!important;border-color:#dddddd;/* border-width: 2px; */-webkit-box-shadow: none;box-shadow: none;-webkit-transition: none;-o-transition: none;transition: none;}
.article-search .btn-default{background:#c10000;font-size: 19px;border-color:#c10000;}
.article-search .btn-default:hover{background: #c7b663;border-color: #c7b663;}
.article-search .btn-default .glyphicon-search{color: #fff;top: 0;}
.input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group {
	z-index: 5;margin-left: -3px;
}


.issn {
    color: #b58f05;
    margin-top: 23px;
    font-size: .96em;
    display: flow-root;
}
.issn img{height: 78px;margin: 3px 0;}
@media(max-width:991px) {
    .issn {
        display: none;
    }
}


@media (min-width: 1300px){
.datu-pic .carousel-inner .item a img{height:378px;width:100%}
}
/*大图 */
.datu-pic .carousel{overflow: hidden;margin-bottom: 30px;}
.datu-pic .carousel-inner .item a img{margin: 0 auto;}
.datu-pic .carousel-control.left{background-image:none}
.datu-pic .carousel-control.right{background-image:none}
.datu-pic .carousel-caption{width: 100%;left: 0;right: 0;padding:10px;background: rgba(1,19,61,.3);bottom: 0;}
.datu-pic .carousel-caption a{color: #fff;font-size: 18px;}
.datu-pic .carousel-indicators{left: inherit;right: 0;margin-left: 0;width: 20%;bottom: 0;}
/*
.carousel-indicators li{background: #e4d3d3;border: 0;}
.carousel-indicators .active{background:#d88b18;}
*/



/*导航2*/
.navbar{min-height: 36px;border:0;margin-bottom: 5px;}
.navbar-nav {float: left;margin: 0 35px;}
.navbar-nav>li>a{line-height: 36px;padding-top: 0;padding-bottom: 0;}
.site-nav{
    background: #764612;
    border-radius: 0;
    border: 0;
    margin: 0;
    box-shadow: 1px 2px 5px #ccc;
}
.site-nav-x{background:#216dbe;}
.site-nav a{color: #fff;font-size:16px;}
.site-nav .nav>li>a{padding: 0 28px;}
.site-nav-en .nav>li>a{padding:0 25px;}
.site-nav .nav>li>a:focus,.site-nav .nav>li>a:hover {
    text-decoration: none;
    background-color: #a9842b;
}
.site-nav .navbar-toggle{background: #f0ad4e;}
.site-nav .navbar-toggle .icon-bar{background:#fff;}
.site-nav > li > a {color:#fff}
.navbar-header{padding:0 10px;}
.dropdown-menu{font-size:16px;}





/*办公系统css*/
.office-menu{
    margin-bottom: 20px;
}
.office-menu li {
    margin-bottom: 14px;
    text-align: center;
}
.journal-btn {
    background-color:#900031;
    color: #fff;
    padding: 5px 12px;
    border: 0;
    text-align: center;
    width: 100%;
    font-size: 18px;
    border-radius: 5px;
    line-height: 32px;
}
.journal-btn-en {
    text-align: left;
    padding-left:45px;
}
.journal-btn span {
    color: #fff;
    margin-right: 6px;
    font-size: 18px;
    line-height: 29px;
}
/*
.office-menu>li:first-child>a>div>span:first-child{color: #a993df;}
.office-menu>li:nth-child(2)>a>div>span:first-child{color: #e79139;}
.office-menu>li:nth-child(3)>a>div>span:first-child{color: #d3b86d;}
.office-menu>li:nth-child(4)>a>div>span:first-child{color: #7395e3;}
.office-menu>li:nth-child(5)>a>div>span::first-child{color:#54bbeb;}
.office-menu>li:last-child>a>div>span:first-child{color:#a959db;}
*/
.journal-btn:hover {
    background: #af8456;
    color: #fff;
}

/*办公系统end*/

.submit-manuscript{font-size: 20px;text-align: center;background: #3f6ea5 url("../images/btn-main.jpg");border: 1px solid #004b83;height: 38px;line-height: 36px;color: #fff;}
.submit-manuscript a{color: #fff;}


/*按钮*/
.bgbf{overflow:hidden;margin-bottom: 10px;}
.bgbf ul{overflow:hidden;}
.bgbf ul li{float:left;width:48%;margin-bottom: 11px;}

.tab_1{
	margin:0 auto;
	border-radius: 3px;
	text-align: center;
	/* background: #3c646c; */
}

.tab_1 h4{
	color: #fff;
    text-align: center;
    font-size: 18px;
    margin-top:4px;
    margin-bottom: 0;
}
.tab_1_en h4{
    font-size: 16px;
}
.tab_1 img{width:50px;}

.tab_1 a{
	 background: #900031;
	 display: block;
	 color: #333;
	 border-radius:3px;
	 padding: 15px 0 15px;
	 text-decoration: none;
	 }
.tab_1 a:hover{
	 background: #bdad7c;
	 display: block;
	 transition: .3s all ease;
}
.a-l{float:left;}
.a-r{float:right!important;}
.tougaotubiao {color:#fff;font-size:26px;}
/*按钮end*/



/*右侧*/
.j-article{overflow: hidden;margin-bottom: 20px;background: #fff;padding: 15px 10px;box-shadow: 0 0 5px 0 rgba(127,127,127,.1);}
aside{border: 1px solid #eee;overflow: hidden;margin-bottom: 20px;background: #ffffff;border-radius: 4px;box-shadow: 0 0 5px 0 rgba(127,127,127,.1);}
aside ul{padding: 5px 0px;}

aside .column {
    font-size: 18px;
    /* font-weight: bold; */
    margin-bottom: 5px;
    padding: 10px 8px;
    overflow: hidden;
    color: #302a29;
    height: 38px;
    line-height: 38px;
    background-color: #f3f1f1;
    background: -webkit-linear-gradient(bottom, #fdfcf8, #eeece6);
    border-bottom: 2px solid #900031;
}
aside .column i {
    color: #900031;
}
.column span{line-height: 100%;font-family: SiYuanSong;}
.qikanxx{
    font-size: 15px;
    text-align: center;
    margin: 6px auto;
	line-height:170%;
}
.cover{padding: 20px 28px;}
.cover img{box-shadow: 0 0 5px 0 rgba(127,127,127,.2);}
.nian-juan-qi{font-size: 18px;text-align: center;margin: 6px auto;display: block;}.nian-juan-qi a{color: #004b83;}
.cover-a a{font-size: 14px;color: #004b83;float: left;}
.cover-a{overflow: hidden;width:80%;margin: 10px auto;}
.cover-a .cover-a-r{float: right;}
.cover-con{padding: 15px 15px 0;}
.cover-view{font-size: 18px;text-align: center;border: 1px solid #eee;height: 40px;line-height: 40px;margin-top:15px;overflow: hidden;}
.cover-view a{color:#004b83;}
.cover{overflow: hidden;}

.journal-list li{margin-bottom:15px;padding-bottom: 15px;overflow: hidden;border-bottom: 1px solid #eee;}
.journal-list li .title a{font-size: 16px;font-weight: 700;}
.journal-list li .author{color: #666;font-size: 16px;}
.journal-list li .doi a{font-size: 16px;}
.center-tab-content{
    border: 1px solid #eee;
    border-top:0;
    overflow: hidden;
    margin-bottom: 20px;
    background: #fff;
    padding: 15px 15px 15px;
    border-radius: 4px;
    box-shadow: 0 0 5px 0 rgba(127,127,127,.1);
}
.journal-list li .title,.journal-list li .author,.journal-list li .doi{margin: 5px 0;}
/*
.nav-tabs>li>a{border-top:2px solid transparent;font-size: 17px;padding: 10px 15px;}
.nav-tabs-en>li>a{padding: 10px 5px;}
.nav-tabs{border-bottom: 1px solid #e0ecf3;}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover{border: 1px solid #e0ecf3;color:#b90205;border-top:2px solid #b90205;border-radius:2px 2px 0 0;border-bottom-color: transparent;}
*/
.view-all a{padding: 9px 8px;border: 1px solid #ccc;background: url("../images/btn-bg.jpg");color:#764612;}
.view-all a .fa-angle-right{font-weight: bold;}
.view-all{margin-top: 10px;}
.journal-list{overflow: hidden;}
.wangkan-list li{
    /*background: url(../images/btn-bg.jpg);*/
    border-bottom: 1px #f1ebdc dashed;
    color: #004b83;
    /* height: 40px; */
    line-height: 31px;
    margin-bottom: 7px;
    /* padding: 0 20px; */
    /* border-radius: 5px; */
    overflow: hidden;
    display: block;
}
.wangkan-list li a{color: #2d3348;font-size: 16px;}
.wangkan-list li a i{padding-right:10px;color: #764612;}

.aside-btn{border: 1px solid #eeeeee;background: url("../images/btn-bg.jpg");color:#004b83;height: 40px;line-height: 40px;margin-bottom:10px;padding:0 24px;overflow: hidden;display: block;}
.aside-btn:last-child{margin-bottom: 0;}
.aside-btn a{color:#004b83;}
.aside-btn a i{padding-right:10px;}
.more{background: url("../images/arrow.png") no-repeat right 2px;float: right;font-size:15px;color: #764612;padding-right: 12px;line-height: 20px;font-weight: normal;}
.news-list li{margin: 4px 0 10px;}
.news-list li {font-size: 15px;background: url(../images/icon-li.gif) no-repeat 0 10px;padding-left: 15px;}

.news-list li .news-date{color:#666;}

.issn-cn p{margin-bottom:0;}

.bq_bt{text-align: center;padding: 0 10px;line-height: 26px;}
.bq_zgzb{
	text-align:left;
	line-height: 26px; 
	border-bottom: 1px #ccc dashed;
	border-top: 1px #ccc dashed;    
	margin-top: 10px;
    margin-bottom: 10px;
	padding:10px 0;

}
.zgcolor{color:#764612;}

.ewm{text-align:center;    padding: 15px 0 15px;}

/* ---  首页　标签 ---  */


.tabs-left .nav-tabs>li, .tabs-right .nav-tabs>li{
    float: none; 
}
.nav-tabs>li {
    margin-bottom: -2px;
    margin-left: 5px;
}
.nav-tabs>li>a, .nav-pills>li>a {
    padding-right: 19px;
    padding-left: 19px;
    line-height: 20px;
}

.nav-tabs {border-bottom: 2px solid #ccc;}
.home-biaoqiannav.nav-tabs li a{
	font-weight: bold;
	font-size: 18px;
	color: #555;
	border: 2px solid transparent;
	border-top: 3px solid transparent;
	border-bottom: 0;
}
.home-biaoqian-en.nav-tabs>li>a, .nav-pills>li>a {
    padding-right: 14px;
    padding-left: 14px;
}
.home-biaoqiannav.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus{
    border: 2px solid #ccc;
    border-top: 3px solid #764612;
    color: #764612;
    border-bottom: 0;
}
.home-biaoqiannav.nav-tabs > li a:hover, .home-biaoqiannav.nav-tabs > li:focus {
    border: 2px solid #ccc;
    border-top: 3px solid #dbb21d;
    color: #dbb21d;
    border-bottom: 0;
    background: #f8f8f8;
}
.zlm {
	color: #0d61c1;
	font-size: 16px;
	font-weight: bold;
}


/*-------------------------------文章-----------------------------------*/
*.hidelabel {
  display: none;
}
.date {color: #764612;font-weight: bold;font-size: 16px;}
.articlesectionlisting {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 5px;
    width: 100%;
    padding-right: 0px;
    color:#900031;
    font-size: 100%;
    font-weight: bold;
    padding-top: 4px;
    margin-left:0;
}
.articlesectionlisting .dbt_header {
    color: #900031;
    font-size: 16px;
}
.j-article{width:100%;overflow: hidden;}
.latest-issue{margin:0 0 20px;font-size: 22px;border-bottom: 1px solid #eee;padding-bottom: 8px;color: #764612;font-family: SiYuanSong;}
.j-article .title {color: #764612;font-weight: bold;margin-top: 5px;}
.j-article .journal-info {color:#666;}
.j-article .journal-info a{color: #33749a;}
.btn-box{margin-bottom: 1px;}
.n-j-q{font-size: 17px;margin-bottom: 5px;color: #302a29;font-weight: bold;}
.j-sx{font-size: 14px;color: #f19100;/* margin-top: 10px; */display: -webkit-inline-box;float: right;}
.j-sx a{color: #764612;text-decoration:none;}
.j-sx a:hover{color:#f19100;text-decoration:none;}
.article-choose{color:#999;border-bottom: 1px solid #eee;overflow: hidden;padding-bottom: 2px;margin-bottom: 12px;margin-top: 10px;}
.article-choose .choose{float: left;}

.other-tools{float: right;color:#ccc;font-size: 20px;}
.other-tools-l{float: left;}
.other-tools .active{color:#f19100;}
.other-tools i,.other-tools .fengexian{padding: 0 3px;cursor: pointer;}
.other-tools .fengexian{padding: 0 3px;font-size: 18px;display: block;float: left;}

.article-list{padding: 0 5px 0 0;}
.article-list li{border-bottom: 1px solid #f8f8f8;margin-bottom:10px;overflow: hidden;padding-bottom:10px;border-radius: 3px;padding:3px;}
/* .article-list li:hover{background: #fbf9f8;} */
.selectedrow{background: #fbf9f8;border-color:#fbf9f8;border-top:0;border-left:0;border-right:0;margin:0}
.noselectrow{margin:0;border-color:#fff;border-top:0;border-left:0;border-right:0;margin:0}

.article-list li .article-checkbox{float: left;width:20px;}
.article-list li .j-column{color:#888;font-size: 14px;overflow: hidden;}
.article-list li .article-l{float:left;width: 76%;}
.article-list li .j-title-1 a{font-size: 16px;flex: 1;min-width: 0;overflow: hidden;}

.article-list li .icon-full{color:#54d014;font-size: 14px;}
.article-list li .icon-abstract{color:#999;font-size: 14px;}
.article-list li .icon-video{color:#03a5ca;font-size: 14px;}
.article-list li .icon-article{color:#0376ca;font-size: 14px;}
.article-list li .icon-collections{color:#f19100;font-size: 14px;transform:rotate(7deg);
-ms-transform:rotate(7deg);/* IE 9 */
-moz-transform:rotate(7deg);/* Firefox */
-webkit-transform:rotate(7deg);/* Safari 和 Chrome */
-o-transform:rotate(7deg);/* Opera */}

.article-list li .j-author{/* font-size: 14px; */color: #888;}
.article-list li .j-volumn{/* font-size: 14px; */color: #666;}
.article-list li .j-volumn-doi .j-volumn{float: left;padding-right: 10px;}
.article-list li .j-volumn-doi .j-doi{color: #666;}
.article-list li .j-btn{color:#d59505;margin-left:-10px;}
.article-list li .j-btn .j-pdf{background: url("../images/download-pdf.png") no-repeat;padding-left: 23px;padding-bottom: 2px;}
.article-list li .j-btn .j-pdf,.article-list li .j-btn .j-html,.article-list li .j-btn .j-abs{background:#c1a576;line-height: 20px;margin-left:10px;font-size: 14px;color: #fff;border-radius: 2px;}
.article-list li .j-btn a:hover{color: #ab2406;}

.article-list li .j-title-1,.article-list li .j-author,.article-list li .j-volumn-doi,.article-list li .j-btn,.article-list li .j-abstract{overflow: hidden;margin-bottom: 3px;font-size: 14px;}
.article-list li .article-img{padding:10px;overflow: hidden;display: block;}
.article-list li .article-img img{height:100px;width:100%;}
.article-list li .article-r{width:21%;float: right;}
.j-abstract{font-size: 14px;color: #888;display: none;}
.article-list li .article-w{width: 96%;}


/*过刊 */
.gk_nian{padding: 10px 0 0;margin-bottom:8px; border-bottom: 2px solid #999;font-size:20px;font-weight:bold;}
.gk_qi{padding: 5px 0;margin-bottom:5px; border-bottom: 1px dashed #ddd;color: #666;line-height: 26px;}
.gk_qi span{width:300px;display: table-cell;font-size:16px;}
.gk_qi a{color:#33749a;}
.gk_fm li{padding:0 30px;}
.gk_fm img{margin:8px auto;}
.collection {
    padding-left: 3px;
    padding-right: 3px;
    background-color: #fff;
    color: #C9799F;
    font-size: 8px;
    border: 1px solid #C9799F;
    cursor: pointer;
    border-radius: 2px;
}
.in_progress {
    padding-left: 3px;
    padding-right: 3px;
    background-color: #fff;
    color: red;
    font-size: 8px;
    border: 1px solid red;
	border-radius: 2px;
}

/*--end--*/




/*内容*/
.content_nr{border: 1px solid #e0ecf3;margin-bottom: 20px;background: #fff;padding:20px 15px;box-shadow: 0 0 5px 0 rgba(127,127,127,.1);}
.content_nr .column{margin:0 0 20px;font-size: 22px;border-bottom: 1px solid #eee;padding-bottom: 12px;}
.content_nr .newstitle{
    text-align: center;
    margin: 30px 0 20px;
    font-size: 18px;
    font-weight: bold;
}
/*位置*/
.location{font-size: 16px;margin:0 0 15px 5px;display:none;}
.location i{font-size: 14px;margin-right:5px;}
.location a{color:#666}

/*Cover galler*/
.panel-title>a{text-decoration:none;color:#33749a;font-size:18px;font-weight: bold;}
.panel-title>a i{text-decoration:none;color:#999;float:right;}
.panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #eee;
}
.panel-default {
    border-color: #eee;margin-bottom:20px!important;
}
.cg {padding:20px 15px;}
.cg p{margin-bottom:5px;}
.cg .title a{color:#33749a; font-weight:bold;font-size:18px;}
.cg a{color:#33749a;}
.cg .date{color:#302a29; font-weight:bold;}
.cg .fm{float:right;margin-left:10px;margin-bottom: 10px;}
.cg .fm img{border:1px solid #ccc;padding: 2px;}
.cover-download a {
    background: url(../images/download-pdf.png) no-repeat;
    padding-left: 22px;
    color: #00629f;
	margin: 10px 15px;
    display: inline-block;
	
}


/*专题*/
.bs-collections{
    border:1px solid #f5f5f5;border-radius:8px;overflow: hidden;padding: 20px;border-left-width: 5px;border-left-color:rgb(236, 202, 103);overflow: hidden;margin-bottom: 20px;background:#fbfbfb;
}
.bs-collections {padding:20px 15px;}
.bs-collections p{margin-bottom:5px;}
.bs-collections .title{font-weight:bold;font-size:18px;}
.bs-collections .title a{color:#33749a; font-weight:bold;font-size:18px;}
.bs-collections .journal{color:#7b98b7;margin-bottom: 8px;font-style: italic}
.bs-collections .editor{color:#b76e11;margin-bottom: 8px;}
.bs-collections .list-group a{color:#33749a; font-size:18px;}
.bs-collections .date{color:#302a29; font-weight:bold;}
.bs-collections .fm{float:right;margin-left:10px;margin-bottom: 10px;}
.bs-collections .link a {
    color: #33749a;
	margin-top: 8px;
	display:block;
}

.bs-collections-list{border:0;}
.bs-collections-list .title{font-weight:bold;font-size:20px; margin-bottom: 10px;}
.bs-collections-list .editor{color:#555;}

.sort-order{
    border-radius: 2px;
    box-shadow: inset 0 1px 0 #fff;
    border: 1px solid #dedede;
    line-height: 180%;
    padding: 5px 10px;
    overflow: hidden;
	margin-bottom:20px;
	background-image: linear-gradient(to bottom,#f8f8f8,#e5e5e5);

}

.sort-order span{font-weight:bold;font-size:14px;margin-right:10px;}
.sort-order .btn {
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        -webkit-box-shadow: inset 0 1px 0 #FFF;
        -moz-box-shadow: inset 0 1px 0 #FFF;
        box-shadow: inset 0 1px 0 #FFF;
        border: 1px solid #bcbcbc;
        color: #666;
        margin: 0;
        padding: 2px 10px 0;
    }

.sort-order .btn:hover{
        border-color: #999;
        color: #444;
        text-decoration: none;
}
.sort-order .in {
    font-weight: bold;
	color:#444;
	border-color: #999;
}


.julei{background: #fbfbfb;}
.julei ul {
	padding:10px 5px;
}
.julei li{
	padding:2px 0;
}
.julei .title {
	background: #f7f5f0;
	padding:5px;
	font-weight:bold;
	border-left: 3px solid #ef7d47;
	border-radius:4px;
}


/*news-list-1 */
.news-list-1{
    margin-bottom: 30px;
}
.news-list-1 .news-item-1 .media-left{
    padding-right: 15px;
}
.news-list-1 .news-item-1 a{
    display: block;
    border-bottom: 1px dashed #e2dfdc;
    padding: 20px 0;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
    position: relative;
    overflow: hidden;
}
.news-list-1 .news-item-1 a:hover{
	text-decoration:none;
}
.news-list-1 .media-body{
	vertical-align:middle;
}
.news-list-1 .news-item-1 .news-date{
    color: grey;
    width: 80px;
    background: #F5F5F5;
    text-align: center;
    padding: 8px 5px 10px;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}
.news-list-1 .news-item-1 .news-date .day{
    color: #666;
    font-size: 28px;
    font-weight: bold;
}
.news-list-1 .news-item-1 .news-title{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}
.news-list-1 .news-item-1 .news-desc{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.6;
    color: #666;
}
@media screen and (min-width: 768px) {
    .news-list-1 .news-item-1 .news-title{
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    .news-list-1 .news-item-1 .news-go{
        position: absolute;
        top: 0;
        bottom: 0;
        right: -125px;
        width: 125px;
        background: rgb(239, 46, 51,.82);
        color: #fff;
        font-size: 32px;
        text-align: center;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }
    .news-list-1 .news-item-1 .news-go .fa{
        position: absolute;
        top: 50%;
        margin-top: -16px;
        line-height: 1;
        left: 50%;
        margin-left: -16px;
    }
    .news-list-1 .news-item-1 a:hover{
        background: #eee;
    }
	/*
    .news-list-1 .news-item-1 a:hover .news-go{
        right: 0;
    }
	*/
    .news-list-1 .news-item-1 a:hover .news-date{
        background: #eee;
    }
}
@media screen and (max-width: 767px) {
    .news-list-1 .news-item-1 .news-date{
        margin-bottom: 10px;
    }
    .news-list-1 .news-item-1 .news-go{
        display: none;
    }
}
/*news-list-1 end*/


@media (max-width: 992px){
	.style-1 .menu-topbar-area {padding-left: 0;border-left: 0;}
    .article-search .search-select{width: 35%;}
    .article-search{width: 100%;padding: 0;margin-top: 25px;}
    .article-search .adv-search{margin-top: 10px;width: 100%;float: right;}
    .last-issue{width: 100%;margin:10px 0 0;}
    .header{padding: 0;}
    .journal-img{margin:20px 0;}
    .zhuban{display: none;}
    .j-journal .main-btn{background-color: #2d7fd9;background-position: 25px 12px;}
    .header-r{float: none;}
    .cover-info,.cover{width: 100%;float: none;margin:10px 0;}
    .cover-info{height: auto;max-height: auto;}
    .j-journal{width: 100%;float: none;}
    .nav-bar{margin:10px 0;display: none;}
    ul.nav,.header{height: auto;}
    .cover-content{color: #666;}
    .news{padding: 0 10px;height: auto;}
    .news-column,.news-a{width: 100%;}
    .slide{min-height: auto;}
    .bx-wrapper img{height: auto;}
    .more-read{padding-top: 70px;background-position: 0 73px;}

    .footer-info{text-align: center;width: 100%;line-height: 18px;float: none;padding:0;}
    .wechat{width: 100%;float: none;}
    .footer-box .footer-logo{margin: 0;}
    .footer-box .sydw{float: none;margin: 0;}
    
    .datu-pic .carousel-indicators{display:none;}
    .datu-pic .carousel-caption{white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
    .article-list li .article-l{width:92%;}
    .article-list li .article-r{width: 100%;float:none;}
    .nav-tabs>li>a, .nav-tabs>li>a:focus, .nav-tabs>li>a{padding: 10px 20px;}
    .footer{padding: 10px 0;}
    .red-bg{padding: 10px 0;}
	.logo-brief {display:none;}
	.cg .fm{float:left;margin-left:0;}
	.bs-collections .fm{float:left;margin-left:0;}
	.sort-order {margin-top:20px;padding-bottom:10px;}
	.sort-order .btn {width: 100%;}
	.gk_fm li{min-height:200px;}
	.j-sx{display:block;float: none;margin-top: 10px;}.latest-issue{font-size: 18px;}
	.article-search .input-group {width: 100%;}
	.home-biaoqiannav{width:750px;}
	.home-biaoqiannav.nav-tabs li {}
	.datu-pic .carousel-inner .item a img{height:160px;width:100%}
	.style-1 .main-menu ul>li a {font-size: 1em;color: #302a29;font-weight: bold;}
	.zongshu{padding-right:15px;}
	.nav-pills>li {width: 40%;}
	.wrap {display:none;}
	.article-list li .article-img img{height:auto;width:100%;}
	.style-1.sticky .article-search {margin-top: 5px;}
}

/*--返回顶部top--*/

.top_web{position: fixed;_position: absolute;bottom:176px;right:20px;width:48px;height:45px;border-radius: 5%;display: none;z-index: 9999;cursor: pointer;background: rgba(2,2,2,.1);}
.top_web .glyphicon{text-align:center;top:11px; left:12px;font-size: 22px;color:#764612;}
/*--返回顶部top--*/

/*其他 控制显示&隐藏*/
#key{display:none;} /*快速检索隐藏类型下拉条*/
.knomap{display:none;} /*隐藏Knowledge map*/
.shoucang{display:none;} /*隐藏收藏*/
.j-column{display:none;} /*隐藏每篇文章中的栏目名称*/
/*.richhtml{display:none;} /*隐藏RichHTML按钮*/
.article-video{display:none;} /*隐藏视频文章相关按钮、高级检索视频选项*/
.wenzhang-liebiao li {margin: 0;}/*兼容*/
.j-title-1 span{/* display:none; */} /*隐藏文题后图标*/
.icon-oa{margin-top:-2px;}
.article-search .tubiao{display:none;} /*隐藏图表检索*/
.gk_moshi{display: none;}/*隐藏过刊页面表格 封面 切换按钮*/

/*菜单鼠标划动下拉*/
.nav > li:hover .dropdown-menu {display: block;}

/*非rwd
html,.container{min-width: 1200px;}
.m-center{width:75%!important;float:right!important;}
.m-right{width:25%!important;float:left!important;}
*/


/*中间条目1*/
.column-title {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    margin-bottom: 15px;
}

.column-title h2 {
    font-size: 22px;
    font-weight: normal;
    line-height: 175%;
    color: #333333;
    position: relative;
    cursor: pointer;
    padding-left: 15px;
    font-family: SiYuanSong;
    margin-top: 0;
    margin-bottom: 0;
}

.column-title h2.on {
    color: #0c51ab;
}

.column-title h2::after {
    content: "";
}

.column-title h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: #a1722b;
}

.column-title h2:nth-child(1) {
    margin-left: 0;
}
.column-more {
    display: flex;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
    position: relative;
    align-items: center;
}

.column-more::before {
    content: "";
    display: block;
    flex: 1;
    min-width: 0;
    height: 1px;
    background: #eeece6;
    margin: 0 10px 0 10px;
}

.column-title a {
    font-weight: normal;
    line-height: 30px;
    background: url(../images/yun-more.png) no-repeat;
    background-position: left center;
    background-size: 36px auto;
    text-align: right;
    padding-left: 44px;
    font-size: 14px;
}

.column-title a:hover {
    color: #926132;
}

.column-title a.on {
    display: block !important;
}


/*中间条目*/
.column-1 {
	width:100%;
	font-size: 18px;
	color: #b50000;
	line-height: 34px;
	font-weight: bold;
	border-bottom: 2px solid #ccc;
	display: inline-block;
	position: relative;
	padding-left:15px;
}
.column-1 span {
	left: 0;
	top: 8px;
	width: 5px;
	height: 18px;
	background: #b50000;
	position: absolute;
	display: inline-block;
	border-radius: 1px;
}


/*高级检索css更新*/
#advsearch .td-left {
    background: #f1f1f1;
    width: 120px;
    padding: 3px 10px;
    text-align: right;
}
#advsearch * {
    font-family: revert;
    font-size: 14px;
}
#advsearch table {
    border: 0;
}
#advsearch input,#advsearch select{
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#advsearch label input{margin-right:5px;height: 14px;}
#btn-search {
    width: 160px;
    background: #880509!important;
    color: #fff!important;
    border-radius: 5px;
    font-size: 16px;
    margin-left: 5px;
    margin:0 auto;
    height: 42px!important;
	padding: 6px 12px;
    font-size: 16px;
}
#advsearch input, #advsearch select {
    padding: 6px 7px;
}

/*rich摘要兼容*/
.main_top_cm {
    box-shadow: none;
}
.main_content {
    margin: 0 auto;
    overflow: hidden;
    padding: 15px 10px;
    max-width: 1200px;
    background: #fff;
}


/*--RWD bShare分享兼容--*/
.bsBox{-webkit-box-sizing:content-box}
#bsPanel{-webkit-box-sizing:content-box}
.bFind-wrapper-top{-webkit-box-sizing:content-box}

.fa-feed{font-size: 18px;}



.detail-select{float: right;padding: 5px 0;outline: none;margin: 10px 0;}
.detail-select a{border-radius: 4px;padding: 4px 10px;border: 1px solid rgba(255,255,255,.4);margin: 0 2px;color: #eef9f9;transition: .35s;}
.detail-select a:hover{border: 1px solid #764612;color: #764612;}


.top_lang {
  float: right;
  /* margin: 4px 0; */
  height: 28px;
  background: #f5f7fa;
  border-radius: 16px;
  border: 1px #eeeeee solid;
  /* margin-right: 32px; */
  margin-top: 8px;
}
.top_lang a {
  float: left;
  width: 48px;
  height: 26px;
  line-height: 28px;
  text-align: center;
  border-radius: 14px;
  font-size: 14px;
  color: #888888;
  text-decoration: none;
}
.top_lang a:hover {
  color: #c7b663;
}

.top_lang a.active{background:#c7b663;color: #fff}

.justify-content-md-between {
	justify-content: space-between!important;
	text-align: center;
}
.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -5px;
}
.select1{display:none;}


.language{float:left;margin-right: 50px;font-size: 16px;}
.language .on{color:#764612;}

/*登录窗口兼容*/
.login_dialog_loginTable_text{padding-left:10px;}

.tuijian-bg{background: #f7f4f3;padding-bottom: 20px;padding:10px 15px 15px;/* min-height: 220px; */border-radius: 4px;border: 1px solid #f5efee;box-shadow: 0 0 5px 0 rgba(127,127,127,.1);}
.sign-in-btn{float:left;margin-right:32px;}


.main-menu-en .sub-menu li a{padding: 9px 6px !important;}
.journal-info {
    line-height: 24px;
    color: #444;
    font-size: 15px;
    padding-top: 8px;
}


.tgzn-list {
    width: 226px;
    margin: 0 auto;
    padding-top: 10px;
}

.tgzn-list li {
    text-align: center;
    position: relative;
    padding: 0 24px;
    height: 46px;
    line-height: 46px;
    margin-bottom: 16px;
}

.tgzn-list li a {
    font-size: 16px;
}

.tgzn-list li.bg-1 {
    background: #d7d8dd;
}

.tgzn-list li.bg-1 a {
    color: #393b47;
}

.tgzn-list li.bg-1 span {
    text-align: center;
    background: #393b47;
}

.tgzn-list li.bg-1 span .iconfont {
    font-size: 20px;
    color: #fff;
}

.tgzn-list li.bg-2 {
    background: #eeece6;
}

.tgzn-list li.bg-2 a {
    color: #816d4a;
}

.tgzn-list li.bg-2 span {
    text-align: center;
    background: #816d4a;
}

.tgzn-list li.bg-2 span .iconfont {
    font-size: 20px;
    color: #fff;
}

.tgzn-list li span {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-block;
    zoom: 1;
    position: absolute;
    left: -22px;
    top: 0;
    color: #fff;
    padding-top: 8px;
}


/* 滚动条样式 */
@media screen and (min-width:1024px) {
    ::-webkit-scrollbar {
        width: 6px;
        height: 9px;
    }

    ::-webkit-scrollbar-track {
        width: 3px;
        background: #f2f2f2;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb {
        background-color: #ddd;
        background-clip: padding-box;
        min-height: 28px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background-color: #c7b663;
    }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color:#9f113f;
  padding: 50px 0;
  color: white;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  	margin-right: 6px;
	width:110px;
	height:110px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
.footer p{line-height:33px;margin-top:-8px;margin-bottom:0;color: rgba(255, 255, 255, 0.6);}
.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(13, 66, 255, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

.gd_all{
	font-size: 16px;
	line-height: 20px;
	text-align: right;
	overflow: hidden;
	position: absolute;
    top: 55px;
    right: 0;
	z-index:999;
}
.gd_all a{color:#666;}
.gd_all a:hover{color:#000;background:#eee;}


/*右侧*/

.column span{line-height: 100%;font-family: SiYuanSong;}
.qikanxx{
    font-size: 15px;
    text-align: center;
    margin: 6px auto;
	line-height:170%;
}
.cover{padding: 20px 28px;}
.cover img{max-width: 100%; box-shadow: 0 0 5px 0 rgba(127,127,127,.2);}
.nian-juan-qi{font-size: 18px;text-align: center;margin: 6px auto;display: block;}.nian-juan-qi a{color: #004b83;}
.cover-a a{font-size: 14px;color: #004b83;float: left;}
.cover-a{overflow: hidden;width:80%;margin: 10px auto;}
.cover-a .cover-a-r{float: right;}
.cover-con{padding: 15px 15px 0;}
.cover-view{font-size: 18px;text-align: center;border: 1px solid #eee;height: 40px;line-height: 40px;margin-top:15px;overflow: hidden;}
.cover-view a{color:#004b83;}
.cover{overflow: hidden;}

.journal-list li{margin-bottom:15px;padding-bottom: 15px;overflow: hidden;border-bottom: 1px solid #eee;}
.journal-list li .title a{font-size: 16px;font-weight: 700;}
.journal-list li .author{color: #666;font-size: 16px;}
.journal-list li .doi a{font-size: 16px;}
.center-tab-content{
    border: 1px solid #eee;
    border-top:0;
    overflow: hidden;
    margin-bottom: 20px;
    background: #fff;
    padding: 15px 15px 15px;
    border-radius: 4px;
    box-shadow: 0 0 5px 0 rgba(127,127,127,.1);
}
.journal-list li .title,.journal-list li .author,.journal-list li .doi{margin: 5px 0;}
/*
.nav-tabs>li>a{border-top:2px solid transparent;font-size: 17px;padding: 10px 15px;}
.nav-tabs-en>li>a{padding: 10px 5px;}
.nav-tabs{border-bottom: 1px solid #e0ecf3;}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover{border: 1px solid #e0ecf3;color:#b90205;border-top:2px solid #b90205;border-radius:2px 2px 0 0;border-bottom-color: transparent;}
*/
.view-all a{padding: 9px 8px;border: 1px solid #ccc;background: url("../images/btn-bg.jpg");color:#764612;}
.view-all a .fa-angle-right{font-weight: bold;}
.view-all{margin-top: 10px;}
.journal-list{overflow: hidden;}
.wangkan-list li{
    /*background: url(../images/btn-bg.jpg);*/
    border-bottom: 1px #f1ebdc dashed;
    color: #004b83;
    /* height: 40px; */
    line-height: 31px;
    margin-bottom: 7px;
    /* padding: 0 20px; */
    /* border-radius: 5px; */
    overflow: hidden;
    display: block;
}
.wangkan-list li a{color: #2d3348;font-size: 16px;}
.wangkan-list li a i{padding-right:10px;color: #764612;}

.aside-btn{border: 1px solid #eeeeee;background: url("../images/btn-bg.jpg");color:#004b83;height: 40px;line-height: 40px;margin-bottom:10px;padding:0 24px;overflow: hidden;display: block;}
.aside-btn:last-child{margin-bottom: 0;}
.aside-btn a{color:#004b83;}
.aside-btn a i{padding-right:10px;}
.more{background: url("../images/arrow.png") no-repeat right 2px;float: right;font-size:15px;color: #764612;padding-right: 12px;line-height: 20px;font-weight: normal;}
.news-list{}
.news-list li{margin: 4px 0 10px;}
.news-list li {font-size: 15px;background: url(../images/icon-li.gif) no-repeat 0 10px;padding-left: 15px;}

.news-list li .news-date{color:#666;}

.issn-cn p{margin-bottom:0;}
.r_xw{display: -webkit-box;  -webkit-box-orient: vertical; -webkit-line-clamp:2;overflow: hidden;height:50px;}/*控制字数，显示1行，超出用省略号*/

.bq_bt{text-align: center;padding: 0 10px;line-height: 26px;}
.bq_zgzb{
	text-align:left;
	line-height: 26px; 
	border-bottom: 1px #ccc dashed;
	border-top: 1px #ccc dashed;    
	margin-top: 10px;
    margin-bottom: 10px;
	padding:10px 0;

}
.zgcolor{color:#764612;}

/*中间条目1*/
.column-title {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    margin-bottom: 15px;
}

.column-title h2 {
    font-size: 22px;
    font-weight: normal;
    line-height: 175%;
    color: #333333;
    position: relative;
    cursor: pointer;
    padding-left: 15px;
    font-family: SiYuanSong;
    margin-top: 0;
    margin-bottom: 0;
}

.column-title h2.on {
    color: #0c51ab;
}

.column-title h2::after {
    content: "";
}

.column-title h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: #a1722b;
}

.column-title h2:nth-child(1) {
    margin-left: 0;
}
.column-more {
    display: flex;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
    position: relative;
    align-items: center;
}

.column-more::before {
    content: "";
    display: block;
    flex: 1;
    min-width: 0;
    height: 1px;
    background: #eeece6;
    margin: 0 10px 0 10px;
}

.column-title a {
    font-weight: normal;
    line-height: 30px;
    background: url(../images/yun-more.png) no-repeat;
    background-position: left center;
    background-size: 36px auto;
    text-align: right;
    padding-left: 44px;
    font-size: 14px;
}

.column-title a:hover {
    color: #926132;
}

.column-title a.on {
    display: block !important;
}


/*中间条目*/
.column-1 {
	width:100%;
	font-size: 18px;
	color: #b50000;
	line-height: 34px;
	font-weight: bold;
	border-bottom: 2px solid #ccc;
	display: inline-block;
	position: relative;
	padding-left:15px;
}
.column-1 span {
	left: 0;
	top: 8px;
	width: 5px;
	height: 18px;
	background: #b50000;
	position: absolute;
	display: inline-block;
	border-radius: 1px;
}


/*高级检索css更新*/
#advsearch .td-left {
    background: #f1f1f1;
    width: 120px;
    padding: 3px 10px;
    text-align: right;
}
#advsearch * {
    font-family: revert;
    font-size: 14px;
}
#advsearch table {
    border: 0;
}
#advsearch input,#advsearch select{
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#advsearch label input{margin-right:5px;height: 14px;}
#btn-search {
    width: 160px;

    background: #880509!important;
    color: #fff!important;
    border-radius: 5px;
    font-size: 16px;
    margin-left: 5px;
    margin:0 auto;
    height: 42px!important;
	padding: 6px 12px;
    font-size: 16px;
}
#advsearch input, #advsearch select {
    padding: 6px 7px;
}

/*rich摘要兼容*/
.main_top_cm {
    box-shadow: none;
}
.main_content {
    margin: 0 auto;
    overflow: hidden;
    padding: 15px 10px;
    max-width: 1200px;
    background: #fff;
}


/*--RWD bShare分享兼容--*/
.bsBox{-webkit-box-sizing:content-box}
#bsPanel{-webkit-box-sizing:content-box}
.bFind-wrapper-top{-webkit-box-sizing:content-box}

.fa-feed{font-size: 18px;}



.detail-select{float: right;padding: 5px 0;outline: none;margin: 10px 0;}
.detail-select a{border-radius: 4px;padding: 4px 10px;border: 1px solid rgba(255,255,255,.4);margin: 0 2px;color: #eef9f9;transition: .35s;}
.detail-select a:hover{border: 1px solid #764612;color: #764612;}


.top_lang {
  float: right;
  /* margin: 4px 0; */
  height: 28px;
  background: #f5f7fa;
  border-radius: 16px;
  border: 1px #eeeeee solid;
  /* margin-right: 32px; */
  margin-top: 8px;
}
.top_lang a {
  float: left;
  width: 48px;
  height: 26px;
  line-height: 28px;
  text-align: center;
  border-radius: 14px;
  font-size: 14px;
  color: #888888;
  text-decoration: none;
}
.top_lang a:hover {
  color: #c7b663;
}

.top_lang a.active{background:#c7b663;color: #fff}

.justify-content-md-between {
	justify-content: space-between!important;
	text-align: center;
}
.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -5px;
}
.select1{display:none;}

/* 分享二维码 */
.weixin-a{position: relative;z-index: 999;transition: all 1s;}
.weixin_ewm{width: 130px;height: 130px;position: absolute;bottom:42px;left:-45px;display:none;border: 1px solid #ccc;border-radius: 5px;overflow: hidden;padding:8px;background:#fff;}
.weixin_ewm img{display: block;width: 100%;height: 100%;}
.weixin-a:hover .weixin_ewm{display: block;}

.language{float:left;margin-right: 50px;font-size: 16px;}
.language .on{color:#764612;}

/*登录窗口兼容*/
.login_dialog_loginTable_text{padding-left:10px;}

.tuijian-bg{background: #f7f4f3;padding-bottom: 20px;padding:10px 15px 15px;/* min-height: 220px; */border-radius: 4px;border: 1px solid #f5efee;box-shadow: 0 0 5px 0 rgba(127,127,127,.1);}
.sign-in-btn{float:left;margin-right:32px;}


.main-menu-en .sub-menu li a{padding: 9px 6px !important;}
.journal-info {
    line-height: 24px;
    color: #444;
    font-size: 15px;
    padding-top: 8px;
}


.tgzn-list {
    width: 226px;
    margin: 0 auto;
    padding-top: 10px;
}

.tgzn-list li {
    text-align: center;
    position: relative;
    padding: 0 24px;
    height: 46px;
    line-height: 46px;
    margin-bottom: 16px;
}

.tgzn-list li a {
    font-size: 16px;
}

.tgzn-list li.bg-1 {
    background: #f8f2df;
}

.tgzn-list li.bg-1 a {
    color: #393b47;
}

.tgzn-list li.bg-1 span {
    text-align: center;
    background: #e7c7ae;
}

.tgzn-list li.bg-1 span .iconfont {
    font-size: 20px;
    color: #fff;
}

.tgzn-list li.bg-2 {
    background: #eeece6;
}

.tgzn-list li.bg-2 a {
    color: #816d4a;
}

.tgzn-list li.bg-2 span {
    text-align: center;
    background: #816d4a;
}

.tgzn-list li.bg-2 span .iconfont {
    font-size: 20px;
    color: #fff;
}

.tgzn-list li span {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-block;
    zoom: 1;
    position: absolute;
    left: -22px;
    top: 0;
    color: #fff;
    padding-top:8px;
}

@media (min-width: 1400px){
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		max-width: 1320px;
	}
	
}


/*检索*/
.article-search{width:100%;overflow: hidden;margin-bottom: 20px; padding: 5px; }
.article-search .input-group{width:73%;float: left;}
.article-search .adv-search{width: 25%;float: right;}
.article-search .adv-search a{display: inline-block;background:#a1722b;border-radius:2px;color: #fff;height:38px;line-height:38px;font-size: 14px;width: 100%;text-align: center;}
.article-search .btn-default,.article-search .form-control{height: 38px;}
.article-search .form-control{padding-left: 10px;height: 36px;border: #ccc 1px solid;border-radius:2px;}
.article-search .btn-default{height: 36px;background:#900031;font-size: 16px;border-color:#900031;border-radius:2px!important;;}
.article-search .btn-default .glyphicon-search{color: #fff;}
.text_en{width:64%!important;}
.gjjs_en{width: 34%!important;font-size: 14px!important;}
.gjjs_en a{padding:0 12px!important;}
.article-search-right{width:250px;overflow:hidden;margin:20px auto;text-align: center;}
.select-k{width:20%;margin-right:1%;height:36px;line-height:36px;border:#ccc 1px solid;float:left;padding: 0 5px;border-radius: 18px;}
.seclct-nian{width:120px;height:31px;line-height:31px;margin-right:5px;border:0;}
.seclct-qi{width:150px;overflow:hidden;height:31px;border:0;margin-right:5px;}
.niqi-btn{ width:50px;height: 32px;background: #e18434;font-size: 14px;border: #e18434 0px solid;text-align: center;color:#fff;}

/*---------------轮播图----------------------*/
.news_tupian{width:100%;margin: auto;overflow:hidden;margin-bottom:30px;margin-top: -30px;}
.carousel-caption{
	display: none;
	font-size: 16px;
    position: absolute;
    right: 0;
	left:0;
	bottom: 0px;
    z-index: 10;
    padding-top:15px;
    color: #fff;
    text-align: center;
    text-shadow:none;
    width: 100%;
    height: 50px;
    background: #666;
    background:rgba(0,0,0,0.5);
	padding-left:10px;
}

.news_tupian .carousel-indicators{
	display: none;
	bottom:20px;
    left: 0;
    z-index: 15;
    width: 100%;
    /* padding-left: 0; */
    margin-left: 0;
    text-align: center;
	
}
.news_tupian .carousel-indicators .active{background-color:#e9b505;}
.carousel-caption a{color:#fff;}
.news_tupian .carousel-indicators li{background: #fff;border: 0;}
.news_tupian .carousel-caption a:hover{text-decoration:none;}
.glyphicon-chevron-left:before {
    content: "\e079";
}
.glyphicon-chevron-right:before {
    content: "\e080";
}
@media screen and (min-width: 768px){
    .banner .carousel-caption {
        right: 0;
        left: 0;
        padding-bottom:0;
    }
}
.carousel-inner>.item>a>img, .carousel-inner>.item>img {
    width:100%;
  
}
.carousel .carousel-control.left,.carousel .carousel-control.right{background:none;filter:none;} /* 去阴影背景--*/
.carousel-indicators li {
    display: inline-block;
    width: 90px;
    height: 5px;
    margin: 0px 5px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
}

.carousel-indicators .active {
    width: 90px;
    height: 5px;
    margin: 0px 5px;
    background-color: #eb8c23;
    border: 1px solid #eb8c23;
}
/*---------------轮播图end----------------------*/
/*办公按钮*/
.allpadding {
	max-width: 680px;
	margin:auto;
	position: relative;
	margin-top: -100px;
	margin-bottom: 35px;
	border-radius:5px;
}
.office_list{overflow:hidden;}
.office_list ul{overflow:hidden;margin-bottom: 0;}
.office_list li{text-align: center;width: 24%;float: left;margin: 5px 2px;/* border-right: 1px solid #eee; */}
.office_list li:last-child{border-right:0 solid #eee;}
.office_list li img{
	display:block;
	margin-right:5px;
	height:60px;
	margin: auto;
	
}

.btn-shadow {
    width: 100%;
    background:rgb(12 110 193 / 74%);
    border-radius: 0;
    padding: 10px 10px;
    text-align: center;
}
.btn-shadow:link, .btn-shadow:visited{color: #fff;}
.btn-shadow:hover {color:#fff;background:#0670ca;}

.bgcd_2{background: #fff;}
.bgcd_3{background: #fff;}
.bgcd_4{background: #fff;}
.bgcd_5{background: #fff;}
.bgwz{
	font-size: 24px;
    display:block;
    margin-top:5px;
	
}

.btn_en{padding:14px 0px;}
.bgwz_en{font-size:19px;letter-spacing:0;}

/*期刊信息*/
.qkxx{overflow: hidden;background:#f5f8ff; margin-bottom: 20px;padding:0 10px 10px;}
.qkxx_fm{width:35%;float:left;text-align: center;margin-top: 10px;}
.qkxx_fm img{margin: auto;border: 1px solid #eee;}
.qkxx_xx{
	margin-top: 10px;
	width:65%;
	float:left;
	line-height: 30px;
    color: #333;
    text-align: left;
    font-size: 15px;
    padding: 0 0px 0 20px;
}
.qkxx_xx span{
	font-weight: bold;
	    color: #105399;
}

.qkxx_nr{
	overflow: hidden;
    font-size: 18px;
    padding: 0 0px 0 48px;
}
.qkxx_nr span{
	font-weight: bold;
	color:#105399;
}
.qkxx_njq{
	text-align: center;
    line-height: 24px;
    /* background: #bccd2a; */
    color: #000;
	font-size: 14px;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
}
.qk_ewm img{width:140px;}

.qkxx_xx_en{line-height:26px;font-size:14px;}


.more{float:right;display: inline-block;}


.more1{float:right;display: inline-block;font-size: 14px;font-weight: normal;line-height: 41px; color: #333;}

/*新闻*/
.xw_tab{background:#fff;overflow: hidden;margin-bottom: 20px;}
.xw_tab dl{overflow:hidden;margin:10px 13px 10px;}
.xw_tab dd{line-height:32px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
/*文字向上不间断滚动*/
#de {width:90%;margin:10px auto;height:250px;overflow:hidden;}
.right-middle {overflow:hidden;margin-bottom: 0;}
.right-middle li {overflow: hidden; text-align: left;margin-bottom: 5px;border-bottom: 1px solid #eee;padding-bottom: 5px;line-height: 26px;}
.right-middle li a {display:block;font-size:14px;color:#000;line-height:26px;text-decoration:none;}
.right-middle li a:hover{color:#cb750a;}
.xwr_r{display: -webkit-box;  -webkit-box-orient: vertical; -webkit-line-clamp: 1;overflow: hidden;height:26px;}/*控制字数，显示1行，超出用省略号*/
.shijian{color:#999;}

.x_list{overflow: hidden;margin-bottom: 10px;}
.x_list ul{overflow: hidden;margin:14px 0 0;}
.x_list li{width:100%;overflow: hidden;margin-bottom: 10px;padding-bottom: 10px;border-bottom: 1px solid #eee;}
.x_list li:last-child{margin-bottom:0;}
.x_shijian{width:70px;background: #eee;float:left;text-align: left;margin-right: 20px;}
.x_shijian .ri{font-size:30px;text-align: center;font-family: Segoe UI;color:#fff;font-weight: bold;background:#4c86cf;}
.x_shijian .ny{font-size:17px;line-height: 30px; color:#999;text-align: center;background: #def4ff;}
.x_tiaomu{width:73%;float:left;display: inline-block;font-size: 16px;line-height:28px;margin-bottom: 5px; display: -webkit-box;  -webkit-box-orient: vertical; -webkit-line-clamp:2;overflow: hidden;height:56px;}
.x_jianjie{width:73%;float:left;font-size:14px;color:#999;line-height: 25px; height:100px;display: -webkit-box;  -webkit-box-orient: vertical; -webkit-line-clamp:4;overflow: hidden;}


.title_1{
	width: 100%;
    text-align: left;
	border-bottom:1px solid #e3e3e3;
}
.title_1 .t1{
	font-size: 20px;
    color: #003d8f;
    height: 42px;
    border-bottom:3px solid #fbaa34;
    font-weight: bold;
    line-height: 40px;
    display: inline-block;
    margin: auto;
}

.title_2{
	position: relative;
	padding-left: 15px;
	background: #fff;
	font-weight: bold;
	color: #045da9;
	line-height: 40px;
	height: 40px;
	font-size: 20px;
}
 .title_2 .icon {
    display: block;
    width: 5px;
    height: 21px;
    background:#e2a63b;
    border-radius: 3px;
    position: absolute;
    left: 0px;
    top: 10px;
}
.title_3{
	overflow: hidden;
    text-align: left;
	border-bottom:1px solid #e3e3e3;
}
.title_3 .t1{
	border-bottom:3px solid #045da9;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 41px;
    display: inline-block;
}

.title_4{
	height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #333;
	font-weight: bold;
   
}

.title_5{
	width:100%;
	height: 45px;
    line-height: 45px;
    font-size: 18px;
    color:#333;
    text-align: left;
    font-weight: bold;
	margin-bottom: 5px;
}
.title_6{
	 width: 100%;
    overflow: hidden;
    line-height:50px;
    text-align: center;
    position: relative;
    height:50px;
    margin: 0px auto 15px;
}
.title_6 span {
    font-size:20px;
    color:#003d8f;
	font-weight: bold;
    position: relative;
    line-height: inherit;
    vertical-align: top;
   
}
.title_6 span:before, .title_6 span:after {
    content: '';
    display: block;
    width: 6.8rem;
    height:3px;
    background:#ed8400;
    position: absolute;
    top: 50%;
    left: -7.5rem;
}

.title_6 span:after {
    left: auto;
    right: -7.5rem;
}

.tab_list{margin-bottom:20px;overflow: hidden;background:#fff;}
.tab_list ul{margin:10px 15px;overflow: hidden;}
.tab_list ul li{line-height:26px;padding-bottom: 3px;margin-top: 3px;border-bottom: 1px solid #eee;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;
	border-bottom: 1px solid #eee;}


.tab_list2{background: #fff;margin-bottom: 20px;overflow: hidden;}
.tab_list2 ul{margin:10px 15px;overflow: hidden;}
.tab_list2 li{
	line-height: 26px;
    margin-bottom: 3px;
    padding-bottom: 3px;
	border-bottom: 1px solid #eee;
	display: -webkit-box;  -webkit-box-orient: vertical; -webkit-line-clamp: 2;overflow: hidden;height:55px;
	
}

.tab_list3{margin-bottom: 10px;overflow: hidden;}
.tab_list3 ul{width:100%;min-height:264px;padding:20px 0 0;margin-bottom: 0;}
.tab_list3 li{margin-bottom: 11px;padding-bottom: 11px;overflow: hidden;background:#fff;padding:3px;}
.tab_list3 li:hover{transform: translateY(-2px); box-shadow: 0 0 5px rgba(0,0,0,0.1);cursor:pointer;}
.tab_list3 .tutu{display: inline-block; float:left;}
.tab_list3 img{width:150px;height:110px;}

.tab_list3 .timutab{padding-left: 20px;padding-right: 10px; overflow: hidden;}
.tab_list3 .xwdtbt{font-size: 17px;margin-top: 5px; margin-bottom:7px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.tab_list3 .xwdtjj{font-size:14px;color:#999;line-height: 20px; display: -webkit-box;  -webkit-box-orient: vertical; -webkit-line-clamp:2;overflow: hidden;height:40px;}
.tab_list3 .shijian{font-size: 14px; margin-top:7px; color:#999;}

.tab_list2 dl{margin: auto;border: #e8e8e8 1px solid;padding:20px;    min-height: 263px;}
.tab_list2 dd{line-height: 28px;text-align: center;margin-bottom:7px;padding-bottom: 7px;overflow: hidden;border-bottom: 1px solid #eee;}
.tab_list2 dd:last-child{margin-bottom: 0;padding-bottom: 0;border-bottom: 0 solid #eee;}

.tab_list7{overflow:hidden;width: 100%; margin-bottom:15px;}
.tab_list7 ul{overflow:hidden;width: 100%; margin:15px 0 0;}
.tab_list7 ul li{overflow: hidden;border-left: 3px solid #1f5ca9;background:#eee;padding:10px;margin-bottom: 10px;}
.kepu_tp{text-align: center;}
.kepu_tp img{width:280px;height:166px;margin: auto;}
.kepu_title{
	color: #333;
    text-align: left;
    line-height:26px;
    font-size: 16px;
   
}
.kepu_shijian{}

.zjbw_list{background: #fff;margin-bottom:20px;overflow: hidden;}
.zjbw_list ul{overflow:hidden;padding: 10px 8px 15px;}
.zjbw_list li{overflow: hidden;text-align: center;}
.zjbw_list li img{width:185px;height:250px;margin-bottom: 0;}
.zjbw_list .mingzi{line-height:30px;}


.qikan_ming{font-weight:bold;font-size:14px;}
.qikan_jieshao{line-height:22px!important;color:#999;}
.qkkan_fm img{height:100px;float: left;margin-right: 10px;}

.tab_list dl{margin:5px 15px;}
.tab_list dd{line-height: 26px;border-bottom:1px #ccc dotted;padding-top: 3px;padding-bottom: 3px;}
.tab_list dt{font-weight:normal;}
.tab_list dd:nth-child(-n+1){color: #0e71c5;font-weight: bold;}
.tab_list dd:nth-child(-n+1)>.lanse{color: #0e71c5}

.adtab_list{margin-bottom:15px;overflow: hidden;background:#fff;}
.adtab_list ul{margin: 10px 15px;overflow: hidden;}
.adtab_list ul li{ overflow: hidden;margin:8px 0;text-align: center;}
.adtab_list ul li img{width:80%;height:60px;margin: auto;border:1px solid #ccc;border-radius: 2px;}

.ggt_tab{overflow:hidden;margin-bottom:20px;}
.ggt_tab img{width:100%;}

.qkdjt{margin-bottom: 20px;overflow: hidden;box-shadow: 0px 2px 6px #d7d7d7;}
.qkdjt ul{overflow:hidden;margin: 20px 0;}
.qkdjt ul li{text-align:center;}

.rwsck{margin-bottom: 20px;overflow: hidden;box-shadow: 0px 2px 6px #d7d7d7;}
.rwsck ul{overflow:hidden;margin: 20px 0;}
.rwsck ul li{text-align:center;margin-bottom: 13px;}
.rwsck ul li:last-child{margin-bottom:0;}

.zclm_1{width:100%;overflow: hidden;}

.qkdt_tab{margin-bottom:30px;overflow: hidden;background:#fff;}
.qkdt_tab ul{margin:10px 15px 15px;overflow: hidden;}
.qkdt_tab ul li{
	line-height:25px;
	border-bottom: 1px solid #eee;
	padding-bottom: 5px;
	margin-top: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space:nowrap;
}


.hy_tab{float:right;width:420px;background: #fff;margin-bottom: 20px;overflow: hidden;}
.hy_tab ul{overflow:hidden;margin:5px 15px 15px;min-height:216px;}
.hy_tab li{
	border-bottom: 1px solid #eee;
	padding-bottom: 5px;
	margin-bottom: 5px;
	line-height: 25px;
}


.tab_list4{background: #fff;overflow: hidden;margin-bottom: 20px;padding:2px;}
.tab_list4 img{margin: auto;}

/*编委风采*/
.bw_tab{margin-bottom: 20px;overflow: hidden;}
.bw_tab ul{margin:18px 0 0;margin-right: -15px;margin-left: -15px;}
.bw_tab  ul li{background: #fff;overflow: hidden;padding:8px;margin-bottom:20px;}
.bw_tab  ul li:last-child{}
.bw_tp{width:50%;float:left;}
.bw_tp img{width:125px;height:160px;float:left;}
.bw_xx{width:50%;float:left;line-height: 26px;display: -webkit-box;  -webkit-box-orient: vertical; -webkit-line-clamp: 5;overflow: hidden;height:130px;}
.bw_xx a{font-size:16px;font-weight:bold;}
.r_r{display: -webkit-box;  -webkit-box-orient: vertical; -webkit-line-clamp: 1;overflow: hidden;height:23px;}/*控制字数，显示1行，超出用省略号*/


/*友情链接*/
.yq_tab{margin-top: 20px; margin-bottom:10px;overflow: hidden;}
.yq_tab ul{overflow: hidden;width:100%;margin:15px 0 0;}
.yq_tab li{background: #fff; margin:10px 0;overflow: hidden;    display: inline-block;margin-right: 20px;}
.yq_tab li img{height:50px;margin: auto;border:1px solid #efefef;}


.topu{background: url(../images/topu.jpg) no-repeat center top;min-width:1200px;}

/*热点文章图文切换*/
.hot_tab{overflow:hidden;margin-bottom: 30px;}

.hot_tab .carousel{
	border: 3px solid #eee;
    padding:15px 15px 21px;
}
.hot_tab .carousel-inner{}
.hot_tab .carousel-caption{
	font-size: 17px;
	font-weight: bold;
	position: relative;
	right: 0;
	left:0;
	bottom: 0px;
	z-index: 10;
	padding-top: 0;
	color: #276fca;
	text-align: left;
	text-shadow:none;
	width: 100%;
	height:auto;
	background: #fff;
	overflow: hidden;
	padding-bottom:0;
}


.hot_tab .carousel-caption h3{margin-top:10px;}
.hot_tab .carousel-caption a{color: #276fca;}
.hot_tab .carousel-caption a:hover{text-decoration:none;}
.hot_tab .carousel-inner ol{ margin-bottom:0;}
.hot_tab .carousel-indicators{bottom:1px;}
.hot_tab .carousel-indicators .active{background-color:#dd7b00;}

.hot_tab .carousel-indicators li{background: #ccc;border: 0;}
.hot_tab .carousel-inner img {width:100%; height:233px;}
.hot_tab .carousel-indicators{
  	bottom:15px;
    left: 48%;
    z-index: 15;
    width: auto;
    padding-left: 0;
    margin-left: 0;
    text-align: right;
	margin-bottom: 0;
	}
.hot_tab .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height:10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color:#c1c1c1;
    border: 1px solid transparent;
    border-radius: 10px;
}
.hot_tab .carousel-indicators>active {
    width: 10px;
    height:10px;
    margin: 1px;
    background-color: #f90;
}
.hot_tp{width: 45%;float:left;}
.hot_tp img{width:100%;}
.hot_wz{width: 52%;float:right;}
.hot_tab .hot_biaoti{font-size: 16px;font-weight: bold;line-height: 26px;height:52px;display: -webkit-box;  -webkit-box-orient: vertical; -webkit-line-clamp: 2;overflow: hidden;}
.hot_tab .hot_biaoti a:hover{color:#cf0709}
.hot_tab .hot_zuozhe{color:#999;line-height: 26px;margin: 5px 0;padding-bottom: 5px; border-bottom: 1px solid #ededed;}
.hot_tab .hot_zhaiyao{color:#666;line-height: 26px;}
.hot_tab .hot_volumnh{line-height: 26px;}
.hot_tab .hot_htm_pdf{}
.zygd{width:100%;text-align: left;color: #e0913a;}

.r_rwz{width:100%;height:104px;display: -webkit-box;  -webkit-box-orient: vertical; -webkit-line-clamp: 4;overflow: hidden;}/*控制字数，显示1行，超出用省略号*/

.gd_wenzhang{float: right; line-height: 42px;color:#666;}
.gd_wenzhang a {
    border-bottom: 1px solid #d5a110;
    color: #d5a110;
    overflow: hidden;
}

.ztzjzx{position:relative;}

.gd_all{position: absolute;right:10px;top:15px;}
.gd_all:hover{color:#db742b;}


/* 五3、专题专刊左右滚动演示 */
.zclm_1{width:100%;background: #fff;padding:20px 0 20px 2px;}
.domo-pic-scroll-lr3 { max-width:1300px; height:300px; position:relative; margin:0 auto; }
.domo-pic-scroll-lr3 .conts li { float:left; text-align:center; width:325px; height:270px; }
.domo-pic-scroll-lr3 .conts li .s1 {width:310px; height:270px; display:block;border:1px solid #eee;background:#fff; }

.domo-pic-scroll-lr3 .textList { text-align:center; height:40px; line-height:40px; padding:0px 15px;margin-top: 6px; color:#df9e3d; font-size:12px; overflow:hidden; }
.domo-pic-scroll-lr3 .textList .pageNav { line-height:20px; color:#666; }
.domo-pic-scroll-lr3 .textList .pageNav font { font-size:14px; padding:0 5px; line-height:20px; color:#df9e3d; font-style:italic; }
.domo-pic-scroll-lr3 .textList .pageNav .current { font-size:18px; padding-right:8px; }
			
.domo-pic-scroll-lr3 .prev, .domo-pic-scroll-lr3 .next {z-index:1;position:absolute;top:40%;margin-top: -23px;display:block;width:36px;height: 80px;line-height: 70px;font-size:36px;color:#fff;border-radius: 5px;background:#b2d5ed;text-align:center;font-family:"Comic Sans MS", cursive;cursor:pointer;}
.domo-pic-scroll-lr3 .prev {left:0;background:#ebc149;}
.domo-pic-scroll-lr3 .prev:hover, .domo-pic-scroll-lr3 .next:hover {background: #d3be26;color:#fff;}
.domo-pic-scroll-lr3 .next {right:0;background:#ebc149;}

.domo-pic-scroll-lr3 .tabs { width:100%; height:11px; line-height:11px; position:absolute; z-index:1; bottom:10px; left:0; overflow:hidden; }
.domo-pic-scroll-lr3 .tabs ul { text-align:center; height:11px; }
.domo-pic-scroll-lr3 .tabs ul li { line-height:999px; width:11px; height:11px; border-radius:11px; margin:0 5px; cursor:pointer; background:#b2d5ed; cursor:pointer; display:inline-block; *display:inline; zoom:1; overflow:hidden; }
.domo-pic-scroll-lr3 .tabs ul .current { background:#eb7e0e !important; }

.wz_pic{overflow:hidden;}
.wz_pic img{margin: auto;}
.wz_timu{font-size:15px;font-weight: bold;text-align:center; padding:10px 5px 1px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;}
.wz_zhuzhe{line-height:28px;color:#999;text-align: left;padding:0 5px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;}

.button_gd {
    font-size: 16px;
    padding: 8px 10px;
    display: block;
    background: #fff;
    width: 200px;
    text-align: center;
    margin-top: 10px;
    margin: auto;
    border:1px solid #eee;
}

.button_gd:link{color:#333;}
.button_gd:hover {
    background:#d98200;
    color: #fff;
}

/*最新录用*/
.zuixin_tab{overflow:hidden;margin-bottom:20px;background:#fff;}
.zuixin_tab ul{margin:10px 15px 15px;overflow: hidden;}
.zuixin_tab ul li{padding-bottom: 3px;margin-bottom: 3px;line-height: 26px;}

.zuixin_wenzhang{border-bottom: 1px solid #eee;padding-bottom: 10px; margin-bottom: 15px;}
.luyong-shijian{background: #eee;line-height: 26px; color: #666;margin-bottom:5px;}
.zuixin_tab .biaoti{font-size: 15px;font-weight: bold;line-height: 26px;height:26px;display: -webkit-box;  -webkit-box-orient: vertical; -webkit-line-clamp: 1;overflow: hidden;}
.zuixin_tab .zuozhe{color:#999;line-height: 26px;display: -webkit-box;  -webkit-box-orient: vertical; -webkit-line-clamp: 1;overflow: hidden;height:26px;}
.zuixin_tab .volumnh{color:#666;line-height: 26px;}

/*在线期刊*/
.tab_zxqk{overflow: hidden; margin-bottom:20px; background: #fff;}
.tab_zxqk ul{margin:10px 15px;}
.tab_zxqk li{line-height:34px;font-size: 15px; border-bottom:1px solid #f3f3f3;background: #fff; display:block;}
.tab_zxqk a{color:#333;display:block;padding-left: 2px;}
.tab_zxqk a:hover{color: #fff;background:#db9619;display: block;text-decoration: none;}
.tab_zxqk a:hover .glyphicon{color:#fff;}
.tab_zxqk .glyphicon{color:#007d90;margin-right: 6px;}


/*专题*/
.zhuanti_tab{background: #fff;overflow: hidden;}
.zhuanti_tab ul{overflow:hidden;width: 100%; padding:17px 10px 16px;margin-bottom: 0;}
.zhuanti_tab ul li{overflow: hidden;}
.zhuanti_tab ul li:last-child{margin-bottom:0;}
.zhuanti_tab_tp{overflow:hidden;text-align: center;}
.zhuanti_tab_tp img{height:160px;cursor: pointer;transition: all 0.6s;  }
.zhuanti_tab_tp img:hover{ transform: scale(1.2); }
.zhuanti_tab_title{line-height:25px;font-size:14px;font-weight: bold;text-align:center;padding: 5px 0;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.zhuanti_tab_title a:hover{color:#d48d00;text-decoration: underline;}
.zhuanti_tab_author{line-height:26px;color:#666;}
.zhuanti_nirong{width:100%;margin-bottom: 20px;}
.zhuanti_tab_jianjie{line-height:25px;display: -webkit-box;  -webkit-box-orient: vertical; -webkit-line-clamp:4;overflow: hidden;height:100px;}

.ztwz_r_r{display: -webkit-box;  -webkit-box-orient: vertical; -webkit-line-clamp: 1;overflow: hidden;height:30px;}/*控制1行显示*/

.zt_ming{
	 width: 100%;
	 overflow: hidden;
	 line-height: 22px;
	 text-align: center;
	 position: relative;
	 height: 22px;
	 /* margin: 0px auto 15px; */
	 text-align: left;
}
.zt_ming span {
    font-size: 14px;
    color: #0e52ad;
    font-weight: bold;
    position: relative;
    line-height: inherit;
    vertical-align: top;
    padding: 0 12px;
}
.zt_ming span:before, .zt_ming span:after {
    content: '';
    display: block;
    width: 8px;
    height: 3px;
    background: #0e52ad;
    position: absolute;
    top: 35%;
    left: 0px;
}

.zt_ming span:after {
    left: auto;
    right: 0;
}

/*专辑封面列表*/
.table_special{overflow:hidden;}
.table_special ul{overflow:hidden; margin: 15px 0;}
.table_special li{overflow: hidden;padding:5px;}

.table_special li img{height:194px;margin: auto;}
.table_special li img:hover{transform: scale(1.1);transition: .2s;}
.zhuanji_title{
	font-size: 14px;
	font-weight: bold;
    line-height: 26px;
   text-align: center;
	overflow: hidden;text-overflow: ellipsis;white-space: nowrap;
}
.zhuanji_njq{color:#666;text-align: center;}

.lanmu_list{overflow:hidden;}
.lanmu_list li{line-height: 28px;margin-bottom:5px;padding-bottom: 5px;overflow: hidden;border-bottom: 1px solid #eee;}


.r_rtm{display: -webkit-box;  -webkit-box-orient: vertical; -webkit-line-clamp: 1;overflow: hidden;height:26px;}/*控制字数，显示1行，超出用省略号*/

/*下载排行阅读排行切换效果*/
.news_tab{margin:0 auto; background:#ffffff;margin-bottom:30px;}
.news_tab .tab-box{ overflow:hidden; background:#fff; }
.news_tab .tab-box a{   
	display: block;
    float: left;
    text-decoration: none;
    color: #1073d9;
    font-size: 18px;
    height: 43px;
    line-height: 43px;
    width: 50%;
    background: #eaf4ff;
    text-align: center;
}
.news_tab .tab-box a:hover{ background:#b61219; color:#fff; text-decoration:none;}
.news_tab .tab-box a.on{
	    color: #fff;
    line-height: 43px;
    height: 43px;
    text-decoration: none;
    background:#003d8f;
}
.news_tab .neirong{ overflow:hidden; padding:10px 10px 0;}
.news_tab .neirong ul{margin-bottom:0;}
.news_tab .neirong li{ display:none;}

.readwz{overflow:hidden;}
.readwz dl{margin:5px 5px;}
.readwz dd{border-bottom:1px #eee solid;line-height: 24px;padding-bottom:5px;padding-top:5px;overflow: hidden;}
.xz_timu{overflow: hidden;background: url(../images/gif-0865.gif) no-repeat 0 12px; padding-left: 12px;}
.xz_zz{line-height:26px;}
.readwz dl dd a .dot{
	width: 16px;
    height: 16px;
    line-height: 16px;
    color: #fff;
    border-radius: 50%;
    background: #b5b5b5;
    text-align: center;
   display:inline-block;
	margin-right: 8px;
}
.readwz dl dd:nth-child(1) a .dot{background: #e61512;color:#fff;} /*控制第一条变色*/ 
.readwz dl dd:nth-child(2) a .dot{background: #e67412;color:#fff;} 
.readwz dl dd:nth-child(3) a .dot{background: #e6b812;color:#fff;} 



.ph_list{overflow:hidden;margin-bottom:30px;}
.ph_list dl{overflow:hidden;margin: 10px 10px 0;}
.ph_list dl dd{
	font-size: 14px;
    height:36px;
	line-height:36px;
    text-align:left; 
	border-bottom: 1px #eee solid;
}

.ph_list dl dd a .dot{
	width: 16px;
    height: 16px;
    line-height: 16px;
    color: #fff;
    border-radius: 50%;
    background: #b5b5b5;
    text-align: center;
   display:inline-block;
	margin-right: 8px;
}
.ph_list dl dd:nth-child(1) a .dot{background: #e61512;color:#fff;} /*控制第一条变色*/ 
.ph_list dl dd:nth-child(2) a .dot{background: #e67412;color:#fff;} 
.ph_list dl dd:nth-child(3) a .dot{background: #e6b812;color:#fff;} 

.ph_tm{width:85%;float:left;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.ph_shu{width:15%;float:right;text-align: right;}

.ph_timu{width:80%;float:left;display: -webkit-box;  -webkit-box-orient: vertical; -webkit-line-clamp: 1;overflow: hidden;height:28px;}


/*视频*/
.video_tab{margin-bottom:1px;overflow: hidden;background: #fff;}
.video_tab ul{overflow: hidden;margin:4px 0 0;}
.video_tab li{overflow: hidden;}

.video_tp{overflow:hidden;text-align: center;position: relative;}
.video_tp img{height:194px;margin: auto;}
.video_timu{line-height: 26px;text-align: center;font-weight: bold;margin-top: 5px;padding:0 5px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.video_shijian{line-height: 26px;text-align: center;}
.video-list-img{margin-bottom:0;}
.video_play {
    width: 60px!important;
    height: 60px!important;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.shoulu{background: #fff;margin-bottom: 20px;overflow: hidden;}
.shoulu dl{overflow:hidden;padding: 10px 8px 0;}
.shoulu dd{
	line-height:26px;
	padding:4px 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}



/* 代码整理*/
.fengxiang{overflow: hidden;text-align:right;}
#bsWXBox { height: 257px !important;width: 232px !important;}/*home页微信分享弹出二维码边框样式*/
.fengxiang .btn-primary{
	border-color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0px;
    background-color: #ffffff;
}
.fengxiang .btn-primary:hover {
    color: #fff;
    background-color: #fff;
    border-color: #fff;
}
.fengxiang .btn-primary:focus {
    color: #fff;
    background-color: #fff;
    border-color: #fff;
}
.fengxiang .btn-primary:active, .btn-primary:active:focus{
	 color: #fff;
    background-color: #fff;
    border-color: #fff;
}
/* 代码整理：懒人之家 www.lanrenzhijia.com */
.theme-buy {
	margin-top:10%;
	text-align: center;
}
.theme-gobuy, .theme-signin {
	font-size: 15px;
}
.theme-price {
	position: relative;
	bottom: -6px;
	font-family: microsoft yahei, Arial, Helvetica, sans-serif;
	margin-right: 20px;
	font-weight: bold;
	color: #f60;
	line-height: 32px;
	font-size: 24px;
	display: inline-block;
}
.theme-price dfn {
	font-style: normal;
	font-size: 18px;
	margin-right: 2px;
}
.theme-desc {
	padding: 30px;
}
.theme-version {
	padding: 30px;
}
.theme-popover-mask {
	z-index: 9998;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#000;
	opacity:0.4;
	filter:alpha(opacity=40);
	display:none
}
.theme-popover {
	z-index:9999;
	position:fixed;
	top:50%;
	left:50%;
	width:300px;
	height:260px;
	margin:-180px 0 0 -330px;
	border-radius:5px;
	border:solid 2px #eee;
	background-color:#fff;
	display:none;
	box-shadow: 0 0 10px #666;
}
.theme-poptit {
	border-bottom: 1px solid #ddd;
    padding: 0 12px;
    position: relative;
    text-align: left;
}
.theme-poptit h3{margin-top:10px;margin-bottom:10px;font-size: 20px;}
.theme-popbod {
	padding:60px 15px;
	color:#444;
	height: 148px;
}
.theme-popbom {
	padding:15px;
	background-color:#f6f6f6;
	border-top:1px solid #ddd;
	border-radius:0 0 5px 5px;
	color:#666
}
.theme-popbom a {
	margin-left:8px
}
.theme-poptit .close {
	float:right;
	color:#f00;
	padding:5px;
	margin:-2px -5px -5px;
	font-weight:bold;
	
}
.theme-poptit .close:hover {
	color:#f00;
}
.btn.theme-reg {
	position: absolute;
	top: 8px;
	left: 43%;
	display: none
}
.inp-gray, .feed-mail-inp {
	border:1px solid #ccc;
	background-color:#fdfdfd;
	width:220px;
	height:16px;
	padding:4px;
	color:#444;
	margin-right:6px
}
.dform {
	padding:20px;
	text-align: center;
}
.dform .ipt_error {
	background-color:#FFFFCC;
	border-color:#FFCC66
}
.dform-tip {
	display:none;
	background-color:#080;
	color:#fff;
	line-height:42px;
	margin-top:10px;
display:;
	font-size: 14px;
}
.dform-tip-errer {
	background-color: #CF301A;
}
.dform-tip a {
	display: inline-block;
	padding: 0 20px;
	margin-left:10px;
	background-color: #FFE924;
	color: #CF301A;
}
.dform-login {
	padding:0;
	height: 270px;
	overflow: hidden;
}
.dform-login iframe {
	height: 470px;
	margin-top: -180px;
}
.theme-signin {
	margin: -50px -20px -50px 90px;
	text-align:left;
	font-size: 14px;
}
.theme-signin h4 {
	color:#999;
	font-weight:100;
	margin-bottom: 20px;
	font-size: 12px;
}
.theme-signin li {
	padding-left: 80px;
	margin-bottom: 15px;
}
.theme-signin li strong {
	float: left;
	margin-left: -80px;
	width: 80px;
	text-align: right;
	line-height: 32px;
}
.theme-signin .btn {
	margin-bottom: 10px;
}
.theme-signin p {
	font-size: 12px;
	color: #999;
}
.theme-desc, .theme-version {
	padding-top: 0
}
/* 代码整理*/

/*访问统计*/
.tongji{overflow: hidden;margin-top: 10px;}
.tongji ul{overflow: hidden;text-align: left; line-height:26px;}
.tongji span{font-size:26px;}
label{font-weight: normal;}

.bangzhu_wz{padding: 0 10px 20px;text-align: left;line-height: 25px; color: #f00;}

.icon_list1{
	background: url(../images/gif-0865.gif) no-repeat 0 12px;
    padding-left: 13px;
}
.icon_list2{
	background: url(../images/diand.png) no-repeat 0 10px;
    padding-left: 15px;
}
.icon_list3{
	overflow: hidden;
  	background: url(../images/diand.png) no-repeat 0 13px;
    padding-left: 15px;
}
.border{border:#eee 1px solid;}
.border-radius{border-radius:  4px 4px 0 0;}
/*向上滚动时右侧浮动*/
.div-wrapper{position:relative;}
.clearfix:after{
	content:'';
	display:block;
	clear:both;
	height:0;
	visibility:hidden;
}
.clearfix{zoom:1;}
.box-fixed{	position:relative;	top:0px;}
.tab_fix_bottom {position: fixed;bottom: 220px;top: auto;}
.tab_fix{position:fixed;}

/*右侧*/
.j-article{overflow: hidden;background: #fff;padding:15px;}


.nian-juan-qi{font-size: 18px;text-align: center;margin: 6px auto;display: block;}.nian-juan-qi a{color: #004b83;}
.cover-a a{font-size: 14px;color: #004b83;float: left;}
.cover-a{overflow: hidden;width:80%;margin: 10px auto;margin-bottom: 20px;}
.cover-a .cover-a-r{float: right;}
.cover-con{padding: 15px 15px 0;}
.cover-view{font-size: 18px;text-align: center;border: 1px solid #eee;background: url("../images/btn-bg.jpg") repeat-x;height: 40px;line-height: 40px;margin-top:15px;overflow: hidden;}
.cover-view a{color:#004b83;}
.cover{overflow: hidden;}

.journal-list li{margin-bottom:15px;padding-bottom: 15px;overflow: hidden;border-bottom: 1px solid #eee;}
.journal-list li .title a,.journal-list li .doi a{color:#00629f;font-size: 18px;}
.journal-list li .author{color: #666;font-size: 16px;}
.journal-list li .doi a{font-size: 16px;}
.aside-tab-content{
    border: 1px solid #eee;
    border-top:0;
    overflow: hidden;
    margin-bottom: 30px;
    background: #fff;
    padding: 25px 15px;
	box-shadow: 0 0 5px 0 rgba(127,127,127,.1);
	min-height: 304px;
}
.journal-list li .title,.journal-list li .author,.journal-list li .doi{margin: 5px 0;}
.nav-tabs>li>a{border-top:2px solid transparent;font-size: 17px;padding: 10px 15px;}
.nav-tabs-en>li>a{padding: 10px 5px;}
.nav-tabs{border-bottom: 1px solid #e0ecf3;}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover{border: 1px solid #e0ecf3;color:#333;border-top:2px solid #fff;border-radius:2px 2px 0 0;font-size: 17px;border-bottom-color: transparent;}

.view-all a{padding:10px 8px;border: 1px solid #ccc;background: url("../images/btn-bg.jpg");color:#00629f;}
.view-all a .fa-angle-right{font-weight: bold;}
.view-all{margin-top: 10px;}
.journal-list{overflow: hidden;}
.wangkan-list li{
    border: 1px solid #eeeeee;
    background: url(../images/btn-bg.jpg);
    color: #004b83;
    height: 40px;
    line-height: 40px;
    margin-bottom: 10px;
    padding: 0 24px;
    overflow: hidden;
    display: block;
}
.wangkan-list li a{color:#004b83;font-size: 16px;}
.wangkan-list li a i{padding-right:10px;}

.aside-btn{border: 1px solid #eeeeee;background: url("../images/btn-bg.jpg");color:#004b83;height: 40px;line-height: 40px;margin-bottom:10px;padding:0 24px;overflow: hidden;display: block;}
.aside-btn:last-child{margin-bottom: 0;}
.aside-btn a{color:#004b83;}
.aside-btn a i{padding-right:10px;}
.column .more{    background: url(../images/arrow.png) no-repeat right 5px;
    float: right;
    font-size: 15px;
    color: #764612;
    padding-right: 12px;
    line-height: 20px;
    font-weight: normal;}

.news-list li .news-title{font-size: 16px;}
.news-list li .news-date{color:#666;}
.column span{float: left; color:#333;}

.issn-cn p{margin-bottom:0;}

/*-------------------------------文章-----------------------------------*/
.j-article{width:100%;overflow: hidden;}
.latest-issue{margin:0;font-size: 16px;line-height: 26px;font-weight:bold;border-bottom: 1px solid #ccc;padding-bottom: 15px;}
.j-article .title {color: #c30000;font-weight: bold;margin-top: 5px;}
.j-article .journal-info {color:#666;}
.j-article .journal-info a{color: #00629f;}
.n-j-q{width: 100%;font-size: 15px;line-height: 40px;font-weight: bold;padding:10px 0;margin-bottom: 10px; border-bottom: 1px solid #ccc;}
.j-sx{font-size: 15px;color: #f19100;display: -webkit-inline-box;float: right;    margin-right: 10px;}
.j-sx a{color:#00629f;text-decoration:none;}
.j-sx a:hover{color:#f19100;text-decoration:none;}
.article-choose{width: 100%;color: #999;overflow: hidden;margin-bottom: 0px;margin-top: 5px;display: inline-block;border-bottom: 1px solid #ececec;}
.article-choose .choose{float: left;}
.width47{width:47%!important;float: right!important;border-bottom: 0!important;}

.other-tools{float: right;color:#ccc;font-size:18px;}
.other-tools-l{float: left;}
.other-tools .active{color:#f19100;}
.other-tools i,.other-tools .fengexian{padding: 0 3px;cursor: pointer;}
.other-tools .fengexian{padding: 0 3px;font-size: 18px;display: block;float: left;}


.article-list li{border-bottom:1px solid #eee;margin-bottom:7px;overflow: hidden;padding-bottom:7px;}
.article-list li:hover{background: #f6fafd;}
.selectedrow{background: #f6fafd;border-color:#f6fafd;border-top:0;border-left:0;border-right:0;margin:0}
.noselectrow{margin:0;border-color:#fff;border-top:0;border-left:0;border-right:0;}

.article-list li .article-checkbox{float: left;width:20px;}
.article-list li .j-column{color:#888;font-size: 14px;overflow: hidden;}
.article-list li .article-l{float:left;width: 78%;}
.article-list li .j-title-1 a{color:#333;font-size: 16px;}
.article-list li .j-title-1 a:hover{color:#b37120;}
.article-list li .icon-full{color:#54d014;font-size: 14px;}
.article-list li .icon-abstract{color:#999;font-size: 14px;}
.article-list li .icon-video{color:#03a5ca;font-size: 14px;}
.article-list li .icon-article{color:#0376ca;font-size: 14px;}
.article-list li .icon-collections{color:#f19100;font-size: 14px;transform:rotate(7deg);
-ms-transform:rotate(7deg);/* IE 9 */
-moz-transform:rotate(7deg);/* Firefox */
-webkit-transform:rotate(7deg);/* Safari 和 Chrome */
-o-transform:rotate(7deg);/* Opera */}

.article-list li .j-author{font-size: 14px;color:#888;}
.article-list li .j-volumn{font-size: 14px;color:#999;}
.article-list li .j-volumn-doi .j-volumn{float: left;padding-right: 10px;}
.article-list li .j-volumn-doi .j-doi{color:#c8772a;}
.article-list li .j-btn{color:#333;margin-left:-10px;}
.article-list li .j-btn .j-abs{background: url("../images/abstract2.png") no-repeat;padding-left: 23px;padding-bottom: 2px;}
.article-list li .j-btn .j-pdf{background: url("../images/pdf.png") no-repeat;padding-left: 23px;padding-bottom: 2px;}
.article-list li .j-btn .j-html{background: url("../images/htm.png") no-repeat;padding-left: 23px;padding-bottom: 2px;}
.article-list li .j-btn .j-pdf,.article-list li .j-btn .j-html,.article-list li .j-btn .j-abs{color:#333;line-height: 20px;margin-left:10px;}

.article-list li .j-title-1,.article-list li .j-author,.article-list li .j-volumn-doi,.article-list li .j-btn,.article-list li .j-abstract{overflow: hidden; margin-bottom: 3px;line-height: 25px;}
.article-list li .article-img{padding:10px;overflow: hidden;display: block;}
.article-list li .article-r{width:18%;float: right;}
.j-abstract{font-size: 15px;color: #777;display: none;margin-top: 10px;}
.article-list li .article-w{width: 96%;}

/*过刊 */
.gk_nian{padding: 10px 0 0;margin-bottom:8px; border-bottom: 2px solid #999;font-size:20px;font-weight:bold;text-align: left;width:100%;overflow: hidden;}
.gk_qi{line-height: 26px;overflow:hidden;padding:5px;}
.gk_qi span{display: table-cell;font-size:16px;}
.gk_qi a{color:#00629f;}
.gk_fm{overflow:hidden;margin-bottom: 10px;}
.gk_fm li{padding:0 10px;}
.gk_fm img{margin:8px auto;height: 250px;}
.collection {
    padding-left: 3px;
    padding-right: 3px;
    background-color: #fff;
    color: #C9799F;
    font-size: 8px;
    border: 1px solid #C9799F;
    cursor: pointer;
    border-radius: 2px;
}
.in_progress {
    padding-left: 3px;
    padding-right: 3px;
    background-color: #fff;
    color: red;
    font-size: 8px;
    border: 1px solid red;
	border-radius: 2px;
}

/*--end--*/

/* 文章目录*/
.cover_meun{width: 50%;float: right;text-align: right;}


.fm_lm{border-bottom: 1px solid #d9ecfb;padding-bottom: 20px; margin-bottom:20px;}
/*文章*/
.current_list{overflow:hidden;margin-bottom:20px;}
.current_list .tab-content>.tab-pane {padding: 15px 0 8px;overflow: hidden;}
.current_list .nav-tabs {width: 630px;margin: auto;border-bottom:0;padding: 0 20px;}
.current_list .nav-tabs>li {float: left;margin-bottom: 0px;margin-right: 20px;padding-bottom: 0;border-bottom: 0;margin-left: 20px;}
.current_list .nav-tabs>li .glyphicon{top: 3px;right: 3px;}
.current_list .nav-tabs li.active{color:#fff;}
.current_list .nav-tabs li.active a{background: #fff;color: #fff;border: 1px solid #c11428;font-size: 14px;}
.current_list .nav-tabs li.active a:hover{background:#fff;color:#045da9;border-bottom: 3px solid #00409f;}
.current_list .nav-tabs>li.active>a, .current_list .nav-tabs>li.active>a:focus {
    color:#045da9;
    cursor: pointer;
    background-color:transparent;
    border: 0px solid #fff;
   border-bottom: 3px solid #fbaa34;
    font-size: 20px;
	font-weight: bold;
   
}
.current_list .nav-tabs li a{border-radius: 0;height: 45px;line-height: 25px;font-size:18px;background: transparent;color: #333;border:0 solid #fff;margin-right: 0;/* font-weight: bold; */padding: 10px 0;}
.current_list .nav-tabs li a:hover{background: transparent;color: #0063c9;border-color: transparent;}
.current_list .article-box{border-top:0;overflow: hidden;}
.column_title{border-bottom:1px solid #e5e5e5;}
.curr_en{font-size: 18px!important;}

.curr_en li{width:auto!important;font-size: 18px!important;}

.current_list .dropdown-menu{background: #e8e8e8;min-width: 145px;border: 0 solid #e8e8e8;box-shadow: none;margin-top: 1px;padding: 0;}
.current_list .dropdown-menu>li>a{font-size: 16px;}
.current_list .dropdown-menu>li>a:focus, .current_list .dropdown-menu>li>a:hover{background:#007d90;color:#fff;}
.current_list .dropdown-menu>li>a {padding: 5px 24px;border: 0;text-align: center;border-bottom: 2px solid #fff;height: 42px;line-height: 29px;}
.current_list .nav .open>a, .current_list .nav .open>a:focus, .current_list .nav .open>a:hover {
    background-color:#007d90;
    border-color: #ccc;
	color:#fff;
}
.bt_r{text-overflow: ellipsis; white-space: nowrap;}
.wz_doi{width:100%;overflow:hidden;padding-top: 3px;}
.oah {color: #ec7500;font-weight: bold;font-size: 13px;}
.tab{overflow: hidden;width: 300px; float: left;}
.njq{width:100%;font-size:14px;font-weight:bold;line-height: 24px;}
.syq{width:100%;text-align: left;margin-top: 10px;margin-bottom: 10px;}

.kuang{overflow-y: auto; max-height:691px;}
.kuang_en{ overflow: auto!important; height:1300px!important;}
.wenzhanglanmu{
	font-size: 14px;
    font-weight: bold;
    color: #fff;
    margin-top: 8px;
    display: inline-block;
    background: #0a6cca;
    border-radius: 2px;
    padding: 4px 10px;
}
.wenzhang{overflow:hidden;}
.wenzhang li{
	border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    overflow: hidden;
    padding-bottom: 10px;
    min-height: 143px;
    
}


.biaoti_en{display: -webkit-box;  -webkit-box-orient: vertical; -webkit-line-clamp: 2;overflow: hidden;height:46px;}
.zuozhe_en{display: -webkit-box;  -webkit-box-orient: vertical; -webkit-line-clamp: 1;overflow: hidden;height:23px;}

.wz_dqmlh{
	background: #fff;
    margin-bottom: 20px!important;
    padding: 15px 20px 10px;
    padding-bottom: 10px!important;
    border: #e3e3e3 1px solid!important;
}

.wz_h{
	background:#fff;
    margin-bottom: 20px!important;
    padding: 15px 20px 10px;
    padding-bottom: 10px!important;
    border: #fff 1px solid!important;
}
.lanmu_dqmlh{ padding-bottom: 0!important; margin-bottom: 10px!important;}
.lanmu_dqmlh .lmm{
	font-size: 14px;
    color: #fff;
    display: inline-block;
    background:#257ad5;
    padding: 2px 10px;
}

.biaotih{line-height:28px!important;overflow:hidden;text-overflow: ellipsis;white-space:nowrap;}
.zuozheh{line-height:28px!important;overflow:hidden;text-overflow: ellipsis;white-space:nowrap;}
.wz_timu{overflow:hidden;}
.timuzz{width:80%;line-height: 24px;}
.kmnjqh{line-height:28px!important;min-height:56px;}
.zhaiyaoh{color:#999;line-height:28px;height:85px;overflow: hidden;}
.zhaiyaoh p{margin-bottom: 0;}
.richpdfh{line-height:28px;margin-bottom: 5px;}
.richpdfh span{border:1px solid #e4c656;background: #fff; color:#333;padding:3px 8px;border-radius:5px;margin-right: 10px;}
.richpdfh span a{ color:#333;}
.richpdfh .fa{color:#df921e;}
.doih{color:#333;line-height: 26px;}
.red{color:#f00;}
a.doicolor{color: #195fb9;}

.gdwz{color:#333;text-align: right;padding:5px 0 10px;}

.more-article a {
    background: #fff;
    font-size: 14px;
    color: #222;
    display: inline-block;
    margin-top: 20px;
	margin-bottom:20px;
    height: 37px;
    line-height: 37px;
    padding: 0 35px;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
}

.index_xz{background: url(../images/index_xz_icon.png) no-repeat 10px center;
	padding-left: 30px;
    width:100%;
    border: 1px solid #d9ae0e;
    float: left;
    border-radius: 3px;
    line-height: 24px;
	margin-bottom: 6px;
}
.index_lll{background: url(../images/index_lll_icon.png) no-repeat 9px center; 
	width: 100%;
    border: 1px solid #d9ae0e;
	padding-left: 30px;
    float: left;
    border-radius: 3px;
    line-height: 24px;
	margin-bottom: 6px;
}

.index_html{background: url(../images/index_html_icon.png) no-repeat 9px center; 
	width: 100%;
    border: 1px solid #d9ae0e;padding-left: 30px;
    float: left;
    border-radius: 3px;
    line-height: 24px;
}
*#dbt_action_bar_hide {
    DISPLAY: none;
}

*.hidelabel {
    DISPLAY: none;
}


*.abs_zuozhe {
    COLOR: #444;
    font-size: 14px;
}

*.abs_njq {
    COLOR: #444;
    font-size: 14px;
   
    line-height: 26px;
}
.links1 {
    line-height: 26px;
}
.noselectrow {
   
   BORDER-LEFT: white 1px solid;
   border-bottom: 1px solid #eee;
    WIDTH: 100%;
    BORDER-TOP: white 1px solid;
    BORDER-RIGHT: white 1px solid;
   
}
.selectedrow {
    BORDER: #eee 1px solid;
    MARGIN: 1px 0px;
    WIDTH: 100%;
    BACKGROUND: #f8f8f8;
   
}
.authorList {
    line-height: 22px;
    margin-bottom: 1px;
    margin-top: 3px !important;
}
.articlesectionlisting {
    border-bottom: #ddd 0 solid;
    padding-bottom: 5px;
    margin: 10px 0 10px;
    padding-left: 0px;
    width: 100%;
    padding-right: 0px;
    color: #3a3a3a;
    font-weight: normal;
    overflow: hidden;
}
.articlesectionlisting INPUT {
    FLOAT: left;
}

.articlesectionlisting .dbt_header {
 color: #900031;
    font-size: 16px;
	font-weight: bold;
}
.txt_zhaiyao1 {
    COLOR: #000;
	font-size:14px;
}

A.txt_zhaiyao1:link {
    COLOR: #000;
    TEXT-DECORATION: none;
}

A.txt_zhaiyao1:hover {
    COLOR: #c30000;
    TEXT-DECORATION: underline;
}

A.txt_zhaiyao1:visited {
    COLOR: #000;
    TEXT-DECORATION: none;
}

A.txt_zhaiyao1:active {
    TEXT-DECORATION: none;
}

.txt_biaoti {
    COLOR:#333!important;
    font-size: 14px;
	font-weight: bold;
}

A.txt_biaoti:link {
    COLOR: #1456a8;
    TEXT-DECORATION: none;
}

A.txt_biaoti:visited {
    COLOR: #1456a8;
    TEXT-DECORATION: none;
}
A.txt_biaoti:hover {
    COLOR:#eb9024!important;
    TEXT-DECORATION: none;
}
A.txt_biaoti:active {
    TEXT-DECORATION: none;
}

.txt_14000 {
    font-size: 14px;
    color: #000000;
}

A.txt_14000:link {
    color: #000000;
    TEXT-DECORATION: none;
}

A.txt_14000:hover {
    COLOR: #ae0001;
    TEXT-DECORATION: underline;
}

A.txt_14000:visited {
    color: #000000;
    TEXT-DECORATION: none;
}

A.txt_14000:active {
    TEXT-DECORATION: none;
}
.txt_zhaiyao3 {
  color: #0964ba;
  font-size: 15px;
}

a.txt_zhaiyao3:link {
  color: #0964ba;
  text-decoration: none;
}

a.txt_zhaiyao3:hover {
  color: #be8109;
  text-decoration: underline;
}

a.txt_zhaiyao3:visited {
  color: #0964ba;
  text-decoration: none;
}

a.txt_zhaiyao3:active {
  text-decoration: none;
}

/*文章图片显示隐藏用到开始*/
.hiden {
    DISPLAY: none;
}
/*文章图片显示隐藏用到结束*/

.article_checkbox_cell{padding:3px;}

.white_content {
    display: none;
    color: #666;
    line-height: 24px;
    font-size: 14px;
    width: 100%;
    overflow: hidden;
}
/* 文章目录end*/


.current_list2{overflow:hidden;margin-bottom:20px;}
.current_list2 .tab-content>.tab-pane {padding: 15px 0 8px;overflow: hidden;}
.current_list2 .nav-tabs {border-bottom: 1px solid #d7e9ff;padding: 0 20px;width:100%;}
.current_list2 .nav-tabs>li {float: left;margin-bottom: 0px;margin-right: 0;padding-bottom: 0;border-bottom: 0;margin-left: 0;}
.current_list2 .nav-tabs>li .glyphicon{top: 3px;right: 3px;}
.current_list2 .nav-tabs li.active{color:#fff;}
.current_list2 .nav-tabs li.active a{background: #fff;color: #fff;border: 1px solid #c11428;font-size: 14px;}
.current_list2 .nav-tabs li.active a:hover{background:#003d8f;color: #fff;/* border: 1px solid transparent; */}
.current_list2 .nav-tabs>li.active>a, .current_list2 .nav-tabs>li.active>a:focus {
    color: #fff;
    cursor: pointer;
    background-color: #003d8f;
    border: 0px solid #fff;
    /* border-bottom: 3px solid #00409f; */
    font-size: 18px;
   
}
.current_list2 .nav-tabs li a{border-radius: 0;height: 45px;line-height: 27px;font-size:18px;background: transparent;color: #333;border:0 solid #fff;margin-right: 0;font-weight: bold; padding: 10px 20px;}
.current_list2 .nav-tabs li a:hover{background: transparent;color: #0063c9;border-color: transparent;}
.current_list2 .article-box{border-top:0;overflow: hidden;}

.button_gd {
    font-size: 16px;
    padding: 8px 10px;
    display: block;
    background: #fff;
    width: 200px;
    text-align: center;
    margin-top: 10px;
    margin: auto;
    border:1px solid #eee;
}

.button_gd:link{color:#333;}
.button_gd:hover {
    background:#d98200;
    color: #fff;
}

.red-bg{background:#ae0c2a;overflow: hidden;padding: 20px 0;}
.links li {float: left;margin: auto;text-align: center;width: 25%; /* display: contents; */}
.links{overflow: hidden;width: 100%;margin: auto;}
.links li img{max-height: 60px;max-width: 161px;vertical-align: middle;margin: 0 30px;}

/*--返回顶部top--*/
.top_web{position: fixed;_position: absolute;bottom:80px;right:10px;width:48px; height:45px;border-radius: 5%;display: none;z-index: 9999;cursor: pointer; background:#ababab;}
.top_web .glyphicon{color:#fff;text-align:center;top:11px; left:12px;font-size: 22px}
/*--返回顶部top--*/

/*底部*/

.footer-info{color: #e4e4e4;text-align: center;font-size: 14px;padding: 15px 0 0;}
.footer-info a{color: #e4e4e4;}
.footer-info p{margin-bottom: 5px;line-height: 22px;}
.j-wechat img{padding: 3px;background: #fff;width:106px;border-radius:2px;}
.share{margin:10px auto 0;text-align: center;}
.share i{color: #fff;margin: 0 10px;text-align: center;}

.cover-container li{border: 1px solid #e5e5e5;padding:2% 2%;margin-bottom:2%;}
.cover-container li h3{margin: 0;}
.cover-list span{color:#00629f;}
.cover-download-pdf{overflow: hidden;}
.cover-container .cover-cover{margin: 10px 0;}
.cover-cover img{border: 1px solid #ddd;}
.cover-download-pdf a{float: right;background: url("../images/download-pdf.png") no-repeat;padding-left: 20px;color: #00629f;}
.cover-list{margin-bottom: 10px;cursor: pointer;}
.cover-container{display: none;overflow: hidden;}



/*内容*/
.content_nr{overflow: hidden;border:1px solid #fff;background: #fff;padding:10px 15px;box-shadow: 0 0 10px #e3e3e3;margin-bottom: 20px;}
.content_nr .column{
	font-size: 18px;
    height: 44px;
    color: #333;
    line-height: 40px;
    font-weight: bold;
    margin: -6px -10px 20px;
    padding-left: 10px;
    border-radius: 2px;
    border-bottom:2px solid #e4e4e4;
   
}
.content_nr .newstitle{
    text-align: center;
    margin: 30px 0 20px;
    font-size: 20px;
   
}
.item-content{}
.content_volumn{margin:20px;}
/*位置*/
.location{font-size: 16px;margin:0 0 15px 5px;display:none;}
.location i{font-size: 14px;margin-right:5px;}
.location a{color:#666}

/*Cover galler*/
.panel-title>a{text-decoration:none;color:#00629f;font-size:18px;font-weight: bold;}
.panel-title>a i{text-decoration:none;color:#999;float:right;}
.panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #eee;
}
.panel-default {
    border-color: #eee;margin-bottom:20px!important;
}
.cg {padding:20px 15px;}
.cg p{margin-bottom:5px;}
.cg .title a{color:#00629f; font-weight:bold;font-size:18px;}
.cg a{color:#00629f;}
.cg .date{color:#333; font-weight:bold;}
.cg .fm{float:right;margin-left:10px;margin-bottom: 10px;}
.cg .fm img{border:1px solid #ccc;padding: 2px;}


/*专题*/
.bs-collections{
    border:1px solid #eee;
	border-radius:0;
	overflow: hidden;
	padding: 20px;
	border-left-width: 4px;
	border-left-color:rgb(236, 202, 103);
	margin-bottom: 20px;
	background:#fbfbfb;
}
.bs-collections {padding:20px 15px;}
.bs-collections p{margin-bottom:5px;}
.bs-collections .title{font-weight:bold;font-size:18px;margin-bottom: 5px;}
.bs-collections .title a{color:#00629f; font-weight:bold;font-size:18px;}
.bs-collections .journal{color:#7b98b7;margin-bottom: 8px;font-style: italic}
.bs-collections .editor{color:#b76e11;margin-bottom: 8px;}
.bs-collections .list-group a{color:#00629f; font-size:18px;}
.bs-collections .date{color:#333; font-weight:bold;}
.bs-collections .fm{float:right;margin-left:10px;margin-bottom: 10px;}
.bs-collections .link a {
    color: #00629f;
	margin-top: 8px;
	display:block;
}

.bs-collections-list{border:0;}
.bs-collections-list .title{font-weight:bold;font-size:20px; margin-bottom: 10px;}
.bs-collections-list .editor{color:#555;}

.sort-order{
    border-radius: 2px;
    box-shadow: inset 0 1px 0 #fff;
    border: 1px solid #dedede;
    line-height: 180%;
    padding: 5px 10px;
    overflow: hidden;
	margin-bottom:20px;
	background-image: linear-gradient(to bottom,#f8f8f8,#e5e5e5);
    width: 100%;
}

.sort-order span{float:left;font-weight:bold;font-size:14px;margin-right:10px;}
.sort-order .btn {
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        -webkit-box-shadow: inset 0 1px 0 #FFF;
        -moz-box-shadow: inset 0 1px 0 #FFF;
        box-shadow: inset 0 1px 0 #FFF;
        border: 1px solid #bcbcbc;
        color: #666;
        margin: 0;
        padding: 2px 10px 0;
    }

.sort-order .btn:hover{
        border-color: #999;
        color: #444;
        text-decoration: none;
}
.sort-order .in {
    font-weight: bold;
	color:#444;
	border-color: #999;
}


.julei{background: #fbfbfb;}
.julei ul {
	padding:10px 5px;
}
.julei li{
	padding:2px 0;
}
.julei .title {
	background: #f7f5f0;
	padding:5px;
	font-weight:bold;
	border-left: 3px solid #ef7d47;
	
}


/*news-list-1 */
.news-list-1{
    margin-bottom: 30px;
}
.news-list-1 .news-item-1 .media-left{
    padding-right: 15px;
}
.news-list-1 .news-item-1 a{
    display: block;
    border-bottom: 1px dashed #e2dfdc;
    padding: 20px 0;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
    position: relative;
    overflow: hidden;
}
.news-list-1 .news-item-1 a:hover{
	text-decoration:none;
}
.news-list-1 .news-item-1 .news-date{
    color: grey;
    width: 100px;
    background: #F5F5F5;
    text-align: center;
    padding: 8px 5px 10px;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}
.news-list-1 .news-item-1 .news-date .day{
    color: #666;
    font-size: 28px;
    font-weight: bold;
}
.news-list-1 .news-item-1 .news-title{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}
.news-list-1 .news-item-1 .news-desc{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.6;
    color: #666;
}
@media screen and (min-width: 768px) {
    .news-list-1 .news-item-1 .news-title{
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    .news-list-1 .news-item-1 .news-go{
        position: absolute;
        top: 0;
        bottom: 0;
        right: -125px;
        width: 125px;
        background: rgb(239, 46, 51,.82);
        color: #fff;
        font-size: 32px;
        text-align: center;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }
    .news-list-1 .news-item-1 .news-go .fa{
        position: absolute;
        top: 50%;
        margin-top: -16px;
        line-height: 1;
        left: 50%;
        margin-left: -16px;
    }
    .news-list-1 .news-item-1 a:hover{
        background: #eee;
    }
	/*
    .news-list-1 .news-item-1 a:hover .news-go{
        right: 0;
    }
	*/
    .news-list-1 .news-item-1 a:hover .news-date{
        background: #eee;
    }
	
}
@media screen and (max-width: 767px) {
    .news-list-1 .news-item-1 .news-date{
        margin-bottom: 10px;
    }
    .news-list-1 .news-item-1 .news-go{
        display: none;
    }
	
	.top_web{right:10px;}
	
}
/*news-list-1 end*/


@media (max-width: 992px){
 nav.navbar.bootsnav .navbar-brand {
    float:left!important;
 	}
	.tab_fix, .tab_fix_bottom{position:relative;bottom:10px;}
	.fengxiang{text-align:left;float: left;}
}

@media (max-width: 678px){
	.header{padding:10px 15px!important;}
	.banner {margin:0 auto;}
	.banner img {margin:15px auto;}
	.daohang{
	float: none;
    margin-top: 0!important;
   border-bottom: 2px solid #e9e9e9;}
	.rssemail{width:100%;float: none;}
   
    .journal .journal-logo{width: 100%;float: none;margin-bottom: 20px;display: block;}
	.last-issue{width: 100%;margin:10px 0 0;}
    .journal-img{margin:20px 0;}
    .zhuban{display: none;}
    .j-journal .main-btn{background-color: #2d7fd9;background-position: 25px 12px;}
    .header-r{float: none;}
    .cover-info,.cover{width: 100%;float: none;margin:10px 0;}
    .cover-info{height: auto;max-height: auto;}
    .j-journal{width: 100%;float: none;}
    .nav-bar{margin:10px 0;display: none;}
    ul.nav,.header{height: auto;}
    .cover-content{color: #666;}
    .news{padding: 0 10px;height: auto;}
    .news-column,.news-a{width: 100%;}
    .slide{min-height: auto;}
    .bx-wrapper img{height: auto;}
    .more-read{padding-top: 70px;background-position: 0 73px;}
    .links li{width: 100%;float: none;padding: 10px 0;display: block;}
    .links{margin-top:0;}
    .footer-info{text-align: center;width: 100%;line-height: 18px;float: none;padding:0;}
    .wechat{width: 100%;float: none;}
    .footer-box .footer-logo{margin: 0;}
    .footer-box .sydw{float: none;margin: 0;}
    
	
	.allpadding{margin-top:0;}
	
	.padding-0{}
   
    .journal-head .journal-head-bg{padding: 15px;}
	.article-search .input-group{width:70%;}
	.article-search .adv-search{width:28%;margin-top:0;}
    .article-search{width: auto;float:none;overflow: hidden; margin:60px 0 15px;}
	.tbjs{display:none;}
    .text_en { width: 58%!important;float:none;}
	.gjjs_en{width: 40%!important;}
    .journal-head{margin-bottom: 15px;}
    .datu-pic .carousel-indicators{width: 100%;text-align: right;padding:5px 10px;top:0;z-index:0;}
    .datu-pic .carousel-caption{white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
    .article-list li .article-l{width:92%;}
    .article-list li .article-r{width: 100%;float:none;}
    .nav-tabs>li>a, .nav-tabs>li>a:focus, .nav-tabs>li>a{padding: 10px 4px;}
    .footer{padding: 10px 0;}
    .red-bg{padding: 10px 0;}
	.logo-brief {display:none;}
	.cg .fm{float:left;margin-left:0;}
	.bs-collections .fm{float:left;margin-left:0;}
	.sort-order {margin-top:20px;padding-bottom:10px;}
	.sort-order .btn {width: 100%;}
	.gk_fm li{min-height:200px;}
	.j-sx{display:block;margin:15px 0 0;width:100%;text-align: left;float:none;}
	.njq{width:100%;}
	.topic{background:url();margin-bottom:15px;margin-top: 15px; padding:0;}
	
	.hot_tab ul li {margin-bottom: 10px;}
	.site-nav {
		min-height: 0px;
		width: 100%;
		z-index: 999;
		
	}
	.navbar-header{
		padding:5px 15px;
	}
	.navbar-collapse{
		background:#e5e5e5;
		position:absolute;
   	 	width: 100%;
    	padding: 0 15px;
	}
	.navbar-nav .open .dropdown-menu>li>a {
    	line-height: 26px;
    	text-align: left;
		color: #fff;
		font-size: 14px;
	}
	.dropdown-menu{background-color:#a5a5a5!important;}
	.navbar-nav>li>a{    
		line-height: 40px;
    	border-bottom:1px solid #d7d7d7;
    	color: #333;
    	font-size: 16px!important;
		text-align: left!important;
	}
	
	.nav .open>a{
		border-color: #686143;
    	color: #fff;
    	background:#686143;
	}
	.site-nav .nav>li>a:focus, .site-nav .nav>li>a:hover {
        text-decoration: none;
    	background-color:#a5a5a5;
    	color:#fff;
    	border-color:#bbb8b8;
	}
	.navbar-toggle {
		padding: 7px;
    margin-top: 2px;
    margin-bottom: 2px;
    margin-right: 0;
    vertical-align: middle;
		
    }
	.navbar-brand {
    	padding: 0;
    	width:50%;
		height:auto;
	}	
	.xsnav{padding:0 0;}
	.navbar-brand img{vertical-align: middle;width:150px;}
	.m_search{float:right;    margin: 13px;}
	.well{
		border:0;
		padding: 10px 22px;
    	overflow: hidden;
    	margin-bottom: 2px;
	}
	.m_s{position: absolute; z-index: 999;    width: 100%;}
	
	
	.tab-box-mobile {
		overflow-x: scroll;
    
	}
	.qkxx{margin-bottom:10px;}
	.qkxx_fm{width:100%;float:none;}
	.qkxx_fm img{height:auto;}
	.qkxx_xx{width:100%;float:none;padding:0;}
	
	
	.allpadding{margin-top: 0;}
	.bgcd{margin-bottom: 5px;}
	.bgcd a{padding:1px 0;}
	.bgcd img{width:130px;}
	.ewm{
		display: block;
		margin: auto;
		float: none;
		margin-bottom: 20px;
	}
	.zxbg_tab li {margin-bottom: 10px;}

	.tgbutton{width:100%;}
	.tutu{background:url();}
	.carousel-inner>.item>a>img, .carousel-inner>.item>img {
   			max-height:100%;
		    height: auto;
	}
	.carousel-caption{
		font-size: 14px!important;
		width: 100%;
		
	}
	.current_list{margin-bottom:20px;}
	.current_list .nav-tabs{width: -webkit-max-content; width: max-content;}
	.current_list .nav-tabs>li {
    margin-right: 5px;
    margin-left: 5px;
	}
	.current_list .nav-tabs>li.active>a, .current_list .nav-tabs>li.active>a:focus {
        cursor: pointer;
    font-size: 16px;
    font-weight: bold;
	}
	.current_list .nav-tabs li a{font-size:16px;padding: 7px 10px;}
	.current_list .tab-content>.tab-pane{padding:15px;}
	
	
	.news_tab .tab-box a{font-size:14px;margin-right: 10px;}
	
	.news_tab .tab-box{overflow-x: scroll;}
	.news_tab .tab-box .tab-box-mobile{width: -webkit-max-content;width: max-content;}
	
	.article-list li .article-l, .article-list li .article-r{width:93%;padding-top: 0;}
	
	.bgcd{margin-bottom:5px;}
	.bgcd a{padding:1px 0;}
	.bgcd img{width:150px;}
	
	/*摘要页面美工修改*/
	.flane_l{width:100%;}
	.flane_r{width:100%;padding-right:15px;}
	.wzjs{display:none;}
	.input-group{width:72%;}
	.adv-search:link, .adv-search:visited{width:25%;}
	.tupian{margin: 20px 0 20px;}
	.bai{background:#fff;padding-left:15px;padding-right:15px;}
	
	.news_tupian{ margin-bottom:20px;}
	.carousel-inner>.item>a>img, .carousel-inner>.item>img {
   	height: 150px;
	}
	.carousel-caption{font-size:14px;}
	

	.dbnr{line-height:24px;margin-bottom: 10px;}
	
	.allpadding{margin-top:0;}
	
	.index_top{margin-top: 10px;margin-bottom: 10px;}
	
	.padd0 {padding-left: 0; padding-right: 0;}
	.hot_tab{margin-bottom:25px;}
	.hot_tab .carousel-inner img{width:100%;height:auto;}
	.hot_tp{width:100%;margin-bottom: 10px;}
	.hot_wz{width:100%;}
	.hot_tab .carousel-indicators{bottom:5px;left: 40%;}
	.mk_zuozhe{margin-left:15px;margin-right:15px;}
	.db1{padding-left:15px;margin-bottom: 10px;}
	.tongji{margin-bottom:20px;}
	.zclm_2{ position: relative;}
	.zclm_2 ul li{float:none;line-height:30px;margin-left:15px;}
	.gdyqlj{    
		line-height: 30px;
		position: absolute;
		right: 0;
		top: 13px;
	}
	
	.office_list{margin-left:15px;margin-right:15px;}
	.office_list li{    
		width: 48%;
    text-align: center;
    /* float: none; */
    margin: 0 1%;
    margin-bottom: 10px;
    padding: 0;
    border-right: 0;
	}
	.office_list li img{width:40px;height:40px;}
	.btn-shadow{padding:5px 10px;}
	.bgwz{line-height:36px;margin-top: 0;font-size: 18px;}
	
	.qkxx{margin-bottom:10px;}
	
	.news_tupian{margin-top:0;margin-bottom: 20px;}
	.carousel-inner>.item>a>img, .carousel-inner>.item>img {
    width: 100%;
    height: auto;
	}
	.carousel-caption p{width:100%;float:left;display: -webkit-box;  -webkit-box-orient: vertical; -webkit-line-clamp: 1;overflow: hidden;height:26px;}
	.top_web{right:10px;}
	.one-color{background:none;}
	.gk_fm img{height:170px;}
	
	.sTempWrap {
    width: 320px!important;
    margin: auto;
	}
	
	.zhuanti_tab_tp img{height:120px;}
	
	.cover_meun{width:100%;float:none;text-align: left;}
	.cover-download{margin-left:0;margin-right:10px;}
	
	
	
}


/*高级检索css更新*/
#advsearch .td-left {
    background: #f1f1f1;
    width: 120px;
    padding: 3px 10px;
    text-align: right;
}
#advsearch * {
    font-family: revert;
    font-size: 14px;
}
#advsearch table {
    border: 0;
}
#advsearch input,#advsearch select{
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#advsearch label input{margin-right:5px;height: 14px;}
#btn-search {
    width: 160px;
    background:#e59c08!important;
    color: #fff!important;
    border-radius: 5px;
    font-size: 16px;
    margin-left: 5px;
    margin:0 auto;
    height: 42px!important;
	padding: 6px 12px;
	
}
@media (min-width: 768px){
	.navbar-nav>li {
    float: left;
	}
	
	.site_nav_en li{width:auto;}
}

@media (min-width: 767px)and (max-width: 992px){
	.site-nav .navbar-nav>li>a {font-size: 15px;padding-left:7px;padding-right:7px;}
	.site_nav_en a{font-size:16px!important;padding-left:15px!important;padding-right:15px!important;}
	.email ul{text-align: center;}
	.zhuanti_tab, .current_list, .video_tab{margin:0;margin-bottom: 20px;}
	.zuozhe_list{width:100%;float:none;}
	.rssemail{margin-top:11px;}
	.qkxx_xx{padding:10px;}
	.hot_tab .carousel-inner img{width:auto;height:300px;margin: auto;}
	
	.office_list li{margin-bottom:15px;}
	
	.article-search .input-group{width:57%;}
	.article-search .adv-search{width:21%;}
	
	.text_en{width:37%!important;}
	.gjjs_en{width:39%!important;}
	
	.btn-shadow {padding: 5px 5px;}
	.bgwz{letter-spacing:0;font-size:18px;}
	.gk_fm img{height:auto;}
	
	.ewm{text-align:left;}
	.ewm img{width:auto;height:140px;}
	
}

@media (min-width: 992px) and (max-width: 1200px) {
	
}


@media (min-width: 992px) and (max-width: 1024px) {
	.site-nav .navbar-nav>li>a {font-size: 16px;}
	.current_list .nav>li>a { padding: 7px 17px;}
	
	.article-search .input-group {width: 74%;}
	.text_en{width:45%!important;}
	.site_nav_en a{padding:10px 12px!important;}
	.current_list .nav>li>a { padding: 7px 1px;}
}


@media(min-width:1024px) and (max-width: 1200px){
	.site-nav .nav>li>a {padding-left:12px;padding-right:12px;}
	.site_nav_en a{font-size:15px!important;padding-left:7px!important;padding-right:7px!important;}
	.article-search .input-group{width:72%;}
	.article-search .adv-search{width:25%;}
	.text_en{width:31%!important;}
	.gjjs_en {  width: 47%!important;}
	.btn-shadow {padding: 5px 5px;}
	.bgwz{letter-spacing:0;}
	.gk_fm img{height:auto;}
	.bgwz_en{font-size:14px;}
}

@media (max-width: 1200px) {
	.index_cont{width:100%;}
	.fudong{display:none;}
	.left-sidebar{padding-left:15px;padding-right:15px;}
	.right-sidebar{padding-left:15px;padding-right:15px;}
	.current{margin:0;}
	.jishu{display:none;}
	.pl10{padding-left:0px;padding-right:0px;}
	.pr10{padding-left:0px;padding-right:0px;}
}

@media (min-width: 1024px){
	
	
}

/*改变导航默认高*/
@media (min-width: 768px) {

	.navbar-nav > li > a {
        padding-top: 0;
        padding-bottom: 0;
    }
	.site-nav .nav>li>a {
    color: #333;
	}	
	

}

@media (min-width:1200px) {
	.site-nav .nav>li>a {padding-left:31px;padding-right:31px;}
	.navbar .nav > li:hover .dropdown-menu {display: block;}/*导航hover事件修改*/
	.site_nav_en a{padding-left:35px!important;padding-right:35px!important;}
	
	.current_list_en .nav-tabs{width:735px!important;}
	.current_list .nav-tabs_en li a{padding-left:15px;padding-right:15px;}
	.box-fixed{width:270px;height:auto;}
	
	
	.pl0{padding-left:0;padding-right: 0;}
	
	.container{width:1320px;}
	
	
	.m-center{}/*二级页面必引*/
}

/*二级页面start--------------------------------------------------------------------*/

.m-center{width:100%;padding-left:15px;padding-right:15px;}/*二级页面必引*/
.padding15{padding:15px;}
.margin15{margin:15px;}
.padding0{padding:0;}
.margin_b25{margin-bottom:25px;}
.flr{float:right;width:300px;padding-left:0;padding-right:0;}
/*按栏目浏览列表*/
.article_lanmu_list{overflow:hidden;}
.article_lanmu_list li{line-height:25px;padding:5px;border-bottom: 1px solid #e9e9e9;}
.article_lanmu_list h3{font-weight:bold;}
.wenzhanglanmu_lm{line-height:30px;}
/*期专辑*/
.qi-zhuanji{overflow:hidden;min-height: 280px;margin-bottom: 20px;}
.qi-zhuanji ul{overflow:hidden;border-bottom: 1px solid #e9e9e9;padding: 10px 0;margin-bottom: 0;}
.qi-zhuanji li{line-height: 24px;}

.zhuanji_tupian{padding-top:10px;}
.zhuanji_tupian img{width:250px;height:200px;margin: auto;}
.zhuanji_timu{text-align:center;font-weight: bold;padding: 8px 0;}
.zhuanji_nianjq{text-align:center;}

/*过刊浏览聚类*/
.guokan-julei{line-height:30px;text-align:left;padding-bottom:10px;}
.guokan-julei a {
    display: block;
    float: right;
    border: 1px solid #eee;
    padding: 0 5px;
	font-size:14px;
	font-weight:normal;
	text-decoration:none;
}
a.J_WenZhang_U {
    color: #fff;
    background: #0c67be;
	text-decoration:none;
	
}
.news_biaoti{font-size:16px;}

.table-bordered {width: 99%;margin: auto;}

.gk_moshi{overflow:hidden;text-align: right;padding-bottom: 20px;}
.gk_moshi ul{float: right;right: 20px;}
.gk_moshi li{
	float: left;
	width: 97px;
	/* height: 30px; */
	font-size: 14px;
	cursor: pointer;
	color: #666666;
	text-align: center;
	border: 1px solid #dedede;
	display: inline-block;
	line-height: 33px;
}
.gk_moshi ul li.on {
    background:#0761bd;
    color: #ffffff!important;
}
.gk_moshi ul li.on a{color:#fff;}
.gk_moshi ul li a:hover{background:#df9715;color: #ffffff;display: block;}

.sg_tab{overflow:hidden;min-height:190px;border-bottom:1px solid #e7e7e7;padding-bottom:20px;margin-bottom:20px;}
.sgzj_tp{width:50%;float:left;}
.sgzj_tp img{width:90%;}
.sgzj_jj{width:50%;float:left;display: -webkit-box;  -webkit-box-orient: vertical; -webkit-line-clamp: 6;overflow: hidden;line-height: 26px; height:156px;}

.n-banner{background:url(../images/n_b1.jpg) no-repeat top;background-size: cover;position:relative;height:400px;margin-bottom: 30px;}


@media (max-width: 765px) {
	.n-banner{height:150px;}
}


/*二级页面end----------------------------------------------------------*/

/*非响应式结构必引*/



/*非响应式结构必引end*/


