/* #region 初始化 */
* {
  margin: 0;
  padding: 0;
}

* {
  font-family: text;
}

body {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: #000000;
  display: block;
}

div,
a {
  box-sizing: border-box;
}

input {
  border: none;
  outline: none;
}

li {
  list-style: none;
}

.clearfloat {
  zoom: 1;
}

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

.flex_row {
  display: flex;
}

.flex_col {
  display: flex;
  flex-direction: column;
}

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex_space_between {
  display: flex;
  justify-content: space-between;
}

.position_center-x {
  left: 50%;
  transform: translate(-50%);
}

.position_center-y {
  top: 50%;
  transform: translateY(-50%);
}

.cursor {
  cursor: pointer;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  display: block;
}

.textone {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.texttwo {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.swiper-container {
  width: 100%;
}

/* #endregion */

/* #region  首页*/
body {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.width {
  padding-left: .3rem;
  padding-right: .3rem;
}

.header {
  padding: 0 .15rem 0 .3rem;
  height: 1.2rem;
  display: flex;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99999;
  background: #fff;
  box-shadow: 0 .08rem .1rem 0px rgba(0, 0, 0, 0.08);
}

.logo img {
  width: 3.51rem;
}

.search_icon {
  padding: .15rem;
  margin-left: auto;
}

.search_icon img {
  width: .37rem;
}

.nav_icon {
  padding: .15rem;
  margin-left: .2rem;
}

.nav_icon img {
  width: .4rem;
  transition: .2s;
}

.nav_icon2 img {
  transform: rotate(90DEG);
}

.nav_modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  z-index: 99999;
  display: none;
}

.nav {
  position: fixed;
  left: -101%;
  top: 0;
  width: 60%;
  height: 100%;
  background: #fff;
  z-index: 99999;
  padding-top: 1rem;
  transition: .2s;
}

.nav2 {
  left: 0;
}

.nav a {
  width: 100%;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .32rem;
  color: #333;
  position: relative;
}

.nav .nav_active {
  color: #e71218;
}

.nav_active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: .06rem;
  transform: translateX(-50%);
  width: .5rem;
  height: .05rem;
  border-radius: .05rem;
  background: #e71218;
}

.banner {
  position: relative;
}

.banner .swiper-slide {
  position: relative;
}

.banner .swiper-slide img {
  width: 100%;
}

.banner_dot {
  position: absolute;
  left: 0;
  bottom: .2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.banner_dot span {
  width: .12rem;
  height: .12rem;
  box-sizing: border-box;
  border-radius: 50%;
  margin: 0 .1rem;
  background: #c0c0bf;
  opacity: 1;
}

.banner_dot .swiper-pagination-bullet-active {
  background: #e71218;
}

.banner_txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-top: 1rem;
  color: #fff;
  text-align: center;
}

.banner_txt div {
  font-size: .4rem;
  letter-spacing: .02rem;
}

.banner_txt span {
  display: block;
  font-size: .2rem;
  margin-top: .22rem;
  letter-spacing: .01rem;
}

.banner_txt div,
.banner_txt span {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

.banner .swiper-slide-active div {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-delay: .1s;
  animation-delay: .1s;
}

.banner .swiper-slide-active span {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

.index1 {
  padding: .72rem .3rem .6rem .3rem;
  border-bottom: .15rem solid #eaeaea;
}

.index_title {
  display: flex;
  justify-content: center;
  font-size: .36rem;
  color: #262626;
}

.index_title div {
  border-bottom: .02rem solid #e71218;
  padding-bottom: .12rem;
}

.index_title span {
  color: #e71218;
}

.index1_title {
  display: flex;
  align-items: center;
  font-size: .3rem;
  color: #e71218;
  font-weight: bold;
}

.index1_title img {
  width: .06rem;
  margin-left: .15rem;
}

.index1_img {
  margin-top: .31rem;
}

.index1_img img {
  width: 100%;
}

.index1_text {
  font-size: .28rem;
  color: #666666;
  line-height: 1.714;
  margin-top: .45rem;
}

.index1_top {
  margin-top: .45rem;
}

.index1_bottom {
  margin-top: .38rem;
}

.index1_bottom ul {
  display: flex;
  flex-wrap: wrap;
  padding-top: .05rem;
}

.index1_bottom li {
  width: 25%;
  margin-top: .3rem;
}

.index1_bottom li img {
  width: .8rem;
  margin: 0 auto;
}

.index1_bottom li div {
  font-size: .24rem;
  color: #262626;
  margin-top: .06rem;
  text-align: center;
}

.index_btn {
  width: 3.6rem;
  height: .64rem;
  border-radius: .32rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .3rem;
  color: #fff;
  background: #e71218;
  margin: .53rem auto 0 auto;
  font-weight: bold;
}

.index_btn img {
  width: .24rem;
  margin-right: .2rem;
}

.index2 {
  padding: .73rem 0 .6rem 0;
}

.index2 .swiper-slide a {
  width: 4rem;
  margin: 0 auto;
}

.index2 .swiper-slide img {
  width: 100%;
}

.index2_name {
  text-align: center;
  margin-top: .18rem;
}

.index2_name div {
  font-size: .3rem;
  color: #262626;
}

.index2_name span {
  font-size: .24rem;
  color: #666666;
  display: block;
  margin-top: .08rem;
}

.index2_look {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .24rem;
  color: #e71218;
  margin-top: .25rem;
}

.index2 .swiper-container {
  margin-top: .59rem;
}

.index2 .swiper-slide .index2_look img {
  width: .06rem;
  margin-left: .18rem;
}

.index2 .swiper-slide {
  transform: scale(.85);
  transition: .3s;
}

.index2 .swiper-slide-active {
  transform: scale(1);
}

.index3_img img {
  width: 100%;
}

.index3_tab {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #eaeaea;
  margin-top: .28rem;
}

.index3_tab a {
  font-size: .36rem;
  color: #262626;
  margin: 0 .4rem;
  padding: .22rem 0;
  position: relative;
}

.index3_tab .index3_active {
  color: #e71218;
}

.index3_active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #e71218;
}

.index3_ul {
  padding-top: .2rem;
}

.index3_ul li a {
  border-bottom: 1px dashed #cacaca;
  padding: .32rem 0 .3rem 0;
}

.index3_ul li div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .24rem;
  color: #999999;
}

.index3_ul li span {
  color: #e71218;
  font-weight: bold;
}

.index3_ul li h3 {
  font-size: .3rem;
  color: #262626;
  font-weight: normal;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: .15rem;
}

.index3_btn {
  width: 100%;
  height: .72rem;
  border-radius: .08rem;
  background: #eaeaea;
  color: #262626;
  font-size: .26rem;
  margin-top: .4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index4 {
  padding: .5rem 0 .75rem 0;
}

.index4_row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: .42rem;
}

.index4_col {
  font-size: .24rem;
  color: #262626;
  text-align: center;
}

.index4_col div {
  width: .9rem;
  height: .9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: .03rem .04rem .1rem 0px rgba(234, 30, 25, 0.46);
  background: linear-gradient(0deg, rgb(231, 18, 24) 0%, rgb(243, 75, 30) 100%);
  margin: 0 auto;
}

.index4_col span {
  display: block;
  margin-top: .16rem;
}

.index4_col img {
  width: .45rem;
}

.index4_jt {
  position: relative;
  top: .4rem;
  margin: 0 .17rem;
}

.index4_jt img {
  width: .68rem;
  height: .11rem;
}

.index5 {
  padding: .72rem .55rem .66rem .55rem;
  background: url(../images/index5_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: .5rem;
}

.index5_title {
  font-size: .36rem;
  color: #fff;
  text-align: center;
}

.index5_form {
  padding-top: .26rem;
}

.index5_row {
  width: 100%;
  height: .8rem;
  background: #fff;
  border-radius: .1rem;
  position: relative;
  margin-top: .3rem;
}

.index5_row input {
  display: block;
  width: 100%;
  height: 100%;
  background: none;
  outline: none;
  padding: 0 .58rem;
  box-sizing: border-box;
  font-size: .24rem;
}

.index5_row span {
  position: absolute;
  left: .4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: .24rem;
  color: #e71218;
}


.index5_row2 {
  display: flex;
  align-items: center;
  padding-right: .4rem;
}

.index5_row2 img {
  width: .19rem;
}

.index5_row2 input {
  padding: 0 .4rem;
}

.index5_row2 ul {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  border-radius: .1rem;
  z-index: 20;
  border: 1px solid #cacaca;
  padding: .2rem 0;
  display: none;
}

.index5_row2 li {
  width: 100%;
  height: .6rem;
  font-size: .24rem;
  text-align: center;
  line-height: .6rem;
  color: #333;
}

.index5_row3 {
  height: 1.6rem;
}

.index5_row textarea {
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: .24rem;
  padding: .2rem .4rem;
  box-sizing: border-box;
  resize: none;
}

.index5_btn {
  width: 100%;
  height: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .28rem;
  color: #fff;
  background: #e71218;
  margin-top: .4rem;
  border: none;
  outline: none;
  border-radius: .1rem;
}

.footer {
  border-top: 1px solid #cacaca;
}

.footer_main {
  padding: .52rem .25rem .35rem .25rem;
  border-bottom: 1px solid #cacaca;
}

.footer_t1 {
  font-size: .36rem;
  color: #262626;
}

.footer_main .index_btn {
  margin: .3rem 0 0 0;
}

.footer_t2 {
  font-size: .28rem;
  color: #262626;
  line-height: 1.5;
  margin-top: .26rem;
}

.footer_t3 {
  display: flex;
  align-items: center;
  font-size: .24rem;
  color: #666666;
  margin-top: .3rem;
}

.footer_t3 div {
  width: 1.5rem;
  box-shadow: .03rem .04rem .1rem 0px rgba(234, 30, 25, 0.25);
  padding: .04rem;
}

.footer_t3 img {
  width: 100%;
}

.footer_t3 span {
  flex: 1;
  overflow: hidden;
  padding-left: .48rem;
}

.footer_text {
  height: .76rem;
  line-height: .76rem;
  font-size: .24rem;
  color: #666666;
  text-align: center;
}

.tabbar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.2rem;
  background: linear-gradient(90deg, rgb(38, 38, 38) 0%, rgb(57, 57, 57) 100%);
  z-index: 999;
  display: flex;

}

.tabbar a {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .28rem;
  color: #fff;
}

.tabbar img {
  width: .4rem;
  margin-right: .12rem;
}

.tabbar a:first-of-type {
  border-right: 1px solid #454545;
}

.tabbar a:last-of-type {
  border-left: 1px solid #1b1b1b;
}

/* #endregion */

/* #region  2关于我们*/

.banner2 img {
  width: 100%;
}

.about1 {
  padding: .68rem .3rem .6rem .3rem;
}

.about_title {
  font-size: .4rem;
  color: #262626;
  text-align: center;
  font-weight: bold;
}

.about1_text {
  font-size: .28rem;
  color: #666666;
  line-height: .48rem;
  padding: 0 .4rem;
  margin-top: .36rem;
  height: 2.88rem;
  overflow: hidden;
  /* text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical; */
}

.about1_text2 {
  height: auto;
}

.about1_more {
  font-size: .28rem;
  color: #e71218;
  line-height: 1.714;
  padding: 0 .4rem;
}

.about1_img {
  margin-top: .44rem;
}

.about1_img img {
  width: 100%;
}

.about2 {
  padding: .52rem .15rem .53rem .15rem;
  background: #ededed;
}

.about2_row {
  display: flex;
  align-items: center;
  margin-top: .56rem;
}

.about3_prev,
.about3_next,
.about2_prev,
.about2_next {
  padding: .15rem;
}

.about3_prev img,
.about3_next img,
.about2_prev img,
.about2_next img {
  width: .2rem;
}

.about2_row .swiper-slide img {
  width: 3.84rem;
  margin: 0 auto;
}

.about3 {
  padding: .68rem .15rem .8rem .15rem;
}

.about3_row {
  display: flex;
  align-items: center;
  margin-top: .56rem;
}

.about3_row .swiper-slide img {
  width: 5rem;
  margin: 0 auto;
}

/* #endregion */

/* #region  3业务领域 4联系我们 5招贤纳士*/
.field_ul {
  background: #f5f5f5;
  padding: .4rem .3rem .9rem .3rem;
}

.field_ul li {
  background: #fff;
  padding: 0 .4rem;
  margin-top: .2rem;
}

.field_top {
  width: 100%;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.field_top div {
  display: flex;
  align-items: center;
  font-size: .36rem;
  color: #262626;
}

.field_top div img {
  width: .64rem;
  margin-right: .32rem;
}

.field_top span img {
  width: .2rem;
  transition: .2s;
}

.field_top2 span img {
  transform: rotate(180deg);
}

.field_list {

  border-top: 1px solid #eaeaea;
  padding-top: .08rem;
  padding-bottom: .36rem;
  display: none;
}

.field_list div {
  display: flex;
  flex-wrap: wrap;
}

.field_list a {
  min-width: 33.33%;
  font-size: .28rem;
  color: #666666;
  padding-right: .4rem;
  margin-top: .2rem;
}

.contact_ul {
  padding: .4rem .6rem .75rem .6rem;
  background: #f5f5f5;
}

.contact_ul li {
  background: #fff;
  margin-top: .2rem;
  padding: .48rem 1.15rem .36rem 1.15rem;
}

.contact_ul img {
  width: .55rem;
  margin: 0 auto;
}

.contact_t1 {
  font-size: .24rem;
  color: rgba(38, 38, 38, .5);
  text-align: center;
  margin-top: .2rem;
}

.contact_t2 {
  font-size: .3rem;
  color: #262626;
  text-align: center;
  margin-top: .18rem;
}

.contact_t3 {
  font-size: .24rem;
  color: #e71218;
  text-align: center;
  margin-top: .2rem;
  font-weight: bold;
}

.recruit_main {
  background: #f5f5f5;
  padding: .45rem .3rem .38rem .3rem;
}

.recruit_card {
  font-size: .28rem;
  color: #262626;
  line-height: 1.5;
  padding: 0 .38rem;
}

.recruit_card span {
  color: #e71218;
}

.recruit_main ul {
  margin-top: .46rem;
}

.recruit_main li {
  background: #fff;
  padding: .4rem .4rem .18rem .4rem;
  margin-bottom: .4rem;
}

.recruit_title {
  font-size: .3rem;
  color: #e71218;
  font-weight: bold;
}

.recruit_text {
  font-size: .28rem;
  color: #666666;
  line-height: .42rem;
  max-height: 2.1rem;
  overflow: hidden;
  margin-top: .16rem;
}

.recruit_text2 {
  max-height: 100%;
}

.recruit_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .24rem;
  color: #262626;
  padding: .18rem 0;
  margin-top: .08rem;
  font-weight: bold;
}

.recruit_btn img {
  width: .2rem;
  margin-left: .1rem;
  transition: .2s;
}

.recruit_btn2 img {
  transform: rotate(180deg);
}

/* #endregion */

/* #region  6列表 7详情*/
.list_main {
  padding: .4rem .3rem .6rem .3rem;
}

.list_tab {
  display: flex;
  flex-wrap: wrap;
}

.list_tab a {
  width: 1.6rem;
  height: .72rem;
  border-radius: .08rem;
  margin-right: .165rem;
  font-size: .24rem;
  color: #262626;
  background: #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .2rem;
}

.list_tab a:nth-of-type(4n+4) {
  margin-right: 0;
}

.list_tab .list_active {
  color: #fff;
  background: #e71218;
}

.list_main .index3_btn {
  margin-top: .58rem;
}

.show_main {
  padding: .45rem .3rem .6rem .3rem;
}

.show_title {
  font-size: .36rem;
  color: #262626;
  font-weight: normal;
  line-height: 1.5;
}

.show_time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .24rem;
  color: #999999;
  border-bottom: 1px solid #eaeaea;
  margin-top: .18rem;
  padding-bottom: .3rem;
}

