﻿.container {
  /* width: 1400px; */
  width: 1366px;
  margin: 0 auto;
}

.bg-fff {
  background: #fff;
}

/* 导航栏 */
.nav {
  height: 70px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333333;
}

.nav .logo {
  width: 140px;
  height: 50px;
  background: url("../image/logo.png")/*tpa=http://www.anauanqu.cn/images/logo.png*/ no-repeat;
  background-size: 100% 100%;
}

.meanutop,
.dandr {
  display: flex;
  line-height: 70px;
}

.meanutop li:hover,
.meanutop li.on {
  color: #fff;
  background: #068eff;
}

.meanutop li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0px 20px;
  box-sizing: border-box;
}

.dandr div {
  width: 74px;
  height: 40px;
  line-height: 40px;
  background: #068eff;
  border-radius: 5px;
  border: #068eff 1px solid;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
}

.dandr div:last-child {
  border: 1px solid #068eff;
  margin-left: 20px;
  background: #fff;
  color: #068eff;
}

/* 焦点图 */
.bann {
  position: relative;
  width: 100%;
  min-height: 345px;
  /* max-height: 700px; */
  background: url(../image/newbann.jpg)/*tpa=http://www.anauanqu.cn/images/newbann.jpg*/ no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
}
.bann>img {
  width: 100%;
  min-height: 345px;
  max-height: 700px;
}
.bann .bann-cont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  justify-content: space-evenly;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.bann .bann-cont>div {
  width: 28.6%;
  min-height: 71%;
}
.bann .bann-cont>div:first-child{
  margin-right: 98px;
}

/* 图片动画-跳动 */
.jump>div {
  width: 100%;
  height: 100%;
  position: relative;
}

.jump>div img {
  animation: jump 3s ease infinite;
}

@keyframes jump {
  0% {
      transform: translateY(0) scale(1, 1);
  }

  /* 中间状态图片位移并且拉伸 */
  50% {
      transform: translateY(-50px) scale(0.97, 1.03);
  }

  100% {
      transform: translateY(0) scale(1, 1);
  }
}

@keyframes shadow {
  0% {
      transform: scale(1);
      opacity: 1;
      filter: blur(10px);
  }

  /* 投影缩放+虚化 */
  50% {
      transform: scale(0.8);
      opacity: 0.7;
      filter: blur(20px);
  }

  100% {
      transform: scale(1);
      opacity: 1;
      filter: blur(10px);
  }
}
/* 图片动画-跳动 end*/


/* 功能模块展示 */
.menu-model {
  overflow: hidden;
}
.menu-model .m-title {
  text-align: center;
  font-size: 28px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333;
  margin: 58px auto;
}

/* 重点功能 */
.list-key,
.list-ratio {
  display: flex;
  text-align: center;
  margin-bottom: 60px;
  justify-content: space-evenly;
}

.list-key>li {
  position: relative;
  width: 150px;
  flex: 1;
  margin: 0px 45px;
  color: #666;
}

.list-key>li .item-top {
  position: relative;
  width: 144px;
  height: 144px;
  background: #068eff;
  border-radius: 29px;
  margin: 0 auto;
  margin-bottom: 21px;
  color: #fff;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.list-key .item-top.it-1 {
  background: #068eff;
}

.list-key .item-top.it-2 {
  background: #607cfc;
}

.list-key .item-top.it-3 {
  background: #02de87;
}

.list-key .item-top.it-4 {
  background: #fe9921;
}

.list-key .item-top>i {
  position: absolute;
  top: 0;
  left: 0;
}

/* 左上角序号 */
.list-key .item-top:before {
  content: "";
  display: inline-block;
  width: 44px;
  height: 44px;
  background: inherit;
  border-radius: 50%;
  background: inherit;
  position: absolute;
  top: -20px;
  left: -20px;
}

.list-key .item-top>i {
  position: absolute;
  top: -10px;
  left: -8px;
  font-size: 20px;
  font-family: Impact;
}

.list-key .item-top>img {
  display: block;
  width: 45px;
  height: 39px;
  margin-bottom: 22px;
}

.list-key .item-top+p {
  width: 66%;
  margin: 0 auto;
  line-height: 22px;
}

