@charset "utf-8";
/* CSS Document */
/*-------重设浏览器默认样式--------*/
html {
  font-size: 62.5%;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, select, input, textarea, p, blockquote, table, th, td, hr, button {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
/*html5*/
main, article, aside, details, figcaption, figure, dialog, footer, header, hgroup, menu, nav, section, summary {
  margin: 0;
  padding: 0;
  display: block;
}
/* Webfont: Lato-Regular */
@font-face {
  font-family: 'LatoWeb';
  src: url("../webfonts/Lato-Regular.eot"); /* IE9 Compat Modes */
  src: url('../webfonts/Lato-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../webfonts/Lato-Regular.woff2') format('woff2'), /* Modern Browsers */ url('../webfonts/Lato-Regular.woff') format('woff'), /* Modern Browsers */ url('../webfonts/Lato-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
/* Webfont: Lato-Regular */
@font-face {
  font-family: 'Impact';
  src: url('../webfonts/impact.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
/* Webfont: Lato-Regular */
@font-face {
  font-family: 'Oswald';
  src: url('../webfonts/Oswald.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
body, button, input, select, textarea {
  color: #454545;
  font: 1.5rem PingFang SC, Arial, Microsoft YaHei, sans-serif;
  /* font: 1.5rem Helvetica Neue, Helvetica, PingFang SC, Arial, Microsoft YaHei, sans-serif; */
  word-wrap: break-word;
  word-break: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
address, caption, cite, code, dfn, var {
  font-style: normal;
  font-weight: normal;
}
ol, ul, li {
  list-style: none;
}
img, input, button, select {
  border: 0 none;
  vertical-align: middle;
  max-width: 100%;
}
input::-webkit-input-placeholder { /* WebKit browsers 适配谷歌 */
  color: #555;
}
input:-moz-placeholder { /* Mozilla Firefox 4 to 18 适配火狐 */
  color: #555;
}
input::-moz-placeholder { /* Mozilla Firefox 19+ 适配火狐 */
  color: #555;
}
input:-ms-input-placeholder { /* Internet Explorer 10+  适配ie*/
  color: #555;
}
caption, th {
  color: #454545;
  text-align: left;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  /*line-height: 1.5;*/
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}
/*去掉链接虚线，针对Firefox*/
a:focus, button:focus {
  outline-style: none;
}
/*去掉链接虚线，针对IE*/
a, area {
  -webkit-transition: color .3s ease-out 0s, background .3s ease-out 0s;
  transition: color .3s ease-out 0s, background .3s ease-out 0s;
  text-decoration: none;
  color: #454545;
}
a:hover {
  text-decoration: none;
  color: #00a2e9;
}
a:focus {
  text-decoration: none;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*-------------------------------*/
textarea, input:not([type="submit"]), select {
  -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.075);
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear .2s, box-shadow linear .2s;
  -moz-transition: border linear .2s, box-shadow linear .2s;
  -o-transition: border linear .2s, box-shadow linear .2s;
  transition: border linear .2s, box-shadow linear .2s;
  display: inline-block;
  padding: 4px 6px;
  font-size: 1.4rem;
  color: #555;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  outline: 0 none;
  border: 1px solid #ddd;
  background: #fcfcfc;
}
textarea:focus, input:not([type="submit"]):focus, textarea:hover, input:not([type="submit"]):hover {
  border-color: rgba(0, 122, 216, 0.8);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 122, 216, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 122, 216, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 122, 216, 0.6)
}
/*弹性布局*/
.flex {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
}
.animate-box {
  opacity: 0;
}
.hide {
  display: none !important;
}
/*返回顶部*/
.scroll-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 10;
}
/*--------------------------------*/
.container {
  width: 100%;
  margin: 0 auto;
}
.row {
  margin: 0 -1.5rem;
}
.row > li {
  padding: 0 1.5rem;
}
/*四等分*/
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
/*三等分*/
.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
/*二等分*/
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
/*一等分*/
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
/*-------FONT AWESOME CORE-----*/
[class^="icon-"], [class*=" icon-"] {
  font-family: 'Font Awesome 5 Pro';
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  background-image: none;
}
[class^="icon-"]:before, [class*=" icon-"]:before {
  text-decoration: inherit;
  display: inline-block;
}
.icon-search::before {
  font-size: 1.8rem;
  content: "\f002";
}
.icon-remove::before, .icon-close::before {
  font-size: 1.8rem;
  content: "\f00d";
}
.icon-save::before {
  content: "\f0c7";
}
.icon-undo::before {
  content: "\f0e2";
}
.icon-angle::before {
  font-size: 1.6rem;
  content: "\f105";
  margin-right: 10px;
}
/*-------定义公共样式--------*/
#header, main, footer {
  width: 100%;
  margin: 0px auto;
}
/*------响应式菜单-----*/
.top-menu {
  display: none;
  margin-left: 30px;
}
#productSlide {
  display: none;
}
.browser {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -220px;
}
/*---------头部文件---------*/
#container {
  padding-top: 144px;
  transition: all .3s ease-in-out;
}
#container.stuck {
  padding-top: 70px;
}
/*---------头部文件---------*/
#header .language {
  display: none;
  position: relative;
}
#header .top-header {
  color: #fff;
  background: #00a2e9;
  padding: 1rem 0;
  line-height: 1.5;
}
#header .top-header .flex {
  align-items: center;
  justify-content: space-between;
}
#header .top-header span:not(:first-child) {
  margin-left: 1.5rem;
}
#header .top-header .left {
  text-transform: uppercase;
}
#header .top-header .right a {
  color: #fff;
  font-size: 1.6rem;
  margin-left: 1rem;
}
/*----------*/
#header .navbar {
  position: relative;
}
#header .navbar .navbar-brand {
  position: relative;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#header .navbar .navbar-brand a {
  display: inline-block;
}
#header .navbar .navbar-brand img {
  position: relative;
  z-index: 2;
  max-height: 60px;
  transition: all .3s ease-in-out;
}
/*-----------语言与搜索--------------*/
#header .language a {
  line-height: 1.7;
  padding-left: 28px;
}
#header .language a.en {
  background: url(../images/en-flag.png) no-repeat left;
}
/*-----移动效果-----*/
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  transition: all .3s ease-in-out;
  z-index: 99;
  box-shadow: 0 6px 9px 0 rgba(36, 39, 44, .2);
}
#header.stuck {
  top: -44px;
}
#header.stuck .navbar .navbar-brand img {
  max-height: 50px;
}
#header.stuck nav.main-menu > ul > li > a {
  line-height: 70px;
}
#header .flex {
  justify-content: space-between;
  align-items: center;
}
/*-------菜单------*/
#header .header-menu {
  justify-content: flex-end;
}
#header .header-menu nav.main-menu {
  position: relative;
}
nav.main-menu > ul > li {
  position: relative;
  transition: all .3s ease-in-out;
  margin: 0 1.75rem;
}
nav.main-menu > ul > li > a {
  position: relative;
  display: block;
  text-align: center;
  font-size: 1.6rem;
  line-height: 100px;
  color: #222;
  text-transform: uppercase;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
nav.main-menu > ul > li:hover > a, nav.main-menu > ul > li.active > a, nav.main-menu > ul > li > ul > li:hover > a {
  color: #00a2e9;
}
/*-----横线before-----*/
nav.main-menu > ul > li > a::after {
  content: '';
  width: 0;
  height: 2px;
  background-color: #00a2e9;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
nav.main-menu > ul > li:hover > a::after, nav.main-menu > ul > li.active > a::after {
  color: #00a2e9;
  width: 100%;
}
nav.main-menu > ul > li > a > i {
  margin-left: 5px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
nav.main-menu > ul > li:hover > a > i.fa-angle-down {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
/*------一级目录-------*/
nav.main-menu > ul > li > ul, nav.main-menu > ul > li > ul > li > ul, nav.main-menu > ul > li > ul > li > ul > li > ul {
  visibility: hidden;
  opacity: 0;
}
nav.main-menu > ul > li > ul {
  position: absolute;
  left: 0;
  top: 100%;
  width: max-content;
  min-width: 175px;
  z-index: 100;
  background-color: #fff;
  transform: translateY(30px);
  transition: .3s;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
nav.main-menu > ul > li > ul > li {
  position: relative;
  width: 100%;
  padding: 0 20px;
}
nav.main-menu > ul > li > ul > li > a {
  position: relative;
  display: flex;
  align-items: center;
  padding: .75rem 0;
  line-height: 24px;
  border-bottom: 1px solid #e9e5df;
  font-size: 1.5rem;
  text-transform: capitalize;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
}
nav.main-menu > ul > li > ul > li > a::before {
  content: "\f061";
  font-family: 'Font Awesome 5 Pro';
  font-size: x-small;
  font-weight: 400;
  margin-left: -15px;
  opacity: 0;
  padding-right: 5px;
  transition: opacity .15s ease-in-out, .15s margin ease-in-out;
}
nav.main-menu > ul > li > ul > li > a:hover:before {
  margin-left: 0;
  opacity: 1;
}
nav.main-menu > ul > li > ul > li:last-child > a {
  border-bottom: 0px;
}
nav.main-menu > ul > li > ul > li.dropdown > a::after {
  position: absolute;
  content: "\f105";
  right: 0;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
}
/*-------二级目录-----*/
nav.main-menu > ul > li > ul > li > ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: max-content;
  min-width: 175px;
  z-index: 100;
  background-color: #fff;
  transition: .3s;
  transform: translateY(30px);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
}
nav.main-menu > ul > li > ul > li > ul > li {
  position: relative;
  width: 100%;
  padding: 0 20px;
}
nav.main-menu > ul > li > ul > li > ul > li > a {
  position: relative;
  display: flex;
  align-items: center;
  padding: .75rem 0;
  line-height: 24px;
  border-bottom: 1px solid #e9e5df;
  font-size: 15px;
  text-transform: capitalize;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
}
nav.main-menu > ul > li > ul > li > ul > li > a::before {
  content: "\f061";
  font-family: 'Font Awesome 5 Pro';
  font-size: x-small;
  font-weight: 400;
  margin-left: -15px;
  opacity: 0;
  padding-right: 5px;
  transition: opacity .15s ease-in-out, .15s margin ease-in-out;
}
nav.main-menu > ul > li > ul > li > ul > li > a:hover:before {
  margin-left: 0;
  opacity: 1;
}
nav.main-menu > ul > li > ul > li > ul > li:last-child > a {
  border-bottom: 0;
}
nav.main-menu > ul > li > ul > li > ul > li.dropdown > a::after {
  position: absolute;
  content: "\f105";
  right: 0;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
}
/*-------三级目录--------*/
nav.main-menu > ul > li > ul > li > ul > li > ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: max-content;
  min-width: 175px;
  z-index: 100;
  background-color: #fff;
  transition: .3s;
  transform: translateY(30px);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
}
nav.main-menu > ul > li > ul > li > ul > li > ul > li {
  position: relative;
  width: 100%;
  padding: 0 20px;
}
nav.main-menu > ul > li > ul > li > ul > li > ul > li > a {
  position: relative;
  display: flex;
  align-items: center;
  padding: .75rem 0;
  line-height: 24px;
  border-bottom: 1px solid #e9e5df;
  font-size: 15px;
  text-transform: capitalize;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
}
nav.main-menu > ul > li > ul > li > ul > li > ul > li > a::before {
  content: "\f061";
  font-family: 'Font Awesome 5 Pro';
  font-size: x-small;
  font-weight: 400;
  margin-left: -15px;
  opacity: 0;
  padding-right: 5px;
  transition: opacity .15s ease-in-out, .15s margin ease-in-out;
}
nav.main-menu > ul > li > ul > li > ul > li > ul > li > a:hover:before {
  margin-left: 0;
  opacity: 1;
}
nav.main-menu > ul > li > ul > li > ul > li > ul > li:last-child > a {
  border-bottom: 0;
}
/*---------鼠标悬停-------------*/
nav.main-menu > ul > li.dropdown:hover > ul, nav.main-menu > ul > li > ul > li.dropdown:hover > ul, nav.main-menu > ul > li > ul > li > ul > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
nav.main-menu > ul > li > ul > li.dropdown:hover > a, nav.main-menu > ul > li > ul > li > ul > li.dropdown:hover > a {
  color: #00a2e9;
}
nav.main-menu > ul > li > ul > li.dropdown:hover > a::before, nav.main-menu > ul > li > ul > li > ul > li.dropdown:hover > a::before {
  content: "\f061";
  font-family: 'Font Awesome 5 Pro';
  font-size: x-small;
  font-weight: 400;
  opacity: 1;
  margin-left: 0;
  padding-right: 5px;
  transition: opacity .15s ease-in-out, .15s margin ease-in-out;
}
/*---------头部搜索----------*/
.navbar-right {
  margin-left: 1.75rem;
}
.navbar-right .search-toggler {
  display: none;
  position: relative;
}
.navbar-right .search-toggler button {
  color: #222;
  width: 20px;
  text-align: center;
  display: inline-block;
  background: transparent;
}
/*-------子菜单-------*/
.navbar-right .search-toggler .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  z-index: 2;
  min-width: 300px;
  background-color: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  left: auto;
  right: 0;
  padding: 15px;
  box-shadow: 7px 5px 30px 0 rgba(72, 73, 121, 0.15);
  margin-top: 2rem;
}
.navbar-right .search-toggler .dropdown-menu form {
  position: relative;
}
.navbar-right .search-toggler .dropdown-menu form input[type="search"] {
  width: 100%;
  padding-left: 15px;
  height: 40px;
  color: #999;
  /*border: 1px solid #eeeeee;*/
  color: #1f2428;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.navbar-right .search-toggler .dropdown-menu form button[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  background: #00a2e9;
  width: 40px;
  outline: 0;
  color: #ffffff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.navbar-right .search-toggler .dropdown-menu form button[type="submit"]:hover {
  background-color: #1f2428;
}
/*-----联系我们------*/
.navbar-right .header-language {
  width: 120px;
  height: 38px;
  line-height: 35px;
  background: #007ad8;
  text-align: center;
  border-radius: 2rem;
  text-align: center;
  margin-left: 2rem;
}
.navbar-right .header-language a {
  font-size: 1.6rem;
  color: #fff;
}
.navbar-right .header-language a span {
  padding-left: .5rem;
}
/*------搜索-----*/
.navbar-right .search {
  position: relative;
}
.navbar-right .search form {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0;
}
.navbar-right .search form input[type="search"] {
  background: #f5f5f5;
  display: inline-block;
  width: calc(100% - 40px);
  padding-left: 15px;
  height: 40px;
  color: #999;
  /*border: 1px solid #eeeeee;*/
  color: #1f2428;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  border-radius: .5rem 0 0 .5rem;
}
.navbar-right .search form button[type="submit"] {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #00a2e9;
  outline: 0;
  color: #ffffff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  border-radius: 0 .5rem .5rem 0;
}
/*-----联系我们------*/
.navbar-right .contact-info {
  position: relative;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid #eee;
}
.navbar-right .contact-info .icon {
  position: relative;
  font-size: 24px;
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  background: #e9f2f9;
  border-radius: 50%;
  margin-right: 15px;
  color: #00a2e9;
  transition: .5s;
}
.navbar-right .contact-info:hover .icon {
  color: #fff;
}
.navbar-right .contact-info .icon span {
  position: relative;
}
/*-----------before------------*/
.navbar-right .contact-info .icon::before {
  background: #00a2e9;
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-transform: scale(.7);
  -ms-transform: scale(.7);
  transform: scale(.7);
  opacity: 0;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.navbar-right .contact-info:hover .icon::before {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
/*---------------------------*/
.navbar-right .contact-info h5 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: #666;
}
.navbar-right .contact-info h4 {
  font-size: 2rem;
  font-weight: 700;
}
.navbar-right .contact-info h4 > a {
  color: #00a2e9;
}
/*---------搜索-----------------*/
.search-menu {
  position: relative;
}
.search-menu:hover > a, .search-menu.active > a {
  color: #007ad8;
  text-decoration: none;
}
.search-menu > a {
  display: block;
  text-align: center;
}
.search-menu i {
  width: 20px;
  text-align: center;
  display: inline-block;
}
/*---------移动端导航-------------*/
.bigmegamenu {
  position: relative;
}
.wsmenu .search {
  margin-top: 8px;
  margin-bottom: 8px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  padding: 10px 15px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
}
.wsmenu .search form {
  font-weight: normal;
  color: #fff;
  font-size: 1.8rem;
  position: relative;
}
.wsmenu .search form input[type="text"] {
  height: 32px;
  line-height: 32px;
  padding-left: 6px;
  width: 100%;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.wsmenu .search form input[type="text"]:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}
.wsmenu .search form button {
  text-align: center;
  display: inline-block;
  background: transparent;
}
.wsmenu .search form button[type="submit"] {
  height: 32px;
  position: absolute;
  top: 0;
  right: 5px;
}
/*------产品列表样式--------*/
ul.product-box > li {
  margin-bottom: 3rem;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
ul.product-box > li > a {
  border: 1px solid #ddd;
  background: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  display: block;
  border-radius: .3rem;
}
ul.zoom-gallery > li > a { 
  background: #f5f5f5;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}
ul.product-box > li > a section {
  padding: 2rem;
}
ul.product-box > li h3 {
  font-weight: normal;
  font-size: 1.8rem;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: capitalize;
  margin-bottom: 1rem;
  color: #005BAC;
}
ul.zoom-gallery > li h3, ul.product-box > li > a.popup-vimeo > h3 {
  font-size: 1.6rem;
  text-align: center;
  padding: 1.5rem 0;
  margin-bottom: 0;
}
ul.product-box > li .playBtn {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
ul.product-box > li .playBtn .btns {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
ul.product-box > li p {
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #231915;
  margin-bottom: 1rem;
}
ul.product-box > li span {
  display: inline-block;
  font-size: 16px;
  height: 32px;
  line-height: 32px;
  color: #fff;
  background: #0284BF;
  padding: 0 20px;
  border-radius: 16px;
}
ul.product-box > li .img {
  display: flex;
  align-items: center;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}
ul.product-box > li .img img {
  display: block;
  margin: 0 auto;
  position: relative;
  -webkit-transition: transform 0.5s ease 0s;
  -moz-transition: transform 0.5s ease 0s;
  -o-transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
}
ul.product-box > li:hover img {
  -webkit-transform: scale(1.1, 1.1); /*放大1.1倍*/
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
/*------面包屑导航-----*/
main .column {
  background-color: #f5f5f5;
  text-transform: capitalize;
  box-shadow: 0 0px 10px rgba(0, 0, 0, .15);
}
main .column > .flex {
  transition: all .3s ease-in-out;
  justify-content: space-between; /*两端对齐*/
  align-items: center; /*垂直居中*/
}
main .column > .flex > ul > li:not(:first-child) {
  position: relative;
  transition: all .3s ease-in-out;
  margin-left: 3rem;
}
main .column > .flex > ul > li > a {
  position: relative;
  display: block;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 2rem 0;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
main .column > .flex > ul > li > a::after {
  content: '';
  width: 0;
  height: 2px;
  background-color: #00a2e9;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
main .column > .flex > ul > li:hover > a, main .column > .flex > ul > li.active > a {
  color: #00a2e9;
}
main .column > .flex > ul > li:hover > a::after, main .column > .flex > ul > li.active > a::after {
  width: 100%;
}
main .column nav.crumb i {
  margin-right: .5rem;
  color: #00a2e9;
}
/*---------------*/
main > .title {
  color: #fff;
  background: #4d799f;
  display: none;
}
main > .title > .container {
  justify-content: space-between;
  align-items: center;
}
main > .title > .container > h2 {
  font-weight: normal;
  font-size: 1.6rem;
  color: #fff;
  padding: 1rem 0;
}
main > .title > .container > .point {
  cursor: pointer;
  position: relative;
  width: 30px;
}
main > .title > .container > .point span, main > .title > .container > .point span::before, main > .title > .container > .point span::after {
  height: 2px;
  width: 25px;
  background: #fff;
  position: absolute;
  display: block;
  content: '';
}
main > .title > .container > .point span::before {
  top: 7px;
}
main > .title > .container > .point span::after {
  top: -7px;
}
main > .title > .container > .point span, main > .title > .container > .point span::before, main > .title > .container > .point span::after {
  transition: all .3s ease-in-out;
}
main > .title > .container > .point.on span {
  background: transparent;
}
main > .title > .container > .point.on span::before {
  top: 0;
  transform: rotate(45deg);
}
main > .title > .container > .point.on span::after {
  top: 0;
  transform: rotate(-45deg);
}
main > ul.submenu {
  display: none;
  color: #333;
  background: #f0f0f0;
}
main > ul.submenu > li:not(:last-child) {
  position: relative;
  border-bottom: 1px solid #e8e8e8;
}
main > ul.submenu > li > a {
  display: flex;
  align-items: center;
  position: relative;
  padding: .75rem 1rem .75rem 2.5rem;
  font-size: 1.4rem;
  text-transform: capitalize;
  transition: background-color .1s ease 0s;
}
main > ul.submenu > li > a::before {
  content: "";
  position: absolute;
  left: .75rem;
  width: 9px;
  height: 12px;
  padding-right: 10px;
  background: url("../images/left-arrow.png") no-repeat center;
}
main > ul.submenu > li:hover > a, main > ul.submenu > li.active > a {
  color: #fff;
  background-color: #999;
}
main > ul.submenu > li:hover > a::before, main > ul.submenu > li.active > a::before {
  background: url("../images/left-arrow-on.png") no-repeat center;
}
main > ul.submenu > li.dropdown > a::after {
  position: absolute;
  content: "\f107";
  right: .75rem;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  transition: all .3s ease;
}
main > ul.submenu > li.active > a::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
/*------手机端二级菜单----*/
main > ul.submenu > li.dropdown > ul {
  display: none;
  position: relative;
  background-color: #fff;
  border-top: 1px solid #d2d2d2;
}
main > ul.submenu > li.dropdown > ul::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 18px;
  top: 0;
  bottom: 0;
  border-left: 1px dashed #9dbdd6;
}
main > ul.submenu > li.dropdown > ul > li {
  position: relative;
  font-size: 1.4rem;
}
main > ul.submenu > li.dropdown > ul > li::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 7px;
  left: 20px;
  top: 50%;
  border-top: 1px dotted #9dbdd6;
}
main > ul.submenu > li.dropdown > ul > li > a {
  display: block;
  position: relative;
  color: #666;
  padding: .75rem 0 .75rem 3.5rem;
  border-top: 1px dotted #e4e4e4;
}
main > ul.submenu > li.dropdown > ul > li.active > a, main > ul.submenu > li.dropdown > ul > li:hover > a {
  color: #00a2e9;
}
main > ul.submenu > li.dropdown > ul > li > a:hover::before, main > ul.submenu > li.dropdown > ul > li.active > a::before {
  position: absolute;
  content: "\f101";
  left: 1.2rem;
  top: 1rem;
  font-family: 'Font Awesome 5 Pro';
  font-weight: normal;
  background-color: #fff;
  z-index: 1;
  font-size: 1.2rem;
  width: 16px;
  text-align: center;
}
#content > .container.flex {
  align-items: flex-start;
}
/*----侧边栏------*/
#content .container-left {
  width: 28rem;
  transition: all .3s ease-in-out;
}
aside {
  border-radius: 2rem 0 0 0;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f3f3;
  background-color: #fff;
}
aside .box-title {
  color: #fff;
  background: linear-gradient(90deg, #59c2f1 0%, #00a2e9 100%);
  padding: 3rem;
  border-radius: 2rem 0 0 0;
}
aside .box-title h2 {
  font-size: 2.4rem;
  font-weight: 400;
}
aside .box-title h3 {
  font-size: 1.4rem;
  color: #eaeaea;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 30px;
}
aside ul.collapse-menu {
  margin: 1.5rem 0;
}
aside ul.collapse-menu > li {
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
aside ul.collapse-menu > li > a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 1rem 0 1rem 3rem;
  font-size: 1.6rem;
  text-transform: capitalize;
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
}
aside ul.collapse-menu > li > a::before {
  content: "";
  width: 9px;
  height: 12px;
  margin-left: -1.5rem;
  margin-right: 1rem;
  opacity: 0;
  background: url("../images/left-arrow.png") no-repeat center;
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
}
aside ul.collapse-menu > li:hover > a:before, aside ul.collapse-menu > li.active > a:before {
  margin-left: 0;
  opacity: 1;
}
aside ul.collapse-menu > li.active > a {
  color: #00a2e9;
}
aside ul.collapse-menu li span {
  position: absolute;
  right: 1.5rem;
}
aside ul.collapse-menu li span i {
  content: "\f107";
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  transition: all .3s ease;
}
aside ul.collapse-menu > li.active > a > span > i.fa-angle-down {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
aside ul.collapse-menu > li.active > ul > li.active > a > span > i.fa-angle-down {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
/*------二级菜单----*/
aside ul.collapse-menu > li > ul {
  display: none;
  position: relative;
  background-color: #fff;
  border-top: 1px solid #d2d2d2;
}
aside ul.collapse-menu > li > ul > li:not(:last-child) {
  position: relative;
  border-bottom: 1px solid #e8e8e8;
}
aside ul.collapse-menu > li > ul > li > a {
  color: #666;
  line-height: 1.5;
  padding: .7rem .5rem .7rem 4rem;
  font-size: 1.5rem;
  display: block;
  text-transform: capitalize;
  transition: all .3s ease;
}
aside ul.collapse-menu > li > ul > li > a::before {
  font-family: 'Font Awesome 5 Pro';
  content: "\f101";
  margin: 0 5px 0 0;
  transition: all .3s ease;
  font-weight: normal;
  font-size: 1.2rem;
}
aside ul.collapse-menu > li > ul > li:hover > a, aside ul.collapse-menu > li > ul > li.active > a {
  padding-left: 5rem;
  color: #00a2e9;
}
/*------三级菜单----*/
aside ul.collapse-menu > li > ul > li > ul {
  display: none;
  position: relative;
  background-color: #fff;
  border-top: 1px solid #d2d2d2;
}
aside ul.collapse-menu > li > ul > li > ul > li:not(:last-child) {
  position: relative;
  border-bottom: 1px solid #e8e8e8;
}
aside ul.collapse-menu > li > ul > li > ul > li > a {
  color: #999;
  line-height: 1.5;
  padding: .6rem .5rem .6rem 5rem;
  font-size: 1.4rem;
  display: block;
  text-transform: capitalize;
  transition: all .3s ease;
}
aside ul.collapse-menu > li > ul > li > ul > li > a::before {
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  margin: 0 5px 0 0;
  transition: all .3s ease;
  font-weight: normal;
  font-size: 1.2rem;
}
aside ul.collapse-menu > li > ul > li > ul > li:hover > a, aside ul.collapse-menu > li > ul > li > ul > li.active > a {
  padding-left: 6rem;
  color: #00a2e9;
}
/*-----/产品简介页/-----*/
#content .container-right {
  flex: 1;
  margin-left: 3rem;
  width: calc(100% - 31rem);
}
#content .container-right h3.page-title {
  font-size: 2.4rem;
  text-transform: capitalize;
  border-bottom: .2rem solid #e9ecef;
  margin-bottom: 2rem;
}
#content .container-right h3.page-title span {
  display: inline-block;
  margin: 1.5rem 0;
  position: relative;
  color: #00a2e9;
}
/*------内页与公共部分------*/
#main {
  background-image: linear-gradient(0deg, rgba(240, 240, 240, 1), rgba(255, 255, 255, 1));
}
main #content {
  padding: 4rem 0;
}
/*------内容公共代码------*/
main .main-body {
  line-height: 1.75;
  font-size: 1.6rem;
}
main .contact img {
  max-width: none;
}
main .contact i {
  margin-right: 10px;
}
main .main-body p {
  margin-bottom: 1.5rem
}
main .main-body a {
  color: #007ad8;
  cursor: pointer;
}
main .main-body a:hover {
  color: #dd2828;
  text-decoration: none;
}
main .main-body a:hover {
  text-decoration: underline;
}
main .main-body h2, main .main-body h3, main .main-body h4 {
  color: #333;
  font-weight: bold;
  margin-bottom: 1rem;
}
main .main-body > ul {
  margin-bottom: 1.5rem;
}
main .main-body > ul > li {
  list-style: disc;
  list-style-position: inside;
}
main .main-body table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  font-size: inherit;
  margin: 0 auto 2rem;
}
main .main-body table td, main .main-body table th {
  min-width: 100px;
  position: relative;
  font-size: 1.5rem;
  padding: .75rem 1rem;
  border: 1px solid #ddd;
  vertical-align: middle;
}
main .main-body table th {
  background-color: #333;
  color: #fff;
  /* background: linear-gradient(to bottom, #fdfdfd, #eaeaea); */
}
main .main-body table tr:nth-of-type(even) {
  background: #f7f7f7;
}
main .main-body table tbody tr {
  transition: all .3s;
}
main .main-body table tbody tr:hover {
  background: #e5ebee;
}
main .main-body img {
  max-width: 100%;
  vertical-align: middle;
}
main .main-body img[align*="left"] {
  margin-right: 15px;
}
main .main-body img[align*="right"] {
  margin-left: 15px;
}
main .main-body .grid-of-images {
  text-align: center;
  margin-bottom: 1rem;
}
main .main-body .grid-of-images a {
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
main .main-body .grid-of-images img {
  -webkit-border-radius: .2em;
  -moz-border-radius: .2em;
  border-radius: .2em;
  -webkit-box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.4);
}
main .files-list img {
  vertical-align: middle;
  padding-right: 5px;
}
main .scroll-wrapper {
  width: 100%;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-style: none;
}
main .scroll-wrapper .files-list {
  display: inline-table;
}
main .scroll-wrapper::-webkit-scrollbar {
  display: none;
}
/*----------------------*/
main .about .left {
  width: 45%;
  height: 100%;
  position: relative;
  transition: all 0.2s ease-in-out;
  z-index: 1;
}
main .about .left .about-pic {
  display: block;
  position: relative;
}
main .about .left .about-pic img {
  width: 100%;
  transition: all 0.2s ease-in-out;
}
main .about .right {
  background: #ffffff;
  width: 55%;
  box-shadow: 0 1px 18px 1px rgba(54, 62, 69, 0.3);
  padding: 5rem;
  transition: all 0.2s ease-in-out;
}
main .contact .left {
  width: 40%;
  height: 100%;
  position: relative;
  transition: all 0.2s ease-in-out;
  z-index: 1;
}
main .contact .right {
  width: 60%;
  transition: all 0.2s ease-in-out;
}
/*------------------------------*/
#content .container > hgroup {
  width: 100%;
  line-height: 1.75;
  text-align: center;
  margin: 0 auto 2rem;
}
#content .container > hgroup ~ hgroup {
  margin-top: 3rem;
}
#content .container > hgroup > h3 {
  color: #999;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: capitalize;
  position: relative;
}
#content .container > hgroup > h3::before, #content .container > hgroup > h3::after {
  position: absolute;
  content: '';
  width: calc(50% - 140px);
  left: 0;
  top: 50%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
