@charset "utf-8";

html,
body {
    font-family: PingFangSC-Regular, PingFang SC;
    color: #333;
    overflow-x: hidden;
    overflow-y: auto;
}
.hide {
    display: none;
}
/*移动端*/
/*rem布局基于375的图，rem与px换算公式：量出的尺寸除以20,100%宽为18.75rem */
.fl {
    float: left;
}

.fr {
    float: right;
}

/*清浮动*/
.clearfix:after {
    display: block;
    content: "";
    clear: both;
}

.clearfix {
    zoom: 1;
}
/* 清浮动的兼容性写法*/
.flex {
    display: flex;
    align-items: center;
}
.flex-grow {
    flex: 1
}
.box-border {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

/*强制一行显示，超出为省略号*/
.txtCut {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.txtcut2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

.br-t:after {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid #e5e5e5;
    color: #e5e5e5;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5);
    z-index: 2;
}

.br-b:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    border-bottom: 1px solid #e5e5e5;
    color: #e5e5e5;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5);
    z-index: 2;
}

.br-r:after {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    border-right: 1px solid #e5e5e5;
    color: #e5e5e5;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleX(.5);
    transform: scaleX(.5);
    z-index: 2;
}

/*背景*/
.bg-black {
    background: #000;
}

.bg-red {
    background: #FA5858;
}

.bg-gray-f5 {
    background: #f5f5f5;
}

.bg-gray-b {
    background: #bbb;
}

.bg-white {
    background-color: #fff;
}

/*文字对齐*/
.txt-c {
    text-align: center;
}

/*文字颜色*/
.col-theme {
    color: #BF0100;
}
.col-gray-b {
    color: #bbb;
}
.col-white {
    color: #fff;
}
.col-black {
    color: black;
}

.col-gray-3 {
    color: #333;
}

.col-gray-6 {
    color: #666;
}

.col-gray-9 {
    color: #999;
}

.col-gray-4a {
    color: #4a4a4a;
}

.col-gray-9b {
    color: #9b9b9b;
}

/*文字大小*/
.f12 {
    font-size: 0.12rem;
    font-weight: 400;
}

.f13 {
    font-size: 0.13rem;
    font-weight: 400;
}

.f14 {
    font-size: 0.14rem;
    font-weight: 400;
}

.f16 {
    font-size: 0.16rem;
    font-weight: 400;
}

.f18 {
    font-size: 0.18rem;
    font-weight: 400;
}

.f20 {
    font-size: 0.2rem;
    font-weight: 400;
}

.f24 {
    font-size: 0.24rem;
    font-weight: 400;
}
.f44 {
    font-size: 20px;
}

.line-through {
    text-decoration: line-through
}

.align-top {
    vertical-align: top;
}
.align-middle {
    vertical-align: middle;
}
.f-regular {
    font-family: PingFangSC-Regular,PingFang SC;
}

/*底部弹出层*/
.actionsheet {
    position: fixed;
    left: 0;
    bottom: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 5000;
    width: 100%;
    background-color: #efeff4;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

.actionsheet-active {
    -webkit-transform: translate(0);
    transform: translate(0);
}

/*向左的箭头   */
.arrowLeft:after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform-origin: center;
}

/* 外边距 */
.m-b-5 {
    margin-bottom: 0.05rem;
}
.m-b-10 {
    margin-bottom: 0.1rem;
}
.m-b-20 {
    margin-bottom: 0.2rem;
}
.m-r-2 {
    margin-right: 0.02rem;
}
.m-r-5 {
    margin-right: 0.05rem;
}
.m-r-10 {
    margin-right: 0.1rem;
}
/* 内边距 */
.p-t-10 {
    padding-top: 0.1rem;
}
.p-tb-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.p-t-20 {
    padding-top: 0.2rem;
}
.p-b-5 {
    padding-bottom: 0.05rem;
}
.p-b-20 {
    padding-bottom: 0.2rem;
}
.p-b-50 {
    padding-bottom: 0.5rem;
}
.p-b-60 {
    padding-bottom: 0.6rem;
}

/*统一header*/
.common-hd {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    background: none;
    z-index: 10;
}
.hd-wrap {
    position: relative;
    justify-content: flex-end;
    height: 100%;
}
.logo {
    position: absolute;
    left: 20px;
    top: 0;
    width: 150px;
    height: 100%;
}
.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.navbar {
    margin: 0 auto;
    width: 666px;
    height: 68px;
    justify-content: space-around;
}
.navbar .item {
    flex-grow: 1;
    text-align: center;
}

.icon-nav {
    padding-top: 5px;
    padding-left: 14px;
    width: 44px;
    height: 24px;
    box-sizing: border-box;
}
.icon-nav i {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 1);
    margin-bottom: 5px;
    display: block;
    border-radius: 2px;
    transition: transform 0.5s;
    -webkit-transition: -webkit-transform 0.5s;
    transform: rotate(0deg) translate(0px, 0px);
    -webkit-transform: rotate(0deg) translate(0px, 0px);
}
.icon-nav i.line2 {
    width: 14px;
}
.icon-nav.active {
    height: 24px;
}
.icon-nav.active .line1 {
    transform: rotate(45deg) translate(5px, 5px);
    -webkit-transform: rotate(45deg) translate(5px, 5px);
}
.icon-nav.active .line2 {
    opacity: 0;
}
.icon-nav.active .line3 {
    transform: rotate(-45deg) translate(5px, -5px);
    -webkit-transform: rotate(-45deg) translate(5px, -5px);
}
/* 下拉菜单 start */
.page_nav {
    padding-left: 20%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 100%;
    background: rgba(0,0,0, 0.6);
    color: #000;
    font-size: 16px;
    box-sizing: border-box;
    transition: left 0.5s;
    -webkit-transition: left 0.5s;
    z-index: 10
}
.page_nav.active {
    left: 0
}
.page_nav .nav-list-wrap {
    padding: 10px;
    width: 100%;
    min-height: 100vh;
    background: #000;
    box-sizing: border-box;
}
.close-page-nav {
    text-align: right;
    color: #fff;
}

