/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,body{
  margin: 0 0;
  padding: 0;
}
span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: .16rem;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
h1,h2,h3,h4,h5,h6{
  font-weight: normal;
}
@media screen and (min-width: 1200px) {
  body {
      overflow-x:hidden;
  }
}
img{
  vertical-align: middle;
}

a{
  text-decoration: none;
  color: #333;
}
a:hover{
  color: #317EFC !important;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar{
  width: 4px;
  height: 4px;
  background-color: #fff;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background-color: #fff;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb{
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(212, 92, 92, 0.1);
  -webkit-box-shadow: inset 0 0 6px rgba(192, 60, 60, 0.1);
  background-color: #317EFC;
}
/* 分页样式 */
#pagination a{
  font-size: 20px;
  margin: 0 20px;
}
.pagination_active{
  width: 30px;
  padding: 0 8px;
  background-color: #317EFC;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
}


.flex-c{
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex{
  display: flex;
}
.fd{
  flex-direction: column;
}
.danhang{
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.lianghang{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.hidden{
  display: none;
}
.border{
  border: 1px solid red !important;
  box-sizing: border-box;
}
.themeColor {
  color: #317EFC !important;
}
.c666{
  color: #666;
}
.c999{
  color: #999;
}
.fsz36{
  font-size: 0.36rem;
}
.fsz32{
  font-size: 0.32rem;
}
.fsz28{
  font-size: 0.28rem;
}
.fsz20{
  font-size: 0.20rem;
}
.fsz24{
  font-size: .24rem;
}
.fsz22{
  font-size: .22rem;
}
.fsz18{
  font-size: 0.18rem;
}
.fsz16{
  font-size: 0.16rem;
}
.fsz14{
  font-size: 0.14rem;
}
.fsz12{
  font-size: 0.12rem;
}

.fw600{
  font-weight: 500;
}


.mb60{
  margin-bottom: 60px;
}
.mb40{
  margin-bottom: 40px !important;
}
.mb36{
  margin-bottom: 36px;
}
.mb32{
  margin-bottom: 32px;
}
.mb20{
  margin-bottom: 20px;
}
.mb14{
  margin-bottom: 14px;
}
.mb10{
  margin-bottom: 10px;
}
.mt80{
  margin-top:80px;
}
.mt40{
  margin-top:40px;
}



.btn{
  width: 60px;
  height: 24px;
  line-height: 23px;
  font-size: .12rem !important;
  padding: 0 10px;
  font-size: 12px;
  cursor: pointer;
}
.f-btn-c{
  color: #317EFC !important;
  border:1px solid #317EFC !important;
}
.shan {
  position: relative;
  overflow: hidden;
}
.shan:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  background: radial-gradient(circle, #317EFC 20%, transparent 20.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  opacity: 0;
}
.shan:hover:after {
  animation: flase 1.2s ease;
}
@keyframes flase {
  0%{
    transform: scale(0, 0);
    opacity: 0.6;
    transition: 0s;
  }50%{
    opacity: 0.5;
  }100%{
    transform: scale(10, 10);
    opacity: 0;
    transition: transform .3s, opacity .5s;
  }
}




/* 返回顶部 */
.toTopBox{
  position: fixed;
  bottom: 10%;
  right: -60px;
  z-index: 1001;
  font-size: 12px;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0 0 5px #ccc;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  color: #317EFC;
}
.toTopBox:hover{
  box-shadow: 0 0 10px #ccc;
}

/* 版心 */
.pageArea{
  width: 1200px !important;
  margin: 0 auto;
  box-sizing: border-box;
}
.dark_logo{
  width: 0.4rem;
  height: 0.4rem;
}

.swiper{
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}
.swiper-wrapper{
  width:100%;
  height: 100%;
}
.swiper-slide img{
  width: 100%;
  height: 100%;
}
.my-bullet{
  width: 30px;
  height: 2px;
  display: inline-block;
  background-color: #fff;
  margin-right: 20px;
}
.my-bullet-active{
  background: #317EFC;
}
.tY6{
  transform: translateY(0px);
  transition: all 1s ease;
}
.tY6:hover{
  transform: translateY(-8px);
  box-shadow: 0px 2px 20px rgba(49, 126, 252, 0.08);
  transition: all 1s ease;
}
/* 页头 */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.09);
}
header .pageArea {
  position: relative;
  justify-content: space-between;
  padding: 12px 0;
}
header .pageArea .logobox {
  align-items: center;
}
header .pageArea .logobox .websitebox {
  flex-direction: column;
  margin-left: 10px;
}
header .pageArea .logobox .websitebox .website_title {
  font-size: 16px;
  color: #333;
  font-weight: bold;
}
header .pageArea .logobox .websitebox .slogin {
  color: #919CAE;
  margin-top: 7px;
  font-size: 0.12rem;
}
header .pageArea .tabbox .tabs {
  height: 100%;
  align-items: center;
}
header .pageArea .tabbox .tabs li {
  padding: 0 15px;
}
header .pageArea .tabbox .tabs li a {
  font-size: 0.16rem;
  color: #333;
}

/* 页脚 */
.main .ljzxbox {
  width: 100%;
  height: 194px;
  background: url('../assets/index/zsfabg.png') no-repeat;
  background-size: 100% 100%;
  color: #fff;
}
.main .ljzxbox .ljlxbtn {
  width: 160px;
  height: 40px;
  font-size: 16px;
  border: 1px solid #fff;
  cursor: pointer;
}
.main .ljzxbox {
  width: 100%;
  height: 194px;
  background: url('../assets/index/zsfabg.png') no-repeat;
  background-size: 100% 100%;
  color: #fff;
}
.main .ljzxbox .pageArea {
  height: 100%;
  position: relative;
}
.main .ljzxbox .pageArea .smallimg {
  position: absolute;
  left: 100px;
  width: 249px;
  height: 100%;
}
.main .ljzxbox .pageArea .ljlxbtn {
  width: 160px;
  height: 40px;
  font-size: 16px;
  border: 1px solid #fff;
  cursor: pointer;
}
.footer {
  width: 100%;
  background-color: #262B2E;
}
.footer .content {
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.footer .leftbox .logobox {
  align-items: center;
}
.footer .leftbox .logobox .websitebox {
  flex-direction: column;
  margin-left: 10px;
}
.footer .leftbox .logobox .websitebox .website_title {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}
.footer .leftbox .logobox .websitebox .slogin {
  color: #fff;
  margin-top: 7px;
  font-size: 0.12rem;
}
.footer .leftbox .copyright a {
  color: #919CAE;
  font-size: 14px;
}
.footer .leftbox .copyright .flex{
  align-items: center;
  margin-bottom: 6px;
}
.footer .leftbox .copyright .other_jinghui {
  width: 12px;
  height: 12px;
  margin-right: 5px;
}
.footer .leftbox .copyright .ml-6 {
  margin-left: 6px;
}
.footer .leftbox .navbox{
  align-items: center;
}
.footer .leftbox .navbox li {
  line-height: 16px;
  padding: 0 12px;
}
.footer .leftbox .navbox li:first-child {
  padding-left: 0;
}
.footer .leftbox .navbox li:not(:last-child) {
  border-right: 1px solid #919CAE;
}
.footer .leftbox .navbox li a {
  color: #919CAE;
  font-size: 14px;
}
.footer .rightbox img {
  width: 110px ;
  height: 110px;
  /* border: 7px solid #fff; */
}

.main .nowBtnbox {
  position: fixed;
  right: 0;
  top: 46%;
  z-index: 1000;
}
.main .nowBtnbox .modelbox {
  position: absolute;
  right: 57px;
  width: 290px;
  padding: 30px 0;
  background: url('../assets/index/popImg.png') no-repeat;
  background-size: 100%;
  opacity: 0;
}
.main .nowBtnbox .modelbox .imgbox {
  width: 183px;
  height: 183px;
  background: url('../assets/index/biankuang.png');
  
}
.main .nowBtnbox .modelbox .title a{
  font-family:  'Arial';
  
}
.main .nowBtnbox .modelbox .imgbox img {
  width: 170px;
  height: 170px;
}
.main .nowBtnbox .btnl {
  width: 52px;
  padding: 29px 0 37px;
  background: linear-gradient(90deg, #6593F5 0%, #3B75F4 100%);
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
}
.main .nowBtnbox .btnl img {
  width: 32px;
  height: 22px;
}
.main .nowBtnbox .btnl .text {
  writing-mode: vertical-rl;
}



/* 联系弹窗 */
.modelBox2{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11111;
  background: rgba(0, 0, 0,.4);
  width: 100vw;
  height: 100vh;
}
.modelBox2 .nowBtnbox{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  
}
.guanbi{
  position: absolute;
  top: -10%;
  left: 106%;
  cursor: pointer;
}
.modelBox2 .nowBtnbox .modelbox2{
  background-color: #fff;
  padding: 28px;
  border-radius: 11px;
}
.imgbox{
  width: 183px;
  height: 183px;
  background: url('../assets/index/biankuang.png') no-repeat;
  background-size: 100%;
}
.imgbox img{
  width: 170px;
  height: 170px;
}