/* 核心功能 */
.list-core {
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.list-core>li {
  width: 30%;
  margin: 10px;
  color: #666;
  background: #fff;
  border-radius: 20px;
  display: flex;
  height: 179px;
  line-height: 22px;
  display: flex;
  align-items: center;
  padding: 28px;
  box-sizing: border-box;
}

.list-core>li>img {
  width: 62px;
  height: 62px;
  margin-right: 29px;
}

.list-core .msgw {
  flex: 1;
}

.list-core .msgw .tit {
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333;
  margin-bottom: 18px;
}

/* 切换左右展示 */
.type-menu {
  height: 520px;
  background: url(../image/bg-lr.jpg)/*tpa=http://www.anauanqu.cn/images/bg-lr.jpg*/ no-repeat;
  background-size: 100% 100%;
}

.type-menu .container {
  display: flex;
  justify-content: center;
  height: 100%;
}

.type-menu .container>div {
  padding: 4%;
  padding-left: 7%;
  width: 50%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  height: 100%;
  align-items: center;
  box-sizing: border-box;
}

.type-menu .topnav>p {
  margin: 20px;
  width: 200px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: #131735;
  border: 1px solid #068eff;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #068eff;
  cursor: pointer;
}

.type-menu .topnav>p.active {
  color: #fff;
  background: #068eff;
}

.type-menu .nav-contain {
  position: relative;
  /* background: #068eff; */
  padding: 4% 8% !important;
  width: 50% !important;
}

.nav-contain::before {
  content: "";
  display: none;
  width: 0px;
  height: 0px;
  border: 35px solid transparent;
  border-right-color: #068eff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-100%, -50%);
}

.shop-list .tit {
  font-size: 20px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #fff;
}

.shop-list .tit::after {
  content: "";
  display: block;
  width: 80px;
  height: 6px;
  background: #fff;
  margin: 28px 0px;
}

.shop-list ul {
  color: #fff;
  line-height: 28px;
}

.shop-list ul li {
  line-height: 1.5;
  margin-bottom: 18px;
}

.shop-list ul li>p:first-child {
  display: inline-block;
}

.shop-list ul li .tip {
  color: #f2f8ff;
  /* font-size: 12px; */
  margin-top: 4px;
  padding-left: 24px;
}

.shop-list ul li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  margin-right: 10px;
}

/* 礼品代发 */
.goodshow {
  background: #EEF3F9;
  overflow: hidden;
}
.goodshow .nav {
  position: relative;
  display: flex;
  cursor: default;
  width: 800px;
  height: 60px;
  line-height: 60px;
  background: #FFFFFF;
  border: 1px solid #068EFF;
  border-radius: 10px;
  margin: 80px auto;
}

.goodshow .nav>p {
  width: 25%;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #068EFF;
}

.goodshow .nav>p.active {
  color: #fff;
  background: #068EFF;
  border-radius: 10px;
}
.bannwrap{
  position: relative;
  width: 88%;
  margin: 0 auto;
}
.bannwrap::before {
  content: '优势';
  display: inline-block;
  width: 188px;
  height: 56px;
  line-height: 56px;
  background: url(../image/bc-yellow.png)/*tpa=http://www.anauanqu.cn/images/bc-yellow.png*/ no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 10px;
  right: 2px;
  font-size: 30px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #FF4431;
  text-align: center;
}
.bannwrap>.item {
  width: 100%;
  max-width: 1200px;
  height: 536px;
  background: #1C204A;
  border-radius: 10px;
  margin-bottom: 80px;
}
.bannwrap .item {
  display: flex ;
}
.bannwrap .item .bw-l {
  position: relative;
  width: 65%;
}
.bannwrap .item .bw-l .imgbox {
  width: 98%;
  height: 456px;
  margin: 10px auto;
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
}
.bannwrap .item .bw-r {
  width: 35%;
  background: #1C204A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bannwrap .bw-r .explain {
  width: 81%;
  color: #DDD;
}
.bannwrap .bw-r .explain .tit {
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  margin-bottom: 28px;
}
.bannwrap .bw-r .explain .tip {
  font-size: 16px;
  margin-bottom: 26px;
}
.explain ul {
  line-height: 28px;
}
.explain .btn-use{
  display: block;
  width: 200px;
height: 50px;
line-height: 50px;
text-align: center;
background: #068EFF;
border-radius: 10px;
margin-top: 29px;
font-size: 18px;
font-weight: bold;
color: #FFF;
cursor: default;
}

/* 活动效果 */
.bw-shop{
  position: relative;
  width: 88%;
  margin: 0 auto;
  padding-top: 80px;
  overflow: hidden;
}

