@charset "UTF-8";
html, body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  font-size: 16px; }

html {
  min-height: 100%;
  position: relative; }

body {
  font-size: 12px;
  font-family: "Verdana","Microsoft YaHei","SimSun","Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;
  color: #000; }

* {
  box-sizing: border-box; }

h1, h2, h3, h4 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
  margin: 0;
  padding: 0; }

ol, ul {
  padding: 0;
  margin: 0; }

ul {
  list-style-type: none;
  list-style-image: none; }

li {
  list-style: none; }

img {
  vertical-align: middle;
  border: 0; }

a {
  text-decoration: none;
  color: #333; }

a:link, a:visited, a:hover, a:active {
  text-decoration: none; }

p {
  padding: 0;
  margin: 0; }

input, button {
  outline: none;
  font-family: "Microsoft YaHei","SimSun"; }

.clearfix:after {
  content: '';
  display: table;
  clear: both;
  visibility: hidden; }

.my-container {
  width: 1280px;
  margin: 0 auto;
  padding: 0; }

.pc_show {
  display: block; }

.m_show {
  display: none; }

/* 页面加载loading效果 勿乱删 */
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body:before {
  content: '';
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: #fafafa;
  z-index: 9999;
  visibility: visible;
  opacity: 1;
  transition: all .3s linear;
}

body:after {
  content: '';
  position: fixed;
  left: 50%;
  top: 50%;
  margin-top: -23px;
  margin-left: -22px;
  width: 45px;
  height: 45px;
  padding: 0px;
  border-radius: 100%;
  border: 5px solid;
  border-top-color: rgba(20, 212, 94, 1);
  border-bottom-color: rgba(0, 0, 0, 0.1);
  border-left-color: rgba(20, 212, 94, 1);
  border-right-color: rgba(0, 0, 0, 0.1);
  -webkit-animation: loaderAnimate 1s ease-in-out infinite;
  animation: loaderAnimate 1s ease-in-out infinite;
  z-index: 10000;
  visibility: visible;
  opacity: 1;
  transition: all .3s linear;
}

body.loaded {
  overflow-y: auto;
  overflow-x: hidden;
}

body.loaded:before {
  opacity: 0;
  visibility: hidden;
}

body.loaded:after {
  opacity: 0;
  visibility: hidden;
}

@keyframes loaderAnimate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes loaderAnimate {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}


/* 按钮波动特效 */
.ripple {
  position: relative;
  overflow: hidden; }

.ripple:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  /* //设置径向渐变 */
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-transform: scale(12);
  -ms-transform: scale(12);
  transform: scale(12);
  opacity: 0;
  -webkit-transition: -webkit-transform .2s, opacity .5s;
  transition: transform .2s, opacity .5s;
  background-image: -webkit-radial-gradient(circle, currentColor 10%, transparent 10.01%);
  background-image: radial-gradient(circle, currentColor 10%, transparent 10.01%); }

.ripple:active:after {
  -webkit-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  opacity: .3;
  -webkit-transition: 0s;
  transition: 0s; }

@media only screen and (max-width: 768px) {
  body {
    overflow-x: hidden; }

  .my-container {
    width: 100%;
    padding: 0 .4rem; }

  .pc_show {
    display: none; }

  .m_show {
    display: block; } }
.header-wrap {
  height: 80px;
  position: relative; }

#header {
	background: rgba(255,255,255,.9);
  width: 100%;
  height: 80px;
  position: fixed;
  z-index: 100;
  box-shadow: 0 5px 2px -3px rgba(0, 0, 0, 0.1); }

#header .my-container {
  width: 100%;
  height: 100%;
  padding: 0 12px; }

#header .logo {
  height: 36px;
  display: inline-block;
  margin-top: 22px;
  float: left; }

#header .logo img {
  height: 100%; }

#header #nav {
  margin-left: 120px;
  float: left; }

#header #nav ul {
  display: table;
  width: 100%; }

#header #nav ul li {
  float: left; }

#header #nav ul li a {
  display: inline-block;
  height: 100%;
  font-size: 16px;
  line-height: 36px;
  padding: 22px 25px;
  color: #666; }

