body {
  min-width: 1200px;
}
.container {
  width: 1200px;
}
.row {
  margin-right: 0px;
  margin-left: 0px;
}
/* AI悬浮图片 */
.corner-image {
  position: fixed;
  z-index: 1000;
  cursor: pointer; /* 鼠标悬停时显示手型 */
  right: 110px; /* 根据需要调整右边距 */
  bottom:50px; /* 根据需要调整底边距 */
}

.corner-image img {
  max-width: 120px; /* 根据需要调整图片的最大宽度 */
  max-height: 120px; /* 根据需要调整图片的最大高度 */
  width: auto; /* 确保图片按比例缩放 */
  height: auto; /* 确保图片按比例缩放 */
}
/* 父容器样式 */
.item.active {
  position: relative; /* 设置相对定位 */
  width: 100%; /* 确保父容器宽度为 100% */
  overflow: hidden; /* 防止内容溢出 */
  cursor: pointer; /* 鼠标悬停时显示手型 */
}
.item.active :hover {
  opacity: 1; /* 鼠标悬停时显示图片 */
}
/* 第二张图片样式 */
.centered-image {
  position: absolute; /* 绝对定位 */
  top: 57%; /* 垂直居中 */
  left: 50%; /* 水平居中 */
  transform: translate(-57%, -50%); /* 调整中心点 */
  height: auto; /* 保持宽高比例 */
  cursor: pointer; /* 鼠标悬停时显示手型 */
  opacity: 0.8; /* 初始透明度 */
  width: 100px;
}
/* button */
.button {
  color: #666;
  background-color: #eee;
  border: 1px solid transparent;
  font-weight: 300;
  font-size: 16px;
  font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial,
    "Lucida Grande", "Source Han Sans", sans-serif;
  text-decoration: none;
  text-align: center;
  line-height: 40px;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  appearance: none;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.button:visited {
  color: #666;
}
.button:hover {
  background-color: #ddd;
  text-decoration: none;
  outline: none;
}
.button:active,
.button.active {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  text-decoration: none;
  background-color: #eeeeee;
  border-color: #cfcfcf;
  color: #d4d4d4;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}
.button.disabled,
.button:disabled {
  top: 0 !important;
  background: #0099cc !important;
  border: 1px solid #0099cc !important;
  color: #fff !important;
  cursor: not-allowed !important;
  appearance: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  opacity: 0.8 !important;
}
.button-small {
  font-size: 14px;
  height: 35px;
  line-height: 35px;
  padding: 0 15px;
}
.button-xs {
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
}
.button-primary {
  background-color: #2166db;
  border-color: #2166db;
  color: #fff;
}
.button-primary:visited {
  background-color: #2166db;
  border-color: #2166db;
  color: #fff;
}
.button-primary:hover,
.button-primary:focus {
  background-color: #e50012;
  border-color: #e50012;
  color: #fff;
}
.button-primary:active,
.button-primary.active {
  background-color: #e50012;
  border-color: #e50012;
  color: #fff;
}

.button-red {
  background-color: #e50012;
  border-color: #e50012;
  color: #fff;
}
.button-red:visited {
  color: #fff;
}
.button-red:hover,
.button-red:focus {
  background-color: #ef626e;
  border-color: #ef626e;
  color: #fff;
}
.button-red:active,
.button-red.active {
  background-color: #ce0010;
  border-color: #ce0010;
  color: #fff;
}
/********************************************************/
/*                element     css             */
/********************************************************/
.fs14 {
  font-size: 14px;
}
.fs16 {
  font-size: 16px;
}
.fs18 {
  font-size: 18px;
}
.fs20 {
  font-size: 20px;
}
.fs22 {
  font-size: 22px;
}
.fs24 {
  font-size: 24px;
}
.fs30 {
  font-size: 30px;
}
.fs32 {
  font-size: 32px;
}
.fs36 {
  font-size: 36px;
}
.bold {
  font-weight: 600;
}
.txt-red {
  color: #e50012;
}
.txt-grey {
  color: #666;
}
.txt-block {
  color: #32383d;
}
.txt-blue {
  color: #2666dc;
}
.mg_b10 {
  margin-bottom: 10px;
}
.mg_t10 {
  margin-top: 10px;
}
.mg_b20 {
  margin-bottom: 20px;
}
.mg_t20 {
  margin-top: 20px;
}
.mg_r20 {
  margin-right: 20px;
}
.mg-l20 {
  margin-left: 20px;
}
.mg_t40 {
  margin-top: 40px;
}
.mg_t60 {
  margin-top: 60px;
}
.mg10 {
  margin: 10px;
}
.pd10 {
  padding: 10px;
}
.border-r {
  border-right: 1px dotted #b4b4b5;
}
.border-t {
  border-top: 1px dotted #b4b4b5;
}
.wper98 {
  width: 98%;
}
.wper100 {
  width: 100%;
}
.inline-block {
  display: inline-block;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
/********************************************************/
/*                1.header                 */
/********************************************************/
.w1200 {
  width: 1200px;
}
.header-top {
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  background: #2166dd;
  border-bottom: 1px solid #e4e4e4;
  color: #fff;
}
.header-top a {
  color: #fff;
  text-decoration: none;
}
.block-language-wrapper {
  display: inline-block;
}
.mgtop0 {
  margin-top: 0;
}
/*.header-con {padding: 0px 0 0px 0;min-width: 1203px;font-size: 12px;}
.top-header{font-size: 12px;background: #2166DD;border-bottom: 1px solid #e4e4e4;}
.top-header .container ul{display: inline-block;margin: 0;padding: 0;height: 30px;line-height: 30px;}
.top-header .container ul li{float: left;margin: 0 10px;display: inline-block;}
.top-header .container ul li .child_con{width:120px;z-index:999;display:none;background: #fff;top:25px;left:-20px;box-shadow: 0 0 3px #757584;}
.top-header .container ul li .child_con a{color: #D9D9D9;display: block;line-height: 30px;height: 30px;}
.top-header .container ul li a{color: #fff;outline: none;text-decoration: none;}
.top-header .container ul li:first-child{margin-left: 0;}
.top-header .container ul li:last-child{margin-right: 0;}
.top-header .container ul li:hover .child_con{
    display: block;
}*/

/********************************************************/
/*                2.search                 */
/********************************************************/
.search-box {
  width: 100%;
  margin: 16px auto;
  float: right;
  position: relative;
  background: #fff url("../images/search-icon.png") no-repeat scroll 10px 10px;
  padding: 0px 0px 0px 37px;
  border-radius: 2px;
}
.cate-dropdown {
  border: medium none;
  float: left;
  height: 34px;
  padding: 5px;
  width: 220px;
  line-height: 30px;
}
.cate-dropdown option {
  padding: 4px 8px;
}
.cate-dropdown:focus {
  float: left;
  width: 220px;
  height: 34px;
  line-height: 30px;
  padding: 5px;
  border: none;
  background: #f0f0f0;
}
/*new search*/
.searchHotlink {
  /*position:absolute;
	top:20px;
	left:28%;*/
  margin-bottom: 10px;
}
.main-header-top-link li {
  display: inline;
  float: left;
}
.main-header-top-link li > a {
  border-right: 1px solid #e4e4e4;
  padding: 0 5px;
  text-decoration: none;
  color: #666;
}
.main-header-top-link li > a:hover {
  color: #0088cc;
}
.main-header-top-link li:first-child > a {
  padding-left: 0;
}
.main-header-top-link li:last-child > a {
  border-right: medium none;
  padding-right: 0;
}

.header-search-box {
  margin-top: 25px;
}
.header-search-box .form-inline {
  border: 1px solid #eaeaea;
  height: 41px;
  position: relative;
  border: 2px solid #2166dd;
  border-radius: 5px;
}
.header-search-box .form-inline .btn-search {
  border: medium none;
  border-radius: 0;
  color: #fff;
  font-weight: bold;
  position: absolute;
  right: 0px;
  top: 0px;
  background: #2166dd url("../images/search.png") no-repeat scroll center center;
  height: 37px;
  width: 40px;
}
.pull-right {
  float: right;
}
.header-search-box .form-inline .form-category {
  height: 37px;
}
.header-search-box .form-inline .input-serach {
  width: calc(100% - 50px);
}
.header-search-box .form-inline .input-serach input {
  border: medium none;
  padding-left: 15px;
  width: 100%;
}
.header-search-box .form-inline .input-serach input {
  outline: none;
}
.header {
  padding: 20px 0 15px;
}
/********************************************************/
/*                3.nav                 */
/********************************************************/
nav {
  position: relative;
  z-index: 999;
  background: #2166db;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  border-bottom: 5px solid #e40011;
}
.nav-inner {
  margin: auto;
  /*position: relative;*/
  text-align: center;
  height: 50px;
}
#nav {
  /*position: relative;*/
  z-index: 10;
  padding: 0;
  margin: auto;
  text-align: center;
}
#nav > li {
  list-style: none;
  border-bottom: none;
  display: block;
  float: left;
}
#nav > li.drop-menu {
  /*position: relative;*/
}
#nav > li > a {
  color: #fff;
  display: block;
  float: left;
  font-size: 14px;
  line-height: 18px;
  padding: 17px 15px 11px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/* #nav > li > a:hover span{
    border-bottom: 1px solid #fff;
} */
#nav > li > a.active {
  background: #e50112;
}
#nav > li > a:hover {
  background: #e50112;
}
/* #nav > li > a.active:hover {
    background: #fff;
    color: #fff;
    border-bottom: none;
} */
/* #nav > li > a.active span{
    border-bottom: 1px solid #fff;
} */
/* #nav > li > a.active:hover span{
    border-bottom: 1px solid #fff;
} */
#nav > li > a:first-child {
  margin-left: 0px;
}
#nav > li > a:last-child a {
  color: #333;
}
.nav {
  margin: 0px auto 0;
}
/*#nav > li:hover > a, .vertnav-top li > a:hover {
	color: #333;
	background: #fafafa;
	border-bottom: none;
}*/
#nav > li > a > span {
  display: inline-block;
  line-height: 16px;
  padding-bottom: 5px;
}
li.level0 > a > span {
  position: relative;
}
#nav > li > a {
  font-size: 14px;
  font-family: "Helvetica Neue", "Luxi Sans", "DejaVu Sans", Tahoma,
    "Hiragino Sans GB", STHeiti, "Source Han Sans";
  /*color: #777;*/
  transition: color 300ms ease-in-out 0s, background-color 300ms ease-in-out 0s,
    background-position 300ms ease-in-out 0s;
}
.sticky {
  position: fixed;
  margin-top: 0px;
  z-index: 1001;
  display: block;
  top: 0px;
  height: 55px;
  width: 100%;
}
.nav-link-btn {
  float: right;
  color: #fff;
  background: #03a9f4;
  padding: 0 30px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  font-size: 14px;
}
/********************************************************/
/*                4.banner                 */
/********************************************************/
/* start templatemo header background slideshow */
.carousel-inner > .item > a > img,
.carousel-inner > .item > img {
  height: auto;
  max-height: 767px;
}
/*.carousel-indicators {
    width: auto;
    height: 35px;
    line-height: 40px;
    padding: 0 10px;
    border-radius: 17px;
	background: rgba(0,0,0,.3);
    margin: 0 auto;
    left: 45%;
}
.carousel-indicators li {
    width: 14px;
    height: 14px;
	background: #fff;
	border: 0;
	margin: 0 6px;
}
.carousel-indicators .active{background: #3ea3ff;height: 16px;width: 16px;margin: 0px 5px;}
.banner{margin-top: 0px;margin-top:-0px\0;}*/
/********************************************************/
/*                5.logo                 */
/********************************************************/
.logo {
  display: inline-block;
}
.logo img {
  width: 200px;
}

