@import url('./normal.css');
@import url('../assets/quill/quill.bubble.css');
@import url('../assets/quill/quill.snow.css');
@import url('../assets/quill/quill.core.css');
:root{
  --themeColor: #3db3b6;
}
.ql-editor {
  white-space: pre-wrap !important;
}
.img-style{
  width: 400px;
}
.ql-editor img {
  width: 400px;
}
@media (max-width: 768px) {
  .ql-editor img {
    width: 350px;
  }
}
/* 公共样式 */

/* 字体颜色 */
.pub-color-white {
  color: #ffffff !important;
}

.pub-color-title {
  color: #00164B;
}

.pub-color-sub-title {
  color: #00133B;
}

.pub-color-blue {
  color: #4996E3;
}

.pub-color-yellow {
  color: #ffe886;
}

.pub-color-black {
  color: #333333;
}

.pub-color-grey {
  color: #f1f1f1;
}

.pub-color-on-grey {
  color: #7e7e7f !important;
}

.pub-color-on-green {
  color: #6cb81d !important;
}

.pub-color-dark-grey {
  color: #1f1f1f;
}

.pub-color-light-grey {
  color: #808080;
}


/* 字重 */
.pub-fw-400 {
  font-weight: 400;
}

.fq-fw-500 {
  font-weight: 500;
}

.pub-fw-bold {
  font-weight: bold;
}

/* 字体大小 */
.pub-font0 {
  font-size: 0;
}

.pub-font6 {
  font-size: 0.12rem;
}

.pub-font7 {
  font-size: 0.14rem;
}

.pub-font8 {
  font-size: 0.16rem;
}

.pub-font9 {
  font-size: 0.18rem;
}

.pub-font10 {
  font-size: 0.2rem;
}

.pub-font11 {
  font-size: 0.22rem;
}

.pub-font12 {
  font-size: 0.24rem;
}

.pub-font13 {
  font-size: 0.26rem;
}

.pub-font14 {
  font-size: 0.28rem;
}

.pub-font15 {
  font-size: 0.3rem;
}

.pub-font16 {
  font-size: 0.32rem;
}

.pub-font17 {
  font-size: 0.34rem;
}

.pub-font18 {
  font-size: 0.36rem;
}

.pub-font19 {
  font-size: 0.38rem;
}

.pub-font20 {
  font-size: 0.4rem;
}

.pub-font24 {
  font-size: 0.48rem;
}

/* 浮动 */
.pub-fl {
  float: left;
}

.pub-fr {
  float: right;
}

/* * 清除浮动 */
.pub-clearfix::after {
  display: table;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
  content: " ";
}

/* flex布局 */
.pub-flex {
  display: flex;
}

.pub-flex-col {
  flex-direction: column;
}

.pub-flex-row {
  flex-direction: row;
}

.pub-flex-align {
  display: flex;
  align-items: center;
}

.pub-flex-justify {
  display: flex;
  justify-content: center;
}

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

.pub-flex-wrap {
  flex-wrap: wrap;
}

.pub-flex-nowrap {
  flex-wrap: nowrap;
}

/* flex布局主轴方向对齐方式 */
.pub-flex-row-center {
  justify-content: center;
}

.pub-flex-row-start {
  justify-content: flex-start;
}

.pub-flex-row-end {
  justify-content: flex-end;
}

.pub-flex-row-between {
  justify-content: space-between;
}

.pub-flex-row-around {
  justify-content: space-around;
}

/* flex布局交叉轴方向对齐方式 */
.pub-flex-col-center {
  align-items: center;
}

.pub-flex-col-top {
  align-items: flex-start;
}

.pub-flex-col-bottom {
  align-items: flex-end;
}

.pub-flex-1 {
  flex: 1;
  -webkit-box-flex: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;
  /* OLD - Firefox 19- */
  width: 20%;
  /* For old syntax, otherwise collapses. */
  -webkit-flex: 1;
  /* Chrome */
  -ms-flex: 1;
  /* IE 10 */
}

.pub-flex-2 {
  flex: 2;
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  width: 20%;
  -webkit-flex: 2;
  -ms-flex: 2;
}

/* 文本对齐方式 */
.pub-text-left {
  text-align: left;
}

.pub-text-center {
  text-align: center;
}

.pub-text-right {
  text-align: right;
}

/* 距离顶部距离 */
.pub-mt4 {
  margin-top: 0.04rem;
}

.pub-mt10 {
  margin-top: 0.1rem;
}

.pub-mt12 {
  margin-top: 0.12rem;
}

.pub-mt16 {
  margin-top: 0.16rem;
}

.pub-mt21 {
  margin-top: 0.21rem;
}

.pub-mt22 {
  margin-top: 0.22rem;
}

.pub-mt24 {
  margin-top: 0.24rem !important;
}

.pub-mt42 {
  margin-top: 0.42rem;
}

.pub-mt46 {
  margin-top: 0.46rem;
}

/* 行数限制，超过则出现省略号 */
.pub-line-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.pub-line-2 {
  -webkit-line-clamp: 2;
}

