/**
 * @description: 清除浮动
 * @Author:
 * @param {type}
 * @return:
 */
/**
 * @description: 响应式图片
 * @Author:
 * @param {type}
 * @return:
 */
/**
 * @description: 横向排列，垂直居中布局
 * @Author:
 * @param {type}
 * @return:
 */
/**
 * @description: 单行文本超出隐藏
 * @Author:
 * @param {type}
 * @return:
 */
/**
 * @description: 多行文本超出隐藏
 * @Author:
 * @param {Number} num 最多要显示几行
 * @return:
 */
/**
 * @description: flex 垂直居中布局
 * @Author:
 * @param {String} cposition 水平排列方式
 * @return:
 */
/**
 * @description: 设置元素尺寸
 * @Author:
 * @param {Number} w 宽度
 * @param {Number} h 高度
 * @return:
 */
/**
 * @description: 2x的雪碧图缩放
 * @Author:
 * @param {Number} spriteW 雪碧图原始宽度
 * @param {Number} spriteH 雪碧图原始高度
 * @param {Number} bgOffsetX 背景定位原始X轴偏移量
 * @param {Number} bgOffsetY 背景定位原始Y轴偏移量
 * @return:
 */
/**
 * @description: 设置字体
 * @Author:
 * @param {type}
 * @return:
 */
/**
 * @description: 修改滚动条样式
 * @Author:
 * @param {String} scrollW 滚动条宽度
 * @param {String} scrollC 滚动条背景色
 * @param {String} trackP 滑块背景色
 * @return:
 */
/**
 * @description: 设置背景图
 * @Author:
 * @param {String} url 图片路径
 * @return:
 */
/**
 * @description: 修改输入框占位符的字体颜色
 * @Author:
 * @param {type}
 * @return:
 */
/**
 * @description: 禁止选中内容
 * @Author:
 * @param {type}
 * @return:
 */
/**
 * @description: 鼠标移入图片放大效果
 * @Author:
 * @param {type}
 * @return:
 */
/**
 * @description: 铺满整个容器的绝对定位
 * @Author: 
 * @param {type} 
 * @return: 
 */
/**
 * @description: 绝对定位水平垂直居中
 * @Author: 
 * @param {type} 
 * @return: 
 */
/**
 * @description: 统一容器,视项目不同,数值有所不同
 * @Author: 
 * @param {type} 
 * @return: 
 */
/**
 * @description: 替代flex的inline-block
 * @Author: 
 * @param {type} 
 * @return: 
 */
/**
 * @description: 首页栏目标题样式
 * @Author: 
 * @param {type} 
 * @return: 
 */
/**
 * @description: 两端对齐辅助元素
 * @Author: 
 * @param {type} 
 * @return: 
 */
