/*
    ----------------------------------- 
            方法变量    
                     
    Create Time : 2014-07-22
    Update Time : 2015-08-03
    Author      : Trueland Development Department
    -----------------------------------
*/

/*
    ---------------------- 
            普通方法 
    ---------------------- 

    1 .opc()              // 透明度     - 传整数 50 代表 0.5   
    2 .pos(r)             // 定位方式 - 必须传参，r 代表relative || a 代表absolute ||  f 代表 fixed
    3 .font()             // 字体大小 - 默认12px 
    4 .align()            // 文本对齐 - 默认 center
    5 .lineH()            // 行高设置 - 默认 20px
   11 .arrow(r)           // 三角箭头 - 必须传参    l:向左箭头 | r:向右箭头 | t:向上箭头 | b:向下箭头
   12 .float()            // 快速浮动 - 默认为 left ||  left: 向左浮动   | right:向右浮动
   13 .fontC(d)           // 字大小写 - 比传参数 d 为 大写 s 为首字母大写
   14 .fontB()            // 字体粗细 - 默认加粗  fontB(100) 传100 就是 变细

   ----------------------
   CSS3 方法 
   ---------------------- 

   01 .borderR()          // 圆角设置 - 默认为 5px
   02 .linearG(red,blue)  // 线性渐变 - 两个颜色值 是开始到结束  目前支持 *上下* 渐变
   03 .bgFull             // 背景充满 - 背景等比例拉伸 使用 ：bgFull;
   04 .css3Tansition()    // 过度属性 - 默认两个值 前者是过渡动画时间 后者是过渡动画效果 使用 : .css3tansition(.4s,ease)
   

   //滤镜

   05 .filterBlur()       // 滤镜模糊 - 使用 ：.filterBlur(2px); 默认 5px
   06 .filterGrayscale()  // 滤镜灰度 - 使用 ：.filterGrayscale(100%); 默认100% ★注意参数 是 0%~100$; 100%代表全灰
   07 .filterSepia()      // 滤镜褐色 - 使用 ： .filterSepia(1); 默认1 ★注意参数 (同上)
   08 .filterBrightness() // 滤镜亮度 - 使用 ： .filterBrightness(10); 默认5 ★注意参数 10代表100% 5代表50%
   09 .filterHue()        // 滤镜色相 - 使用 ： .filterHue(180deg); 默认180deg ★注意参数 0deg~360deg
   10 .filterInvert()     // 滤镜反色 - 使用 ： .filterInvert(1); 默认1 ★注意参数 0.1~1 1代表100%
   11 .filterSaturate()   // 滤镜饱和 - 使用 ： .filterSaturate(5); 默认5 ★注意参数 5 代表 50%
   12 .filterContrast()   // 滤镜对比 - 使用 ： .filterContrast(1.5); 默认1.5 ★注意参数 1.5代表 15%
    
   ----------------------
        普通嵌套 
   ---------------------- 

   01 .vcenter            // 垂直水平居中
   02 .tHide              // 文本超出隐藏省略
   03 .blockFull          // 块状元素 宽高100%
   04 .block              // 块状元素 没有设置宽高
   05 .centerBlock        // 左右居中
   05 .clearfix           // 清除浮动

    -----------------------------------
*/

.bgFull {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
}

.vcenter {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

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

.blockFull {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.block {
  display: block;
  position: relative;
}

.centerBlock {
  margin-left: auto;
  margin-right: auto;
}

.clearfix {
  clear: both;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-loading .slick-list {
  background: #ffffff url("../images/ajax-loader.gif") center center no-repeat;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-prev, .slick-next {
  z-index: 20;
  position: absolute;
  display: block;
  height: 60px;
  width: 30px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -30px;
  padding: 0;
  border: none;
  outline: none;
  border: 1px solid red;
}

.slick-prev {
  left: 30px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: 30px;
}

.slick-next {
  right: 30px;
}

[dir="rtl"] .slick-next {
  left: 30px;
  right: auto;
}

.slick-dots {
  position: absolute;
  bottom: 20px;
  height: auto;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
  line-height: 0;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  display: block;
  height: 10px;
  width: 10px;
  padding: 0;
  margin: 0;
  outline: none;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: #cccccc;
  border-radius: 0px;
}

.slick-dots li.slick-active button {
  background: #333333;
}

.clearfix {
  *zoom: 1;
}

.clearfix:after {
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
  line-height: 0;
  content: '\20';
}

body {
  color: #666666;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.22rem;
}

img {
  max-width: 100%;
}

@font-face {
  font-family: 'Basemic Times';
  src: url('../fonts/Basemic Times.eot');
  src: url('../fonts/Basemic Times.eot?#iefix') format('embedded-opentype'), url('../fonts/Basemic Times.woff2') format('woff2'), url('../fonts/Basemic Times.ttf') format('truetype'), url('../fonts/Basemic Times.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

.title {
  padding: 0 0.25rem;
  height: 0.8rem;
  position: relative;
}

.title h3 {
  float: left;
  font-size: 0.3rem;
  color: #fff;
  font-weight: normal;
  line-height: 0.8rem;
  padding-left: 0.35rem;
  position: relative;
}

.title h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.26rem;
  width: 0.21rem;
  height: 0.3rem;
  background: url(../images/icon.png) no-repeat center center / cover;
}

.title .info_img {
  float: right;
  line-height: 0;
  width: 2.43rem;
  margin-top: 0.1rem;
}

.title .info_img2 {
  width: 1.94rem;
}

.title .info_img3 {
  width: 1.42rem;
  margin-top: 0;
  margin-right: 1.08rem;
}

.title .info_img4 {
  margin-top: 0;
  width: 1.54rem;
}

.title .info_img5 {
  width: 1.34rem;
  margin-top: 0;
}

.title .info_img6, .title .info_img11 {
  margin-top: 0;
  width: 1.48rem;
}

.title .info_img7 {
  margin-top: 0;
  width: 1.62rem;
}

.title .info_img8 {
  margin-top: 0;
  width: 1.4rem;
}

.title .info_img9 {
  margin-top: 0;
  width: 1.24rem;
}

.title .info_img10 {
  margin-top: 0;
  width: 1.94rem;
}

.title .info_img12 {
  margin-right: 1.2rem;
}

.title .info_img13 {
  width: 2.39rem;
  margin-top: 0;
}

.title .info_img14 {
  width: 1.38rem;
  margin-top: 0;
}

.title .info_img15 {
  width: 1.94rem;
  margin-top: 0;
}

.title .info_img16 {
  width: 1.1rem;
  margin-top: 0;
}

.title .hone_tab {
  margin-right: -0.25rem;
 /* float: right;*/
}

.title .hone_tab span {
  display: block;
  float: left;
  height: 0.8rem;
  line-height: 0.8rem;
  color: #ffffff;
  font-size: 0.24rem;
}

.title .hone_tab span a {
  display: block;
  padding: 0 0.25rem;
  color: inherit;
}

.title .hone_tab span.cur {
  background: #cc0000;
}

.title .more {
  position: absolute;
  right: 0.25rem;
  top: 0;
  color: #d2d7e1;
  line-height: 0.8rem;
}

.title .more i {
  display: inline-block;
  width: 0.2rem;
  height: 0.17rem;
  background: url(../images/icon3.png) no-repeat center center / cover;
  margin-left: 0.05rem;
}

.nytitle {
  text-align: center;
  padding: 0 0.25rem 0.17rem;
  border-bottom: 1px solid #eeeeee;
  position: relative;
}

.nytitle:before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -0.02rem;
  width: 0.22rem;
  height: 0.03rem;
  background: #cc0000;
}

.nytitle h3 {
  text-align: center;
  font-weight: normal;
  color: #333333;
  font-size: 0.26rem;
}

.nytitle p {
  margin-top: 0.05rem;
  color: #333333;
  font-size: 0.2rem;
  font-family: arial;
  text-transform: uppercase;
}

.header {
  padding: 0.25rem 0.25rem;
  width: 100%;
  position: relative;
}

.header .logo {
  float: left;
  width: 2.06rem;
  line-height: 0;
  display: block;
}

.header .dh {
  float: left;
  width: 2.15rem;
  line-height: 0;
  margin-left: 0.18rem;
  margin-top: -0.04rem;
}

.header .navbt {
  float: right;
  line-height: 0;
  position: absolute;
  width: 0.37rem;
  right: 0.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer {
  background: #3c4854;
  padding: 0.25rem 0.25rem;
  color: #cccccc;
  font-size: 0.18rem;
  line-height: 0.3rem;
  text-align: center;
  margin-bottom: 0.78rem;
}

.footer_bottom {
  z-index: 9;
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  width: 6.4rem;
  background: #f9f9f9;
  height: 0.8rem;
}

.footer_bottom ul li {
  float: left;
  width: 1.1rem;
  text-align: center;
  position: relative;
}

.footer_bottom ul li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.11rem;
  width: 0.02rem;
  height: 0.58rem;
  background: #e6e6e6;
}

.footer_bottom ul li:nth-child(3):before {
  display: none;
}

.footer_bottom ul li a {
  display: block;
}

.footer_bottom ul li i {
  margin-top: 0.11rem;
  height: 0.29rem;
  display: block;
}

.footer_bottom ul li i img {
  height: 0.29rem;
}

.footer_bottom ul li p {
  margin-top: 0.05rem;
  color: #666666;
  font-size: 0.18rem;
}

.footer_bottom ul li.last {
  width: 1.8rem;
}
.footer_bottom ul li.fist{
	width: 1.3rem;
}
.footer_bottom ul li.fist:before{display: none;}
.footer_bottom ul li.fist a{
	line-height: 0.8rem;
	height: 0.8rem;
	background: #cc0000;
	display: block;
	color: #fff;
	font-size: 0.22rem;
	border-right: 1px solid #f1f1f1;
}

.footer_bottom ul li.last:before {
  display: none;
}

.footer_bottom ul li.last a {
  display: block;
  background: #cc0000;
  line-height: 0.8rem;
  height: 0.8rem;
  font-size: 0.22rem;
  color: #fff;
}

.banner img {
  width: 100%;
}

.banner .slick-dots {
  bottom: 0.55rem;
}

.banner .slick-dots li button {
  width: 0.11rem;
  height: 0.11rem;
  border-radius: 50px;
  background: #939fad;
}

.banner .slick-dots li.slick-active button {
  width: 0.36rem;
  background: #cc0000;
}

.home_box {
  padding: 0 0.25rem 0.25rem;
}

.home_box ol {
  position: relative;
  z-index: 2;
  background: url(../images/home_bg.jpg) no-repeat center center / cover;
  margin-top: -0.4rem;
  padding: 0.18rem 0;
}

.home_box ol li {
  float: left;
  width: 33.33333333%;
  text-align: center;
}

.home_box ol li .icon img {
  height: 0.48rem;
}

.home_box ol li i {
  display: block;
  width: 0.11rem;
  height: 0.02rem;
  background: #000000;
  margin: 0.08rem auto 0.08rem;
}

.home_box ol li p {
  font-size: 0.2rem;
  color: #333333;
}

.home_box2 {
  background: url(../images/home_bg2.jpg) no-repeat center top / cover;
  background-size: 100% 2.67rem;
  margin-bottom: 0.25rem;
}

.home_box2 .hone_rmgj {
  width: 5.9rem;
  margin: 0 auto;
}

.home_box2 .hone_rmgj ol {
  background: #f7f7f9;
  padding: 0 0.15rem 0.4rem;
}

.home_box2 .hone_rmgj ol li {
  float: left;
  width: 25%;
  margin-top: 0.25rem;
  text-align: center;
}

.home_box2 .hone_rmgj ol li .icon {
  width: 1.08rem;
  height: 1.07rem;
  background: url(../images/guo_bg.png) no-repeat center center / cover;
  padding: 0.02rem 0 0 0.03rem;
  margin: 0 auto;
}

.home_box2 .hone_rmgj ol li .icon span {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  overflow: hidden;
}

.home_box2 .hone_rmgj ol li .icon span img {
  border-radius: 50%;
}

.home_box2 .hone_rmgj ol li p {
  margin-top: 0.12rem;
  color: #333333;
  font-size: 0.2rem;
}

.home_box2 .hone_rmgj .slick-dots {
  bottom: 0.15rem;
}

.home_box2 .hone_rmgj .slick-dots li button {
  width: 0.11rem;
  height: 0.11rem;
  border-radius: 50px;
  background: #939fad;
}

.home_box2 .hone_rmgj .slick-dots li.slick-active button {
  width: 0.36rem;
  background: #21587e;
}

.home_box3 {
  background: url(../images/home_bg2.jpg) no-repeat center top / cover;
  background-size: 100% 2.67rem;
}

.home_box3 ol {
  background: #ffffff;
  padding: 0.25rem 0.25rem 0.3rem;
}

.home_box3 ol li {
  float: left;
  width: 100%;
  margin-top: 0.2rem;
  background: #fafafa;
  position: relative;
}

.home_box3 ol li:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 0.2rem;
  background: url(../images/yy.jpg) no-repeat center center / cover;
}

.home_box3 ol li:first-child {
  margin-top: 0;
}

.home_box3 ol li img {
  width: 100%;
}

.home_box3 ol li .box {
  position: relative;
}

.home_box3 ol li .box .img {
  display: block;
  line-height: 0;
  width: 100%;
}

.home_box3 ol li .box .t {
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 100%;
  text-align: center;
}

.home_box3 ol li .box h3 {
  color: #1B3367;
  font-size: 0.34rem;
  text-shadow: -1px 0 #fff, 0 -1px #fff, 1px 0 #fff, 0 1px #fff;
  font-weight: bold;
  /*-webkit-text-stroke: 1px #fff;*/
}

.home_box3 ol li .box .more {
  display: block;
  width: 1.68rem;
  height: 0.42rem;
  line-height: 0.42rem;
  background: #cc0000;
  border-radius: 0.5rem;
  margin: 0.25rem auto 0;
  color: #fff;
  font-size: 0.2rem;
}

.home_box3 ol li .text {
  padding: 0.2rem;
}

.home_box3 ol li .text p {
  color: #333333;
  font-size: 0.2rem;
  line-height: 0.32rem;
  height: 0.64rem;
  overflow: hidden;
}

.home_box4 {
  background: url(../images/home_bg2.jpg) no-repeat center top / cover;
  background-size: 100% 2.67rem;
}

.home_box4 ol {
  background: #ffffff;
  padding: 0.05rem 0.25rem;
}

.home_box4 ol li {
  float: left;
  width: 100%;
  padding: 0.2rem 0;
  border-bottom: 1px dotted #cccccc;
}

.home_box4 ol li:last-child {
  border-bottom: none;
}

.home_box4 ol li .img {
  float: left;
  width: 1.6rem;
  line-height: 0;
  position: relative;
}

.home_box4 ol li .img span {
  display: block;
  line-height: 0;
  width: 100%;
  position: relative;
}

.home_box4 ol li .img span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, .5);
  width: 100%;
  height: 100%;
}