.pub-line-3 {
  -webkit-line-clamp: 3;
}

.pub-line-4 {
  -webkit-line-clamp: 4;
}

.pub-line-2,
.pub-line-3,
.pub-line-4 {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  /* 弹性伸缩盒 */
  -webkit-box-orient: vertical;
  /* 设置伸缩盒子元素排列方式 */
}

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

.pub-word-break {
  word-break: break-all;
}

/* 其他页面公共样式 */
.pub-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pub-item-all {
  width: 100%;
  height: 100%;
}

.pub-curr-pointer {
  cursor: pointer;
}

/*滚动条样式*/
::-webkit-scrollbar {
  height: 0.07rem;
  width: 0.05rem;
}

::-webkit-scrollbar-thumb {
  border-radius: 0.06rem;
  border-radius: 0.02rem 0 0 0.02rem;
  /* box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2); */
  background-color: #B9B9B9;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-radius: 2px;
  -webkit-box-shadow: inset 1px 1px 0 rgb(0 0 0 / 10%), inset 0 -1px 0 rgb(0 0 0 / 7%);
}

::-webkit-scrollbar-track {
  /* box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); */
  background: transparent;
}

.h-full {
  height: 100%;
}

/* 清除padding */
.pub-padding {
  padding: 0;
}

/* 公共头部 */
.header{
  box-shadow: #cdcdcd 0px 3px 2px;
  position: fixed;
  width: 100%;
  z-index: 9999999;
  background: #fff;
}
.header .logo{
  margin: 12px 0;
}
.header .logo img{
  height: 3.5rem;
}
.header .navbar {
  position: static;
  margin-bottom: 0;
  border: 0;
  display: flex;
  justify-content: flex-end;
  /* width: 80%; */
}

.header .navbar .navbar-header {
  margin-top: 4px;
}

.header .navbar .navbar-header button {
  margin-right: 0;
}

.header .navbar .icon-bar {
  height: 3px;
  background-color: var(--themeColor) !important;
  margin-top: 4px;
}
.header .navbar .icon-bar:first-child {
  margin-top: 0;
}

.header .navbar .nav {
  margin-top: 6px;
  display: flex;
}

.navbar-nav li a {
  font-size: 18px;
  line-height: 3rem;
  text-align: center;
  width: 8.5rem;
  padding-bottom: 0px;
}

.navbar-nav li a:hover{
  color:var(--themeColor) !important;
  font-weight: bold;
  background: #fff !important;
}

.dynamic {
  color: var(--themeColor) !important;
  font-weight: bold;
}

/* 公共的页面导航标题 */
.com-title {
  font-size: 0.8rem;
}

/* 公共的页面左侧标题 */
.pro-center {
  margin-top: 1.875rem;
}

.name {
  padding-left: 2rem;
  width: 16.25rem;
  height: 6.25rem;
  background: var(--themeColor);
  color: #fff;
  line-height: 6.25rem;
  font-size: 1.5rem;
  margin-bottom: 0.625rem;
}

.ul_box{
  width: 16.25rem;
  /* height: 6.25rem; */
  /* padding: 0 0.7rem; */
}

.ul_box li {
  font-size: 1.125rem;
  background: #f3f3f3;
  cursor: pointer;
  padding: 0.7rem 2rem;
  margin-bottom: 0.625rem;
}

/* .ul_box li .select {
  border-left: 2px solid var(--themeColor);
} */
.select{
  border-left: 5px solid var(--themeColor);
  color: var(--themeColor);
}

.ul_box li:hover {
  color: var(--themeColor);
  border-left: 5px solid var(--themeColor);
}

/* 公共的搜索框样式 */
.ipt {
  background: #f7f7f7;
  border-radius: 30px;
  padding-left: 5px;
  float: right;
  width: 16rem;
  height: 2rem;
  margin-top: 1rem;
  position: relative;
}

.ipt input {
  padding-left: 5px;
  width: 14rem;
  height: 2rem;
  border: none;
  float: left;
}

.ipt img {
  position: absolute;
  right: 0.8rem;
  top: 0.4rem;
  /* width: 1.4rem; */
  /* height: 1.4rem; */
}

@media screen and (min-width:768px) {
  .header .navbar .navbar-header {
    display: none;
  }

}

