.yd-flex {
  display: -webkit-flex;
  display: flex;
}
.yd-inline-flex {
  display: -webkit-inline-flex;
  display: inline-flex;
}
.flex-row {
  flex-direction: row;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-column {
  flex-direction: column;
}
.flex-column-reverse {
  flex-direction: column-reverse;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
.justify-content-start {
  justify-content: flex-start;
}
.justify-content-end {
  justify-content: flex-end;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-around {
  justify-content: space-around;
}
.align-items-start {
  align-items: flex-start;
}
.align-items-end {
  align-items: flex-end;
}
.align-items-center {
  align-items: center;
}
.align-items-baseline {
  align-items: baseline;
}
.align-items-stretch {
  align-items: stretch;
}
.align-content-start {
  align-content: flex-start;
}
.align-content-end {
  align-content: flex-end;
}
.align-content-center {
  align-content: center;
}
.align-content-between {
  align-content: space-between;
}
.align-content-around {
  align-content: space-around;
}
.align-content-stretch {
  align-content: stretch;
}
/*上面是在容器上设置*/
/*下列是在项目上设置*/
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
.order-5 {
  order: 5;
}
.order-6 {
  order: 6;
}
.order-7 {
  order: 7;
}
.order-8 {
  order: 8;
}
.order-9 {
  order: 9;
}
.order-10 {
  order: 10;
}
.order-11 {
  order: 11;
}
.order-12 {
  order: 12;
}
.flex-grow-0 {
  flex-grow: 0;
}
.flex-grow-1 {
  flex-grow: 1;
}
.flex-grow-2 {
  flex-grow: 2;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.align-self-auto {
  align-self: auto;
}
.align-self-start {
  align-self: flex-start;
}
.align-self-end {
  align-self: flex-end;
}
.align-self-center {
  align-self: center;
}
.align-self-baseline {
  align-self: baseline;
}
.align-self-stretch {
  align-self: stretch;
}
/*基础部分结束*/
/*常用组合部分开始*/
.yd-flex-row {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
}
.yd-flex-column {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}
.yd-flex-row-center {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.yd-flex-column-center {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* ------页面颜色相关----------- */
/* 文字颜色 */
/* 背景颜色 */
/* 边框颜色 */
/*边框常用值 */
/* 行为相关颜色 */
/* ----------------尺寸变量------------ */
/* 文字尺寸 */
/* 图片尺寸 */
/* 边框圆角 Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.p {
  font-size: 0.12rem;
}
.top_img {
  height: 6.5rem;
}
.top_img .top_img_item {
  height: 6.5rem;
}
.top_img .top_img_item .img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.page {
  min-width: 12rem;
}
.official_head {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  height: 1rem;
  background-color: #fff;
  color: #333;
  text-align: center;
}
.official_head .head_top {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 12rem;
  height: 1rem;
  z-index: 1;
  left: 0;
}
.official_head .head_top .head_left {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.official_head .head_top .head_left .head_logo {
  width: 0.5rem;
  height: 0.5rem;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.official_head .head_top .head_left .head_logo .logo {
  width: 100%;
  height: 100%;
}
.official_head .head_top .head_left .head_logo_txt {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 0.3rem;
  padding-left: 0.13rem;
}
.official_head .head_top .head_left .head_logo_txt .left_txt {
  color: #369ef5;
}
.official_head .head_top .head_left .head_logo_txt .right_txt {
  color: #aaaaaa;
}
.official_head .head_top .head_line {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 18rem;
  font-size: 0.2rem;
}
.official_head .head_top .head_line .line_txt:hover {
  color: #71beff;
}
.official_head .head_top .head_line .line_txt {
  width: 1.2rem;
  color: #333;
  text-align: end;
  padding: 3px 2px 3px 2px;
}
.official_head .head_top .head_line .active {
  color: #2186d8;
}
.official_footer {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 3.27rem;
  background-color: #212831;
  width: 100%;
  margin: 0 auto;
}
.official_footer .contact_box {
  width: 12rem;
  height: 2.27rem;
}
.official_footer .contact_box .contact_message {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.official_footer .contact_box .contact_message .message_content {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.official_footer .contact_box .contact_message .message_content .message_left {
  font-size: 0.16rem;
  color: #d7d7d7;
  width: 3.6rem;
}
.official_footer .contact_box .contact_message .message_content .message_left .message_txt {
  height: 0.3rem;
  line-height: 0.3rem;
}
.official_footer .contact_box .contact_message .message_content .line_message {
  height: 1.21rem;
  width: 0.02rem;
  background-color: #333;
}
.official_footer .contact_box .contact_message .message_content .message_right {
  font-size: 0.16rem;
  color: #d7d7d7;
  width: 3.6rem;
}
.official_footer .contact_box .contact_message .message_content .message_right .message_txt {
  height: 0.3rem;
  line-height: 0.3rem;
}
.official_footer .footer {
  color: #aaaaaa;
  height: 1rem;
  width: 100%;
  font-size: 0.13rem;
  border-top: 0.02rem solid #333333;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.official_footer .footer .message_bottom .message_bottom_top {
  text-align: center;
}
.official_footer .footer .message_bottom .message_bottom_bottom {
  text-align: center;
}
.official_footer .top_icon:hover {
  opacity: 0.2;
  transition: opacity 2s;
}
.official_footer .top_icon {
  position: fixed;
  display: none;
  bottom: 0.4rem;
  right: 0.4rem;
  width: 0.5rem;
  height: 0.5rem;
  color: #fff;
  line-height: 0.5rem;
  font-size: 0.3rem;
  background-color: #369ef5;
  border-radius: 0.03rem;
  text-align: center;
  opacity: 1;
}
.official_index {
  width: 100%;
  min-width: 12rem;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.official_index .index_top {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 6.5rem;
}
.official_index .index_top #demo {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 0;
  right: 0;
  position: absolute;
  height: 6.5rem;
  top: 1rem;
  width: 100%;
  min-width: 12rem;
  overflow: hidden;
}
.official_index .index_top #demo ul {
  margin-bottom: 0.6rem;
}
.official_index .index_top #demo .carousel-inner .carousel-caption {
  text-align: start;
  display: flex;
  justify-content: center;
  flex-flow: column;
  top: 0;
  right: 0;
  bottom: 0;
  left: 55%;
  z-index: 0;
}
.official_index .index_top #demo .carousel-inner .carousel-caption .top_img_title {
  font-size: 0.3rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.official_index .index_top #demo .carousel-inner .carousel-caption .top_img_txt {
  font-size: 0.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  width: 5rem;
}
.official_index .index_top #demo .switch .switch-box {
  width: 0.71rem;
  height: 0.71rem;
  border-radius: 0.1rem;
  background-color: rgba(0, 0, 0, 0.4);
}
.official_index .index_top #demo .switch .switch-box .switch-span {
  color: #ffffff;
  font-size: 0.3rem;
}
.official_index .index_slogan {
  height: 2.6rem;
  background-color: #ffffff;
}
.official_index .index_slogan .slogan_box {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.official_index .index_slogan .slogan_box .left {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 10rem;
  padding-right: 1.2rem;
}
.official_index .index_slogan .slogan_box .left .title {
  font-size: 0.2rem;
  margin-bottom: 0.4rem;
}
.official_index .index_slogan .slogan_box .left .content {
  color: #aaaaaa;
  font-size: 0.13rem;
  display: -webkit-box;
  line-height: 0.3rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.official_index .index_slogan .slogan_box .right {
  width: 2rem;
  height: 2.6rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.official_index .index_slogan .slogan_box .right .square {
  border-radius: 0.1rem;
  display: flex;
  color: #FFFFFF;
  align-items: center;
  justify-content: center;
  background-color: #369ef5;
  height: 0.5rem;
  width: 1.8rem;
  font-size: 0.2rem;
}
.official_index .index_product {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  height: 7.25rem;
}
.official_index .index_product .index_product_box {
  display: flex;
  justify-content: center;
  height: 7.25rem;
}
.official_index .index_product .index_product_box .product_box {
  width: 100%;
  padding: 1rem 0;
}
.official_index .index_product .index_product_box .product_box .title_box {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.official_index .index_product .index_product_box .product_box .title_box .title {
  color: #333;
  font-size: 0.28rem;
}
.official_index .index_product .index_product_box .product_box .title_box .subtitle {
  color: #9f9f9f;
  font-size: 0.16rem;
  margin-bottom: 0.1rem;
}
.official_index .index_product .index_product_box .product_box .title_box .line {
  width: 0.5rem;
  margin-top: 0.1rem;
  height: 0.03rem;
  background-color: #369ef5;
}
.official_index .index_product .index_product_box .product_box .section {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  margin-left: -0.93rem;
  margin-right: -0.93rem;
}
.official_index .index_product .index_product_box .product_box .section .section_box {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 2rem;
  margin: 0 0.93rem;
}
.official_index .index_product .index_product_box .product_box .section .section_box .section_img {
  height: 0.3rem;
  width: 0.3rem;
}
.official_index .index_product .index_product_box .product_box .section .section_box .section_img .img {
  width: 100%;
  height: 100%;
}
.official_index .index_product .index_product_box .product_box .section .section_box .content {
  margin-left: 0.2rem;
  width: 2.26rem;
}
.official_index .index_product .index_product_box .product_box .section .section_box .content .title {
  font-size: 0.2rem;
  color: #666666;
  margin-bottom: 0.3rem;
}
.official_index .index_product .index_product_box .product_box .section .section_box .content .detail {
  font-size: 0.13rem;
  color: #9f9f9f;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  width: 2.26rem;
  margin-bottom: 0.7rem;
  line-height: 0.28rem;
}
.official_index .index_number {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-image: url(/static/common/app/official/img/number.jpg);
  width: 100%;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  height: 3.98rem;
  position: relative;
}
.official_index .index_number .index_number_box .number_box {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 3.98rem;
}
.official_index .index_number .index_number_box .number_box .section {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.66rem;
}
.official_index .index_number .index_number_box .number_box .section .number {
  font-size: 0.4rem;
  color: #f2f2f2;
}
.official_index .index_number .index_number_box .number_box .section .title {
  font-size: 0.15rem;
  color: #f2f2f2;
  padding-bottom: 0.3rem;
}
.official_index .index_number .index_number_box .number_box .section .detail {
  font-size: 0.13rem;
  color: #f2f2f2;
  line-height: 0.25rem;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.official_index .index_case {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}
.official_index .index_case .case_box {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.official_index .index_case .case_box .case_title {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.official_index .index_case .case_box .case_title .title {
  color: #333;
  font-size: 0.28rem;
}
.official_index .index_case .case_box .case_title .subtitle {
  color: #9f9f9f;
  font-size: 0.16rem;
  margin-bottom: 0.1rem;
}
.official_index .index_case .case_box .case_title .line {
  width: 0.5rem;
  margin-top: 0.1rem;
  height: 0.03rem;
  background-color: #369ef5;
}
.official_index .index_case .case_bottom {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.8rem;
}
.official_index .index_case .case_bottom .box_bottom {
  width: 2.85rem;
  height: 4rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.official_index .index_case .case_bottom .box_bottom .case_img:hover .case_ss {
  opacity: 1;
  transition: opacity 1s;
}
.official_index .index_case .case_bottom .box_bottom .case_img {
  position: relative;
  width: 2.85rem;
  height: 3.2rem;
}
.official_index .index_case .case_bottom .box_bottom .case_img .logo {
  width: 100%;
  height: 100%;
}
.official_index .index_case .case_bottom .box_bottom .case_img .case_ss:hover {
  opacity: 1;
  transition: opacity 1s;
}
.official_index .index_case .case_bottom .box_bottom .case_img .case_ss {
  position: absolute;
  left: 1.105rem;
  top: 1.28rem;
  opacity: 0;
}
.official_index .index_case .case_bottom .box_bottom .case_txt {
  width: 2.85rem;
  height: 0.8rem;
  line-height: 0.8rem;
  color: #ffffff;
  font-size: 0.2rem;
  text-align: center;
  background-color: #369ef5;
}
.official_index .index_case .case_bottom .box_top {
  width: 2.85rem;
  height: 4rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.official_index .index_case .case_bottom .box_top .case_img:hover .case_ss {
  opacity: 1;
  transition: opacity 1s;
}
.official_index .index_case .case_bottom .box_top .case_img {
  position: relative;
  width: 2.85rem;
  height: 3.2rem;
}
.official_index .index_case .case_bottom .box_top .case_img .logo {
  width: 100%;
  height: 100%;
}
.official_index .index_case .case_bottom .box_top .case_img .case_ss:hover {
  opacity: 1;
  transition: opacity 1s;
}
.official_index .index_case .case_bottom .box_top .case_img .case_ss {
  position: absolute;
  left: 1.105rem;
  top: 1.28rem;
  opacity: 0;
}
.official_index .index_case .case_bottom .box_top .case_txt {
  width: 2.85rem;
  height: 0.8rem;
  line-height: 0.8rem;
  color: #ffffff;
  font-size: 0.2rem;
  text-align: center;
  background-color: #369ef5;
}
.official_index .index_news {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
}
.official_index .index_news .index_news_box {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.official_index .index_news .index_news_box .news_title {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: -0.5rem;
}
.official_index .index_news .index_news_box .news_title .title {
  color: #333;
  font-size: 0.28rem;
  font-weight: 400;
}
.official_index .index_news .index_news_box .news_title .subtitle {
  color: #9f9f9f;
  font-size: 0.16rem;
  margin-bottom: 0.1rem;
}
.official_index .index_news .index_news_box .news_title .line {
  width: 0.5rem;
  margin-top: 0.1rem;
  height: 0.03rem;
  background-color: #369ef5;
}
.official_index .index_news .news_bottom {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.official_index .index_news .news_bottom .bottom_img {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  border-radius: 0.1rem;
}
.official_index .index_news .news_bottom .bottom_img .img_box {
  position: relative;
  width: 3.55rem;
  height: 2.2rem;
  margin: 0.16rem 0;
}
.official_index .index_news .news_bottom .bottom_img .img_box .img {
  border-radius: 0.1rem;
  width: 100%;
  height: 100%;
}
.official_index .index_news .news_bottom .section {
  margin: 1rem 0;
}
.official_index .index_news .news_bottom .section .box {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 8rem;
  padding: 0.4rem 0;
}
.official_index .index_news .news_bottom .section .box .time_box {
  background: #f2f2f2;
  border-radius: 0.05rem;
  width: 0.86rem;
  height: 0.85rem;
  text-align: center;
  margin-right: 0.2rem;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.official_index .index_news .news_bottom .section .box .time_box .title {
  font-size: 0.2rem;
  line-height: 0.2rem;
  padding: 0.02rem;
  color: #808080;
}
.official_index .index_news .news_bottom .section .box .time_box .time {
  font-size: 0.15rem;
  color: #808080;
}
.official_index .index_news .news_bottom .section .box .content {
  width: 6.94rem;
  height: 0.85rem;
}
.official_index .index_news .news_bottom .section .box .content .title {
  font-size: 0.16rem;
  padding-bottom: 0.1rem;
  color: #555555;
}
.official_index .index_news .news_bottom .section .box .content .summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 0.25rem;
  overflow: hidden;
  font-size: 0.14rem;
  color: #808080;
  height: 0.5rem;
}
.official_solution {
  width: 100%;
  min-width: 12rem;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.official_solution .logo {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3rem;
}
.official_solution .logo .img {
  width: 100%;
  height: 100%;
  background-image: url(/static/common/app/official/img/solution.jpg);
  background-size: cover;
  background-position: center;
}
.official_solution .solution {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.official_solution .solution .solution_box {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.official_solution .solution .solution_box .section {
  margin: 1rem 0;
  width: 12rem;
}
.official_solution .solution .solution_box .section .box {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 0.6rem;
  width: 12rem;
}
.official_solution .solution .solution_box .section .box .time_box {
  border-radius: 0.05rem;
  width: 1.2rem;
  height: 1.2rem;
  text-align: center;
  margin-right: 0.5rem;
}
.official_solution .solution .solution_box .section .box .time_box .img_box {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.official_solution .solution .solution_box .section .box .content {
  width: 10.3rem;
  height: 1.2rem;
  margin-bottom: 0.5rem;
}
.official_solution .solution .solution_box .section .box .content .title {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 0.2rem;
  color: #333333;
  padding-left: 0.1rem;
  border-left: 0.04rem solid #369ef5;
  line-height: 0.2rem;
  height: 0.2rem;
  margin-bottom: 0.2rem;
}
.official_solution .solution .solution_box .section .box .content .title .square:hover {
  background-color: #007aff;
}
.official_solution .solution .solution_box .section .box .content .title .square {
  width: 1rem;
  border-radius: 0.05rem;
  height: 0.3rem;
  line-height: 0.3rem;
  text-align: center;
  font-size: 0.16rem;
  color: #ffffff;
  background-color: #369ef5;
  margin-top: -0.05rem;
}
.official_solution .solution .solution_box .section .box .content .summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  padding: 2px 2px 2px 2px;
  line-height: 0.25rem;
  font-size: 0.14rem;
  color: #808080;
  height: 0.79rem;
}
.official_solution .solution .solution_box .section .mask {
  display: none;
}
.official_solution .solution .solution_box .section .mask_show {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.3);
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.official_solution .solution .solution_box .section .mask_show .popups {
  width: 5.18rem;
  height: 5.32rem;
  border-radius: 0.3rem;
  border: 0.01rem solid #d7d7d7;
  background-color: #ffffff;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.official_solution .solution .solution_box .section .mask_show .popups .box {
  width: 4.9rem;
  height: 5.04rem;
  margin: 0 auto;
  border-radius: 0.3rem;
  padding: 0 0.1rem 0 0.1rem;
  border: 0.01rem solid #e6e6e6;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  position: relative;
}
.official_solution .solution .solution_box .section .mask_show .popups .box .box_icon {
  width: 0.5rem;
  height: 0.5rem;
  z-index: 9999;
  font-size: 0.3rem;
  color: #000;
  opacity: 0.28;
  position: absolute;
  top: -0.5rem;
  right: -0.7rem;
}
.official_solution .solution .solution_box .section .mask_show .popups .box .left {
  width: 2.02rem;
  height: 4.75rem;
}
.official_solution .solution .solution_box .section .mask_show .popups .box .left .img {
  width: 100%;
  height: 100%;
}
.official_solution .solution .solution_box .section .mask_show .popups .box .right {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
  width: 2.56rem;
  height: 3.75rem;
}
.official_solution .solution .solution_box .section .mask_show .popups .box .right .top {
  height: 1.26rem;
  width: 100%;
  margin-bottom: 1.1rem;
}
.official_solution .solution .solution_box .section .mask_show .popups .box .right .top .title {
  font-size: 0.18rem;
  line-height: 0.2rem;
  color: #333;
  padding-left: 0.1rem;
  border-left: 0.05rem solid #369ef5;
}
.official_solution .solution .solution_box .section .mask_show .popups .box .right .top .top_img {
  width: 2.52rem;
  height: 0.78rem;
  border-left: 0.05rem solid #369ef5;
  padding-left: 0.05rem;
}
.official_solution .solution .solution_box .section .mask_show .popups .box .right .top .top_img .img {
  width: 2.52rem;
  height: 0.93rem;
}
.official_solution .solution .solution_box .section .mask_show .popups .box .right .bottom {
  width: 100%;
}
.official_solution .solution .solution_box .section .mask_show .popups .box .right .bottom .title {
  font-size: 0.18rem;
  line-height: 0.16rem;
  color: #333;
  padding-bottom: 0.3rem;
  padding-left: 0.1rem;
  border-left: 0.05rem solid #369ef5;
}
.official_solution .solution .solution_box .section .mask_show .popups .box .right .bottom .bottom_img {
  width: 2.52rem;
  height: 1.54rem;
  padding-left: 0.2rem;
  border-left: 0.05rem solid #369ef5;
}
.official_solution .solution .solution_box .section .mask_show .popups .box .right .bottom .bottom_img .img {
  width: 1.5rem;
  height: 1.54rem;
}
.official_solution .solution .solution_box .section .section_line {
  width: 12rem;
  height: 0.01rem;
  display: flex;
  justify-content: flex-end;
}
.official_solution .solution .solution_box .section .section_line .line {
  width: 10.3rem;
  height: 0.01rem;
  background-color: #f2f2f2;
}
.official_information {
  width: 100%;
  min-width: 12rem;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.official_information .logo {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3rem;
  overflow: hidden;
}
.official_information .logo .img {
  height: 100%;
  width: 100%;
  background-image: url(/static/common/app/official/img/news.jpg);
  background-size: cover;
  background-position: center;
}
.official_information .information_title {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.official_information .information_title .title {
  color: #333;
  font-size: 0.28rem;
  font-weight: 400;
}
.official_information .information_title .subtitle {
  color: #9f9f9f;
  font-size: 0.16rem;
  margin-bottom: 0.1rem;
}
.official_information .information_title .line {
  width: 0.5rem;
  margin-top: 0.1rem;
  height: 0.03rem;
  background-color: #369ef5;
}
.official_information .information {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  width: 100%;
}
.official_information .information .information_box {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.official_information .information .information_box .section {
  width: 12rem;
}
.official_information .information .information_box .section .box {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0.5rem 0;
  width: 12rem;
}
.official_information .information .information_box .section .box .information_img {
  border-radius: 0.05rem;
  width: 2.4rem;
  height: 1.6rem;
  text-align: center;
}
.official_information .information .information_box .section .box .information_img .img_box {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.official_information .information .information_box .section .box .information_img .img {
  width: 100%;
  height: 100%;
}
.official_information .information .information_box .section .box .content {
  width: 8rem;
  height: 1.6rem;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}
.official_information .information .information_box .section .box .content .title {
  font-size: 0.2rem;
  line-height: 0.26rem;
  text-align: start;
  width: 100%;
  color: #555555;
  margin-bottom: 0.44rem;
  margin-top: -0.04rem;
}
.official_information .information .information_box .section .box .content .summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-align: start;
  width: 100%;
  line-height: 0.25rem;
  font-size: 0.14rem;
  color: #848484;
  height: 0.94rem;
}
.official_information .information .information_box .section .box .time_box {
  background: #f2f2f2;
  border-radius: 0.05rem;
  width: 1rem;
  height: 1rem;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.official_information .information .information_box .section .box .time_box .title {
  font-size: 0.2rem;
  line-height: 0.2rem;
  padding: 0.02rem;
  color: #808080;
}
.official_information .information .information_box .section .box .time_box .time {
  font-size: 0.15rem;
  color: #808080;
}
.official_information .information .information_box .section .section_line {
  width: 12rem;
  height: 0.01rem;
  display: flex;
  justify-content: flex-end;
}
.official_information .information .information_box .section .section_line .line {
  width: 12rem;
  height: 0.01rem;
  background-color: #f2f2f2;
}
.official_join {
  width: 100%;
  min-width: 12rem;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.official_join .logo {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3rem;
}
.official_join .logo .img {
  width: 100%;
  height: 100%;
  background-image: url(/static/common/app/official/img/join.jpg);
  background-size: cover;
  background-position: center;
}
.official_join .information_title {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: -0.5rem;
}
.official_join .information_title .title {
  color: #333;
  font-size: 0.28rem;
  font-weight: 400;
}
.official_join .information_title .subtitle {
  color: #9f9f9f;
  font-size: 0.16rem;
  margin-bottom: 0.1rem;
}
.official_join .information_title .line {
  width: 0.5rem;
  margin-top: 0.1rem;
  height: 0.03rem;
  background-color: #369ef5;
}
.official_join .information {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.official_join .information .information_box:nth-of-type(odd) {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #ffffff;
}
.official_join .information .information_box:nth-of-type(odd) .information {
  margin: 0.5rem 0;
  width: 12rem;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-flow: wrap;
}
.official_join .information .information_box:nth-of-type(odd) .information .box {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0.5rem 0;
  width: 3.8rem;
  height: 4rem;
  overflow: hidden;
  border-radius: 0.05rem;
  border: 0.01rem solid #d7d7d7;
}
.official_join .information .information_box:nth-of-type(odd) .information .box .position {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}
.official_join .information .information_box:nth-of-type(odd) .information .box .position .title {
  color: #333;
  font-size: 0.16rem;
  font-weight: 400;
}
.official_join .information .information_box:nth-of-type(odd) .information .box .position .line {
  width: 0.5rem;
  margin-top: 0.1rem;
  height: 0.03rem;
  background-color: #369ef5;
}
.official_join .information .information_box:nth-of-type(odd) .information .box .content {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 3.38rem;
  margin: 0rem 0.25rem 0.25rem 0.25rem;
}
.official_join .information .information_box:nth-of-type(odd) .information .box .content .summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  border: inherit;
  line-height: 0.36rem;
  -webkit-line-clamp: 8;
  overflow: hidden;
  font-size: 0.14rem;
  color: #7f7f7f;
}
.official_join .information .information_box {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #f2f2f2;
}
.official_join .information .information_box .information {
  margin: 0.5rem 0;
  width: 12rem;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-flow: wrap;
}
.official_join .information .information_box .information .box {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0.5rem 0;
  width: 3.8rem;
  height: 4rem;
  overflow: hidden;
  border-radius: 0.05rem;
  background-color: #ffffff;
  border: 0.01rem solid #d7d7d7;
}
.official_join .information .information_box .information .box .position {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}
.official_join .information .information_box .information .box .position .title {
  color: #333;
  font-size: 0.16rem;
  font-weight: 400;
}
.official_join .information .information_box .information .box .position .line {
  width: 0.5rem;
  margin-top: 0.1rem;
  height: 0.03rem;
  background-color: #369ef5;
}
.official_join .information .information_box .information .box .content {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 3.38rem;
  margin: 0rem 0.2rem 0.2rem 0.2rem;
}
.official_join .information .information_box .information .box .content .summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  border: inherit;
  line-height: 0.36rem;
  -webkit-line-clamp: 8;
  overflow: hidden;
  font-size: 0.14rem;
  color: #7f7f7f;
}
.official_join .float_menu {
  width: 1.4rem;
  position: fixed;
  top: 4.2rem;
  right: 0;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  color: #ffffff;
}
.official_join .float_menu .float_title {
  width: 1.1rem;
  height: 0.3rem;
  line-height: 0.3rem;
  text-align: center;
  border-radius: 0.3rem 0 0 0.3rem;
  background-color: #c1c1c1;
  margin: 0.1rem 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  cursor: pointer;
}
.official_join .float_menu .title_first {
  width: 1.4rem;
  height: 0.3rem;
  background-color: #369ef5;
}
.official_business {
  width: 100%;
  min-width: 12rem;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.official_business .logo {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3rem;
}
.official_business .logo .img {
  width: 100%;
  height: 100%;
  background-image: url(/static/common/app/official/img/contact.jpg);
  background-size: cover;
  background-position: center;
}
.official_business .business {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.official_business .business .business_box {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.official_business .business .business_box .business_title {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: -0.5rem;
}
.official_business .business .business_box .business_title .title {
  color: #333;
  font-size: 0.28rem;
  font-weight: 400;
}
.official_business .business .business_box .business_title .subtitle {
  color: #9f9f9f;
  font-size: 0.16rem;
  margin-bottom: 0.1rem;
}
.official_business .business .business_box .business_title .line {
  width: 0.5rem;
  margin-top: 0.1rem;
  height: 0.03rem;
  background-color: #369ef5;
}
.official_business .business .business_box .business {
  margin: 0.5rem 0;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 12rem;
}
.official_business .business .business_box .business .business_line {
  width: 0.04rem;
  margin-top: 0.5rem;
  margin-bottom: 0.6rem;
  background-color: #369ef5;
}
.official_business .business .business_box .business .box {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0.5rem 0;
  width: 12rem;
}
.official_business .business .business_box .business .box .position {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0.4rem;
  padding-bottom: 0.15rem;
  line-height: 0.2rem;
}
.official_business .business .business_box .business .box .position .title {
  color: #555555;
  font-size: 0.2rem;
  padding-bottom: 0.1rem;
  font-weight: 400;
}
.official_business .business .business_box .business .box .content {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.official_business .business .business_box .business .box .content .summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  border: inherit;
  line-height: 0.36rem;
  -webkit-line-clamp: 8;
  overflow: hidden;
  font-size: 0.16rem;
  color: #848484;
  padding-left: 0.4rem;
}
.official_business .business .business_box .business .box .content .summary .state {
  padding-left: 0.4rem;
}
.official_business .business_img {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #f2f2f2;
}
.official_business .business_img .img_box {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.official_business .business_img .img_box .img_title {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: -0.5rem;
}
.official_business .business_img .img_box .img_title .title {
  color: #333;
  font-size: 0.28rem;
  font-weight: 400;
}
.official_business .business_img .img_box .img_title .subtitle {
  color: #9f9f9f;
  font-size: 0.16rem;
  margin-bottom: 0.1rem;
}
.official_business .business_img .img_box .img_title .line {
  width: 0.5rem;
  margin-top: 0.1rem;
  height: 0.03rem;
  background-color: #369ef5;
}
.official_business .business_img .img_box .square {
  margin: 0.5rem 0;
  width: 12rem;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-flow: wrap;
}
.official_business .business_img .img_box .square .box {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0;
  width: 3rem;
}
.official_business .business_img .img_box .square .box .section {
  width: 3rem;
  height: 4.1rem;
  overflow: hidden;
  border-radius: 0.05rem;
  background-color: #ffffff;
}
.official_business .business_img .img_box .square .box .section .img {
  padding: 0.05rem;
  border-radius: 0.1rem;
  width: 100%;
  height: 100%;
}
.official_business .business_img .img_box .square .box .title {
  font-size: 0.15rem;
  color: #7f7f7f;
  margin-top: 0.2rem;
}
.official_business .address {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 1rem 0;
  width: 12rem;
}
.official_business .address .navigation {
  height: 1.2rem;
}
.official_business .address .navigation .img {
  width: 100%;
  height: 100%;
}
.official_business .address .message {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 10rem;
  margin-left: 1rem;
  height: 1.1rem;
}
.official_business .address .message .message_address {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 0.16rem;
  color: #7f7f7f;
  width: 10rem;
}
.official_business .address .message .contact {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 10rem;
}
.official_business .address .message .contact .content_phone {
  padding-left: 0.1rem;
  font-size: 0.16rem;
  color: #7f7f7f;
  width: 50%;
  text-align: start;
}
.official_business .address .message .contact .content_email {
  font-size: 0.16rem;
  color: #7f7f7f;
  width: 50%;
  text-align: start;
}
.official_business .address .message .contact .content_hr {
  font-size: 0.16rem;
  color: #7f7f7f;
  width: 50%;
  text-align: start;
}
.official_detail {
  width: 100%;
  min-width: 12rem;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.official_detail .logo {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 24px;
  margin: 0 auto;
  background-color: #f2f2f2;
}
.official_detail .logo .detail_title {
  width: 12rem;
  font-size: 0.4rem;
  line-height: 0.58rem;
  padding-top: 0.4rem;
  padding-bottom: 0.2rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: justify;
  font-weight: 700;
}
.official_detail .logo .portrait {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  width: 12rem;
}
.official_detail .logo .portrait .portrait_img {
  margin-right: 15px;
  border-radius: 50%;
  width: 0.47rem;
  height: 0.47rem;
}
.official_detail .logo .portrait .portrait_img .img {
  width: 100%;
  height: 100%;
}
.official_detail .logo .portrait .nickname_box .nickname {
  display: block;
  margin-bottom: 0.05rem;
  width: 100%;
  font-size: 0.16rem;
}
.official_detail .logo .portrait .nickname_box .time {
  font-size: 0.12rem;
  color: #999;
  display: flex;
  align-items: center;
}
.official_detail .detail {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.official_detail .detail .detail_box {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.official_detail .detail .detail_box .section {
  width: 12rem;
}
.official_detail .detail .detail_box .section .box {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  background-color: #f2f2f2;
  width: 12rem;
}
.official_detail .detail .detail_box .section .box .content {
  width: 8.8rem;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #ffffff;
  padding-right: 0.2rem;
}
.official_detail .detail .detail_box .section .box .content .summary {
  text-align: start;
  line-height: 0.25rem;
  font-size: 0.14rem;
  color: #848484;
  border-left: 5px solid #f2f2f2;
  padding-left: 0.2rem;
  margin-bottom: 0.4rem;
}
.official_detail .detail .detail_box .section .box .related_box {
  width: 3.2rem;
  background-color: #fff;
  padding-left: 0.2rem;
  margin-left: 0.01rem;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.official_detail .detail .detail_box .section .box .related_box .recommend {
  line-height: 1;
  font-size: 0.18rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  padding-left: 0.1rem;
  border-left: 0.02rem solid #000;
  color: #000;
}
.official_detail .detail .detail_box .section .box .related_box .related {
  padding-bottom: 0.2rem;
  border-bottom: 0.01rem solid #f2f2f2;
  margin-bottom: 0.2rem;
}
.official_detail .detail .detail_box .section .box .related_box .related .title {
  font-size: 0.16rem;
  padding-bottom: 0.2rem;
  width: 3rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.official_detail .detail .detail_box .section .box .related_box .related .img {
  height: 1.68rem;
  width: 3rem;
  border-radius: 0.17rem;
}
