@import "normalize.css";
html,
body {
  width: 100%;
}
#main {
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #main {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  #main {
    width: 750px;
  }
}
@media screen and (min-width: 992px) {
  #main {
    width: 970px;
  }
}
@media screen and (min-width: 1200px) {
  #main {
    width: 1170px;
  }
}
@media screen and (min-width: 1440px) {
  #main {
    width: 1280px;
  }
}
@media screen and (min-width: 1600px) {
  #main {
    width: 1440px;
  }
}
@media screen and (max-width: 768px) {
  .m-module-title {
    display: block;
    position: relative;
    height: 0;
    padding-bottom: 18.6%;
  }
  .m-module-title img {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .pc-module-title {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .m-module-title {
    display: none;
  }
  .pc-module-title {
    height: 103px;
    line-height: 103px;
    position: relative;
  }
  .pc-module-title h3 {
    text-align: center;
    color: #333;
    font-size: 30px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .pc-module-title h3 small {
    color: #a1a0a0;
    font-size: 12px;
  }
}
.clearfix:after {
  content: "";
  visibility: hidden;
  display: block;
  font-size: 0;
  clear: both;
  height: 0;
}
.clearfix {
  zoom: 1;
}
/* 参数为比例 = 高/宽 */
/* 参数为比例 = 高/宽 */
/* 省略号 */
/* 子元素-平均分栏 */
.flex1 {
  -webkit-box-flex: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;
  /* OLD - Firefox 19- */
  /* For old syntax, otherwise collapses. */
  -webkit-flex: 1;
  /* Chrome */
  -ms-flex: 1;
  /* IE 10 */
  flex: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 父元素-横向排列（主轴） */
.flex-h {
  display: box;
  /* OLD - Android 4.4- */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* 09版 */
  -webkit-box-orient: horizontal;
  /* 12版 */
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
/* 父元素-横向换行 */
.flex-hw {
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* 父元素-水平居中（主轴是横向才生效） */
/* 父元素-纵向排列（主轴） */
.flex-v {
  display: box;
  /* OLD - Android 4.4- */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* 09版 */
  -webkit-box-orient: vertical;
  /* 12版 */
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
/* 父元素-纵向换行 */
.flex-vw {
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* 父元素-竖直居中（主轴是横向才生效） */
/* 子元素-显示在从左向右（从上向下）第1个位置，用于改变源文档顺序显示 */
.flex-1 {
  -webkit-box-ordinal-group: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 1;
  /* OLD - Firefox 19- */
  -ms-flex-order: 1;
  /* TWEENER - IE 10 */
  -webkit-order: 1;
  /* NEW - Chrome */
  order: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 子元素-显示在从左向右（从上向下）第2个位置，用于改变源文档顺序显示 */
.flex-2 {
  -webkit-box-ordinal-group: 2;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 2;
  /* OLD - Firefox 19- */
  -ms-flex-order: 2;
  /* TWEENER - IE 10 */
  -webkit-order: 2;
  /* NEW - Chrome */
  order: 2;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 水平垂直居中（父元素已是非静态定位元素） */
.pos-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.fd-header {
  width: 100%;
  position: relative;
  z-index: 111;
}
.fd-header > .navbar {
  height: 100%;
  min-height: auto;
  background-color: #fff;
  border: 0;
  margin-bottom: 0;
}
.fd-header > .navbar .container-fluid > .navbar-header .navbar-brand {
  display: block;
  height: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.fd-header > .navbar .container-fluid > .collapse > .navbar-form {
  margin: 0;
}
.fd-header > .navbar .container-fluid > .collapse > .navbar-form .form-group input {
  border-radius: 0;
  border-right: 0;
}
@media screen and (max-width: 768px) {
  .fd-header {
    margin-bottom: 10px;
	box-shadow: 0 0 5px #ccc;
  }
}
@media screen and (max-width: 992px) {
  .fd-header > .navbar .container-fluid .navbar-header {
    height: 70px;
  }
  .fd-header > .navbar .container-fluid .navbar-header .navbar-brand {
    width: 80%;
    max-width: 307px;
    background: url('../images/m-picture/header-logo.jpg') no-repeat 1em center;
	background-size:88%;
  }
  .fd-header > .navbar .container-fluid .navbar-header button {
    margin-top: 17px;
  }
  .fd-header > .navbar .container-fluid .navbar-header button span {
    background-color: #41b1c5;
    width: 25px;
    height: 3px;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse {
    margin-top: 0;
    background-color: #333;
    position: absolute;
    z-index: 999;
    width: 100%;
    overflow-y: auto;
    height: 100vh;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse > ul.nav {
    float: none;
    margin-left: 0;
    margin-right: 0;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse > ul.nav > li {
    width: 33.3%;
    float: left;
    text-align: center;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse > ul.nav > li a {
    color: #fff;
    font-size: 17px;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse > ul.nav > li a i {
    display: none;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse > ul.nav > li ul.dropdown-menu {
    position: absolute;
    z-index: 15;
    background-color: #444;
    min-width: auto;
    width: 100%;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse > ul.nav > li ul.dropdown-menu li {
    text-align: center;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse > ul.nav > li ul.dropdown-menu li a {
    padding: 7px 0px;
    font-size: 16px;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse > ul.nav > li ul.dropdown-menu li a img {
    display: none;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse form.navbar-form {
    float: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    border: 0;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse form.navbar-form .form-group {
    width: 50%;
    height: 36px;
    float: left;
    margin-bottom: 0;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse form.navbar-form .form-group input {
    width: 100%;
    height: 100%;
    background-color: #222;
    border: 0;
    font-size: 15px;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse form.navbar-form button {
    width: 50%;
    float: left;
    background-color: inherit;
    border: 0;
    color: #fff;
    font-size: 17px;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse .collapse-area {
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse .collapse-area > a {
    display: block;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 17px;
    text-align: center;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse .collapse-area > a.appoint {
    background-color: red;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse .collapse-area > a.leave-msg {
    background-color: #008000;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse .collapse-area .panel-group {
    margin: 10px 0;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse .collapse-area .panel-group .panel {
    background-color: transparent;
    border: 0;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse .collapse-area .panel-group .panel .panel-heading {
    background-color: transparent;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse .collapse-area .panel-group .panel .panel-heading .panel-title a {
    display: block;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    color: #fff;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse .collapse-area .panel-group .panel .panel-heading .panel-title a i {
    font-size: 12px;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse .collapse-area .panel-group .panel .panel-heading .panel-title a .icon-minus {
    display: none;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse .collapse-area .panel-group .panel .panel-collapse > .list-group {
    border: 0;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse .collapse-area .panel-group .panel .panel-collapse > .list-group > .list-group-item {
    background-color: transparent;
    border: 0;
    text-indent: 1em;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse .collapse-area .panel-group .panel .panel-collapse > .list-group > .list-group-item a {
    font-size: 15px;
    color: #fff;
    display: block;
    clear: both;
  }
  .fd-header > .navbar .container-fluid .navbar-collapse .collapse-area .panel-group .panel .panel-collapse > .list-group > .list-group-item a i {
    float: right;
  }
}
@media screen and (min-width: 993px) {
  .fd-header .navbar > .container-fluid > .navbar-header {
    width: 40%;
    height: 142px;
  }
  .fd-header .navbar > .container-fluid > .navbar-header .navbar-brand {
    width: 100%;
    background: url('../images/pc-picture/header_logo.jpg') no-repeat;
    background-size: 82%;
    background-position: 2em center;
  }
  .fd-header .navbar > .container-fluid > .collapse {
    width: 60%;
    margin-top: 40px;
  }
  .fd-header .navbar > .container-fluid > .collapse > .navbar-form {
    width: 40%;
    height: 50px;
    float: left;
  }
  .fd-header .navbar > .container-fluid > .collapse > .navbar-form .form-group {
    width: 85%;
    height: 100%;
    float: left;
  }
  .fd-header .navbar > .container-fluid > .collapse > .navbar-form .form-group input {
    width: 100%;
    height: 100%;
  }
  .fd-header .navbar > .container-fluid > .collapse > .navbar-form button {
    width: 15%;
    height: 100%;
    float: left;
    text-align: center;
    border-radius: 0;
    border-left: 0;
    padding: 0;
  }
  .fd-header .navbar > .container-fluid > .collapse > ul.nav {
    margin-left: 20px;
  }
  .fd-header .navbar > .container-fluid > .collapse > ul.nav li.dropdown > a {
    font-size: 20px;
    color: #949191;
  }
  .fd-header .navbar > .container-fluid > .collapse > ul.nav li.dropdown:hover ul.dropdown-menu {
    display: block;
  }
  .fd-header .navbar > .container-fluid > .collapse > ul.nav li.dropdown ul.dropdown-menu {
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background-color: #eef7f8;
  }
  .fd-header .navbar > .container-fluid > .collapse > ul.nav li.dropdown ul.dropdown-menu li {
    border-bottom: 1px dashed #ccc;
    text-align: center;
  }
  .fd-header .navbar > .container-fluid > .collapse > ul.nav li.dropdown ul.dropdown-menu li a {
    font-size: 16px;
    padding-left: 0;
    padding-right: 0;
    padding: 7px;
    color: #949191;
  }
  .fd-header .navbar > .container-fluid > .collapse > ul.nav li.dropdown ul.dropdown-menu li a:hover {
    color: #41b1c5;
  }
  .fd-header .navbar > .container-fluid > .collapse > ul.nav li.dropdown ul.dropdown-menu.lauguage-list li a {
    font-size: 17px;
  }
  .fd-header .navbar > .container-fluid > .collapse > ul.nav li.dropdown ul.dropdown-menu.lauguage-list li a img {
    width: 31px;
    height: 21px;
    float: left;
  }
  .fd-header .navbar > .container-fluid > .collapse > ul.nav li.dropdown ul.dropdown-menu.lauguage-list li a span {
    float: right;
  }
}
@media screen and (min-width: 1600px) {
  .fd-header .navbar > .container-fluid > .collapse > .navbar-form {
    float: right;
  }
  .fd-header .navbar > .container-fluid > .navbar-header .navbar-brand {
    width: 100%;
    background: url('../images/pc-picture/header_logo.jpg') no-repeat;
    background-size: 78%;
    background-position: 2em center;
  }
}
.fd-nav {
  width: 100%;
}
.fd-nav > ul.nav > li {
  width: 12.5%;
  height: 60px;
  text-align: center;
  background-color: #41b1c5;
}
.fd-nav > ul.nav > li > a {
  line-height: 60px;
  font-size: 20px;
  height: 100%;
  border-radius: 0;
  padding: 0;
  color: #fff;
  border: 0;
  margin-right: 0;
}
@media screen and (max-width: 1200px) {
  .fd-nav > ul.nav > li > a {
    font-size: 16px;
  }
}
.fd-nav > ul.nav > li > a:hover,
.fd-nav > ul.nav > li > a:focus {
  background-color: #3697a8;
}
.fd-nav > ul.nav > li .dropdown-menu {
  width: 100%;
  background-color: #f5f5f5;
}
.fd-nav > ul.nav > li .dropdown-menu li {
  height: 50px;
}
.fd-nav > ul.nav > li .dropdown-menu li a {
  padding: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 50px;
  color: #3697a8;
  font-size: 18px;
}
.fd-nav > ul.nav > li .dropdown-menu li:hover {
  background-color: #41b1c5;
}
.fd-nav > ul.nav > li .dropdown-menu li:hover a {
  background-color: #41b1c5;
  color: #fff;
}
.fd-nav > ul.nav > li:nth-of-type(1) {
  background-color: #3697a8;
}
.fd-nav > ul.nav > li:hover .dropdown-menu {
  display: block;
}
.banner {
  width: 100%;
}
.banner .swiper-slide a {
  display: block;
  position: relative;
}
.banner .swiper-slide a img {
  width: 100%;
  height: 100%;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .banner .swiper-slide a {
    padding-bottom: 51%;
  }
}
@media screen and (min-width: 769px) {
  .banner .swiper-slide a {
    padding-bottom: 38.8%;
  }
}
.nav-couls ul {
  list-style: none;
  padding-left: 0;
}
.nav-couls ul li {
  padding: 0;
}
.nav-couls ul li a {
  display: block;
  text-decoration: none;
}
.nav-couls ul li a img {
  display: block;
}
@media screen and (min-width: 769px) {
  .nav-couls {
    margin: 30px 0;
  }
  .nav-couls ul {
    list-style: none;
    padding-left: 0;
  }
  .nav-couls ul li a {
    height: 100px;
    background-color: transparent;
    color: #41b1c5;
  }
  .nav-couls ul li a img {
    margin: 0 auto;
    width: 90px;
    height: 70px;
  }
  .nav-couls ul li a p {
    color: inherit;
    text-align: center;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .nav-couls {
    margin: 0;
  }
  .nav-couls ul li {
    background-color: #41b1c5;
  }
  .nav-couls ul li > a {
    height: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #5dbdce;
  }
  .nav-couls ul li > a img {
    width: 26px;
    height: 26px;
  }
  .nav-couls ul li > a p {
    color: inherit;
    font-size: 16px;
    margin: 0;
  }
  .nav-couls ul li:nth-of-type(n+3) a {
    border-top: 1px solid #5dbdce;
  }
}
@media screen and (max-width: 768px) {
  .fd-articles .fd-recom > nav ul#recomTabs {
    border-bottom: 1px solid #ccc;
    padding-bottom: 1px;
  }
  .fd-articles .fd-recom > nav ul#recomTabs li {
    width: 33.3%;
    color: #555;
  }
  .fd-articles .fd-recom > nav ul#recomTabs li a {
    text-align: center;
    font-size: 16px;
    border: 0;
    color: inherit;
  }
  .fd-articles .fd-recom > nav ul#recomTabs li.active {
    color: #41b1c5;
  }
  .fd-articles .fd-recom > nav ul#recomTabs li.active a {
    border: 0;
  }
  .fd-articles .fd-recom > nav ul#recomTabs li:not(:nth-of-type(3)) {
    border-right: 1px solid #ccc;
  }
  .fd-articles .fd-recom .tab-content {
    padding: 10px;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 {
    background-color: #f1fbfe;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract {
    padding: 15px;
    margin-bottom: 15px;
    border-bottom: 1px dashed #41b1c5;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract a {
    display: flex;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract a .absImg-wrap {
    width: 22%;
    margin-right: 7px;
    min-width: 100px;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract a .absImg-wrap div {
    padding-bottom: 88%;
    position: relative;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract a .absImg-wrap div img {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract a > div {
    overflow: hidden;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract a > div h3 {
    margin-top: 0;
    font-size: 18px;
    color: red;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract a > div p {
    margin-bottom: 0;
    color: #818385;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    position: relative;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract a > div p:after {
    content: "...【详情】";
    position: absolute;
    bottom: 0;
    right: 0;
    padding-left: 60px;
    background: -webkit-linear-gradient(left, transparent, #f1fbfe 55%);
    background: -o-linear-gradient(right, transparent, #f1fbfe 55%);
    background: -moz-linear-gradient(right, transparent, #f1fbfe 55%);
    background: linear-gradient(to right, transparent, #f1fbfe 55%);
    color: red;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .news-list {
    padding-bottom: 15px;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .news-list .list-group-item {
    background-color: transparent;
    border: none;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .news-list .list-group-item .number {
    width: 47px;
    height: 47px;
    float: left;
    margin-right: 10px;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .news-list .list-group-item .number img {
    width: 100%;
    height: 100%;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .news-list .list-group-item p {
    overflow: hidden;
    font-weight: bold;
  }
  .fd-articles .fd-recom .tab-content #recomModule2 .embed-responsive {
    width: 100%;
    margin: 0 auto 10px;
  }
  .fd-articles .fd-recom .tab-content #recomModule2 .embed-responsive video {
    width: 100%;
  }
  .fd-articles .fd-recom .tab-content #recomModule2 a {
    font-size: 15px;
    color: #555;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    position: relative;
  }
  .fd-articles .fd-recom .tab-content #recomModule2 a:after {
    content: "...【详情】";
    position: absolute;
    bottom: 0;
    right: 0;
    padding-left: 60px;
    background: -webkit-linear-gradient(left, transparent, #fff 55%);
    background: -o-linear-gradient(right, transparent, #fff 55%);
    background: -moz-linear-gradient(right, transparent, #fff 55%);
    background: linear-gradient(to right, transparent, #fff 55%);
    color: red;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 .patient-show-banner {
    width: 100%;
    margin-bottom: 7px;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 .patient-show-banner .swiper-slide div {
    position: relative;
    padding-bottom: 65%;
    height: 0;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 .patient-show-banner .swiper-slide div img {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 .patient-show-banner .swiper-slide:after {
    content: "";
    position: absolute;
    width: 25%;
    height: 0;
    padding-bottom: 25%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('../images/pc-picture/play.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0.8;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 .patient-show-banner .swiper-scrollbar {
    bottom: -3px;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 .embed-responsive {
    padding-bottom: 62%;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 .embed-responsive video {
    width: 100%;
    background-color: #000;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 > a {
    font-size: 16px;
    line-height: 25px;
    color: #555;
    margin-top: 7px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    position: relative;
    text-decoration: none;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 > a:after {
    content: "...【详情】";
    position: absolute;
    bottom: 0;
    right: 0;
    padding-left: 60px;
    background: -webkit-linear-gradient(left, transparent, #fff 55%);
    background: -o-linear-gradient(right, transparent, #fff 55%);
    background: -moz-linear-gradient(right, transparent, #fff 55%);
    background: linear-gradient(to right, transparent, #fff 55%);
    color: red;
  }
  .fd-articles .fd-system {
    padding: 0px 10px;
  }
  .fd-articles .fd-system .system-desc {
    display: flex;
    height: 400px;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs {
    width: 25%;
    z-index: 20;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li {
    height: 20%;
    background-color: #41b1c5;
    margin-top: 0;
    position: relative;
    cursor: pointer;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li.active a,
  .fd-articles .fd-system .system-desc .treat-time-navs li a:hover,
  .fd-articles .fd-system .system-desc .treat-time-navs li a:focus {
    background-color: transparent;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li.active:after {
    display: block;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-left-color: #41b1c5;
    right: 0;
    top: 50%;
    transform: translate(100%, -50%);
    display: none;
    z-index: 9999;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li a {
    padding: 0;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li a p {
    height: 50%;
    line-height: 40px;
    text-align: center;
    color: #fff;
    margin: 0;
    font-size: 14px;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li a p:nth-of-type(2) {
    font-size: 10px;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li:nth-of-type(2n-1) {
    background-color: #40a7ba;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li:nth-of-type(2n-1):after {
    border-color: transparent transparent transparent #40a7ba;
  }
  .fd-articles .fd-system .system-desc > .tab-content {
    flex: 1;
    height: 100%;
    list-style: none;
    margin-bottom: 0;
    background-image: url('../images/pc-picture/treat-backdrop.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    overflow-y: scroll;
    padding: 20px 5px 0px 20px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time {
    overflow: hidden;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time .nav {
    width: 35%;
    border-bottom: none;
    float: left;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time .nav li {
    float: none;
    text-align: center;
    background-color: #cde6eb;
    color: #1e6273;
    margin-bottom: 15px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time .nav li a {
    border-radius: 0;
    background-color: transparent;
    color: inherit;
    border: 0;
    padding: 15px 5px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time .nav li a p {
    margin-bottom: 0;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time .nav li.active {
    background-color: #41b1c5;
    color: #fff;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content {
    width: 60%;
    overflow: hidden;
    float: left;
    margin-left: 10px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content .tab-pane > div {
    margin-bottom: 30px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content .tab-pane > div h4 {
    color: #3feae8;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content .tab-pane > div p {
    color: #fff;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content .tab-pane > div p a {
    color: inherit;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.tab-content-detail > div {
    margin-bottom: 30px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.tab-content-detail > div h4 {
    color: #3feae8;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.tab-content-detail > div p {
    color: #fff;
    line-height: 26px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.tab-content-detail > div p a {
    color: inherit;
  }
}
@media screen and (min-width: 769px) {
  .fd-articles {
    background-color: #f5f5f5;
  }
  .fd-articles .fd-recom nav {
    position: relative;
    margin: 17px 0px;
  }
  .fd-articles .fd-recom nav:before {
    content: "";
    width: 5px;
    height: 25px;
    background-color: #41b1c5;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
  }
  .fd-articles .fd-recom nav .nav {
    border-bottom: 0;
    margin-left: 5px;
  }
  .fd-articles .fd-recom nav .nav li {
    border: 0;
  }
  .fd-articles .fd-recom nav .nav li a {
    color: #555;
    border: 0;
  }
  .fd-articles .fd-recom nav .nav li a:hover {
    background-color: #fff;
    border-color: #fff;
  }
  .fd-articles .fd-recom nav .nav li a .iconfont {
    display: none;
  }
  .fd-articles .fd-recom nav .nav li.active a {
    border-color: #fff;
    color: #41b1c5;
    background-color: transparent;
  }
  .fd-articles .fd-recom nav .nav li:hover a {
    border-color: inherit;
    color: #41b1c5;
    background-color: transparent;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 {
    border: 1px solid #41b1c5;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract {
    border-bottom: 1px dashed #ccc;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract a {
    display: block;
    text-decoration: none;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract a .absImg-wrap {
    float: left;
    width: 147px;
    height: 128px;
    margin-right: 10px;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract a .absImg-wrap div {
    width: 100%;
    height: 100%;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract a .absImg-wrap div img {
    width: 100%;
    height: 100%;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract a > div {
    overflow: hidden;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract a > div h3 {
    color: red;
    font-weight: bold;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract a > div p {
    color: #8c8c8c;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    position: relative;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract a > div p:after {
    content: "...【详情】";
    position: absolute;
    bottom: 0;
    right: 0;
    padding-left: 60px;
    background: -webkit-linear-gradient(left, transparent, #f5f5f5 55%);
    background: -o-linear-gradient(right, transparent, #f5f5f5 55%);
    background: -moz-linear-gradient(right, transparent, #f5f5f5 55%);
    background: linear-gradient(to right, transparent, #f5f5f5 55%);
    color: red;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .news-list .list-group-item {
    border-bottom: 1px solid #e3f2f5;
    border: 0;
    padding: 0;
    background-color: transparent;
    margin-bottom: 20px;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .news-list .list-group-item .number {
    width: 48px;
    height: 48px;
    float: left;
    background-color: #41b1c5;
    margin-right: 15px;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .news-list .list-group-item .number img {
    width: 100%;
    height: 100%;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .news-list .list-group-item p {
    color: #555;
    overflow: hidden;
    font-weight: bold;
  }
  .fd-articles .fd-recom .tab-content #recomModule2 .embed-responsive {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .fd-articles .fd-recom .tab-content #recomModule2 .embed-responsive video {
    width: 100%;
    height: 100%;
    background-color: #000;
  }
  .fd-articles .fd-recom .tab-content #recomModule2 a {
    display: block;
    width: 100%;
    color: #727575;
    text-decoration: none;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 {
    overflow: hidden;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 .embed-responsive {
    width: 70%;
    float: left;
    padding: 0;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 .embed-responsive video {
    background-color: #000;
    height: 100%;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 .patient-show-banner {
    width: 29%;
    float: right;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 .patient-show-banner .swiper-slide > div {
    width: 100%;
    height: 100%;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 .patient-show-banner .swiper-slide > div img {
    width: 100%;
    height: 100%;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 .patient-show-banner .swiper-slide:after {
    content: "";
    position: absolute;
    width: 25%;
    height: 0;
    padding-bottom: 25%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('../images/pc-picture/play.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 .patient-show-banner .swiper-slide .swiper-scrollbar {
    right: 0;
    top: 0;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 > a {
    color: #727575;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    position: relative;
    text-decoration: none;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 > a:after {
    content: "...【详情】";
    position: absolute;
    bottom: 0;
    right: 0;
    padding-left: 60px;
    background: -webkit-linear-gradient(left, transparent, #f5f5f5 55%);
    background: -o-linear-gradient(right, transparent, #f5f5f5 55%);
    background: -moz-linear-gradient(right, transparent, #f5f5f5 55%);
    background: linear-gradient(to right, transparent, #f5f5f5 55%);
    color: red;
  }
  .fd-articles .fd-system {
    width: 100%;
  }
  .fd-articles .fd-system > nav {
    position: relative;
    margin: 17px 0px;
  }
  .fd-articles .fd-system > nav:before {
    content: "";
    width: 5px;
    height: 25px;
    background-color: #41b1c5;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
  }
  .fd-articles .fd-system > nav .nav {
    border-bottom: 0;
    margin-left: 5px;
  }
  .fd-articles .fd-system > nav .nav li {
    border: 0;
  }
  .fd-articles .fd-system > nav .nav li a {
    font-size: 20px;
    color: #41b1c5;
    border: 0;
  }
  .fd-articles .fd-system > nav .nav li a:hover {
    background-color: #fff;
    border-color: #fff;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs {
    width: 20%;
    height: 100%;
    float: left;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li {
    height: 20%;
    background-color: #41b1c5;
    margin-top: 0;
    position: relative;
    cursor: pointer;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li.active a,
  .fd-articles .fd-system .system-desc .treat-time-navs li a:hover,
  .fd-articles .fd-system .system-desc .treat-time-navs li a:focus {
    background-color: transparent;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li.active:after {
    display: block;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 8px solid;
    border-color: transparent transparent transparent #41b1c5;
    right: 0;
    top: 50%;
    transform: translate(100%, -50%);
    display: none;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li a {
    padding: 0;
    height: 100%;
    border-radius: 0;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li a p {
    height: 50%;
    text-align: center;
    color: #fff;
    margin: 0;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li:nth-of-type(2n-1) {
    background-color: #40a7ba;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li:nth-of-type(2n-1):after {
    border-color: transparent transparent transparent #40a7ba;
  }
  .fd-articles .fd-system .system-desc > .tab-content {
    width: 80%;
    height: 100%;
    float: left;
    background-color: #41b1c5;
    list-style: none;
    margin-bottom: 0;
    background-image: url('../images/pc-picture/treat-backdrop.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 0;
    overflow-y: scroll;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time .nav {
    float: left;
    border-bottom: none;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time .nav li {
    float: none;
    text-align: center;
    background-color: #cde6eb;
    color: #1e6273;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time .nav li a {
    border-radius: 0;
    background-color: transparent;
    color: inherit;
    border: 0;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time .nav li.active {
    background-color: #41b1c5;
    color: #fff;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content {
    float: left;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content .tab-pane > div h4 {
    color: #3feae8;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content .tab-pane > div p {
    color: #fff;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content .tab-pane > div p a {
    color: inherit;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.tab-content-detail > div h4 {
    color: #3feae8;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.tab-content-detail > div p {
    color: #fff;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.tab-content-detail > div p a {
    color: inherit;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .fd-articles {
    padding: 15px 30px 30px;
  }
  .fd-articles .fd-recom {
    width: 100%;
  }
  .fd-articles .fd-recom nav .nav li a {
    font-size: 20px;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 {
    padding: 30px 30px 15px;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract {
    padding-bottom: 25px;
    margin-bottom: 20px;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract a > div h3 {
    font-size: 18px;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .art-abstract a > div p {
    font-size: 12px;
    line-height: 25px;
  }
  .fd-articles .fd-recom .tab-content #recomModule1 .news-list .list-group-item p {
    font-size: 15px;
  }
  .fd-articles .fd-recom .tab-content #recomModule2 .embed-responsive {
    height: 400px;
  }
  .fd-articles .fd-recom .tab-content #recomModule2 a {
    margin-top: 25px;
    font-size: 16px;
    line-height: 25px;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 {
    overflow: hidden;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 .clearfix {
    margin-bottom: 15px;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 .clearfix .embed-responsive {
    height: 400px;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 .clearfix .patient-show-banner {
    height: 400px;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 > a {
    font-size: 16px;
    line-height: 25px;
  }
  .fd-articles .fd-recom .tab-content #recomModule3 span {
    font-size: 16px;
  }
  .fd-articles .fd-system .system-desc {
    height: 555px;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li p {
    line-height: 51px;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li p:nth-of-type(1) {
    font-size: 18px;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li p:nth-of-type(2) {
    font-size: 14px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time {
    padding: 45px 40px 0px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time .nav li {
    width: 155px;
    margin-bottom: 30px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content {
    margin-left: 60px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content .tab-pane > div {
    margin-bottom: 40px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content .tab-pane > div h4 {
    font-size: 20px;
    line-height: 40px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content .tab-pane > div p {
    font-size: 15px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.tab-content-detail {
    padding: 64px 43px 0px 43px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.tab-content-detail > div {
    margin-bottom: 50px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.tab-content-detail > div h4 {
    font-size: 20px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.tab-content-detail > div p {
    font-size: 15px;
    line-height: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .fd-articles {
    padding: 17px 30px 20px 34px;
  }
  .fd-articles .fd-recom {
    float: left;
    width: 43.5%;
  }
  .fd-articles .fd-recom > nav .nav li a {
    font-size: 20px;
  }
  .fd-articles .fd-recom #recomModule1 {
    padding: 28px 15px 0px 20px;
  }
  .fd-articles .fd-recom #recomModule1 .art-abstract {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .fd-articles .fd-recom #recomModule1 .art-abstract h3 {
    font-size: 18px;
  }
  .fd-articles .fd-recom #recomModule1 .art-abstract p {
    font-size: 12px;
    line-height: 25px;
  }
  .fd-articles .fd-recom #recomModule2 .embed-responsive {
    height: 435px;
  }
  .fd-articles .fd-recom #recomModule2 .embed-responsive video {
    height: 100%;
  }
  .fd-articles .fd-recom #recomModule2 a {
    font-size: 14px;
    margin-top: 20px;
    line-height: 25px;
  }
  .fd-articles .fd-recom #recomModule3 .embed-responsive {
    height: 450px;
    margin-bottom: 20px;
  }
  .fd-articles .fd-recom #recomModule3 .patient-show-banner {
    height: 450px;
  }
  .fd-articles .fd-recom #recomModule3 > a {
    font-size: 14px;
    line-height: 25px;
  }
  .fd-articles .fd-system {
    float: right;
    width: 55%;
  }
  .fd-articles .fd-system .system-desc {
    height: 555px;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li p {
    line-height: 50px;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li p:nth-of-type(1) {
    font-size: 15px;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li p:nth-of-type(2) {
    font-size: 10px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time {
    padding: 30px 20px 0px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time .nav li {
    width: 140px;
    margin-bottom: 20px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content {
    margin-left: 60px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content .tab-pane > div {
    margin-bottom: 40px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content .tab-pane > div h4 {
    font-size: 20px;
    line-height: 40px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content .tab-pane > div p {
    font-size: 15px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.tab-content-detail {
    padding: 30px 30px 0px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.tab-content-detail > div {
    margin-bottom: 50px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.tab-content-detail > div h4 {
    font-size: 20px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.tab-content-detail > div p {
    font-size: 15px;
    line-height: 32px;
  }
}
@media screen and (min-width: 1440px) {
  .fd-articles {
    padding: 17px 30px 20px 34px;
  }
  .fd-articles .fd-recom #recomModule1 {
    padding: 28px 15px 0px 20px;
  }
  .fd-articles .fd-recom #recomModule1 .art-abstract {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .fd-articles .fd-recom #recomModule1 .art-abstract h3 {
    font-size: 18px;
  }
  .fd-articles .fd-recom #recomModule1 .art-abstract p {
    font-size: 13px;
    line-height: 25px;
  }
  .fd-articles .fd-recom #recomModule2 .embed-responsive {
    height: 435px;
  }
  .fd-articles .fd-recom #recomModule2 a {
    font-size: 16px;
    margin-top: 20px;
    line-height: 25px;
  }
  .fd-articles .fd-recom #recomModule3 .embed-responsive {
    height: 395px;
  }
  .fd-articles .fd-recom #recomModule3 .patient-show-banner {
    height: 395px;
  }
  .fd-articles .fd-recom #recomModule3 > a {
    font-size: 16px;
    line-height: 25px;
  }
  .fd-articles .fd-system .system-desc {
    height: 555px;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li p {
    line-height: 51px;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li p:nth-of-type(1) {
    font-size: 18px;
  }
  .fd-articles .fd-system .system-desc .treat-time-navs li p:nth-of-type(2) {
    font-size: 14px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time {
    padding: 45px 40px 0px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time .nav li {
    width: 155px;
    margin-bottom: 30px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content {
    margin-left: 60px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content .tab-pane > div {
    margin-bottom: 40px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content .tab-pane > div h4 {
    font-size: 20px;
    line-height: 40px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.double-early-time > .tab-content .tab-pane > div p {
    font-size: 15px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.tab-content-detail {
    padding: 64px 43px 0px 43px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.tab-content-detail > div {
    margin-bottom: 50px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.tab-content-detail > div h4 {
    font-size: 20px;
  }
  .fd-articles .fd-system .system-desc > .tab-content li.tab-content-detail > div p {
    font-size: 15px;
    line-height: 32px;
  }
}
.party-culs {
  margin: 50px 0px;
}
.party-culs .swiper-slide > a {
  display: block;
  position: relative;
  padding-bottom: 11.1%;
}
.party-culs .swiper-slide > a img {
  position: absolute;
  width: 100%;
  height: 100%;
}
#thx-letter {
  width: 100%;
  height: 685px;
  margin-top: 50px;
  margin-bottom: 50px;
}
#thx-letter .ganxiexin {
  width: 100%;
  height: 100%;
  position: relative;
}
#thx-letter .ganxiexin .gxx_background {
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url("../images/gxx_background.jpg");
  background-size: 100% 100%;
}
#thx-letter .ganxiexin .gxx_background #info {
  position: relative;
  top: -586px;
  right: 18.8%;
  width: 100%;
  color: #ffffff;
  padding: 5px;
  font-family: Monospace;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  z-index: 1;
}
#thx-letter .ganxiexin .gxx_background #menu {
  position: absolute;
  bottom: 30px;
  left: -2.2rem;
  width: 71%;
  text-align: center;
}
#thx-letter .ganxiexin .gxx_background #menu button {
  color: #87cbeb;
  background: transparent;
  outline: 1px solid #87cbeb;
  border: 0px;
  padding: 0 12px;
  cursor: pointer;
  /*height: 2rem;*/
}
#thx-letter .ganxiexin .element {
  width: 120px;
  height: 160px;
  box-shadow: 0px 0px 12px rgba(0, 255, 255, 0.5);
  border: 1px solid rgba(127, 255, 255, 0.25);
  text-align: center;
  cursor: default;
}
#thx-letter .ganxiexin .element:hover {
  box-shadow: 0px 0px 12px rgba(0, 255, 255, 0.75);
  border: 1px solid rgba(127, 255, 255, 0.75);
}
#thx-letter .ganxiexin .element .number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 12px;
  color: rgba(127, 255, 255, 0.75);
}
#thx-letter .ganxiexin .element .symbol {
  position: absolute;
  top: 40px;
  left: 0px;
  right: 0px;
  font-size: 60px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.95);
}
#thx-letter .ganxiexin .element .details {
  position: absolute;
  bottom: 15px;
  left: 0px;
  right: 0px;
  font-size: 12px;
  color: rgba(127, 255, 255, 0.75);
}
#thx-letter .ganxiexin #imgContent {
  position: absolute;
  right: 0;
  top: 5px;
  width: 535px;
  height: 598px;
  padding: 0 49px;
  box-shadow: -9px 0 8px #0d5372;
  overflow: auto;
}
#thx-letter .ganxiexin #imgContent::-webkit-scrollbar {
  width: 20px;
}
#thx-letter .ganxiexin #imgContent::-webkit-scrollbar-thumb {
  border-radius: 11px;
  background-color: #0d5a83;
}
#thx-letter .ganxiexin #imgContent::-webkit-scrollbar-track {
  background-color: #0b4969;
}
#thx-letter .ganxiexin #imgTitle {
  color: #fff;
  text-align: center;
  margin-top: 35px;
  font-size: 1.1rem;
}
#thx-letter .ganxiexin #bigImg {
  width: 100%;
  margin-top: 16px;
  margin-bottom: 22px;
}
#thx-letter .ganxiexin #imgDetail p {
  color: #fff;
  text-indent: 2em;
  font-size: 1rem;
  text-align: left;
}
#thx-letter .ganxiexin #close {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  border-radius: 23px;
  background-color: #fff;
  text-align: center;
  padding: 0.1rem 0.6rem;
  cursor: pointer;
}
#thx-letter .ganxiexin #tips_float,
#thx-letter .ganxiexin .symbol,
#thx-letter .ganxiexin .details {
  display: none !important;
}
#thx-letter .ganxiexin #informa {
  margin-top: 52px;
}
@media screen and (max-width: 780px) {
  #thx-letter #ganxiexin {
    display: none !important;
  }
}
.expert-team {
  background-image: url('../images/pc-picture/expert-team/background.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .expert-team {
    margin: 0px 10px;
  }
  .expert-team .expert-module {
    padding: 10px;
  }
  .expert-team .expert-module .expert-navs {
    margin-bottom: 5px;
  }
  .expert-team .expert-module .expert-navs > button {
    float: none;
    font-size: 14px;
    background-color: transparent;
    color: #fff;
    border: 0;
    min-width: 100px;
    padding-left: 0;
    text-align: left;
  }
  .expert-team .expert-module .expert-navs > button:focus {
    background-color: transparent;
    color: #fff;
  }
  .expert-team .expert-module .expert-navs .dropdown-menu {
    min-width: 70px;
    padding: 0;
  }
  .expert-team .expert-module .expert-navs .dropdown-menu li {
    margin: 0;
  }
  .expert-team .expert-module .expert-navs .dropdown-menu li a {
    margin-right: 0;
    border-radius: 0;
    border: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    background-color: #03435e;
    color: #fff;
  }
  .expert-team .expert-module .tab-content .tab-pane .pane-img-wrap {
    position: relative;
    height: 0;
    padding-bottom: 57.6%;
  }
  .expert-team .expert-module .tab-content .tab-pane .pane-img-wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .expert-team .expert-module .tab-content .tab-pane .pane-img-wrap .team-desc {
    position: absolute;
    width: 100%;
    bottom: 5px;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .expert-team .expert-module .tab-content .tab-pane .pane-img-wrap .team-desc h4 {
    color: #41b1c5;
    font-size: 18px;
  }
  .expert-team .expert-module .tab-content .tab-pane .pane-img-wrap .team-desc p {
    color: #fff;
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .expert-team .doctors-module {
    padding: 0px 10px;
  }
  .expert-team .doctors-module .doctors-banner {
    padding-bottom: 20px;
    position: relative;
  }
  .expert-team .doctors-module .doctors-banner .swiper-container .swiper-slide div {
    position: relative;
    width: 24.1%;
    float: left;
    margin-left: 2px;
  }
  .expert-team .doctors-module .doctors-banner .swiper-container .swiper-slide div a {
    width: 100%;
    height: 0;
    padding-bottom: 125%;
    position: relative;
    display: block;
  }
  .expert-team .doctors-module .doctors-banner .swiper-container .swiper-slide div a img {
    width: 100%;
    height: 100%;
    position: absolute;
  }
  .expert-team .doctors-module .doctors-banner .swiper-pagination {
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
  }
  .expert-team .doctors-module .doctors-banner .swiper-pagination span {
    margin-right: 7px;
  }
}
@media screen and (min-width: 769px) {
  .expert-team {
    padding: 0 25px;
  }
  .expert-team .pc-module-title h3 {
    color: #fff;
  }
  .expert-team .pc-module-title small {
    color: #fff;
  }
  .expert-team .expert-module .nav {
    border-bottom: 0;
  }
  .expert-team .expert-module .nav li a {
    border: 0;
    color: #fff;
    font-size: 18px;
  }
  .expert-team .expert-module .nav li a:hover {
    background-color: transparent;
  }
  .expert-team .expert-module .nav li.active a {
    background-color: transparent;
    border: 0;
    color: yellow;
  }
  .expert-team .expert-module .tab-content {
    color: #fff;
  }
  .expert-team .expert-module .tab-content .tab-pane .pane-img-wrap {
    position: relative;
    height: 0;
    padding-bottom: 57.6%;
  }
  .expert-team .expert-module .tab-content .tab-pane .pane-img-wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .expert-team .expert-module .tab-content .tab-pane .pane-img-wrap .team-desc {
    position: absolute;
    width: 100%;
    bottom: 10px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .expert-team .expert-module .tab-content .tab-pane .pane-img-wrap .team-desc h4 {
    color: #41b1c5;
    font-size: 23px;
  }
  .expert-team .expert-module .tab-content .tab-pane .pane-img-wrap .team-desc p {
    color: #fff;
    font-size: 17px;
  }
  .expert-team .doctors-module .select-box .select-box-wrap .btn-group {
    display: block;
    min-width: 160px;
    width: 50%;
    margin: 0;
    float: left;
    padding: 0;
  }
  .expert-team .doctors-module .select-box .select-box-wrap .btn-group > button {
    width: 100%;
    border-radius: 0;
    text-align: left;
  }
  .expert-team .doctors-module .select-box .select-box-wrap .btn-group > button span {
    margin-top: 7px;
    float: right;
  }
  .expert-team .doctors-module .select-box .select-box-wrap .btn-group .dropdown-menu {
    width: 100%;
  }
  .expert-team .doctors-module .select-box .select-box-wrap .btn-group .dropdown-menu li a {
    padding: 6px 12px;
  }
  .expert-team .doctors-module .select-box .select-box-wrap > button {
    display: block;
    border-radius: 0;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #41b1c5;
    color: #fff;
    border-color: #41b1c5;
  }
  .expert-team .doctors-module .doctors-banner {
    position: relative;
  }
  .expert-team .doctors-module .doctors-banner .swiper-container {
    width: 100%;
  }
  .expert-team .doctors-module .doctors-banner .swiper-container .swiper-slide div {
    position: relative;
    width: 24.3%;
    margin-left: 3px;
    float: left;
  }
  .expert-team .doctors-module .doctors-banner .swiper-container .swiper-slide div a {
    width: 100%;
    height: 0;
    padding-bottom: 125%;
    position: relative;
    display: block;
  }
  .expert-team .doctors-module .doctors-banner .swiper-container .swiper-slide div a img {
    width: 100%;
    height: 100%;
    position: absolute;
  }
  .expert-team .doctors-module .doctors-banner .my-button-prev,
  .expert-team .doctors-module .doctors-banner .my-button-next {
    width: 25px;
    height: 25px;
    top: auto;
    left: auto;
    background-color: #215668;
    color: #fff;
    position: absolute;
    text-align: center;
    line-height: 25px;
    border: none;
  }
  .expert-team .doctors-module .doctors-banner .my-button-prev i,
  .expert-team .doctors-module .doctors-banner .my-button-next i {
    font-size: 25px;
  }
  .expert-team .doctors-module .doctors-banner .my-button-prev {
    right: 32px;
    bottom: 2px;
  }
  .expert-team .doctors-module .doctors-banner .my-button-next {
    bottom: 2px;
    right: 3px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .expert-team {
    overflow: hidden;
  }
  .expert-team .expert-module > .nav a {
    padding: 10px 8px;
  }
  .expert-team .doctors-module {
    margin-top: 20px;
  }
  .expert-team .doctors-module .doctors-banner {
    margin-top: 20px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 993px) {
  .expert-team .expert-module {
    width: 60%;
    float: left;
  }
  .expert-team .expert-module > .nav > li a {
    font-size: 16px;
    padding-left: 9px;
    padding-right: 9px;
  }
  .expert-team .doctors-module {
    width: 39%;
    float: right;
  }
  .expert-team .doctors-module .select-box {
    height: 40px;
  }
  .expert-team .doctors-module .select-box .select-box-wrap {
    float: right;
  }
  .expert-team .doctors-module .doctors-banner {
    padding-bottom: 35px;
  }
  .expert-team .doctors-module .doctors-banner .swiper-slide > div img {
    width: 100%;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .expert-team {
    padding-left: 10px;
    padding-right: 10px;
  }
  .expert-team .expert-module > .nav > li a {
    padding-left: 5px;
    padding-right: 5px;
    margin-right: 0;
    font-size: 16px;
  }
  .expert-team .doctors-module .doctors-banner > .swiper-container .swiper-wrapper .swiper-slide > div {
    margin-left: 2px;
  }
}
@media screen and (min-width: 1440px) {
  .expert-team .expert-module > .nav > li a {
    font-size: 18px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .expert-team .doctors-module .select-box {
    height: 44px;
  }
}
.disease-type {
  background-color: #706f6f;
  margin: 50px 0px;
}
.disease-type .pc-module-title h3 {
  color: #fff;
}
.disease-type .pc-module-title h3 small {
  color: #fff;
}
.disease-type .content-list .content-list-item {
  float: left;
  width: 20%;
  border-right: 1px transparent solid;
  border-image: linear-gradient(#706f6f, #fff, #706f6f) 1;
  padding-bottom: 45px;
}
.disease-type .content-list .content-list-item h3 {
  text-align: center;
  font-size: 21px;
  color: #fff;
  margin: 15px 0px;
}
.disease-type .content-list .content-list-item p {
  margin-left: 20%;
  margin-bottom: 5px;
  color: #fff;
  font-size: 16px;
}
.disease-type .content-list .content-list-item p a {
  color: inherit;
  font-size: inherit;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .disease-type .content-list .content-list-item p {
    margin-left: 7%;
  }
}
.disease-type .content-list .content-list-item:nth-of-type(5) {
  padding-bottom: 0;
}
.disease-type .content-list .content-list-item:nth-of-type(5) p {
  margin-left: 15%;
}
.m-disease-type {
  margin: 25px 0px;
}
@media screen and (max-width: 768px) {
  .m-disease-type {
    padding: 0px 10px;
  }
}
.m-disease-type .clearfix {
  position: relative;
}
.m-disease-type .clearfix .nav {
  width: 30%;
  float: left;
  border-bottom: 0;
}
.m-disease-type .clearfix .nav li {
  margin-top: 2px;
  position: relative;
}
.m-disease-type .clearfix .nav li a {
  border: 0;
  border-radius: 0;
  background-color: #41b1c5;
  text-align: center;
  color: #fff;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}
.m-disease-type .clearfix .nav li a:hover {
  background-color: transparent;
}
.m-disease-type .clearfix .nav li::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 5px solid;
  border-color: transparent transparent transparent red;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  z-index: 999;
  display: none;
}
.m-disease-type .clearfix .nav li.active a {
  background-color: red;
  border: 0;
  color: #ffff00;
}
.m-disease-type .clearfix .nav li.active::after {
  display: block;
}
.m-disease-type .clearfix .tab-content {
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.m-disease-type .clearfix .tab-content .tab-pane {
  height: 100%;
  background-color: #ecf7f9;
  padding: 10px;
  overflow-y: scroll;
}
.m-disease-type .clearfix .tab-content .tab-pane a {
  display: inline-block;
  padding: 10px;
  margin: 5px;
  text-align: center;
  background-color: rgba(255, 255, 254, 0.9);
  color: #555;
}
.fd-therapy .therapy-content .nav {
  width: 100%;
  display: box;
  /* OLD - Android 4.4- */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* 09版 */
  -webkit-box-orient: horizontal;
  /* 12版 */
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 09版 */
  -webkit-box-pack: space-between;
  /* 12版 */
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  /* 其它取值如下：
    align-items     主轴原点方向对齐
    flex-end        主轴延伸方向对齐
    space-between   等间距排列，首尾不留白
    space-around    等间距排列，首尾留白
   */
}
.fd-therapy .therapy-content .nav li {
  background-color: #cbe9ec;
  color: #000;
  border-radius: 30px;
}
.fd-therapy .therapy-content .nav li a {
  color: inherit;
  background-color: transparent;
  text-align: center;
  display: block;
}
.fd-therapy .therapy-content .nav li.active {
  background-color: #41b1c5;
  color: #fff;
}
.fd-therapy .therapy-content .nav::before,
.fd-therapy .therapy-content .nav::after {
  display: none;
}
.fd-therapy .therapy-content .tab-content {
  border: 1px solid #41b1c5;
}
.fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-wrap div {
  position: relative;
  padding-bottom: 55%;
  height: 0;
}
.fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-wrap div video {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-wrap div {
  position: relative;
  padding-bottom: 55%;
  height: 0;
}
.fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-wrap div img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-desc {
  border-bottom: 1px dashed #555;
}
.fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-desc a {
  text-decoration: none;
  color: #555;
  margin-bottom: 0;
  display: block;
}
.fd-therapy .therapy-content .tab-content .tab-pane .therapy-example .therapy-example-item .item-img-wrap {
  width: 35%;
  float: left;
}
.fd-therapy .therapy-content .tab-content .tab-pane .therapy-example .therapy-example-item .item-img-wrap div {
  position: relative;
  padding-bottom: 87%;
  height: 0;
}
.fd-therapy .therapy-content .tab-content .tab-pane .therapy-example .therapy-example-item .item-img-wrap div img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.fd-therapy .therapy-content .tab-content .tab-pane .therapy-example .therapy-example-item h5 {
  width: 60%;
  float: right;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.fd-therapy .therapy-content .tab-content .tab-pane .therapy-example .therapy-example-item > a {
  width: 60%;
  float: right;
  display: block;
  text-decoration: none;
  margin-bottom: 0;
  color: #555;
  position: relative;
}
.fd-therapy .therapy-content .tab-content .tab-pane .therapy-example .therapy-example-item > a:after {
  content: "...【详情】";
  position: absolute;
  bottom: 0;
  right: 0;
  padding-left: 60px;
  background: -webkit-linear-gradient(left, transparent, #fff 55%);
  background: -o-linear-gradient(right, transparent, #fff 55%);
  background: -moz-linear-gradient(right, transparent, #fff 55%);
  background: linear-gradient(to right, transparent, #fff 55%);
  color: red;
}
@media screen and (max-width: 768px) {
  .fd-therapy {
    padding: 0px 10px 15px;
  }
  .fd-therapy .therapy-content .nav li {
    width: 33%;
    margin-bottom: 7px;
  }
  .fd-therapy .therapy-content .nav li a {
    height: 100%;
    padding-left: 0;
    padding-right: 0;
    font-size: 12px;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane {
    padding: 12px;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-desc {
    margin: 12px 0px;
    padding-bottom: 12px;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-desc a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    line-height: 25px;
    position: relative;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-desc a:after {
    content: "...【详情】";
    position: absolute;
    bottom: 0;
    right: 0;
    padding-left: 60px;
    background: -webkit-linear-gradient(left, transparent, #fff 55%);
    background: -o-linear-gradient(right, transparent, #fff 55%);
    background: -moz-linear-gradient(right, transparent, #fff 55%);
    background: linear-gradient(to right, transparent, #fff 55%);
    color: red;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-example .therapy-example-item {
    width: 100%;
    margin-bottom: 8px;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-example .therapy-example-item a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}
@media screen and (min-width: 769px) {
  .fd-therapy {
    background-color: #f5f5f5;
  }
  .fd-therapy .therapy-content {
    padding: 0 30px 30px;
  }
  .fd-therapy .therapy-content .tab-content {
    padding: 25px;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane {
    padding: 12px;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-wrap div {
    position: relative;
    padding-bottom: 60%;
    height: 0;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-wrap div video {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-wrap div {
    position: relative;
    padding-bottom: 60%;
    height: 0;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-wrap div img {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-desc a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    position: relative;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-desc a:after {
    content: "...【详情】";
    position: absolute;
    bottom: 0;
    right: 0;
    padding-left: 60px;
    background: -webkit-linear-gradient(left, transparent, #f5f5f5 55%);
    background: -o-linear-gradient(right, transparent, #f5f5f5 55%);
    background: -moz-linear-gradient(right, transparent, #f5f5f5 55%);
    background: linear-gradient(to right, transparent, #f5f5f5 55%);
    color: red;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-example .therapy-example-item {
    width: 49%;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-example .therapy-example-item a {
    position: relative;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-example .therapy-example-item a:after {
    content: "...【详情】";
    position: absolute;
    bottom: 0;
    right: 0;
    padding-left: 60px;
    background: -webkit-linear-gradient(left, transparent, #f5f5f5 55%);
    background: -o-linear-gradient(right, transparent, #f5f5f5 55%);
    background: -moz-linear-gradient(right, transparent, #f5f5f5 55%);
    background: linear-gradient(to right, transparent, #f5f5f5 55%);
    color: red;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-example .therapy-example-item:nth-of-type(1) {
    float: left;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-example .therapy-example-item:nth-of-type(2) {
    float: right;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .fd-therapy .therapy-content .nav {
    margin-bottom: 15px;
  }
  .fd-therapy .therapy-content .nav li {
    width: 30%;
    margin-bottom: 10px;
  }
  .fd-therapy .therapy-content .nav li a {
    font-size: 16px;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-wrap {
    width: 100%;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-desc {
    width: 100%;
    padding-bottom: 15px;
    margin-top: 10px;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-desc a {
    line-height: 30px;
    font-size: 16px;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-example {
    width: 100%;
    margin-top: 15px;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-example .therapy-example-item > a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-example .therapy-example-item h5 {
    font-size: 18px;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-example .therapy-example-item > a {
    font-size: 16px;
    line-height: 27px;
  }
}
@media screen and (min-width: 1200px) {
  .fd-therapy .therapy-content .nav {
    margin-bottom: 25px;
  }
  .fd-therapy .therapy-content .nav li {
    box-shadow: 2px 3px 4px #888888;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-wrap {
    width: 34%;
    float: left;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-desc {
    width: 62%;
    float: right;
    padding-bottom: 15px;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-desc a {
    font-size: 16px;
    line-height: 30px;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-example {
    width: 62%;
    float: right;
    margin-top: 15px;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-example .therapy-example-item h5 {
    font-size: 18px;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-example .therapy-example-item > a {
    width: 60%;
    font-size: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}
@media screen and (min-width: 1440px) {
  .fd-therapy .therapy-content .nav li a {
    font-size: 19px;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-video-desc a {
    font-size: 18px;
    line-height: 34px;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-example .therapy-example-item > a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 25px;
  }
}
@media screen and (min-width: 1600px) {
  .fd-therapy .therapy-content .nav {
    margin-bottom: 40px;
  }
  .fd-therapy .therapy-content .tab-content .tab-pane .therapy-example .therapy-example-item > a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}
.fd-imfor .nav {
  border-bottom: 0;
  display: box;
  /* OLD - Android 4.4- */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* 09版 */
  -webkit-box-orient: horizontal;
  /* 12版 */
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 09版 */
  -webkit-box-pack: space-between;
  /* 12版 */
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  /* 其它取值如下：
    align-items     主轴原点方向对齐
    flex-end        主轴延伸方向对齐
    space-between   等间距排列，首尾不留白
    space-around    等间距排列，首尾留白
   */
}
.fd-imfor .nav li {
  border-radius: 30px;
}
.fd-imfor .nav li a {
  border: 0 !important;
  border-radius: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #555;
}
.fd-imfor .nav li a:hover {
  background-color: transparent;
}
.fd-imfor .nav li.active {
  background-color: #41b1c5;
}
.fd-imfor .nav li.active a {
  background-color: #41b1c5 !important;
  color: #fff !important;
}
.fd-imfor .tab-content .tab-pane {
  display: box;
  /* OLD - Android 4.4- */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* 09版 */
  -webkit-box-orient: horizontal;
  /* 12版 */
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  /* 09版 */
  -webkit-box-pack: space-between;
  /* 12版 */
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  /* 其它取值如下：
    align-items     主轴原点方向对齐
    flex-end        主轴延伸方向对齐
    space-between   等间距排列，首尾不留白
    space-around    等间距排列，首尾留白
   */
}
.fd-imfor .tab-content .tab-pane .tab-panl-item {
  text-decoration: none;
  color: #555;
}
.fd-imfor .tab-content .tab-pane .tab-panl-item .item-img-wrap div {
  position: relative;
  padding-bottom: 60%;
  height: 0;
}
.fd-imfor .tab-content .tab-pane .tab-panl-item .item-img-wrap div img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.fd-imfor .tab-content .tab-pane .tab-panl-item p {
  text-align: center;
  font-weight: bold;
}
.fd-imfor .tab-content .tab-pane:not(.active) {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .fd-imfor .nav {
    padding: 0px 5%;
  }
  .fd-imfor .nav li a {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 14px;
  }
  .fd-imfor .tab-content {
    margin-top: 10px;
    padding: 0px 15px;
  }
  .fd-imfor .tab-content .tab-pane .tab-panl-item {
    width: 48%;
  }
  .fd-imfor .tab-content .tab-pane .tab-panl-item:nth-of-type(3) {
    display: none;
  }
  .fd-imfor .tab-content .tab-pane p {
    font-size: 12px;
    margin-top: 5px;
  }
}
@media screen and (min-width: 769px) {
  .fd-imfor {
    margin: 50px 0px;
  }
  .fd-imfor .nav {
    padding: 0px 25%;
  }
  .fd-imfor .nav li a {
    font-size: 20px;
  }
  .fd-imfor .tab-content {
    margin-top: 45px;
  }
  .fd-imfor .tab-content .tab-pane .tab-panl-item {
    width: 30%;
  }
  .fd-imfor .tab-content .tab-pane .tab-panl-item p {
    font-size: 17px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .fd-imfor .nav {
    padding: 0px 15%;
  }
}
@media screen and (min-width: 1200px) {
  .fd-imfor .nav {
    padding: 0 30%;
  }
}
.fd-video-report .nav {
  border-bottom: 0;
  display: box;
  /* OLD - Android 4.4- */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* 09版 */
  -webkit-box-orient: horizontal;
  /* 12版 */
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 09版 */
  -webkit-box-pack: space-between;
  /* 12版 */
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  /* 其它取值如下：
    align-items     主轴原点方向对齐
    flex-end        主轴延伸方向对齐
    space-between   等间距排列，首尾不留白
    space-around    等间距排列，首尾留白
   */
}
.fd-video-report .nav li {
  border-radius: 30px;
}
.fd-video-report .nav li a {
  border: 0 !important;
  border-radius: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #555;
}
.fd-video-report .nav li a:hover {
  background-color: transparent;
}
.fd-video-report .nav li.active {
  background-color: #41b1c5;
}
.fd-video-report .nav li.active a {
  background-color: #41b1c5 !important;
  color: #fff !important;
}
.fd-video-report .tab-content .tab-pane {
  display: box;
  /* OLD - Android 4.4- */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* 09版 */
  -webkit-box-orient: horizontal;
  /* 12版 */
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  /* 09版 */
  -webkit-box-pack: space-between;
  /* 12版 */
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  /* 其它取值如下：
    align-items     主轴原点方向对齐
    flex-end        主轴延伸方向对齐
    space-between   等间距排列，首尾不留白
    space-around    等间距排列，首尾留白
   */
}
.fd-video-report .tab-content .tab-pane .tab-panl-item {
  display: block;
  text-decoration: none;
  color: #555;
}
.fd-video-report .tab-content .tab-pane .tab-panl-item .item-img-wrap {
  position: relative;
}
.fd-video-report .tab-content .tab-pane .tab-panl-item .item-img-wrap div {
  position: relative;
  padding-bottom: 60%;
  height: 0;
}
.fd-video-report .tab-content .tab-pane .tab-panl-item .item-img-wrap div img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.fd-video-report .tab-content .tab-pane .tab-panl-item .item-img-wrap:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 15%;
  height: 25%;
  background-image: url('../images/m-picture/play.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.8;
}
.fd-video-report .tab-content .tab-pane .tab-panl-item p {
  text-align: center;
  font-weight: bold;
}
.fd-video-report .tab-content .tab-pane:not(.active) {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .fd-video-report .nav {
    padding: 0px 5%;
  }
  .fd-video-report .nav li a {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 14px;
  }
  .fd-video-report .tab-content {
    margin-top: 10px;
    padding: 0px 15px;
  }
  .fd-video-report .tab-content .tab-pane .tab-panl-item {
    width: 48%;
  }
  .fd-video-report .tab-content .tab-pane .tab-panl-item:nth-of-type(3) {
    display: none;
  }
  .fd-video-report .tab-content .tab-pane p {
    font-size: 12px;
    margin-top: 5px;
  }
}
@media screen and (min-width: 769px) {
  .fd-video-report {
    margin: 50px 0px;
  }
  .fd-video-report .nav {
    padding: 0px 25%;
  }
  .fd-video-report .nav li a {
    font-size: 20px;
  }
  .fd-video-report .tab-content {
    margin-top: 45px;
  }
  .fd-video-report .tab-content .tab-pane .tab-panl-item {
    width: 30%;
  }
  .fd-video-report .tab-content .tab-pane .tab-panl-item p {
    font-size: 17px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .fd-video-report .nav {
    padding: 0px 15%;
  }
}
@media screen and (min-width: 1200px) {
  .fd-video-report .nav {
    padding: 0 30%;
  }
}
.fd-beu .beu-content {
  display: box;
  /* OLD - Android 4.4- */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* 09版 */
  -webkit-box-orient: horizontal;
  /* 12版 */
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  /* 09版 */
  -webkit-box-pack: space-between;
  /* 12版 */
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  /* 其它取值如下：
    align-items     主轴原点方向对齐
    flex-end        主轴延伸方向对齐
    space-between   等间距排列，首尾不留白
    space-around    等间距排列，首尾留白
   */
}
.fd-beu .beu-content .beu-item {
  width: 32%;
  display: block;
  text-decoration: none;
}
.fd-beu .beu-content .beu-item .img-wrap div {
  position: relative;
  padding-bottom: 45.5%;
  height: 0;
}
.fd-beu .beu-content .beu-item .img-wrap div img {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .fd-beu {
    margin-bottom: 35px;
  }
  .fd-beu .beu-content {
    padding: 0 10px;
  }
  .fd-beu .beu-content .beu-item .beu-text span {
    display: block;
    text-align: center;
  }
  .fd-beu .beu-content .beu-item .beu-text span:nth-of-type(1) {
    color: #000;
    font-size: 14px;
  }
  .fd-beu .beu-content .beu-item .beu-text span:nth-of-type(2) {
    color: #ccc;
    font-size: 12px;
  }
}
@media screen and (min-width: 769px) {
  .fd-beu {
    margin: 50px 0px;
  }
  .fd-beu .beu-content .beu-item .beu-text {
    text-align: center;
    font-size: 17px;
    color: #555;
    margin: 10px 0px;
  }
}
.fd-share {
  background-color: #41b1c5;
}
.fd-share > div {
  height: 100%;
  float: left;
}
.fd-share .share-text {
  width: 25%;
  text-align: center;
  color: #fff;
}
.fd-share .sharelink-list {
  width: 50%;
  display: box;
  /* OLD - Android 4.4- */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* 09版 */
  -webkit-box-orient: horizontal;
  /* 12版 */
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  /* 09版 */
  -webkit-box-pack: space-around;
  /* 12版 */
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  justify-content: space-around;
  /* 其它取值如下：
    align-items     主轴原点方向对齐
    flex-end        主轴延伸方向对齐
    space-between   等间距排列，首尾不留白
    space-around    等间距排列，首尾留白
   */
  /* 09版 */
  -webkit-box-align: center;
  /* 12版 */
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
.fd-share .sharelink-list .sharelink-item {
  border-radius: 100px;
  background-color: transparent;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  display: block;
  text-decoration: none;
}
.fd-share .share-btn {
  width: 25%;
  text-align: center;
}
.fd-share .share-btn .btn {
  border-radius: 30px;
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .fd-share {
    height: 50px;
    border-bottom: 1px solid #3a9fb1;
  }
  .fd-share .share-text {
    line-height: 50px;
    font-size: 12px;
    overflow: hidden;
  }
  .fd-share .sharelink-list .sharelink-item {
    width: 25px;
    height: 25px;
    font-size: 20px;
    line-height: 23px;
  }
  .fd-share .share-btn {
    line-height: 50px;
  }
}
@media screen and (min-width: 769px) {
  .fd-share {
    height: 100px;
  }
  .fd-share .share-text {
    font-size: 16px;
    line-height: 100px;
  }
  .fd-share .sharelink-list .sharelink-item {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .fd-share .sharelink-list .sharelink-item i {
    font-size: 25px;
  }
  .fd-share .share-btn {
    line-height: 100px;
  }
  .fd-share .share-btn a {
    font-size: 17px;
    padding: 10px 30px;
    background-color: #41b1c5;
    color: #fff;
  }
}
.fd-service {
  margin-top: 50px;
}
.fd-service .wechat-code {
  float: left;
  width: 30%;
}
.fd-service .wechat-code div {
  padding-bottom: 113%;
  background: url('../images/pc-picture/our_service.jpg') #fff center center;
 
  background-repeat: no-repeat;
	

}
.fd-service > nav {
  width: 50%;
  float: left;
}
.fd-service > nav ul {
  list-style: none;
}
.fd-service > nav ul li {
  float: left;
  width: 20%;
}
.fd-service > nav ul li h5 {
  margin-bottom: 10px;
}
.fd-service > nav ul li h5 a {
  font-size: 19px;
  font-weight: bold;
}
.fd-service > nav ul li a {
  display: block;
  color: #555;
  font-size: 16px;
  text-decoration: none;
  margin-bottom: 10px;
}
.fd-service .contact-us {
  float: right;
  width: 15%;
}
.fd-service .contact-us div {
  padding-bottom: 216%;
  background-image: url('../images/pc-picture/contact_us.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.fd-footer {
  background-color: #41b1c5;
}
.fd-footer .img-wrap {
  width: 70%;
  max-width: 339px;
  margin: 0 auto 30px;
}
.fd-footer .img-wrap div {
  position: relative;
  padding-bottom: 14.7%;
  height: 0;
}
.fd-footer .img-wrap div img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.fd-footer p {
  text-align: center;
  color: #fff;
  margin-bottom: 5px;
}
.fd-footer p a {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .fd-footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .fd-footer p {
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  .fd-footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .fd-footer p {
    font-size: 20px;
  }
}
#black-shield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  opacity: 1;
  z-index: 10;
  display: none;
}
#bottom-bar-wrap .bottom-bar {
  width: 100%;
  position: fixed;
  bottom: 0;
  display: flex;
  z-index: 9999;
}
#bottom-bar-wrap .bottom-bar .bottom-bar-item {
  width: 25%;
  display: block;
  background-color: #545454;
}
#bottom-bar-wrap .bottom-bar .bottom-bar-item > div {
  position: relative;
  padding-bottom: 55%;
}
#bottom-bar-wrap .bottom-bar .bottom-bar-item > div .wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
#bottom-bar-wrap .bottom-bar .bottom-bar-item > div .wrap img {
  width: 39%;
  height: 55%;
  display: block;
  margin: 0 auto;
}
#bottom-bar-wrap .bottom-bar .bottom-bar-item > div .wrap p {
  height: 30%;
  text-align: center;
  margin: 0;
  color: #fff;
}
@media screen and (min-width: 768px) {
  #bottom-bar-wrap {
    display: none;
  }
}