div.aside-right {
  cursor: pointer;
  position: fixed;
  top: 65%;
  right: 0.1rem;
  z-index: 10000001;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  margin-top: -1rem;
}
@media screen and (max-width: 1024px) {
  div.aside-right {
    display: none;
  }
}
div.aside-right.active {
  right: 0.1rem;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
div.aside-right i::before {
  content: '<';
  font-weight: bold;
  color: #fff;
  font-size: 0.3rem;
  display: inline-block;
  font-family: cursive;
}
div.aside-right div.aside-to-left {
  position: absolute;
  right: 100%;
  top: 50%;
  margin-top: -0.75rem;
  width: 0.25rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  border-radius: 0.08rem;
  background-color: #D5A61D;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
div.aside-right div.aside-to-left.hide {
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
div.aside-right ul.aside-list {
  position: relative;
}
div.aside-right ul.aside-list div.aside-top-right {
  width: 100%;
  height: 25px;
  border-radius: 8px;
  background-color: #D5A61D;
  text-align: center;
  line-height: 25px;
  color: #fff;
  cursor: pointer;
}
div.aside-right ul.aside-list div.aside-top-right i::before {
  content: '>';
  font-size: 0.2rem;
}
div.aside-right ul.aside-list li {
  position: relative;
}
div.aside-right ul.aside-list li:hover div.aside-item {
  transition: all 0.5s;
  display: block;
}
div.aside-right ul.aside-list li div.aside-item {
  position: absolute;
  top: 0;
  right: 0.58rem;
  display: none;
  transition: all 0.5s;
  background-color: #D5A61D;
  border-radius: 4px;
}
div.aside-right ul.aside-list li div.aside-item a {
  color: #fff;
}
div.aside-right ul.aside-list li div.aside-item.text {
  top: 50%;
  margin-top: -0.2rem;
  width: 1.6rem;
  text-align: center;
  padding: 0.1rem;
  color: #fff;
  font-size: 0.16rem;
  line-height: 1.5;
}
div.aside-right ul.aside-list li div.aside-item.pic {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #D5A61D;
  padding: 5px;
}
div.aside-right ul.aside-list li div.aside-item.pic img {
  display: block;
  width: 100%;
  height: auto;
}
div.aside-right ul.aside-list li,
div.aside-right ul.aside-list div.to-top {
  width: 0.58rem;
  height: 0.58rem;
  line-height: 0.58rem;
  background-color: rgba(75, 75, 75, 0.6);
  margin: 0.01rem 0;
  text-align: center;
  border-radius: 4px;
}
div.aside-right ul.aside-list li img,
div.aside-right ul.aside-list div.to-top img {
  display: inline-block;
  width: 0.3rem;
  height: auto;
  vertical-align: middle;
}
.bottom-window {
  display: none;
}
@media screen and (max-width: 1024px) {
  .bottom-window {
    display: block;
    width: 100%;
    height: 1.1rem;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1001;
  }
  .bottom-window ul {
    display: flex;
    height: 1.1rem;
    align-items: center;
    justify-content: space-between;
    background-color: #D5A61D;
  }
  .bottom-window ul li {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-right: 1px solid #fff;
    color: #333;
    font-size: 0.28rem;
    text-align: center;
  }
  .bottom-window ul li img {
    width: 0.4rem;
    height: auto;
  }
  .bottom-window ul li span {
    display: inline-block;
    width: 100%;
    color: #fff;
  }
  .bottom-window ul li:nth-child(2) {
    border: none!important;
  }
  .bottom-window ul li:nth-child(2) img {
    margin-top: 0.05rem;
    margin-bottom: 0.05rem;
  }
}
.slide-nav {
  position: fixed;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 23, 35, 0.98);
  z-index: 99999999;
  transition: 0.5s;
}
.slide-nav .nav-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 1rem;
}
.slide-nav .nav-wrap img {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  cursor: pointer;
}
.slide-nav .nav-wrap img:hover {
  animation: rubberBand 0.8s;
}
.slide-nav .nav-wrap .bottom-ele {
  text-align: center;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  width: 100%;
  font-size: 0.16rem;
  color: #fff;
}
.slide-nav .nav-wrap .bottom-ele a {
  color: #fff;
}
.slide-nav .nav-wrap .bottom-ele span {
  margin-right: 0.2rem;
}
.slide-nav .nav-wrap .bottom-ele span:hover a {
  color: #ff4343;
}
.slide-nav .nav-wrap .bottom-ele i {
  margin-right: 0.15rem;
}
.slide-nav .nav-wrap .nav-list {
  width: 2rem;
  margin: 0 auto;
  display: none;
}
.slide-nav .nav-wrap .nav-list li {
  text-align: center;
  margin-bottom: 0.2rem;
}
.slide-nav .nav-wrap .nav-list li a {
  color: #fff;
  font-size: 0.32rem;
}
.slide-nav .nav-wrap .nav-list li a:hover {
  color: #246EDC;
}
.slide-nav .nav-wrap .nav-list li .child-menu {
  margin-top: 0.3rem;
}
.slide-nav .nav-wrap .nav-list li .child-menu a {
  font-size: 0.24rem;
}
.slide-search {
  position: fixed;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 100000;
  transition: 0.5s;
  overflow: hidden;
}
.slide-search .search-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 3.2rem;
}
.slide-search .search-wrap .guanbi {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  cursor: pointer;
}
.slide-search .search-wrap .guanbi:hover {
  animation: rubberBand 0.8s;
}
.slide-search .search-wrap .main-content {
  width: 8rem;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .slide-search .search-wrap .main-content {
    width: 100%;
    padding: 0 0.3rem;
  }
}
.slide-search .search-wrap .main-content img {
  width: 2rem;
  height: auto;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .slide-search .search-wrap .main-content img {
    width: 4rem;
  }
}
.slide-search .search-wrap .main-content h6 {
  font-size: 0.24rem;
  color: #fff;
  margin: 0.5rem 0;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .slide-search .search-wrap .main-content h6 {
    font-size: 0.32rem;
  }
}
.slide-search .search-wrap .main-content .search-input .input {
  width: 7rem;
  height: 0.8rem;
  background: #fff;
  float: left;
}
@media screen and (max-width: 1024px) {
  .slide-search .search-wrap .main-content .search-input .input {
    width: 6rem;
  }
}
.slide-search .search-wrap .main-content .search-input .input input {
  width: 100%;
  border: none;
  font-size: 0.18rem;
  padding-left: 0.3rem;
  margin-top: 0.3rem;
}
@media screen and (max-width: 1024px) {
  .slide-search .search-wrap .main-content .search-input .input input {
    font-size: 0.28rem;
  }
}
.slide-search .search-wrap .main-content .search-input .search-btn {
  width: 0.8rem;
  height: 0.8rem;
  line-height: 0.8rem;
  float: right;
  color: #fff;
  text-align: center;
  background: #D5A61D;
  cursor: pointer;
}
.slide-search .search-wrap .main-content .search-input .search-btn i {
  font-size: 0.3rem;
}
.slide-search .search-wrap .main-content .two-menu {
  margin-top: 0.5rem;
}
.slide-search .search-wrap .main-content .two-menu a {
  color: #fff;
  font-size: 0.16rem;
  margin: 0 0.3rem;
}
@media screen and (max-width: 1024px) {
  .slide-search .search-wrap .main-content .two-menu a {
    font-size: 0.3rem;
  }
}
.slide-search .bottom-ele {
  text-align: center;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  width: 100%;
  font-size: 0.16rem;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .slide-search .bottom-ele {
    font-size: 0.28rem;
  }
}
.slide-search .bottom-ele a {
  color: #fff;
}
.slide-search .bottom-ele span:hover a {
  color: #D5A61D;
}
.slide-search .bottom-ele i {
  margin-right: 0.15rem;
}
