@CHARSET "UTF-8";
/* 统一flex布局样式 */
.box{
	margin:0 auto;
	width:92%
}
.box_flex{
	margin:0 auto;
	width:92%;
	display:flex;
	flex-flow:row nowrap;
}

.box_flex_between{
	margin:0 auto;
	width:92%;
	display:flex;
	flex-flow:row nowrap;
	justify-content:space-between
}
.box_flex_around{
	margin:0 auto;
	width:92%;
	display:flex;
	flex-flow:row nowrap;
	justify-content:space-around
}
.box_flex_end{
	margin:0 auto;
	width:92%;
	display:flex;
	flex-flow:row nowrap;
	justify-content:flex-end
}
.box_flex_wrap{
	margin:0 auto;
	width:92%;
	display:flex;
	flex-flow:row wrap;
}
.height_center{
  display:flex;
	flex-flow:column nowrap;
	justify-content:center;
}
.box_column_wrap{
	margin:0 auto;
	width:92%;
	display:flex;
	flex-flow:column wrap;
	white-space:nowrap;
}
.cover{
	background:rgba(0,0,0,0.5);
	width:100%;
	height:100%;
	position:fixed;
	top:0;
	left:0;
	z-index:9999999;
}
.overflow_one{
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.overflow_two{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.overflow_three{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.whole{
	width:100%
}
.btn-primary{
	color: #fff !important;
    background-color: #117CD1 !important;
    border-color: #117CD1 !important;
}
input{
	border:none;
}
input:-webkit-autofill {
    background: transparent;
    transition: background-color 50000s ease-in-out 0s;
    -webkit-text-fill-color: unset;
}
.has-error{
	border-color:rgba(224, 32, 32)!important;
}
.borderNone{
	border:none!important;
}
::-webkit-scrollbar {
    height: 0.16rem;
	width:4px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

/*自定义界面风格,只改变布局，不变主题配色*/
.table-bordered {
	border:none;
	margin-bottom:10px
}
.table>thead>tr>th {
    vertical-align: middle!important;
	border:none;
	text-align:center;
	background: rgba(234, 244, 252, 1);
	color: #117CD1;
	font-size:16px;
	font-weight:500;
    border: 1px solid #e6e6e6!important;
}
.table>thead>tr>th label{
    margin:0
}
table thead {
    font-weight: 500;
	color: #11152b;
}
.table-bordered>tbody>tr>td{
	border:none;
	border-bottom: 1px solid #ebeef5;
	text-align:center;
	font-size:12px;
	color:rgba(109, 114, 120, 1)
}
.table>tbody>tr>td{
	padding:6px
}
.table-bordered>tbody>tr>td img{
	cursor:pointer
}
.table-bordered>tbody>tr>td:last-child{
	white-space:nowrap
}
.loginBox .navMenu .unit:first-child{
	margin-left:0.1rem
}
a{
	text-decoration:none!important;
	color:unset!important;
}
a:hover{
	text-decoration:none;
	color: #fff!important;
}
.pagination a:hover{
	color: #fff!important;
}
.layui-layer-btn0{
	color: #fff!important;
}
.layui-layer-btn0:hover{
	color: #fff!important;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
  	opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* 动画效果 */
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
  	 opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInLeft {
  animation:bounceInLeft .8s ease forwards;
  -webkit-animation:bounceInLeft .8s ease forwards; /* Safari 和 Chrome */
}

@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
  	 opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
  	 opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInRight {
  animation:bounceInRight .8s ease forwards;
  -webkit-animation:bounceInRight .8s ease forwards; /* Safari 和 Chrome */
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  animation:fadeInLeft .8s ease forwards;
  -webkit-animation:fadeInLeft .8s ease forwards; /* Safari 和 Chrome */
	/* 初始状态 */
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  animation:fadeInRight .8s ease forwards;
  -webkit-animation:fadeInRight .8s ease forwards; /* Safari 和 Chrome */
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  animation:fadeInUp .8s ease forwards;
  -webkit-animation:fadeInUp .8s ease forwards; /* Safari 和 Chrome */
}
.swiper-flash1,.swiper-flash2{
	overflow:hidden;
}
.swiper-flash1 img,.swiper-flash2 img{
	display:block
}
.swiper-slide{
	width:100%!important
}
/* 自定义分页器样式 */
.swiper-fpagination1 .swiper-pagination-bullet {
   	width: 0.8rem;
	border-radius: 8px;
	height:0.04rem;
	background: #fff;
    opacity: 0.6; 
}

/* 激活的分页器项样式 */
.swiper-fpagination1 .swiper-pagination-bullet-active {
    color: #fff;
    background: #007aff;
	opacity: 1; 
}

/* 自定义分页器样式 */
.swiper-fpagination2 .swiper-pagination-bullet {
   /*  width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color:#000;*/
    opacity: 1; 
    background: #fff;
    /* border-radius: 10px;
    display: inline-block;
    margin: 0 5px; */
}
 
/* 激活的分页器项样式 */
.swiper-fpagination2 .swiper-pagination-bullet-active {
    color: #fff;
    background: rgba(234, 125, 44, 1);
}

.guideBox{
	font-size: 14px;
	color: rgba(0,0,0,0.5);
	padding:0.3rem 0
}
.headAd .headSearch {
    max-width: 600px;
}
.headAd .headSearch .AdCenter {
    width: 55%!important;
}
.dynamicBoxRight .dynamicBoxRightDescTitle {
    font-size: 18px!important;
}
.icon-a-bianzu4,.icon-a-bianzu3{
	font-size:12px!important
}
.full {
	position: fixed;
	top: 50%;
	right: 0;
	z-index: 1001;
}
.full li a {
	display: block;
	width: 52px;
	height: 52px;
	margin-bottom: 1px;
	position: relative;
	background: rgba(0,0,0,0.5);
	z-index: 1;
}
.full li a:hover span, .full li a:hover label {
	background-color: #2982E1 !important;
}
.full li:last-child a {
	border-bottom: 0;
}
.full li a span {
	display: block;
	width: 52px;
	height: 52px;
	position: relative;
	z-index: 100;
	background-position: center center;
	background-repeat: no-repeat;
}
.full li:nth-child(2) a, .full li:nth-child(1) a {
	z-index: 2;
}
.full li a label {
	display: block;
	width: 140px;
	white-space: nowrap;
	padding: 0 20px;
	position: absolute;
	line-height: 52px;
	color: #fff;
	z-index: -1;
	background: #000;
	bottom: 0;
	left: 100%;
	max-width: 300%;
	margin-bottom:0;
	cursor:pointer;
	text-align:center
}
.full li a:hover label {
	left: -140px;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.full li a .lbl_img {
	padding: 10px;
	height: auto;
	line-height: normal;
}
.full li a .lbl_img img{
	width:100%
}
.full li a span.span1 {
	background-image: url(__TMPL__/../../images/full1.png);
}
.full li a span.span2 {
	background-image: url(__TMPL__/../../images/full2.png);
}
.full li a span.span3 {
	background-image: url(__TMPL__/../../images/full3.png);
}
.full li a span.span4 {
	background-image: url(__TMPL__/../../images/full4.png);
}
.el-tooltip{
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
	max-width:400px
}
.alertCover{
	width:100%;
	height:100%;
	position:fixed;
	z-index: 19991015;
    background-color: rgba(0,0,0,0.3);
	display:flex;
	flex-flow:row nowrap;
	justify-content:center;
	align-items:center;
	left:0;
	top:0;
}
.alertCover .alertBox{
	min-width:300px;
	width:20%;
	background:#fff;
	border-radius: 8px;
	padding:0.3rem;
	position:relative;
}
.alertCover .alertBox .alertLogo{
	text-align:center;
}
.alertCover .alertBox .alertLogo .iconfont{
	font-size:48px;
	color:rgb(109,212,0)
}
.alertCover .alertBox .alertLogo .icon-kaipiaozhong{
	color:rgb(250,102,2)
}
.alertCover .alertBox .alertLogo .icon-tianxie,.alertCover .alertBox .alertLogo .icon-zhongyaotishi{
	color: #2982E1;
}
.alertCover .alertBox .alertMsg{
	font-weight: 400;
	font-size: 16px;
	color: rgba(0,0,0,0.85);
	text-align:center;
	margin:0.2rem auto 0.3rem;
}
.alertCover .alertBox .alertOperate{
	font-size: 14px;
	color: #6D7278;
	margin:0.1rem auto;
}
.alertCover .alertBox .alertButton{
	background: #2982E1dd;
	border-radius: 4px;
	color:#fff;
	width:fit-content;
	min-width:88px;
	padding:0.08rem 0.2rem;
	text-align:center;
	cursor:pointer;
}
.alertCover .alertBox .alertQuit{

	border: 1px solid #A6A6A6;
	border-radius: 4px;
	color: #6D7278;
	width:fit-content;
	min-width:88px;
	padding:0.08rem 0.2rem;
	text-align:center;
	cursor:pointer;
}
.alertCover .alertBox .alertButton:hover{
	background: #2982E1;
}
.alertCover .alertBox .alertShut{
	position:absolute;
	right:-24px;
	top:-24px;
	cursor:pointer;
}
.alertCover .alertBox .alertShut .iconfont{
	font-size: 24px;
	color:#fff
}
.pagination{
	margin:0!important
}
.coverBlur{
	filter: blur(5px);
}
.imgShowWin{
    width: 100%;
    height: 100%;
    display: flex;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
	flex-flow:column nowrap;
	justify-content:center
}
.imgShowList{
    width: 100vw;
    display: block;
    overflow: hidden;
}
.imgShowList .swiper-wrapper{
	height:fit-content!important
}
.imgShowWin img{
    display: block;
    margin: 0 auto;
    width: 100%;
}
.imgShowListPagination{
    bottom:20vw !important;
}
.imgShowListPagination .swiper-pagination-bullet{
    background-color: rgba(0, 0, 0, 0.8);
}
.imgShowListPagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: rgba(255, 255, 255, 1);
}