.home_box4 ol li .img p {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 0.28rem;
}

.huodong_pic li .img {
  height: 1.6rem;
}

.huodong_pic li .img span {
  height: 100%;
}

.huodong_pic li .img span img {
  width: 100%;
  height: 100%;
}

.home_box4 ol li .text {
  float: left;
  margin-left: 0.2rem;
  width: 4.05rem;
}

.home_box4 ol li.nopic .text {
  float: left;
  margin-left: 0;
  width: 100%;
}

.home_box4 ol li .text h3 {
  color: #333333;
  font-size: 0.2rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.home_box4 ol li .text .t {
  margin-top: 0.1rem;
  font-size: 0.18rem;
  line-height: 0.32rem;
}

.home_box4 ol li .text .t p {
  color: #666666;
}

.home_box4 ol li .text .t .more {
  display: inline-block;
  width: 0.66rem;
  height: 0.19rem;
  background: url(../images/tel.jpg) no-repeat center center / cover;
  color: #fff;
  margin-left: 0.2rem;
  position: relative;
  top: 0.01rem;
}

.home_box4 ol li .text .t span {
  color: #cc0000;
  font-weight: bold;
}

.home_box4 ol li .text span.data {
  color: #999999;
  font-size: 0.18rem;
}

.home_box4 .zixun li .text .t p {
  text-overflow: ellipsis;
  overflow: hidden;
  /*white-space: nowrap;*/
  height: 0.64rem;
}

.home_box4 .zixun li .img span:before {
  display: none;
}

.home_box5 {
  background: url(../images/home_bg3.jpg) no-repeat center top / cover;
  background-size: 100% 1.54rem;
  padding: 0.86rem 0.25rem 0;
  margin-bottom: 0.25rem;
}

.home_box5 ol {
  background: #f7f7f9;
  padding: 0.2rem 0.25rem 0.3rem;
}

.home_box5 ol li {
  float: left;
  margin-top: 0.2rem;
  background: #fff;
  width: 48%;
}

.home_box5 ol li:nth-child(2n) {
  float: right;
}

.home_box5 ol li input {
  width: 100%;
  float: left;
  line-height: 0.5rem;
  font-size: 0.2rem;
  padding: 0 0.2rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.05rem;
}

.home_box5 ol li span {
  border: 1px solid #e5e5e5;
  width: 100%;
  border-radius: 0.05rem;
  height: 0.5rem;
  padding: 0 0.2rem;
  display: block;
  position: relative;
}

.home_box5 ol li span:before {
  content: "";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  margin-top: -0.03rem;
  width: 0.11rem;
  height: 0.06rem;
  background: url(../images/icon2.jpg) no-repeat center center / cover;
}

.home_box5 ol li span select {
  text-align: left;
  font-size: 0.2rem;
  font-family: "microsoft yahei";
  outline: none;
  text-overflow: "";
  color: #999999;
  -moz-appearance: none;
  border: none;
  background: none;
  width: 100%;
  height: 0.5rem;
}

.home_box5 ol li.last input {
  border: none;
  background: #cc0000;
  color: #fff;
  font-weight: bold;
  font-size: 0.24rem;
}

.home_box6 {
  background: url(../images/home_bg2.jpg) no-repeat center top / cover;
  background-size: 100% 2.67rem;
}

.home_box6 .video {
  background: #ffffff;
  padding: 0.25rem;
}

.home_box7 .title {
  background: #1c356b;
}

.home_box7 .box {
  background: url(../images/home_bg4.jpg) no-repeat center center / cover;
  width: 100%;
  height: 2.41rem;
  padding: 0.52rem 0.25rem 0;
}

.home_box7 .box h3 {
  color: #333333;
  font-size: 0.22rem;
}

.home_box7 .box .t {
  font-size: 0.2rem;
}

.home_box7 .box .t p {
  margin-top: 0.2rem;
}

.nybanner {
  position: relative;
}

.nybanner img {
  float: left;
  width: 100%;
}

/**德馨活动详细**/

.detail_box {
  padding: 0.25rem;
}

.detail_box h1 {
  text-align: center;
  font-size: 0.24rem;
  color: #333333;
}

.detail_box .data {
  margin-top: 0.1rem;
  text-align: center;
  font-size: 0.18rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px dotted #cccccc;
}

.detail_box .data span {
  display: inline-block;
  margin: 0 0.05rem;
}

.detail_box .doing_show {
  padding-top: 0.3rem;
}

.detail_box .doing_show .tit {
  height: 0.3rem;
  line-height: 0.3rem;
}

.detail_box .doing_show .tit h3 {
  float: left;
  font-size: 0.24rem;
  color: #333333;
  font-weight: normal;
  padding-left: 0.35rem;
  position: relative;
}

.detail_box .doing_show .tit h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.02rem;
  width: 0.21rem;
  height: 0.3rem;
  background: url(../images/icon.png) no-repeat center center / cover;
}

.detail_box .doing_show .tit p {
  float: left;
  display: block;
  margin-left: 0.2rem;
  color: #666666;
  font-size: 0.18rem;
}

.detail_box .doing_show .tit p span {
  color: #cc0000;
  font-weight: bold;
}

.detail_box .doing_show .show_top {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}

.detail_box .doing_show .show_top .yuyue .t {
  float: left;
  width: 4.06rem;
  height: 0.64rem;
  border: 1px solid #f0f0f0;
  border-radius: 0.03rem;
  font-size: 0.22rem;
  padding: 0 0.15rem;
}

.detail_box .doing_show .show_top .yuyue .d {
  float: right;
  width: 1.6rem;
  height: 0.64rem;
  border: none;
  background: #cc0000;
  color: #fff;
  font-size: 0.22rem;
  border-radius: 0.03rem;
}

.detail_box .doing_show .show_top .text_box {
  margin-top: 0.1rem;
}

.detail_box .doing_show .show_top .text_box .box {
  float: left;
  width: 100%;
  margin-top: 0.12rem;
  line-height: 0.32rem;
}

.detail_box .doing_show .show_top .text_box .box .bt {
  float: left;
  color: #666666;
  font-size: 0.22rem;
}

.detail_box .doing_show .show_top .text_box .box .text {
  float: left;
  width: 80%;
}

.detail_box .doing_show .show_top .text_box .box .text a {
  color: #cc0000;
  font-weight: bold;
  font-size: 0.3rem;
}

.detail_box .doing_show .show_top .text_box .box .text span {
  display: block;
  float: left;
  width: 50%;
  margin-bottom: 0.06rem;
}

.detail_box .doing_show .show_nr {
  margin-bottom: 0.3rem;
  padding-top: 0.2rem;
  color: #666666;
  font-size: 0.2rem;
  line-height: 0.32rem;
}

.detail_box .doing_show .ys_nr {
  color: #333;
  font-weight: bold;
}

/**常见问题**/

.problem_top {
  background: #fbfbfb;
  border-bottom: 1px solid #f0f0f0;
}

.problem_top .search {
  height: 0.79rem;
}

.problem_top .search .t {
  float: left;
  width: 4rem;
  height: 0.79rem;
  line-height: 0.79rem;
  font-size: 0.22rem;
  padding: 0 0.25rem;
  border: none;
  background: none;
}

.problem_top .search .d {
  margin-top: 0.27rem;
  margin-left: 0.3rem;
  float: left;
  width: 0.24rem;
  height: 0.24rem;
  border: none;
  background: url(../images/btn.jpg) no-repeat center center / cover;
}

.problem_top .more {
  display: block;
  width: 1.6rem;
  text-align: center;
  font-size: 0.24rem;
  color: #fff;
  height: 0.8rem;
  line-height: 0.8rem;
  background: #cc0000;
}

.problem_box {
  padding-bottom: 0.1rem;
}

.problem_box ol {
  padding: 0 0.25rem;
}

.problem_box ol li {
  float: left;
  width: 100%;
  border-bottom: 1px dotted #ccc;
  padding: 0.25rem 0;
}

.problem_box ol li .bt {
  color: #003366;
  font-size: 0.24rem;
  line-height: 0.29rem;
  padding-left: 0.45rem;
  position: relative;
}

.problem_box ol li .bt:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.29rem;
  height: 0.29rem;
  background: url(../images/qa1.png) no-repeat center center / cover;
}

.problem_box ol li .text {
  margin-top: 0.16rem;
  padding-left: 0.45rem;
  line-height: 0.36rem;
  position: relative;
  overflow: hidden;
}

.problem_box ol li .text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.29rem;
  height: 0.29rem;
  background: url(../images/qa2.png) no-repeat center center / cover;
}

.problem_box ol li .text span {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #003366;
  font-size: 0.18rem;
  font-weight: bold;
  background: #fff;
  padding-left: 0.18rem;
  padding-right: 0.2rem;
  cursor: pointer;
}

.problem_box ol li .text span:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.14rem;
  height: 0.16rem;
  background: url(../images/icon4.png) no-repeat center center / cover;
}

.problem_box ol li .text span.cur::before {
  background: url(../images/icon5.png) no-repeat center center / cover;
}

.problem_box ol li:last-child {
  border-bottom: none;
}

.borderH2 {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  height: 0.2rem;
  background: #fdfdfd;
}

/**成功案例**/

.case_top {
  padding: 0.25rem;
}

.case_top ul li {
  float: left;
  margin-top: 0.2rem;
  width: 100%;
}

.case_top ul li:first-child {
  margin-top: 0;
}

.case_top ul li span {
  border: 1px solid #f0f0f0;
  width: 100%;
  border-radius: 0.05rem;
  height: 0.7rem;
  padding: 0 0.2rem;
  display: block;
  position: relative;
}

.case_top ul li span:before {
  content: "";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  margin-top: -0.03rem;
  width: 0.11rem;
  height: 0.06rem;
  background: url(../images/icon2.jpg) no-repeat center center / cover;
}

.case_top ul li span select {
  text-align: left;
  font-size: 0.24rem;
  font-family: "microsoft yahei";
  outline: none;
  text-overflow: "";
  color: #666666;
  -moz-appearance: none;
  border: none;
  background: none;
  width: 100%;
  height: 0.7rem;
}

.case_top .t {
  color: #666666;
  font-size: 0.2rem;
  padding: 0.25rem 0.22rem 0;
}

.case_top .t a {
  color: #666666;
  display: inline-block;
  margin-right: 0.1rem;
}

.case_list {
  padding: 0.25rem;
}

.case_list ol {
  margin-top: -0.2rem;
  margin-bottom: 0.25rem;
}

.case_list ol li {
  float: left;
  background: #fafafa;
  width: 2.85rem;
  margin-top: 0.2rem;
  position: relative;
}

.case_list ol li:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.08rem;
  width: 100%;
  height: 0.08rem;
  background: url(../images/case_bg.jpg) no-repeat center center / cover;
}

.case_list ol li:nth-child(2n) {
  float: right;
}

.case_list ol li .img {
  width: 2.85rem;
  height: 1.44rem;
  overflow: hidden;
}

.case_list ol li .text {
  padding: 0.15rem;
}

.case_list ol li .text h3 {
  color: #333333;
  font-size: 0.2rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.case_list ol li .text p {
  margin-top: 0.05rem;
  color: #666666;
  font-size: 0.18rem;
  line-height: 0.28rem;
  height: 0.56rem;
  overflow: hidden;
}

/**房产聚合页**/

.search_Property {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0.45rem;
  width: 5.5rem;
  height: 0.6rem;
  background: #fff;
  border-radius: 0.05rem;
}

.search_Property span {
  display: block;
  float: left;
  width: 1.51rem;
  height: 0.6rem;
  line-height: 0.6rem;
  padding-left: 0.12rem;
  position: relative;
}

.search_Property span:before {
  content: "";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  margin-top: -0.03rem;
  width: 0.11rem;
  height: 0.06rem;
  background: url(../images/icon2.jpg) no-repeat center center / cover;
}

.search_Property span select {
  text-align: left;
  font-size: 0.22rem;
  font-family: "microsoft yahei";
  outline: none;
  text-overflow: "";
  color: #333;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  width: 100%;
  height: 0.6rem;
  padding: 0;
}

.search_Property .text {
  float: right;
  height: 0.6rem;
  background: none;
  border: none;
  width: 3.99rem;
  position: relative;
}

.search_Property .text:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.47rem;
  height: 0.27rem;
  background: url(../images/search_icon1.jpg) no-repeat center center / cover;
}