.bw-shop>.item {
  width: 100%;
  max-width: 1200px;
  height: 536px;
  border-radius: 10px;
  margin-bottom: 80px;
}
.bw-shop .item {
  display: flex;
}
.bw-shop .item .bw-r {
  position: relative;
  width: 65%;
}
.bw-shop .item .bw-r .imgbox {
  width: 98%;
  height: 456px;
  margin: 10px auto;
  box-sizing: border-box;
  background: #EEF3F9;
  border-radius: 10px;
  padding: 19px 10px;
}
.bw-shop .item .bw-l {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bw-shop .bw-l .shop-js {
  width: 81%;
  color: #DDD;
}

.bw-shop .shop-js .tit:after {
  content: '';
  display: block;
  width: 80px;
  height: 6px;
  background: #0584F9;
  margin: 38px 0px;
}
.bw-shop .shop-js .tit {
  width: 234px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
}
.bw-shop .shop-js .tip {
  font-size: 14px;
  color: #666;
}
/* 运营计划 */
.list-ratio li {
  position: relative;
  width: 160px;
  height: 267px;
  background: #02de87;
  border-radius: 80px;
}

.list-ratio li:after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: -50%;
  top: 50%;
  transform: translate(-32%, -50%);
  background: url(../image/icon-add.png)/*tpa=http://www.anauanqu.cn/images/icon-add.png*/ no-repeat;
  background-size: 100% 100%;
}

.list-ratio li:last-child:after {
  display: none;
}

.list-ratio li .ratio {
  width: 150px;
  line-height: 150px;
  background: #22eba3;
  border-radius: 75px;
  text-align: center;
  font-size: 60px;
  font-family: Impact;
  /* font-weight: bold; */
  color: #fff;
  margin: 6px auto 14px;
}

.list-ratio li>img {
  width: 41px;
  height: 40px;
}

.list-ratio li>p {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  margin-top: 10px;
}

.list-ratio li.lr2 {
  background: #068eff;
}

.list-ratio li.lr3 {
  background: #607cfc;
}

.list-ratio li.lr4 {
  background: #fe9921;
}

.list-ratio li.lr5 {
  background: #ff5f5f;
}

.list-ratio li.lr2 .ratio {
  background: #36a4ff;
}

.list-ratio li.lr3 .ratio {
  background: #90a3fb;
}

.list-ratio li.lr4 .ratio {
  background: #fbaf55;
}

.list-ratio li.lr5 .ratio {
  background: #fc8e8e;
}

.list-ratio li.lr1>img {
  width: 77px;
  height: 32px;
}

/* 买家秀 */
.buyshow {
  width: 100%;
  min-height: 562px;
  background: url(../image/bg-pep.jpg)/*tpa=http://www.anauanqu.cn/images/bg-pep.jpg*/ no-repeat;
  background-size: 100% 100%;
  opacity: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ddd;
}

.buyshow>div {
  width: 98%;
  display: inline-block;
  margin: 0 auto;
}

.buyshow .tit {
  font-size: 28px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 38px;
}

