/* #region 基本样式 */
body {
  background: #fff;
  font-size: 16px;
}

.wrapper {
  box-sizing: border-box;
  width: 1200px;
  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 a {
  display: block;
  width: 100%;
  height: 100%;
}

.img img {
  width: 100%;
  height: 100%;
}
/* #endregion */

/* #region 头部 */
.header {
  width: 100%;
  height: 100px;
  background: #fff;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.16);
}

.header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* logo */
.header .logo {
  width: 237px;
  height: 100%;
}

.header .logo a {
  display: block;
  width: 80%;
  height: 80%;
  margin-top: 10px;
}

.header .logo img {
  width: 100%;
  height: 100%;
}

/* 头部导航栏 */
.header .header-nav {
  display: flex;
  font-size: 20px;
  font-weight: 500;
}

.header .header-nav a {
  display: inline-block;
  width: 88px;
  height: 40px;
  color: #999;
  text-align: center;
  line-height: 40px;
  transition: 0.3s;
}

.header .header-nav a:hover {
  color: #ff7a7d;
  transition: 0.3s;
}

.header .header-nav .active {
  color: #fff;
  background: #ff7a7d;
  border-radius: 20px;
}

.header .header-nav .active:hover {
  color: #fff;
}

/* 头部搜索 */
.header .header-search {
  position: relative;
  overflow: hidden;
  width: 200px;
  height: 45px;
  border-radius: 12px;
  border: 1px solid #999;
}

.header .header-search::after {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 1;
  display: block;
  width: 24px;
  height: 24px;
  content: "";
  background: url(../../icon/qy/search.png) no-repeat;
}

.header .header-search input {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding-left: 16px;
  padding-right: 46px;
  border: 0;
  font-size: 16px;
  font-weight: 300;
}
/* #endregion */

/* #region 内容 */
main {
  margin-top: 30px;
}
/* #endregion */

/* #region 面包屑 */
.breadcrumb {
  margin: 16px auto;
  background-color: white;
  padding: 16px;
  box-sizing: border-box;
  border-radius: 12px;
}

.breadcrumb .link {
  width: calc(100% - 112px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0;
}

.breadcrumb .link a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 50%;
  color: #666;
  font-size: 16px;
  font-weight: 300;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.3s;
}

.breadcrumb .link a:not(:last-child) {
  padding-right: 15px;
}

.breadcrumb .link a:not(:last-child)::after {
  position: absolute;
  top: 2px;
  right: 7.5px;
  content: "";
  width: 1px;
  height: 80%;
  background: #666;
  transform: rotate(15deg);
}

.breadcrumb .link a:hover {
  color: #000;
  transition: 0.3s;
}

.breadcrumb .link .active {
  color: #000;
}
/* #endregion */

/* #region 查找城市 */
.find-city .nav > a {
  display: inline-block;
  width: 120px;
  height: 60px;
  color: #999;
  font-size: 16px;
  font-weight: 300;
  line-height: 60px;
  text-align: center;
  border-radius: 12px 12px 0 0;
}

.find-city .nav .active {
  color: #ff7a7d;
  background: #fff;
}

.find-city .content {
  box-sizing: border-box;
  padding: 36px;
  background: #fff;
  border-radius: 12px;
}

.find-city .city-list {
  display: flex;
  gap: 36px;
  font-weight: 300;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.find-city .city-list:first-child {
  padding-top: 0;
}

.find-city .city-list:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.find-city .content > .hide {
  display: none;
}

.find-city .content > .active {
  display: block;
}

.find-city .content h3 {
  color: #666;
  font-size: 20px;
  font-weight: bold;
}

.find-city .list {
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 36px;
  row-gap: 16px;
  width: calc(100% - 108px);
}

.find-city .list a {
  color: #666;
  font-size: 16px;
  transition: 0.3s;
}

.find-city .list a:hover {
  color: #ff7a7d;
  transition: 0.3s;
}

.find-city .province .list {
  box-sizing: border-box;
  position: relative;
  height: 28px;
  padding-right: 50px;
}

.find-city .province .show {
  height: 100%;
}

.find-city .active {
  color: #ff7a7d !important;
}

.find-city .expand {
  position: absolute;
  top: 0;
  right: 2px;
}

.find-city .expand span {
  vertical-align: middle;
  color: #009ade;
}

.find-city .expand img {
  vertical-align: middle;
  transition: 0.3s;
}

.find-city .expand .rotate {
  transform: rotate(90deg);
  transition: 0.3s;
}

/* #endregion */

/* #region 分页 */
.pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 60px 0 20px;
}

.pages button {
  box-sizing: border-box;
  width: 108px;
  height: 56px;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  background: #ccc;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.pages button:hover {
  background: #ff7a7d;
  transition: 0.3s;
}

.pages button:active {
  border: 1px solid #ff7a7d;
  transition: 0.3s;
}

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

.pagination li {
  font-size: 16px;
  font-weight: 300;
}

.pagination a{
  display: inline-block;
  width: 35px;
  height: 35px;
  color: #ccc;
  text-align: center;
  line-height: 35px;
  border: 1px solid #ff7a7d;
  border-radius: 4px;
}

.pagination .active {
  display: inline-block;
  width: 35px;
  height: 35px;
  color: #fff;
  text-align: center;
  line-height: 35px;
  background: #ff7a7d;
  border: 1px solid #ff7a7d;
  border-radius: 4px;
}

.pagination .active span {
  color: #ffffff;
}

/* .pagination li:last-child a {
  box-sizing: border-box;
  display: inline-block;
  width: 56px;
  height: 56px;
  color: #fff;
  text-align: center;
  line-height: 56px;
  background: #ccc;
  border-radius: 4px;
  transition: 0.3s;
}

.pagination li:last-child a:hover {
  color: #fff;
  background: #ff7a7d;
  transition: 0.3s;
}

.pagination li:last-child a:active {
  border: 1px solid #ff7a7d;
  transition: 0.3s;
} */

.pagination li > a,
.pagination li > span {
  color: #999;
  transition: 0.3s;
}

.pagination li > a:hover {
  color: #ff7a7d;
}
/* #endregion */

/* #region 底部 */
.footer {
  width: 100%;
  margin-top: 30px;
}

/* 底部关于 */
.footer-about {
  width: 100%;
  background: #ff7a7d;
}

.footer-about .wrapper {
  height: 100%;
  padding: 30px 0;
}

/* 底部导航栏 */
.footer-nav {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 36px;
  height: 40px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.footer-nav a {
  color: #eee;
  font-size: 16px;
  font-weight: 300;
  transition: 0.3s;
}

.footer-nav .active {
  position: relative;
  font-size: 20px;
  font-weight: 300;
  transition: 0.3s;
}

.footer-nav .active::after {
  position: absolute;
  left: 0;
  bottom: -13px;
  display: block;
  width: 100%;
  height: 4px;
  content: "";
  background: #eee;
  transition: 0.3s;
}

/* 底部列表栏 */
.footer-link .link {
  box-sizing: border-box;
  position: relative;
  margin-top: 15px;
  padding-bottom: 15px;
  font-size: 16px;
  border-bottom: 1px solid #eee;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 5px;
}

.footer-link .hide {
  display: none;
}

.footer-link .active {
  display: block;
}

.footer-link .link a {
  color: #eee;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.footer-link .link a:not(:last-child) {
  margin-right: 80px;
}

.footer-link .link a:last-child {
  position: absolute;
  right: 0;
  z-index: 1;
}

/* 底部其他 */
.footer-other {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.footer-logo {
  width: 294px;
  height: 210px;
}

.footer-logo a {
  width: 80%;
  height: 80%;
  margin-left: 27px;
  margin-top: 25px;
}

/* 底部帮助 */
.footer-help {
  display: flex;
  gap: 80px;
}

.footer-help .box h3 {
  color: #eee;
  font-size: 20px;
  font-weight: 500;
}

.footer-help .link {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 36px;
}

.footer-help .link a {
  position: relative;
  padding-left: 18px;
  color: #eee;
  font-size: 16px;
  font-weight: 300;
}

.footer-help .link a::before {
  position: absolute;
  left: 0;
  top: 8px;
  display: block;
  width: 6px;
  height: 6px;
  content: "";
  background: #eee;
  border-radius: 50%;
}

/* 联系方式 */
.footer-contacts {
  font-size: 24px;
  font-weight: 500;
}

.footer-contacts h3 {
  color: #eee;
}

.qr-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  text-align: center;
}

.qr-code .box{
  margin: 0 20px;
}

.qr-code .img {
  overflow: hidden;
  width: 102px;
  height: 102px;
  margin-top: 10px;
  border-radius: 12px;
}

.qr-title {
  margin-top: 10px;
  color: #eee;
  font-size: 16px;
}

/* 底部版权 */
.footer-copyright {
  width: 100%;
  height: 168px;
  background: #ccc;
  text-align: center;
}

.footer-copyright .wrapper {
  height: 100%;
  padding: 36px 0;
}

.footer-copyright h3 {
  color: #333;
  font-size: 24px;
  font-weight: 500;
}

.footer-copyright p {
  margin-top: 18px;
  color: #333;
  font-size: 16px;
  font-weight: 300;
}
/* #endregion */

/* #region 侧边 */
.broadside {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

.broadside a {
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  width: 135px;
  height: 135px;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  background: #ff7a7d;
  border-radius: 4px;
}

.broadside a:not(:first-child) {
  margin-top: 16px;
  padding: 24px 0;
}

.broadside a:first-child > img {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}

.broadside a > img {
  display: block;
  margin: 0 auto;
  margin-bottom: 8px;
}
/* #endregion */

/* Right Start */
/* #region 基本样式 */
.right .module {
  padding: 24px;
  background: #fff;
  border-radius: 12px;
}

.right .module .title img {
  vertical-align: middle;
  width: 26px;
  height: 26px;
  margin-right: 12px;
}

.right .module .title h3 {
  display: inline-block;
  vertical-align: middle;
  color: #ff7a7d;
  font-size: 20px;
  font-weight: 500;
}

.right .module .content {
  margin-top: 20px;
}
/* #endregion */

/* #region 话题圈 */
.right .topic-circle {
  display: flex;
  justify-content: space-between;
}

.right .topic-circle .left {
  width: calc(100% - 130px);
}

.right .topic-circle .list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666;
  font-size: 16px;
  font-weight: 300;
}

.right .topic-circle .list li:not(:first-child) {
  margin-top: 16px;
}

.right .topic-circle .list a {
  box-sizing: border-box;
  display: inline-block;
  padding: 3px 7px;
  color: #ff7a7d;
  border: 1px solid #ff7a7d;
  border-radius: 15px;
  margin-left: 10px;
}

.right .topic-circle .right {
  text-align: center;
}

.right .topic-circle .img {
  overflow: hidden;
  width: 122px;
  height: 122px;
  margin: 0 auto;
  border-radius: 12px;
}

.right .topic-circle .right span {
  display: inline-block;
  margin-top: 10px;
  color: #ff7a7d;
  font-size: 16px;
  font-weight: 300;
}
/* #endregion */

/* #region 热门资讯 */
.right .hot-news .list li:not(:first-child) {
  margin-top: 15px;
}

.right .hot-news .list li > a {
  display: inline-block;
  width: 100%;
  color: #666;
  font-size: 16px;
  font-weight: 300;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.3s;
}

.right .hot-news .list li > a:hover {
  color: #ff7a7d;
  transition: 0.3s;
}

/* #endregion  */

/* #region 正在关注 */
.right .concern .links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.right .concern .box {
  width: calc(33% - 6px);
}

.right .concern .links > a {
  display: block;
}

.right .concern .img {
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
}

.right .concern .links h4 {
  margin-top: 16px;
  color: #666;
  font-size: 16px;
  font-weight: 300;
  transition: 0.3s;
}

.right .concern .links a:hover h4 {
  color: #ff7a7d;
  transition: 0.3s;
}

.right .concern .links span {
  display: block;
  margin-top: 8px;
  color: #666;
  font-size: 12px;
  font-weight: 300;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.right .concern .content > a {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  height: 48px;
  margin-top: 26px;
  color: #ff7a7d;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  line-height: 48px;
  border: 1px solid #ff7a7d;
  border-radius: 12px;
}
/* #endregion */

/* #region 链接图 */
.right .link-img {
  overflow: hidden;
  width: 100%;
  height: 430px;
  margin-top: 30px;
  border-radius: 12px;
}
/* #endregion */

/* #region 热门标签 */
.right .hot-tag .link {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.right .hot-tag .link a {
  display: inline-block;
  padding: 3px 7px;
  color: #ff7a7d;
  font-size: 16px;
  font-weight: 300;
  border: 1px solid #ff7a7d;
  border-radius: 4px;
}

/* #endregion */

/* Right End */

.article .content .tips {
  background-color: #fdf3f3;
  border: 1px solid #ff7a7d;
  border-radius: 3px;
  padding: 10px;
}
.article .content .tips .tips-title {
  color: #ff7a7d;
  margin: 0;
}
.article .content .cite {
  border-left: 2px solid #ff7a7d;
  color: #ff7a7d;
  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: #fdf3f3;
}


.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 {
  position: relative;
  padding-top: 54px;
  color: #666;
  font-size: 14px;
  text-align: center;
}

.article .dialogue .img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.article .dialogue .doctor {
  justify-content: flex-start;
}

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

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

.article .dialogue .doctor .name::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 44px;
  height: 44px;
  content: "";
  background-image: url("../../../../img.q.haoyunwuyou.com/doctor-avatar.png");
  background-size: 100% 100%;
  border-radius: 50%;
}

.article .dialogue .user .name::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 44px;
  height: 44px;
  content: "";
  background-image: url("../../../../img.q.haoyunwuyou.com/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: #fdf3f3;
}

.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;
}
.breadcrumb {
  color: #666;
}
.breadcrumb h3{
  display: none;
}