.mcontainer {
  width: 100%;
  max-width: 7.5rem;
  min-width: 3.2rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.flex-row {
    display: flex;
    flex-direction: row;
}
.space-between {
    justify-content: space-between;
}
.align-center {
    align-items: center;
}
.flex-start {
    align-items: flex-start;
}
.mheader {
  width: 100%;
  max-width: 7.5rem;
  min-width: 3.2rem;
  margin: 0 auto;
  /*height: 1.87rem;*/
  background: #fff;
  padding: 0.15rem 0.24rem;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  z-index: 999;
}
.slogan {
    width: 90%;
}
.slogan>img {
    width: 100%;
}
.mheader .top {
  height: 0.67rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mheader .top .mlogo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mheader .top .mlogo .logo {
  width: 1.8rem;
  height: 0.67rem;
  padding-right: 0.26rem;
  border-right: 1px solid #646464;
}
.mheader .top .mlogo .text {
  margin-left: 0.2rem;
  display: inline-block;
}
.mheader .top .mlogo .text .icon {
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.1rem;
  vertical-align: middle;
}
.mheader .top .mlogo .text p {
  font-size: 0.2rem;
  color: #ed6200;
  line-height: 0.3rem;
}
.mheader .top .menu {
  width: 0.48rem;
  height: 0.46rem;
}

.mheader .msearch {
  width: 100%;
  /*height: 0.62rem;*/
  /*margin-top: 0.3rem;*/
  position: relative;
  font-size: 0;
}
.mheader .msearch input {
  width: 100%;
  height: 0.62rem;
  border-radius: 0.3rem;
  border: 1px solid #a0a0a0;
  font-size: 0.26rem;
  color: #a7a7a7;
  padding: 0 0.85rem 0 0.3rem;
  box-sizing: border-box;
  outline: none;
}
.mheader .msearch .icon {
  width: 0.24rem;
  height: 0.24rem;
  position: absolute;
  right: 0.44rem;
  top: 50%;
  transform: translate(0, -50%);
}
.mnav_fixed {
  position: fixed;
  top: 0;
  right: -7.5rem;
  bottom: 0;
  background: rgba(32, 32, 32, 0);
  z-index: 999;
  transition: all 0.4s ease;
}
.mnav {
  width: 5.4rem;
  height: 100%;
  /*background: #f4924b;*/
  background: #fff;
  position: fixed;
  top: 0;
  right: -5.4rem;
  transition: all 0.4s ease;
  z-index: 999;
}
.mnav_fixed.in {
  left: 0;
  right: 0;
  background: rgba(32, 32, 32, 0.5);
}
.mnav.open {
  right: 0;
}
.mnav .close {
  width: 0.42rem;
  height: 0.42rem;
  position: absolute;
  top: 0.2rem;
  right: 0.22rem;
}
.mnav .list {
  margin-top: 1rem;
}
.mnav dt a {
  padding: 0.2rem 0.4rem;
  border-bottom: 2px solid #f6dcca;
  box-sizing: border-box;
  font-size: 0.28rem;
  /*color: #fff;*/
  color:#000;
  display: block;
}
.mnav dd {
  border-bottom: 2px solid #f6dcca;
  display: none;
}
.mnav dd a {
  padding: 0.2rem 0.4rem;
  box-sizing: border-box;
  font-size: 0.28rem;
  /*color: #fff;*/
  color: #000;
  display: block;
  text-indent: 2em;
}
.mnav .navlogo {
  margin-top: 0.35rem;
  padding: 0 0.2rem;
  box-sizing: border-box;
}
.mnav .navlogo img {
  width: 2.87rem;
  height: 1rem;
}
.mnav .navlogo span {
  font-size: 0.28rem;
  color: #fff;
  display: block;
  margin-top: 0.25rem;
  margin-left: 0.2rem;
}

.title {
  width: 100%;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid #ececec;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.title::before {
  content: "";
  width: 0.76rem;
  height: 2px;
  background: #333;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.title h2 {
  font-size: 0.36rem;
  color: #333;
  font-weight: bold;
}
.title a {
  font-size: 0.24rem;
  color: #fff;
  line-height: 0.48rem;
  background: #f4924b;
  border-radius: 0.3rem;
  display: inline-block;
  padding: 0 0.24rem;
}

.title1 {
  padding: 0.3rem 0;
  text-align: center;
}
.title1 h2 {
  font-size: 0.4rem;
  color: #333;
  font-weight: bold;
}

.crumbs {
  padding: 0.2rem 0.2rem;
  border-bottom: 1px solid #dcdcdc;
}
.crumbs p {
  font-size: 0.2rem;
  color: #666;
}
.crumbs a {
  color: #000;
}

.pagination {
  margin-top: 0.35rem;
  text-align: center;
  font-size: 0;
}
.pagination .list {
  display: inline-block;
  padding-left: 0;
  border-radius: 0.04rem;
}
.pagination .list > li {
  display: inline;
}
.pagination .list > li:first-child > a,
.pagination .list > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 0.04rem;
  border-bottom-left-radius: 0.04rem;
}
.pagination .list > li > a,
.pagination .list > li > span {
  position: relative;
  float: left;
  padding: 0.06rem 0.12rem;
  margin-left: -1px;
  font-size: 0.24rem;
  color: #909090;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination .list > .active > a,
.pagination .list > .active > a:focus,
.pagination .list > .active > a:hover,
.pagination .list > .active > span,
.pagination .list > .active > span:focus,
.pagination .list > .active > span:hover {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #f4924b;
  border-color: #f4924b;
}

.main {
  padding: 0.3rem 0.2rem;
  box-sizing: border-box;
}

.mfooter {
  padding: 0.4rem 0.2rem;
  background: #012877;
  box-sizing: border-box;
}
.mfooter .fnav {
  margin-bottom: 0.5rem;
  font-size: 0;
}
.mfooter .fnav .tit {
  margin-bottom: 0.2rem;
}
.mfooter .fnav .tit p {
  font-size: 0.32rem;
  color: #fff;
}
.mfooter .fnav a {
  font-size: 0.28rem;
  color: #fff;
  margin: 0.2rem 0.4rem 0.2rem 0;
  display: inline-block;
}
.mfooter .list {
  margin-top: 0.2rem;
  font-size: 0;
}
.mfooter .list li {
  padding-bottom: 0.4rem;
  margin-bottom: 0.4rem;
  border-bottom: 2px solid #fff;
}
.mfooter .list li p {
  font-size: 0.28rem;
  color: #fff;
  line-height: 0.5rem;
}
.mfooter .list li a {
  color: #fff;
  display: inline-block;
  margin-right: 0.4rem;
}
.mfooter .fcontact {
  margin-top: 0.4rem;
  font-size: 0;
}
.mfooter .fcontact p {
  font-size: 0.32rem;
  color: #fff;
  margin-bottom: 0.2rem;
}
.mfooter .fcontact span {
  font-size: 0.24rem;
  color: #fff;
  display: inline-block;
  margin-right: 0.3rem;
}
.mfooter .fcontact .icon {
  width: 0.26rem;
  height: 0.26rem;
  margin-right: 0.1rem;
}
.mfooter .ewmlist {
  margin-top: 0.4rem;
  font-size: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.mfooter .ewmlist li {
  width: 33.33%;
  text-align: center;
}
.mfooter .ewmlist li img {
  width: 1.62rem;
  height: 1.62rem;
}
.mfooter .ewmlist li p {
  font-size: 0.24rem;
  color: #fff;
  margin-top: 0.2rem;
  text-align: center;
  line-height: 0.48rem;
  white-space: nowrap;
}
.mcopyright {
  padding: 0.28rem 0.1rem;
  background: #082177;
  /*background: #000;*/
  font-size: 0;
  box-sizing: border-box;
}
.mcopyright p {
  font-size: 0.24rem;
  color: #fff;
  line-height: 0.48rem;
  text-align: center;
}

.mcontent {
  margin-top: 2rem;
}

.mbanner {
  width: 100%;
}
.mbanner img {
  width: 100%;
}

.tabnav {
  margin-top: 0.5rem;
}
.tabnav .list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0;
}
.tabnav .list li {
  width: 2.4rem;
  height: 1.4rem;
  background: #fff;
  box-shadow: 0 0 0.1rem rgba(192, 192, 192, 0.5);
  margin: 0.05rem 0.05rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.tabnav .list li img {
  width: 0.48rem;
  height: 0.48rem;
}
.tabnav .list li span {
  font-size: 0.24rem;
  color: #1f1f1f;
  display: block;
  margin-top: 0.2rem;
}
.tabnav .list li .img2 {
  display: none;
}
.tabnav .list li.active {
  background: #f4924b;
}
.tabnav .list li.active span {
  color: #fff;
}
.tabnav .tabnav_content {
  margin-top: 0.25rem;
  padding: 0.2rem 0.5rem;
  background: #fde9db;
  box-sizing: border-box;
}
.tabnav .tabnav_content .conlist {
  width: 100%;
  font-size: 0;
  display: none;
}
.tabnav .tabnav_content .conlist a {
  font-size: 0.26rem;
  color: #6b6b6b;
  line-height: 0.52rem;
  margin-right: 0.4rem;
  display: inline-block;
}
.tabnav .tabnav_content .conlist a:hover {
  color: #f4924b;
  font-weight: bold;
}

.platform {
  margin-top: 0.3rem;
  background: #fff;
  box-shadow: 0 0 0.09rem rgba(149, 149, 149, 0.29);
  padding: 0.3rem 0.55rem;
  box-sizing: border-box;
}

.platform .top {
  width: 5.2rem;
  margin: 0 auto;
  font-size: 0;
}
.platform .top .item {
  width: 100%;
  margin-bottom: 0.3rem;
}
.platform .top .item .pic {
  margin-bottom: 0.1rem;
}
.platform .top .item .pic .flag {
  width: 0.82rem;
  height: 0.54rem;
  vertical-align: middle;
}
.platform .top .item .pic .arrow {
  width: 0.26rem;
  height: 0.17rem;
  vertical-align: middle;
  margin: 0 0.18rem;
}
.platform .top .item p {
  font-size: 0.2rem;
  color: #414141;
  line-height: 0.42rem;
}
.platform .middle {
  width: 6.01rem;
  height: 3.5rem;
  background: url("../images/platform_img.png") no-repeat;
  background-size: 100% 100%;
  margin: 0.2rem auto 0;
  position: relative;
}
.platform .middle .text {
  position: absolute;
  top: 1.4rem;
}
.platform .middle .text p {
  font-size: 0.36rem;
  color: #ff6666;
  line-height: 0.48rem;
}
.platform .middle .text:nth-child(1) {
  left: 0.5rem;
}
.platform .middle .text:nth-child(2) {
  right: 0.5rem;
}
.platform .bottom {
  width: 5.82rem;
  margin: 20px auto 0;
}
.platform .bottom dl {
  display: inline-block;
  vertical-align: top;
}
.platform .bottom dl:not(:last-child) {
  margin-right: 0.9rem;
}
.platform .bottom dt {
  font-size: 0.32rem;
  color: #f4924b;
  margin-bottom: 0.2rem;
}
.platform .bottom dd {
  font-size: 0.28rem;
  color: #414141;
  margin-bottom: 0.1rem;
}
.platform .bottom .txt {
  margin-top: 0.2rem;
  text-align: center;
}
.platform .bottom .txt p {
  font-size: 0.23rem;
  color: #f4924b;
}
.scheme_box .top {
  width: 100%;
  height: 1.2rem;
  background: #f4924b;
  margin-top: 0.3rem;
}
.scheme_box .top p {
  font-size: 0.36rem;
  color: #fff;
  text-align: center;
  line-height: 1.2rem;
}
.scheme_box .bottom {
  width: 100%;
  height: 9.16rem;
  background: url("../images/mscheme_bg.png") no-repeat;
  border: 2px solid #c1a065;
  box-sizing: border-box;
  margin-top: 0.08rem;
}
.scheme_box .bottom .box {
  width: 6.63rem;
  height: 8.72rem;
  background: #fff;
  border: 2px solid #8c4913;
  margin: 0.2rem auto 0;
  box-sizing: border-box;
}
.scheme_box .bottom .box .tit {
  border-bottom: 1px solid #e5e5e5;
}
.scheme_box .bottom .box .tit p {
  font-size: 0.36rem;
  color: #f4924b;
  line-height: 0.48rem;
  padding: 0.3rem 0.3rem;
  box-sizing: border-box;
  text-align: center;
}
.scheme_box .bottom .box .list {
  margin-top: 0.5rem;
  font-size: 0;
}
.scheme_box .bottom .box .list li {
  margin-bottom: 0.8rem;
  text-align: center;
}
.scheme_box .bottom .box .list li p {
  font-size: 0.32rem;
  color: #424242;
  line-height: 0.4rem;
  text-align: center;
  margin-bottom: 0.35rem;
}
.scheme_box .bottom .box .list li span {
  font-size: 0.26rem;
  color: #747474;
  display: inline-block;
  margin: 0 0.09rem;
}

.mprocess {
  margin-top: 0.35rem;
}
.mprocess img {
  width: 100%;
}
.service_box .top {
  width: 100%;
  height: 1.2rem;
  background: #f4924b;
  margin-top: 0.3rem;
}
.service_box .top p {
  font-size: 0.36rem;
  color: #fff;
  text-align: center;
  line-height: 1.2rem;
}
.service_box .bottom {
  width: 100%;
  height: 11.44rem;
  background: url("../images/mservice_bg.png") no-repeat;
  border: 2px solid #c1a065;
  box-sizing: border-box;
  margin-top: 0.08rem;
}
.service_box .bottom .box {
  width: 6.63rem;
  height: 10.95rem;
  background: #fff;
  border: 2px solid #8c4913;
  margin: 0.2rem auto 0;
  padding: 0.5rem 0.5rem;
  box-sizing: border-box;
}
.service_box .bottom .box .list {
  width: 100%;
  font-size: 0;
}
.service_box .bottom .box .list li {
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service_box .bottom .box .list li .text {
  width: 3.2rem;
  text-align: center;
}
.service_box .bottom .box .list li .text span {
  font-size: 0.32rem;
  color: #3b3b3b;
  line-height: 0.48rem;
  margin-bottom: 0.3rem;
  display: block;
}
.service_box .bottom .box .list li .text p {
  font-size: 0.26rem;
  color: #747474;
  line-height: 0.4rem;
}
.service_box .bottom .box .list li .pic {
  width: 2.17rem;
  position: relative;
}
.service_box .bottom .box .list li .pic .arrow {
  width: 0.23rem;
  height: 0.16rem;
  position: absolute;
  bottom: -0.7rem;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
}
.service_box .bottom .box .list li .pic img {
  width: 2.17rem;
  height: 2.17rem;
  border-radius: 50%;
  position: relative;
}
.service_box .bottom .box .list li:not(:first-child) .pic::before {
  content: "";
  width: 0;
  height: 1rem;
  border-left: 2px dashed #eee4d2;
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translate(-50%, 0);
}
.service_box .bottom .box .list li:not(:last-child) .pic::after {
  content: "";
  width: 0;
  height: 1rem;
  border-left: 2px dashed #eee4d2;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translate(-50%, 0);
}

.case_box {
  margin-top: 0.24rem;
}
.case_box .tips {
  width: 100%;
}
.case_box .tips p {
  font-size: 0.3rem;
  color: #404040;
  line-height: 0.6rem;
}
.case_box .type {
  margin-top: 0.2rem;
  background: #f7f7f7;
  padding: 0.2rem 0.2rem;
}
.case_box .type p {
  font-size: 0.26rem;
  color: #333;
}
.case_box .type span,
.case_box .type a {
  font-size: 0.26rem;
  color: #666;
  line-height: 0.38rem;
  padding: 0 0.15rem;
  border: 1px solid #888;
  border-radius: 0.05rem;
  display: inline-block;
  margin: 0.09rem 0.09rem;
}
.case_box .type span.active,
.case_box .type a.active {
  color: #fff;
  background: #f4924b;
  border: 1px solid #f4924b;
}
.case_box .list {
  margin-top: 0.24rem;
}
.case_box .list li {
  background: #fff;
  box-shadow: 0 0 0.08rem rgba(0, 0, 0, 0.16);
  margin-bottom: 0.2rem;
  padding: 0.2rem 0.2rem;
  box-sizing: border-box;
}
.case_box .list li a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.case_box .list li img {
  width: 2rem;
  height: 2.16rem;
  margin-right: 0.25rem;
}
.case_box .list li .text {
  flex: 1;
}
.case_box .list li .text .name {
  font-size: 0;
}
.case_box .list li .text .name p {
  font-size: 0.32rem;
  color: #282828;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 0.2rem;
}
.case_box .list li .text .name span {
  font-size: 0.26rem;
  color: #282828;
  margin-right: 0.4rem;
  display: inline-block;
}
.case_box .list li .text .name .icon {
  width: 0.25rem;
  height: 0.25rem;
  margin-right: 0.1rem;
}
.case_box .list li .text .txt {
  margin-top: 0.2rem;
}
.case_box .list li .text .txt p {
  font-size: 0.26rem;
  color: #7d7d7d;
  line-height: 0.48rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.case_box .list li .text .txt span {
  color: #454545;
}
.ad_img {
  width: 100%;
}
.ad_img img {
  width: 100%;
}

.expert {
  margin-top: 0.3rem;
}
.expert .tablist {
  width: 100%;
  white-space: nowrap;
  overflow-x: scroll;
  font-size: 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f5f5f5;
}
.expert .tablist li {
  display: inline-block;
  margin-right: 0.4rem;
}
.expert .tablist li span {
  font-size: 0.26rem;
  color: #333;
  position: relative;
  padding-bottom: 0.15rem;
}
.expert .tablist li.active span::before {
  content: "";
  width: 0.4rem;
  height: 0.04rem;
  background: #ef751f;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
.expert .tabcontent {
  margin-top: 0.3rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid #f5f5f5;
}
.expert .tabcontent .list {
  width: 100%;
  display: none;
}
.expert .tabcontent .list.on {
  display: block;
}
.expert .tabcontent .list .item {
  display: inline-block;
}
.expert .tabcontent .list .item .userinfo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.expert .tabcontent .list .item .userinfo img {
  width: 1.34rem;
  height: 1.34rem;
  border-radius: 50%;
  margin-right: 0.3rem;
}
.expert .tabcontent .list .item .userinfo .info {
  flex: 1;
  font-size: 0;
}
.expert .tabcontent .list .item .userinfo .info .name {
  font-size: 0.32rem;
  color: #3a3a3a;
  margin-bottom: 0.2rem;
}
.expert .tabcontent .list .item .userinfo .info p {
  font-size: 0.26rem;
  color: #6c6c6c;
  margin-bottom: 0.2rem;
}
.expert .tabcontent .list .item .userinfo .info span {
  font-size: 0.26rem;
  color: #f4924b;
}
.expert .tabcontent .list .item .text {
  margin-top: 0.35rem;
}
.expert .tabcontent .list .item .text p {
  font-size: 0.26rem;
  color: #7c7c7c;
  line-height: 0.4rem;
}
.expert .tabcontent .list .item .text span {
  color: #3e3e3e;
}
.expert .tabcontent .list .item .btn {
  margin-top: 0.2rem;
  text-align: right;
  font-size: 0;
}
.expert .tabcontent .list .item .btn a {
  font-size: 0.24rem;
  color: #f4924b;
  line-height: 0.42rem;
  padding: 0 0.3rem;
  border-radius: 0.3rem;
  border: 1px solid #f4924b;
  display: inline-block;
}

.long_range {
  margin-top: 0.3rem;
}
.long_range .pic {
  width: 5.73rem;
  height: 4.03rem;
  box-shadow: 0.1rem 0.11rem #636363;
  margin: 0 auto;
}
.long_range .pic img {
  width: 5.73rem;
  height: 4.03rem;
  display: block;
}
.long_range .list {
  margin-top: 0.4rem;
}
.long_range .list li {
  margin-bottom: 0.3rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px dashed #e5e5e5;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 0;
}
.long_range .list li img {
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.25rem;
  margin-right: 0.2rem;
}
.long_range .list li .text {
  flex: 1;
}
.long_range .list li .text span {
  font-size: 0.3rem;
  color: #323232;
  font-weight: bold;
}
.long_range .list li .text p {
  font-size: 0.26rem;
  color: #595959;
  line-height: 0.42rem;
  margin-top: 0.1rem;
}

.testing {
  margin-top: 0.4rem;
  font-size: 0;
}
.testing li {
  width: 3.5rem;
  height: 2.88rem;
  display: inline-block;
  margin: 0.03rem 0.02rem;
  position: relative;
}
.testing li img {
  width: 3.5rem;
  height: 2.88rem;
}
.testing li .text {
  width: 100%;
  height: 0.65rem;
  /*background: rgba(244, 146, 75, 0.8);*/
  background-color: rgba(102,102,102,.5);
  position: absolute;
  padding: 0 0.1rem;
  box-sizing: border-box;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
.testing li .text span {
  font-size: 0.26rem;
  color: #fff;
  text-align: center;
  line-height: 0.65rem;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.testing li .text p {
  font-size: 0.26rem;
  color: #fff;
  line-height: 0.36rem;
}
.testing li:hover .text {
  height: 100%;
}
.testing li:hover .text span {
  font-size: 0.28rem;
  font-weight: bold;
  margin-top: 0.2rem;
}

.tumour {
  margin-top: 0.6rem;
  font-size: 0;
}
.tumour li {
  width: 3.32rem;
  height: 4.2rem;
  display: inline-block;
  border: 1px solid #e5e5e5;
  border-radius: 0.1rem 0.1rem 0 0;
  padding: 0 0.15rem;
  box-sizing: border-box;
  margin: 0.6rem 0.1rem;
  cursor: pointer;
  vertical-align: top;
  position: relative;
}
.tumour li img {
  width: 1.19rem;
  height: 1.19rem;
  position: absolute;
  top: -0.59rem;
  left: 50%;
  transform: translate(-50%, 0);
}
.tumour li .text {
  margin-top: 0.9rem;
  text-align: center;
}
.tumour li .text span {
  font-size: 0.3rem;
  color: #3c3c3c;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid #f4924b;
  display: inline-block;
}
.tumour li .text p {
  margin-top: 0.2rem;
  font-size: 0.26rem;
  color: #595959;
  line-height: 0.4rem;
}
.tumour li:hover {
  background: #f4924b;
}
.tumour li:hover .text span {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.tumour li:hover .text p {
  color: #fff;
}

.idea {
  width: 100%;
  margin-top: 0.4rem;
}
.idea img {
  width: 100%;
}

.consult {
  margin-top: 0.4rem;
  font-size: 0;
}
.consult li {
  margin-bottom: 0.2rem;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid #f5f5f5;
}
.consult li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.consult li img {
  width: 1.6rem;
  height: 1.32rem;
  margin-right: 0.2rem;
}
.consult li .text {
  flex: 1;
}
.consult li .text p {
  font-size: 0.28rem;
  color: #333;
  font-weight: bold;
  line-height: 0.36rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 0.2rem;
}
.consult li .text span {
  font-size: 0.24rem;
  color: #666;
}

.service {
  margin-top: 0.4rem;
  font-size: 0;
}
.service li {
  border-left: 0.17rem solid #f4924b;
  padding: 0.3rem 0.4rem;
  box-sizing: border-box;
  background: #fff;
  margin-bottom: 0.25rem;
  box-shadow: 0 0 7px rgba(215, 215, 215, 0.75);
}
.service li:nth-child(1) {
  background: #fde9db;
}
.service li:nth-child(1) .item {
  /* flex-direction: row !important; */
  
}
.service li:nth-child(2) {
  box-shadow: 0 0 0.07rem rgba(215, 215, 215, 0.75);
  border-left-color: #0fc3c4;
    background-color: rgba(15,195,196,0.5);
}
.service li:nth-child(3) {
  height: auto;
  box-shadow: 0 0 0.07rem rgba(215, 215, 215, 0.75);
  border-left-color: #19b5f0;
    background-color: rgba(25,181,240,.5);
}
.service li:nth-child(4) {
  box-shadow: 0 0 0.07rem rgba(215, 215, 215, 0.75);
  border-left-color: #b67fdd;
    background-color: rgba(182,127,221,0.5);
}
.service li:nth-of-type(2) .text .tit p {
    color: #0fc3c4;
}
.service li:nth-of-type(3) .text .tit p {
    color: #19b5f0;
}
.service li:nth-of-type(4)  .text .tit p{
    color:  #b67fdd;
}
.service li .text .tit {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid #c1b9b3;
}
.service li .text .tit p {
  font-size: 0.3rem;
  color: #ef751f;
  font-weight: bold;
}
.service li .text .list {
  margin-top: 0.2rem;
}
.service li .text .list .item {
  margin-bottom: 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
   /*align-items: center; */
}
.service li .text .list .item img {
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.14rem;
}
.service li .text .list .item p {
  font-size: 0.26rem;
  color: #3a3a3a;
  line-height: 0.4rem;
}

.about {
  margin-top: 0.3rem;
}
.about img {
  width: 100%;
}
.about .text {
  margin-top: 0.3rem;
}
.about .text p {
  font-size: 0.26rem;
  color: #4d4d4d;
  line-height: 0.4rem;
  text-indent: 2em;
  margin-bottom: 0.2rem;
}

.cooperation {
  margin-top: 0.3rem;
}

.cooperation .pic {
  display: none;
}
.cooperation .pic.on {
  display: block;
}
.cooperation .pic img {
  width: 100%;
}
.cooperation .list {
  margin-top: 0.3rem;
  font-size: 0;
}
.cooperation .list li {
  width: 3.35rem;
  height: 0.88rem;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
  display: inline-block;
  margin: 0.1rem 0.1rem;
}
.cooperation .list li a {
  font-size: 0.28rem;
  color: #4f4f4f;
  line-height: 0.88rem;
  text-align: center;
  display: block;
}
.cooperation .list li.active {
  background: #f4924b;
  border: 1px solid #f4924b;
}
.cooperation .list li.active a {
  color: #fff;
}

.communication {
  margin-top: 0.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.communication .text {
  flex: 1;
}
.communication .text p {
  font-size: 0.26rem;
  color: #666;
  line-height: 0.48rem;
}
.communication img {
  width: 1.6rem;
  height: 1.34rem;
  margin-left: 0.4rem;
}

.terrace {
  margin-top: 0.3rem;
}
.terrace li {
  height: 0.8rem;
  margin-bottom: 0.4rem;
}
.terrace li a {
  height: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  /* align-items: center; */
}
.terrace li a > div {
  display: flex;
  align-items: center;
}
.terrace .text{
     flex:1;
     display: flex;
    flex-direction: column;
}
.terrace .text p{
    font-size: 0.32rem;
    margin: 0.2rem;
    color: #282828;
}
.terrace li .logo {
  width: 2.06rem;
  /*height: 0.8rem;*/
}
.terrace li span {
  flex: 1;
  font-size: 0.26rem;
  color: #282828;
  margin: 0 0.2rem;
}
.terrace li .arrow {
  width: 0.58rem;
  height: 0.58rem;
}

.column {
  margin-top: 0.4rem;
}
.column li {
  background: #fff;
  padding: 0.4rem 0.2rem;
  box-sizing: border-box;
  box-shadow: 0 0 0.1rem rgba(212, 212, 212, 0.52);
  margin-bottom: 0.2rem;
}
.column li .tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.column li .tit p {
  font-size: 0.32rem;
  color: #383838;
  position: relative;
  padding-bottom: 0.3rem;
}
.column li .tit p::before {
  content: "";
  width: 0.8rem;
  height: 2px;
  background: #383838;
  position: absolute;
  left: 0;
  bottom: 0;
}
.column li .tit img {
  width: 0.8rem;
  height: 0.68rem;
}
.column li .text {
  margin-top: 0.2rem;
}
.column li .text p {
  font-size: 0.26rem;
  color: #383838;
  line-height: 0.52rem;
}

.assess {
  margin-top: 0.4rem;
}
.assess img {
  width: 100%;
}

.index_news {
  margin-top: 0.4rem;
  font-size: 0;
}
.index_news li {
  margin-bottom: 0.2rem;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid #f5f5f5;
}
.index_news li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.index_news li img {
  width: 1.6rem;
  height: 1.32rem;
  margin-left: 0.2rem;
}
.index_news li .text {
  flex: 1;
}
.index_news li .text p {
  font-size: 0.28rem;
  color: #333;
  font-weight: bold;
  line-height: 0.36rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 0.2rem;
}
.index_news li .text span {
  font-size: 0.24rem;
  color: #666;
}

.form {
  margin-top: 0.4rem;
  font-size: 0;
}
.form .item {
  margin-bottom: 0.2rem;
}
.form .item input {
  width: 100%;
  height: 0.8rem;
  background: #f7f7f7;
  padding: 0 0.2rem;
  box-sizing: border-box;
  font-size: 0.28rem;
  color: #afafaf;
  border: none;
  outline: none;
}
.form .item textarea {
  font-family: Adobe Heiti Std;
  width: 100%;
  height: 1.2rem;
  background: #f7f7f7;
  box-sizing: border-box;
  padding: 0.2rem 0.2rem;
  font-size: 0.28rem;
  color: #afafaf;
  border: none;
  outline: none;
  resize: none;
}
.form .btn {
  margin-top: 0.2rem;
}
.form .btn button {
  width: 100%;
  height: 0.8rem;
  background: #f4924b;
  border-radius: 0.2rem;
  font-size: 0.32rem;
  color: #fff;
  cursor: pointer;
  border: none;
  outline: none;
}
.fixed_box {
  background: #f4924b;
  position: fixed;
  right: 0.2rem;

  top: 50%;
  margin: 0 auto;

  height: 1.2rem;
  font-size: 0.24rem;
  width: 0.26rem;
  color: #fff;
  text-align: center;

  padding: 0 0.1rem;
  padding-top: 0.11rem;
  border-radius: 0.1rem;
  z-index: 50;
  writing-mode: vertical-lr; /*从左向右 从右向左是 writing-mode: vertical-rl;*/

  writing-mode: horizontal-tb; /*IE浏览器的从左向右 从右向左是 writing-mode: tb-rl；*/
}
.right_fixed {
  display: none;
  width: 1.2rem;
  position: fixed;
  right: 0.2rem;

  top: 50%;
  transform: translate(0, -50%);
  z-index: 999;
  font-size: 0;
}
.right_fixed li:nth-child(1) {
  width: auto;
  height: auto;
  border: none;
  background: none;
  padding: 0;
}
.right_fixed li:nth-child(1) span{
    border: 1px solid #f4924b;
    border-radius: 0.1rem;
    padding: 0.1rem 0;
}
.right_fixed li {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.2rem;
  background: #fff;
  border: 1px solid #f4924b;
  padding: 0.2rem 0;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 0.24rem;
  cursor: pointer;
  position: relative;
}
.right_fixed li img {
  width: 0.4rem;
  height: 0.4rem;
}
.right_fixed li .img2 {
  display: none;
}
.right_fixed li span {
    background: #fff;
  font-size: 0.2rem;
  color: #f4924b;
  margin-top: 0.1rem;
  display: block;
}
.right_fixed li.active {
  background: #f4924b;
}
.right_fixed li.active span {
  color: #fff;
}
.right_fixed li .box {
  width: 1.2rem;
  height: 1.2rem;
  background: #fff;
  position: absolute;
  left: -1.2rem;
  top: 0;
  display: none;
}
.right_fixed li .box .ewm {
  width: 1.2rem;
  height: 1.2rem;
}

/* 出国看病 */
.abroad_tit {
  padding: 0.3rem 0;
  text-align: center;
}
.abroad_tit h2 {
  font-size: 0.4rem;
  color: #333;
  font-weight: bold;
}
.waylist {
  margin-top: 0.4rem;
  font-size: 0;
}
.hide-web {
    display:none;
}

.waylist li {
  display: inline-block;
  width: 3rem;
  margin: 0.1rem 0.25rem 0;
  text-align: center;
  vertical-align: top;
}
.waylist li img {
  width: 2.6rem;
  height: 2.83rem;
}
.waylist li .text {
  margin-top: 0.22rem;
}
.waylist li .text span {
  width: 3rem;
  height: 0.8rem;
  /*background: rgba(0,0,0,.5);*/
  font-size: 0.36rem;
  /*color: #fff;*/
  color:#333;
  line-height: 0.8rem;
  text-align: center;
  display: inline-block;
  margin-bottom: 0.3rem;
}
.waylist li .text p {
  font-size: 0.26rem;
  color: #505050;
  line-height: 0.34rem;
  text-align: left;
}

.operation {
  margin-top: 0.3rem;
}
.operation .name {
  font-size: 0.3rem;
  color: #363636;
}
.operation .list {
  margin-top: 0.3rem;
  font-size: 0;
}
.operation .list li {
  width: 6.4rem;
  margin: 0 auto;
}
.operation .list li img {
  width: 100%;
}
.operation .list li .contxt {
  width: 6.4rem;
  height: 4rem;
  background: url("../images/operation_bg.png") no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
}
.operation .list li .text {
  width: 6rem;
  height: 3.6rem;
  background: #fff;
  margin: 0.19rem auto 0;
  padding: 0 0.6rem;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
}
.operation .list li .text span {
  font-size: 0.48rem;
  color: #f4924b;
  margin-top: 0.6rem;
  display: block;
}
.operation .list li .text p {
  font-size: 0.26rem;
  color: #505050;
  margin-top: 0.3rem;
  line-height: 0.48rem;
}

.environment,
.serve_box {
  background: #f9f9f9;
  padding: 0.3rem 0;
}
.environment .list {
  width: 4.87rem;
  margin: 0 auto;
  font-size: 0;
}
.environment .list li {
  width: 4.87rem;
  margin-bottom: 0.5rem;
}
.environment .list li img {
  width: 4.87rem;
  height: 4.87rem;
}
.environment .list li .text {
  margin-top: 0.3rem;
  position: relative;
  padding-bottom: 0.3rem;
}
.environment .list li .text::before {
  content: "";
  width: 0.54rem;
  height: 0.05rem;
  background: #f4924b;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.environment .list li .text p {
  font-size: 0.32rem;
  color: #1e1f20;
  line-height: 0.5rem;
  text-align: center;
}

.superiority {
  margin-top: 0.3rem;
  font-size: 0;
}
.superiority li {
  width: 100%;
  padding: 0.24rem 0.24rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.superiority li img {
  width: 2.15rem;
  height: 2.15rem;
  margin-right: 0.3rem;
}
.superiority li .text {
  flex: 1;
}
.superiority li .text span {
  font-size: 0.28rem;
  color: #313131;
}
.superiority li .text p {
  font-size: 0.26rem;
  color: #858585;
  line-height: 0.38rem;
  margin-top: 0.2rem;
}
.superiority li:nth-child(1) {
  background: #fafafa;
}
.superiority li:nth-child(4) {
  background: #fafafa;
}

.serve {
  padding: 0 0.2rem;
}

.medical_service {
  margin-top: 0.3rem;
}
.medical_service .txt {
  width: 100%;
}
.medical_service .txt p {
  font-size: 0.3rem;
  color: #4d4d4d;
  line-height: 0.5rem;
}
.medical_service .list {
  margin-top: 0.4rem;
  height: 5rem;
  overflow: hidden;
  font-size: 0;
}
.medical_service .list .item {
  /* width: 1.55rem !important; */
  height: 4.3rem;
  display: inline-block;
  border: 1px solid #eee;
  box-sizing: border-box;
  margin-top: 0.3rem;
}
.medical_service .list .item img {
  width: 100%;
}
.medical_service .list .item .text {
  padding: 0.1rem 0.1rem;
  background: #fff;
  box-sizing: border-box;
}
.medical_service .list .item .text span {
  font-size: 0.28rem;
  line-height: 0.38rem;
  color: #383838;
}
.medical_service .list .item .text p {
  font-size: 0.25rem;
  color: #6c6c6c;
  line-height: 0.38rem;
  margin-top: 0.1rem;
}
.medical_service .list .swiper-slide-active,
.medical_service .list .swiper-slide-duplicate-active {
  width: 3rem !important;
  height: 5rem !important;
  margin-top: 0;
}

.characteristic {
  margin-top: 0.3rem;
  font-size: 0;
}
.characteristic li {
  width: 100%;
  margin-bottom: 0.4rem;
}
.characteristic li span {
  font-size: 0.3rem;
  color: #3c3c3c;
  font-weight: bold;
  line-height: 0.32rem;
  padding-left: 0.28rem;
  box-sizing: border-box;
  position: relative;
}
.characteristic li span::before {
  content: "";
  width: 0.04rem;
  height: 0.32rem;
  background: #bfbfbf;
  position: absolute;
  left: 0;
}
.characteristic li .contxt {
  margin-top: 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.characteristic li .contxt img {
  width: 2.22rem;
  height: 1.76rem;
  margin-right: 0.2rem;
}
.characteristic li .contxt .text {
  flex: 1;
}
.characteristic li .contxt .text p {
  font-size: 0.26rem;
  color: #7a7a7a;
  line-height: 0.32rem;
}

/* 直通圣路加 */
.saintluke_intro {
  margin-top: 0.4rem;
  font-size: 0;
}
.saintluke_intro .text {
  width: 100%;
}
.saintluke_intro .text span {
  font-size: 0.26rem;
  color: #885a39;
}
.saintluke_intro .text p {
  font-size: 0.26rem;
  color: #5b5b5b;
  line-height: 0.38rem;
  margin-top: 0.2rem;
}
.saintluke_intro .text .btn {
  text-align: right;
}
.saintluke_intro .text .btn a {
  font-size: 0.24rem;
  color: #fff;
  background: #f4924b;
  line-height: 0.48rem;
  display: inline-block;
  padding: 0 0.24rem;
  border-radius: 0.3rem;
  margin-top: 0.2rem;
}
.saintluke_intro img {
  width: 6rem;
  height: 3.43rem;
  margin: 0.2rem auto 0;
  display: block;
}

.saintluke_work {
  margin-top: 0.4rem;
  font-size: 0;
}
.saintluke_work .text {
  width: 100%;
}
.saintluke_work .text span {
  font-size: 0.26rem;
  color: #885a39;
}
.saintluke_work .text p {
  font-size: 0.26rem;
  color: #5b5b5b;
  line-height: 0.38rem;
  margin-top: 0.2rem;
}
.saintluke_work .text .btn {
  text-align: right;
}
.saintluke_work .text .btn a {
  font-size: 0.24rem;
  color: #fff;
  background: #f4924b;
  line-height: 0.48rem;
  display: inline-block;
  padding: 0 0.24rem;
  border-radius: 0.3rem;
  margin-top: 0.3rem;
}
.saintluke_work img {
  width: 6rem;
  height: 3.43rem;
  margin: 0.2rem auto 0;
  display: block;
}

.saintluke_progress {
  width: 2rem;
  margin: 0.3rem auto 0;
}
.saintluke_progress img {
  width: 100%;
}

.department {
  margin-top: 0.3rem;
}
.department .list {
  width: 100%;
  white-space: nowrap;
  overflow-x: scroll;
  font-size: 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f5f5f5;
}
.department .list li {
  display: inline-block;
  margin-right: 0.4rem;
}
.department .list li span {
  font-size: 0.26rem;
  color: #333;
}
.department .list li.active span {
  color: #f4924b;
}

.department .contxt {
  border: 1px solid #f4924b;
  padding: 0.2rem 0.2rem;
  box-sizing: border-box;
}
.department .contxt .tab_content {
  display: none;
}
.department .contxt .tab_content.on {
  display: block;
}
.department .contxt .tab_content img {
  width: 4.89rem;
  height: 3.1rem;
  margin: 0 auto;
  display: block;
}
.department .contxt .tab_content p {
  font-size: 0.26rem;
  color: #646464;
  line-height: 0.48rem;
  text-indent: 2em;
  margin-top: 0.2rem;
}

.doctor {
  margin-top: 0.3rem;
  font-size: 0;
  display: flex;
  flex-wrap: wrap;
}
.doctor li {
  width: 47%;
  padding: 0.4rem 0.4rem;
  box-sizing: border-box;
  background: #fff8f5;
  display: inline-block;
  text-align: center;
  margin: 0.1rem !important;
}
.doctor li img {
  width: 1.19rem;
  height: 1.19rem;
  border-radius: 50%;
  margin-top: 0.25rem;
}
.doctor li .name {
  font-size: 0.3rem;
  color: #3a3a3a;
  margin-top: 0.3rem;
  margin-bottom: 10px;
}
.doctor li p {
  font-size: 12px;
  color: #6c6c6c;
  margin-bottom: 0.2rem;
}
.doctor li span {
  font-size: 0.22rem;
  color: #f4924b;
  display: block;
}
.doctor li a {
  font-size: 0.24rem;
  color: #fff;
  background: #f4924b;
  line-height: 0.5rem;
  display: inline-block;
  padding: 0 0.2rem;
  border-radius: 0.3rem;
  margin-top: 0.3rem;
}

.hospital {
  margin-top: 0.25rem;
}
.hospital img {
  width: 100%;
}
.hospital .text {
  margin-top: 0.2rem;
}
.hospital .text p {
  font-size: 0.26rem;
  color: #595959;
  line-height: 0.48rem;
}

.set_meal {
  margin-top: 25px;
}
.set_meal .top {
  width: 100%;
  height: 1.2rem;
  background: #f4924b;
  margin-top: 0.3rem;
}
.set_meal .top p {
  font-size: 0.36rem;
  color: #fff;
  text-align: center;
  line-height: 1.2rem;
}
.set_meal .bottom {
  width: 912px;
  width: 100%;
  height: 14.72rem;
  background: url("../images/mscheme_bg1.png") no-repeat;
  border: 2px solid #c1a065;
  box-sizing: border-box;
  margin-top: 0.08rem;
}
.set_meal .bottom .box {
  width: 6.63rem;
  height: 14.18rem;
  background: #fff;
  border: 2px solid #8c4913;
  margin: 0.2rem auto 0;
  padding: 0.5rem 0.5rem;
  box-sizing: border-box;
}
.set_meal .bottom .box .tit {
  padding: 0.2rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.set_meal .bottom .box .tit p {
  font-size: 0.3rem;
  line-height: 0.38rem;
  color: #f4924b;
  text-align: center;
}
.set_meal .bottom .box .list {
  margin-top: 0.3rem;
  font-size: 0;
}
.set_meal .bottom .box .list li {
  text-align: center;
  margin-bottom: 0.3rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px dashed #e5e5e5;
}
.set_meal .bottom .box .list li img {
  width: 3.3rem;
  height: 2.44rem;
}
.set_meal .bottom .box .list li p {
  font-size: 0.28rem;
  color: #424242;
  line-height: 0.38rem;
  text-align: center;
  margin-top: 0.2rem;
}

/* 国际医联体平台 */
.team_content {
  margin-top: 0.3rem;
}
.team_content .item {
  box-shadow: 0 0 0.09rem rgba(149, 149, 149, 0.29);
  padding: 0.3rem 0.3rem;
  box-sizing: border-box;
  margin-bottom: 0.3rem;
}
.team_content .item .contxt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.3rem;
  border-bottom: 1px dashed #f5f5f5;
}
.team_content .item .contxt img {
  width: 1.44rem;
  height: 1.44rem;
}
.team_content .item .contxt .text {
  flex: 1;
}
.team_content .item .contxt .text span {
  font-size: 0.36rem;
  display: block;
  margin-bottom: 0.2rem;
}
.team_content .item .contxt .text p {
  font-size: 0.28rem;
  color: #333;
  line-height: 0.36rem;
}
.team_content .item:nth-child(1) {
  border-top-left-radius: 0.3rem;
}
.team_content .item:nth-child(1) .contxt .text {
  margin-right: 0.2rem;
}
.team_content .item:nth-child(1) .contxt .text span {
  color: #f4924b;
  text-align: left;
}
.team_content .item:nth-child(2) {
  border-top-right-radius: 0.3rem;
}
.team_content .item:nth-child(2) .contxt .text {
  margin-left: 0.2rem;
}
.team_content .item:nth-child(2) .contxt .text span {
  color: #139ca8;
}
.team_content .item .list {
  margin-top: 0.3rem;
  font-size: 0;
}
.team_content .item .list dl {
  width: 50%;
  display: inline-block;
}
.team_content .item .list dl dd {
  font-size: 0.24rem;
  color: #666;
  margin-bottom: 0.2rem;
}
.team_content .item .list dl dd img {
  width: 0.2rem;
  height: 0.2rem;
  margin-right: 0.4rem;
}

.platform_serve {
  margin-top: 0.3rem;
}
.platform_serve .txt {
  width: 100%;
}
.platform_serve .txt p {
  font-size: 0.3rem;
  color: #363636;
  line-height: 0.42rem;
}
.platform_serve .list {
  margin-top: 0.3rem;
  font-size: 0;
}
.platform_serve .list li {
  margin-bottom: 0.3rem;
}
.platform_serve .list li .item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.platform_serve .list li .item .num {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: #f4924b;
  margin-right: 0.25rem;
}
.platform_serve .list li .item .num p {
  font-size: 0.3rem;
  color: #fff;
  line-height: 0.9rem;
  text-align: center;
}
.platform_serve .list li .item .text {
  flex: 1;
}
.platform_serve .list li .item .text span {
  font-size: 0.32rem;
  color: #333;
  display: block;
  margin-bottom: 0.2rem;
}
.platform_serve .list li .item .text p {
  font-size: 0.26rem;
  color: #333;
  line-height: 0.48rem;
}

.hospital_list {
  margin-top: 0.3rem;
  font-size: 0;
}
.hospital_list li {
  width: 49%;
  display: inline-block;
  margin: 0.5% 0.5%;
  border: 1px solid #f4924b;
  border-radius: 0.2rem 0.1rem 0 0;
  box-sizing: border-box;
}
.hospital_list li .tit {
  width: 100%;
  height: 0.9rem;
  background: #f4924b;
  border-radius: 0.1rem 0.1rem 0 0;
}
.hospital_list li .tit p {
  font-size: 0.32rem;
  color: #fff;
  line-height: 0.9rem;
  text-align: center;
}
.hospital_list li .list {
  width: 100%;
  padding: 0.2rem 0.2rem 0 0.2rem;
  box-sizing: border-box;
}
.hospital_list li .list .item {
  width: 100%;
  height: 0.9rem;
  background: #fff8f3;
  border-radius: 0.1rem;
  margin-bottom: 0.2rem;
  position: relative;
}
.hospital_list li .list .item>div>img {
    position: absolute;
    left: 0;
    top: 0;
}
.hospital_list li .list .item p {
  font-size: 0.28rem;
  color: #666;
  line-height: 0.9rem;
  text-align: center;
}

.flowsheet {
  margin-top: 0.3rem;
}
.flowsheet .text {
  width: 6.35rem;
  border: 1px solid #f4924b;
  padding: 0.5rem 0.3rem;
  box-sizing: border-box;
  margin: 0 auto 0.3rem;
}
.flowsheet .text span {
  font-size: 0.38rem;
  color: #f4924b;
  display: block;
  text-align: center;
  margin-bottom: 0.3rem;
}
.flowsheet .text p {
  font-size: 0.26rem;
  color: #333;
  line-height: 0.48rem;
}
.flowsheet img {
  width: 100%;
}

/* 远程面诊 */
.health_list {
  margin-top: 0.3rem;
  font-size: 0;
}
.health_list li {
  width: 3.5rem;
  height: 2.88rem;
  display: inline-block;
  cursor: pointer;
  position: relative;
  margin-bottom: 0.1rem;
}
.health_list li:not(:nth-child(2n)) {
  margin-right: 0.09rem;
}
.health_list li img {
  width: 3.5rem;
  height: 2.88rem;
}
.health_list li .text {
  width: 100%;
  height: 1.72rem;
  background: rgba(244, 146, 75, 0.8);
  position: absolute;
  padding: 0 0.25rem;
  box-sizing: border-box;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
.health_list li .text span {
  font-size: 0.36rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  display: block;
  margin-top: 0.2rem;
  margin-bottom: 0.1rem;
}
.health_list li .text p {
  font-size: 0.26rem;
  color: #fff;
  line-height: 0.48rem;
}

.female_health {
  margin-top: 0.3rem;
}
.female_health .txt {
  width: 100%;
}
.female_health .txt p {
  font-size: 0.26rem;
  color: #666;
  line-height: 0.48rem;
}

.female_health .list {
  margin-top: 1.5rem;
}
.female_health .list li {
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 0.1rem 0.1rem 0 0;
  padding: 0 0.2rem 0.2rem 0.2rem;
  margin-top: 1.58rem;
  box-sizing: border-box;
  cursor: pointer;
  vertical-align: top;
  position: relative;
}
.female_health .list li:first-child {
    margin-top:0;
}
.female_health .list li img {
  width: 2.38rem;
  height: 2.38rem;
  position: absolute;
  top: -1.2rem;
  left: 50%;
  transform: translate(-50%, 0);
}
.female_health .list li .text {
  margin-top: 1.6rem;
  text-align: center;
}
.female_health .list li .text p {
  margin-top: 0.2rem;
  font-size: 0.28rem;
  color: #595959;
  line-height: 0.48rem;
}
.female_health .list li .text span {
  font-size: 0.32rem;
  color: #f4924b;
  font-weight: bold;
}
.female_health .list li:hover {
  background: #139ca8;
}
.female_health .list li:hover .text span {
  color: #fff;
}
.female_health .list li:hover .text p {
  color: #fff;
}

.doctor_team_content {
  background: #fafafa;
  padding: 0.3rem 0.2rem;
}

.doctor_team {
  margin-top: 0.3rem;
}
.doctor_team .txt {
  width: 100%;
}
.doctor_team .txt p {
  font-size: 0.26rem;
  color: #5c5c5c;
  line-height: 0.48rem;
}
.doctor_team .txt span {
  margin-right: 0.2rem;
}

.doctor_team .list {
  width: 100%;
  margin-top: 0.3rem;
  font-size: 0;
}
.doctor_team .list .item {
  width: 6.68rem;
  height: 7.78rem;
  border: 1px solid #eee;
  background: #fff;
  display: inline-block;
  padding: 0.3rem 0.3rem;
  box-sizing: border-box;
}
.doctor_team .list .item .userinfo {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.doctor_team .list .item .userinfo .avatar {
  width: 2.02rem;
  height: 2.02rem;
  border-radius: 50%;
  margin-right: 0.2rem;
}
.doctor_team .list .item .userinfo .info .name {
  font-size: 0.32rem;
  color: #3a3a3a;
  margin-bottom: 0.2rem;
}
.doctor_team .list .item .userinfo .info p {
  font-size: 0.24rem;
  color: #6c6c6c;
  margin-bottom: 0.1rem;
}
.doctor_team .list .item .userinfo .info span {
  font-size: 0.24rem;
  color: #f4924b;
  line-height: 0.3rem;
  display: block;
}
.doctor_team .list .item .text {
  margin-top: 0.2rem;
}
.doctor_team .list .item .text p {
  font-size: 0.26rem;
  color: #7c7c7c;
  line-height: 0.42rem;
}
.doctor_team .list .item .text span {
  color: #3e3e3e;
}
.doctor_team .list .item .btn {
  margin-top: 0.2rem;
  text-align: center;
}
.doctor_team .list .item .btn a {
  font-size: 0.26rem;
  color: #f4924b;
  line-height: 0.6rem;
  padding: 0 0.3rem;
  border-radius: 30px;
  border: 1px solid #f4924b;
  display: inline-block;
}

.online_list {
  width: 5.6rem;
  margin: 0.4rem auto 0;
}
.online_list li {
  width: 5.6rem;
  height: 4.5rem;
  background: #fff;
  text-align: center;
  margin-bottom: 0.2rem;
}
.online_list li img {
  width: 1.84rem;
  height: 1.84rem;
  margin-top: 0.2rem;
}
.online_list li .text {
  margin-top: 0.2rem;
}
.online_list li .text span {
  font-size: 0.36rem;
  color: #313131;
  font-weight: bold;
  display: block;
  margin-bottom: 0.1rem;
}
.online_list li .text p {
  font-size: 0.28rem;
  color: #858585;
  line-height: 0.48rem;
}
.online_list li:hover {
  box-shadow: 0 0 0.1rem #e6e6e6;
}

.method {
  width: 100%;
  margin-top: 0.3rem;
  overflow-x: auto;
  overflow-y: hidden;
}
.method table {
  border: 1px solid #f4924b;
  max-width: 14rem;
}
.method table thead {
    box-shadow: 0 0 7px rgb(122 84 84 / 75%);
}
.method table thead th {
    width: 4rem;
  height: 0.6rem;
  background: #f4924b;
  font-size: 0.3rem;
  color: #fff;
  line-height: 0.6rem;
  border: 1px solid #fff;
}
.method table thead th:first-child {
    width: 2rem;;
}
.method table tbody th {
  font-size: 0.3rem;
  color: #f4924b;
  border-left: 1px solid #f4924b;
  border-right: 1px solid #f4924b;
  border-bottom: 1px solid #eadacc;
  padding: 0.1rem 0.1rem;
  vertical-align: middle;
}
.method table tbody td {
  border: 1px solid #ece0d7;
  padding: 0.1rem 0.1rem;
}
.method table tbody td p {
  font-size: 0.28rem;
  color: #4b4b4b;
  line-height: 0.48rem;
}

.facetoface {
  margin-top: 0.3rem;
  font-size: 0;
}
.facetoface li {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.facetoface li:not(:last-child) {
  padding-bottom: 0.5rem;
}
.facetoface li .icon {
  width: 1.19rem;
  height: 1.19rem;
  box-shadow: 0 0 0.1rem rgba(211, 211, 211, 0.75);
  border-radius: 0.1rem;
}
.facetoface li .arrow {
  width: 0.5rem;
  position: relative;
  margin: 0 0.2rem;
}
.facetoface li .arrow img {
  width: 0.5rem;
  height: 0.5rem;
  position: relative;
  z-index: 1;
}

.facetoface li:not(:first-child) .arrow::before {
  content: "";
  width: 0;
  height: 1rem;
  border-left: 2px dashed #f2f2f2;
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translate(-50%, 0);
}

.facetoface li p {
  font-size: 0.28rem;
  color: #555;
}

.online_process {
  width: 100%;
  height: 16.6rem;
  background: url("../images/monline_process_bg.png");
  padding: 0.4rem 0.2rem;
  box-sizing: border-box;
}

.online_process .title {
  border-bottom: 2px solid #94959a;
}
.online_process .title::before {
  background: #eaebec;
}
.online_process .title h2 {
  color: #fff;
}

.online_process .list {
  margin-top: 0.3rem;
  font-size: 0;
}
.online_process .list li {
  width: 100%;
  text-align: center;
  position: relative;
}
.online_process .list li:not(:last-child) {
  padding-bottom: 0.2rem;
}
.online_process .list li::before {
  content: "";
  width: 0;
  height: 100%;
  border-left: 1px dashed #b1b1b2;
  position: absolute;
  /* top: -1rem; */
  left: 50%;
  transform: translate(-50%, 0);
}
.online_process .list li .icon {
  width: 1.8rem;
  height: 1.8rem;
}
.online_process .list li .arrow {
  width: 0.5rem;
  height: 0.5rem;
  display: block;
  margin: 0.2rem auto 0;
}

.online_process .list li .arrow img {
  width: 0.5rem;
  height: 0.5rem;
}
.online_process .list li p {
  font-size: 0.28rem;
  color: #fff;
  line-height: 0.4rem;
  margin-top: 0.16rem;
}

/* 专家会诊 */
.suggest {
  margin-top: 0.3rem;
}
.suggest .pic {
  width: 6.87rem;
  height: 4.83rem;
  /*box-shadow: 0.1rem 0.11rem #ef751f;*/
  box-shadow: 0.1rem 0.11rem #636363;
  margin: 0 auto;
}
.suggest .pic img {
  width: 6.87rem;
  height: 4.83rem;
  display: block;
}
.suggest .box .text {
  width: 100%;
  margin: 0.45rem 0;
}
.suggest .box .text span {
  font-size: 0.32rem;
  color: #ef751f;
  font-weight: bold;
  margin-bottom: 0.2rem;
  display: block;
}
.suggest .box .text p {
  font-size: 0.26rem;
  color: #666;
  line-height: 0.42rem;
}
.suggest .box .text em {
  color: #ef751f;
}

.suggest_list {
  width: 6.68rem;
  margin: 0.4rem auto 0;
  font-size: 0;
}
.suggest_list li {
  width: 6.68rem;
  border: 1px solid #eee;
  padding: 0.3rem 0;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 0.2rem;
}
.suggest_list li img {
  width: 1.8rem;
  height: 1.8rem;
}
.suggest_list li .text {
  margin-top: 0.3rem;
}
.suggest_list li .text span {
  font-size: 0.32rem;
  color: #323232;
  display: block;
  margin-bottom: 0.2rem;
}
.suggest_list li .text p {
  font-size: 0.26rem;
  color: #595959;
  line-height: 0.4rem;
}

.pattern {
  margin-top: 0.4rem;
}
.pattern .text {
  width: 100%;
}
.pattern .text p {
  font-size: 0.26rem;
  color: #3f3f3f;
  line-height: 0.4rem;
  margin-bottom: 0.2rem;
  text-indent: 2em;
}
.pattern .pic {
  margin-top: 0.2rem;
}
.pattern .pic img {
  width: 100%;
}

.crowd {
  margin-top: 0.3rem;
}
.crowd .text {
  width: 100%;
}
.crowd .text p {
  font-size: 0.26rem;
  color: #333;
  line-height: 0.4rem;
  margin-bottom: 0.4rem;
}
.crowd .pic {
  width: 100%;
}
.crowd .pic img {
  width: 100%;
}

.consultation_suggest {
  margin-top: 0.4rem;
  width: 100%;
  height: 15.4rem;
  background: url("../images/mconsultation_bg1.png") no-repeat 55% 40%;
  background-size: cover;
  position: relative;
}
.consultation_suggest .opinion {
  width: 4rem;
  height: 4rem;
  background: url("../images/consultation_suggest.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 5.6rem;
  left: 50%;
  transform: translateX(-50%);
}
.consultation_suggest .opinion p {
  font-size: 0.36rem;
  color: #fff;
  line-height: 0.48rem;
  text-align: center;
  margin-top: 1.4rem;
}
.consultation_suggest .item {
  width: 5.8rem;
  position: absolute;
  left: 0.65rem;
}
.consultation_suggest .item span {
  font-size: 0.35rem;
  color: #f4924b;
  display: block;
  font-weight: bold;
  margin-left: 0.25rem;
}
.consultation_suggest .item .text {
  margin-top: 0.2rem;
  background: #fff;
  padding: 0.3rem 0.2rem;
  box-sizing: border-box;
  border-radius: 0.1rem;
}
.consultation_suggest .item .text p {
  font-size: 0.26rem;
  color: #333;
  line-height: 0.42rem;
}
.consultation_suggest .item:nth-child(2) {
  top: 0.4rem;
}
.consultation_suggest .item:nth-child(3) {
  top: 2.8rem;
}
.consultation_suggest .item:nth-child(4) {
  bottom: 3.6rem;
}
.consultation_suggest .item:nth-child(5) {
  bottom: 0.5rem;
}

.datalist {
  margin-top: 0.3rem;
}
.datalist li {
  width: 100%;
  margin-bottom: 0.8rem;
}
.datalist li .pic {
  width: 3.05rem;
  height: 1.53rem;
  margin: 0 auto;
}
.datalist li .pic img {
  width: 100%;
}
.datalist li .text {
  margin-top: 0.4rem;
  text-align: center;
}
.datalist li .text span {
  font-size: 0.36rem;
  color: #f4924b;
  display: block;
  font-weight: 700;
}
.datalist li .text p {
  font-size: 0.26rem;
  color: #666;
  line-height: 0.42rem;
}
.datalist li:nth-child(odd) .text {
  margin-top: 0.2rem;
}
.datalist li:nth-child(odd) .text span {
  margin-bottom: 0.2rem;
}
.datalist li:nth-child(even) .text {
  margin-bottom: 0.2rem;
}
.datalist li:nth-child(even) .text span {
  margin-top: 0.2rem;
}

.mdt_process {
  margin-top: 0.3rem;
  font-size: 0;
}
.mdt_process li {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.mdt_process li:not(:last-child) {
  padding-bottom: 0.5rem;
}
.mdt_process li .icon {
  width: 1.19rem;
  height: 1.19rem;
  box-shadow: 0 0 0.1rem rgba(211, 211, 211, 0.75);
  border-radius: 0.1rem;
}
.mdt_process li .arrow {
  width: 0.5rem;
  position: relative;
  margin: 0 0.2rem;
}
.mdt_process li .arrow img {
  width: 0.5rem;
  height: 0.5rem;
  position: relative;
  z-index: 1;
}
.mdt_process li:not(:first-child) .arrow::before {
  content: "";
  width: 0;
  height: 1rem;
  border-left: 2px dashed #f2f2f2;
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translate(-50%, 0);
}
.mdt_process li p {
  font-size: 0.28rem;
  color: #555;
  line-height: 0.4rem;
  text-align: left;
}

.consultation_doctor {
  width: 100%;
  padding: 0.3rem 0.2rem;
  background: #f6ab75;
  box-sizing: border-box;
}
.consultation_doctor .title {
  border-bottom: 2px solid #f3c09c;
}
.consultation_doctor .title::before {
  background: #fff;
}
.consultation_doctor .title h2 {
  color: #fff;
}
.consultation_doctor .doctor_list {
  margin-top: 0.4rem;
  position: relative;
}
.consultation_doctor .doctor_list .list {
  width: 6rem !important;
  margin: 0 auto;
}
.consultation_doctor .doctor_list .list .item {
  width: 6rem !important;
  height: 7.18rem !important;
  background: #fff;
  text-align: center;
}
.consultation_doctor .doctor_list .list .item img {
  width: 2.59rem;
  height: 2.59rem;
  border-radius: 50%;
  margin-top: 0.3rem;
}
.consultation_doctor .doctor_list .list .item .text {
  margin-top: 0.2rem;
}
.consultation_doctor .list .item .text span {
  font-size: 0.36rem;
  color: #f4924b;
  display: block;
  margin-bottom: 0.2rem;
}
.consultation_doctor .doctor_list .list .item .text p {
  font-size: 0.26rem;
  color: #616161;
  line-height: 0.4rem;
}
.consultation_doctor .doctor_list .swiper-button-prev:after,
.consultation_doctor .doctor_list .swiper-button-next:after {
  font-size: 0.6rem !important;
}
.consultation_doctor .doctor_list .swiper-button-next,
.consultation_doctor .doctor_list .swiper-button-prev {
  color: #fff !important;
}
.consultation_doctor .doctor_list .swiper-button-next {
  right: 0 !important;
}
.consultation_doctor .doctor_list .swiper-button-prev {
  left: 0 !important;
}

/* 病理基因检测 */
.diagnose {
  margin-top: 0.3rem;
}
.diagnose .name {
  font-size: 0.3rem;
  color: #f4924b;
}
.diagnose .box {
  margin-top: 0.3rem;
}
.diagnose .gene-bj {
    background: url("../images/testings_img22.png") no-repeat 0 bottom;
    background-size: 100%;
}
.diagnose .box img {
  width: 100%;
}
.diagnose .box .text {
  width: 100%;
  margin-top: 0.3rem;
}
.diagnose .box .text span {
  font-size: 0.32rem;
  color: #333;
  font-weight: bold;
  display: block;
  margin: 0.1rem 0;
}
.diagnose .box .text p {
  font-size: 0.26rem;
  color: #666;
  line-height: 0.48rem;
}
.importance {
  width: 100%;
  margin-top: 0.3rem;
}
.importance .name {
  font-size: 0.32rem;
  color: #333;
}
.importance .list {
  margin-top: 0.2rem;
  font-size: 0;
}
.importance .list li {
  margin-bottom: 0.3rem;
}
.importance .list li .num {
  width: 1.23rem;
  height: 0.47rem;
}
.importance .list li .num img {
  width: 100%;
}
.importance .list li .text {
  width: 100%;
  margin-top: 0.2rem;
}
.importance .list li .text p {
  font-size: 0.26rem;
  color: #333;
  line-height: 0.48rem;
}
.testings_contxt {
  margin-top: 0.4rem;
}
.testings_contxt .top {
  width: 100%;
}
.testings_contxt .top span {
  font-size: 0.32rem;
  color: #333;
  margin-bottom: 0.2rem;
  display: block;
  line-height: 0.48rem;
}
.testings_contxt .top p {
  font-size: 0.26rem;
  color: #333;
  line-height: 0.48rem;
}
.testings_contxt img {
  width: 5.68rem;
  height: 5.68rem;
  margin: 0.3rem auto;
  display: block;
}
.testings_contxt .bottom {
  width: 100%;
}
.testings_contxt .bottom span {
  font-size: 0.32rem;
  color: #333;
  margin-bottom: 0.2rem;
  display: block;
  line-height: 0.48rem;
}
.testings_contxt .bottom p {
  font-size: 0.26rem;
  color: #333;
  line-height: 0.48rem;
}
.common_disease {
  margin-top: 0.5rem;
}
.common_disease .name {
  font-size: 0.3rem;
  color: #f4924b;
}
.common_disease .list {
  margin-top: 0.4rem;
  font-size: 0;
}
.common_disease .list li {
  margin-bottom: 0.2rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.common_disease .list li .item {
  width: 1.26rem;
  height: 0.97rem;
  text-align: center;
  border-radius: 0.1rem;
  margin-right: 0.2rem;
}
.common_disease .list li .item img {
  width: 0.52rem;
  height: 0.41rem;
  margin-top: 0.15rem;
}
.common_disease .list li .item span {
  font-size: 0.2rem;
  color: #fff;
  margin-top: 0.1rem;
  display: block;
}
.common_disease .list li:nth-child(1) .item {
  background: #ff7101;
}
.common_disease .list li:nth-child(2) .item {
  background: #ffae55;
}
.common_disease .list li:nth-child(3) .item {
  background: #ff8c39;
}
.common_disease .list li .text {
  flex: 1;
}
.common_disease .list li .text p {
  font-size: 0.26rem;
  color: #333;
  line-height: 0.48rem;
}

/* 新闻动态 */
.news_tab {
  margin-top: 0.3rem;
  text-align: center;
  font-size: 0;
}
.news_tab li {
  display: inline-block;
  width: 2rem;
  height: 0.7rem;
  border: 1px solid #d2d2d2;
  cursor: pointer;
}
.news_tab li span {
  font-size: 0.2rem;
  color: #323232;
  text-align: center;
  line-height: 0.7rem;
}
.news_tab li.active {
  background: #f4924b;
  border: 1px solid #f4924b;
}
.news_tab li.active span {
  color: #fff;
}
.news_content {
  margin-top: 0.2rem;
  margin-bottom: 0.3rem;
}
.news_content .news_list {
  width: 100%;
  display: none;
}
.news_content .news_list li {
  padding: 0.2rem 0.2rem;
  box-sizing: border-box;
}
.news_content .news_list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news_content .news_list li img {
  width: 2.48rem;
  margin-right: 0.2rem;
}
.news_content .news_list li .text {
  flex: 1;
}
.news_conten .news_list li .text .name {
  font-size: 0.28rem;
  color: #333;
  font-weight: bold;
}
.news_content .news_list li .text span {
  font-size: 0.24rem;
  color: #969696;
  margin: 0.1rem 0;
  display: block;
}
.news_content .news_list li .text p {
  font-size: 0.26rem;
  color: #646464;
  line-height: 0.48rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news_content .news_list li:hover {
  background: #f0f0f0;
}

.news_title {
  background: #f5f5f5;
  padding-bottom: 0.4rem;
  overflow: hidden;
}
.news_title h2 {
  font-size: 0.36rem;
  color: #333;
  text-align: center;
  margin-top: 0.6rem;
}
.news_title .time {
  font-size: 0.2rem;
  color: #333;
  text-align: center;
  margin-top: 0.3rem;
}
.news_text {
  margin: 0.4rem 0;
}
.news_text p {
  font-size: 0.26rem;
  color: #333;
  line-height: 0.48rem;
  margin-bottom: 0.2rem;
}
.news_text img {
  width: 100%;
  margin: 0.2rem auto;
  display: block;
}

.pageing {
  padding: 0.2rem 0.2rem;
  background: #f5f5f5;
}
.pageing .page {
  width: 100%;
}
.pageing .page p {
  font-size: 0.24rem;
  color: #999;
  margin: 0.2rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pageing .page a {
  color: #999;
}

.team_type {
  margin-top: 0.3rem;
}
.team_type p {
  font-size: 0.24rem;
  color: #282828;
}
.team_type a {
  color: #282828;
  line-height: 0.4rem;
  padding: 0 0.2rem;
  background: #eee;
  display: inline-block;
  margin-right: 0.2rem;
}
.team_type a.active {
  color: #fff;
  background: #f4924b;
}

.team_form {
  width: 100%;
  margin-top: 0.3rem;
  font-size: 0;
}
.team_form .item {
  margin-bottom: 0.2rem;
}
.team_form .item input {
  width: 100%;
  height: 0.88rem;
  line-height: 0.88rem;
  background: #f7f7f7;
  padding: 0 0.3rem;
  box-sizing: border-box;
  border-radius: 0.2rem;
  font-size: 0.28rem;
  color: #afafaf;
  border: none;
  outline: none;
}
.team_form .item textarea {
  width: 100%;
  height: 1.3rem;
  background: #f7f7f7;
  padding: 0.3rem 0.3rem;
  border-radius: 0.2rem;
  box-sizing: border-box;
  font-size: 0.28rem;
  color: #afafaf;
  border: none;
  outline: none;
}
.team_form .btn {
  margin-top: 0.2rem;
}
.team_form .btn button {
  width: 100%;
  height: 0.88rem;
  font-size: 0.32rem;
  color: #fff;
  border-radius: 0.2rem;
  line-height: 0.88rem;
  background: #f4924b;
  cursor: pointer;
  border: none;
  outline: none;
}

.team_container {
  margin-top: 0.4rem;
  border: 1px solid #f5f5f5;
  padding: 0.2rem 0.2rem;
  box-sizing: border-box;
}
.team_container .userinfo {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.team_container .userinfo img {
  width: 1.34rem;
  height: 1.34rem;
  border-radius: 50%;
  margin-right: 0.2rem;
}
.team_container .userinfo .text {
  flex: 1;
}
.team_container .userinfo .text .name {
  font-size: 0.32rem;
  color: #3a3a3a;
  font-weight: bold;
  margin-bottom: 0.1rem;
}
.team_container .userinfo .text p {
  font-size: 0.26rem;
  color: #666;
  line-height: 0.4rem;
}
.team_container .userinfo .text span {
  color: #f4924b;
}
.team_container .info {
  margin-top: 0.2rem;
  font-size: 0;
}
.team_container .info span {
  font-size: 0.26rem;
  color: #3e3e3e;
  font-weight: bold;
}
.team_container .info p {
  font-size: 0.26rem;
  color: #666;
  line-height: 0.4rem;
}

.info_list {
  margin-top: 0.3rem;
  font-size: 0;
}
.info_list li {
  display: inline-block;
  margin-right: 0.3rem;
}
.info_list li span {
  font-size: 0.26rem;
  color: #282828;
  padding-bottom: 0.15rem;
}
.info_list li.active span {
  color: #ec6200;
  border-bottom: 2px solid #ec6200;
}
.info_content {
  margin-top: 0.4rem;
}
.info_content .info_contxt {
  display: none;
}
.info_content .info_txt {
  width: 100%;
}
.info_content .info_txt .name {
  font-size: 0.32rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.2rem;
}
.info_content .info_txt p {
  font-size: 0.26rem;
  color: #7c7c7c;
  line-height: 0.4rem;
}
.info_content .info_txt span {
  color: #3e3e3e;
}

/* 关于我们 */
.about1 {
  margin-top: 0.3rem;
}
.about1 .text {
  width: 100%;
  margin-bottom: 0.2rem;
}
.about1 .text p {
  font-size: 0.26rem;
  color: #4d4d4d;
  line-height: 0.48rem;
  text-indent: 2em;
}
.about1 img {
  width: 100%;
}

.framework {
  margin-top: 0.4rem;
}
.framework img {
  width: 100%;
}
.framework .text {
  width: 5.5rem;
  margin: 0.4rem auto 0;
}
.framework .text .txt {
  margin-bottom: 0.3rem;
}
.framework .text .txt p {
  font-size: 0.28rem;
  color: #535353;
  line-height: 0.48rem;
}
.framework .text .txt span {
  color: #f4924b;
}

.vision_content {
  width: 100%;
  height: 7.39rem;
  background: url("../images/mabout_bg.png") no-repeat;
  padding: 0.3rem 0.2rem;
  box-sizing: border-box;
}
.vision_content .tit {
  font-size: 0.3rem;
  color: #3c3c3c;
  padding-bottom: 0.25rem;
  text-align: center;
  position: relative;
}
.vision_content .tit::before {
  content: "";
  width: 0.48rem;
  height: 2px;
  background: #3c3c3c;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.vision_content .text {
  padding: 0.2rem 0.2rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.5);
  margin-top: 0.3rem;
}
.vision_content .text p {
  font-size: 0.24rem;
  color: #3c3c3c;
  line-height: 0.48rem;
}
.vision_content .text span {
  font-size: 0.26rem;
  color: #3c3c3c;
  display: block;
  text-align: right;
  margin-top: 0.2rem;
}

.course {
  margin-top: 0.3rem;
  font-size: 0;
}
.course li {
  width: 100%;
  margin-bottom: 0.24rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.course li .circle {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 1px solid #f4924b;
  background: #f4924b;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
.course li .circle .inner {
  width: 0.18rem;
  height: 0.18rem;
  border-radius: 50%;
  border: 1px solid #fff;
  background: #fff;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.course li .time {
  margin: 0 0.2rem;
}
.course li .time span {
  font-size: 0.26rem;
  color: #f4924b;
}
.course li .text {
  flex: 1;
  padding: 0.2rem 0.2rem;
  background: #f4924b;
  box-sizing: border-box;
}
.course li .text p {
  font-size: 0.26rem;
  color: #fff;
  line-height: 0.48rem;
}

.business {
  margin-top: 0.3rem;
  font-size: 0;
}
.business li {
  margin-bottom: 0.3rem;
}
.business li .pic {
  width: 7.2rem;
  height: 6.36rem;
  position: relative;
}
.business li .pic img {
  width: 100%;
}
.business li .pic .text {
  width: 100%;
  height: 1rem;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  bottom: 0;
}
.business li .pic .text span {
  font-size: 0.38rem;
  color: #fff;
  line-height: 1rem;
  padding: 0 0.2rem;
}
.business li .contxt {
  width: 100%;
  margin-top: 0.2rem;
}
.business li .contxt>.txt{
    
}
.business li .contxt p {
  font-size: 0.28rem;
  color: #303030;
  line-height: 0.48rem;
  margin-bottom: 0.1rem;
}
.business li.contxt .text {
  flex: 1;
}
.business li .contxt .text span {
  font-size: 0.3rem;
  color: #303030;
  margin-bottom: 0.1rem;
  display: block;
}
.business li .contxt .text em {
  font-size: 0.26rem;
  color: #6c6c6c;
  line-height: 0.38rem;
  display: block;
}
.business li .contxt .txt {
  width: 100%;
  display: flex;
  /*align-items: center;*/
  align-items: flex-start;
}
.business li .contxt .txt span {
  font-size: 0.28rem;
  color: #303030;
  margin-bottom: 0.2rem;
  line-height: 0.4rem;
  display: block;
}
.business li .contxt .txt p {
  font-size: 0.26rem;
  color: #6d6d6d;
  line-height: 0.48rem;
  margin-bottom: 0;
}
.business li .contxt .txt em {
  font-size: 0.26rem;
  color: #333;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  /* text-align: center; */
  display: block;
}
.business li .contxt .txt img {
  width: 0.3rem !important;
  /*height: 0.3rem;*/
  display: block;
  margin: 0.05rem auto 0;
  margin-right: 0.1rem;
}
.business li .contxt .txt b {
  font-weight: bold;
}
.about_logo {
  margin-top: 0.3rem;
}
.about_logo img {
  width: 100%;
}

.contact_tab {
  margin-top: 0.3rem;
  padding: 0 0.2rem;
  font-size: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact_tab li {
  text-align: center;
  padding-bottom: 0.2rem;
  position: relative;
}
.contact_tab li span {
  font-size: 0.26rem;
  color: #333;
}
.contact_tab li.active::before {
  content: "";
  width: 0.4rem;
  height: 2px;
  background: #f4924b;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
.contact_tab li.active span {
  color: #f4924b;
}

.contact_content .con {
  display: none;
}
.contact_content .con.on {
  display: block;
}
.tpa_content .tpa {
  width: 100%;
}
.tpa_content .tpa .pic {
  width: 100%;
  margin-right: 20px;
}
.tpa_content .tpa .pic img {
  width: 100%;
}
.tpa_content .tpa .pic .text {
  width: 100%;
  height: 1rem;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  bottom: 0;
}
.tpa_content .tpa .pic .text span {
  font-size: 0.36rem;
  color: #fff;
  line-height: 1rem;
  padding: 0 0.2rem;
}
.tpa_content .tpa .contxt {
  margin-top: 0.2rem;
}
.tpa_content .tpa .contxt p {
  font-size: 0.26rem;
  color: #303030;
  line-height: 0.48rem;
  margin-bottom: 0.1rem;
}
.tpa_content .tpa .contxt .txt {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.tpa_content .tpa .contxt .txt .icon {
  width: 0.36rem;
  height: 0.32rem;
  margin-right: 0.1rem;
}
.tpa_content .tpa .contxt .txt .text {
  flex: 1;
}
.tpa_content .tpa .contxt .txt .text span {
  font-size: 0.28rem;
  color: #303030;
  margin-bottom: 0.1rem;
  display: block;
}
.tpa_content .tpa .contxt .txt .text em {
  font-size: 0.24rem;
  color: #6c6c6c;
  line-height: 0.4rem;
  display: block;
}

.tpa_content .list {
  margin-top: 0.3rem;
}
.tpa_content .list li {
  width: 6.6rem;
  border: 1px solid #e5e5e5;
  padding: 0.4rem 0.2rem;
  box-sizing: border-box;
  margin-bottom: 0.2rem;
  font-size: 0;
}
.tpa_content .list li .icon {
  width: 1.03rem;
  height: 0.93rem;
  margin: 0 auto;
  display: block;
}
.tpa_content .list li .txt {
  margin: 0.1rem auto 0;
  text-align: center;
}
.service li .text .list .item .fix {
  display: flex !important;
  align-items: center;
}
.tpa_content .list li .txt span {
  font-size: 0.28rem;
  color: #f4924b;
  text-align: center;
  display: block;
  margin-bottom: 0.2rem;
}
.tpa_content .list li .txt p {
  font-size: 0.26rem;
  color: #606060;
  line-height: 0.38rem;
}
.tpa_content .list li .txt em {
  font-size: 0.26rem;
  color: #606060;
  line-height: 0.38rem;
  display: inline-block;
  margin: 0 0.2rem;
}
.tpa_content .list li .txt .arrow {
  width: 0.72rem;
  height: 0.17rem;
}
.tpa_content .list li:hover {
  border: none;
  border: 1px solid #e5e5e5;
  border-top: 0.04rem solid #f4924b;
}
.tpa_content .list li:nth-child(1) .txt {
  width: 4.2rem;
}
.tpa_content .list li:nth-child(2) .txt {
  width: 5.2rem;
}
.tpa_content .list li:nth-child(3) .txt {
  width: 100%;
  text-align: center;
}
.tpa_content .list li:nth-child(4) .txt {
  width: 3.8rem;
}

.trip_list {
  margin-top: 0.3rem;
  font-size: 0;
}
.trip_list li {
  width: 100%;
  margin-bottom: 0.2rem;
}
.trip_list li img {
  width: 100%;
}
.trip_list li p {
  font-size: 0.28rem;
  color: #4c4c4c;
  line-height: 0.88rem;
  padding: 0 0.2rem;
}
.trip_list li:hover {
  box-shadow: 0 0 0.1rem rgba(196, 196, 196, 0.75);
}

.overseas_list {
  margin-top: 0.3rem;
}
.overseas_list li {
  width: 100%;
  margin-bottom: 0.2rem;
}
.overseas_list li img {
  width: 100%;
}
.overseas_list li .text {
  width: 100%;
  background: #fff;
  box-shadow: 0.1rem 0 0.5rem rgba(0, 0, 0, 0.1);
  padding: 0.55rem 0.45rem;
  box-sizing: border-box;
}
.overseas_list li .text span {
  font-size: 0.34rem;
  color: #f4924b;
  margin-bottom: 0.2rem;
  display: block;
}
.overseas_list li .text p {
  font-size: 0.26rem;
  color: #666;
  line-height: 0.48rem;
}

.exchange {
  margin-top: 0.3rem;
}
.exchange .text {
  width: 100%;
  margin-bottom: 0.2rem;
  font-size: 0;
}
.exchange .text p {
  font-size: 0.26rem;
  color: #666;
  line-height: 0.48rem;
}
.exchange .text .btn {
  text-align: right;
  margin-top: 0.2rem;
}
.exchange .text .btn a {
  font-size: 0.24rem;
  color: #fff;
  line-height: 0.54rem;
  background: #f4924b;
  border-radius: 0.3rem;
  display: inline-block;
  padding: 0 0.25rem;
}
.exchange img {
  width: 100%;
}

.study {
  margin-top: 0.3rem;
}
.study img {
  width: 100%;
}
.study .text {
  margin-top: 0.2rem;
  font-size: 0;
}
.study .text p {
  font-size: 0.26rem;
  color: #666;
  line-height: 0.48rem;
}
.study .text .btn {
  text-align: right;
  margin-top: 0.2rem;
}
.study .text .btn a {
  font-size: 0.24rem;
  color: #fff;
  line-height: 0.54rem;
  background: #f4924b;
  border-radius: 0.3rem;
  display: inline-block;
  padding: 0 0.25rem;
}

.contact_list {
  margin-top: 0.3rem;
  font-size: 0;
}
.contact_list li {
  width: 100%;
  margin-bottom: 0.3rem;
}
.contact_list li .item {
  margin-bottom: 0.2rem;
}
.contact_list li .item span {
  font-size: 0.26rem;
  color: #333;
  line-height: 0.42rem;
  display: inline-block;
  vertical-align: middle;
}
.contact_list li .item .icon {
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.1rem;
  vertical-align: middle;
}
.contact_list li .item p {
  font-size: 0.26rem;
  color: #777;
  margin-top: 0.1rem;
  margin-left: 0.4rem;
}

.form_box {
  width: 100%;
  margin-top: 0.3rem;
  font-size: 0;
}
.form_box .item {
  margin-bottom: 0.2rem;
}
.form_box .item input {
  width: 100%;
  height: 0.88rem;
  line-height: 0.88rem;
  background: #f7f7f7;
  padding: 0 0.3rem;
  box-sizing: border-box;
  border-radius: 0.2rem;
  font-size: 0.28rem;
  color: #afafaf;
  border: none;
  outline: none;
}
.form_box .item textarea {
  width: 100%;
  height: 1.3rem;
  background: #f7f7f7;
  padding: 0.3rem 0.3rem;
  border-radius: 0.2rem;
  box-sizing: border-box;
  font-size: 0.28rem;
  color: #afafaf;
  border: none;
  outline: none;
}
.form_box .btn {
  margin-top: 0.2rem;
}
.form_box .btn button {
  width: 100%;
  height: 0.88rem;
  font-size: 0.32rem;
  color: #fff;
  border-radius: 0.2rem;
  line-height: 0.88rem;
  background: #f4924b;
  cursor: pointer;
  border: none;
  outline: none;
}

.info_form {
  margin-top: 0.3rem;
  font-size: 0;
}
.info_form .form_item {
  margin-bottom: 0.2rem;
}
.info_form .form_item input {
  width: 100%;
  height: 0.88rem;
  line-height: 0.88rem;
  background: #f7f7f7;
  padding: 0 0.3rem;
  box-sizing: border-box;
  border-radius: 0.2rem;
  font-size: 0.28rem;
  color: #afafaf;
  border: none;
  outline: none;
}
.info_form .form_item textarea {
  width: 100%;
  height: 1.6rem;
  background: #f7f7f7;
  padding: 0.3rem 0.3rem;
  border-radius: 0.2rem;
  box-sizing: border-box;
  font-size: 0.28rem;
  color: #afafaf;
  border: none;
  outline: none;
}
.file_upload {
  display: flex;
  vertical-align: top;
  width: 100%;
  background: #f7f7f7;
  padding: 0.1rem 0.1rem;
  box-sizing: border-box;
}
.file_upload .file {
  position: relative;
  display: inline-block;
  background: #4fb5e5;
  width: 2rem;
  height: 0.8rem;
  overflow: hidden;
  font-size: 0.28rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-indent: 0;
  line-height: 0.8rem;
}
.file_upload .file input {
  position: absolute;
  font-size: 0.28rem;
  cursor: pointer;
  right: 0;
  top: 0;
  opacity: 0;
}
.file_upload em {
  font-size: 0.24rem;
  color: #b5b5b5;
  line-height: 0.8rem;
  display: inline-block;
  margin-left: 0.2rem;
}

.info_form .btn {
  margin-top: 0.2rem;
}
.info_form .btn button {
  width: 100%;
  height: 0.88rem;
  font-size: 0.32rem;
  color: #fff;
  border-radius: 0.2rem;
  line-height: 0.88rem;
  background: #f4924b;
  cursor: pointer;
  border: none;
  outline: none;
}
.pic_list {
  margin-top: 0.2rem;
}
.pic_list li {
  width: 19%;
  display: inline-block;
  margin: 0 0.5%;
  vertical-align: top;
}
.pic_list li img {
  width: 100%;
}
.main_box {
  position: absolute;
  top: 0.55rem;
  right: 0.5rem;
  line-height: normal;
  font-size: 0.16rem;
}
.main_box p {
  font-size: 0.28rem;
  line-height: normal;
  color: #fff;
}
.main_box .mf {
  line-height: normal;
  font-size: 0.28rem;
  font-size: 0.24rem;
  color: #fff;
  line-height: 0.48rem;
  background: #f4924b;
  border-radius: 0.3rem;
  display: inline-block;
  padding: 0 0.24rem;
  margin-top: 0.3rem;
  margin-left: 0.63rem;
}

.flex-row {
    display: flex;
}
.flex-wrap {
    flex-wrap: wrap;
}
.test-jap-ul li {
    width: 1.8rem;
    height: 0.56rem;
    line-height: 0.56rem;
    background-color: #f5f5f5;
    color: #282828;
    font-size: 0.24rem;
    text-align: center;
    margin-right: 0.24rem;
}
.test-jap-ul li.on,.test-jap-ul li.on a {
    background-color: #f4924b;
    color: #fff;
    font-weight: 600;
}
.corp-hos-img {max-width:100%}
.test-tab {padding-bottom:0.4rem;}
.test-jap-ul li a {color: #282828;}
.vice-tit {font-size:0.26rem;text-align:center;color:#333333;line-height: 0.4rem;}
.common_tit2 {font-size:0.32rem;padding:0.4rem 0;text-align:center;font-weight:600}
.test-main-ul>li {text-align:center;width:31.66%;margin-left:2.505%;background-color:#fff;border-radius:4px;padding:.30rem 0.15rem;box-sizing:border-box}
.test-main-ul>li:hover {box-shadow: 0 0 9px rgb(149 149 149 / 29%);}
.test-main-ul>li:first-child {margin-left:0}
.test-main-box {margin-top:0.40rem}
.test-main-tit {margin:0.32rem 0 0.24rem;font-size:0.28rem;color:#333;}
.test-main-desc {font-size:0.20rem;color:#666;line-height:1.5em;text-align:left}
.character-ul>li {width:100%;text-align:center;margin-top: 0.5rem;}
.dz-box>img {max-width:60%}
.character-desc {
    margin-top: 0.35rem;
    position: relative;
    padding-bottom: 0.25rem;
    font-size: 0.28rem;
    color: #333;
    font-weight: 600;
}
.bgfff {background-color:#fff}
.character-desc::before {
    content: "";
    width: 0.54rem;
    height: 0.05rem;
    background: #f4924b;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}
.character-bott-ul>li {width:48.7375%;margin-left:2.495%;margin-top:0.2rem;border:1px solid #eeeeee;align-items:center;color:#333;box-sizing:border-box;padding:0.20rem 0.15rem;box-sizing:border-box;}
.character-bott-ul>li.on, .character-bott-ul>li.on .char-desc{background-color:#f4924b;color:#fff;border-color:#f4924b}
.character-bott-ul>li:nth-of-type(2n+1) {margin-left:0;}
.char-left {width:31.57%}
.char-right {width:68.42%}
.char-tit {font-size:0.26rem;margin-bottom:0.15rem;font-weight:600}
.char-desc {font-size:0.20rem;color:#666;}
.character-bott-ul li .on-img {display:none}
.character-bott-ul li.on .on-img {display:inline-block}
.character-bott-ul li.on .normal-img {display:none}
.char-left {text-align:center}
.corp-his-ul>li {width:48.33%;margin-left:3.33%;margin-bottom:0.6rem;text-align:center}
.corp-his-ul>li:nth-of-type(2n+1) {margin-left:0}
.hos-logo {margin-top:0.32rem;max-width:80%}
.test-dz-ul>li {width:50%;text-align:center;padding:0.25rem 0.15rem;box-sizing:border-box;
}
.test-main-img {width:1rem}
.dz-desc {font-size:0.24rem;color:#333333;margin-top:0.25rem;line-height:0.4rem}
.dz-box {width:1.18rem;height:1.18rem;border:1px solid #f5f5f5;border-radius:50%;margin:0 auto;display:flex;justify-content:center;align-items:center;}
.normal-test {padding:0.4rem 0}
.normal-test-inner {width:7.5rem;height:6.43rem;margin:0 auto;background:url(../images/normal-test.png) no-repeat center center;background-size:cover;position:relative;}
.normal-test-inner-img-box {position:absolute;width:2.45rem;height:2.45rem;border-radius:50%;left:50%;top:50%;transform:translate(-50%,-50%);overflow:hidden}
.inner-img {max-width:100%}
.img-marks {width:100%;height:100%;background-color:rgba(0,0,0,.2);position:absolute;left:0;top:0;display:flex;justify-content:center;align-items:center;flex-direction:column;padding:0 0.3rem;box-sizing:border-box}
.img-marks:hover {background:rgba(0,0,0,0)}
.inner-info {font-size:0.24rem;color:#fff;text-align:center;font-weight:600;margin-top:0.25rem;line-height:1.6em}
.TJ-ul {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);z-index:1;}
  .normal-img,.on-img{max-width:80%;} 
.TJ-ul>li {position:absolute;z-index:9;transform:translate(-50%,-50%);display:flex;align-items:center;flex-direction:column}

.TJ-ul>li:nth-of-type(3) {flex-direction:column;}

.TJ-word {white-space:nowrap;font-size:0.24rem;color:#333;}
.TJ-img {max-width:0.6rem;}


.TJ-ul>li:nth-of-type(7) {flex-direction:column-reverse}

.TJ-ul2 {position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);z-index:1;}
.TJ-ul2>li {position:absolute;z-index:9;transform:translate(-50%,-50%);display:flex;align-items:center;flex-direction:column}
.TJ-ul2>li:nth-of-type(5) {flex-direction:column-reverse}



.ul-question li {margin-top:0.40rem;padding: 0.15rem 0.40rem;font-size:0.24rem;border-radius: 0.1rem;line-height:1.7em;position:relative}
.ul-question li:before {content:"";display:block;position:absolute; width:0;height:0;border-right:7px solid #f4924b;border-top:6px solid transparent;border-bottom:6px solid transparent;top:50%;transform:translate(-100%,-50%);left:0}
.ul-question:after {display:block;content:"clear";height:0;clear:both;overflow:hidden;visibility:hidden;}
.ul-question li:nth-of-type(2n+1){
    background-color: #f4924b;
    
    width: 30%;
    
    font-size: 0.24rem;
    color: #fff;
    float: left;
}
.ul-question li:nth-of-type(2n) {
    width: 65.83%;
    border: 1px solid  #f4924b;
    color: #666666;
    float: right;
}

.ul-question li:nth-of-type(2n):before {
    right: 0;
    left: unset;
    transform: translate(100%,-50%);
    border-right: none;
    border-left: 7px solid #f4924b;
}

.ul-question li:nth-of-type(2n):after {
    content:"";display:block;position:absolute; width:0;height:0;border-top:5px solid transparent;border-bottom:5px solid transparent;top:50%;transform:translate(100%,-50%);
     border-left: 6px solid #fff;
     right: 0;
}