/* #region 基础 */
strong {
    font-weight: bold !important;
}
.wrapper {
    box-sizing: border-box;
    width: 1400px;
    margin: 0 auto;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clearfix {
    zoom: 1;
}

.clearfix::before,
.clearfix::after {
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0;
}

.img {
    font-size: 0;
}

.img a {
    display: block;
    width: 100%;
    height: 100%;
}

.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* #endregion */

/* #region 头部 */
.search-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.search-bar .logo {
    width: 223px;
    height: 65px;
    margin-left: 50px;
}

.search-bar .logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.search-bar .logo img {
    width: 100%;
    height: 100%;
}

.search-bar .search {
    display: flex;
    width: 680px;
    height: 60px;
}

.search-bar .search input {
    box-sizing: border-box;
    flex: 1;
    padding: 10px 15px;
    color: #333;
    font-size: 20px;
    border-top: 2px solid #467cee;
    border-bottom: 2px solid #467cee;
    border-left: 2px solid #467cee;
    border-radius: 6px 0 0 6px;
}

.search-bar .search input::-webkit-input-placeholder {
    color: #e5e5e5;
}

.search-bar .search input::-moz-placeholder {
    color: #e5e5e5;
}

.search-bar .search input:-moz-placeholder {
    color: #e5e5e5;
}

.search-bar .search input:-ms-input-placeholder {
    color: #e5e5e5;
}

.search-bar .search button {
    width: 140px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    background: #467cee;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}

.search-bar .search button:hover {
    background: #4070da;
}

.search-bar .search button:active {
    background: #467cee;
}

.search-bar .search button>img {
    vertical-align: -8px;
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.navigation-bar {
    height: 66px;
    background: #467cee;
}

.navigation-bar .list {
    overflow: hidden;
    display: flex;
}

.navigation-bar .list li {
    flex-shrink: 0;
    height: 100%;
}

.navigation-bar .list li>a {
    display: block;
    height: 100%;
    padding: 0 24px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    line-height: 66px;
}

.navigation-bar .list li>a:hover {
    color: #467cee;
    background: #fff;
}

.navigation-bar .list .active a {
    color: #467cee;
    background: #fff;
}

/* #endregion */

/* #region 轮播 */
.banners a {
    display: block;
    width: 100%;
    height: 100%;
}

.banners a>img {
    width: 100%;
    height: 100%;
}

.banners .pagination {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    gap: 20px;
}

.banners .pagination li {
    width: 60px;
    height: 12px;
    background: #e5e5e5;
    border-radius: 6px;
    cursor: pointer;
}

.banners .pagination .active {
    background: #3d8ee3;
}

/* #endregion */

/* #region 内容 */
.module .title {
    text-align: center;
}

.module .title h2 {
    position: relative;
    display: inline-block;
    color: #467cee;
    font-size: 40px;
    font-weight: 700;
}

.module .title h2::before,
.module .title h2::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 154px;
    height: 4px;
    content: "";
}

.module .title h2::before {
    left: -114%;
    background: linear-gradient(90deg,
            rgba(70, 124, 238, 0),
            rgba(70, 124, 238, 1));
}

.module .title h2::after {
    right: -114%;
    background: linear-gradient(90deg,
            rgba(70, 124, 238, 1),
            rgba(70, 124, 238, 0));
}

.module .title span {
    display: block;
    color: rgba(70, 124, 238, 0.5);
    font-size: 24px;
    font-weight: 400;
}

.module .title a {
    margin-left: auto;
    color: #999;
    font-size: 16px;
    transition: 0.3s;
}

.module .title a:hover {
    color: #333;
    transition: 0.3s;
}

.module .title a>img {
    vertical-align: -4px;
    width: 20px;
    height: 20px;
    margin-left: 5px;
}

.module .title img {
    width: 40px;
    height: 40px;
}

.module .state {
    box-sizing: border-box;
    padding: 10px;
    background: #F1F1F1;
    margin-bottom: 20px;
}

.module .state p {
    color: #999;
    font-size: 10px;
    line-height: 183%;
}

.right .module .title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    padding-right: 10px;
    background: #f2f9ff;
}

.right .module .title h3 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
}

