@charset "utf-8";
/*
	Name: Agent_Style v1.0 -LESS Framework
	Author: Liuqq
	Styles updated: 2018/5/3
-------------------------------*/
/*base style define*/
/*---------------------------------------*/
body,
dl,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
form,
fieldset,
input,
textarea,
p,
th,
td {
  margin: 0;
  padding: 0;
}
body,
button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-family: "microsoft yahei", Arial, Helvetica, sans-serif;
}
body {
  max-width: 800px;
  margin: 0 auto !important;
  background: #fff;
  line-height: 1.42857143;
  color: #333;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.5;
}
img {
  border: 0;
}
* {
  padding: 0;
  margin: 0;
}
ol,
ul,
li {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
/*定义基础字体*/
html {
  font-size: 10px;
}
@media screen and (min-width: 321px) and (max-width: 375px) {
  html {
    font-size: 11px;
  }
}
@media screen and (min-width: 376px) and (max-width: 414px) {
  html {
    font-size: 12px;
  }
}
@media screen and (min-width: 415px) and (max-width: 639px) {
  html {
    font-size: 15px;
  }
}
@media screen and (min-width: 640px) and (max-width: 719px) {
  html {
    font-size: 20px;
  }
}
@media screen and (min-width: 720px) and (max-width: 749px) {
  html {
    font-size: 22.5px;
  }
}
@media screen and (min-width: 750px) and (max-width: 799px) {
  html {
    font-size: 23.5px;
  }
}
@media screen and (min-width: 800px) {
  html {
    font-size: 25px;
  }
}
/*html5*/
article,
aside,
dialog,
footer,
header,
section,
footer,
nav,
figure,
menu {
  display: block;
}
input,
textarea,
button,
select {
  outline: none;
}
textarea {
  resize: none;
}
i,
em,
cite {
  font-style: normal;
}
a {
  text-decoration: none;
  color: #333;
}
.hide {
  display: none;
}
* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
* {
  touch-action: pan-y;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@font-face {
  font-family: 'iconfont';
  /* project id 721747 */
  src: url('../iconfont/iconfont.eot');
  src: url('../iconfont/iconfont.eot?#iefix') format('embedded-opentype'), url('../iconfont/iconfont.woff2') format('woff2'), url('../iconfont/iconfont.woff') format('woff'), url('../iconfont/iconfont.ttf') format('truetype'), url('../iconfont/iconfont.svg#iconfont') format('svg');
}
.iconfont {
  font-family: "iconfont";
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
}
/*向上出现*/
.fadeInBottom {
  animation: fadeInBottom 1s;
  -webkit-animation: fadeInBottom 1s;
  -moz-animation: fadeInBottom 1s;
  -o-animation: fadeInBottom 1s;
  -ms-animation: fadeInBottom 1s;
}
/*左侧滑入*/
.fadeInLeft {
  animation: fadeInLeft 1s;
  -webkit-animation: fadeInLeft 1s;
  -moz-animation: fadeInLeft 1s;
  -o-animation: fadeInLeft 1s;
  -ms-animation: fadeInLeft 1s;
}
/*右侧滑入*/
.fadeInRight {
  animation: fadeInRight 1s;
  -webkit-animation: fadeInRight 1s;
  -moz-animation: fadeInRight 1s;
  -o-animation: fadeInRight 1s;
  -ms-animation: fadeInRight 1s;
}
/*右侧滑入*/
.fadeInRightSmall {
  animation: fadeInRightSmall 1s;
  -webkit-animation: fadeInRightSmall 1s;
  -moz-animation: fadeInRightSmall 1s;
  -o-animation: fadeInRightSmall 1s;
  -ms-animation: fadeInRightSmall 1s;
}
.flipInx {
  animation: flipInx 1s;
  -webkit-animation: flipInx 1s;
  -moz-animation: flipInx 1s;
  -o-animation: flipInx 1s;
  -ms-animation: flipInx 1s;
}
/*字体由小变大渐现*/
.fontFadeBig {
  animation: fontFadeBig 1s;
  -webkit-animation: fontFadeBig 1s;
  -moz-animation: fontFadeBig 1s;
  -o-animation: fontFadeBig 1s;
  -ms-animation: fontFadeBig 1s;
}
/*字体由大变小渐现*/
.fontFadeSmall {
  animation: fontFadeSmall 1s;
  -webkit-animation: fontFadeSmall 1s;
  -moz-animation: fontFadeSmall 1s;
  -o-animation: fontFadeSmall 1s;
  -ms-animation: fontFadeSmall 1s;
}
/*keyframes*/
/*向上出现*/
@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-moz-keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/*左侧滑入*/
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/*右侧滑入*/
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/*右侧滑入 短距离*/
@-webkit-keyframes fadeInRightSmall {
  0% {
    opacity: 0;
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-moz-keyframes fadeInRightSmall {
  0% {
    opacity: 0;
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRightSmall {
  0% {
    opacity: 0;
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/*右侧滑入 短距离*/
@-webkit-keyframes fadeInRightSmall {
  0% {
    opacity: 0;
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-moz-keyframes fadeInRightSmall {
  0% {
    opacity: 0;
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRightSmall {
  0% {
    opacity: 0;
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/*转*/
@-webkit-keyframes flipInx {
  0% {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
  40% {
    opacity: 0;
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    opacity: 0;
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
  }
}
@-moz-keyframes flipInx {
  0% {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
  40% {
    opacity: 0;
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    opacity: 0;
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
  }
}
@keyframes flipInx {
  0% {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
  40% {
    opacity: 0;
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    opacity: 0;
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
  }
}
/*字体由小变大渐现*/
@-webkit-keyframes fontFadeBig {
  0% {
    opacity: 0;
    font-size: 10px;
  }
  100% {
    opacity: 1;
    font-size: 17px;
  }
}
@-moz-keyframes fontFadeBig {
  0% {
    opacity: 0;
    font-size: 10px;
  }
  100% {
    opacity: 1;
    font-size: 17px;
  }
}
@keyframes fontFadeBig {
  0% {
    opacity: 0;
    font-size: 10px;
  }
  100% {
    opacity: 1;
    font-size: 17px;
  }
}
/*字体由大变小渐现*/
@-webkit-keyframes fontFadeSmall {
  0% {
    opacity: 0;
    font-size: 50px;
  }
  100% {
    opacity: 1;
    font-size: 21px;
  }
}
@-moz-keyframes fontFadeSmall {
  0% {
    opacity: 0;
    font-size: 50px;
  }
  100% {
    opacity: 1;
    font-size: 21px;
  }
}
@keyframes fontFadeSmall {
  0% {
    opacity: 0;
    font-size: 50px;
  }
  100% {
    opacity: 1;
    font-size: 21px;
  }
}
.bounceIn {
  animation: bounceIn 1s both;
  -webkit-animation: bounceIn 1s both;
  -moz-animation: bounceIn 1s both;
  -o-animation: bounceIn 1s both;
  -ms-animation: bounceIn 1s both;
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
/*旋转45度 显现*/
.rotateInDownLeft {
  animation: rotateInDownLeft 1s;
  -webkit-animation: rotateInDownLeft 1s;
  -moz-animation: rotateInDownLeft 1s;
  -o-animation: rotateInDownLeft 1s;
  -ms-animation: rotateInDownLeft 1s;
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/*王士超 2019/8/30*/
/*样式控制类*/
.zze-pt10 {
  padding-top: 10px;
}
.zze-pl10 {
  padding-left: 10px;
}
.zze-pr10 {
  padding-right: 10px;
}
.zze-pb10 {
  padding-bottom: 10px;
}
.zze-pt20 {
  padding-top: 20px;
}
.zze-pl20 {
  padding-left: 20px;
}
.zze-pr20 {
  padding-right: 20px;
}
.zze-pb20 {
  padding-bottom: 20px;
}
.ovh {
  overflow: hidden;
}
.hide {
  display: none;
}
/*特殊控制*/
.zze-mb50 {
  margin-bottom: 50px !important;
}
.zze-mb60 {
  margin-bottom: 60px !important;
}
/*基于layui*/
.zze-container {
  position: relative;
  width: 96%;
  margin: 0 2%;
}
/*会员中心表单*/
/*修改layui 样式*/
.layui-btn {
  background-color: #98c63c !important;
}
/*新首页导航*/
.nav02 {
  width: 100%;
  padding: 2% 5% 5% 5%;
  background: rgba(255, 255, 255, 0.6);
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.nav02 li {
  float: left;
  width: 25%;
  padding: 0.5rem 0;
}
.nav02 li a {
  display: block;
}
.nav02 li a img {
  width: 56%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.nav02 li a span {
  display: block;
  line-height: 2.5rem;
  font-size: 1.17rem;
  text-align: center;
  color: #000;
}
.swiper-slide {
  width: 100%;
  height: auto;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
}
.nav {
  width: 80%;
  margin: 0 auto;
  position: absolute;
  bottom: 14%;
  left: 50%;
  margin-left: -40%;
  z-index: 100;
}
.nav ul {
  overflow: hidden;
}
.nav ul li {
  float: left;
  font-size: 1.25rem;
  width: 49%;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  margin: 1% 0 0 1%;
  height: 3.6rem;
  line-height: 3.6rem;
}
.nav ul li a {
  color: #fff;
}
.yue {
  position: absolute;
  display: none;
  top: 11%;
  right: 4%;
  z-index: 101;
}
.yue .iconfont {
  font-size: 30px;
  background-color: #3985ff;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  padding: 10% 15%;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 6rem !important;
}
.list-box {
  width: 100%;
  padding-bottom: 6rem;
}
.list-box .container {
  width: 98%;
  margin: 0 auto;
  padding-top: 2%;
  padding-left: 1%;
  padding-right: 1%;
  padding-bottom: 2%;
}
.list-text {
  margin-top: 0.5rem;
  font-size: 1.33rem;
  color: #666;
  line-height: 2rem;
  letter-spacing: 0.1rem;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.list-text img,
.list-text table {
  max-width: 100%;
  margin-bottom: 3px;
}
.list-1 {
  overflow: hidden;
}
.list-1 .title {
  font-size: 1.83rem;
  margin-top: 5px;
  height: 3.6rem;
  line-height: 3.6rem;
  font-weight: bold;
}
.list-1 .crumb {
  width: 100%;
  height: 2rem;
  line-height: 2rem;
}
.list-1 .crumb span {
  font-size: 1.2rem;
  color: #666;
}
.list-1 .crumb span em {
  font-size: 1.2rem;
  color: red;
  margin-left: 0.5rem;
}
.input-cont {
  width: 95%;
  border-radius: 15px;
  border: 1px solid #666;
  color: #666;
  margin: 0 auto;
  padding: 0.6rem 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.input-cont i {
  font-size: 15px;
  float: left;
  padding-right: 0.5rem;
  margin: 0 auto;
}
.input-cont input {
  width: 90%;
  border: 0;
}
.list-2 {
  overflow: hidden;
}
.list-2 .container2 {
  background-color: #fff !important;
  margin-bottom: 2%;
}
.list-2 .list-item {
  background-color: #fff;
  margin-bottom: 2%;
  border-radius: 4px;
}
.list-2 .list-item .img-box {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 50%;
}
.list-2 .list-item .img-box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.list-2 .list-item .title-box {
  overflow: hidden;
  position: relative;
  border-bottom: 3px solid #f1f1f1;
  padding-bottom: 2px;
}
.list-2 .list-item .title-box h2 {
  font-size: 1.33rem;
  height: 3.6rem;
  line-height: 3.6rem;
  font-weight: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #000;
}
.list-2 .list-item .title-box span {
  font-size: 1rem;
  color: #666;
}
.list-3 {
  overflow: hidden;
}
.list-3 .list-item {
  float: left;
  width: 46%;
  margin-left: 3%;
  margin-top: 1%;
  margin-bottom: 0;
}
.list-3 .list-item .img-box {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 3px;
}
.list-3 .list-item .img-box img {
  width: 100%;
  height: auto;
}
.list-3 .list-item .title-box {
  overflow: hidden;
  padding: 2% 2%;
  text-align: center;
}
.list-3 .list-item .title-box h2 {
  font-size: 1.33rem;
  font-weight: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #000;
}
.list-3 .list-item .title-box span {
  font-size: 1rem;
  color: #666;
}
.card {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #eee;
}
.card li {
  float: left;
  width: 33%;
  text-align: center;
}
.card li a {
  display: inline-block;
  font-size: 1.25rem;
  color: #000;
  width: 100%;
  height: 3.6rem;
  line-height: 3.6rem;
  border-bottom: 1px solid #fff;
}
.card li a:hover {
  color: #3985ff;
  border-bottom: 1px solid #3985ff;
}
.card li .active {
  color: #3985ff;
  border-bottom: 1px solid #3985ff;
}
.list-4 {
  overflow: hidden;
  position: relative;
  width: 96%;
  margin: 0 2%;
}
.list-4 .list-item {
  position: relative;
  float: left;
  width: 33%;
  padding: 6px;
  box-sizing: border-box;
}
.list-4 .list-item .img-box {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 3px;
}
.list-4 .list-item .img-box img {
  width: 100%;
}
.list-4 .list-item h2 {
  font-size: 1.25rem;
  font-weight: normal;
  color: #000;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
}
.list-5 {
  margin-bottom: 1rem;
  background-color: #fff;
  /*发圈样式*/
}
.list-5 .faquan {
  width: 100% !important;
  padding: 0 !important;
}
.list-5 .list-item {
  position: relative;
  width: 100%;
  padding: 16px 0 10px 0;
  background: #fff;
  border-bottom: 5px solid #eee;
}
.list-5 .list-item .top {
  overflow: hidden;
  width: 96%;
  padding: 0 2%;
}
.list-5 .list-item .top .img-box {
  width: 12%;
  float: left;
}
.list-5 .list-item .top .img-box img {
  width: 100%;
  height: 100%;
}
.list-5 .list-item .top .right {
  width: 86%;
  float: right;
}
.list-5 .list-item .top .right h3 {
  font-size: 1.5rem;
  color: #98c63c;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: bold;
}
.list-5 .list-item .top .right .list-text02 {
  font-size: 1.33rem;
  color: #000;
  line-height: 1.95rem;
  margin: 3% 0 0 0;
  overflow: hidden;
  /*复制隐藏域 */
}
.list-5 .list-item .top .right .list-text02 a {
  font-size: 1rem;
  color: #3985ff;
  margin-left: 1%;
}
.list-5 .list-item .top .right .list-text02 .contents {
  border: none;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.list-5 .list-item .top .right .thumb {
  overflow: hidden;
}
.list-5 .list-item .top .right .thumb .swipebox {
  display: block;
  float: left;
  margin: 1%;
  position: relative;
  width: 30%;
  height: 0;
  padding-bottom: 30%;
  overflow: hidden;
}
.list-5 .list-item .top .right .thumb img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.list-5 .list-item .top .right .thumb video {
  width: 80%;
}
.list-5 .list-item .top .right span.time {
  font-size: 13px;
  color: #999;
  display: block;
  text-align: left;
  height: 30px;
  line-height: 30px;
}
.list-5 .list-item .bottom {
  overflow: hidden;
  width: 85%;
  margin-left: 12%;
  border-top: 1px solid #f1f1f1;
  padding-top: 6px;
}
.list-5 .list-item .bottom a {
  display: block;
  float: left;
  font-size: 1.2rem;
  color: #333;
  width: 33%;
  text-align: center;
}
.list-5 .list-item .bottom a i {
  font-size: 18px;
  margin-right: 5px;
}
#origin-img {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}
#origin-img .swiper-slide img {
  width: 100%;
  vertical-align: middle;
}
.list-box2 {
  width: 100%;
  overflow: hidden;
}
.list-box2 .img-box {
  height: auto;
}
.list-box2 .img-box img {
  width: 100%;
}
.list-box2 .container {
  width: 80%;
  border-radius: 6px;
  border: 1px solid #666;
  line-height: 3.9rem;
  height: 4rem;
  margin: 0 auto;
  font-size: 1.4rem;
}
.list-box2 .input6 {
  color: #000;
  overflow: hidden;
}
.list-box2 .input6 .number {
  float: left;
  padding-left: 0.7rem;
  border-right: 1px solid #666;
}
.list-box2 .input6 .number i {
  padding-right: 0.5rem;
}
.list-box2 .input6 .input {
  border: 0;
  float: left;
  font-size: 1.25rem;
  width: 72%;
  padding-left: 1rem;
  height: 3.9rem;
}
.list-box2 .query {
  margin-top: 3rem;
  background-color: #98c63c;
  border: 1px solid #98c63c;
  color: #fff;
  display: block;
}
.list-box2 .submit {
  margin-bottom: 8rem;
}
.list-box3 {
  width: 100%;
}
.list-box3 .banner02 {
  background-color: #98c63c;
  height: 4rem;
  line-height: 4rem;
}
.list-box3 .banner02 .title {
  font-size: 1.4rem;
  color: #fff;
  padding-left: 1.5rem;
}
.list-box3 .find {
  width: 100%;
  background-color: #eee;
  padding: 0 2%;
  height: 4rem;
  font-size: 1.17rem;
  padding-top: 0.5rem;
}
.list-box3 .find .left {
  width: 83%;
  float: left;
  border: 1px solid #eee;
  background-color: #fff;
  height: 3rem;
  line-height: 3rem;
  padding: 0 2%;
}
.list-box3 .find .left i {
  font-size: 15px;
}
.list-box3 .find .left input {
  border: 0;
  width: 70%;
}
.list-box3 .find .right {
  width: 15%;
  text-align: center;
  color: #fff;
  height: 2.5rem;
  line-height: 2.6rem;
  border-radius: 3px;
  float: right;
  background-color: #ff5722;
  margin-top: 0.25rem;
}
.list-box3 .find .right button {
  background: none;
  border: none;
  color: #fff;
}
.list-box3 .option {
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
  border-bottom: 1px solid #98c63c;
}
.list-box3 .option .list {
  width: 33%;
  float: left;
  text-align: center;
}
.list-box3 .option .list a {
  display: block;
  width: 100%;
  text-align: center;
}
.list-box3 .option .list a img {
  width: 45%;
  height: 45%;
  display: block;
  margin: 0 auto;
  margin-bottom: 0.4rem;
}
.list-box3 .option .list a span {
  font-size: 1.25rem;
  color: #000;
}
.list-box3 .container {
  width: 96%;
  margin: 0 auto;
  margin-top: 4%;
  margin-bottom: 1rem;
}
.result {
  font-size: 1.4rem;
  color: #666;
  text-align: center;
  height: 3rem;
  line-height: 3rem;
}
.list-cont {
  overflow: hidden;
  margin: 5% 0;
}
.list-cont .img-box {
  width: 37%;
  border-right: 1px solid #eee;
  float: left;
}
.list-cont .img-box img {
  width: 100%;
  height: auto;
}
.list-cont .right {
  width: 63%;
  float: left;
  padding-left: 4%;
}
.list-cont .right .title {
  font-size: 1.33rem;
  width: 63%;
  height: 2.5rem;
  line-height: 2.5rem;
  background-color: #9e9d9d;
  text-align: center;
  color: #fff;
  margin-bottom: 0.5rem;
}
.list-cont .right .infor {
  font-size: 1.25rem;
  color: #000;
  padding: 0.3rem 0;
}
.book {
  position: relative;
  margin-bottom: 0.5rem;
}
.book:before {
  position: absolute;
  left: 0;
  top: 19px;
  content: '';
  width: 39%;
  height: 1px;
  background: #eee;
}
.book:after {
  position: absolute;
  right: 0;
  top: 19px;
  content: '';
  width: 39%;
  height: 1px;
  background: #eee;
}
.list-8 {
  overflow: hidden;
}
.list-8 .list-item {
  padding: 4% 0 2% 0;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}
.list-8 .list-item .team-fl {
  width: 70%;
  float: left;
}
.list-8 .list-item .team-fl .fl-img {
  width: 50px;
  height: 50px;
  float: left;
  margin-right: 5%;
}
.list-8 .list-item .team-fl .fl-img img {
  width: 100%;
  height: auto;
  border: 1px solid #eee;
  border-radius: 50%;
}
.list-8 .list-item .team-fl .fl-level {
  float: left;
  width: 58%;
  overflow: hidden;
}
.list-8 .list-item .team-fl .fl-level h2 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #000;
}
.list-8 .list-item .team-fl .fl-level span {
  font-size: 1.17rem;
  color: #666;
}
.list-8 .list-item .team-fl .fl-level b {
  font-size: 1.17rem;
  color: #98c63c;
  font-weight: normal;
}
.list-8 .list-item .team-fr {
  width: 30%;
  float: right;
  text-align: right;
  color: #666;
}
.list-8 .list-item .team-fr .time {
  font-size: 1.17rem;
}
.list-8 .list-item .team-fr b {
  font-weight: normal;
  display: block;
  margin-top: 0.9rem;
  font-size: 1rem !important;
}
.banner {
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
  background-size: 100%;
}
.banner .img-box {
  width: 27%;
  margin: 0 auto;
  padding: 5rem 0;
}
.banner .img-box img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.banner .img-box2 {
  width: 27%;
  margin: 0 auto;
  padding-top: 2rem;
}
.banner .img-box2 img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.banner .audit {
  width: 20%;
  padding: 2% 0;
  background: rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 1.17rem;
  color: #fff;
  position: absolute;
  top: 2rem;
  right: 1rem;
}
.banner .banner-title {
  font-size: 1.25rem;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
.banner .banner-title h3 {
  font-size: 1.33rem;
  font-weight: bold;
  margin-top: 0.7rem;
  height: 2rem;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #fff;
}
.pr-top {
  margin-top: 3rem;
}
.form {
  width: 100%;
}
.form .data {
  border-bottom: 1px solid #eee;
  overflow: hidden;
  height: 4rem;
  line-height: 4rem;
  padding: 0 4%;
  font-size: 1.33rem;
  color: #666;
}
.form .data .gender {
  border: 0;
  font-size: 1.33rem;
  color: #666;
}
.form .data span {
  display: inline-block;
  width: 24%;
}
.form .data input {
  border: 0;
  font-size: 1.33rem;
  width: 73%;
}
.form .login {
  width: 88%;
  margin: 0 auto;
  border-radius: 5px;
  border: 1px solid #eee;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.form .login span {
  border-right: 1px solid #eee;
}
.form .login input {
  padding-left: 1rem;
}
.first-title {
  font-size: 1.83rem;
  font-weight: bold;
}
.first-top {
  width: 90%;
  margin: 0 auto;
  margin-top: 2rem;
  overflow: hidden;
}
.first-top .left {
  width: 50%;
  float: left;
}
.first-top .left .font {
  float: left;
}
.first-top .left .font .iconfont {
  font-size: 3.5rem;
  color: #98c63c;
}
.first-top .left .text {
  float: left;
  margin-left: 9%;
  margin-top: 1.3rem;
  font-size: 1.17rem;
}
.first-top .left .text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
.first-top .right {
  float: right;
}
.first-nav {
  width: 100%;
}
.first-nav ul {
  width: 100%;
}
.first-nav ul li {
  border-bottom: 1px solid #eee;
  height: 60px;
  line-height: 60px;
}
.first-nav ul li a {
  font-size: 1.33rem;
  color: #000;
  padding-left: 5%;
  display: inline-block;
  width: 100%;
}
.first-nav ul li .link {
  width: 100%;
  display: block;
}
.first-nav ul li i {
  color: #666;
  font-size: 1rem;
  float: right;
  padding-right: 3%;
}
.first-nav ul li .nav-img {
  float: left;
  margin-top: 10px;
  margin-right: 20px;
  width: 40px;
  height: 40px;
}
/*分页*/
.pagination {
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 6rem;
}
.pagination li {
  display: inline-block;
  min-width: 44px;
  height: 38px;
  border: 1px solid #eee;
  background: #eee;
  color: #333;
  border-radius: 3px;
}
.pagination li a {
  display: block;
  width: 100%;
  height: 38px;
  color: #333;
}
.pagination li a:hover {
  background: #98c63c;
  color: #fff;
  border-radius: 3px;
}
.pagination li.active {
  border: 1px solid #98c63c;
  background: #98c63c;
  color: #fff;
  border-radius: 3px;
}
.pagination li.disabled {
  background: #eee;
}
.search {
  width: 100%;
  font-size: 1.5rem;
  color: #fff;
  background-color: #98c63c;
  height: 3.5rem;
  line-height: 3.5rem;
  padding: 0 1rem;
}
.search02 {
  background-color: red;
}
.content-line {
  width: 98%;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.content-line .line-cont {
  width: 100%;
  margin-top: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #000;
  margin-bottom: 1.2rem;
}
.content-line .line-cont .station {
  font-size: 14px;
  color: #666;
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #eee;
}
.content-line .line-cont .station span {
  display: inline-block;
}
.footer {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  padding: 0.4rem 0;
  position: fixed;
  left: 0;
  bottom: 0;
  margin-top: 2rem;
}
.footer ul {
  overflow: hidden;
}
.footer ul li {
  float: left;
  width: 25%;
}
.footer ul li a {
  display: block;
  text-align: center;
  color: #666;
}
.footer ul li a:hover,
.footer ul li a.active {
  color: #98c63c;
}
.footer ul li a i {
  font-size: 29px;
}
.footer ul li a span {
  font-size: 1.17rem;
  display: block;
}
.banner03 {
  background-color: #98c63c;
  height: 4rem;
  line-height: 4rem;
}
.banner03 i {
  font-size: 1.5rem;
}
.banner03 .title {
  font-size: 1.4rem;
  color: #fff;
  padding-left: 1.5rem;
}
.publish {
  overflow: hidden;
  margin-bottom: 0.7rem;
}
.publish .left {
  float: left;
}
.publish .left i {
  font-size: 1.4rem;
  color: #666;
  margin-top: 1.3rem;
  margin-top: 0.45rem;
  display: inline-block;
}
.publish .right {
  font-size: 1.25rem;
  color: #98c63c;
}
.pub-text textarea {
  width: 100%;
  padding: 2%;
  margin-bottom: 1rem;
}
.pub-text .text-img {
  width: 100%;
  overflow: hidden;
}
.pub-text .text-img .img5 {
  width: 20%;
  float: left;
  border: 1px solid #a9a9a9;
  margin-right: 4px;
}
.pub-text .text-img .img5 img {
  width: 100%;
  height: auto;
}
.pub-text span {
  font-size: 1rem;
  color: #666;
  display: block;
  margin: 1% 0;
}
.release {
  width: 100%;
  background-color: #f2f2f2;
  height: 9rem;
  margin: 0 auto;
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 2rem;
}
.release button {
  width: 40%;
  height: 3.6rem;
  line-height: 3.6rem;
  color: #fff;
  font-size: 1.25rem;
  background-color: #98c63c;
  border-radius: 28px;
  border: 1px solid #98c63c;
  margin-bottom: 0.5rem;
}
.container {
  overflow: hidden;
}
.container .collec {
  overflow: hidden;
  padding: 0.5rem 0;
}
.container .collec h2 {
  font-size: 1.25rem;
  font-weight: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #000;
  float: left;
  width: 80%;
}
.container .collec span {
  font-size: 1.17rem;
  color: #666;
  float: right;
  display: block;
  width: 15%;
}
@media screen and (min-width: 800px) {
  html,
  body,
  .header,
  .banner {
    max-width: 640px;
    min-width: 320px;
    overflow-x: hidden;
    margin: 0 auto;
    width: 100%;
  }
  .footer01 {
    left: 50%;
    margin-left: -320px;
  }
}
/*王士超-指引分享 */
.mask-bg {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.mask-bg img {
  width: 100%;
  height: 100%;
}
/*简介分页*/
.pager {
  position: relative;
  width: 96%;
  margin: 10px 2%;
  overflow: hidden;
}
.pager li {
  float: left;
  width: 40%;
  border-radius: 20px;
  overflow: hidden;
  height: 3.6rem;
  line-height: 3.6rem;
  text-align: center;
}
.pager li a {
  display: block;
  background: #98c63c;
  color: #fff;
  font-size: 14px;
  line-height: 3.6rem;
}
.pager li:last-child {
  float: right;
}
.pager li.disabled {
  background: #eee;
}
/*# sourceMappingURL=css.css.map */