/*-------- 6. Products slider --------- */
.owl-item .item {
  margin: 0 10px;
}
.slider-items-products {
  position: relative;
}
.slider-items-products .item {
  text-align: left;
}
.owl-buttons {
  opacity: 1;
}
.slider-items-products .owl-buttons .owl-prev {
  position: absolute;
  right: 45px;
  top: -46px;
}
.slider-items-products .owl-buttons .owl-next {
  position: absolute;
  right: 13px;
  top: -46px;
}
.slider-items-products .owl-buttons .owl-prev a {
  background-position: 0 100%;
  left: 0;
  top: 50%;
  background: url(../images/left.png) no-repeat;
  background-size: 100% 100%;
}
.slider-items-products .owl-buttons .owl-next a {
  background-position: 100% 100%;
  left: 0;
  top: 50%;
  background: url(../images/right.png) no-repeat;
  background-size: 100% 100%;
}
/*.slider-items-products .owl-buttons .owl-next a:before {
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    speak: none;
    content: "\f105";
    text-transform: none;
    font-size: 18px;
    padding: 6px 6px 6px 6px;
    line-height: 26px;
}
.slider-items-products .owl-buttons .owl-prev a:before {
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    speak: none;
    content: "\f104";
    text-transform: none;
    font-size: 18px;
    padding: 6px 4px;
    line-height: 26px;
}*/
.slider-items-products .owl-buttons a {
  background: #fff;
  display: block;
  height: 60px;
  margin: -18px 0 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 5;
  border: 1px solid #999;
  color: #000;
  opacity: 0.5;
  transition: color 300ms ease-in-out 0s, background-color 300ms ease-in-out 0s,
    background-position 300ms ease-in-out 0s;
}
.slider-items-products .owl-buttons a:hover {
  /*background: #41ade2;*/
  color: #fff;
  border: 1px #41ade2 solid;
}
.product-flexslider {
  margin: 20px -10px;
}
.slider-items-products .owl-buttons a:hover {
  text-decoration: none;
  opacity: 1;
  color: #fff;
  /*background: #1c95d1;*/
}

