@charset "utf-8";

/*CSS Document*/
/* ==========================================================================================================================
										全局默认样式
========================================================================================================================== */
body {
    font-family:  Arial;
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    color: #292929;
    line-height: 1.6;
	background: #F3F3F3;
}
*,html,div {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

ul,li,dd,dl,dt,ol{
    list-style: none;
    padding: 0px;
    margin: 0px;
}
em,i{
    font-style: normal;
}
hr{
    color: #eee;
    background: #eee;
}
a {
    color: #292929;
    text-decoration: none;
}
a:hover,a:focus,.hov a,.navusb li a:hover {
    color: #01b5ff;
    text-decoration: none !important;
}
li,a,p,span,em.i,div {
    outline: none;
}
h1,h2,h3,h4,h5,h6,p,ul,ol,dl,dt,li,body,form,input,button,img,cite,strong,em,table,td,th {
    padding: 0;
    margin: 0;
}
img {
    vertical-align: middle;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    box-shadow: none;
    -webkit-text-fill-color: #825e4c;
}
input:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}
input {
    outline-color: invert;
    outline-style: none;
    outline-width: 0px;
    border: none;
    border-style: none;
    text-shadow: none;
    -webkit-appearance: none;
    -webkit-user-select: text;
    outline-color: transparent;
    box-shadow: none;
}
select:focus,textarea:focus,input:focus,.form-control:focus,.form-control,button,button:focus,video:focus,
button,input,optgroup,option,select,textarea {
    border: 0;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
}
button,input[type="button"],input[type="reset"],input[type="submit"] {
    cursor: pointer;
    -webkit-transition: all;
    transition: all;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    text-align: center;
    vertical-align: top;
    white-space: nowrap;
    color: #825e4b;
    border: none;
    background-color: #fff;
    background-clip: padding-box;
}
/* ============================================================================================================================
													more-更多按钮
===============================================================================================================================*/
.more_btn{
	overflow: hidden;
	clear: both;
	margin-top: 20px;
	width: 170px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #7D7D7D;
	border-radius: 4px;
	font-size: 16px;
	color: #0E0E0E;
	cursor: pointer;
	float: right;
	transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}
.more_btn:hover{
	background: #00a9ef;
	color: #fff;
	border: 1px solid #00a9ef;
}

/*======================================
全局display:flex排列布局
========================================*/
.dflex {
    display: -webkit-box;
    /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box;
    /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox;
    /* 混合版本语法: IE 10 */
    display: -webkit-flex;
    /* 新版本语法: Chrome 21+ */
    display: flex;
    /* 新版本语法: Opera 12.1, Firefox 22+ */
}

/*从左至右*/
.dflex-lr {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
}