.search_Property .text input {
  height: 0.6rem;
  background: none;
  border: none;
  width: 100%;
  font-size: 0.22rem;
  padding: 0 0.15rem 0 0.62rem;
  -webkit-appearance: none;
}

.property_box {
  padding: 0.32rem 0;
}

.property_box h3 {
  text-align: center;
  font-weight: normal;
  color: #333333;
  font-size: 0.26rem;
}

.property_box .box {
  margin-top: 0.26rem;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 0.1rem 0.25rem 0.3rem;
}

.property_box .box ul li {
  float: left;
  margin-top: 0.2rem;
  position: relative;
  width: 2.82rem;
}

.property_box .box ul li:nth-child(2n) {
  float: right;
}

.property_box .box ul li .img {
  line-height: 0;
  width: 100%;
  overflow: hidden;
}

.property_box .box ul li .t {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  height: 100%;
  color: #fff;
  font-size: 0.22rem;
}

.property_box .box ul li .t p {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.property_box2 {
  padding: 0 0.25rem 0.4rem;
}

.property_box2 ul {
  margin-bottom: 0.32rem;
}

.property_box2 ul li {
  float: left;
  margin-top: 0.3rem;
  width: 2.82rem;
}

.property_box2 ul li:nth-child(2n) {
  float: right;
}

.property_box2 ul li .img {
  line-height: 0;
  width: 100%;
  height: 1.69rem;
  overflow: hidden;
}

.property_box2 ul li .text {
  padding-top: 0.1rem;
}

.property_box2 ul li .text h3 {
  color: #333333;
  font-size: 0.22rem;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.property_box2 ul li .text p {
  color: #858585;
  font-size: 0.2rem;
  line-height: 0.3rem;
  height: 0.6rem;
  overflow: hidden;
}

.bottom_more {
  text-align: center;
}

.bottom_more a {
  display: inline-block;
  border: 1px solid #cccccc;
  line-height: 0.48rem;
  color: #666666;
  font-size: 0.2rem;
  min-width: 1.66rem;
  margin: 0 auto;
  padding: 0 0.2rem;
}

.property_box3 {
  background: #fafafa;
  padding: 0.3rem 0 0.3rem;
}

.property_box3 .title2 {
  text-align: center;
}

.property_box3 .title2 .icon {
  display: block;
  width: 0.72rem;
  margin: 0 auto;
  line-height: 0;
}

.property_box3 .title2 h4 {
  margin-top: 0.2rem;
  color: #333333;
  font-size: 0.2rem;
  font-weight: normal;
}

.property_box3 .title2 h3 {
  margin-top: 0.1rem;
  color: #333333;
  font-size: 0.3rem;
  font-weight: normal;
  position: relative;
}

.property_box3 .title2 h3:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  height: 1px;
  background: #e1e1e1;
}

.property_box3 .title2 h3 p {
  display: inline-block;
  background: #fafafa;
  padding: 0 0.5rem;
  position: relative;
  z-index: 2;
}

.property_box3 .title2 h3 span {
  color: #dd1721;
}

.property_box3 .title2 .name {
  margin-top: 0.14rem;
  text-align: center;
  color: #333333;
  font-size: 0.2rem;
}

.property_box3 ul {
  padding: 0.1rem 0.25rem;
}

.property_box3 ul li {
  float: left;
  margin-top: 0.25rem;
  width: 2.82rem;
  padding: 0.25rem 0.15rem;
  text-align: center;
  background: #fff;
  min-height: 3.47rem;
  box-shadow: 0.02rem 0.02rem 0.05rem rgba(0, 0, 0, 0.1);
}

.property_box3 ul li:nth-child(2n) {
  float: right;
}

.property_box3 ul li .icon {
  display: block;
  width: 0.76rem;
  margin: 0 auto;
}

.property_box3 ul li h3 {
  margin-top: 0.1rem;
  color: #14264e;
  font-size: 0.23rem;
  font-weight: normal;
}

.property_box3 ul li p {
  margin-top: 0.12rem;
  text-align: left;
  color: #666666;
  font-size: 0.2rem;
}

.property_box4 {
  background: url(../images/property_bg.jpg) no-repeat center center / cover;
  height: 6.3rem;
  padding: 0.7rem 0.25rem 0;
}

.property_box4 .nytitle {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.property_box4 .nytitle h3 {
  color: #ffffff;
}

.property_box4 .nytitle p {
  color: #cccccc;
}

.property_box4 .name {
  color: #ffffff;
  font-size: 0.2rem;
  text-align: center;
  margin-top: 0.26rem;
}

.property_box4 dl {
  margin-top: 0.6rem;
}

.property_box4 dl dt, .property_box4 dl dd {
  width: 50%;
  float: left;
  text-align: center;
  padding: 0 0.1rem;
}

.property_box4 dl dt .icon, .property_box4 dl dd .icon {
  display: block;
  width: 1.12rem;
  line-height: 0;
  margin: 0 auto;
}

.property_box4 dl dt h3, .property_box4 dl dd h3 {
  margin-top: 0.28rem;
  color: #ffffff;
  font-size: 0.24rem;
}

.property_box4 dl dt p, .property_box4 dl dd p {
  margin-top: 0.1rem;
  color: #cccccc;
  font-size: 0.2rem;
}

.property_box5 {
  padding: 0.4rem 0.25rem 0.5rem;
}

.property_box5 ul {
  margin-top: 0.2rem;
}

.property_box5 ul li {
  float: left;
  background: #f9f9f9;
  text-align: center;
  margin-right: 0.1rem;
  margin-top: 0.1rem;
  padding: 0.34rem 0.15rem;
  min-height: 2.68rem;
  width: 1.9rem;
}

.property_box5 ul li:nth-child(3n) {
  margin-right: 0;
}

.property_box5 ul li .icon {
  width: 0.8rem;
  line-height: 0;
  margin: 0 auto;
}

.property_box5 ul li .text {
  padding-top: 0.15rem;
}

.property_box5 ul li .text h3 {
  color: #14264e;
  font-size: 0.24rem;
}

.property_box5 ul li .text p {
  margin-top: 0.12rem;
  color: #666666;
  font-size: 0.2rem;
}

.property_news {
  padding: 0 0.25rem 0.4rem;
}

.property_news ul {
  padding-top: 0.05rem;
}

.property_news ul li {
  float: left;
  width: 100%;
  padding: 0.25rem 0;
  border-bottom: 1px solid #eeeeee;
}

.property_news ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.property_news ul li .img {
  float: left;
  width: 1.2rem;
  height: 1.2rem;
  position: relative;
  overflow: hidden;
}

.property_news ul li .img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.property_news ul li .text {
  float: right;
  width: 4.5rem;
  margin-top: -0.02rem;
}

.property_news ul li .text h3 {
  color: #333333;
  font-size: 0.22rem;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.property_news ul li .text p {
  margin-top: 0.05rem;
  color: #666666;
  font-size: 0.18rem;
  line-height: 0.28rem;
  height: 0.56rem;
  overflow: hidden;
}

.property_news ul li .text .bottom {
  color: #999999;
  font-size: 0.16rem;
  margin-top: 0.1rem;
  line-height: 0.15rem;
}

.property_news ul li .text .bottom span {
  float: left;
  margin-right: 0.2rem;
  position: relative;
  padding-left: 0.23rem;
}

.property_news ul li .text .bottom span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.property_news ul li .text .bottom .s1:before {
  width: 0.15rem;
  height: 0.15rem;
  background: url(../images/s1.jpg) no-repeat center center / cover;
}

.property_news ul li .text .bottom .s2:before {
  width: 0.18rem;
  height: 0.11rem;
  background: url(../images/s2.jpg) no-repeat center center / cover;
}

/**房产列表**/

.estate_tit {
  border-bottom: 1px solid #e9e9e9;
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 0.9rem;
}

.estate_tit .scroller {
  position: absolute;
}

.estate_tit ul li {
  float: left;
  width: auto;
  height: 0.9rem;
  font-size: 0.24rem;
  color: #666666;
  line-height: 0.9rem;
}

.estate_tit ul li a {
  color: #666666;
  display: block;
  margin: 0 0.28rem;
}

.estate_tit ul li.cur {
  color: #333333;
  border-bottom: 2px solid #046da2;
}

.estate_con {
  border-bottom: 1px solid #eeeeee;
  position: relative;
  z-index: 2;
}

.estate_con ul {
  position: relative;
}

.estate_con ul li {
  float: left;
  width: auto;
  font-size: 0.24rem;
  text-align: center;
}

.estate_con ul li span {
  padding: 0 0.35rem;
  display: block;
  line-height: 0.8rem;
  position: relative;
}

.estate_con ul li span i {
  margin-left: 0.05rem;
  display: inline-block;
  width: 0.23rem;
  height: 0.12rem;
  background: url(../images/estate_icon1.jpg) no-repeat center center / cover;
  position: relative;
  top: -0.02rem;
}

.estate_con ul li span:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 0.5rem;
  background: #eeeeee;
}

.estate_con ul li:last-child span:before {
  display: none;
}

.estate_con ul li .text_con {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 6.4rem;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.estate_con ul li .text_con a {
  width: 25%;
  float: left;
  display: block;
  padding: 0.2rem 0;
  border-right: 1px solid #eee;
  border-top: 1px solid #eee;
}

.estate_con ul li .text_con a:nth-child(4n) {
  border-right: none;
}

.estate_list {
  padding-bottom: 0.4rem;
}

.estate_list ul li {
  float: left;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
  padding: 0.25rem;
}

.estate_list ul li .img {
  float: left;
  width: 2.6rem;
  line-height: 0;
  position: relative;
  height: 1.74rem;
  overflow: hidden;
}

.estate_list ul li .img .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.61rem;
  height: 0.61rem;
  background: url(../images/i1.png) no-repeat center center / cover;
}

.estate_list ul li .img .icon2 {
  background: url(../images/i2.png) no-repeat center center / cover;
}

.estate_list ul li .text {
  float: right;
  width: 3.05rem;
}

.estate_list ul li .text h3 {
  color: #333333;
  font-size: 0.24rem;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.estate_list ul li .text .t {
  margin-top: 0.02rem;
  color: #666666;
  font-size: 0.2rem;
  line-height: 0.32rem;
}

.estate_list ul li .text .price {
  margin-top: 0.05rem;
  color: #333333;
  font-size: 0.18rem;
}

.estate_list ul li .text .price span {
  color: #cc0033;
  font-size: 0.3rem;
  font-weight: bold;
}

.fenye_bottom {
  position: relative;
  border-bottom: 1px solid #eee;
  height: 0.9rem;
  line-height: 0.9rem;
  text-align: center;
}

.fenye_bottom span {
  color: #333333;
  font-size: 0.24rem;
}

.fenye_bottom a {
  display: block;
  line-height: 0;
  height: 0.5rem;
  width: 0.26rem;
  position: absolute;
  top: 0.2rem;
}

.fenye_bottom .a1 {
  left: 0.47rem;
}

.fenye_bottom .a2 {
  left: 1.67rem;
}

.fenye_bottom .a3 {
  right: 1.67rem;
}

.fenye_bottom .a4 {
  right: 0.47rem;
}

/**房产详细**/

.estate_banner .slick-prev, .estate_banner .slick-next {
  width: 0.4rem;
  height: 0.6rem;
  margin-top: -0.3rem;
  border: none;
}

.estate_banner .slick-prev {
  left: 0;
  background: url(../images/estate_prev.png) no-repeat center center / cover;
}

.estate_banner .slick-next {
  right: 0;
  background: url(../images/estate_next.png) no-repeat center center / cover;
}

.estate_show {
  padding: 0.36rem 0;
}

.estate_show h1 {
  color: #000000;
  font-size: 0.3rem;
  padding: 0 0.25rem;
}

.estate_show .info_text {
  margin-top: 0.26rem;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.estate_show .info_text li {
  float: left;
  width: 33.33333333%;
  height: 0.9rem;
  padding: 0.11rem 0.25rem;
  position: relative;
}

.estate_show .info_text li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 0.7rem;
  background: #eeeeee;
}

.estate_show .info_text li:last-child:before {
  display: none;
}

.estate_show .info_text li p {
  font-size: 0.18rem;
  color: #333333;
}

.estate_show .info_text li p span {
  color: #cc0033;
  font-size: 0.36rem;
  font-weight: bold;
  position: relative;
  bottom: -0.02rem;
}

.estate_show .info_text_bottom {
  padding: 0.22rem 0.25rem 0;
}

.estate_show .info_text_bottom p {
  float: left;
  color: #999999;
  height: 0.28rem;
  font-size: 0.16rem;
  margin-right: 0.28rem;
  line-height: 0.28rem;
  position: relative;
}

.estate_show .info_text_bottom p span {
  display: inline-block;
  background: #cc0033;
  color: #fff;
  height: 0.28rem;
  line-height: 0.28rem;
  padding: 0 0.06rem;
  border-radius: 0.03rem;
  margin-right: 0.07rem;
}

.estate_show .info_text_bottom p:first-child {
  color: #cc0033;
}

.estate_show .info_text_bottom .d1 {
  padding-left: 0.2rem;
}

.estate_show .info_text_bottom .d1:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.12rem;
  height: 0.14rem;
  background: url(../images/p1.jpg) no-repeat center center / cover;
}

.estate_show .info_text_bottom .d2 {
  padding-left: 0.22rem;
}

.estate_show .info_text_bottom .d2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.14rem;
  height: 0.14rem;
  background: url(../images/p2.jpg) no-repeat center center / cover;
}

.estate_show .info_text_con {
  padding: 0.3rem 0.25rem 0;
}

.estate_show .info_text_con ul li {
  float: left;
  width: 50%;
  color: #000000;
  font-size: 0.2rem;
  padding: 0.05rem;
}

.estate_show .info_text_con ul li span {
  color: #666666;
  display: inline-block;
  width: 1.29rem;
}

.estate_show_box {
  padding-bottom: 0.4rem;
}

.estate_show_box .tit {
  border-bottom: 1px solid #eeeeee;
  color: #333333;
  font-size: 0.26rem;
  font-weight: normal;
  padding-left: 0.3rem;
  padding-bottom: 0.15rem;
  position: relative;
}

.estate_show_box .tit:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 0.11rem;
  height: 0.14rem;
  background: url(../images/show2.jpg) no-repeat center center / cover;
}