.right .module .title a {
    color: #467cee;
    font-size: 18px;
}

.right .module .title a>img {
    width: 12px;
    height: 20px;
    margin-left: 10px;
}

.right .module .content {
    margin-top: 20px;
}

/* #region 面包�? */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 11px;
    color: #383838;
    font-size: 14px;
}

.breadcrumb .location {
    overflow: hidden;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 24px;
}

.breadcrumb .location li {
    position: relative;
    max-width: 40%;
}

.breadcrumb .location li:not(:last-child)::before,
.breadcrumb .location li:not(:last-child)::after {
    position: absolute;
    right: -16px;
    width: 8px;
    height: 1px;
    content: "";
    background: #383838;
}

.breadcrumb .location li:not(:last-child)::before {
    top: 7px;
    transform: rotate(45deg);
}

.breadcrumb .location li:not(:last-child)::after {
    top: 12px;
    transform: rotate(-45deg);
}

.breadcrumb .location li>a {
    display: block;
    color: #383838;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.3s;
}

.breadcrumb .location li>a:hover {
    color: #467cee;
    transition: 0.3s;
}

/* #endregion */


/* #region 分页 */
.pagination .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}


.pagination .pagination a {
    font-size: 0;
}

.pagination .pagination a:nth-child(1) {
    color: #000;
    font-size: 16px;
    transition: .3s;
}

.pagination .pagination a:nth-child(1):hover {
    color: #467cee;
    transition: .3s;
}

.pagination .pagination {
    display: flex;
    align-items: center;
    gap: 30px;
}

.pagination .pagination li a {
    display: block;
    color: #000;
    font-size: 16px;
    text-align: center;
    transition: .3s;
}

.pagination .pagination .active {
    padding: 6px 12px;
    border: 1px solid #467cee;
    border-radius: 5px;
}

.pagination .pagination .active span {
    color: #467cee;
}

.pagination .pagination li a:hover {
    color: #467cee;
    transition: .3s;
}

.pagination .pagination .active a {
    color: #467cee;
}

.pagination .pagination li span {
    color: #000;
    user-select: none;
}
/* #endregion */


/* #region 相关 */
.left .related .title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.left .related .title img {
    width: 22px;
    height: 22px;
}

.left .related .title h3 {
    color: #333;
    font-size: 20px;
}

.left .related .title .nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 18px;
}

.left .related .title .nav li {
    position: relative;
    color: #A6A6A6;
    font-size: 20px;
    transition: .3s;
    cursor: pointer;
}

.left .related .title .nav li:not(:first-child)::before {
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 2px;
    height: 20px;
    content: "";
    border-radius: 1px;
    background: #467cee;
}

.left .related .title .nav .active {
    color: #467cee;
}

.left .related .title .nav li:hover {
    color: #467cee;
    transition: .3s;
}

.left .related .content .hide {
    display: none;
}

.left .related .content .active {
    display: block;
}

.left .related .article li {
    display: flex;
    gap: 23px;
}

.left .related .content li:not(:first-child) {
    margin-top: 30px;
}

.left .related .article .img {
    overflow: hidden;
    width: 206px;
    height: 128px;
    border-radius: 6px;
}

.left .related .article .info {
    overflow: hidden;
    flex: 1;
}

.left .related .article .info a {
    display: block;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: .3s;
}

.left .related .article .info a:hover {
    color: #467cee;
    transition: .3s;
}