#header .right-handle {
  float: right;
  padding: 20px 10px 20px 20px;
  position: relative; }

#header .right-handle .h_login {
  display: inline-block;
  margin-right: 40px; }

#header .right-handle .h_login a {
  font-size: 16px;
  line-height: 40px;
  color: #333; }

#header .right-handle .head-img {
  background: url("../images/user.png") no-repeat center bottom;
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  right: 0px;
  top: 20px; }

.flex-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }
  .flex-column .bd {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    overflow-y: auto; }

@media only screen and (max-width: 768px) {
  .header-wrap {
    height: auto; }

  .logo-m {
    display: block; }

  #header {
    opacity: 0.9; }

  #nav {
    display: none; }

  .right-handle {
    display: none; }

  .m_header_nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    z-index: 999;
    opacity: 0.98; }

  .m_header_nav .my-container {
    padding: 0 .5rem;
   }

  .m_header_nav .logo-in {
    width: 2.8rem;
    margin-left: .1rem; }

  .m_header_nav .logo-in img {
    width: 100%; }

  .m_header_nav ul li a {
    font-size: .32rem;
    line-height: .4rem;
    padding: .25rem 0;
    color: #373e48;
    border-bottom: 1px solid #ddd;
    padding-left: 0px;
    margin-left: 20px;
    display: inline-block;
    width: 2.8rem;
    margin-left: .4rem; }

  .m_header_nav .login-handle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: .3rem;
    margin-bottom: .3rem; }

  .m_header_nav .login-handle a {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border: 1px solid #ddd;
    border-radius: 25px;
    height: 50px;
    line-height: 45px;
    font-size: 20px;
    background-color: #fff;
    color: #373e48;
    cursor: pointer;
    text-align: center; }

  .m_header_nav .login-handle a:nth-child(2) {
    margin-left: .5rem; }

  .m_header_nav .login-handle .denglu {
    background: #14d45e;
    color: #fff;
		border: none;
    background: -webkit-linear-gradient(left top, #14d45e, #14d497);
    background: -webkit-linear-gradient(top left, #14d45e, #14d497);
    background: linear-gradient(to bottom right, #14d45e, #14d497); }

  .m_header_nav .logo-in .close {
    font-size: 46px;
    position: absolute;
    right: 20px;
    top: 10px; }

  .menu-icon {
    margin-top: 25px;
    width: 30px;
    height: 25px;
    border-top: 5px solid #607d8b;
    border-bottom: 5px solid #607d8b;
    background-color: #607d8b;
    padding: 5px 0;
    background-clip: content-box; } }
/* ·········头部结束············· */
.swiper-container .swiper-wrapper {
  height: auto; }

.swiper-container .swiper-wrapper .swiper-slide {
  height: auto; }

.swiper-container .swiper-slide img {
  width: 100%;
  height: 100%; }

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  display: none; }

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  display: none; }

#banner {
  height: 620px; }

#banner .swiper-slide .info {
  position: absolute;
  top: 0;
  width: 60%;
  margin-left: 20%;
  padding-top: 12%;
  padding-bottom: 30px;
  color: #333;
  font-size: 64px;
  text-align: center; }

#banner .swiper-slide .info h1 {
  font-size: 66px;
  font-weight: bold; }

#banner .swiper-slide .info p {
  margin-top: 20px; }

@media only screen and (max-width: 768px) {
  #banner {
    height: 100%; }

  #banner .swiper-slide .info {
    position: absolute;
    top: 35%;
    width: 60%;
    margin-left: 20%;
    padding-top: 12%;
    padding-bottom: 30px;
    color: #333;
    font-size: 64px;
    text-align: center; }

  #banner .swiper-slide .info h1 {
    font-size: 0.55em;
    font-weight: bold;
    color: #373e48; }

  #banner .swiper-slide .info p {
    font-size: 0.53em;
    margin-top: 20px;
    color: #373e48; } }
/* ·········slide结束············· */
.article-gyybb .section-gongneng {
  padding: 110px 0;
  text-align: center; }