.estate_show_box .tit span {
  color: #666666;
  font-size: 0.2rem;
  text-transform: uppercase;
  display: inline-block;
  margin-left: 0.22rem;
}

.estate_show_box .tjly {
  padding: 0.32rem 0.25rem;
}

.estate_show_box .tjly .text {
  margin-top: 0.2rem;
  color: #666666;
  font-size: 0.22rem;
  line-height: 0.36rem;
}

.estate_show_box .fyxx {
  padding: 0.32rem 0.25rem;
}

.estate_show_box .fyxx .text {
  margin-top: 0.2rem;
  color: #666666;
  font-size: 0.22rem;
  line-height: 0.36rem;
}

.estate_show_box .fyxx .text h4 {
  font-weight: normal;
  color: #333333;
  font-size: 0.24rem;
}

.estate_show_box .zbss {
  padding: 0.32rem 0.25rem;
}

.estate_show_box .zbss .text {
  margin-top: 0.2rem;
  color: #666666;
  font-size: 0.22rem;
  line-height: 0.36rem;
}

.estate_show_box .zbss .text h4 {
  font-weight: normal;
  color: #333333;
  font-size: 0.24rem;
  padding-left: 0.32rem;
  position: relative;
}

.estate_show_box .zbss .text h4:before {
  content: "";
  position: absolute;
  left: 0;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.16rem;
  height: 0.16rem;
  background: url(../images/show3.jpg) no-repeat center center / cover;
}

.estate_show_box .wypz {
  padding: 0.32rem 0.25rem;
}

.estate_show_box .wypz ul li {
  float: left;
  width: 100%;
  border-bottom: 1px solid #eee;
  padding: 0.25rem 0;
}

.estate_show_box .wypz ul li p {
  color: #333333;
  font-size: 0.24rem;
}

.estate_show_box .wypz ul li .t {
  margin-top: 0.15rem;
}

.estate_show_box .wypz ul li .t span {
  display: block;
  float: left;
  color: #666666;
  font-size: 0.22rem;
  padding-left: 0.28rem;
  margin-right: 0.3rem;
  position: relative;
}

.estate_show_box .wypz ul li .t span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.17rem;
  height: 0.19rem;
  background: url(../images/show4.jpg) no-repeat center center / cover;
}

.estate_show_box .hxzs {
  padding: 0.32rem 0.25rem 0;
}

.estate_show_box .hxzs ul li {
  margin-top: 0.26rem;
  float: left;
  width: 100%;
}

.estate_show_box .hxzs ul li .text {
  color: #333333;
  font-size: 0.22rem;
  line-height: 0.36rem;
}

.estate_show_box .hxzs ul li .text span {
  color: #dd1721;
}

.estate_show_box .hxzs ul li .img {
  margin-top: 0.25rem;
}

/**顾问**/

.consultant_top {
  padding: 0 0.25rem;
  top: -0.25rem;
  position: relative;
  z-index: 2;
}

.consultant_top .list {
  background: #1c356b;
  padding: 0.25rem 0.15rem;
}

.consultant_top .list a {
  display: block;
  float: left;
  color: #ffffff;
  font-size: 0.2rem;
  padding: 0 0.1rem;
  border-radius: 0.03rem;
  margin: 0.03rem 0.01rem;
  line-height: 0.34rem;
}

.consultant_top .list a.cur {
  background: #cc0000;
}

.guwen_box {
  padding: 0 0.25rem 0.1rem;
}

.guwen_box ol li {
  float: left;
  margin-bottom: 0.2rem;
  background: #f5f5f5;
  width: 2.85rem;
}

.guwen_box ol li:nth-child(2n) {
  float: right;
}

.guwen_box ol li .img {
  line-height: 0;
  position: relative;
}

.guwen_box ol li .img img {
  width: 100%;
  min-height: 2.8rem;
  max-height: 2.8rem;
}

.guwen_box ol li .img .t {
  background: rgba(15, 31, 65, 0.9);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #ffffff;
  font-size: 0.2rem;
  text-align: center;
  line-height: 0.44rem;
}

.guwen_box ol li .img .t span {
  display: inline-block;
  margin-left: 0.05rem;
  text-transform: uppercase;
  font-family: arial;
}

.guwen_box ol li .text {
  padding: 0.15rem;
  text-align: center;
}

.guwen_box ol li .text h3 {
  color: #666666;
  font-weight: normal;
  font-size: 0.18rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guwen_box ol li .text .bottom {
  margin-top: 0.1rem;
}

.guwen_box ol li .text .bottom .f-l {
  margin-top: 0.04rem;
  display: inline-block;
}

.guwen_box ol li .text .bottom .f-l em {
  background: url(../images/x.png) no-repeat center center / cover;
  width: 0.15rem;
  height: 0.14rem;
  display: block;
  float: left;
  margin-right: 0.05rem;
}

/*顾问普通等级*/
.star {
  display: block;
  width: 0.75rem;
  height: 0.14rem;
  overflow: hidden;
  background: url(../images/xing_02.png) no-repeat left center;
}
.star i {
  float: left;
  width: 0;
  height: 100%;
  background: url(../images/xing_01.png) no-repeat left center;
}

/*顾问钻石等级*/
.star3 {
  display: block;
  width: 0.75rem;
  height: 0.14rem;
  overflow: hidden;
  background: url(../images/zuan_02.png) no-repeat left center;
}
.star3 i {
  float: left;
  width: 0;
  height: 100%;
  background: url(../images/zuan_01.png) no-repeat left center;
}

.guwen_box ol li .text .bottom .f-r {
  clear: #666666;
  font-size: 0.15rem;
  padding-left: 0.2rem;
  position: relative;
}

.guwen_box ol li .text .bottom .f-r:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.02rem;
  width: 0.13rem;
  height: 0.16rem;
  background: url(../images/d.png) no-repeat center center / cover;
}

@media only screen and (max-width:480px ) {
	.star,.star3{
		width: 1rem;
	}
}
@media only screen and (max-width:414px ) {
	.star,.star3{
		width: 1.15rem;
	}
	.star{
		height: 0.16rem;
	}
	.star3{
		height: 0.19rem;
	}
}
@media only screen and (max-width:375px ) {
	.star,.star3{
		width: 1.3rem;
	}
	.star{
		height: 0.17rem;
	}
	.star3{
		height: 0.2rem;
	}
}
@media only screen and (max-width:360px ) {
	.star,.star3{
		width: 1.4rem;
	}
	.star{
		height: 0.18rem;
	}
	.star3{
		height: 0.21rem;
	}
}

/**顾问详细**/

.guwenshow_box {
  padding-bottom: 0.3rem;
}

.guwenshow_box .img {
  line-height: 0;
}

.guwenshow_box .img img {
transform: rotate(0deg) !important; 
  width: 100%;
}

.guwenshow_box .text {
  padding: 0.25rem 0.25rem 0;
}

.guwenshow_box .text .bt h3 {
  float: left;
  max-width: 60%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #333333;
  font-size: 0.24rem;
}

.guwenshow_box .text .bt .xj {
  float: right;
  margin-top: 0.05rem;
}

.guwenshow_box .text .bt .xj em {
  background: url(../images/x2.png) no-repeat center center / cover;
  width: 0.23rem;
  height: 0.23rem;
  display: block;
  float: left;
  margin-left: 0.05rem;
}

.guwenshow_box .text .data {
  border-bottom: 1px dotted #dcdcdc;
  color: #333333;
  font-size: 0.2rem;
  margin-top: 0.1rem;
  padding-bottom: 0.25rem;
}

.guwenshow_box .text .data span {
  display: block;
  float: left;
  margin-right: 0.1rem;
}

.guwenshow_box .text .t {
  padding-top: 0.2rem;
  color: #333333;
  font-size: 0.2rem;
  line-height: 0.34rem;
}

.guwenshow_box .text .t span {
  color: #cc0000;
  font-size: 0.24rem;
  font-weight: bold;
}

.guwen_case {
  background: url(../images/home_bg2.jpg) no-repeat center top / cover;
  background-size: 100% 2.67rem;
}

.guwen_case ol {
  background: #ffffff;
  padding: 0 0.25rem 0.3rem;
}

.guwen_case ol li {
  float: left;
  width: 2.85rem;
  margin-top: 0.25rem;
  position: relative;
}

.guwen_case ol li:nth-child(2n) {
  float: right;
}

.guwen_case ol li .img {
  line-height: 0;
  height: 1.86rem;
  display: block;
}

.guwen_case ol li .img img {
  width: 100%;
}

.guwen_case ol li .text {
  margin-top: 0.1rem;
}

.guwen_case ol li .text h3 {
  color: #333333;
  font-size: 0.24rem;
  font-weight: normal;
  line-height: 0.36rem;
  height: 0.72rem;
  overflow: hidden;
}

.guwen_case ol li .text p {
  margin-top: 0.08rem;
  color: #858585;
  font-size: 0.2rem;
  line-height: 0.34rem;
  height: 1.02rem;
  overflow: hidden;
}

.guwen_paper {
  background: url(../images/home_bg2.jpg) no-repeat center top / cover;
  background-size: 100% 2.67rem;
  padding-bottom: 0.3rem;
}

.guwen_paper .paper_qh {
  background: #fff;
}

.guwen_paper .paper_qh ol {
  padding: 0.25rem;
}

.guwen_paper .paper_qh ol li {
  float: left;
  width: 2.85rem;
  position: relative;
}

.guwen_paper .paper_qh ol li:nth-child(2n) {
  float: right;
}

.guwen_paper .paper_qh ol li .img {
  line-height: 0;
}

.guwen_paper .paper_qh ol li .img img {
  width: 100%;
}

.guwen_paper .paper_qh ol li .text {
  margin-top: 0.1rem;
}