#content .container > hgroup > h3::before {
  left: auto;
  right: 0;
}
/*-------分页--------*/
#content .page {
  display: none;
  line-height: 28px;
  text-align: center;
  font-size: 1.4rem;
  padding: 2rem 0;
}
#content .page a, #content .page span {
  padding: .5rem 1rem;
  border: 1px solid #555;
}
#content .page span {
  margin: 0 6px;
}
#content .page a:hover {
  background: #E5E5E5;
  text-decoration: none;
}
/*-----分页样式-----*/
.pagination.flex {
    width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: -1rem;
}
.pagination li:not(:last-child) {
  margin-right: 1rem;
}
.pagination li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  margin-bottom: 1rem;
}
.pagination li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 7px;
  border: 1px solid #0284BF;
  color: #0284BF;
}
.pagination li a:hover, .pagination li.active a {
  color: #fff;
  background: #0284BF;
  border-color: #0284BF;
}
.disabled {
  pointer-events: none;
}
.pagination li.active a {
  pointer-events: none;
}
nav.pagelist {
  text-align: center;
  padding: 20px 0px;
}
nav.pagelist a {
  border: #333 1px solid;
  margin-right: 6px;
  padding: 4px 7px;
  color: #333;
  -webkit-border-radius: .2rem;
  -moz-border-radius: .2rem;
  border-radius: .2rem;
}
nav.pagelist a:hover {
  color: #fff;
  background: #333;
  text-decoration: none;
}
nav.pagelist span.current {
  border: #333 1px solid;
  background-color: #333;
  margin-right: 6px;
  padding: 4px 7px;
  color: #fff;
  -webkit-border-radius: .2rem;
  -moz-border-radius: .2rem;
  border-radius: .2rem;
}
nav.pagelist span.disabled {
  border: #ccc 1px solid;
  margin-right: 6px;
  padding: 4px 7px;
  color: #3C3C3C;
}
/*--------上下翻页------------*/
#content nav.prevnext {
  line-height: 1.8;
  padding: 10px 0 0;
  text-align: center;
  border-top: 1px solid #e5e7eb;
}
#content nav.prevnext {
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
#content nav.prevnext .previous {
  width: 50%;
  text-align: left;
}
#content nav.prevnext .next {
  width: 50%;
  text-align: right;
}
.nothing {
  width: 100%;
  text-align: center;
  padding: 3rem;
}
/*-------百度地图API-------*/
.iw_poi_title {
  font-size: 15px;
  color: #CC5522;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap
}
.iw_poi_content {
  font: 13px arial, sans-serif;
  overflow: visible;
  padding-top: 5px;
  line-height: 1.6;
  white-space: -moz-pre-wrap;
  word-wrap: break-word
}
.map {
  height: 500px;
  border: #ccc solid 1px;
}
.map img {
  max-width: none;
}
/*------内页banner-----*/
#page-banner {
  width: 100%;
  position: relative;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: height .2s ease-in-out;
}
#page-banner::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000;
  opacity: .35;
}
#page-banner .flex {
  height: 380px;
  background: no-repeat center;
  background-size: cover;
  justify-content: center;
  align-items: center;
}
#page-banner .flex > h1 {
  z-index: 1;
  color: #fff;
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}
#page-banner .flex > h1::after {
  content: '';
  display: block;
  height: 2px;
  width: 50px;
  background: #fff;
  margin: 1.5rem auto;
}
/*---------底部灰色#414141--------------*/
footer {
  background: #324660 url("../images/footer-map.png") center no-repeat;
}
footer .footer-area .flex {
  justify-content: space-between;
}
footer .footer-area {
  padding: 4rem 0;
}
footer .footer-area .widget {
  padding: 0 1.5rem;
}
footer .footer-area .left {
  width: 28%;
}
footer .footer-area .pro-list {
    min-width: 200px;
}
footer .footer-area .pro-list p {
    flex: 1 1 50%;
text-transform: capitalize;
color: rgba(255, 255, 255, 0.75);
    line-height: 2;
    min-width: 320px;
}