.left .related .article .info p {
    margin-top: 10px;
    color: #808080;
    font-size: 16px;
    line-height: 155%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.left .related .sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.left .related .tags {
    display: flex;
    gap: 10px;
}

.left .related .tags span {
    display: inline-block;
    background: #FDF5EA;
    border-radius: 3px;
}

.left .related .tags .tag {
    padding: 2px 10px;
    color: #ED851C !important;
    font-size: 12px !important;
}

.left .related .sub>span {
    color: #808080;
    font-size: 14px;
}

.left .related .sub i {
    display: inline-block;
    width: 16px;
}

.left .related .answers li {
    overflow: hidden;
    flex: 1;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.left .related .answers li>a {
    position: relative;
    display: block;
    padding-left: 42px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: .3s;
}

.left .related .answers li>a::before {
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    content: "�?";
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    background: #467CEE;
    border-radius: 10px 10px 10px 0px;
}

.left .related .answers li>a:hover {
    color: #467cee;
    transition: .3s;
}

.left .related .answers li>p {
    position: relative;
    margin-top: 20px;
    padding-left: 42px;
    color: #808080;
    font-size: 16px;
    line-height: 155%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.left .related .answers li>p::before {
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    content: "�?";
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    background: #FA8346;
    border-radius: 10px 10px 0 10px;
}

.left .related .answers .sub {
    margin-top: 30px;
}
/* #endregion */


/* #region 热门文章 */
.right .hot-article .list {
    counter-reset: section;
}

.right .hot-article .list li {
    position: relative;
    padding-left: 39px;
}

.right .hot-article .list li:not(:first-child) {
    margin-top: 20px;
}

.right .hot-article .list li::before {
    box-sizing: border-box;
    position: absolute;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    counter-increment: section;
    content: counter(section);
    color: #383838;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    text-align: center;
    background: #f2fff4;
    border: 1px solid #467cee;
    border-radius: 4px;
}

.right .hot-article .list li:nth-child(1):before {
    color: #fff;
    background: #ff5a5f;
    border: 1px solid #ff5a5f;
}

.right .hot-article .list li:nth-child(2):before {
    color: #fff;
    background: #fa8346;
    border: 1px solid #fa8346;
}

.right .hot-article .list li:nth-child(3):before {
    color: #fff;
    background: #f5c045;
    border: 1px solid #f5c045;
}

.right .hot-article .list li>a {
    display: block;
    color: #000;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.3s;
}

.right .hot-article .list li>a:hover {
    color: #467cee;
    transition: 0.3s;
}

/* #endregion */


/* #region �?新话�? */
.right .newest-topic .links {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 12px;
}

.right .newest-topic .links li>a {
    display: block;
    padding: 4px 7px;
    color: #000;
    font-size: 14px;
    border: 1px solid #467cee;
    border-radius: 5px;
    transition: 0.3s;
}

.right .newest-topic .links li>a:hover {
    color: #467cee;
    transition: 0.3s;
}

/* #endregion */


/* #region 推荐医院 */
.right .recommend-hospital .list li {
    display: flex;
    gap: 10px;
}

.right .recommend-hospital .list li:not(:first-child) {
    margin-top: 10px;
}

.right .recommend-hospital .list .img {
    overflow: hidden;
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 5px;
}

.right .recommend-hospital .list .img span {
    position: absolute;
    top: 0;
    left: 10px;
    display: block;
    width: 28px;
    height: 27px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 27px;
    background: #fa8346;
}

.right .recommend-hospital .list .img span::before,
.right .recommend-hospital .list .img span::after {
    position: absolute;
    bottom: -6px;
    width: 0;
    height: 0;
    content: "";
}

.right .recommend-hospital .list .img span::before {
    left: 0;
    border-top: 3px solid #fa8346;
    border-right: 7px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 7px solid #fa8346;
}

.right .recommend-hospital .list .img span::after {
    right: 0;
    border-top: 3px solid #fa8346;
    border-right: 7px solid #fa8346;
    border-bottom: 3px solid transparent;
    border-left: 7px solid transparent;
}

.right .recommend-hospital .list .info {
    overflow: hidden;
    flex: 1;
}

.right .recommend-hospital .list .info a {
    display: block;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: .3s;
}

.right .recommend-hospital .list .info a:hover {
    color: #467cee;
    transition: .3s;
}

.right .recommend-hospital .list .info p {
    margin-top: 5px;
    color: #808080;
    font-size: 14px;
    line-height: 155%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.right .recommend-hospital .list .tags {
    display: flex;
    gap: 10px;
}

.right .recommend-hospital .list .tags span {
    margin-top: 10px;
    padding: 0 6px;
    color: #d95700;
    font-size: 12px;
    background: #FFDCC4;
    border-radius: 4px;
}

/* #endregion */


/* #region 推荐问答 */
.right .recommend-question .list li:not(:first-child) {
    margin-top: 16px;
}

.right .recommend-question .list li>a {
    position: relative;
    padding-left: 17px;
    color: #000;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: .3s;
}

.right .recommend-question .list li>a::before {
    position: absolute;
    top: 9px;
    left: 0;
    width: 8px;
    height: 8px;
    content: "";
    background: #467cee;
    border-radius: 50%;
}

.right .recommend-question .list li>a:hover {
    color: #467cee;
    transition: .3s;
}
/* #endregion */


/* #region 地区推荐 */
.right .recommend-region .top {
    display: flex;
    gap: 10px;
}

.right .recommend-region .box {
    position: relative;
    overflow: hidden;
    width: 108px;
    height: 108px;
    border-radius: 10px;
}

.right .recommend-region .img {
    width: 100%;
    height: 100%;
} 

.right .recommend-region .box a {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    background: rgba(56, 56, 56, 0.6);
}

.right .recommend-region .list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 13px;
    row-gap: 10px;
    margin-top: 10px;
}

.right .recommend-region .list li {
    width: 22%;
}

.right .recommend-region .list li>a {
    display: block;
    padding: 5px 4px;
    text-align: center;
    color: #467cee;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #467cee;
    border-radius: 5px;
    transition: 0.3s;
}

.right .recommend-region .list li>a:hover {
    color: #ffffff;
    background-color: #467cee;
    transition: 0.3s;
}
/* #endregion */


/* #endregion */

/* #region 底部 */
.footer {
    box-sizing: border-box;
    margin-top: 90px;
    padding: 30px 0;
    background: #fafafa;
}

.footer .hide {
    display: none;
}

.footer .active {
    display: block;
}

.footer .footer-nav {
    display: flex;
    gap: 26px;
    padding: 0 20px 25px;
    border-bottom: 1px solid #a6a6a6;
}

.footer .footer-nav li {
    position: relative;
    color: #383838;
    font-size: 18px;
    line-height: 28px;
    cursor: pointer;
}

.footer .footer-nav .active::after {
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 4px;
    content: "";
    background: #467cee;
    border-radius: 2px;
}

.footer .footer-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    column-gap: 26px;
    row-gap: 14px;
    margin-top: 20px;
    padding: 0 84px 25px 20px;
    border-bottom: 1px solid #a6a6a6;
}

.footer .footer-list li>a {
    color: #383838;
    font-size: 18px;
    line-height: 28px;
    transition: 0.3s;
}

.footer .footer-list li>a:hover {
    color: #467cee;
    transition: 0.3s;
}

.footer .footer-list li:last-child {
    position: absolute;
    top: 0;
    right: 0;
}

.footer .footer-list li:last-child img {
    vertical-align: -2px;
    width: 16px;
    height: 16px;
    margin-left: 6px;
}
.footer .links-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    column-gap: 26px;
    row-gap: 14px;
    margin-top: 20px;
    padding: 0 84px 25px 20px;
    border-bottom: 1px solid #a6a6a6;
}

.footer .links-list li>a {
    color: #383838;
    font-size: 18px;
    line-height: 28px;
    transition: 0.3s;
}

.footer .links-list li>a:hover {
    color: #467cee;
    transition: 0.3s;
}
.footer .about {
    display: flex;
    align-items: center;
    margin-top: 14px;
}

.footer .about .online {
    flex-shrink: 0;
    width: 150px;
    height: 110px;
}

.footer .about .copyright {
    width: 51%;
    margin-left: 20px;
}

.footer .about .links {
    display: flex;
    gap: 34px;
}

.footer .about .links li>a {
    color: #383838;
    font-size: 18px;
    transition: 0.3s;
}

.footer .about .links li>a:hover {
    color: #467cee;
    transition: 0.3s;
}

.footer .about .copyright p {
    margin-top: 20px;
    flex: 1;
    color: #a6a6a6;
    font-size: 16px;
    line-height: 125%;
}

.footer .about .copyright a{
    color: #a6a6a6;
}
.footer .about .copyright p:nth-child(2) {
    margin-top: 20px;
}
.footer .about .copyright p:nth-child(4) {
    margin-top: 10px;
}
.footer .about .qr-code {
    flex-shrink: 0;
    margin-left: 70px;
    text-align: center;
}

.footer .about .qr-code .img {
    overflow: hidden;
    width: 115px;
    height: 115px;
    border-radius: 10px;
}

.footer .about .qr-code span {
    color: #000;
    font-size: 16px;
}

/* #endregion */

.transition_none *{
    -webkit-transition:none!important;
    -moz-transition:none!important;
    -ms-transition:none!important;
    -o-transition:none!important;
    transition:none!important;
}

.article table tr:first-child td{
    font-size: 14px;
    color: #333;
    background: #edf7fb;
    border: #4574DB 1px solid;
    text-align: center;
    vertical-align: center;
    padding: 5px 10px;
}

.article table tr td {
    border: #ddd 1px solid;
    border-left: #ddd 1px solid;
    border-top: none;
    background: #FAFAFA;
    text-align: center;
    padding: 10px ;
}


.article .content .tips {
  background-color: #467cee;
  border: 1px solid #467cee;
  border-radius: 3px;
  padding: 10px;
}
.article .content .tips .tips-title {
  color: #467cee;
  margin: 0;
}
.article .content .cite {
  border-left: 2px solid #467cee;
  color: #467cee;
  padding: 5px 5px 5px 10px;
  text-align: left;
  text-indent: 2em;
}

.article .content p {
    text-align: left;
}


.article .custom-tb {
  text-align: left;
}

.article .align-tr {
  height: 30px;
  color: #999;
  font-size: 14px;
}

.article .left-th {
  vertical-align: middle;
  width: 20px;
  padding: 10px;
  text-align: center;
  background-color: #F3F9FE;
 
}


.article .top-th {
  vertical-align: middle;
  padding-left: 20px;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  background-color: #FAFAFA;
}

.article .content-td {
  box-sizing: border-box;
  padding: 20px;
  color: #666;
  font-size: 14px;
  vertical-align: baseline;
  background-color: #FAFAFA;
}

.article .custom-tb .content-td {
    border-top: 1px solid #f0f0f0;
}

/*问答样式*/
.article .dialogue li {
  margin-top: 30px;
  list-style: none;
}

.article .dialogue li:first-child {
  margin-top: 0;
}

.article .dialogue li>div {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.article .dialogue .user {
  flex-direction: row-reverse;
}

.article .dialogue .name {
  color: #666;
  font-size: 14px;
  text-align: center;
}

.article .dialogue .img {
  overflow: hidden;
  width: 44px;
  height: 44px;
  margin: 0 auto;
  margin-bottom: 10px;
  border-radius: 50%;
}

.article .dialogue .doctor .img {
  background-image: url("../images/doctor-avatar.png");
  background-size: 100% 100%;
}

.article .dialogue .user .img {
  background-image: url("../images/patient-avatar.png");
  background-size: 100% 100%;
}

.article .dialogue p {
  margin: 0 !important;
  text-indent: 0 !important;
  line-height: 130% !important;
  display: inline-block;
  max-width: 50%;
  padding: 10px 20px;
  color: #333;
  font-size: 16px;
  border-radius: 4px;
}

.article .dialogue .answer {
  background: #F3F9FE;
}

.article .dialogue .question {
  background: #f5f5f5;
}
.content p img {
  max-width: 80%;
}

.article .content {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