.guwen_paper .paper_qh ol li .text h3 {
  text-align: center;
  color: #333333;
  font-size: 0.24rem;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guwen_paper .paper_qh .slick-dots {
  bottom: 0;
}

.guwen_paper .paper_qh .slick-dots li button {
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 0.5rem;
  background: #939fad;
}

.guwen_paper .paper_qh .slick-dots li.slick-active button {
  width: 0.26rem;
  background: #cc0000;
}

/**关于我们**/

.about_box {
  padding: 0.2rem 0.25rem 0.3rem;
}

.about_box .tit {
  position: relative;
  text-align: center;
}

.about_box .tit p {
  color: #fafafa;
  font-size: 0.51rem;
  font-weight: bold;
  font-style: italic;
}

.about_box .tit h3 {
  position: absolute;
  left: 0;
  color: #333;
  top: 0.17rem;
  width: 100%;
  font-size: 0.3rem;
}

.about_box .tit h3 span {
  color: #cc0000;
}

.about_box .text {
  margin-top: 0.1rem;
  color: #666666;
  font-size: 0.22rem;
  line-height: 0.36rem;
}

.about_box .shipin {
  margin-top: -0.06rem;
}

.about_brand .title {
  border-bottom: 1px solid #f5f5f5;
}

.about_brand .title h3 {
  color: #333333;
}

.about_brand .brand_List {
  background: #fcfcfc;
  border-bottom: 1px solid #f5f5f5;
  height: 0.58rem;
}

.about_brand .brand_List .brand_tab {
  margin: 0 0.45rem;
}

.about_brand .brand_List .brand_tab .text {
  color: #333333;
  font-size: 0.24rem;
  line-height: 0.58rem;
  text-align: center;
  width: 100%;
}

.about_brand .brand_List .brand_tab .slick-current .text {
  background: #cc0000;
  color: #fff;
}

.about_brand .brand_List .brand_tab .slick-prev, .about_brand .brand_List .brand_tab .slick-next {
  width: 0.1rem;
  height: 0.18rem;
  border: none;
  margin-top: -0.09rem;
}

.about_brand .brand_List .brand_tab .slick-prev {
  left: -0.2rem;
  background: url(../images/brand_left.png) no-repeat center center / cover;
}

.about_brand .brand_List .brand_tab .slick-next {
  right: -0.2rem;
  background: url(../images/brand_right.png) no-repeat center center / cover;
}

.about_brand .brand_con {
  margin-top: 0.4rem;
  padding: 0 0.25rem 0.4rem;
  background: url(../images/brand_bg.jpg) no-repeat center top;
  background-size: 100% 2.42rem;
}

.about_brand .brand_con .brand_text .box .img {
  width: 2.84rem;
  line-height: 0;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.about_brand .brand_con .brand_text .box .img:before {
  content: "";
  position: absolute;
  right: -0.15rem;
  bottom: -0.15rem;
  width: 96%;
  height: 96%;
  border: 0.05rem solid rgba(28, 53, 107, 0.2);
}

.about_brand .brand_con .brand_text .box .text {
  margin-top: 0.2rem;
  text-align: center;
  color: #333333;
  font-size: 0.22rem;
  line-height: 0.36rem;
}

.about_brand .brand_con .brand_text .slick-prev, .about_brand .brand_con .brand_text .slick-next {
  width: 0.26rem;
  height: 0.5rem;
  border: none;
  margin-top: -0.25rem;
}

.about_brand .brand_con .brand_text .slick-prev {
  left: 0;
  background: url(../images/brand_left2.png) no-repeat center center / cover;
}

.about_brand .brand_con .brand_text .slick-next {
  right: 0;
  background: url(../images/brand_right2.png) no-repeat center center / cover;
}

.about_honor .title {
  border-bottom: 1px solid #f5f5f5;
}

.about_honor .title h3 {
  color: #333333;
}

.about_honor .honor_qh ol {
  padding: 0.25rem 0.25rem 0.7rem;
}

.about_honor .honor_qh ol li {
  float: left;
  line-height: 0;
  width: 2.85rem;
}

.about_honor .honor_qh ol li img {
  width: 100%;
}

.about_honor .honor_qh ol li:nth-child(2n) {
  float: right;
}

.about_honor .honor_qh .slick-dots {
  bottom: 0.3rem;
}

.about_honor .honor_qh .slick-dots li button {
  width: 0.11rem;
  height: 0.11rem;
  border-radius: 50px;
  background: #939fad;
}

.about_honor .honor_qh .slick-dots li.slick-active button {
  width: 0.36rem;
  background: #cc0000;
}

.about_contact .title {
  border-bottom: 1px solid #f5f5f5;
}

.about_contact .title h3 {
  color: #333333;
}

.about_contact .domestic {
  padding: 0 0.25rem;
  background: url(../images/domestic_bg.jpg) no-repeat center top / cover;
}

.about_contact .domestic .t {
  line-height: 0.7rem;
  text-align: center;
  color: #333333;
  font-size: 0.22rem;
}

.about_contact .domestic .ol_tab {
  background: #fcfcfc;
  height: 0.58rem;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  text-align: center;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
  font-size: 0.24rem;
}

.about_contact .domestic .ol_tab span {
  line-height: 0.58rem;
  display: inline-block;
  margin: 0 0.1rem;
  color: #333333;
  padding: 0 0.28rem;
}

.about_contact .domestic .ol_tab span.cur {
  background: #cc0000;
  color: #fff;
}
.about_contact .domestic .ol_tab span.cur a{
  color: #fff;
}
.about_contact .domestic_box {
  padding-top: 0.4rem;
}

.about_contact .domestic_box ol li {
  float: left;
  width: 100%;
  margin-bottom: 0.25rem;
}

.about_contact .domestic_box ol li h3 {
  color: #333333;
  font-size: 0.22rem;
  padding-left: 0.16rem;
  position: relative;
}

.about_contact .domestic_box ol li h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.04rem;
  height: 0.2rem;
  background: #cc0000;
}

.about_contact .domestic_box ol li .text {
  margin-top: 0.05rem;
  color: #666666;
  font-size: 0.2rem;
  line-height: 0.36rem;
}

.about_contact .overseas {
  padding-top: 0.3rem;
}

.about_contact .overseas h3.tit {
  color: #333333;
  font-size: 0.24rem;
  text-align: center;
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 0.25rem;
}

.about_contact .overseas .domestic_box {
  padding: 0.3rem 0.25rem;
}

.contact .domestic .t {
  color: #333333;
  font-size: 0.24rem;
  font-weight: bold;
  line-height: 0.86rem;
}

.newsshow {
  padding: 0.2rem 0;
  font-size: 0.2rem;
  line-height: 0.34rem;
}

.join_tab {
  padding: 0 0.25rem;
}

.join_tab ul {
  position: relative;
  top: -0.2rem;
}

.join_tab ul li {
  background: #1c356b;
  float: left;
  width: 100%;
  padding: 0.2rem 0.15rem;
  font-size: 0.2rem;
  margin-top: 0.05rem;
}

.join_tab ul li:first-child {
  margin-top: 0;
}

.join_tab ul li span {
  display: block;
  float: left;
  background: #cc0000;
  line-height: 0.3rem;
  padding: 0 0.1rem;
  border-radius: 0.03rem;
  color: #fff;
}

.join_tab ul li .box {
  float: right;
  width: 4.85rem;
}

.join_tab ul li .box a {
  display: block;
  float: left;
  line-height: 0.3rem;
  padding: 0 0.1rem;
  color: #b9c4dc;
}

.join_tab ul li .box a.cur {
  color: #fff;
}

.join_list {
  padding: 0 0.25rem;
}

.join_list ol li {
  float: left;
  width: 100%;
  border-top: 1px dotted #cccccc;
  padding: 0.3rem 0;
}

.join_list ol li:first-child {
  padding-top: 0.1rem;
  border-top: none;
}

.join_list ol li h3 {
  color: #333333;
  font-size: 0.24rem;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.join_list ol li .data {
  color: #666;
  margin-top: 0.1rem;
}

.join_list ol li .data span {
  float: left;
  font-size: 0.2rem;
  position: relative;
  padding: 0 0.15rem;
  display: block;
}

.join_list ol li .data span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.04rem;
  width: 0.02rem;
  height: 0.2rem;
  background: #666666;
}

.join_list ol li .data span:first-child {
  padding-left: 0;
}

.join_list ol li .data span:first-child:before {
  display: none;
}

.join_list ol li .welfare {
  margin-top: 0.12rem;
}

.join_list ol li .welfare span {
  line-height: 0.26rem;
  border: 1px solid #cccccc;
  font-size: 0.18rem;
  display: block;
  float: left;
  color: #ccc;
  padding: 0 0.05rem;
  margin-right: 0.05rem;
}

.join_show {
  padding: 0.25rem;
}

.join_show h1 {
  text-align: center;
  font-size: 0.24rem;
  color: #333333;
}

.join_show .data {
  margin-top: 0.1rem;
  text-align: center;
  font-size: 0.18rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px dotted #cccccc;
}

.join_show .data span {
  display: inline-block;
  margin: 0 0.05rem;
}

.join_show .box {
  padding-top: 0.25rem;
  color: #666;
  font-size: 0.22rem;
  line-height: 0.36rem;
}

.join_show .box .title {
  height: 0.4rem;
  line-height: 0.4rem;
  padding: 0;
  margin-bottom: 0.05rem;
}

.join_show .box .title h3 {
  color: #333;
  font-size: 0.24rem;
  float: none;
  padding-left: 0.25rem;
  line-height: 0.4rem;
}

.join_show .box .title h3:before {
  top: 0.08rem;
  width: 0.17rem;
  height: 0.24rem;
}

.visa_box {
  background: url(../images/home_bg2.jpg) no-repeat center top / cover;
  background-size: 100% 2.3rem;
  margin-bottom: 0.3rem;
}

.visa_box ul.visa_t {
  background: #f7f7f9;
  margin: 0 0.25rem;
  padding: 0.3rem 0.45rem;
  border-radius: 0.2rem;
}

.visa_box ul.visa_t li {
  float: left;
  width: 50%;
  margin: 0.12rem 0;
  padding-left: 0.2rem;
  font-size: 0.22rem;
  position: relative;
}

.visa_box ul.visa_t li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 0.12rem;
  height: 0.11rem;
  background: url(../images/visa_icon1.png) no-repeat center center / cover;
}

.visa_box ul.visa_t li a {
  color: #333333;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.rmfc_box {
  background: url(../images/home_bg2.jpg) no-repeat center top / cover;
  background-size: 100% 2.6rem;
  margin-bottom: 0.3rem;
}

.rmfc_box ul {
  background: #fff;
  padding: 0 0.25rem;
}

.rmfc_box .ts {
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 0.12rem 0.25rem;
  color: #666666;
  font-size: 0.18rem;
  line-height: 0.32rem;
}

.rmfc_box .ts span {
  color: #ff0000;
}

.lianxiguwen {
  background: url(../images/home_bg2.jpg) no-repeat center top / cover;
  background-size: 100% 2.6rem;
}

.lianxiguwen ul {
  background: url(../images/lxgw_bg.jpg) no-repeat center center / cover;
  padding: 0.25rem;
}

.lianxiguwen ul li {
  float: left;
  font-size: 0.24rem;
  width: 33.33333333%;
  margin: 0.1rem 0;
  padding-left: 0.2rem;
  position: relative;
}

.lianxiguwen ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 0.12rem;
  height: 0.11rem;
  background: url(../images/visa_icon1.png) no-repeat center center / cover;
}

.lianxiguwen ul li a {
  color: #333333;
}

.youshi {
  background: url(../images/home_bg2.jpg) no-repeat center top / cover;
  background-size: 100% 2.6rem;
  margin-bottom: 0.3rem;
}

.youshi ul {
  background: #f7f7f9;
  margin: 0 0.25rem;
  padding: 0.05rem 0.25rem;
  border-radius: 0.1rem;
}

.youshi ul li {
  float: left;
  width: 100%;
  border-bottom: 1px dotted #acacae;
  padding: 0.3rem 0;
}

.youshi ul li:last-child {
  border-bottom: none;
}

.youshi ul li .icon {
  float: left;
  width: 0.8rem;
  line-height: 0;
}

.youshi ul li .text {
  margin-top: -0.05rem;
  float: right;
  width: 4.3rem;
}

.youshi ul li .text h3 {
  color: #333333;
  font-size: 0.22rem;
  font-weight: normal;
  margin-bottom: 0.05rem;
}

.youshi ul li .text p {
  color: #666666;
  font-size: 0.18rem;
  line-height: 0.28rem;
}

.jcsj_img {
  background: #fff;
  padding-top: 0.3rem;
}

.jcsj_img img {
  width: 100%;
}

.jcsj_img .text {
  padding: 0 0.25rem;
  text-align: center;
}

.jcsj_img .text span {
  display: block;
  line-height: 0;
}