footer .footer-area .pro-list p b{
     color: rgba(255, 255, 255, 1);
}

footer .footer-area .pro-list p a {
    color: rgba(255, 255, 255, 0.75);
}
footer .footer-area .pro-list p a:hover{
    color: rgba(255, 255, 255, 1);
}

footer .footer-area .widget .widget-title {
  position: relative;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
footer .footer-area .widget .contact-box:not(:last-child) {
  justify-content: space-between;
  margin-bottom: 1rem;
}
footer .footer-area .widget .contact-box .desc-img {
  margin: 0 10px 0 0;
  color: #fff;
    font-weight: bold;
    text-align: right;
    line-height: 1.5;
}
footer .footer-area .widget .contact-box .text-box {
  width: calc(92% - 10px);
}
footer .footer-area .widget .contact-box .text-box h5 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .5rem
}
footer .footer-area .widget .contact-box .text-box p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}
footer .footer-area .widget .contact-box .text-box p a {
  color: rgba(255, 255, 255, 0.75);
}
footer .footer-area .widget .contact-box .text-box p a:hover {
  color: rgba(255, 255, 255, 1);
}
/*------底部菜单-----*/
footer .footer-area .links-widget {
  position: relative;
  transition: all 0.3s ease-out;
}
footer .footer-area .links-widget ul li {
  color: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
footer .footer-area .links-widget ul li:last-child {
  border-bottom: none
}
footer .footer-area .links-widget ul li a {
  font-size: 1.6rem;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.75);
}
footer .footer-area .links-widget ul li a:hover {
  color: #fff;
}
footer .footer-area .widget-content img {
  margin-bottom: 2rem;
}
footer .footer-area .widget-content p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
}
/*------二维码-----*/
footer .footer-area .scan img {
  max-width: 150px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
footer .footer-area .scan p {
  color: rgba(255, 255, 255, 1);
  text-align: center;
  line-height: 2;
}
/*------版权所有------*/
footer .copyright-area {
    color: rgba(255, 255, 255, 0.75);
  background-color: rgba(15, 15, 15, 0.25);
  padding: 1.5rem 0;
}
footer .copyright-area p {
  line-height: 1.75;
}
footer .copyright-area .flex {
  justify-content: space-between;
}footer .copyright-area p a {
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}
footer .copyright-area p a:not(:last-child)::after {
  content: ' / ';
}
footer .copyright-area p a:hover {
  color: #EEB13E;
}
footer .copyright-area p span {
  padding-left: 1.5rem;
}
footer .copyright-area p i {
  margin-right: .75rem;
}
/*----回到顶部---*/
.btn-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: .2rem;
}
/*----颜色----*/
.btn-primary {
  background-color: #777;
  border-color: #777;
  transition: all .3s ease;
  opacity: .78;
}
.btn-primary:hover {
  opacity: 1;
}
.btn-icon i {
  font-size: 2rem;
  color: #fff;
}
/* 特殊的动画效果类名 */
[class*=animation-] {
  -webkit-animation-duration: .5s;
  -o-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
nav.menu [class*="animation-"] {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
}
.animation-slide-bottom {
  -webkit-animation-name: slide-bottom;
  -o-animation-name: slide-bottom;
  animation-name: slide-bottom;
}
.animation-zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
/* 

for zoom animation 
uncomment this part if you haven't added this code anywhere else

*/
.image-source-link {
  color: #98C3D1;
}
.mfp-with-zoom .mfp-container, .mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-with-zoom.mfp-removing .mfp-container, .mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
/*------手机底部导航---------*/
#wap-footer {
  display: none;
  position: fixed;
  top: auto;
  bottom: 0;
  width: 100%;
  z-index: 2;
}
#wap-footer ul li {
  padding: 5px 0;
  position: relative;
  width: 25%;
  background: #494949;
  float: left;
  border-right: 1px solid #666;
}
#wap-footer ul li i {
  display: block;
  font-size: 2rem;
  margin-bottom: .25rem;
}
#wap-footer ul li a {
  color: #fff;
  display: block;
  text-align: center;
}
#wap-footer ul li a:hover {
  color: #ee9393;
}
#wap-footer ul li .wap-list {
  display: block;
  font-size: 1.4rem;
  position: relative;
}