
@media (min-width: 1200px) {
  /*控制整个滚动条*/
  ::-webkit-scrollbar {
    background-color: #fff;
    width: 8px;
    border-left: 1px solid #ccc;
  }
  /*滚动条两端方向按钮*/
  ::-webkit-scrollbar-button {
    display: none;
  }
  /*滚动条中间滑动部分*/
  ::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
  }
}

@font-face {
  font-family: 'Montserrat-Bold';
  src: url("../font/Montserrat-Bold.ttf");
}

@font-face {
  font-family: 'Montserrat-Light';
  src: url("../font/Montserrat-Light.ttf");
}

@font-face {
  font-family: 'Montserrat-Regular';
  src: url("../font/Montserrat-Regular.ttf");
}

* {
  padding: 0;
  border: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

html {
  font-size: 10px;
}

@media (max-width: 767px) {
  html {
    font-size: 9px;
  }
}

body {
  font-size: 1.6rem;
  color: #303030;
  font-family: 'Montserrat-Regular';
  max-width: 1920px;
  margin: 0 auto;
}

ul {
  list-style-type: none;
}

input,
img,
select {
  vertical-align: middle;
}

input,
textarea,
button {
  font-family: inherit;
  font-size: inherit;
  -webkit-appearance: none;
}

input:focus,
textarea:focus,
button:focus {
  border: 1px solid #0f60b2;
}

a {
  text-decoration: unset;
  color: inherit;
}

a:hover,
a:focus {
  text-decoration: none;
  outline-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  font-weight: normal;
  font-family: "Montserrat-Bold";
}

.tabs-content .tab-pane {
  display: none;
}

.tabs-content .tab-pane.active {
  display: block;
}

.zoom-container {
  width: 30vw;
  border: 1px solid #ccc;
  cursor: crosshair;
  overflow: hidden;
}

.zoom-container img {
  width: 100%;
  position: relative;
}

.common-message {
  position: fixed;
  z-index: 999;
  max-width: 500px;
  padding: 30px;
  background-color: #0f60b2;
  color: #fff;
  top: 100px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  border-radius: 6px 0 0 6px;
}

.common-message.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.common-message.success {
  background-color: #67C23A;
}

.common-message.warning {
  background-color: #E6A23C;
}

.common-message.danger {
  background-color: #F56C6C;
}

@media (max-width: 767px) {
  .common-message {
    padding: 15px;
  }
}

main {
  margin-top: 87px;
}

.swiper-container:hover .swiper-button {
  visibility: visible;
  opacity: .7;
  -webkit-transform: none;
          transform: none;
}

.swiper-container .swiper-button {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

.swiper-container .swiper-button-prev {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}

.swiper-container .swiper-button-next {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

.swiper-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 20px rgba(28, 16, 0, 0.1);
          box-shadow: 0 0 20px rgba(28, 16, 0, 0.1);
  opacity: 0.7;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

.swiper-button::after {
  display: none;
}

.swiper-button:hover {
  opacity: 1 !important;
}

.swiper-button-prev {
  background: url(../image/left.png) no-repeat center center;
}

.swiper-button-next {
  background: url(../image/right.png) no-repeat center center;
}

.swiper-pagination {
  position: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #a8a8a8;
  border-radius: 4px;
  margin: 0 4px;
  opacity: 1;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

.swiper-pagination-bullet-active {
  width: 12px;
  background-color: #0f60b2;
}

.iframe-container {
  width: 100%;
  height: 0;
  padding-bottom: 52.25%;
  position: relative;
  overflow: hidden;
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.table-container {
  width: 100%;
  overflow: auto;
}

.common-search {
  width: 500px;
  height: 300px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 998;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0 20px rgba(28, 16, 0, 0.1);
          box-shadow: 0 0 20px rgba(28, 16, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  margin-top: 100px;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

.common-search.active {
  visibility: visible;
  opacity: 1;
  margin: 0;
}

.common-search__close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.common-search__form {
  width: 100%;
  border: 1px solid #303030;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.common-search__input {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 50px;
  padding-left: 20px;
}

.common-search__submit {
  width: 50px;
  height: 50px;
  background-color: #fff;
}

.common-title {
  text-align: center;
}

.common-title__title {
  font-size: 3rem;
  color: #0f60b2;
}

.common-title__line {
  width: 80px;
  height: 2px;
  background-color: #0f60b2;
  margin: 20px auto;
}

.common-title__description {
  color: #a8a8a8;
  line-height: 1.5em;
}

.common-btn {
  width: 180px;
  height: 56px;
  background-color: #0f60b2;
  color: #fff;
  border: 1px solid #0f60b2;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

.common-btn:hover {
  background-color: #fff;
  color: #0f60b2;
}

.common-sidebar {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 998;
}

.common-sidebar-item {
  display: block;
  width: 48px;
  height: 48px;
  margin-top: 10px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 20px rgba(28, 16, 0, 0.1);
          box-shadow: 0 0 20px rgba(28, 16, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

.common-sidebar-item:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.common-sidebar-item__icon {
  width: 50%;
}

.common-breadcrumbs {
  padding: 40px 0;
  text-align: center;
}

.common-breadcrumbs a:hover {
  color: #0f60b2;
}

.common-breadcrumbs__title {
  color: #fff;
  font-size: 3.6rem;
}

.common-breadcrumbs__container {
  color: #a8a8a8;
  margin-top: 10px;
}


.common-History {
  padding: 40px 0;
  text-align: center;
}

.common-History a:hover {
  color: #0f60b2;
}

.common-History__title {
  color: #fff;
  font-size: 3.6rem;
}

.common-History__container {
  color: #a8a8a8;
  margin-top: 10px;
}









.common-F-layout {
  padding-bottom: 40px;
}

.common-F-layout .aside {
  margin-top: 40px;
}

.common-F-layout .aside-item {
  padding: 0 20px;
  background-color: #f5f6f7;
  border: 1px solid #e8e8e8;
  margin-bottom: 20px;
}

.common-F-layout .aside-item__title {
  height: 60px;
  border-bottom: 1px solid #e8e8e8;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.common-F-layout .aside-item .menu {
  padding: 10px 0;
  list-style-type: none;
  display: block;
}

.common-F-layout .aside-item .menu.active {
  display: none;
}

.common-F-layout .aside-item .menu li {
  line-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.common-F-layout .aside-item .menu li.current-menu-item > a {
  color: #0f60b2;
}

.common-F-layout .aside-item .menu li.current-menu-item > a::before {
  background-color: #0f60b2;
}

.common-F-layout .aside-item .menu li.active > .arrow {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.common-F-layout .aside-item .menu li.active > .sub-menu {
  display: block;
}

.common-F-layout .aside-item .menu li a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.common-F-layout .aside-item .menu li a:hover {
  color: #0f60b2;
}

.common-F-layout .aside-item .menu li a:hover::before {
  background-color: #0f60b2;
}

.common-F-layout .aside-item .menu li a::before {
  content: '';
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 6px;
  height: 6px;
  background-color: #303030;
  border-radius: 50%;
  margin-right: 10px;
}

.common-F-layout .aside-item .menu li .arrow {
  padding: 5px;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

.common-F-layout .aside-item .menu li .sub-menu {
  width: 100%;
  padding: 0 10px;
  display: none;
}

.common-F-layout .aside-item .contact-info {
  padding-bottom: 20px;
}

.common-F-layout .aside-item .contact-info-item {
  line-height: 1.5em;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.common-F-layout .aside-item .contact-info-item__text {
  margin-left: 10px;
}

.common-F-layout .aside .social {
  color: #a8a8a8;
  text-align: center;
}

.common-F-layout .aside .social__container {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.common-F-layout .aside .social-item {
  margin: 0 10px;
}

.common-F-layout .article {
  margin-top: 40px;
}

.common-case-item {
  display: block;
}

.common-case-item:hover .common-case-item__shadow {
  visibility: visible;
  opacity: 1;
}

.common-case-item:hover .common-case-item__text {
  -webkit-transform: translateY(-44px);
          transform: translateY(-44px);
}

.common-case-item:hover .common-case-item__title {
  color: #0f60b2;
}

.common-case-item:hover .common-case-item__client {
  visibility: visible;
  opacity: 1;
}

.common-case-item__img-box {
  position: relative;
}

.common-case-item__img {
  width: 100%;
}

.common-case-item__shadow {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

.common-case-item__text {
  padding: 20px;
  text-align: center;
  background-color: #fff;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

.common-case-item__title {
  font-size: 2rem;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.common-case-item__client {
  color: #a8a8a8;
  margin-top: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.common-article-details {
  padding: 20px 0;
  line-height: 1.5;
}

.common-article-details h1,
.common-article-details h2,
.common-article-details h3,
.common-article-details h4,
.common-article-details h5,
.common-article-details h6,
.common-article-details p {
  margin-bottom: 15px;
}

.common-article-details img {
  max-width: 100%;
  height: auto;
}

.common-article-details img.aligncenter {
  display: block;
  margin: 0 auto;
}

.common-article-details table {
  width: 100%;
  border-collapse: collapse;
  word-wrap: break-word;
  margin: 15px 0;
}

.common-article-details table td {
  padding: 10px;
  border: 1px solid #e8e8e8;
}

.common-article-details ul {
  list-style-type: disc;
}

.common-article-details ul,
.common-article-details ol {
  padding-left: 20px;
}

.common-article-details ul li,
.common-article-details ol li {
  margin: 10px 0;
}

.common-article-details .iframe-box {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin: 15px 0;
  position: relative;
}

.common-article-details iframe {
  /*width: 100% !important;*/
  /*height: 100% !important;*/
  /*position: absolute;*/
  /*left: 0;*/
  /*top: 0;*/
}

.common-contact {
  padding: 40px 0;
}

.common-contact a {
  color: #0f60b2;
}

.common-contact a:hover {
  text-decoration: underline;
}

.common-contact__description {
  line-height: 1.5em;
  font-size: 2.4rem;
  text-align: center;
}

.common-contact__container {
  padding: 40px 30px;
  margin-top: 40px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px rgba(28, 16, 0, 0.1);
          box-shadow: 0 0 20px rgba(28, 16, 0, 0.1);
}

.common-contact-form__title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.common-contact-form__input, .common-contact-form__text {
  width: 100%;
  height: 48px;
  padding-left: 20px;
  margin-bottom: 20px;
  background-color: #f6f8f9;
  border: 1px solid #f5f5f5;
}

.common-contact-form__input:focus, .common-contact-form__text:focus {
  border-color: #0f60b2;
}

.common-contact-form__text {
  height: 160px;
  padding: 20px;
  resize: none;
}

.common-contact-form__submit {
  display: block;
  width: 240px;
  height: 48px;
  margin: 0 auto;
  margin-bottom: 20px;
  background-color: #0f60b2;
  border: 1px solid #0f60b2;
  color: #fff;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

.common-contact-form__submit:hover {
  background-color: #fff;
  color: #0f60b2;
}

.common-contact-form__tips {
  text-align: center;
  color: #a8a8a8;
}

.common-contact-info {
  padding: 20px;
}

.common-contact-info-item {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.common-contact-info-item__text {
  margin-left: 20px;
}

.common-contact-info-item__text p {
  line-height: 1.5em;
  color: #a8a8a8;
}

.common-contact-info-item__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.navigation.pagination {
  width: 100%;
  padding: 0 10px;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navigation.pagination h2 {
  display: none;
}

.navigation.pagination .nav-links {
  margin-left: auto;
}

.navigation.pagination .nav-links .page-numbers {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border: 1px solid #ccc;
  color: #2c3e50;
  text-align: center;
  line-height: 32px;
  margin-left: 5px;
  border-radius: 4px;
}

.navigation.pagination .nav-links .page-numbers.current {
  background-color: #0f60b2;
  border-color: #0f60b2;
  color: #fff;
}

.navigation.pagination .nav-links .page-numbers.prev, .navigation.pagination .nav-links .page-numbers.next {
  width: auto;
  padding: 0 5px;
}