.show_time div {
  color: #e71218;
}

.show_text {
  font-size: .28rem;
  color: #262626;
  line-height: 1.5;
  margin-top: .26rem;
}

.show_page {
  display: flex;
  justify-content: space-between;
  margin-top: .58rem;
}

.show_page a {
  width: 3.4rem;
  height: .72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaeaea;
  color: #262626;
  font-size: .24rem;
  border-radius: .08rem;
}

.show_page a:last-of-type {
  background: #e71218;
  color: #fff;
}

/* #endregion */

/* #region  8律师团队 9律师介绍*/
.lawyer_main {
  padding: .2rem .3rem .6rem .3rem;
}

.lawyer_main ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.lawyer_main li {
  width: 3.37rem;
  margin-top: .4rem;
  box-shadow: 0px .07rem .14rem 0px rgba(0, 0, 0, 0.06);
}

.lawyer_main li img {
  width: 100%;
}

.lawyer_bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: .18rem .3rem;
}

.lawyer_name {
  flex: 1;
  overflow: hidden;
}

.lawyer_name div {
  font-size: .28rem;
  color: #262626;
  font-weight: bold;
}

.lawyer_name span {
  display: block;
  font-size: .24rem;
  color: #666666;
  margin-top: .04rem;
}

.lawyer_look {
  display: flex;
  align-items: center;
  font-size: .24rem;
  color: #e71218;
  margin-left: .15rem;
}