/* 公共底部 */
.common-ft {
    padding: 40px 15px 60px;
    width: 100%;
    box-sizing: border-box;
}
.nav-ft-list {
    margin: 0 auto;
    width: 100%;
    max-width: 1160px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    flex-wrap: wrap;
    font-size: 16px;
    border-bottom: 1px solid #333;
    box-sizing: border-box;
}
.nav-ft-list a {
    width: auto;
    padding: 16px 10px;
    color: #ebebeb;
    font-family: Microsoft YaHei;
}
.nav-ft-list .item.active a {
    border-bottom: 1px solid #333;
}

.logo-ft-img {
    height: 63px;
    max-height: 63px;
    background: url(../images/logo.png) no-repeat left center;
    background-size: contain;
}
.other-wrap {
    margin: 0 auto 76px;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}
.other-wrap .item {
    flex: 0 0 33.3333%
}
.other-wrap .item .txt {
    color: #fff;
    font-size: 14px;
    padding: 10px;
}
.copyright {
    text-align: left;
    font-size: 13px;
    color: #999;
}
.copyright2 {
    padding: 12px;
    background: #f3f3f3;
    text-align: center;
    color: #6f6f6f;
    font-size: 15px;
    border-top: 1px solid #ecebeb;
}

.toTop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 42px;
    height: 42px;
    line-height: 38px;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0,0,0,0.12);
    background: #fff;
    cursor: pointer;
}
.toTop .iconfont {
    display: inline-block;
    transform: scale(0.6);
}
.toTop:hover {
    background: #ecf5ff
}
.toTop:hover .iconfont {
    color: #409EFF
}
@media screen and (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
    .show-mobile {
        display: block;
    }
    .common-hd {
        background: #333;
        height: 55px;
        position: fixed;
        left: 0;
        top: 0;
    }
    .page1 .banner {
        padding-top: 55px;
        height: 558px;
        box-sizing: border-box;
    }
    .other-wrap .item {
        flex: 0 0 100%;
    }
    .logo-ft-img {
        margin-bottom: 20px;
    }
    .copyright {
        text-align: center;
    }
}
@media screen and (min-width: 768px) {
    .hide-pc {
        display: none;
    }
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

.close-page-nav {
    cursor: pointer;
    height: 55px;
    text-align: right;
}

.page_nav_list .item {
    color: #fff;
    cursor: pointer;
    height: 66px;
    line-height: 66px;
    text-align: center;
    border-bottom: 1px solid #363636;
}

.page_nav_list .item.active a {
    color: #61e8c8;
}

.zz-message {
	position: fixed;
	top: 20px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	min-width: 380px;
	border-width: 1px;
	border-style: solid;
	border-color: #ebeef5;
	border-radius: 4px;
	overflow: hidden;
	padding: 15px 15px 15px 20px;
	-webkit-transition: opacity 0.3s, -webkit-transform .4s;
	transition: opacity 0.3s, -webkit-transform .4s;
	transition: opacity 0.3s, transform .4s;
	transition: opacity 0.3s, transform .4s, -webkit-transform .4s;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 2020;
	font-size: 14px
}

.zz-message__close {
	position: absolute;
	top: 50%;
	right: 15px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	cursor: pointer;
	color: #c0c4cc;
	font-size: 16px
}

.zz-message__close i {
	font-size: 14px
}

.zz-message__close:hover {
	color: #909399
}

.zz-message--warning {
	background-color: #fdf6ec;
	border-color: #faecd8
}

.zz-message--warning .zz-message__content {
	color: #e6a23c
}

.zz-message--error {
	background-color: #fef0f0;
	border-color: #fde2e2
}

.zz-message--error .zz-message__content {
	color: #F56C6C
}

.zz-message--success {
	background-color: #f0f9eb;
	border-color: #e1f3d8
}

.zz-message--success .zz-message__content {
	color: #67C23A
}

.zz-dialog {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 2000
}

.zz-dialog__wrapper {
	position: absolute;
	min-width: 200px;
	background-color: #fff;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2;
	border-radius: 5px
}

.zz-dialog__wrapper.xs {
	width: 320px
}

.zz-dialog__footer {
	padding: 10px 20px 20px
}

.zz-dialog__header {
	padding: 20px 20px 10px
}

.zz-dialog__body {
	padding: 30px 20px;
	color: #606266;
	font-size: 14px
}

.zz-dialog__mask {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5)
}
/* .zz-dialog__close {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 0;
	background: 0 0;
	border: none;
	outline: 0;
	cursor: pointer;
	font-size: 16px;
	text-align: center
} */