.article-gyybb .section-gongneng h2 {
  font-size: 40px;
  line-height: 68px; }

.article-gyybb .section-gongneng h4 {
  font-size: 18px;
  line-height: 36px;
  color: #05ac45; }

.article-gyybb .section-gongneng p {
  font-size: 14px;
  line-height: 24px;
  color: #666; }

.article-gyybb .section-gongneng .my-container > p {
  margin: 0 240px;
  text-align: left;
  text-indent: 2em;
  margin-top: 50px; }

.article-gyybb .con-text { padding-top:15px; padding-bottom: 40px; text-align: left; text-indent: 2em;}
.article-gyybb .con-text span { color: #05ac45;}
.article-gyybb .text-slogan { text-align: center; font-size: 20px; padding-top: 10px; padding-bottom: 10px;}

.article-gyybb .section-gongneng ul .info {
  float: left;
  width: 25%;
  text-align: left; }

.article-gyybb .section-gongneng ul .info .img {
  margin-left: 60px; }

.article-gyybb .section-gongneng ul .info .img img {
  width: 116px;
  height: 116px; }

.article-gyybb .section-gongneng ul .info .words {
  padding: 20px 40px 0; }

.article-gyybb .section-gongneng ul .info .words h3 {
  font-size: 26px;
  line-height: 48px; }

@media only screen and (max-width: 768px) {
  .article-gyybb .section-gongneng {
    padding: 30px 0;
    text-align: left; }

  .article-gyybb .section-gongneng h2 {
    font-size: 2.5em;
    line-height: 58px; }

  .article-gyybb .section-gongneng h4 {
    font-size: 1.5em;
    line-height: normal;
    color: #14d45e; }

  .article-gyybb .section-gongneng p {
    font-size: 14px;
    line-height: 24px;
    color: #666; }

  .article-gyybb .section-gongneng .my-container > p {
    margin: 0px;
    text-align: left;
    text-indent: 2em;
    margin-top: 20px; }

  .article-gyybb .section-gongneng ul {
    margin-top: 50px; }

  .article-gyybb .section-gongneng ul .info {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 50px; }

  .article-gyybb .section-gongneng ul .info .words {
    padding-top: 20px;
    padding-left: 28%;
    padding-right: 20%; }

  .article-gyybb .section-gongneng ul .info .words h3 {
    text-align: left; }

  .article-gyybb .section-gongneng ul .info .words p {
    text-align: left; }

  .article-gyybb .section-gongneng ul .info .img {
    margin-left: 0px; } }
/* ·········.article-gyybb结束············· */
.article-gyybb .section-xuqiu {
  background: #343f4b;
  background: -webkit-linear-gradient(#343f4b 0%, #343f4b 380px, #fff 380px, #fff 100%);
  background: linear-gradient(#343f4b 0%, #343f4b 380px, #fff 380px, #fff 100%);
  padding-top: 90px;
  padding-bottom: 120px; }

.article-gyybb .section-xuqiu h2 {
  font-size: 40px;
  line-height: 90px;
  color: #fff;
  position: relative; }

.article-gyybb .section-xuqiu h2:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 4px;
  width: 76px;
  background-color: #84cc9f; }

.article-gyybb .section-xuqiu ul {
  margin-top: 55px; }

.article-gyybb .section-xuqiu ul li {
  float: left;
  width: 286px;
  border: 3px solid #f2f2f2;
  position: relative;
  height: 440px; }

.article-gyybb .section-xuqiu ul li:nth-child(4n+1) {
  margin-left: 15px; }

.article-gyybb .section-xuqiu ul li:not(:nth-child(4n+1)) {
  margin-left: 40px; }

.article-gyybb .section-xuqiu ul li .info {
  background-color: #f2f2f2;
  position: absolute;
  z-index: 1;
  left: -15px;
  top: -15px;
  width: 100%;
  height: 100%;
  padding: 30px 20px; }

.article-gyybb .section-xuqiu ul li .info h3 {
  font-size: 32px;
  line-height: 60px; }

.article-gyybb .section-xuqiu ul li .info p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 26px;
  height: 110px; }

.article-gyybb .section-xuqiu ul li .info .img {
  margin: 0 auto; }

.article-gyybb .section-xuqiu ul li .info .img img {
  width: 226px;
  display: block;
  margin: auto; }

@media only screen and (max-width: 768px) {
  .article-gyybb .section-xuqiu {
    background: #14d45e;
    background: -webkit-linear-gradient(#14d45e 0%, #14d497 140px, #fff 140px, #fff 100%);
    background: linear-gradient(#14d45e 0%, #14d497 140px, #fff 140px, #fff 100%);
    padding-top: 20px;
    padding-bottom: 30px; }

  .article-gyybb .section-xuqiu h2 {
    font-size: 2.5em;
    line-height: 80px;
    color: #fff;
    position: relative; }

  .article-gyybb .section-xuqiu h2:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 4px;
    width: 56px;
    background-color: #fff; }

  .article-gyybb .section-xuqiu ul {
    margin-top: 95px; }

  .article-gyybb .section-xuqiu ul li {
    width: 96%;
    margin-bottom: 50px;
    height: 280px; }

  .article-gyybb .section-xuqiu ul li:nth-child(4n+1) {
    margin-left: 15px; }

  .article-gyybb .section-xuqiu ul li:not(:nth-child(4n+1)) {
    margin-left: 15px; }

  .article-gyybb .section-xuqiu ul li .info {
    background-color: #f2f2f2;
    position: absolute;
    z-index: 1;
    left: -15px;
    top: -15px;
    width: 100%;
    height: 100%;
    padding: 20px; }

  .article-gyybb .section-xuqiu ul li .info h3 {
    font-size: 2.5em;
    line-height: 50px;
    color: #373e48; }

  .article-gyybb .section-xuqiu ul li .info p {
    width: 70%;
    color: #919191; }

  .article-gyybb .section-xuqiu ul li .info .img {
    position: absolute;
    right: 0px;
    bottom: -20px; }

  .article-gyybb .section-xuqiu ul li .info .img img {
    width: 180px; } }
/* ·········section-xuqiu 结束············· */
.article-xiazai {
  height: 820px;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e7e7e7), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, #e7e7e7 0%, #ffffff 100%);
  background: linear-gradient(to bottom, #e7e7e7 0%, #ffffff 100%); }

.article-xiazai:after {
  background: url("../images/bg-bottom.png") no-repeat center bottom;
  content: '';
  display: block;
  height: 180px;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-size: contain; }

.article-xiazai .my-container .left, .article-xiazai .my-container .right {
  float: left;
  width: 50%;
  height: 100%;
  position: relative; }

.article-xiazai .my-container .article_downlode .img {
  width: 46%;
  margin: 0 auto;
  height: 540px; }

.article-xiazai .my-container .article_downlode .img img {
  width: 100%; }

.article-xiazai .my-container .article_downlode .left .img {
  margin-top: 125px; }

.article-xiazai .my-container .article_downlode .right .img {
  margin-top: 170px;
  margin-left: 120px; }

.article-xiazai .my-container .article_downlode .right .img h2 {
  text-align: center;
  font-size: 40px;
  color: #333;
  margin-bottom: 15px; }

.article-xiazai .my-container .article_downlode .right .img img {
  margin-right: 20px; }

@media only screen and (max-width: 768px) {
  .m_downlode h2 {
    font-size: 2em;
    text-align: center;
    color: #373e48;
    line-height: 40px;
    margin: 30px 0px;
    position: relative; }

  .m_downlode h2:after {
    content: '';
    position: absolute;
    left: 40;
    top: 25px;
    height: 2px;
    width: 60px;
    background-color: #d7d7d7; }

  .m_downlode h2:before {
    content: '';
    position: absolute;
    right: 40;
    top: 25px;
    height: 2px;
    width: 60px;
    background-color: #d7d7d7; }

  .m_downlode .img {
    width: 100%;
    padding: 0 20px;
    overflow: hidden; }

  .m_downlode .img img {
    width: 100%; } }
/* ·········section-xiazai 结束············· */
.article-fffa {
  padding-top: 65px;
  padding-bottom: 145px;
  text-align: center; }

.article-fffa h2 {
  font-size: 36px;
  line-height: 80px; }

.article-fffa .tab-box .tab-ban {
  position: relative; }

.article-fffa .tab-box .tab-ban:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 11px;
  width: 1px;
  height: 14px;
  background-color: #888; }

.article-fffa .tab-box .tab-ban .item {
  display: inline-block;
  padding: 0 1em;
  margin: 0 10px;
  font-size: 14px;
  line-height: 36px;
  color: #666;
  cursor: pointer; }

.article-fffa .tab-box .tab-ban .item.active {
  color: #14d45e;
  position: relative; }

.article-fffa .tab-box .tab-ban .item.active:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #14d45e;
  z-index: 1; }

.article-fffa .tab-box .tab-conts {
  margin-top: 65px;
  position: relative;
  width: 100%; }

.article-fffa .tab-box .tab-conts .item {
  display: none; }

.article-fffa .tab-box .tab-conts .item.active {
  display: block;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all .3s linear;
  transition: all .3s linear; }

.article-fffa .tab-box .tab-conts .item.active.animate {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); }

.article-fffa .package-list .li {
  display: inline-block;
  width: 380px;
  height: 420px;
  padding-top: 30px;
  position: relative;
  z-index: 0;
  border-radius: 8px;
  border: 1px solid #d0d8e3;
  background: #e5eaf0;
  box-shadow: 1px 1px 10px transparent;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all .3s linear;
  transition: all .3s linear; }

.article-fffa .package-list .li h3 {
  font-size: 28px;
  line-height: 50px;
  color: #666; }

.article-fffa .package-list .li .price {
  margin-top: 30px;
  font-size: 17px;
  line-height: 32px;
  height: 38px;
  color: #8b8b8b; }

.article-fffa .package-list .li .price span {
  color: #ff7800;
  display: inline-block;
  vertical-align: sub;
  font-size: 20px; }

.article-fffa .package-list .li .price span strong {
  font-size: 36px;
  line-height: 38px;
  margin-left: 5px;
  margin-right: 5px; }

.article-fffa .package-list .li .detail {
  margin-top: 40px; }

.article-fffa .package-list .li .detail p {
  font-size: 14px;
  line-height: 26px;
  color: #666; }

.article-fffa .package-list .li button {
  margin: 55px auto 0;
  width: 160px;
  font-size: 18px;
  line-height: 46px;
  border-radius: 23px;
  background-color: #fff;
  border: 0;
  -webkit-appearance: none;
  outline: none; }

.article-fffa .package-list .li:hover, .article-fffa .package-list .li:active ,.article-fffa .package-list .li.active{
  background-color: #fff;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 1; }

.article-fffa .package-list .li.recommend:before{
  content: '';
  position: absolute;
  z-index: 1;
  right: -3px;
  top: -3px;
  width: 70px;
  height: 70px;
  background: url(../images/tag_1.png) top right no-repeat;
  background-size: 100% 100%; }

.article-fffa .package-list .li:hover h3, .article-fffa .package-list .li:active h3 {
  color: #333; }

.article-fffa .package-list .li:hover button, .article-fffa .package-list .li:active button {
  background-color: #343f4b;
  color: #fff; }

@media only screen and (max-width: 768px) {
  .article-fffa {
    padding-top: 20px; }

  .article-fffa .my-container {
    padding: 20px 0 0; }

  .article-fffa h2 {
    font-size: 2.5em; }

  #m-article-fffa .swiper-slide {
    width: 72%;
    height: 420px;
    padding-top: 30px;
    position: relative;
    z-index: 0;
    border-radius: 8px;
    border: 1px solid #d0d8e3;
    background: #e5eaf0;
    box-shadow: 1px 1px 10px transparent;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .3s linear;
    transition: all .3s linear; }

  #m-article-fffa .swiper-slide h3 {
    font-size: 28px;
    line-height: 50px;
    color: #666; }

  #m-article-fffa .swiper-slide .price {
    margin-top: 30px;
    font-size: 17px;
    line-height: 32px;
    height: 38px;
    color: #8b8b8b; }

  #m-article-fffa .swiper-slide .price span {
    color: #ff7800;
    display: inline-block;
    vertical-align: sub;
    font-size: 20px; }

  #m-article-fffa .swiper-slide .price span strong {
    font-size: 36px;
    line-height: 38px;
    margin-left: 5px;
    margin-right: 5px; }

  #m-article-fffa .swiper-slide .detail {
    margin-top: 40px; }

  #m-article-fffa .swiper-slide .detail p {
    font-size: 14px;
    line-height: 26px;
    color: #666; }

  #m-article-fffa .swiper-slide button {
    margin: 55px auto 0;
    width: 160px;
    font-size: 18px;
    line-height: 46px;
    border-radius: 23px;
    background-color: #fff;
    border: 0;
    -webkit-appearance: none;
    outline: none; }

  #m-article-fffa .swiper-slide:hover, #m-article-fffa .swiper-slide:active {
    background-color: #fff;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    z-index: 1; }

  #m-article-fffa .swiper-slide:hover:before, #m-article-fffa .swiper-slide:active:before {
    content: '';
    position: absolute;
    z-index: 1;
    right: -3px;
    top: -3px;
    width: 70px;
    height: 70px;
    background: url(../images/tag_1.png) top right no-repeat;
    background-size: 100% 100%; }

  #m-article-fffa .swiper-slide:hover h3, #m-article-fffa .swiper-slide:active h3 {
    color: #333; }

  #m-article-fffa .swiper-slide:hover button, #m-article-fffa .swiper-slide:active button {
    background: #14d45e;
    color: #fff;
    background: -webkit-linear-gradient(left top, #14d45e, #079909);
    /* Safari 5.1 - 6.0 */
    /* Opera 11.1 - 12.0 */
    /* Firefox 3.6 - 15 */
    background: -webkit-linear-gradient(top left, #14d45e, #079909);
    background: linear-gradient(to bottom right, #14d45e, #079909)
    /* 标准的语法 */ }

  #m-article-fffa .swiper-container {
    padding: 25px 0; }

  #m-article-fffa .swiper-wrapper {
    height: auto; }

  #m-article-fffa .swiper-slide.swiper-slide-active:before {
    content: '';
    position: absolute;
    z-index: 1;
    right: -3px;
    top: -3px;
    width: 70px;
    height: 70px;
    background: url(../images/tag_1.png) top right no-repeat;
    background-size: 100% 100%; }

  #m-article-fffa .swiper-slide.swiper-slide-active {
    background-color: #fff;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    z-index: 1; }

  #m-article-fffa .swiper-slide.swiper-slide-active h3 {
    color: #333; }

  #m-article-fffa .swiper-slide.swiper-slide-active button {
    background: #14d45e;
    color: #fff;
    background: -webkit-linear-gradient(left top, #14d45e, #079909);
    /* Safari 5.1 - 6.0 */
    /* Opera 11.1 - 12.0 */
    /* Firefox 3.6 - 15 */
    background: -webkit-linear-gradient(top left, #14d45e, #079909);
    background: linear-gradient(to bottom right, #14d45e, #079909)
    /* 标准的语法 */ } }
/* ·········article-fffa 结束············· */
.article-anli {
  padding: 30px 0;
  background-color: #f2f2f2;
  border-bottom: 15px solid #14d45e; }

.article-anli h2 {
  font-size: 36px;
  line-height: 60px;
  text-align: center; }

.article-anli #case {
  width: 850px;
  padding-bottom: 80px; }

.article-anli #case .text-wrap {
  position: relative;
  padding: 20px; }

.article-anli #case .text-wrap:before {
  content: "“";
  position: absolute;
  left: 5px;
  top: 5px;
  color: #666;
  font-size: 50px;
  line-height: 1;
  font-family: "Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif; }

.article-anli #case .text-wrap:after {
  content: "”";
  position: absolute;
  right: 5px;
  bottom: 0px;
  color: #666;
  font-size: 50px;
  line-height: 0;
  font-family: "Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif; }

.article-anli #case .text-wrap p {
  font-size: 16px;
  line-height: 24px;
  color: #666;
  text-indent: 2em; }

.swiper-pagination-bullet {
  background: #1a2b6d;
  opacity: 1; }

.swiper-pagination-bullet-active {
  background: #f2f2f2;
  border: 2px solid #1a2b6d;
  width: 9px;
  height: 9px; }

.case_rape {
  position: relative; }

.case_rape .case-button-next, .case_rape .case-button-prev {
  background-image: url("../images/listbtn.png");
  position: absolute;
  top: 50%;
  width: 83px;
  height: 24px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-repeat: no-repeat; }

.case-button-next {
  right: 0;
  background-position: -83px 0; }

.case-button-prev {
  left: 0; }

.title-section {
  line-height: 2.72rem;
  font-size: 1rem;
  color: #333;
  text-align: center; }

.title-section span {
  padding-left: .9rem;
  padding-right: .9rem; }

.title-section .line {
  width: 3.6rem;
  height: 1px;
  display: inline-block;
  vertical-align: middle;
  background-color: #d2d2d2; }

@media only screen and (max-width: 768px) {
  .article-anli {
    border-bottom: 0px solid #14d45e; }

  .article-anli #case {
    width: 100%;
    padding-bottom: 80px; }

  .article-anli h2 {
    font-size: 2em;
    text-align: center;
    color: #373e48;
    line-height: 40px;
    margin: 30px 0px;
    position: relative; }

  .article-anli h2:after {
    content: '';
    position: absolute;
    left: 70;
    top: 25px;
    height: 2px;
    width: 60px;
    background-color: #d7d7d7; }

  .article-anli h2:before {
    content: '';
    position: absolute;
    right: 70;
    top: 25px;
    height: 2px;
    width: 60px;
    background-color: #d7d7d7; }

  .case_rape .case-button-next, .case_rape .case-button-prev {
    display: none; } }
/********************************************article-anli结束********************************************/
/********************************************hash-page *******************************/
.hash-pages {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.hash-pages.active {
  position: fixed;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); }

.h-page {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  display: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  display: none; }

.h-page .h-page-cont {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow-y: auto;
  height: 100%;
  width: 100%; }

/********************************************hash-page end*******************************/
/*footer*/
.common-footer {
  background: #394047;
  width: 100%; }

.common-footer .my-container {
  padding: 40px 0px 50px; }

.common-footer .bot_links .copyright {
  margin-right: 25px;
  display: inline-block; }

.common-footer .bot_links a {
  color: #646e75;
  margin-right: 25px; }

.common-footer .bot_links a:hover {
  color: #eee; }

.common-footer .bot_links {
  color: #646e75;
  font-size: 14px; }

.common-footer .filenumber a {
  color: #646e75;
  font-size: 14px; }

@media only screen and (max-width: 768px) {
  .common-footer {
    background: #fff;
    width: 100%; }

  .common-footer .my-container {
    padding: 20px 0px 30px; }

  .common-footer .bot_links {
    color: #666;
    font-size: 1.2em;
    width: 100%; }

  .common-footer .bot_links .copyright {
    width: 100%;
    display: block;
    text-align: center; }

  .common-footer .bot_links a {
    display: none; }

  .common-footer .filenumber a {
    display: none; } }
/********************************************footer结束********************************************/
.go-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background: #fff url(../images/float.png) center center no-repeat;
  border: #dddddd solid 1px;
  cursor: pointer;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out; }

.go-top.active {
  visibility: visible;
  opacity: 1; }

/*登录弹框*/
.modal-dialog button.close {
  position: absolute;
  right: 20px;
  top: 20px; }


#myModa2 .modal-dialog {
    width: 360px;
    position: relative;
    top: 20%;
}

.form-box {
  padding: 0 35px 65px 35px;
  margin-top: 50px; }

.form-box .mode-title {
  font-size: 22px;
  color: #333;
  margin-bottom: 20px;
  text-align: center; }

.form-box .form-item.login .form-con {
  padding-left: 39px; }

.form-box .form-item .icon-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 43px;
  background-color: #fff;
  border: 1px #ddd solid;
  border-right: none;
  text-align: center;
  color: #666;
  font-size: 14px;
  line-height: 40px; }

.form-box .form-item .icon-box .icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-image: url(../images/front_icons.png);
  background-repeat: no-repeat;
  margin-top: 9px; }

.form-box .icon-user {
  background-position: 0 0; }

.form-box .icon-pwd {
  background-position: -20px 0; }

.form-box .form-control {
  height: 42px; }

.btn-primary {
  background-color: #14d45e;
  background-image: -webkit-linear-gradient(342deg, #14d45e 0%, #14d47c 69%);
  background-image: linear-gradient(108deg, #14d45e 0%, #14d47c 69%);
  border-color: transparent;
  box-shadow: 0 0 10px rgba(20, 212, 94, 0.4); }

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active:hover,
.btn-primary:active:focus {
  background-color: #21e06e;
  border-color: transparent;
  box-shadow: 0 0 13px rgba(20, 212, 94, 0.8); }

.btn-primary:active {
  color: #fff;
  background-color: #21e06e;
  border-color: transparent;
  box-shadow: 0 0 13px rgba(20, 212, 94, 0.8); }

/*表单*/
.form-box .input {
  margin-left: 0;
  margin-right: 0;
  border-radius: 0; }

.form-box .input:focus {
  border-color: #ddd; }

.form-box .tips {
  color: #f15353;
  font-size: 12px;
  height: 18px;
  line-height: 18px;
  visibility: hidden;
  opacity: 0;
  padding-left: 25px;
  position: relative;
  margin-bottom: 5px; }

.form-box .tips:before {
  content: '';
  width: 18px;
  height: 18px;
  left: 0;
  top: 0;
  background: url(../images/front/front_icons.png) 1px -20px no-repeat;
  position: absolute; }

.form-box .tips.tips-show {
  visibility: visible;
  opacity: 1; }

.form-box .tips .icon-err {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: bottom;
  background: url(../images/front/front_icons.png) 0 -20px no-repeat;
  margin-right: 5px; }

.form-box .form-item {
  margin-bottom: 15px;
  position: relative; }

.form-box .form-item label.name {
  font-size: 14px;
  font-weight: normal;
  width: 80px;
  position: absolute;
  left: 0;
  line-height: 40px;
  text-align: right;
  color: #666;
  padding-right: 8px; }

.form-box .form-item label.name em {
  font-style: normal;
  padding-right: 2px;
  color: #f15353; }

.form-box .form-item .form-con {
  width: 100%;
  padding-left: 80px; }

.form-box .form-item .form-con .input {
  width: 100%;
  font-size: 14px;
  line-height: 18px;
  padding: 10px;
  color: #333;
  border: 1px #ddd solid; }

.form-box .btn-main {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px; }

/*手机验证码*/
.form-box .form-item.mun-code .input {
  width: 120px;
  float: left; }

.form-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 90px;
  height: 40px;
  background-color: #f6f6f6;
  color: #333;
  font-size: 14px;
  text-align: center;
  border: 1px #ddd solid;
  cursor: pointer; }

.form-btn:hover {
  background-color: #eee; }

.form-btn.disabled {
  background-color: #ddd; }

#codes {
  white-space: normal;
  font-size: 12px;
  line-height: 14px; }

.btn {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  overflow: hidden;
  line-height: 36px; }

.btn-main {
  color: #fff;
  background-color: #14d45e;
  border: 0;
  font-size: 20px;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  min-width: 200px; }

.btn-main:hover, .btn-main:focus, .btn-main.focus {
  background-color: #05ac45;
  color: #fff; }

.modal-backdrop {
  z-index: 1000; }

/*# sourceMappingURL=ybb.css.map */