*,
input,
button {
    margin: 0;
    padding: 0;
}

body {
    background-color: #fdfdfd;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: unset;
}

button,
input {
    text-decoration: none;
    border: none;
    background-color: transparent;
}

/*页面头部*/
.page-header {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 80px;
    line-height: 80px;
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .06);
    border-bottom: 2px solid #000000;
}

/*页面内容*/
.page-content {
    padding-top: 80px;
    z-index: 98;
}

.page-content .fixed-width_1200 {
    width: 1200px;
    margin: 0 auto;
}

/*页面底部*/
.page-footer {
    background-color: #111111;
    z-index: 98;
    width: 100%;
    color: #fff;
    font-size: 12px;
    border-top: 4px solid #C10000;
}

.page-footer .footer {
    position: relative;
    padding: 40px 0;
}

.page-footer .footer .footer-left .logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.page-footer .footer .footer-left .footer-text {
    margin-bottom: 20px;
    font-size: 16px;

}


.page-footer .footer .footer-qrcode {
    position: absolute;
    top: 40px;
    right: 0;
    background: #707070;
    padding: 10px;
    padding-bottom: 0;
}

.page-footer .footer .footer-qrcode .title {
    padding: 10px 0;
    text-align: center;
    font-size: 20px;
}

.page-footer .footer .footer-qrcode .qrcode-img {
    width: 200px;
    height: 200px;
}


/*标题*/
.big-title {
    text-align: center;
    font-weight: bold;
    padding: 30px 0;
}

.big-title .en {
    color: #999;
    font-size: 26px;
    opacity: .2;
    text-transform: uppercase;
}

.big-title .line .one {
    background-color: #67BFC6;
    width: 30px;
    height: 2px;
    border: 1px solid #67BFC6;
    margin: 8px 1px;
}

.big-title .line .two {
    background-color: #67BFC6;
    width: 2px;
    height: 2px;
    border: 1px solid #67BFC6;
    margin: 0 1px;
}

.big-title .zh {
    color: #333;
    font-size: 28px;
}

/*空数据*/
.icon-empty {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 18px;
    color: #999;
}

.icon-empty .img {
    width: 327px;
    height: 280px;
}

/*隐藏*/
.hidden {
    display: none;
}

/*banner*/
.banner {
    position: relative;
    width: 100%;
    height: 300px;
    padding: 20px 0;
    background: #000;
    background-size: cover;
    background-blend-mode: multiply;
    color: #fff;
    display: flex;
    align-items: center;
}

.banner .box {
    width: 1200px;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner .box .title {
    font-size: 63px;
    font-weight: bold;
}

.banner .box .tip {
    font-size: 22px;
    margin: 14px 0;
}

/*面包屑导航*/
.breadcrumb {
    background-color: #eee;
    display: flex;
    align-items: center;
    min-height: 36px;
    line-height: 36px;
}

.breadcrumb .content {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.breadcrumb .box {
    display: flex;
    align-items: center;
    width: 968px;
    overflow-x: scroll;
    white-space: nowrap;
}

.breadcrumb .box .item {
    font-size: 14px;
    color: #000;
    min-width: 64px;
}

.breadcrumb .box .item:not(:last-child):after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
    margin-left: 5px;
    margin-right: 10px;
}

.breadcrumb .box .item:last-child {
    color: #67BFC6;
}

.breadcrumb .box .item_custom {
    display: flex;
    align-items: center;
    height: 36px;
    line-height: 36px;
    color: #999;
    font-size: 16px;
    padding: 0 13px;
    cursor: pointer;
}

.breadcrumb .box .active {
    color: #fff;
    background-color: #67BFC6;
}

.breadcrumb .search {
    display: flex;
    justify-content: center;
    align-content: center;
    height: 28px;
    line-height: 28px;
    border: 1px solid #67BFC6;
    margin-left: 12px;
}

.breadcrumb .search .search-input {
    min-width: 192px;
}

.breadcrumb .search .search-input input {
    background-color: #fff;
    padding: 3px 10px;
}

.breadcrumb .search .search-button {
    background-color: #67BFC6;
    height: 28px;
    min-width: 40px;
}

.breadcrumb .search .search-button button {
    color: #fff;
    font-size: 14px;
    line-height: 28px;
    font-weight: bold;
    padding-left: 6px;
    padding-right: 6px;
    cursor: pointer;
}

.breadcrumb .search .search-button:active {
    background-color: #16b2bb;
}

/*页码选择器*/
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*flex*/
/*flex row*/
.f_row-sta {
    display: flex;
    flex-direction: row;
}

.f_row-end-cen {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.f_row-sta-cen {
    display: flex;
    align-items: center;
}

.f_row-sta-end {
    display: flex;
    align-items: flex-end;
}

.f_row-cen {
    display: flex;
    justify-content: center;
}

.f_row-cen-cen {
    display: flex;
    align-items: center;
    justify-content: center;
}

.f_row-bet {
    display: flex;
    justify-content: space-between;
}

.f_row-bet-cen {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f_row-bet-end {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.f_row-end {
    display: flex;
    justify-content: flex-end;
}

.f_row-end-cen {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.f_row-end-end {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

/*flex column*/
.f_col-sta {
    display: flex;
    flex-direction: column;
}

.f_col-sta-cen {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.f_col-sta-end {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


.f_col-cen-cen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.f_col-bet {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.f_col-bet-end {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.f_col-bet-cen {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.f_col-end {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.f_col-end-cen {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}


.f_col-end-end {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.f_wrap {
    flex-wrap: wrap;
}

.flex-1 {
    flex: 1;
}