/* 移动端小屏时页面公共样式 */
@media (max-width: 768px) {
  .header .navbar .nav {
    display: block;
  }
  .header .navbar {
    display: block;
  }
   .header .logo{
      line-height: 50px;
    }
  .header .logo img{
    height: 2.5rem;
  }
 .header .navbar-toggle{
      margin-top: 1rem;
    }
  .navbar-nav li:hover {
    color: var(--themeColor) !important;
  }

  .navbar-nav li a:hover {
    color: var(--themeColor) !important;
  }

  .pro-center {
    margin-top: 0;
  }

  .name {
    text-align: center;
    background: #fff;
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
    width: 100%;
    margin-bottom: 0;
    padding-left: 0;
  }

  .pro-center .ul_box {
    padding: 0 0.6rem;
    width:100%;
  }
  .ul_box ul{
    display: flex;
    flex-wrap: wrap
  }

  .ul_box li {
    padding: 0.5rem 1.5rem;
    margin-right: 0.3rem;
    color: #333;
    background: #f3f3f3;
    font-size: 0.9rem;
  }

  .ul_box li:hover {
    background: var(--themeColor) !important;
    color: #fff;
  }

  /* 公共的搜索框样式 */
.ipt {
  float: left;
  width: 100%;
}
.ipt .x-input{
  width: 85%;
}

  /* .ul_box li .select {
    background: var(--themeColor);
  } */
  .select {
    border: none;
    background: var(--themeColor) !important;
    color: #fff !important;
  }
}



.footer {
  margin-top: 5rem;
  background-color: var(--themeColor) !important;
}

.footer .logo {
  margin-right: 60px;
  margin-top: 0.8rem;
}

.footer .title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
}

.footer a {
  display: block;
  color: #fff;
}

/* .footer a:hover {
  text-decoration: none;
  color: #3db3b6;
} */

.footer .social {
  margin-right: 10px;
  padding: 0 2px;
  text-align: right;
  font-size: 0.9rem;
  color: #fff;
}
.footer .webmeta .logo-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .social img {
  max-width: 100%;
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
}
.containerWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 15px 0;
  box-sizing: border-box;
}
.Wrap{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title{
  margin-top: 20px;
  height: 30px;
  position: relative;
}
.title::after{
  position: absolute;
  top: 30px;
  left: 0;
  content: "";
  width: 80px;
  height: 4px;
  background: #fff;
}
.info{
  /* width: 315px; */
  line-height: 25px;
  font-size: 0.875rem;
  color: #fff;
  text-align: left;
  margin-top: 20px;
}
/* .info .txt{
 line-height: 2.5rem;
} */
.link{
  font-size: 1.2rem;
  width: 275px;
  height: 145px;
  line-height: 145px;
  text-align: center;
}
.linkWrap {
  margin: 0 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.linkWrap::before {
  position: absolute;
  content: '';
  width: 0.05rem;
  height: 100%;
  top: 0;
  left: 18px;
  background-color: #fff;
}
.linkWrap::after {
  position: absolute;
  content: '';
  width: 0.05rem;
  height: 100%;
  top: 0;
  right: 18px;
  background-color: #fff;
}
.linkUl{
  margin-top: 10px;
  width: 100%;
  height: 120px;
  display:table;
  text-align: center;
}
.linkUl li{
  width: 50%;
  text-align: center;
}
.linkUl li a{
  line-height: 40px;
  height: 40px;
  font-size: 0.9375rem;
}
.linkUl li:nth-child(odd){
  float: left;
}
.linkUl li:nth-child(even){
  float: right;
}
.footer .bottom {
  background: var(--themeColor) !important;
  font-size: 0.8rem;
  text-align: center;
  color: #fff;
}
.footer .txt{
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.footer .txt .address{
  padding-right:0;
  width: 75%;
}
.footer .txt img{
  width: 14px;
  height: 14px;
  margin-right: 0.5rem;
}
.footer .right{
  margin-top: 10px;
  /* padding: 20px; */
}
.footer .right .pic-box{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}

.footer .social p {
  text-align: right;
  line-height: 1rem;
  font-size: 0.9rem;
  text-indent: 0;
}

.bottom p {
  text-align: center;
  line-height: normal;
}

@media screen and (min-width:768px) {
  .footer .bottom {
    height: 50px;
    line-height: 50px;
  }

  .footer .bottom .xt_a {
    display: inline;
  }

  .footer .inline {
    display: inline;
  }
  .footer .x-tr {
    text-align: center;
  }

}
@media (max-width: 768px) {
  .footer .webmeta {
    text-align: center;
    padding: 1rem 0.5rem;
  }

  .footer .logo {
    margin-left: 15px;
    margin-right: 22px;
  }
  .footer .bottom {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .footer .txt .address{
    padding-right: 1rem;
    width: 86%;
  }
  .footer .bottom .xt_a {
    display: block;
  }

  .footer .inline {
    display: block;
    height:0.4rem;
  }
  .footer .x-tr{
    text-align: left !important;
  }
  .footer .containerWrap {
    padding: 10px 0 10px 0;
  }
  .footer .right .pic-box{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 20px;
  }
  .containerWrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .Wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer .social img{
    /* margin-right: 1px; */
  }
  .footer .social p{
    /* margin-right: 10px; */
  }
  .footer .x-tr img{
    margin-left: 15px;
  }
  .footer .x-tr p{
    /* margin-left: 35px; */
  }
  .footer .title {
    text-align: left;
    font-size: 1rem;
    font-weight: normal;
    border-bottom: none;
  }

  .footer .info {
    /* text-align: center; */
    margin-top: 0;
  }
  div,span,p{
    font-size: 0.8rem;
  }
}
