/* rem和px换算 */
html {
  font-size: 625%;
  /*100 ÷ 16 × 100% = 625%*/
}

body {
  font-size: 16px;
  color: #333;
}

/* 主体宽度 */
.wrapper {
  width: 100%;
}

/* 内容宽度 */
.waper {
  width: 1200px !important;
  margin: 0 auto;
}

/* 主体左右布局 */
.app-main-flex {
  display: flex;
  justify-content: space-between;
}

/* 小手抓 */
.hand {
  cursor: pointer;
}

/* 板块下间距 */
.block_margin_b {
  margin-bottom: 0.3rem;
}

/* 板块右间距  */
.block-margin-r {
  margin-right: 0.16rem;
}

/* border 调试用的 */
.border {
  border: 1px solid blue;
}

/* 内页中公共的搜索区域 */
.searchBox {
  height: 60px;
  background: #f4f4f4 url(../images/search_bg.png) no-repeat center;
  border-top: solid 2px #fff;
}

.search {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search .left {
  width: 110px;
  height: 60px;
  line-height: 60px;
  color: #fff;
  font-size: 18px;
}

.searchBox .right {
  width: 1060px;
}
.searchBox form {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.searchBox dl {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.searchBox dt {
  color: #333;
  font-size: 16px;
  margin-right: 10px;
}

.searchBox dd,
.searchBox dd input {
  color: #666;
  font-size: 14px;
}
.searchBox dd input {
  width: 80px;
  height: 40px;
  line-height: 40px;
  border-radius: 4px;
  padding: 0 10px;
  background: #fff;
}
.searchBox dd input.text2 {
  width: 80px;
}

.searchBox dd input.btn1 {
  width: 90px;
  height: 40px;
  background: #0d6ac8 url(../images/search_btn.png) no-repeat 85% 50%;
  border: 0;
  border-radius: 4px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 0 15px 0 0;
}
.select_box {
  position: relative;
  cursor: pointer;
  background: #fff;
  font-size: 14px;
  margin-right: 10px;
  color: #666;
  height: 40px;
  line-height: 40px;
  border-radius: 4px;
  z-index: 500;
  margin-left: 10px;
}
.select_box span {
  display: inline-block;
  padding: 0 10px;
  cursor: text;
  overflow: hidden;
  z-index: 200;
}
.selet_open {
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 40px;
  background: url(../images/search_icon1.gif) no-repeat center center;
}
.select_txt1 {
  width: 80px;
}
.select_txt2 {
  width: 130px;
}
.option {
  width: 100%;
  border: solid 1px #eaeaea;
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 999;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  background: #fff;
}
.option a {
  display: block;
  height: 35px;
  line-height: 35px;
  text-align: left;
  padding: 0 10px;
  background: #fff;
  color: #666;
}
.option a:hover {
  background: #0d6ac8;
  color: #fff;
}

/* 优化滚动条样式 */
.scrollbar::-webkit-scrollbar-track-piece {
  -webkit-border-radius: 0;
}
.scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 10px;
}
.scrollbar::-webkit-scrollbar-thumb {
  height: 50px;
  background-color: #ccc;
  -webkit-border-radius: 6px;
  outline-offset: -2px;
  filter: alpha(opacity = 50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}
.scrollbar::-webkit-scrollbar-thumb:hover {
  height: 50px;
  background-color: #878987;
  -webkit-border-radius: 6px;
}

/*当前位置 面包屑导航 */
.positionBox {
  width: 100%;
  border-bottom: 1px solid #dddddd;
  border-top: solid 2px #fff;
}

.position {
  height: 50px;
}

.positionBox .position .left {
  width: auto !important;
  height: 50px;
  display: flex;
  justify-content:flex-start;
  align-items: center;
  font-size: 14px;
  color: #999;
}
.positionBox .position .left div{
  margin-left: 10px;
}
.positionBox  .position .left img {
  width: 18px;
  height: 16px;
}

.positionBox .position a {
  font-size: 14px;
  color: #999;
}

/* 侧边栏 */
.navBox .left_nav {
  width: 270px;
  height: 900px;
  background: #fff;
  box-shadow: 0px 3px 21px 0px rgba(0, 0, 0, 0.2);
}

.navBox .left_nav .blue {
  width: 270px;
  height: 110px;
  color: #fff;
  font-size: 24px;
  background: url(../images/blue_bg.png) no-repeat center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.navBox .left_nav .blue .info {
  margin-top: 14px;
  font-size: 18px;
}

.boxLi {
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fistLi {
  text-align: center;
  margin-top: 20px;
}

.fistLi .msg {
  width: 200px;
  height: 45px;
  background: #949494;
  border-radius: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: auto;
}

.fistLi .msg img {
  margin-right: 8px;
}

.childUl {
  margin-top: 25px;
  border-top: 1px solid #dfdfdf;
  padding: 0 10px;
}

.childLi {
  width: 250px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #dfdfdf;
}
.childLi a {
  display: block;
  font-size: 14px;
  color: #666;
}

.ulMore {
  display: block;
  margin: 30px auto;
  font-size: 18px;
  color: #333;
}

/* 切换字体颜色 */
.activer_li a {
  color: #0d6ac8;
}
/* 联系 */
.order1 {
  width: 154px;
  height: 53px;
  margin-left: 23px;
}

.order1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order2 {
  margin-left: 24px;
  margin-top: 37px;
}

.order3 {
  font-size: 28px;
  color: #666;
  text-align: center;
  margin-top: 30px;
}

/* 公共的留言板样式 */
.form_box {
  height: 527px;
  padding-top: 80px;
}

.book {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.book .msg {
  font-size: 24px;
  color: #333;
}

.book .DIV {
  width: 520px;
  border-bottom: 1px solid #dddddd;
}

.leave {
  font-size: 14px;
  color: #999;
  margin-top: 20px;
  text-align: center;
}

.formBox {
  margin: 0 auto;
  margin-top: 50px;
  width: 1035px;
  display: flex;
  justify-content: space-between;
}

.formBox .left {
  width: 500px;
  height: 175px;
  height: 175px;
}

.formBox .left input {
  width: 500px;
  height: 45px;
  border: 1px solid #dddddd;
  border-radius: 2px;
  margin-bottom: 20px;
  padding-left: 20px;
}

.formBox .left .formBox .right {
  width: 500px;
  height: 175px;
  height: 175px;
}

.formBox .right textarea {
  width: 500px;
  height: 175px;
  border: 1px solid #dddddd;
  border-radius: 2px;
  box-sizing: border-box;
  padding: 20px;
  font-size: 14px;
  resize: none;
}

textarea::-webkit-input-placeholder {
  text-align: left;
  font-size: 14px;
  color: #999999;
}

.btnBox {
  width: 1035px;
  margin: 0 auto;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.btnBox .btn {
  width: 120px;
  height: 45px;
  background: #DCDCDC;
  border-radius: 2px;
  margin-right: 35px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btnBox .current_btn {
  background: #0d6ac8;
  color: #fff;
}

/* 公共的分页的样式 */
.pagination {height:32px;margin-top:50px;margin-bottom:50px;text-align:center;font-size:14px;font-weight:bold;}
.pagination ul.pagination {width:100%;margin:0 auto;display:inline-block;}
.pagination ul.pagination li {display:inline-block!important;min-width:20px!important;width:auto !important;height:30px!important;border-radius:4px;padding:0 5px;margin:2px 5px;background-color:#f8f8f8;text-align:center;line-height:30px;font-size:14px;cursor:pointer;color:rgb(17,135,236);text-decoration:none;border:1px solid rgb(17,135,236)!important;}
.pagination ul.pagination li a {color:rgb(17,135,236);display: block !important;}
.pagination ul.pagination li.active {cursor:default;background:#1187ec;color:#fff;}

/*公共的头部  */
.header_box {
  background-color: #fff;
}
.header_box .header_content {
  height: 50px;
  border-bottom: 1px solid #dfdfdf;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.header_box .header_right {
  width: 1200px;
  height: 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 0.14rem;
  margin: auto;
}
.header_box .header_right > div {
  margin: 0 3px;
}

.header_box .header_right img {
  width: 0.18rem;
  height: 0.18rem;
}

.header_box .number {
  font-size: 0.2rem;
  color: #cf0202;
}

/* 导航 */
.header_box .navBox {
  width: 100%;
  height: 0.8rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_box .left_logo {
  height: 0.6rem;
}

.header_box .left_logo img {
  height: 100%;
  object-fit: contain;
}

/* 导航切换 */
.header_box .nav {
  width: 960px;
  display: flex;
  justify-content: space-between;
}

.header_box .nav > li {
  position: relative;
  width: 120px;
  line-height: 80px;
  text-align: center;
}

.header_box .nav > li > a {
  color: #333;
}

.header_box .nav > li:hover a {
  color: #0d6ac8;
}

.header_box .nav > li:hover ul {
  display: block;
}

.header_box .nav > li:hover ul a {
  color: #333;
}

/* 二级标题样式 */
.header_box .nav > li .li-down {
  width: 100%;
  position: absolute;
  top: 80px;
  text-align: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 999;
  display: none;
}

.header_box .nav > li .li-down li {
  height: 38px;
  line-height: 38px;
}

.header_box .nav > li ul li a {
  color: #333;
}

.header_box .nav > li ul li:hover {
  background: #fff;
}

.header_box .nav > li ul li:hover a {
  color: #0d6ac8;
}

/* 公共底部 */
/* 公共底部样式 */
.footer {
  height: 356px;
  background: #000000;
  color: #fff;
  font-size: 16px;
}

.link_border {
  border-bottom: 1px solid #3d3d3d;
}

.footer .content .link {
  height: 50px;
  display: flex;
  align-items: center;
}

.footer .content .link div {
  margin-right: 20px;
}

.footer .content .link div:hover {
  color: #0d6ac8;
}

.sencond_border {
  border-bottom: 1px solid #3d3d3d;
}

.footer .left {
  height: 60px;
}

.footer .left ul {
  display: flex;
  justify-content: space-between;
}

.footer .left ul li {
  margin-top: 22px;
}

.footer .left ul li:hover a {
  color: #0d6ac8;
}

/* 中间内容 */
.thrid_border {
  border-bottom: 1px solid #3d3d3d;
}

.footer .center_footer {
  height: 180px;
  font-size: 14px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.left_center {
  width: 205px;
  height: 106px;
}

.footer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.DIV_center .fist_text {
  font-size: 16px;
}

.DIV_center .connect {
  margin-bottom: 17px;
}

.footer .center_footer .right {
  width: 210px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

/*底部内容 */
.footer .info {
  font-size: 0.14rem;
  color: #fff;
  text-align: center;
}

.footer .info div {
  padding-top: 0.14rem;
  /* padding-bottom: 0.14rem; */
}

/* 点击字体切换 */
.foot_nav {
  color: #0d6ac8 !important;
}

.footer .left li a {
  color: #fff;
}

/* 公共的浮窗样式 */
#clan-slider {
  position: fixed;
  _position: absolute;
  z-index: 9999;
  width: 210px;
  height: 410px;
  /* bottom: 30%;
  right: 0;
  width: 210px; */
}

/* 默认样式 */
.defult {
  position: fixed;
  _position: absolute;
  top: 30%;
  right: 0;
  width: 210px;
  height: 410px;
  background: rgba(13, 106, 200, 1);
  border-radius: 8px 0px 0px 8px;
  color: #fff;
}

.defult .fist {
  width: 210px;
  height: 53px;
  background: #0a4f95;
  border-radius: 8px 0px 0px 0px;
  color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.defult .qqBox {
  width: 160px;
  height: 112px;
  margin: 0 auto;
  border-bottom: 1px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.blow {
  width: 160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blow_1 {
  width: 125px;
  height: 125px;
  margin-top: 20px;
}

.blow_1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blow_2 {
  width: 125px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.blow_3 {
  margin-top: 18px;
  font-size: 22px;
}

/* 收缩样式 */
.shrink {
  position: fixed;
  _position: absolute;
  top: 30%;
  right: 0;
  width: 90px;
  height: 200px;
  color: #fff;
  background: #0d6ac8;
  border-radius: 8px 0px 0px 8px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
}

.shrink .icon {
  margin-top: 18px;
}

.shrink .icon img{
	object-fit: contain;
}

.shrink .bar_text {
  width: 24px;
  height: 104px;
  font-size: 24px;
  line-height: 30px;
  margin-top: 11px;
}

/* 返回顶部按钮 */
.back_top {
  width: 90px;
  height: 80px;
  background: #0d6ac8;
  border-radius: 4px;
  position: fixed;
  _position: absolute;
  bottom: 10%;
  right: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
}

/*成功&&失败提示层*/
.tipBox-hide {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.tipBox {
  position: fixed;
  top: 0.5rem;
  right: 0.55rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.2rem;
  z-index: 999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-animation: all 0.3s;
  -moz-animation: all 0.3s;
  animation: all 0.3s;
  width: 6rem;
  margin: 0 auto;
  left: 0.55rem;
}

.tipBox p {
  font-size: 0.24rem;
  color: #fff;
  text-align: center;
}