.jcsj_img .text p {
  margin-top: 0.15rem;
  color: #333333;
  font-size: 0.24rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.jcsj_img .slick-dots {
  bottom: 0.65rem;
}

.jcsj_img .slick-dots li button {
  width: 0.11rem;
  height: 0.11rem;
  border-radius: 50px;
  background: #939fad;
}

.jcsj_img .slick-dots li.slick-active button {
  width: 0.36rem;
  background: #cc0000;
}

.stay {
  background: url(../images/home_bg2.jpg) no-repeat center top / cover;
  background-size: 100% 2.6rem;
}

.stay ul {
  background: #fff;
  padding: 0.25rem 0.25rem 0;
}

.stay ul li {
  float: left;
  position: relative;
  margin-bottom: 0.4rem;
  width: 2.85rem;
}

.stay ul li:nth-child(2n) {
  float: right;
}

.stay ul li img {
  width: 100%;
}

.stay ul li .icon {
  line-height: 0;
}

.stay ul li p {
  position: absolute;
  left: 0.1rem;
  bottom: -0.1rem;
  min-width: 1.1rem;
  line-height: 0.4rem;
  background: #1c356b;
  color: #fff;
  text-align: center;
  font-size: 0.2rem;
  font-weight: bold;
  padding: 0 0.15rem;
}

.institution {
  background: url(../images/home_bg2.jpg) no-repeat center top / cover;
  background-size: 100% 2.6rem;
  margin-bottom: 0.3rem;
}

.institution ul {
  background: #f7f7f9;
  margin: 0 0.25rem;
  padding: 0 0.25rem 0.25rem;
  border-radius: 0.2rem;
}

.institution ul li {
  float: left;
  width: 1.63rem;
  height: 1.63rem;
  background: #474e5e;
  border-radius: 0.05rem;
  text-align: center;
  padding-top: 0.24rem;
  margin-top: 0.25rem;
  margin-right: 0.25rem;
}

.institution ul li:nth-child(3n) {
  margin-right: 0;
}

.institution ul li .icon {
  width: 0.86rem;
  height: 0.66rem;
  margin: 0 auto;
}

.institution ul li p {
  margin-top: 0.08rem;
  color: #ffffff;
  font-size: 0.24rem;
}

.success {
  background: url(../images/home_bg2.jpg) no-repeat center top / cover;
  background-size: 100% 2.6rem;
}

.success .success_box {
  background: #ffffff;
  padding: 0.25rem;
}

.success .success_box .top .img {
  float: left;
  width: 1.6rem;
  height: 1.6rem;
  position: relative;
}

.success .success_box .top .img span {
  display: block;
  line-height: 0;
  width: 100%;
}

.success .success_box .top .img p {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 0.28rem;
}

.success .success_box .top .text {
  float: left;
  margin-left: 0.2rem;
  width: 4.05rem;
}

.success .success_box .top .text h3 {
  color: #333333;
  font-size: 0.2rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.success .success_box .top .text .t {
  margin-top: 0.1rem;
  font-size: 0.18rem;
  line-height: 0.32rem;
}

.success .success_box .top .text .t p {
  color: #666666;
  height: 0.96rem;
  overflow: hidden;
}

.success .success_box .top .text .t .more {
  display: inline-block;
  width: 0.66rem;
  height: 0.19rem;
  background: url(../images/tel.jpg) no-repeat center center / cover;
  color: #fff;
  margin-left: 0.2rem;
  position: relative;
  top: 0.01rem;
}

.success .success_box .top .text .t span {
  color: #cc0000;
  font-weight: bold;
}

.success .success_box .top .text span.data {
  color: #999999;
  font-size: 0.18rem;
}

.success .success_box ul {
  margin-top: 0.3rem;
}

.success .success_box ul li {
  float: left;
  width: 100%;
  border-top: 1px dotted #cccccc;
  padding: 0.25rem 0;
}

.success .success_box ul li:last-child {
  padding-bottom: 0;
}

.success .success_box ul li h3 {
  color: #333333;
  font-size: 0.2rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.success .success_box ul li .t {
  margin-top: 0.1rem;
  font-size: 0.18rem;
  line-height: 0.32rem;
}

.success .success_box ul li .t p {
  color: #666666;
  height: 0.64rem;
  overflow: hidden;
}

.success .success_box ul li .t .more {
  display: inline-block;
  width: 0.66rem;
  height: 0.19rem;
  background: url(../images/tel.jpg) no-repeat center center / cover;
  color: #fff;
  margin-left: 0.2rem;
  position: relative;
  top: 0.01rem;
}

.success .success_box ul li .t span {
  color: #cc0000;
  font-weight: bold;
}

.success .success_box ul li span.data {
  color: #999999;
  font-size: 0.18rem;
}

.full_service {
  background: url(../images/home_bg2.jpg) no-repeat center top / cover;
  background-size: 100% 2.6rem;
}

.full_service ul li {
  margin-right: 0;
  width: 2.85rem;
}

.full_service ul li:nth-child(2n) {
  float: right;
}

.search_btn {
  height: 0.7rem;
  border: 1px solid #f0f0f0;
  border-radius: 0.05rem;
}

.search_btn .t {
  float: left;
  width: 4rem;
  height: 0.68rem;
  line-height: 0.68rem;
  font-size: 0.24rem;
  padding: 0 0.25rem;
  border: none;
  background: none;
}

.search_btn .d {
  margin-top: 0.22rem;
  margin-right: 0.2rem;
  float: right;
  width: 0.24rem;
  height: 0.24rem;
  border: none;
  background: url(../images/btn.jpg) no-repeat center center / cover;
}

.oversea_con {
  border-top: 1px solid #eeeeee;
  background: #fafafa;
}

.oversea_con ul li {
  width: 25%;
}

.oversea_box {
  padding-bottom: 0.1rem;
}

.oversea_box ul li {
  width: 100%;
  float: left;
  margin-bottom: 0.25rem;
}

.oversea_box ul li .img {
  line-height: 0;
}

.oversea_box ul li .text {
  position: relative;
  z-index: 2;
  background: #1c356b;
  margin: -0.8rem 0.25rem 0;
  color: #fff;
  font-size: 0.2rem;
  padding: 0.25rem;
}

.oversea_box ul li .text .bt {
  line-height: 0.32rem;
}

.oversea_box ul li .text .bt h3 {
  float: left;
  max-width: 70%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.oversea_box ul li .text .bt .renshu {
  float: right;
}

.oversea_box ul li .text .bt .renshu i {
  margin-top: 0.06rem;
  display: block;
  float: left;
  width: 0.23rem;
  height: 0.19rem;
  background: url(../images/xin.png) no-repeat center center / cover;
}

.oversea_box ul li .text .bt .renshu span {
  margin-left: 0.1rem;
  display: block;
  float: left;
}

.oversea_box ul li .text .t {
  margin-top: 0.1rem;
  line-height: 0.36rem;
}

.oversea_show {
  padding: 0.3rem 0.25rem;
}

.oversea_show .tit {
  line-height: 0.32rem;
}

.oversea_show .tit h3 {
  float: left;
  max-width: 75%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #000;
  font-size: 0.24rem;
}

.oversea_show .tit .renshu {
  float: right;
}

.oversea_show .tit .renshu i {
  margin-top: 0.06rem;
  display: block;
  float: left;
  width: 0.23rem;
  height: 0.19rem;
  background: url(../images/xin.png) no-repeat center center / cover;
}

.oversea_show .tit .renshu span {
  margin-left: 0.1rem;
  display: block;
  float: left;
  color: #000;
}

.oversea_show .name {
  color: #999999;
  font-size: 0.18rem;
  margin-top: 0.05rem;
  font-family: arial;
}

.oversea_show .datail {
  padding-top: 0.1rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px dotted #dcdcdc;
}

.oversea_show .datail li {
  margin-top: 0.2rem;
  float: left;
  width: 100%;
  line-height: 0.25rem;
  font-size: 0.2rem;
}

.oversea_show .datail li i {
  display: block;
  float: left;
  width: 0.2rem;
  line-height: 0;
}

.oversea_show .datail li span {
  float: right;
  width: 5.55rem;
}

.oversea_show .text {
  padding: 0.2rem 0 0;
  font-size: 0.2rem;
  line-height: 0.32rem;
}

.tiaojian ul li {
  float: left;
  width: 100%;
  margin-top: 0.15rem;
}

.tiaojian ul li:first-child {
  margin-top: 0;
}

.tiaojian ul li .title {
  border-bottom: 1px solid #dcdcdc;
  border-top: 1px solid #dcdcdc;
}

.tiaojian ul li .title h3 {
  color: #333;
  line-height: 0.78rem;
}

.tiaojian ul li .title a {
  display: block;
  float: right;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.21rem;
  height: 0.12rem;
  background: url(../images/oversea_show_icon9.jpg) no-repeat center center / cover;
}

.tiaojian ul li .text {
  display: none;
  padding: 0.2rem 0.25rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
}

.tiaojian ul li.cur .title a {
  background: url(../images/oversea_show_icon10.jpg) no-repeat center center / cover;
}

.lianxifangshi {
  background: url(../images/lxgw_bg.jpg) no-repeat center top / cover;
}

.lianxifangshi ol {
  margin-top: 0.1rem;
}

.lianxifangshi ol li {
  margin-top: 0.15rem;
  width: 100%;
  float: left;
}

.lianxifangshi ol li input {
  float: left;
  width: 100%;
  height: 0.75rem;
  line-height: 0.73rem;
  font-size: 0.22rem;
  padding: 0 0.25rem;
  border: 1px solid #f0f0f0;
  border-radius: 0.03rem;
  background: #fff;
}

.lianxifangshi ol li .btn {
  background: #cc0000;
  border: none;
  color: #fff;
  font-size: 0.24rem;
}

ul.hzys_top li {
  float: left;
  margin-top: 0.2rem;
  width: 2.85rem;
}

ul.hzys_top li:nth-child(2n) {
  float: right;
}

ul.hzys_top li .top span {
  line-height: 0;
  display: block;
}

ul.hzys_top li .top span img {
  width: 1005;
}

ul.hzys_top li .top p {
  padding: 0.05rem;
  text-align: center;
  color: #fff;
  font-size: 0.2rem;
  line-height: 0.32rem;
  background: #1c356b;
  width: 2rem;
  position: relative;
  z-index: 2;
  margin: -0.3rem auto 0;
}

ul.hzys_top li .text {
  color: #666666;
  font-size: 0.2rem;
  line-height: 0.32rem;
  height: 0.96rem;
  overflow: hidden;
}

.technology_box {
  background: #f7f7f9;
  padding: 0 0.25rem;
}

.technology_box ul {
  background: #ffffff;
  position: relative;
  top: -0.2rem;
  border-radius: 0.05rem;
  margin-bottom: 0.1rem;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, .1);
}

.technology_box ul li {
  float: left;
  width: 33.33333333%;
  text-align: center;
  padding: 0.3rem 0.15rem;
}

.technology_box ul li:nth-child(2n) {
  background: #f7f7f9;
}

.technology_box ul li .icon {
  line-height: 0;
  width: 0.54rem;
  margin: 0 auto;
}

.technology_box ul li .text {
  margin-top: 0.15rem;
}

.technology_box ul li .text h3 {
  color: #1c356b;
  font-size: 0.22rem;
}

.technology_box ul li .text p {
  margin-top: 0.05rem;
  color: #333333;
  font-size: 0.18rem;
  line-height: 0.32rem;
}

.student_box {
  background: url(../images/home_bg2.jpg) no-repeat center top / cover;
  background-size: 100% 2.6rem;
}

.student_box .student_tab {
  padding: 0 0.25rem;
}

.student_box .student_tab li {
  height: 0.8rem;
  line-height: 0.8rem;
  float: left;
  text-align: center;
  width: 25%;
  color: #ffffff;
  font-size: 0.3rem;
}

.student_box .student_tab li.cur {
  background: #cc0000;
}

.student_box .student_con {
  padding-bottom: 0.3rem;
}

.student_box .student_con ul li {
  float: left;
  width: 100%;
}

.student_box .student_con ul li .img {
  line-height: 0;
}

.student_box .student_con ul li .text {
  background: #f7f7f9;
  margin: -2rem 0.25rem 0;
  position: relative;
  z-index: 2;
  padding: 0.25rem;
  color: #333333;
  font-size: 0.2rem;
  line-height: 0.32rem;
}

.student_box .student_con ul li .text dl {
  margin: 0.12rem 0;
}

.student_box .student_con ul li .text dl dt, .student_box .student_con ul li .text dl dd {
  float: left;
  width: 50%;
}

.student_box .student_con ul li .text dl dd em {
  background: url(../images/x2.png) no-repeat center center / cover;
  width: 0.2rem;
  height: 0.2rem;
  display: inline-block;
  position: relative;
  top: 0.02rem;
}

.ymys_box {
  background: #ffffff;
  padding: 0.25rem 0.25rem 0.35rem;
}

.ymys_box ul li {
  float: left;
  margin-bottom: 0.25rem;
  width: 2.85rem;
}

.ymys_box ul li:nth-child(2n) {
  float: right;
}

.ymys_box ul li img {
  width: 100%;
}

.ymys_box ul li .img {
  line-height: 0;
  overflow: hidden;
}

.ymys_box ul li .text {
  margin-top: -0.3rem;
  position: relative;
  z-index: 2;
  color: #333333;
  font-size: 0.18rem;
}

.ymys_box ul li .text h3 {
  width: 2.4rem;
  background: #cc0000;
  line-height: 0.45rem;
  text-align: center;
  color: #fff;
  font-size: 0.24rem;
  font-weight: normal;
  margin: 0 auto 0.15rem;
}

.ymys_box ul li .text p {
  line-height: 0.32rem;
  height: 0.96rem;
  overflow: hidden;
}

.ymys_box .leaflet {
  line-height: 0;
}

.recom_colonial {
  background: url(../images/recom_bg.jpg) no-repeat center top / cover;
  background-size: 100% 1.2rem;
}

.recom_colonial .recom_tab {
  position: relative;
  z-index: 2;
  background: #ffffff;
  margin: 0 0.25rem;
  border-radius: 0.03rem;
}

.recom_colonial .recom_tab li {
  float: left;
  margin-left: 0.25rem;
  text-align: center;
  color: #333333;
  padding: 0.25rem 0 0.2rem;
  border-bottom: 0.05rem solid transparent;
}

.recom_colonial .recom_tab li.cur {
  color: #cc0000;
  border-bottom-color: #cc0000;
}

.recom_colonial .recom_box {
  margin-top: -0.4rem;
  background: url(../images/recom_bg2.jpg) no-repeat center top / cover;
  padding: 0 0.25rem 0.3rem;
}

.recom_colonial .recom_box ul {
  padding-top: 0.25rem;
}

.recom_colonial .recom_box ul li {
  float: left;
  width: 100%;
}

.recom_colonial .recom_box ul li .text {
  float: left;
  width: 3.4rem;
  font-size: 0.2rem;
  line-height: 0.34rem;
  color: #333333;
}

.recom_colonial .recom_box ul li .img {
  float: right;
  width: 2.25rem;
  line-height: 0;
}

.rmgj_box {
  background: #3e5f7f;
  margin: 0 0.25rem;
}

.rmgj_box ol {
  float: left;
  width: 1.76rem;
  background: #f7f7f9;
  padding: 0.31rem 0;
}

.rmgj_box ol li {
  float: left;
  width: 100%;
  text-align: center;
  margin-top: 0.25rem;
  position: relative;
}

.rmgj_box ol li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.35rem;
  width: 0.18rem;
  height: 0.29rem;
  background: url(../images/rmgj_icon1.jpg) no-repeat center center / cover;
  display: none;
}

.rmgj_box ol li:first-child {
  margin-top: 0;
}

.rmgj_box ol li .icon {
  width: 0.93rem;
  height: 0.93rem;
  background: url(../images/guo_bg.png) no-repeat center center / cover;
  padding: 0.02rem 0 0 0.03rem;
  margin: 0 auto;
}

.rmgj_box ol li .icon span {
  display: block;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  overflow: hidden;
}

.rmgj_box ol li .icon span img {
  border-radius: 50%;
}

.rmgj_box ol li p {
  margin-top: 0.12rem;
  color: #333333;
  font-size: 0.24rem;
}

.rmgj_box ol li.cur:before {
  display: block;
}

.rmgj_box .rmgj_right {
  float: right;
  width: 4.14rem;
  padding: 0.3rem 0.25rem;
}

.rmgj_box .rmgj_right ul li {
  float: left;
  width: 100%;
}

.rmgj_box .rmgj_right ul li .img {
  line-height: 0;
}

.rmgj_box .rmgj_right ul li .img img {
  width: 100%;
}

.rmgj_box .rmgj_right ul li .text {
  padding-top: 0.2rem;
}

.rmgj_box .rmgj_right ul li .text h3 {
  color: #ffffff;
  font-size: 0.2rem;
  margin-bottom: 0.1rem;
}

.rmgj_box .rmgj_right ul li .text p {
  color: #ffffff;
  font-size: 0.2rem;
  line-height: 0.32rem;
  height: 1.28rem;
  overflow: hidden;
}

.rmgj_box .rmgj_right ul li .text a.more {
  margin-top: 0.2rem;
  display: inline-block;
  color: #d2d7e1;
  line-height: 0.3rem;
}

.rmgj_box .rmgj_right ul li .text a.more i {
  display: inline-block;
  width: 0.2rem;
  height: 0.17rem;
  background: url(../images/icon3.png) no-repeat center center / cover;
  margin-left: 0.05rem;
}

.tuozi_yimin {
  background: url(../images/tuozi_bg.jpg) no-repeat center top / cover;
  background-size: 100% 1.72rem;
}

.point_btn {
  background: #ffffff;
  margin: 0 0.25rem;
  box-shadow: 0 0 0.03rem rgba(0, 0, 0, 0.2);
  border-radius: 0.03rem;
  position: relative;
  top: -0.2rem;
}

.point_btn ol li {
  float: left;
  width: 33.33333333%;
  text-align: center;
  font-size: 0.24rem;
  font-weight: bold;
}

.point_btn ol li a {
  display: inline-block;
  color: #333333;
  padding: 0.25rem 0 0.2rem;
  border-bottom: 0.05rem solid transparent;
}

.point_btn ol li.cur a {
  color: #cc0000;
  border-bottom-color: #cc0000;
}

.yaoqiu_box {
  padding: 0.2rem 0.25rem 0.3rem;
}

.yaoqiu_box .tit {
  position: relative;
  text-align: center;
}

.yaoqiu_box .tit p {
  color: #fafafa;
  font-size: 0.51rem;
  font-weight: bold;
  font-style: italic;
}

.yaoqiu_box .tit h3 {
  position: absolute;
  left: 0;
  color: #333;
  top: 0.17rem;
  width: 100%;
  font-size: 0.3rem;
}

.yaoqiu_box .tit h3 span {
  color: #cc0000;
}

.yaoqiu_box .text {
  margin-top: 0.1rem;
  color: #666666;
  font-size: 0.22rem;
  line-height: 0.36rem;
}

.yaoqiu_box .process {
  padding-bottom: 0.1rem;
}

.yaoqiu_box .process li {
  margin-top: 0.25rem;
  float: left;
  width: 2.8rem;
}

.yaoqiu_box .process li:nth-child(2n) {
  float: right;
}

.yaoqiu_box .process li span {
  background: url(../images/process_bg.png) no-repeat center center / cover;
  width: 0.67rem;
  height: 0.78rem;
  display: block;
  float: left;
  text-align: center;
  line-height: 0.78rem;
  color: #7786a6;
  font-size: 0.4rem;
  font-family: arial;
  font-style: italic;
  font-weight: bold;
}

.yaoqiu_box .process li .t {
  width: 1.9rem;
  float: right;
  padding-top: 0.08rem;
}

.yaoqiu_box .process li .t .bt {
  font-size: 0.22rem;
  line-height: 0.32rem;
}

.yaoqiu_box .process li .t p {
  font-size: 0.16rem;
}

.yaoqiu_box .process li:nth-child(3) .t, .yaoqiu_box .process li:nth-child(4) .t, .yaoqiu_box .process li:nth-child(5) .t, .yaoqiu_box .process li:nth-child(6) .t {
  padding-top: 0;
}

.yaoqiu_box .process li:nth-child(3) .bt, .yaoqiu_box .process li:nth-child(4) .bt, .yaoqiu_box .process li:nth-child(5) .bt, .yaoqiu_box .process li:nth-child(6) .bt {
  line-height: 0.78rem;
}

.yaoqiu_box .fee_box {
  padding-bottom: 0.3rem;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.yaoqiu_box .fee_box .title {
  border-bottom: 1px solid #f5f5f5;
}

.yaoqiu_box .fee_box .title h3 {
  color: #333333;
}

.yaoqiu_box .fee_box ul {
  padding: 0 0.25rem;
}

.yaoqiu_box .fee_box ul li {
  margin-top: 0.2rem;
  float: left;
  width: 100%;
  line-height: 0.32rem;
}

.yaoqiu_box .fee_box ul li span {
  float: left;
  width: 1.1rem;
  color: #666666;
}

.yaoqiu_box .fee_box ul li p {
  width: 4.7rem;
  float: right;
  color: #333333;
}

.yaoqiu_box .borderH2 {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.yaoqiu_box .Terms {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
  background: #fbfbfb;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  padding: 0.15rem 0.25rem;
  line-height: 0.36rem;
}

.yzm_btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.85rem;
  display: block;
  line-height: 0;
}

.yzm_btn img {
  height: 0.52rem;
}

.home_box5 ol li.tongyi_btn {
  background: none;
  border: none;
  width: 100%;
}

.home_box5 ol li.tongyi_btn i {
  display: block;
  width: 0.19rem;
  height: 0.19rem;
  background: url(../images/i1.jpg) no-repeat center center / cover;
  float: left;
  margin-top: 0.04rem;
}

.home_box5 ol li.tongyi_btn i.cur {
  background-image: url(../images/i2.jpg);
}

.home_box5 ol li.tongyi_btn p {
  float: left;
  margin-left: 0.1rem;
  font-size: 0.2rem;
  color: #999999;
}

.home_box5 ol li.last_tj input, .home_box5 ol li.last_cz input {
  float: left;
  border: none;
  background: #cc0000;
  color: #fff;
  font-weight: bold;
  font-size: 0.24rem;
}

.home_box5 ol li.last_cz input {
  background: #666666;
}

/**2018-10-30**/

.guo_one span {
  padding: 0 0.25rem;
}

.page {
  text-align: center;
  margin-bottom: 0.2rem;
}

.page em {
  font-style: normal;
}

.navbt_box {
  display: none;
  z-index: 9;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0.25rem;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
}

.navbt_box .top .logo {
  width: 2.06rem;
  display: block;
  float: left;
  line-height: 0;
}

.navbt_box .top .guanbi {
  float: right;
  width: 0.28rem;
  height: 0.25rem;
  margin-top: 0.1rem;
}

.navbt_box .navbt_tab {
  margin-top: 0.3rem;
}

.navbt_box .navbt_tab li {
  float: left;
  width: 1.8rem;
  height: 1.2rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 0.24rem;
  padding-top: 0.7rem;
  margin-right: 0.25rem;
  position: relative;
}

.navbt_box .navbt_tab li:before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.18rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.33rem;
  height: 0.18rem;
}

.navbt_box .navbt_tab li:last-child {
  margin-right: 0;
}

.navbt_box .navbt_tab li.li1 {
  background: url(../images/dh_icon1.jpg) no-repeat center center / cover;
}

.navbt_box .navbt_tab li.li1:before {
  background: url(../images/b_icon1.png) no-repeat center center / cover;
}

.navbt_box .navbt_tab li.li2 {
  background: url(../images/dh_icon2.jpg) no-repeat center center / cover;
}

.navbt_box .navbt_tab li.li2:before {
  background: url(../images/b_icon2.png) no-repeat center center / cover;
}

.navbt_box .navbt_tab li.li3 {
  background: url(../images/dh_icon3.jpg) no-repeat center center / cover;
}

.navbt_box .navbt_tab li.li3:before {
  background: url(../images/b_icon3.png) no-repeat center center / cover;
}

.navbt_box .navbt_tab li.cur:before {
  display: block;
}

.navbt_box .navbt_con {
  margin-top: 0.3rem;
}

.navbt_box .navbt_con ul li {
  float: left;
  width: 1.8rem;
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
  background: #474e5e;
  height: 0.7rem;
  line-height: 0.7rem;
  font-size: 0.24rem;
  text-align: center;
}

.navbt_box .navbt_con ul li:nth-child(3n) {
  margin-right: 0;
}

.navbt_box .navbt_con ul li a {
  display: block;
  color: #fff;
}

/*模拟下拉*/

.ympgb_div {
  float: left;
  width: 100%;
  height: 0.52rem;
  position: relative;
  background: #FFFFFF;
  border-radius: 0.05rem;
}

.ympgb_div .ympgb_nr {
  border-radius: 0.05rem;
  border: 1px solid #e5e5e5;
  width: 100%;
  height: 0.52rem;
  line-height: 0.50rem;
  display: block;
  cursor: pointer;
  /*color: #bfbfbf;*/
  font-size: 0.2rem;
  padding: 0 0.2rem;
}

.ympgb_div .ympgb_nr i {
  display: inline-block;
  float: right;
  width: 2.77%;
}

.ympgb_div .ympgb_xl {
  border-radius: 0.05rem;
  z-index: 999;
  display: none;
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  font-size: 0.2rem;
  border: 1px solid #e5e5e5;
  padding: 10px 15px;
  background: #ffffff;
}

.ympgb_div .ympgb_xl a {
  color: #888;
  display: block;
  line-height: 1.6em;
}

@media (max-width: 480px) {
  .ympgb_div {
    height: 37px;
  }
  .ympgb_div .ympgb_nr {
    height: 37px;
    line-height: 37px;
  }
  .ympgb_div .ympgb_xl {
    top: 37px;
  }
}

@media (max-width: 360px) {
  .ympgb_div {
    height: 28px;
  }
  .ympgb_div .ympgb_nr {
    height: 28px;
    line-height: 28px;
  }
  .ympgb_div .ympgb_xl {
    top: 28px;
  }
}

@media (max-width: 320px) {
  .ympgb_div {
    height: 25px;
  }
  .ympgb_div .ympgb_nr {
    height: 25px;
    line-height: 25px;
  }
  .ympgb_div .ympgb_xl {
    top: 25px;
  }
}

/*在线评估*/

.table_con_pinggu {
  padding: 6% 3.75%;
  background: url(../images/pgb_icon.jpg) no-repeat center top;
  background-size: 100% 100%;
}

.table_con_pinggu .table_bt {
  margin-bottom: 3.5%;
}

.table_con_pinggu ul li {
  float: left;
  width: 100%;
  margin-bottom: 0.25rem;
}

.table_con_pinggu ul li input {
  width: 100%;
  border: 1px solid #90b9ce;
  padding: 0 15px;
  color: #999999;
  font-size: 0.22rem;
  height: 50px;
  float: left;
  border-radius: 3px;
}

.table_con_pinggu ul li .ympgb_div {
  float: left;
  width: 100%;
  height: 50px;
  position: relative;
  background: #FFFFFF;
  border-radius: 3px;
}

.table_con_pinggu ul li .ympgb_div .ympgb_nr {
  border-radius: 3px;
  border: 1px solid #90b9ce;
  width: 100%;
  height: 50px;
  line-height: 48px;
  display: block;
  cursor: pointer;
  color: #bfbfbf;
  font-size: 0.22rem;
  padding: 0 15px;
}

.table_con_pinggu ul li .ympgb_div .ympgb_nr i {
  display: inline-block;
  float: right;
  width: 2.77%;
}

.table_con_pinggu ul li .ympgb_div .ympgb_xl {
  border-radius: 3px;
  z-index: 999;
  display: none;
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  font-size: 0.22rem;
  border: 1px solid #90b9ce;
  padding: 10px 15px;
  background: #ffffff;
}

.table_con_pinggu ul li .ympgb_div .ympgb_xl a {
  color: #bfbfbf;
  display: block;
  line-height: 1.6em;
}

@media (max-width: 480px) {
  .table_con_pinggu ul li .ympgb_div {
    height: 37px;
  }
  .table_con_pinggu ul li .ympgb_div .ympgb_nr {
    height: 37px;
    line-height: 37px;
  }
  .table_con_pinggu ul li .ympgb_div .ympgb_xl {
    top: 37px;
  }
}

@media (max-width: 360px) {
  .table_con_pinggu ul li .ympgb_div {
    height: 28px;
  }
  .table_con_pinggu ul li .ympgb_div .ympgb_nr {
    height: 28px;
    line-height: 28px;
  }
  .table_con_pinggu ul li .ympgb_div .ympgb_xl {
    top: 28px;
  }
}

@media (max-width: 320px) {
  .table_con_pinggu ul li .ympgb_div {
    height: 25px;
  }
  .table_con_pinggu ul li .ympgb_div .ympgb_nr {
    height: 25px;
    line-height: 25px;
  }
  .table_con_pinggu ul li .ympgb_div .ympgb_xl {
    top: 25px;
  }
}

.table_con_pinggu ul li .ip_text {
  width: 175px;
}

.table_con_pinggu ul li .yzm {
  margin-left: 25px;
  display: block;
  float: left;
  width: 17.8%;
}

.table_con_pinggu ul li .in_btn, .table_con_pinggu ul li .in_cz {
  width: 48%;
  margin-top: 0.2rem;
  border: none;
  color: #FFFFFF;
  font-size: 0.3rem;
  border-radius: 3px;
  text-align: center;
  font-family: "microsoft yahei";
}

@media (max-width: 480px) {
  .table_con_pinggu ul li .in_btn, .table_con_pinggu ul li .in_cz {
    height: 45px;
  }
}

@media (max-width: 360px) {
  .table_con_pinggu ul li .in_btn, .table_con_pinggu ul li .in_cz {
    height: 36px;
  }
}

@media (max-width: 320px) {
  .table_con_pinggu ul li .in_btn, .table_con_pinggu ul li .in_cz {
    height: 30px;
  }
}

.table_con_pinggu ul li .in_btn {
  float: left;
  background: #007cc8;
}

.table_con_pinggu ul li .in_cz {
  float: right;
  background: #8c8c8c;
}

@media (max-width: 480px) {
  .table_con_pinggu ul li input {
    height: 37px;
  }
}

@media (max-width: 360px) {
  .table_con_pinggu ul li input {
    height: 28px;
  }
}

@media (max-width: 320px) {
  .table_con_pinggu ul li input {
    height: 25px;
  }
}

/*移民国家*/

.yimin_con .yimin_bt {
  color: #3c3d3f;
  font-size: 0.32rem;
  padding: 3% 3.75% 0;
  background: #f9fafb;
  border-top: 1px solid #dbe6ec;
  border-bottom: 1px solid #dbe6ec;
}

.yimin_con .yimin_bt .bt {
  position: relative;
  bottom: -1px;
  float: left;
  display: table;
  border-bottom: 3px solid #00669b;
  padding-bottom: 2.6%;
  color: #00669b;
}

.yimin_con .yimin_bt span {
  display: inline-block;
  margin-left: 10px;
  font-family: arial;
}

.yimin_con .yimin_div ul li {
  border-bottom: 1px solid #e8ecef;
  padding: 4% 3.75% 2%;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.yimin_con .yimin_div ul li .f-l {
  margin-top: 0.6%;
  width: 100%;
  margin-bottom: 25px;
}

.yimin_con .yimin_div ul li .f-l img {
  width: 100%;
}

.yimin_con .yimin_div ul li .f-r {
  width: 100%;
}

.yimin_con .yimin_div ul li .f-r .bt {
  color: #333333;
  font-size: 0.26rem;
  font-weight: bold;
}

.yimin_con .yimin_div ul li .f-r .text {
  margin-top: 4%;
}

.yimin_con .yimin_div ul li .f-r .text a {
  line-height: 1.2em;
  display: inline-block;
  font-size: 0.28rem;
  color: #62686b;
  margin-right: 6%;
  margin-bottom: 5%;
}

.yimin_con .yimin_div ul li .f-r .text a:hover {
  color: #00669b;
}

.yimin_con .yimin_div ul li:last-child {
  border-bottom: none;
}

.page .mhide {
  display: none;
}

.page a {
  padding: 0.05rem 0.16rem;
  background: #f7f7f7;
  color: #676767;
  line-height: 0.5rem;
}

.page a.cur {
  background: #676767;
  color: #fff;
}

.about_chairman {
  background: url(../images/chairman_bg.jpg) no-repeat center top / cover;
  padding: 0.2rem 0 0.4rem;
  margin-bottom: 0.2rem;
}

.about_chairman .text {
  padding: 0 0.25rem;
  color: #ffffff;
  font-size: 0.18rem;
  line-height: 0.36rem;
}

.about_chairman .text img {
  float: right;
  width: 2.2rem;
  margin-top: 0.1rem;
  margin-left: 0.5rem;
}

.about_adviser {
  background: url(../images/adviser_bg.jpg) no-repeat center top / cover;
  padding: 0.2rem 0 0.4rem;
  margin-bottom: 0.2rem;
}

.about_adviser .text {
  padding: 0 0.25rem;
  color: #ffffff;
  font-size: 0.18rem;
  line-height: 0.36rem;
}

.about_adviser .text span {
  font-size: 0.22rem;
}

.about_adviser .text img {
  float: right;
  width: 2.29rem;
  margin-top: 0.05rem;
  margin-left: 0.5rem;
}

.wytwDiv {
  padding: 0.4rem 0.25rem 0.6rem;
}

.wytwDt {
  color: #333333;
  font-size: 0.24rem;
}

.wytwDiv textarea {
  margin-top: 0.2rem;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  height: 1.05rem;
  width: 100%;
  font-family: "微软雅黑";
  font-size: 0.24rem;
  padding: 0.2rem 0.2rem 0.2rem 0.17rem;
  border-radius: 0;
}

.wytwDiv input.t {
  margin-top: 0.2rem;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  padding: 0 0.2rem;
  height: 0.68rem;
  font-size: 0.24rem;
  width: 100%;
  line-height: 0.68rem;
  border-radius: 0;
}

.wyteBtn {
  margin-top: 0.4rem;
  text-align: center;
}

.wyteBtn input {
  width: 1.82rem;
  height: 0.7rem;
  font-size: 0.28rem;
  margin: 0 0.2rem;
  border: none;
  color: #fff;
  border-radius: 0;
}

.wyteBtn input.in_btn {
  background: #cc0000;
}

.wyteBtn input.in_cz {
  background: #666666;
}

.zyx_div {}

.zyx_div ol li {
  float: left;
  width: 100%;
  margin-bottom: 3%;
}

.zyx_div ol li:last-child {
  margin-bottom: 0;
}

.zyx_div ol li .btn_div {
  width: 100%;
  float: left;
  position: relative;
}

.zyx_div ol li .btn_div .ch {
  border-radius: 3px;
  border: 1px solid #d0d0d0;
  width: 100%;
  display: block;
  color: #999999;
  padding: 2% 36px 2% 15px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.zyx_div ol li .btn_div .ch:before {
  content: "";
  position: absolute;
  right: 3.125%;
  top: 50%;
  margin-top: -7px;
  width: 27px;
  height: 14px;
  background: url(../images/icon2.jpg) no-repeat center center;
  background-size: cover;
  background-size: 100% 100%;
}

@media (max-width: 414px) {
  .zyx_div ol li .btn_div .ch:before {
    width: 19px;
    height: 10px;
    margin-top: -5px;
  }
}

@media (max-width: 320px) {
  .zyx_div ol li .btn_div .ch:before {
    width: 15px;
    height: 8px;
    margin-top: -4px;
  }
}

.zyx_div ol li .btn_div .ch_con {
  display: none;
  z-index: 999;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border: 1px solid #d0d0d0;
  background: #FFFFFF;
  border-radius: 3px;
  padding: 10px 15px;
}

.zyx_div ol li .btn_div .ch_con a {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #999999;
  display: block;
  line-height: 26px;
}

.zyx_div ol li .search_btn {
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  overflow: hidden;
}

.zyx_div ol li .search_btn .in_text {
  float: left;
  border: none;
  background: none;
  padding: 3.4% 15px 0;
  width: 70%;
}

.zyx_div ol li .search_btn .in_btn {
  border: none;
  float: right;
  width: 8.3%;
  padding: 3.4% 0;
  background: url(../images/search_btn.png) no-repeat center center;
  background-size: cover;
  background-size: 100% 100%;
}

.zyx_div ol li .rmss {
  margin-top: 0.5em;
}

.zyx_div ol li .rmss span {
  display: inline-block;
  float: left;
  color: #666666;
  font-size: 2.2rem;
}

.zyx_div ol li .rmss a {
  margin-right: 1.2em;
  display: inline-block;
  float: left;
  font-size: 2.2rem;
  color: #666666;
}

.zyx_div2 {
  position: relative;
  z-index: 7;
}

.zyx_div2 .zyx_tit {
  z-index: 9;
  background: #fafafa;
  padding: 0 3.125%;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  position: relative;
}

.zyx_div2 .zyx_tit ol li {
  float: left;
  width: 25%;
  border-right: 1px solid #e8e8e8;
  text-align: center;
  padding: 2.5% 0;
  cursor: pointer;
}

.zyx_div2 .zyx_tit ol li i {
  width: 16px;
  height: 9px;
  margin-left: 0.5em;
  position: relative;
  display: inline-block;
}

.zyx_div2 .zyx_tit ol li i:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 16px;
  height: 9px;
  background: url(../images/estate_icon1.jpg) no-repeat center center;
  background-size: cover;
  background-size: 100% 100%;
}

@media (max-width: 375px) {
  .zyx_div2 .zyx_tit ol li i {
    width: 12px;
    height: 7px;
  }
  .zyx_div2 .zyx_tit ol li i:before {
    width: 12px;
    height: 7px;
  }
}

@media (max-width: 320px) {
  .zyx_div2 .zyx_tit ol li i {
    width: 10px;
    height: 6px;
  }
  .zyx_div2 .zyx_tit ol li i:before {
    width: 10px;
    height: 6px;
  }
}

.zyx_div2 .zyx_tit ol li:last-child {
  border-right: none;
}

.zyx_div2 .zyx_tit .saixuan {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  border-top: 1px solid #dbdbdb;
  background: #fff;
  width: 100%;
  padding-bottom: 5%;
}

.zyx_div2 .zyx_tit .saixuan a {
  text-align: center;
  color: #666;
  display: block;
  float: left;
  width: 50%;
  padding: 2% 0;
  line-height: 2em;
  border-bottom: 1px dotted #ececec;
  border-right: 1px dotted #ececec;
}

.zyx_div2 .zyx_tit .saixuan a:nth-child(2n-1) {
  border-left: 1px dotted #ececec;
}

.return-top {
  position: fixed;
  z-index: 9999;
  right: 0.25rem;
  bottom: 1.05rem;
  width: 0.6rem;
  /*height: 0.6rem;*/
  background: #cc0000;
  padding: 0.07rem 0.1rem 0.1rem;
}

.return-top img {
  width: 100%;
}
.return-top p{
	text-align: center;
	color: #fff;
	font-size: 0.12rem;
	margin-top: -0.15rem;
}

.hzxx_Title {
  background: #f3f7f9;
  padding: 4% 3.75%;
  line-height: 1.8em;
}

.hzxx_Title span {
  display: inline-block;
  float: left;
  color: #000000;
  font-size: 0.3rem;
  border-right: 1px solid #cdcdcd;
  padding-right: 4%;
}

.hzxx_Title img {
  width: 3.62%;
  float: left;
  margin-left: 4%;
  margin-top: 0.5em;
}

.hzxx_Title em {
  display: inline-block;
  float: left;
  color: #666666;
  font-size: 0.25rem;
  font-style: normal;
  margin-left: 2%;
}

.home_tit {

  border-bottom: 1px solid #c7ccd0;

  padding: 0 3.75%;

  color: #005a88;

  font-size: 0.3rem;

}

.home_tit span {

  float: left;

  display: inline-block;

  padding-bottom: 2.5%;

  border-bottom: 3px solid #00669b;

  position: relative;

  bottom: -1px;

}

.hz_xmys {

  padding: 6% 0 6%;

}

.hz_xmys .hzxmys_con {

  margin: 3% 3.57% 0;

}

.hz_xmys .hzxmys_con .t {

  margin-top: 2%;

  color: #666666;

  font-size: 0.24rem;

  line-height: 1.7em;

}

.hz_xmys .hzxmys_con .bt {

  color: #424242;

  font-size: 0.26rem;

}

.hz_xmys .shipinB {

  background: #f3f7f9;

  border-bottom: 1px solid #dadddf;

}

.hz_xmys .shipinB p {

  padding: 2.5% 0 2.5%;

  text-align: center;

  color: #00669b;

  font-size: 0.24rem;

}

.hz_sqtj {

  padding-bottom: 6%;

}

.hz_sqtj .qz_text {

  margin: 0 3.75%;

}

.hz_sqtj .qz_text .bt {

  margin-top: 3%;

  color: #424242;

  font-size: 0.26rem;

}

.hz_sqtj .qz_text .t {

  margin-top: 1%;

  color: #666666;

  font-size: 0.24rem;

  line-height: 1.7em;

}

.hz_sqtj .text {

  padding: 3% 3.75% 0;

  color: #424242;

  font-size: 0.26rem;

  line-height: 1.7em;

}

.hz_sqtj .text_img {

  margin-top: 4%;

  text-align: center;

}

.header .area{
	color: #333333;
	font-size: 0.16rem;
	position: relative;
	float: left;
	height: 0.19rem;
	line-height: 0.19rem;
	padding-right: 0.18rem;
	margin-top: 0.14rem;
	margin-left: 0.2rem;
}
.header .area:before{
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0.13rem;
	height: 0.08rem;
	background: url(../images/ax_jt.png) no-repeat center center/cover;
}
.header .area i{
	display: inline-block;
	width: 0.17rem;
	height: 0.19rem;
	background: url(../images/dz_bg.png) no-repeat center center/cover;
	vertical-align: top;
	margin-right: 0.05rem;
}
.header .area_box{
	display: none;
	position: absolute;
	left: 0;
	top: 0.93rem;
	width: 100%;
	background: #ffffff;
	z-index: 3;
	padding: 0 0.25rem;
	border-top: 0.02rem solid #01406c;
}
.header .area_box .area_top{
	padding: 0.15rem;
	border-bottom: 1px solid #e5ecf0;
	position: relative;
	padding-left: 0.35rem;
}
.header .area_box .area_top::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0.2rem;
	height: 0.24rem;
	background: url(../images/dz_bg2.jpg) no-repeat center center/cover;
}
.header .area_box .area_top span{
	display: block;
	float: left;
	color: #01406c;
	font-size: 0.18rem;
	margin-right: 0.25rem;
	line-height: 0.35rem;
}
.header .area_box .area_top a{
	display: block;
	float: left;
	color: #fff;
	font-size: 0.18rem;
	padding: 0 0.2rem;
	background: #cc0000;
	height: 0.35rem;
	line-height: 0.35rem;
}
.header .area_box .area_con{
	padding-bottom: 0.3rem;
}
.header .area_box .area_con ul{
	margin-bottom: 0.3rem;
}
.header .area_box .area_con ul li{
	width: 50%;
	float: left;
	position: relative;
	padding-left: 0.25rem;
	margin-top: 0.2rem;
}
.header .area_box .area_con ul li span{
	position: absolute;
	left: 0;
	top: 0;
	color: #666666;
	font-size: 0.2rem;
	width: 0.26rem;
}
.header .area_box .area_con ul li .box{
	float: left;
	width: 100%;
	font-size: 0.2rem;
}
.header .area_box .area_con ul li .box a{
	display: block;
	float: left;
	color: #666666;
	margin-right: 0.2rem;
}
.header .area_box .area_con ul li .box a.cur{
	color: #cc0000;
}
.header .area_box .area_con .btn{
	display: block;
	width: 1.5rem;
	height: 0.52rem;
	background: #01406c;
	margin: 0 auto;
	color: #ffffff;
	font-size: 0.18rem;
	text-align: center;
	line-height: 0.52rem;
}
.guwen_box ol {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
}

.guwen_box ol li {
  float: left;
  margin-bottom: 0.2rem;
  background: #f5f5f5;
  width: 2.85rem;
  box-sizing: border-box !important;
  overflow: hidden !important;
}