.buyshow .tit::before,
.buyshow .tit::after {
  content: "";
  display: inline-block;
  /* width: 410px; */
  width: 30%;
  height: 1px;
  background: linear-gradient(-90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.5;
  vertical-align: middle;
}

.buyshow .tit::before {
  margin-right: 20px;
}

.buyshow .tit::after {
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  margin-left: 20px;
}

/* 提交需求 */
.demand {
  width: 100%;
  min-height: 243px;
  height: 341px;
  background: url(../image/bg-map.png)/*tpa=http://www.anauanqu.cn/images/bg-map.png*/ no-repeat;
  background-size: 100% 100%;
  opacity: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #666;
}

.demand>div {
  width: 98%;
  display: inline-block;
  margin: 0 auto;
}

.demand p {
  margin-bottom: 28px;
}

.demand .tit {
  font-size: 28px;
  color: #333;
  font-weight: bold;
  margin-top: 57px;
}

.btn-submit {
  display: block;
  width: 200px;
  height: 60px;
  line-height: 60px;
  background: #068eff;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin: 0 auto;
}

/* 侧边栏 */
.float-nav {
  position: fixed;
  left: calc(100% - 100px);
  z-index: 1999;
  width: 0;
  height: 0;
  overflow: hidden;
  top: calc(50% - 115px);
  -webkit-animation: 0.5s ease-in-out 2s forwards;
  animation: 0.5s ease-in-out 2s forwards;
}

.float-nav li {
  color: #3296fa;
  position: relative;
  display: block;
  cursor: pointer;
  background: #EEE;
  text-align: center;
  width: 80px;
  padding: 10px 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-bottom: #ddd 1px solid;
}

.float-nav li:hover {
  color: #fff;
}

.float-nav li:first-child {
  border-radius: 10px 10px 0px 0px;
}

.float-nav li:last-child {
  border-radius: 0px 0px 10px 10px;
}

.float-nav li:hover {
  background: #068EFF;
}

.float-nav li .icon {
  display: block;
  width: 20px;
  height: 20px;
  width: 22px;
  height: 22px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.float-nav li i.icon-dl {
  background-image: url(../image/icon-user.png)/*tpa=http://www.anauanqu.cn/images/icon-user.png*/;
}

.float-nav li i.icon-zc {
  background-image: url(../image/icon-userp.png)/*tpa=http://www.anauanqu.cn/images/icon-userp.png*/;
}

.float-nav li i.icon-yy {
  background-image: url(../image/icon-ll.png)/*tpa=http://www.anauanqu.cn/images/icon-ll.png*/;
}

.float-nav li i.icon-kf {
  background-image: url(../image/icon-kf.png)/*tpa=http://www.anauanqu.cn/images/icon-kf.png*/;
}

.float-nav li:hover i.icon-dl {
  background-image: url(../image/icon-user2.png)/*tpa=http://www.anauanqu.cn/images/icon-user2.png*/;
}

.float-nav li:hover i.icon-zc {
  background-image: url(../image/icon-userp2.png)/*tpa=http://www.anauanqu.cn/images/icon-userp2.png*/;
}

.float-nav li:hover i.icon-yy {
  background-image: url(../image/icon-ll2.png)/*tpa=http://www.anauanqu.cn/images/icon-ll2.png*/;
}

.float-nav li:hover i.icon-kf {
  background-image: url(../image/icon-kf2.png)/*tpa=http://www.anauanqu.cn/images/icon-kf2.png*/;
}

.float-nav li h4 {
  font-size: 14px;
  font-weight: 400;
  padding-top: 5px;
}

.float-nav .goqqwx {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 105%;
  width: 80px;
  color: #FFF;
  background: #068EFF;
  border-radius: 7px 7px;
}

.float-nav .goqqwx div {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 39px;
}

.float-nav .goqqwx div:first-child {
  border-bottom: 1px solid #DDD;
}

.float-nav .goqqwx div i {
  display: inline-block;
  width: 21px;
  height: 20px;
  margin-right: 11px;
  vertical-align: middle;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.float-nav .goqqwx div i.icon-qq {
  background-image: url(../image/qq.png)/*tpa=http://www.anauanqu.cn/images/qq.png*/;
}

.float-nav .goqqwx div i.icon-wx {
  background-image: url(../image/icon-wx.png)/*tpa=http://www.anauanqu.cn/images/icon-wx.png*/;
}
.float-nav li .img-label {
  display: none;
  position: absolute;
  top: 0;
  right: 105%;
  /* width: 80px; */
  /* height: 80px; */
  width: 150px;
  height: 150px;
  padding: 15px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  -webkit-animation: 0.3s ease-in-out;
  animation: 0.3s ease-in-out;
}

.float-nav li .img-label img {
  width: 100%;
  height: 100%;
}

.float-nav .li-zxkf:hover .goqqwx {
  opacity: 1 !important;
}

/* 客服二维码-移入显示 */
.float-nav .towx:hover+.img-label {
  display: block !important;
}
/* 运营二维码-移入显示 */
.float-nav .li-zxyy:hover .img-label {
  display: block !important;
}

/* 回到顶部 */
.to-top {
  position: fixed;
  right: 25px;
  bottom: 5%;
  z-index: 9;
  width: 40px;
  height: 40px;
  background: #eeeeee;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  opacity: 1;
  -webkit-animation: 0.5s ease-in-out 2s forwards;
  animation: 0.5s ease-in-out 2s forwards;
}

.to-top i {
  display: inline-block;
  width: 11px;
  height: 9px;
  background: url(../image/arrow-t.png)/*tpa=http://www.anauanqu.cn/images/arrow-t.png*/ no-repeat;
  background-size: 100% 100%;
}

.to-top:hover {
  background-color: #068EFF;
}

.to-top:hover i {
  background-image: url(../image/arrow-t2.png)/*tpa=http://www.anauanqu.cn/images/arrow-t2.png*/;
}