/*---------- 7. Footer ------------ */
.footer {
  background: none repeat scroll 0 0 #32383d;
}
.footer-top {
  background-color: #2666dc;
  clear: both;
  margin-bottom: 0px;
  overflow: hidden;
  padding: 35px 0;
}
.footer-top2 {
  background-color: #e50012;
  clear: both;
  margin-bottom: 30px;
  overflow: hidden;
  padding: 2px 0;
}
.link-wrap {
  border-top: 1px solid #666;
}
.link-wrap .link-item {
  display: inline-block;
  font-size: 12px;
  color: #73777a;
  margin-right: 10px;
  transition: color 0.3s;
}
.link-wrap .link-item:hover {
  color: #fff;
}
/* newsletter */
.newsletter {
  margin: 0 0 20px 0;
  padding: 0;
  position: relative;
  margin: auto;
  margin: auto;
}
.newsletter h4 {
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 8px;
  color: #fff;
  font-family: "Helvetica Neue", "Luxi Sans", "DejaVu Sans", Tahoma,
    "Hiragino Sans GB", STHeiti, "Source Han Sans";
}
.newsletter input[type="text"] {
  background: #ffffff;
  width: 55%;
  height: 36px;
  display: inline-block;
  color: #a7a7a7;
  line-height: 22px;
  background-color: #fff;
  border: none;
  padding-left: 10px;
  font-size: 13px;
  font-family: "Helvetica Neue", "Luxi Sans", "DejaVu Sans", Tahoma,
    "Hiragino Sans GB", STHeiti, "Source Han Sans";
  border: none;
  margin: 0 10px 0px 0;
}
button.subscribe {
  background: #fdd922;
  border: 0 none;
  overflow: hidden;
  padding: 9px 13px;
  cursor: pointer;
  font-weight: normal;
  color: #222;
  font-family: "Helvetica Neue", "Luxi Sans", "DejaVu Sans", Tahoma,
    "Hiragino Sans GB", STHeiti, "Source Han Sans";
  text-transform: uppercase;
  transition: color 300ms ease-in-out 0s, background-color 300ms ease-in-out 0s,
    background-position 300ms ease-in-out 0s;
}
button.subscribe:before {
  content: "\f0e0";
  font-family: FontAwesome;
  font-size: 13px;
  padding-right: 5px;
  font-weight: normal;
}
/* Social Icons*/
.social .fb a:before {
  content: "\f09a";
  font-family: FontAwesome;
}
.social .fb a {
  background: #3c5b9b;
  font-size: 18px;
  border-radius: 3px;
  line-height: 35px;
  display: inline-block;
  width: 35px;
  height: 35px;
  color: #fff;
  text-align: center;
  padding: 0;
}
.social .fb a:hover {
  background: #3c5b9b;
}
.social .tw a:before {
  content: "\f099";
  font-family: FontAwesome;
}
.social .tw a {
  background: #359bed;
  font-size: 18px;
  border-radius: 3px;
  line-height: 35px;
  display: inline-block;
  width: 35px;
  height: 35px;
  color: #fff;
  text-align: center;
  padding: 0;
}
.social .tw a:hover {
  background: #359bed;
}
.social .googleplus a:before {
  content: "\f0d5";
  font-family: FontAwesome;
}
.social .googleplus a {
  background: #e33729;
  font-size: 18px;
  border-radius: 3px;
  line-height: 35px;
  display: inline-block;
  width: 35px;
  height: 35px;
  color: #fff;
  text-align: center;
  padding: 0;
}
.social .googleplus a:hover {
  background: #e33729;
}
.social .rss a:before {
  content: "\f09e";
  font-family: FontAwesome;
}
.social .rss a {
  content: "\f09e";
  font-family: FontAwesome;
  background: #fd9f13;
  font-size: 18px;
  border-radius: 3px;
  line-height: 35px;
  display: inline-block;
  width: 35px;
  height: 35px;
  color: #fff;
  text-align: center;
  padding: 0;
}
.social .rss a:hover {
  background: #fd9f13;
}
.social .pintrest a:before {
  content: "\f0d3";
  font-family: FontAwesome;
}
.social .pintrest a {
  content: "\f0d3";
  font-family: FontAwesome;
  background: #cb2027;
  font-size: 18px;
  border-radius: 3px;
  line-height: 35px;
  display: inline-block;
  width: 35px;
  height: 35px;
  color: #fff;
  text-align: center;
  padding: 0;
}
.social .pintrest a:hover {
  background: #cb2027;
}
.social .linkedin a:before {
  content: "\f0e1";
  font-family: FontAwesome;
}
.social .linkedin a {
  content: "\f0e1";
  font-family: FontAwesome;
  background: #027ba5;
  font-size: 18px;
  border-radius: 3px;
  line-height: 35px;
  display: inline-block;
  width: 35px;
  height: 35px;
  color: #fff;
  text-align: center;
  padding: 0;
}
.social .linkedin a:hover {
  background: #027ba5;
}
.social .youtube a:before {
  content: "\f167";
  font-family: FontAwesome;
}
.social .youtube a {
  background: #f03434;
  font-size: 18px;
  border-radius: 3px;
  line-height: 35px;
  display: inline-block;
  width: 35px;
  height: 35px;
  color: #fff;
  text-align: center;
  padding: 0;
}
.social .youtube a:hover {
  background: #f03434;
}
.social {
  float: right;
}
.social ul {
  float: left;
  margin: 0px;
  list-style: none;
  padding: 0px;
}
.social ul li {
  margin: 0px 0px 0px 7px;
  display: inline-block;
}
.social a {
  transition: background 400ms ease-in-out;
}
.footer-middle {
  margin: auto;
  margin-bottom: 30px;
  margin-top: 90px;
}
.footer-middle .col-md-3,
.footer-middle .col-md-2 {
  margin: 5px auto;
}
.footer a:hover {
  text-decoration: none;
}
.footer-bottom {
  background: none repeat scroll 0 0 #32383d;
  margin: auto;
  overflow: hidden;
  padding: 20px 0 50px;
  width: 100%;
}
.footer-bottom a:hover {
  text-decoration: none;
}
.contacts-info address {
  display: block;
  margin: auto;
  font-style: normal;
  line-height: 1.5em;
  color: #999;
  padding-top: 5px;
  margin-top: 10px;
  text-align: left;
  padding-bottom: 5px;
  margin-bottom: 7px;
  font-size: 12px;
  border: none;
}
.footer-logo {
  text-align: left;
  margin: 10px 0;
}
.footer a,
.footer p {
  color: #666;
  font-size: 12px;
  padding-bottom: 5px;
  padding-top: 5px;
}
.payment-accept img {
  margin: 0px 10px 8px 0px;
  width: 50px;
}
.footer-middle h4 {
  color: #b4b4b5;
  font-family: "Helvetica Neue", "Luxi Sans", "DejaVu Sans", Tahoma,
    "Hiragino Sans GB", STHeiti, "Source Han Sans";
  font-size: 14px;
  margin: 0;
  padding: 0 0 10px;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-middle ul.links {
  margin: auto;
  padding: 0px;
}
.footer-middle .links li {
  list-style: none;
  padding: 5px 0px;
}
.footer-middle .links li a {
  color: #999999;
  transition: color 300ms ease-in-out 0s, background-color 300ms ease-in-out 0s,
    background-position 300ms ease-in-out 0s;
}
.footer-middle .links li a:hover {
  color: #fff;
  text-decoration: none;
}
.footer-middle .links li a:before {
  content: "\f105";
  font-family: FontAwesome;
  font-size: 12px;
  display: inline-block;
  cursor: pointer;
  line-height: 20px;
  color: #999999;
  margin-right: 5px;
}
.add-icon:before {
  content: "\f041";
  font-family: FontAwesome;
  font-size: 15px;
  color: #32383d;
  height: 35px;
  width: 35px;
  line-height: 35px;
  display: inline-block;
  float: left;
  font-style: normal;
  text-align: center;
  margin-right: 10px;
  border-radius: 30px;
  border-radius: 25px;
  background: #c8c9cb;
}
.email-icon:before {
  content: "\f0e0";
  font-family: FontAwesome;
  font-size: 14px;
  color: #32383d;
  height: 35px;
  width: 35px;
  margin-right: 5px;
  line-height: 35px;
  display: inline-block;
  float: left;
  font-style: normal;
  text-align: center;
  margin-right: 10px;
  background: #c8c9cb;
  border-radius: 25px;
}
.phone-icon:before {
  content: "\f095";
  font-family: FontAwesome;
  font-size: 15px;
  color: #32383d;
  height: 35px;
  width: 35px;
  margin-right: 5px;
  line-height: 35px;
  display: inline-block;
  float: left;
  font-style: normal;
  text-align: center;
  margin-right: 10px;
  background: #c8c9cb;
  border-radius: 25px;
}
.email-footer {
  overflow: hidden;
  margin-top: 12px;
  font-size: 12px;
}
.email-footer a {
  font-size: 12px;
  line-height: 35px;
  color: #999;
}
.phone-footer {
  overflow: hidden;
  font-size: 12px;
  line-height: 35px;
  color: #999;
  margin-bottom: 18px;
  margin-top: 15px;
}
.coppyright {
  color: #666;
}
.footer-bottom .company-links ul {
  padding: 0px;
}
.footer-bottom .company-links li {
  display: inline-block;
  margin-left: 20px;
  list-style: none;
  float: right;
}

.ali-main-know-title {
  color: #000;
}

.ali-main-attion {
  float: right;
  width: 100px;
}
.ali-main-know-cell {
  height: 28px;
  line-height: 28px;
  padding-left: 18px;
  position: relative;
}

.ali-main-know-cell:hover .ali-main-know-cell-qr {
  display: block;
}

.ali-main-know-cell .ali-main-know-cell-icon {
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
}

.ali-main-know-cell .ali-main-know-cell-qr {
  display: none;
  width: 105px;
  position: absolute;
  left: -107px;
  top: -42px;
}

.ali-main-attion {
  position: relative;
}

.ali-main-attion .default {
  left: -107px;
  position: absolute;
  width: 105px;
  top: -2px;
}

.ali-main-attion .default:hover {
  display: block !important;
}

.ali-main-attion:hover .default {
  display: none;
}

.page {
  padding: 20px 0;
  text-align: center;
}
.page a {
  display: inline-block;
  min-width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  color: #888888;
  margin: 0 1px;
  padding: 0 5px;
  vertical-align: middle;
}
.page a:last-child,
.page a:first-child {
  border: 1px solid #e7e7e7;
  border-radius: 0px;
  margin: 0 8px;
  min-width: 45px;
}
.page a:hover,
.page a.on {
  background: #90b3ed;
  color: #fff;
}

/*二级导航*/
.want ul {
  position: absolute;
  z-index: 9;
  display: none;
  top: 55px;
  background: #232869;
  border: 1px solid #9193b4;
}
.want ul li {
  width: 115px;
  height: 50px;
  line-height: 50px;
}
.want .child-nav li.active {
  background: #3f3c72;
}
.want ul li:last-child {
  border-bottom: none;
}
.want ul li a {
  display: block;
  text-decoration: none;
  font-size: 14px;
}
/*网站顶部小菜单*/
.nav-entey ul {
  margin-top: 6px;
  width: 180px;
  height: 60px;
  margin-left: 10px;
}
.nav-entey ul li {
  float: left;
  height: 20px;
  line-height: 15px;
}
.nav-entey ul li a {
  display: block;
  text-decoration: none;
  height: 20px;
  line-height: 20px;
  width: 75px;
  border-right: 1px solid #d4e1f8;
}
.nav-entey ul li span {
  display: inline-block;
  width: 70px;
  border-bottom: 1px solid #d4e1f8;
}
.nav-entey ul li span {
  margin-right: 10px;
}
.nav-entey ul li:nth-child(4),
.nav-entey ul li:nth-child(5) {
}
.nav-entey ul li img {
  margin-right: 10px;
}
.tar {
  text-align: right;
}
.brn {
  border-right: none !important;
}
.bbn {
  border-bottom: none !important;
}