/*从右至左*/
.dflex-rl {
    -webkit-box-pack: end;
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -moz-flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

/*从上至下*/
.dflex-tb {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

/*从下至上*/
.dflex-bt {
    -webkit-box-pack: end;
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

/*主轴居中*/
.dflex-pack-center {
    -webkit-box-pack: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
}

/*主轴居左*/
.dflex-pack-start {
    -webkit-box-pack: start;
    -moz-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

/*主轴居右*/
.dflex-pack-end {
    -webkit-box-pack: end;
    -moz-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

/*主轴左右不留白*/
.dflex-pack-between {
    -webkit-box-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

/*主轴左右留白*/
.dflex-pack-around {
    -moz-justify-content: space-around;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

/*交叉轴居中对齐*/
.dflex-align-center {
    -webkit-box-align: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    align-items: center;
}

/*交叉轴居左对齐*/
.dflex-align-start {
    -webkit-box-align: start;
    -moz-align-items: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

/*交叉轴居右对齐*/
.dflex-align-end {
    -webkit-box-align: end;
    -moz-align-items: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

/**指定子元素居中对齐**/
.self-align-center {
    align-self: center;
    -webkit-align-self: center;
    margin: 0 auto;
}

/**指定子元素顶部对齐**/
.self-align-start {
    align-self: flex-start;
    -webkit-align-self: flex-start;
}

/**指定子元素底部对齐**/
.self-align-end {
    align-self: flex-end;
    -webkit-align-self: flex-end;
}

/**指定子元素拉伸**/
.self-align-stretch {
    align-self: stretch;
    -webkit-align-self: stretch;
}

/*--换行--*/
.wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*--不换行--*/
.nwrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

/*允许子元素伸展（1倍）*/
.flex {
    -moz-flex-grow: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    /*如果值是2 那么当前元素就是其他元素宽的2倍了*/
}

/*允许子元素收缩(1倍)*/
.shrink {
    -moz-flex-shrink: 1;
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
}

/**水平居中*/
.dflex-center-center {
    display: -webkit-box;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    display: -moz-box;
    -moz-box-align: center;
    -moz-box-pack: center;
    text-align: center;
}

/* ============================================================================================================================
													超出省略
===============================================================================================================================*/
.ellipsis-1 {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ellipsis-2 {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.ellipsis-3 {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
}

.ellipsis-4 {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
}

.ellipsis-5 {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 5;
}

.ellipsis-6 {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 6;
}

.ellipsis-7 {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    /* overflow: hidden; */
    /* -webkit-line-clamp: 7; */
}

.ellipsis-8 {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 8;
}
/*============================================================================================================================
	侧栏样式
/*============================================================================================================================*/
.sider_box{
	border-bottom: 4px solid #e4e4e4;
	height: 110px;
}
.sider_box ul{
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 106px;
}
.sider_box ul li{
	padding: 0 25px;
}
.sider_box ul li a{
	font-size: 25px;
	color: #2E2E2E;
	border-bottom: 4px solid transparent;
	position: relative;
	overflow: initial;
}
.sider_box ul li a::after{
	content: '';
	position: absolute;
	background: url(../images/sider-active.png) no-repeat;
	width: 20px;
	height: 20px;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
}
.sider_box ul li a::before{
	content: '';
    position: absolute;
	width: 14px;
	height: 14px;
	background: #fff;
	border: 1px solid #1D4277;
	border-radius: 50%;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
	opacity: 0;
}
.sider_box ul li.active a{
	border-bottom: 4px solid #1D4277;
	font-weight: bold;
}
.sider_box ul li.active a::after,
.sider_box ul li.active a::before{
	opacity: 1;
}
/*============================================================================================================================
动画过渡样式
/*============================================================================================================================*/
.transition {
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

/* ============================================================================================================================
css3动画
===============================================================================================================================*/
@keyframes scalemap {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@-moz-keyframes scalemap {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes scalemap {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@-o-keyframes scalemap {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes bounce-up {
    25% {
        -webkit-transform: translateY(4px);
    }

    50%,
    100% {
        -webkit-transform: translateY(0);
    }

    75% {
        -webkit-transform: translateY(-4px);
    }
}

@keyframes bounce-up {
    25% {
        transform: translateY(4px);
    }

    50%,
    100% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-4px);
    }
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.animate-bounce-up {
    position: absolute;
    top: -20px;
    right: -25px;
    -webkit-animation: bounce-up 1.6s linear infinite;
    animation: bounce-up 1.6s linear infinite;
    display: block;
}

.btn:focus {
    outline: none !important;
}

::-webkit-scrollbar {
    background-color: #f1f1f1;
    display: block;
}

::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
}


@keyframes xia {
    0% {
      transform: translateY(-60%);
    }
    100% {
      transform: translateY(00%);
    }
}





/* ============================================================================================================================
													全局宽度
===============================================================================================================================*/
.container {
    width: 100%;
    max-width: 1400px;
    min-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

/* ==========================================================================================================================
										翻页
========================================================================================================================== */
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  background-color: #01b5ff!important;
  border-color: #01b5ff!important;
  color: #fff;
}
.pagination > li.active span{
	border: 1px solid #ccc;
}
.pagination > li{
	padding-left: 0;
}
.pagination > li > a,
.pagination > li > span {
  color: #333;
  margin-left: -1px;
  font-family: "microsoft yahei";
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  float: none;
  margin: 50px 0 20px;
}
.pagination > li > a.page-num-current{
	 background-color: #01b5ff!important;
	 color: #fff;
}

/* ==========================================================================================================================
										header 头部
========================================================================================================================== */
.header{
	width: 100%;
	z-index: 999;
}
.header .header_box{
	position: relative;
	width: 100%;
	height: 70px;
	background: #262626;
	border-bottom: 2px solid #01b5ff;
}
.header .header_fixed{
	position: fixed;
	width: 100%;
    z-index: 999;
	top: 0;
	left: 0;
}
.header .container{
	display: flex;
	align-items: center;
}
@media (max-width:1350px){
	.header .container{
		padding: 0 15px;
	}
}
/* logo */
.header .header_logo{
	width: 220px;
	height: 70px;
	line-height: 70px;
	overflow: hidden;
}
.header .header_logo img{
	width: 80%;
}
/* nav */
.header .header_nav{
	margin: 0 auto;
}
.header .header_nav .navli{
	float: left;
	padding: 0 30px;
	line-height: 70px;
}
@media (max-width:1250px){
	.header .header_nav .navli{
		padding: 0 20px;
	}
}
.header .header_nav .navli .navlia{
    font-size: 18px;
	color: #fff;
	display: block;
	position: relative;
	transition: all .5s ease-out 0s;
}
.header .header_nav .navli .navlia::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 5px;
	background-color: #01b5ff;
	opacity: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.header .header_nav .navli:hover .navlia::after,
.header .header_nav .navli.on .navlia::after{
	width: 100%;
	opacity: 1;
}
.header .header_nav .navli ol{
	display: none;
	width: 100%;
	background: #fff;
	position: absolute;
	z-index: 9;
	left: 0;
	line-height: initial;
	padding: 35px 0;
}
.header .header_nav .navli ol .container{
	justify-content: center;
    align-items: flex-start;
}
.header .header_nav .navli ol ._item{
	overflow: hidden;
	text-align: center;
	padding: 0 20px;
	width: 20%;
}
.header .header_nav .navli ol ._item dl{
	width: 104px;
	display: block;
	overflow: hidden;
	margin: 0 auto;
}
.header .header_nav .navli ol ._item dl img{
	width: 100%;
	display: block;
}
.header .header_nav .navli ol ._item dt {
	overflow: hidden;
	line-height: 25px;
	margin: 5px 0;
}
.header .header_nav .navli ol ._item dt a{
	font-size: 16px;
	font-weight: bold;
}
.header .header_nav .navli ol ._item dd{
	overflow: hidden;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.header .header_nav .navli ol ._item dd a{
	width: 24%;
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	margin-right: 1%;
} 
.header .header_nav .navli:hover .navlia,
.header .header_nav .navli ol ._item dd a:hover{
	color: #01b5ff;
}


/* Shopping Mall */
.header .header_cart{
	position: relative;
	height: 70px;
	padding: 18px 0;
}
.header .header_cart span{
	width: 135px;
	height: 34px;
	line-height: 34px;
	background: #01b5ff;
	color: #fff;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
}
.header .header_cart span i{
    width: 14px;
    height: 14px;
    display: block;
    margin-left: 5px;
	display: flex;
}
.header .header_cart span i img{
	width: 100%;
	display: block;
}
.header .header_cart ul{
	position: absolute;
    top: 58px;
    right: 0;
    width: 100%;
    overflow: hidden;
    background: #fff;
    z-index: 9;
	display: none;
}
.header .header_cart ul a{
	overflow: hidden;
    line-height: 35px;
    border-bottom: 1px solid #DCDCDC;
	display: block;
	padding: 0 10px;
	font-size: 16px;
	color: #292929;
}

/* video */
.header .header_video{
	margin-left: 25px;
	position: relative;
	height: 70px;
	padding: 18px 0;
}
.header .header_video span{
	width: 95px;
	height: 34px;
	line-height: 34px;
	background: #01b5ff;
	color: #fff;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
}
.header .header_video span i{
    width: 14px;
    height: 14px;
    display: block;
    margin-left: 5px;
	display: flex;
}
.header .header_video span i img{
	width: 100%;
	display: block;
}
.header .header_video ul{
	position: absolute;
    top: 58px;
    right: 0;
    width: 100%;
    overflow: hidden;
    background: #fff;
    z-index: 9;
	display: none;
}
.header .header_video ul a{
	overflow: hidden;
    line-height: 35px;
    border-bottom: 1px solid #DCDCDC;
	display: block;
	padding: 0 10px;
	font-size: 16px;
	color: #292929;
}
/* language */
.header .header_language{
	margin-left: 25px;
	font-size: 18px;
	color: #585858;
	position: relative;
	height: 70px;
	padding: 18px 0;
}
.header .header_language span{
	font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
	color: #fff;
    background: #00a9ef;
    width: 95px;
    height: 34px;
    text-align: center;
    line-height: 34px;
}
.header .header_language span i{
    width: 14px;
    height: 14px;
    display: block;
    margin-left: 5px;
}
.header .header_language span i img{
	width: 100%;
	display: block;
}
.header .header_language ul{
	position: absolute;
    top: 58px;
    right: 0;
    width: 100%;
    overflow: hidden;
    background: #fff;
    z-index: 9;
	display: none;
}
.header .header_language ul li {
	overflow: hidden;
    line-height: 35px;
    text-align: center;
    border-bottom: 1px solid #DCDCDC;
}
.header .header_language ul li:last-child{
	border-bottom: none;
}
.header .header_language ul li a{
    display: block;
    padding: 0 10px;
    font-size: 16px;
    color: #292929;
}

/* ==========================================================================================================================
										footer 底部
========================================================================================================================== */
.footer {
    width: 100%;
	overflow: hidden;
    padding-top: 50px;
	padding-bottom: 30px;
    background: #FFFFFF;
}
.footer .container{
	display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.footer .footer_nav{
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex: 1;
	max-width: 45%;
}
.footer .footer_nav .footer_nav_item{
    margin: 0 20px;
    padding: 0;
    overflow: hidden;
    max-width: 180px;
}
.footer .footer_nav .footer_nav_item:first-child{
	margin-left: 0;
}
.footer .footer_nav .footer_nav_item h2{
	font-size: 16px;
	margin: 0;
	margin-bottom: 5px;
	font-weight: bold;
	color: #1E1E1E;
}
.footer .footer_nav .footer_nav_item li{
	list-style: none;
	margin-bottom: 5px;
}
.footer .footer_nav .footer_nav_item li a{
    font-size: 14px;
    color: #1E1E1E;
	display: block;
}
.footer .footer_link{
	overflow: hidden;
	width: 1px;
	height: 280px;
	background: #B5B5B5;
	margin: 0 5%;
}
.footer .footer_info{
	overflow: hidden;
}
.footer .footer_info h2{
	font-size: 16px;
	margin: 0;
	margin-bottom: 5px;
	font-weight: bold;
	color: #1e1e1e;
}
.footer .footer_info li{
	font-size: 14px;
	color: #1E1E1E;
	display: flex;
	align-items: flex-start;
	margin-bottom: 5px;
}
.footer .footer_code{
	overflow: hidden;
	margin: 15px 0;
}
.footer .footer_code>div{
	display: flex;
	align-items: flex-start;
}
.footer .footer_code span{
	width: 100px;
	display: block;
	overflow: hidden;
	margin-bottom: 5px;
	margin-right: 30px;
        margin-left: -5px;
}
.footer .footer_code span img{
	width: 100%;
	display: block;
}
.footer .footer_code p{
	font-size: 12px;
	color: #1e1e1e;
}
.footer .footer_copyright{
	text-align: center;
	color: #1e1e1e;
	font-size: 12px;
	padding: 45px 0 14px;
}
.footer .footer_icon{
	overflow: hidden;
	background-color: #f3f3f3;
	padding: 15px 0;
}
.footer .footer_icon ._flex{
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer .footer_icon ._item{
	width: 40px;
	overflow: hidden;
	margin: 0 40px;
}
.footer .footer_icon ._item img{
	width: 100%;
	display: block;
}

/* ==========================================================================================================================
								sidebar	侧栏浮动
========================================================================================================================== */
.sidebar_consult{
	position: fixed;
	top: 300px;
	right: 0;
	width: 50px;
    z-index: 10;
    display: none;
}
.sidebar_consult li {
    width: 62px;
    height: 50px;
    z-index: 20;
}
.sidebar_consult li a {
    display: block;
    color: #FFF;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    background-color: #1d2088;
    opacity: 0.85;
    border-radius: 6px;
}
.sidebar_consult li a img {
    display: block;
    float: left;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    margin: 12px 12px 14px 14px;
}
.sidebar_consult li.sidebar_li1,
.sidebar_consult li.sidebar_li4{
	position: absolute;
	left: 0;
}
.sidebar_consult li.sidebar_li1{
    top: 0;
    width: 172px;
}
.sidebar_consult li.sidebar_li2{
    position: absolute;
    top: 51px;
    left: 0;
}
.sidebar_consult li.sidebar_li3{
    position: absolute;
    top: 102px;
    left: 0;
    width: 126px;
}
.sidebar_consult li.sidebar_li4{
    top: 153px;
}
.sidebar_consult .sidebar_code{
    display: none;
    position: absolute;
    top: -120px;
    left: -160px;
    padding-bottom: 9px;
}
.sidebar_consult .sidebar_code img {
    padding: 4px;
    background-color: #FFF;
    width: 155px;
    border: 1px solid rgba(0,0,0,0.1);
}
.sidebar_consult .sidebar_code{
    top: -50px;
}
/* ==========================================================================================================================
										index 首页
========================================================================================================================== */

/* banner 海报 */
.banner_box {
    position: relative;
}
.banner_box,
.banner_box .banner_container,
.banner_box a {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.banner_box .swiper-slide {
    position: relative;
}

.banner_box .swiper-slide a {
    position: relative;
    z-index: 1;
}

.banner_box img {
    width: 100%;
    display: block;
}

.banner_box .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	background: #fff;
}
.banner_box .swiper-pagination-bullet-active{
	background: #01b5ff;
}


.banner_box .banner_prev,
.banner_box .banner_next {
    position: absolute;
    width:40px;
    height:40px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    z-index: 2;
    opacity: 0;
    transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
	cursor: pointer;
}
.banner_box .banner_prev {
    left:0px;
    background: url(../images/b-left.png) no-repeat center;
    background-size: 100%;
}

.banner_box .banner_next {
    right:0px;
    background: url(../images/b-right.png) no-repeat center;
    background-size: 100%;
}
.banner_box:hover .banner_prev {
    left:40px;
}

.banner_box:hover .banner_next {
    right:40px;
}
.banner_box:hover .banner_prev,
.banner_box:hover .banner_next {
    opacity:0.5;
}
.banner_box .banner_prev:hover,
.banner_box .banner_next:hover{
    opacity:1;
}
.banner_box .banner_prev:focus,
.banner_box .banner_next:focus {
    outline: none;
}
/* banner 点击下拉 */
.netbox{
    position: absolute;
    bottom:1%;
    left: 50%;
    width: 60px!important;
    height: auto!important;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 888;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: block;
}
.netbox img {
    width: 23px;
    height: 20px;
    display: block;
    margin:10px auto 0;
    animation: xia 0.5s linear infinite alternate;
    -webkit-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
}
.netbox span {
    color: #fff;
    font-size:12px;
}

/* ny-banner 内页海报 */
.page-banner {
    overflow: hidden;
    width: 100%;
	position: relative;
}
.page-banner img {
    width: 100%;
    display: block;
}
.page-banner-title{
	position: absolute;
	overflow: hidden;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.page-banner-title h2{
	font-size: 36px;
	color: #fff;
	font-weight: normal;
}
.pbanner-pagination{
	bottom: 10px;
    left: 0;
    width: 100%;
    position: absolute;
    z-index: 1;
	text-align: center;
}
.pbanner-pagination .swiper-pagination-bullet{
    width: 30px;
    height: 3px;
	background: #fff;
	border-radius: 0;
}


/* crumb 面包屑 */
.crumb{
    overflow: hidden;
	height: 80px;
}
.crumb .crumb_box{
	overflow: hidden;
	float: left;
	height: 80px;
	line-height: 80px;
}
.crumb .crumb_box ul li{
	float: left;
}
.crumb .crumb_box ul li a{
	color: #878787;
	font-size: 18px;
}
.crumb .crumb_box ul li em{
	width: 14px;
	height: 14px;
	display: inline-block;
}
.crumb .crumb_nav{
	float: right;
	overflow: hidden;
	height: 60px;
	line-height: 60px;
}
.crumb .crumb_nav li{
	float: left;
	margin-left: 30px;
	position: relative;
    transition: all .4s ease;
}
.crumb .crumb_nav li::after{
	content: "";
	width: 0;
	left: 0;
	background: #1D2088;
	height: 2px;
	transition: all .6s ease;
	position: absolute;
	bottom: 1px;
}
.crumb .crumb_nav li a{
	font-size: 16px;
}
.crumb .crumb_nav li.active::after,
.crumb .crumb_nav li:hover::after{
	width: 100%;
}
.crumb .crumb_nav li.active a{
	color: #1D2088;
}

/* ==========================================================================================================================
										lists 列表
========================================================================================================================== */
/* list_pro 产品模型 */
.list_pro{
	overflow: hidden;
	padding: 80px 0;
}
.list_pro .list_pro_main{
	overflow: hidden;
}
.list_pro .list_pro_main .pro_title{
	line-height: initial;
	margin-bottom: 68px;
	border-bottom: 2px solid #01b5ff;
	padding-bottom: 30px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.list_pro .list_pro_main .pro_title h2{
	font-size: 36px;
	font-weight: bold;
	color: #333333;
}
.list_pro .list_pro_main .pro_title ul li{
	float: left;
    margin-left: 30px;
    position: relative;
    transition: all .4s ease;	
}
.list_pro .list_pro_main .pro_title ul li a{
    font-size: 16px;
}
.list_pro .list_pro_main .pro_title ul li.active a{
	color: #00a9ef;
}

.list_pro_main ._list li{
	width: 23.5%;
	position: relative;
	float: left;
	margin-right: 2%;
	margin-bottom: 2%;
	border: 1px solid #D2D2D2;
	padding: 40px 30px;
}
.list_pro_main ._list li:nth-child(4n){
	margin-right: 0;
}
.list_pro_main ._list li dt{
	overflow: hidden;
	position: relative;
	padding-top: 100%;
	width: 100%;
}
.list_pro_main ._list li dt img{
	height:100%;
	width: 100%;
	object-fit: contain;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.list_pro_main ._list li dd{
	overflow: hidden;
	text-align: center;
	margin-top: 10px;
}
.list_pro_main ._list li dd ._title{
	font-size: 22px;
	font-weight: bold;
	color: #333;
	margin-bottom: 40px;
}
.list_pro_main ._list li dd ._btn{
	width: 188px;
	height: 44px;
	line-height: 44px;
	background: #00a9ef;
	text-align: center;
	color: #fff;
	font-size: 18px;
	margin: 0 auto;
}
.list_pro_main ._list li:hover {
	background-color: #f2f2f2;
}

/* list_article 文章模型 */
.list_article{
	overflow: hidden;
	padding: 80px 0 ;
}
.list_article .list_article_main{
	overflow: hidden;
	margin-bottom: -2%;
}
.list_article_main ul li{
	width: 100%;
	overflow: hidden;
	margin-bottom: 74px;
}
.list_article_main ul li a{
	display: flex;
	align-items: flex-start;
}
.list_article_main ul li dt{
    width: 30%;
    position: relative;
    overflow: hidden;
    padding-top: 17.5%;
}
.list_article_main ul li dt img{
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}
.list_article_main ul li dd{
	overflow: hidden;
	flex: 1;
	margin-left: 74px;
}
.list_article_main ul li dd ._title {
	font-size: 26px;
	font-weight: bold;
	color: #1E1E1E;
}
.list_article_main ul li dd ._time{
	font-size: 15px;
	color: #8d8d8d;
    margin: 30px 0 50px;	
}
.list_article_main ul li dd ._btn{
	color: 	#01b5ff;
	font-size: 15px;
	display: flex;
	align-items: center;
}
.list_article_main ul li dd ._btn i{
	margin-left: 10px;
}
.list_article_main ul li dd ._btn i,
.list_article_main ul li dd ._btn i img{
	width: 15px;
	height: 15px;
	display: block;
}
.list_article_main ul li:hover dt img{
	transform: scale(1.05);
}
.list_article_main ul li:hover dd ._title{
	color: #01b5ff;
}

/* list_multi 图文模型 */
.list_multi{
	overflow: hidden;
	padding: 80px 0;
}
.list_multi .list_multi_main{
	overflow: hidden;
}
.list_multi li{
	overflow: hidden;
	width: 100%;
	padding-bottom: 10px;
	margin-bottom: 15px;
	border-bottom: 1px solid #BFBFBF;
}
.list_multi li a{
	display: flex;
	align-items: center;
}
.list_multi li span,
.list_multi li span img{
	width: 27px;
	height: 27px;
	display: block;
}
.list_multi li p{
	font-size: 18px;
	color: #2E2E2E;
	flex: 1;
	margin-left: 10px;
}
.list_multi li em{
	display: block;
	font-size: 18px;
	color: #D38414;
}

/* list_video 产品视频 */
.list_video{
	overflow: hidden;
	padding: 80px 0;
}
.list_video ._main,
.list_video ._list{
	overflow: hidden;
}
.list_video ._main .video_title{
	font-size: 40px;
	color: #333;
	line-height: initial;
	margin-bottom: 40px;
	text-align: center;
}
.list_video ._main ul li{
	width: 32%;
	float: left;
	margin-right: 2%;
	overflow: hidden;
	margin-bottom: 2%;
}
.list_video ._main ul li:nth-child(3n){
	margin-right: 0;
}
.list_video ._main ul li dt{
	width: 100%;
	overflow: hidden;
	position: relative;
	padding-top: 65%;
	background-color: #bebebe;
}
.list_video ._main ul li dt .img{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%,-50%);
}
.list_video ._main ul li dt span{
	width: 88px;
    display: block;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	cursor: pointer;
}
.list_video ._main ul li dd{
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #EEEEEE;
	padding: 18px 12px;
}
.list_video ._main ul li dd h3{
	font-size: 16px;
	font-weight: normal;
	color: #292929;
	flex: 1;
	margin-right: 10px;
}
.list_video ._main ul li:hover dd h3{
	color: #00a9ef;
}
.list_video ._main ul li dd span {
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #333;
	cursor: pointer;
}
.list_video ._main ul li dd span i{
	width: 20px;
	height: 20px;
	display: block;
	overflow: hidden;
	margin-right: 5px;
}
.list_video ._main ul li dd span i img{
	width: 100%;
	display: block;
}


.video_bg {
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: rgba(0,0,0,0.7);
    top: 0px;
    left: 0px;
    z-index: 10;
    display: none;
    z-index: 88888;
}
.video_bg .video-box{
    display: block;
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
	transform: translate(-50%,-50%);
	position: absolute;
}
.video_bg .videob{
    text-align: center;
	width: 100%;
	object-fit: cover;
}
.video_bg .close-img {
    position: fixed;
	right: -30px;
	top: -30px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 99999;
    transition-duration: .3s;
}
.video_bg .close-img img{
	width: 100%;
}

/* list_video 产品视频 */
.list_download{
	overflow: hidden;
	padding-top: 55px;
	padding-bottom: 200px;
}
.list_download ._tab{
	position: relative;
	margin-bottom: 50px;
	overflow: hidden;
}
.list_download ._tab:before{
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #FB7C08;
	bottom: 0;
}
.list_download .download_title{
	font-size: 28px;
	color: #333;
	line-height: initial;
	font-weight: bold;
	padding:0 45px;
}
.list_download .donwnload_tab{
	overflow: hidden;
	display: flex;
	align-items: center;
	background: #D4D4D4;
	height: 56px;
}
.list_download .donwnload_tab li{
	overflow: hidden;
	line-height: 56px;
	width: 240px;
	text-align: center;
}
.list_download .donwnload_tab li.on{
	background: #00a9ef;
}
.list_download .donwnload_tab li a{
	font-size: 22px;
	display: block;
	color: #2E2E2E;
}
.list_download .donwnload_tab li.on a{
	color: #fff;
}
.list_download ._main{
	overflow: hidden;
	width: 100%;
}
.list_download .download_title2{
	overflow: hidden;
	padding-left: 18px;
	font-size: 28px;
	color: #1e1e1e;
	border-bottom: 2px solid #d2d2d2;
	padding-bottom: 20px;
	margin-bottom: 68px;
}
.list_download ._list{
	display: flex;
	overflow: hidden;
	flex-wrap: wrap;
}
.list_download ._list .item1{
	overflow: hidden;
	width: 23.5%;
	margin-right: 2%;
	margin-bottom: 2%;
	border: 1px solid #D2D2D2;
}
.list_download ._list .item1:nth-child(4n){
	margin-right: 0;
}
.list_download ._list .item1 dt,
.list_download ._list .item1 dt img{
	width: 90%;
	display: block;
	margin: 0 auto;
}
.list_download ._list .item1 dd{
	overflow: hidden;
	padding: 10px 20px 25px;
}
.list_download ._list .item1 dd ._title,
.list_download ._list .item1 dd ._model{
	font-size: 15px;
	color: #333;
	text-align: center;
	line-height: 30px;
}
.list_download ._list .item1 dd ._btn{
	width: 188px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	color: #333333;
	margin: 0 auto;
	font-size: 18px;
	margin-top: 15px;
	border-radius: 30px;
	border: 1px solid #FF9600;
}


.list_download ._list .item2{
	overflow: hidden;
	width: 23.5%;
	margin-right: 2%;
	margin-bottom: 2%;
	border: 1px solid #D2D2D2;
	padding:40px;
}
.list_download ._list .item2:nth-child(4n){
	margin-right: 0;
}
.list_download ._list .item2 ._title{
	font-size: 20px;
	color: #333;
	text-align: center;
	height: 55px;
}
.list_download ._list .item2 ._box{
	overflow: hidden;
}
.list_download ._list .item2 ._box span img{
	width: 150px;
	height: 150px;
	display: block;
	margin: 20px auto 30px;
}
.list_download ._list .item2 ._box a{
	display: flex;
	align-items: center;
	width: 100%;
	height: 44px;
	border-radius: 30px;
	border: 1px solid rgba(89,89,89,0.5);
	font-size: 18px;
	color: #393939;
    padding: 0 15px;
	cursor: pointer;
}
.list_download ._list .item2 ._box a i{
    width: 30px;
    height: 30px;
/*    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease; */
	display: block;
	margin-right: 10px;
}


/* 使用手册 */
.list_petrol{
	overflow: hidden;
	padding: 80px 0;
}
.list_petrol .petrol_title{
	overflow: hidden;
	border-bottom: 2px solid rgba(168,168,168,0.3);
	padding-bottom: 20px;
	font-size: 28px;
	color: #333;
	margin-bottom: 50px;
	padding-left: 20px;
}
.list_petrol li{
	overflow: hidden;
	border: 1px solid #d2d2d2;
	float: left;
	padding: 55px 20px 20px;
	text-align: center;
	width: 23.5%;
	margin-right: 2%;
	margin-bottom: 2%;
}
.list_petrol li:nth-child(4n){
	margin-right: 0;
}
.list_petrol li ._title,
.list_petrol li ._sub,
.list_petrol li ._btn{
	font-size: 16px;
	color: #333;
}
.list_petrol li ._img{
	width: 128px;
	overflow: hidden;
	margin: 45px auto 60px;
}
.list_petrol li ._img img{
	width: 100%;
}
.list_petrol li ._sub{
	display: flex;
	align-items: center;
}
.list_petrol li ._sub p{
	flex: 1;
}
.list_petrol li ._sub i{
	width: 20px;
	display: block;
	overflow: hidden;
}
.list_petrol li ._sub i img{
	width: 100%;
}
.list_petrol li ._btn{
	margin-top: 10px;
}

/* ==========================================================================================================================
										detail 详情
========================================================================================================================== */
/* 图文详情 */
.detail_multi{
	overflow: hidden;
	padding: 45px 0;
}
.detail_multi .detail_multi_main{
    overflow: hidden;
    width: 100%;
    float: left;
    margin-right: 2%;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    padding: 30px;
    border-radius: 5px;
}
.detail_multi .detail_multi_main ._title {
    overflow: hidden;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}
.detail_multi .detail_multi_main ._title ._title_top {
    overflow: hidden;
}
.detail_multi .detail_multi_main ._title ._title_top p{
    font-size: 14px;
    color: #2E2E2E;
    float: left;
}
.detail_multi .detail_multi_main ._title h2 {
    font-size: 24px;
    font-weight: normal;
    color: #2E2E2E;
    clear: both;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}
.detail_multi .detail_multi_main ._content {
    overflow: hidden;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    min-height: 300px;
}
.detail_multi .detail_multi_main .return{
    overflow: hidden;
    padding-top: 20px;
    display: flex;
    justify-content: space-around;
}
.detail_multi .detail_multi_main .return a{
    font-size: 16px;
    color: #333;
}

/* 文章详情 */

.detail_article{
	overflow: hidden;
	padding: 20px 0 80px;
}
.detail_article .detail_article_main{
    overflow: hidden;
    width: 100%;
    padding: 30px 50px;
	background-color: #fff;
}
.detail_article .detail_article_main ._box{
	width: 72%;
	margin-right: 2%;
	float: left;
}
.detail_article .detail_article_main ._title {
    overflow: hidden;
    padding-bottom: 20px;
}
.detail_article .detail_article_main ._title ._title_top {
    overflow: hidden;
}
.detail_article .detail_article_main ._title ._title_top p{
    font-size: 14px;
    color: #888;
    float: left;
}
.detail_article .detail_article_main ._title h2 {
    font-size: 28px;
    color: #2E2E2E;
    clear: both;
    text-align: left;
    line-height: 1.5;
}
.detail_article .detail_article_main ._content {
    overflow: hidden;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    min-height: 500px;
}
.detail_article .detail_article_main .return{
    overflow: hidden;
    padding-top: 20px;
    display: flex;
	align-items: flex-end;
    justify-content: space-between;
}
.detail_article .detail_article_main .return a{
    font-size: 16px;
    color: #333;
	display: block;
	margin-bottom: 10px;
}
.detail_article .detail_article_main .return a i{
	color: #999;
}
.detail_article .detail_article_main ._btn{
	width: 120px;
	background-color: #00a9ef;
	color: #fff!important;
	font-size: 16px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 30px;
}
.detail_article .recommend-mian{
    overflow: hidden;
    width: 24%;
    float: right;
    border-radius: 5px;
	background-color: #fff;
	margin-top: 8%;
}
.detail_article .recommend-mian h3{
    line-height: 28px;
    height: 28px;
    color: #333;
    position: relative;
    font-size: 18px;
    letter-spacing: 0;
    padding-left: 20px;
    margin-bottom: 10px;
}
.detail_article .recommend-mian h3:before {
    content: '';
    display: block;
    position: absolute;
    width: 5px;
    height: 20px;
    top: 4px;
    background: #01b5ff;
    left: 0;
}
.detail_article .recommend-mian ul{
    overflow: hidden;
}
.detail_article .recommend-mian ul li {
    padding: 5px 0;
}
.detail_article .recommend-mian ul li a{
	padding-left: 15px;
	position: relative;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
    line-height: 24px;
}
.detail_article .recommend-mian ul li a:before {
    content: '';
    position: absolute;
    left: -2px;
    background: #ccc;
    width: 6px;
    height: 6px;
    top: 9px;
    border-radius: 50%;
}

/* product 产品详情 */
.detail_pro{
	overflow: hidden;
	padding: 80px 0;
	min-height: 600px;
}
.detail_pro .container{
	padding: 0 5%;
}
.detail_pro .detail_thumb{
	overflow: hidden;
	width: 40%;
	margin-right: 120px;
	text-align: center;
}
.detail_pro .detail_thumb li span{
	width: 100%;
	display: block;
	overflow: hidden;
	position: relative;
	padding-top: 70%;
}
.detail_pro .detail_thumb img{
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.detail_pro .detail_info{
	overflow: hidden;
	flex: 1;
}
.detail_pro .detail_info h2{
	font-size: 35px;
	font-weight: bold;
	color: #00a9ef;
}
.detail_pro .detail_info p{
	font-size: 18px;
	color: #555555;
	margin-top: 5px;
	text-align:justify;
	text-justify:inter-ideograph
}
.detail_pro .detail_info ul{
	margin-top: 20px;
}
.detail_pro .detail_info ul li{
	width: 80px;
	height: 80px;
	float: left;
	overflow: hidden;
	background-color: #E4E4E4;
	margin-right: 20px;
	padding: 10px;
	border: 1px solid #e4e4e4;
}
.detail_pro .detail_info ul li img{
	width: 100%;
	display: block;
}
.detail_pro .detail_info ul li.swiper-slide-thumb-active{
	border: 1px solid #00a9ef;
}
.detail_pro .detail_tab{
	overflow: hidden;
	margin-top: 60px;
	border-bottom: 3px solid #00a9ef;
}
.detail_pro .detail_tab ul{
	overflow: hidden;
	background-color: #D4D4D4;
	height: 56px;
}
.detail_pro .detail_tab ul li{
	width: 25%;
	overflow: hidden;
	float: left;
	text-align: center;
	line-height: 56px;
	cursor: pointer;
	color: #2E2E2E;
	font-size: 22px;
}
.detail_pro .detail_tab ul li.on{
	background-color: #00a9ef;
	color: #fff;
}
.detail_pro .detail_desc{
	overflow: hidden;
	min-height: 800px;
	padding-top: 50px;
}
.detail_pro .detail_desc.desc1 li{
	list-style: initial;
}
.detail_pro .detail_desc.desc2{
	min-height: 800px;
	padding-top: 0;
}
.detail_pro .detail_desc.desc2 ul li{
	width: 100%;
	padding: 15px 0;
	border-bottom: 1px solid #BFBFBF;
	font-size: 15px;
	color: #5c5c5c;
}
.detail_pro .detail_desc.desc2 ul li em{
	width: 50%;
	display: block;
}
.detail_pro .detail_desc.desc2 ul li span{
	flex: 1;
}
.detail_pro .detail_desc.desc2 ul li em b,
.detail_pro .detail_desc.desc2 ul li span b{
	font-size: 18px;
	color: #2e2e2e;
}
.detail_pro .detail_desc.desc3 ._video{
	width: 100%;
}
.detail_pro .detail_desc.desc3 #video{
	width: 100%;
}
.detail_pro .detail_desc.desc4 ._down{
	overflow: hidden;
	width: 70%;
	padding-bottom: 10px;
	border-bottom: 1px solid #BFBFBF;
}
.detail_pro .detail_desc.desc4 ._down a{
	display: flex;
	align-items: center;
}
.detail_pro .detail_desc.desc4 ._down span,
.detail_pro .detail_desc.desc4 ._down span img{
	width: 27px;
	height: 27px;
	display: block;
}
.detail_pro .detail_desc.desc4 ._down p{
	font-size: 18px;
	color: #2E2E2E;
	flex: 1;
}
.detail_pro .detail_desc.desc4 ._down em{
	display: block;
	font-size: 18px;
	color: #D38414;
}


/* page 单页详情 */
.detail_page{
	overflow: hidden;
	padding: 80px 0;
}

/* about 关于我们 */
.detail_about{
	overflow: hidden;
	padding: 80px 0;
}
.detail_about ._content{
	overflow: hidden;
}
.detail_about ._content h2{
	font-size: 36px;
	color: #01b5ff;
}
.detail_about ._content p{
	font-size: 24px;
	color: #292929;
	text-indent: 2em;
	line-height: 60px;
}

/* 联系我们 */
.detail_contact{
	overflow: hidden;
	padding: 80px 0;
}
.detail_contact ._content{
	overflow: hidden;
	min-height: 400px;
}

.list_multi,
		.list_article,
		.list_pro {
			padding: 60px 0 30px;
		}

		.more_btn1 {
			margin: 0 auto 30px;
			width: 135px;
			height: 34px;
			line-height: 34px;
			background: #F08C00;
			color: #fff;
			font-size: 16px;
			display: flex;
			align-items: center;
			justify-content: center;
			text-align: center;
			cursor: pointer;
		}

		.pagination li {
			overflow: inherit;
			width: auto;
			padding-bottom: 0;
			margin-bottom: 0;
			border-bottom: none;
		}

		.pagination>li span {
			width: 100%;
			height: 100%;
		}
		.detail_privacy {
			overflow: hidden;
			padding: 80px 0;
			font-size: 16px;
			line-height: 30px;
		}
		
		.detail_privacy h2 {
			font-size: 18px;
			font-weight: bold;
			color: #F08C00;
			border-bottom: 1px solid #FF9500;
			padding-bottom: 20px;
			margin-bottom: 30px;
		}
		
		.detail_privacy h3 {
			font-size: 16px;
			font-weight: 400;
			color: #1E1E1E;
			border-bottom: 1px solid #FF9500;
			padding-bottom: 10px;
			margin-bottom: 20px;
		}