.lawyer_main li .lawyer_look img {
  width: .06rem;
  margin-left: .08rem;
}

.lawyer_show {
  padding: .6rem .3rem .56rem .3rem;
}

.lawyer_img img {
  width: 3.58rem;
  margin: 0 auto;
}

.lawyer_srow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .34rem;
}

.lawyer_sname {
  flex: 1;
  overflow: hidden;
}

.lawyer_sname div {
  font-size: .4rem;
  font-weight: bold;
  color: #262626;
}

.lawyer_sname span {
  display: block;
  font-size: .24rem;
  color: #666666;
  margin-top: .08rem;
}

.lawyer_srow a {
  font-size: .24rem;
  color: #e71218;
}

.lawyer_stxt {
  font-size: .28rem;
  color: #262626;
  line-height: 1.5;
  margin-top: .22rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.lawyer_stxt2 {
  display: block;
}

.lawyer_smore {
  font-size: .28rem;
  color: #e71218;
  line-height: 1.5;
}

.lawyer_smain {
  border-top: 1px solid #eaeaea;
  margin-top: .46rem;
  padding-top: .46rem;
}

.lawyer_stitle {
  font-size: .36rem;
  color: #262626;
  font-weight: bold;
}

.lawyer_stext {
  font-size: .28rem;
  color: #666666;
  line-height: 1.5;
  margin-top: .35rem;
}

/* #endregion */

/* #region  10搜索 11搜索结果*/
.search_main {
  padding: 1.2rem .55rem .6rem .55rem;
}

.search_main div {
  width: 100%;
  height: .8rem;
  border-radius: .1rem;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  padding-left: 2.26rem;
}

.search_main img {
  width: .24rem;
}

.search_main input {
  flex: 1;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 .2rem;
  font-size: .24rem;
  background: none;
  border: none;
  color: #262626;
}


.search_main button {
  width: 100%;
  height: .8rem;
  border-radius: .1rem;
  background: #e71218;
  color: #fff;
  font-size: .24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  margin-top: .4rem;
}

.search_end {
  padding: .68rem .3rem .6rem .3rem;
}

.search_top {
  font-size: .36rem;
  color: #262626;
}

.search_top div {
  display: inline;
  font-size: .24rem;
  color: #666666;
}

/* #endregion */

/* #region  3业务领域内页*/
.field1 {
  padding: .68rem .3rem .8rem .3rem;
}

.field1_title {
  text-align: center;
}

.field1_t1 {
  font-size: .36rem;
  color: #333333;
  letter-spacing: .02rem;
}

.field1_t1 span {
  color: #e71218;
}

.field1_t2 {
  font-size: .24rem;
  color: #666666;
  margin-top: .08rem;
  letter-spacing: .01rem;
}

.field1_img {
  margin-top: .55rem;
}

.field1_img img {
  width: 100%;
}

.field1 .swiper-container {
  margin-top: .47rem;
}

.field1_title {
  font-size: .36rem;
  color: #333333;
  text-align: center;
}

.field1_title span {
  font-size: .4rem;
  color: #e71218;
  font-weight: bold;
  margin-right: .06rem;
}

.field1_hr {
  width: 3.6rem;
  height: 1px;
  background: #eaeaea;
  position: relative;
  margin: .3rem auto 0 auto;
}

.field1_hr span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: .6rem;
  height: 1px;
  background: #e71218;
}

.field1_text {
  font-size: .28rem;
  color: #666666;
  line-height: 1.5;
  padding: 0 1.16rem;
  text-align: center;
  margin-top: .3rem;
}

.field1_dot {
  display: flex;
  justify-content: center;
  margin-top: .4rem;
}

.field1_dot div {
  width: .8rem;
  height: .8rem;
  border-radius: .08rem;
  background: #eaeaea;
  margin: 0 .2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.field1_dot div:last-of-type {
  background: #e71218;
}

.field1_dot img {
  width: .15rem;
}

.field2_img img {
  width: 100%;
}

.field2_card {
  padding: .75rem .7rem .66rem .7rem;
}

.field2_icon img {
  width: .82rem;
}

.field2_title {
  font-size: .4rem;
  color: #333333;
  margin-top: .45rem;
}

.field2_text {
  font-size: .28rem;
  color: #666666;
  line-height: 1.5;
  margin-top: .4rem;
}

/* #endregion */

/* #region  */

/* #endregion */
/* e71218 */
.textone {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.texttwo {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}