* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    -webkit-touch-callout: none; /*系统默认菜单被禁用*/
    -webkit-user-select: none; /*webkit浏览器*/
    -khtml-user-select: none; /*早期浏览器*/
    -moz-user-select: none; /*火狐*/
    -ms-user-select: none; /*IE10*/
    user-select: none; /*标准*/
}

ul, ol, dl, table, th, tr, td, input, textarea, li, a, div, span, em, i, p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    border: 0;
}

img {
    margin: 0;
    padding: 0;
    border: 0;
}

li {
    list-style: none;
}

/*全局样式*/
html, body {
    width: 100%;
    margin: 0 auto;
}

/*= 清除浮动=*/
.clear {
    clear: both;
    height: 0px;
    line-height: 0px;
    font-size: 0px;
    overflow: hidden;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden;
    font-size: 0px;
}

:focus {
    outline: 0
}

a, button, input[type="button"], input[type="submit"], input[type="reset"] {
    cursor: pointer
}

/* Hides from IE-mac \*/
* html .clearfix {
    height: 0%;
}

/* End hide from IE-mac */
* + html .clearfix {
    min-height: 0%;
}

/* 针对IE7 */
* + html .clearfix {
    min-height: 0%;
}

.w100 {
    width: 100%;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

/*原文件配置*/
body {
    color: #333;
    background: #f8f8f8;
    font: 14px 'Microsoft YaHei', arial, sans-serif;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #000;
}

/*块级转化*/
.di_in {
    display: inline-block;
}

.di_no {
    display: none;
}

.di_bl {
    display: block;
}

/*原文件配置  end*/

/*纵向居中*/
.v_middle {
    vertical-align: middle;
}

/*横向居中*/
.te_c {
    text-align: center !important;
}

.te_l {
    text-align: left !important;
}

.te_r {
    text-align: right !important;
}

/* 文本颜色 */
.green {
    color: #14B185 !important;
}

.red {
    color: #E1322D !important;
}

.blue {
    color: #006BE9 !important;
}

/*相对定位*/
.p_r {
    position: relative;
}

/* 白色背景 */
.bgfff {
    background: #fff;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-v {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-align-start {
    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}

.flex-align-end {
    -webkit-box-align: flex-end;
    -webkit-align-items: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
}

.flex-pack-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-pack-end {
    -webkit-box-pack: flex-end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: flex-end;
    justify-content: flex-end;
}

.flex-pack-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-no-shrink {
    flex-shrink: 0;
}

.flex-warp {
    flex-flow: wrap
}

.flex-column {
    flex-flow: column
}

.transition {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.img_hover {
    transition: all .3s;
}

.img_hover:hover {
    transform: scale(1.05, 1.05);
}

body {
    background: #FAFAFA;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.word-break-all {
    word-break: break-all;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

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

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

.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.container::after {
    display: none;
}

.container::before {
    display: none;
}

.shadow {
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1);
}

/* 公共头部 */
.header {
    box-shadow: 0px 2px 6px 1px rgba(104, 104, 104, 0.1);
}

.header .container {
    height: 84px;
}

.header .nav {
    flex: 1;
    justify-content: flex-end;
    padding-right: 40px;
}

.header .nav li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0 15px;
}

.hometmp.header .nav li {
    display: unset;
    align-items: center;
    justify-content: center;
    width: 80%;
}

.header .nav li a {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    line-height: 24px;
}

.header .nav .on a {
    color: #0279ff;
}

.header .nav .icon {
    width: 8px;
    height: 5px;
    margin-left: 4px;
}

.header .search {
    position: relative;
    width: 307px;
    height: 36px;
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
}

.header .search .ipt {
    width: 100%;
    height: 100%;
    padding-left: 10px;
    padding-right: 30px;
    padding-top: 10px;
}

.header .search .icon {
    position: absolute;
    width: 12px;
    height: 12px;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
}

.header .btn-login {
    display: inline-block;
    width: 89px;
    line-height: 36px;
    text-align: center;
    background: #0279ff;
    font-size: 14px;
    color: #FFFFFF;
    margin-left: 16px;
}

/* 公共底部 */
.footer {
    background: #000000;
    height: 145px;
    margin-top: 26px;
}

.footer .txt {
    text-align: center;
    margin: 0 auto;
}

.footer .txt p {
    font-size: 14px;
    font-weight: 400;
    color: #828282;
    line-height: 28px;
    margin: 0;
}

.footer .txt a {
    font-size: 14px;
    font-weight: 400;
    color: #828282;
    line-height: 28px;
    margin: 0;
}

.container .cont-right {
    width: 345px;
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1);
}

.container .cont-left {
    width: 837px;
    /* box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1); */
}

/* 快讯 */
.news-flash,
.news-notice,
.hot-concept {
    background: #fff;
    padding: 0 20px 20px 20px;
}

.news-flash .head {
    border-bottom: 1px solid #EAEAEA;
    line-height: 50px;
}

.news-flash .head .title {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
}

.news-flash .head .date {
    font-size: 13px;
    font-weight: 400;
    color: #B4B4B4;
}

.news-flash .list {
    padding: 10px 0;
}

.news-flash .list .date {
    font-size: 12px;
    color: #B4B4B4;
    line-height: 32px;
}

.news-flash .list .title {
    font-size: 14px;
    color: #333333;
    line-height: 23px;
}

.news-flash .list .li {
    position: relative;
    padding-left: 32px;
    padding-bottom: 14px;
}

.news-flash .list .li::before {
    display: block;
    position: absolute;
    left: 0;
    top: 12px;
    content: '';
    width: 12px;
    height: 12px;
    box-sizing: border-box;
    border: 3px solid #E5E5E5;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
}

.news-flash .list .li::after {
    display: block;
    position: absolute;
    left: 5px;
    top: 12px;
    content: '';
    width: 1px;
    height: 100%;
    box-sizing: border-box;
    border: 1px dashed #DEDEDE;
    /* border-radius: 50%; */
}

.news-flash .list .li:first-of-type .title {
    color: #0279ff;
}

.news-flash .list .li:first-of-type::before {
    border-color: #0279ff;
}

.news-flash .list .li:last-of-type::after {
    display: none;
}

.news-flash .btn-more,
.news-notice .btn-more,
.hot-concept .btn-more {
    display: flex;
    justify-content: center;
    width: 158px;
    border-radius: 2px 2px 2px 2px;
    border: 1px solid #0279ff;
    font-size: 14px;
    font-weight: 400;
    color: #0279ff;
    line-height: 36px;
    text-align: center;
    margin: 0 auto;
}

/* 资讯-公告 */
.news-notice .tabs {
    border-bottom: 1px solid #EAEAEA;
}

.news-notice .tabs .li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    line-height: 30px;
    padding: 10px 0;
    margin-right: 30px;
    cursor: pointer;
}

.news-notice .tabs .li.on {
    color: #0279ff;
}

.news-notice .tabs .li.on::after {
    display: block;
    position: absolute;
    bottom: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #0279ff;
}

.news-notice .list {
    display: none;
}

.news-notice .list.on {
    display: block;
}

.news-notice .list .li {
    display: flex;
    padding-top: 25px;
}

.news-notice a {
    display: flex;
}

.news-notice .list .li .title {
    font-size: 14px;
    color: #333333;
    line-height: 22px;
}

.news-notice .list .li .date {
    font-size: 12px;
    color: #B4B4B4;
    line-height: 22px;
}

.news-notice .list .img {
    width: 94px;
    height: 66px;
    flex-shrink: 0;
    margin-left: 8px;
}

.news-notice .btn-more {
    margin-top: 30px;
}

/* 热门概念 */
.hot-concept .head .title {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    line-height: 30px;
    border-bottom: 1px solid #E6E6E6;
    padding: 10px 0;
}

.hot-concept .tabs {
    padding: 10px 0 4px 0;
}

.hot-concept .tabs .li {
    font-size: 14px;
    font-weight: normal;
    color: #333333;
    line-height: 32px;
    cursor: pointer;
}

.hot-concept .tabs .li.on {
    color: #0279ff;
}

.hot-concept .table {
    display: none;
    margin-bottom: 0;
}

.hot-concept .table.on {
    display: block;
}

.hot-concept .table .icon {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}

.hot-concept .table .th {
    background: #F5F5F5;
    font-size: 14px;
    color: #B4B4B4;
    line-height: 40px;
}

.hot-concept .table .td td {
    font-size: 14px;
    color: #333333;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #f5f5f5;
}

.hot-concept .check-more {
    padding-top: 30px;
    padding-bottom: 10px;
}

/* 面包屑导航 */
.breadcrumb {
    padding: 20px 0;
    border-bottom: 1px solid #EAEAEA;
    background: #fff;
}

.breadcrumb .txt {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 30px;
}

.breadcrumb .txt:last-child {
    color: #0279ff;
}

/* 友情链接 */
.link-box {
    padding-left: 20px;
}

.link-box .title {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    line-height: 38px;
    padding: 9px 0;
    border-bottom: 1px solid #EAEAEA;
}

.link-box .list {
    padding: 15px 0;
}

.link-box .list .li {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 38px;
    padding-right: 20px;
    cursor: pointer;
}

.check-more {
    display: flex;
}

.check-more .btn-more {
    display: flex;
    justify-content: center;
    width: 158px;
    border-radius: 2px 2px 2px 2px;
    border: 1px solid #0279ff;
    font-size: 14px;
    font-weight: 400;
    color: #0279ff;
    line-height: 36px;
    text-align: center;
    margin: 0 auto;
}

/* 文章列表 */
.article-box .tabs {
    border-bottom: 1px solid #EAEAEA;
}

.article-box .tabs .li {
    position: relative;
    padding: 12px 0;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    line-height: 30px;
    margin-right: 48px;
    cursor: pointer;
}

.article-box .tabs .on {
    color: #0279ff;
}

.article-box .tabs .on::after {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    bottom: 0;
    background: #0279ff;
}

.article-box .tabs .li:last-of-type {
    margin-right: 0;
}

.article-box .list {
    display: none;
}

.article-box .list.on {
    display: block;
}

.article-box .list .li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #EAEAEA;
    padding: 22px 0;
}

.article-box .list .img {
    width: 206px;
    height: 146px;
    flex-shrink: 0;
    margin-right: 20px;
}

.article-box .list .title {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    line-height: 30px;
    width: 571px;
    display: inline-block;
}

.article-box .list .intro {
    font-size: 14px;
    color: #333333;
    line-height: 24px;
    margin: 10px 0;
}

.article-box .list .txt {
    font-size: 12px;
    color: #B4B4B4;
    line-height: 32px;
}

.article-box .list .txt .date {
    position: relative;
    padding-left: 20px;
}

.article-box .list .txt .date::before {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: '';
    width: 4px;
    height: 4px;
    background: #D6D6D6;
}

.article-box .list .icon {
    width: 16px;
    height: 10px;
}

.article-box .btn-more {
    display: flex;
    justify-content: center;
    width: 158px;
    border-radius: 2px 2px 2px 2px;
    border: 1px solid #0279ff;
    font-size: 14px;
    font-weight: 400;
    color: #0279ff;
    line-height: 36px;
    text-align: center;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 30px;
}

/* 产品列表 */
.product-box .table {

}

.product-box .table .icon-like {
    width: 16px;
    height: 14px;
    flex-shrink: 0;
}

.product-box .table .icon-coin {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.product-box .table .icon-arrow {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.product-box .table .chart {
    width: 70px;
    height: 30px;
    margin: 0 auto;
}

.product-box .table .th {
    background: #F5F5F5;
}

.product-box .table .th th {
    font-size: 14px;
    font-weight: normal;
    color: #B4B4B4;
    line-height: 32px;
    line-height: 36px;
    background: #F5F5F5;
    text-align: center;
}

.product-box .table .td td {
    font-size: 14px;
    font-weight: normal;
    color: #333333;
    line-height: 20px;
    text-align: center;
    border-bottom: 1px solid #f4f4f4;
    padding: 20px 0;
}

.product-box .table .td .name {
    line-height: 1;
    padding-left: 6px;
    text-align: left;
}

.product-box .table .td .name .en {
    width: 110px;
}

.product-box .table .td .name .cn {
    font-size: 12px;
    color: #B4B4B4;
    padding-top: 4px;
    width: 110px;
}

.exchange.product-box .table .td .name .cn {
    width: 110px;
}

/* 首页 */
.page-index .article-box {
    padding: 20px;
    margin-bottom: 17px;
}

.page-index .banner-article {
    width: 100%;
    height: 234px;
}

.page-index .banner-article {
    width: 100%;
    height: 234px;
}

.page-index .banner-article .myswiper {
    flex-shrink: 0;
    width: 444px;
    height: 100%;
}

.page-index .banner-article .swiper-button-next,
.page-index .banner-article .swiper-button-prev {
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.3);
}

.page-index .banner-article .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
}

.page-index .banner-article .swiper-pagination-bullet-active {
    background: #0279ff;
}

.page-index .banner-article .swiper-button-next {
    right: 0;
}

.page-index .banner-article .swiper-button-prev {
    left: 0;
}

.page-index .banner-article .swiper-button-next::after,
.page-index .banner-article .swiper-button-prev::after {
    font-size: 10px;
    color: #fff;
    font-weight: bold;
}

.page-index .banner-article .info {
    flex: 1;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, .2);
    padding: 10px 24px;
}

.page-index .banner-article .info .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    -webkit-filter: blur(20px);
    filter: blur(20px);
    transform: scale(1.5);
    z-index: -1;
}

.page-index .banner-article .info .title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    line-height: 36px;
    padding-bottom: 10px;
}

.page-index .banner-article .info .intro {
    font-size: 14px;
    color: hsla(0, 0%, 100%, .6);
    line-height: 24px;
}

.page-index .banner-article .info .date {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #fff;
    line-height: 32px;
}

.page-index .banner-article .info .icon {
    width: 14px;
    height: 14px;
    margin-right: 8px;
}

.page-index .article-box .tabs {
    padding-top: 12px;
    border-bottom: 1px solid #EAEAEA;
}

/* 新闻列表 */
.news-list .article-box {
    padding: 0 20px;
}

.news-list .article-box .btn-more {
    margin-bottom: 60px;
    margin-top: 56px;
}

/* 新闻详情 */
.news-detail .cont-left {
    padding: 0 20px;
}

.news-detail .info-top {
    font-size: 14px;
    color: #B4B4B4;
    line-height: 32px;
    padding-top: 22px;
}

.news-detail .info-top .icon {
    width: 14px;
    height: 16px;
    margin-right: 8px;
}

.news-detail h1.title {
    font-size: 27px;
    font-weight: bold;
    color: #000000;
    line-height: 30px;
    padding: 18px 0;
    margin: 0;
}

.news-detail .abstract {
    position: relative;
    font-size: 14px;
    font-weight: normal;
    color: #333333;
    line-height: 32px;
    padding: 16px;
    border: 1px dashed #dadada;
    margin: 24px 0 40px 0;
}

.news-detail .abstract .flag {
    position: absolute;
    top: -16px;
    left: 2em;
}

.news-detail .details {
    font-size: 15px;
    color: #000000;
    line-height: 26px;
}

.news-detail .tag-list {
    padding: 20px 0;
}

.news-detail .tag-list .li {
    font-size: 14px;
    color: #006BE9;
    line-height: 24px;
    padding: 8px 16px;
    background: #EEF6FF;
    margin-right: 8px;
}

.news-detail .related-read .head {
    border-bottom: 1px solid #E6E6E6;
}

.news-detail .related-read .head .title {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    line-height: 30px;
    padding: 14px 0;
}

.news-detail .article-box .list .tag {
    font-size: 13px;
    color: #0279ff;
    line-height: 32px;
    padding: 6px;
    border-radius: 2px 2px 2px 2px;
    border: 1px solid #0279ff;
    margin-right: 8px;
}

.news-detail .details {
    font-size: 16px;
    color: #333;
    line-height: 36px;
}

.news-detail .details p {
    margin-bottom: 12px;
}

.news-detail .details img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
}

.news-detail .details h2 {
    font-size: 18px;
    margin-bottom: 12px;
}

.news-detail .details a {
    color: blue;
}

.news-detail .details .list-paddingleft-2 {
    padding-left: 30px;
}

.news-detail .details li {
    list-style-type: inherit;
}

/* 产品列表 */
.product-list .product-box {
    padding: 0 20px;
}

.product-list .product-box .tabs {
    border-bottom: 1px solid #EAEAEA;
}

.product-list .product-box .tabs .li {
    position: relative;
    padding: 12px 0;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    line-height: 30px;
    margin-right: 48px;
    cursor: pointer;
}

.product-list .product-box .tabs .on {
    color: #0279ff;
}

.product-list .product-box .tabs .on::after {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    bottom: 0;
    background: #0279ff;
}

.product-list .filter-box {
    padding-top: 26px;
}

.product-list .filter-box .item {
    display: flex;
    padding-bottom: 8px;
}

.product-list .filter-box .item .type {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 32px;
    padding-right: 20px;
}

.product-list .filter-box .item .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.product-list .filter-box .item .list .li {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 32px;
    margin-right: 30px;
    cursor: pointer;
}

.product-list .filter-box .item .list .li:last-of-type {
    margin-right: 0;
}

.product-list .filter-box .item .list .li.on {
    color: #0279ff;
}

.product-list .filter-box .select {
    margin-right: 20px;
}

.product-list .filter-box .select .select-wrapper {
    width: 90px;
    line-height: 28px;
    font-size: 12px;
    font-weight: 400;
    color: #000000;
}

.product-list .filter-box .select .select-wrapper input {
    font-size: 12px;
}

.product-list .filter-box .more {
    cursor: pointer;
    padding-bottom: 25px;
}

.product-list .filter-box .more .txt {
    padding-right: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 32px;
}

.product-list .filter-box .more .icon {
    width: 10px;
    height: 10px;
}

.product-list .filter-box .more.on .icon {
    transform: rotate(180deg);
}

.product-list .filter-more {
    display: none;
    padding: 25px 0;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
}

.product-list .filter-more.show {
    display: block;
}

.product-list .filter-more .item {
    display: flex;
}

.product-list .filter-more .item .type {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    line-height: 30px;
    padding-right: 12px;
}

.product-list .filter-more .item .list {
    display: flex;
    flex-wrap: wrap;
}

.product-list .filter-more .item .list .li {
    width: 16%;
}

.product-list .filter-more .checkbox .txt {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 32px;
}

.product-list .filter-more .checkbox input {
    position: relative;
    width: 12px;
    height: 12px;
    border-color: #B4B4B4;
    margin-right: 4px;
}

.product-list .filter-more .checkbox input::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    border: 1px solid #B4B4B4;
    box-sizing: border-box;
    background: #fff;
}

.product-list .filter-more .checkbox input:checked::after {
    content: '√';
    background: red;
    border: 0;
}

.product-list .search-box {
    padding-top: 28px;
}

.product-list .search-box .types .li {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    line-height: 32px;
    padding: 0 10px;
    background: #EBEBEB;
    cursor: pointer;
}

.product-list .search-box .types .li.on {
    color: #fff;
    background: #0279ff;
}

.product-list .search-box .search {
    position: relative;
    width: 143px;
    height: 36px;
    background: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    opacity: 1;
    border: 1px solid #E6E6E6;
}

.product-list .search-box .search .ipt {
    height: 100%;
    width: 100%;
    padding: 0 30px 0 10px;
    box-sizing: border-box;
}

.product-list .search-box .search .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    width: 12px;
    height: 12px;
}

.product-list .search-box .radio {
    padding-right: 20px;
}

.product-list .search-box .radio .txt {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 32px;
    padding-left: 4px;
}

.product-list .search-box .radio input {
    position: relative;
    width: 12px;
    height: 12px;
}

.product-list .search-box .radio input::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    border: 1px solid #B4B4B4;
    border-radius: 50%;
    box-sizing: border-box;
    background: #fff;
}

.product-list .search-box .radio input:checked::after {
    border-color: #0279ff;
}

.product-list .search-box .radio input:checked::before {
    position: absolute;
    display: block;
    content: '';
    width: 60%;
    height: 60%;
    background: #0279ff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.product-list .filter-result {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 32px;
    padding-top: 6px;
    padding-bottom: 10px;
}

.product-list .cont-left .check-more {
    padding: 15px 0 27px 0;
}

/* 产品详情 */
.product-detail .top-box {
    padding: 0 20px;
    margin-bottom: 20px;
}

.product-detail .coin-box {
    padding-top: 36px;
}

.product-detail .coin-box .info .img {
    width: 66px;
    height: 66px;
    margin-right: 12px;
    flex-shrink: 0;
}

.product-detail .coin-box .info .name {
    font-size: 26px;
    font-weight: bold;
    color: #333333;
    line-height: 30px;
}

.product-detail .coin-box .info .cname {
    font-size: 14px;
    color: #666666;
    line-height: 32px;
}

.product-detail .coin-box .operation {
    padding-top: 6px;
}

.product-detail .coin-box .operation .btn {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #000000;
    line-height: 32px;
    border-radius: 2px 2px 2px 2px;
    border: 1px solid #C0C0C0;
    padding: 0 10px;
    margin-left: 4px;
    cursor: pointer;
}

.product-detail .coin-box .operation .btn.t2 {
    background: #006BE9;
    color: #fff;
    border: 0;
}

.product-detail .coin-box .operation .btn.t2 a {
    color: #fff;
}

.product-detail .coin-box .operation .btn .icon {
    width: 12px;
    height: 12px;
    margin-right: 4px;
    flex-shrink: 0;
    object-fit: contain;
}

.product-detail .coin-box .price {
    display: flex;
    align-items: flex-end;
}

.product-detail .coin-box .price .p1 {
    font-size: 40px;
    font-weight: 500;
    /*color: #E1322D;*/
    color: #333333;
    font-weight: bold;
    line-height: 1;
    padding-right: 38px;
}

.product-detail .coin-box .price .p2 {
    font-size: 24px;
    font-weight: 500;
    /*color: #E1322D;*/
    color: #333333;
    line-height: 30px;
    padding-right: 8px;
}

.product-detail .coin-box .price .p3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
}

.product-detail .coin-box .order {
    font-size: 14px;
    color: #666666;
}

.product-detail .coin-box .order .num {
    display: inline-block;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 26px;
    height: 26px;
    background: #14B185;
    border-radius: 100px 100px 100px 100px;
    padding: 0 10px;
}

.product-detail .coin-box .date {
    font-size: 14px;
    color: #656565;
    line-height: 32px;
    border-bottom: 1px solid #EAEAEA;
    padding-top: 4px;
    padding-bottom: 14px;
}

.product-detail .coin-box .top {
    padding-bottom: 16px;
}

.product-detail .else-info {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
}

.product-detail .else-info .item {
    display: flex;
    font-size: 14px;
    color: #666666;
    line-height: 32px;
    width: 25%;
    padding-right: 1%;
    box-sizing: border-box;
}

.product-detail .else-info .item .name {
    flex-shrink: 0;
    /*width: 70px;*/
    text-align: justify;
    text-align-last: justify;
}

.product-detail .else-info .item .val {
    padding-left: 8px;
}


.product-detail .tab-box {
    position: relative;
    border-bottom: 1px solid #E6E6E6;
    padding: 0 20px;
}

.product-detail .tab-box .li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    line-height: 30px;
    padding: 18px 0;
    margin-right: 50px;
    cursor: pointer;
}

.product-detail .tab-box .li.on {
    color: #0279ff;
}

.product-detail .tab-box .li.on::after {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    bottom: 0;
    background: #0279ff;
}

.product-detail .detail-pro {
    padding: 0 20px;
    /* box-shadow: 0px 2px 6px 1px rgb(0 0 0 / 10%); */
    position: relative;
}

.product-detail .detail-pro .title {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    line-height: 32px;
    padding-top: 36px;
    padding-bottom: 24px;
}

.product-detail .detail-pro .filter-date .li {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 32px;
    padding: 0 8px;
    cursor: pointer;
}

.product-detail .detail-pro .filter-date .li.on {
    color: #0279ff;
    background: #FCF5F5;
    border-radius: 2px 2px 2px 2px;
}

.product-detail .detail-pro .filter-date .li .icon {
    width: 10px;
    height: 10px;
}

.product-detail .detail-pro .percentage {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 32px;
    padding: 16px 0;
}

.product-detail .detail-pro .percentage .item {
    display: flex;
    align-items: center;
    padding-left: 24px;
}

.product-detail .detail-pro .percentage .icon {
    width: 12px;
    height: 12px;
    margin-right: 6px;
}

.product-detail .detail-pro .percentage .arrow {
    width: 10px;
    height: 10px;
    margin: 0 4px 0 4px;
}

.product-detail .detail-pro .percentage .num {
    padding-left: 6px;
}

.product-detail .detail-pro .date {
    display: flex;
    align-items: center;
    width: 190px;
    border-radius: 2px 2px 2px 2px;
    border: 1px solid #EBEBEB;
}

.product-detail .detail-pro .date .symbol {
    background: #fff;
    border: 0;
    width: 20px;
    padding: 0;
}

.product-detail .detail-pro .date input {
    border: 0;
    box-shadow: none;
    padding: 0;
}

.product-detail .detail-pro .date .icon {
    width: 14px;
    height: 13px;
    flex-shrink: 0;
    margin-right: 8px;
}

.product-detail .detail-pro .chart {
    width: 100%;
    height: 367px;
}

.product-detail .shadow-block {
    position: relative;
    height: 24px;
    width: 100%;
    box-shadow: inset 0px 0px 6px 1px rgb(0 0 0 / 10%);
}

.product-detail .shadow-block::before,
.product-detail .shadow-block::after {
    position: absolute;
    display: block;
    content: '';
    height: 100%;
    width: 1px;
    background: #fafafa;
    top: 0;
}

.product-detail .shadow-block::before {
    left: 0;
}

.product-detail .shadow-block::after {
    right: 0;
}

.product-detail .product-box {
    padding: 0 20px;
    /* margin-top: 24px; */
}

.product-detail .product-box .table {
    margin-bottom: 0;
}

.product-detail .product-box .head {
    padding: 20px 0;
}

.product-detail .product-box .head .title {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    line-height: 32px;
}

.product-detail .detail-arch {
    padding: 0 20px;
    /* box-shadow: 0px 2px 6px 1px rgb(0 0 0 / 10%); */
    position: relative;
}

.product-detail .intro-box .head .title,
.product-detail .archives-box .head .title,
.product-detail .honor-box .head .title,
.product-detail .institute-box .head .title,
.product-detail .team-box .head .title {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    line-height: 30px;
    padding: 24px 0;
}

.product-detail .intro-box .cont {
    font-size: 14px;
    font-weight: normal;
    color: #333333;
    line-height: 25px;
}

.product-detail .intro-box .cont p {
    padding-bottom: 10px;
}

.product-detail .intro-box .cont h3 {
    padding-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
}

.product-detail .archives-box td {
    font-size: 14px;
    font-weight: normal;
    color: #000000;
    line-height: 32px;
    border: 1px solid #E6E6E6;
    padding-left: 20px;
    box-sizing: border-box;
}

.product-detail .archives-box tr td:first-of-type,
.product-detail .archives-box tr td:nth-of-type(3) {
    /* width: 134px; */
    background: #FAFAFA;
    padding-left: 15px;
}

.product-detail .archives-box table .icon {
    width: 15px;
    height: 15px;
    margin-left: 4px;
}


.product-detail .team-box .list {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
}

.product-detail .team-box .list .item {
    display: flex;
    align-items: flex-start;
    width: 252px;
    padding: 18px 20px;
    box-sizing: border-box;
    border: 1px solid #E6E6E6;
    margin-bottom: 16px;
    margin-right: 20px;
}

.product-detail .team-box .list .item:nth-of-type(3n) {
    margin-right: 0;
}

.product-detail .team-box .list .item .img {
    width: 45px;
    height: 45px;
    margin-right: 12px;
    flex-shrink: 0;
}

.product-detail .team-box .list .item .icon {
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

.product-detail .team-box .list .item .name {
    font-size: 14px;
    color: #000000;
    line-height: 24px;
}

.product-detail .team-box .list .item .intro {
    font-size: 12px;
    color: #B4B4B4;
    line-height: 18px;
}

.product-detail .team-box .list .item .link {
    color: #006BE9;
}

.product-detail .team-box a {
    display: flex;
}

.product-detail .institute-box .list {
    display: flex;
    flex-wrap: wrap;
}

.product-detail .institute-box .list .item {
    display: flex;
    align-items: center;
    width: 252px;
    padding: 18px 20px;
    box-sizing: border-box;
    border: 1px solid #E6E6E6;
    margin-bottom: 16px;
    margin-right: 20px;
}

.product-detail .institute-box .list .item:nth-of-type(3n) {
    margin-right: 0;
}

.product-detail .institute-box .list .item .img {
    width: 45px;
    height: 45px;
    margin-right: 12px;
    flex-shrink: 0;
}

.product-detail .institute-box .list .item .name {
    font-size: 14px;
    color: #000000;
    line-height: 32px;
}

.product-detail .institute-box a {
    display: flex;
    align-items: center;
}

.product-detail .honor-box .list .li {
    position: relative;
    font-size: 14px;
    color: #333333;
    line-height: 24px;
    padding-bottom: 20px;
    padding-left: 18px;
}

.product-detail .honor-box .list .li::after,
.product-detail .honor-box .list .li::before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
}

.product-detail .honor-box .list .li::before {
    width: 9px;
    height: 9px;
    background: #E5E5E5;
    border-radius: 50%;
}

.product-detail .honor-box .list .li::after {
    left: 4px;
    width: 1px;
    height: 100%;
    background: #E5E5E5;
}

.product-detail .honor-box .list .li:last-of-type::after {
    display: none;
}

.product-detail .honor-box .list {
    max-height: 275px;
}

.product-detail .detail-news {
    padding: 0 20px 40px 20px;
    /* box-shadow: 0px 2px 6px 1px rgb(0 0 0 / 10%); */
    position: relative;
}

.product-detail .cont-left .swiper {
    box-shadow: 0px 2px 6px 1px rgb(0 0 0 / 10%);
}

/* 搜索页 */
.page-search .search-box {
    padding: 0 20px;
}

.page-search .search-box .search {
    display: flex;
    width: 551px;
    background: #FFFFFF;
    margin: 0 auto;
    padding-top: 56px;
    padding-bottom: 46px;
}

.page-search .search-box .search .ipt {
    flex: 1;
    border: 1px solid #E6E6E6;
    border-right: 0;
    padding: 0 20px;
    height: 36px;
}

.page-search .search-box .search .btn {
    width: 63px;
    height: 36px;
    background: #0279ff;
    line-height: 40px;
    text-align: center;
    flex-shrink: 0;
}

.page-search .search-box .search .btn .icon {
    width: 16px;
    height: 16px;
}

.page-search .search-box .tabs {
    border-bottom: 1px solid #E6E6E6;
    margin-bottom: 30px;
}

.page-search .search-box .tabs .li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    line-height: 30px;
    padding: 18px 0;
    margin-right: 50px;
    cursor: pointer;
}

.page-search .search-box .tabs .li.on {
    color: #0279ff;
}

.page-search .search-box .tabs .on::after {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    bottom: 0;
    background: #0279ff;
}

.page-search .search-box > .list > .li {
    display: none;
    padding-bottom: 40px;
}

.page-search .search-box > .list > .li.on {
    display: block;
}

.icon-search:before {
    cursor: pointer;
    color: #0279ff;
}

.swiper-slide img {
    width: 444px;
    height: 234px;
}

.riskWarming {
    height: 240px;
    background-color: #fff;
    /*margin-bottom: 15px;*/
    /*-webkit-box-shadow: 0 1px 2px 0 rgba(159, 169, 176, .17);*/
    /*box-shadow: 0 1px 2px 0 rgba(159, 169, 176, .17);*/
}

.riskWarming .risk_top {
    font-size: 14px;
    color: #d60f2a;
    line-height: 20px;
    background: rgba(214, 15, 42, .08);
    height: 40px;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.riskWarming .risk_top .ont_tips {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    color: #d60f2a;
}

.riskWarming .risk_top .ont_tips:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    background: url(../fonts/ic_alarm.svg) no-repeat;
    background-size: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.riskWarming .rish_bottom {
    padding: 16px 20px;
}

.riskWarming .rish_bottom a {
    display: block;
    font-size: 14px;
    line-height: 22px;
    color: #0b1721;
    letter-spacing: 1px;
    position: relative;
}

.riskWarming .rish_bottom .two {
    color: #858a90;
    font-size: 12px;
    line-height: 17px;
    text-align: right;
    margin-bottom: 12px;
}

.riskWarming .rish_bottom .risk_link {
    position: absolute;
    top: 70px;
    right: 0;
    bottom: 0;
    width: 80px;
    height: 20px;
    text-align: right;
    padding-right: 14px;
}

.riskWarming .rish_bottom .risk_link:after {
    content: "";
    position: absolute;
    right: -2px;
    top: 2px;
    width: 18px;
    height: 18px;
    background: url(../fonts/5ac7a326c08340829a96e711abbeb435.woff) no-repeat;
    background-size: 100%;
}

.riskWarming p {
    margin: 0;
    padding: 0;
}

/* kuaixun begin */
.live-data-item[data-v-5bff2cfc] {
    cursor: default;
    border-left: 1px dashed #e8e8e8;
    padding: 16px 0 16px 16px;
    position: relative;
    box-sizing: border-box;
    margin-left: 4px;
}

.din-medium {
    font-family: DIN-Medium, sans-serif;
}

.live-data-item__time[data-v-5bff2cfc] {
    color: #333;
    font-size: 14px;
    line-height: 23px;
    font-weight: 500;
}

.live-data-item .desc-title[data-v-5bff2cfc] {
    font-size: 18px;
    color: #333;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 2px;
}

.live-data-item .desc[data-v-5bff2cfc] {
    font-size: 16px;
    color: #333 !important;
    line-height: 28px;
}

.live-data-item__footer--stock a[data-v-5bff2cfc] {
    color: #666;
}

.live-data-item__footer--stock span + .din-medium[data-v-5bff2cfc] {
    margin-left: 8px;
}

.item-share__main i[data-v-6b8a2f21] {
    font-size: 16px;
    margin-right: 4px;
}

.item-share__main--box .click-item i[data-v-6b8a2f21] {
    font-size: 20px;
    margin-bottom: 9px;
}

.live-data-item__footer--subject a[data-v-5bff2cfc] {
    color: #386ff2;
}

.icon {
    width: 1em;
    height: 1em;
    vertical-align: -.15em;
    fill: currentColor;
    overflow: hidden;
}

.logo-btn .icon[data-v-7c52bb1f] {
    height: 22px;
    width: 22px;
    vertical-align: top;
}

button {
    border: none;
    outline: none;
}

.live-data-item[data-v-5bff2cfc]:after {
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    border: 2px solid #333;
    border-radius: 50%;
    left: -4px;
    top: 27px;
    position: absolute;
    box-sizing: border-box;
}

/* kuaixun end */


.product-detail #intro {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
}

.product-detail #intro.open {
    display: block;
}

/* renwu list begin */
.card {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
}

.d-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
}

.flex-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    flex-direction: row !important;
}

.flex-column, .flex-row {
    -webkit-box-direction: normal !important;
}

.card[data-v-51adbaae] {
    border: 1px solid #ddd;
    width: 48%;
    height: 171px;
    border-radius: 2px;
    -webkit-transition: all .2s;
    transition: all .2s;
    margin-top: 20px;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .1);
    box-shadow: 0 0 2px rgba(0, 0, 0, .1);
}

.text-center {
    text-align: center !important;
}

.cover[data-v-51adbaae] {
    min-width: 100px;
    margin-top: 20px;
}

.d-block {
    display: block !important;
}

a[data-v-51adbaae] {
    color: #333;
    text-decoration: none;
}

.usericon[data-v-51adbaae] {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    font-size: 28px;
    line-height: 60px;
    border: 1px solid rgba(0, 0, 0, .06);
    color: #953;
}

.d-inline-block {
    display: inline-block !important;
}

a[data-v-51adbaae] {
    color: #333;
    text-decoration: none;
}

a.follow-btn[data-v-51adbaae] {
    margin-top: 20px;
    height: 26px;
    width: 60px;
    line-height: 24px;
    text-align: center;
    border-radius: 2px;
    border: 1px solid #0279ff;
    color: #0279ff;
    font-size: .8em;
}

.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
}

.mr-2, .mx-2 {
    margin-right: .5rem !important;
}

.info[data-v-51adbaae] {
    margin-top: 20px;
}

a.des[data-v-51adbaae] {
    padding-bottom: 15px;
    border-bottom: 1px dotted #ddd;
    color: #a8a8a8;
    font-size: .8em;
}

p.intro[data-v-51adbaae] {
    font-size: .8em;
    margin-top: 10px;
    max-height: 70px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
    justify-content: space-between !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

/* renwu list end */

.people .else-info .item .name {
    width: auto;
}

/* zt begin*/
.zt {
    padding-top: 10px !important;
}

.zt-title {
    padding-left: 19px;
    position: relative;
    color: #1f8fff;
    font-weight: 600;
    line-height: 1.2;
    font-size: 1.5em;
    margin: 0;
}

.zt-title:before {
    content: '';
    position: absolute;
    left: 6px;
    top: 4px;
    width: 4px;
    height: 20px;
    background: #0077ee;
}

.zt-desc {
    line-height: 25px;
    padding: 12px;
    margin-top: 12px;
    background: #f5f5f5;
}

.zt-desc p {
    margin: 0;
    padding: 0;
}

/* zt end */

/*kuaixun-list begin*/
.list-kx li {
    padding: 12px;
    border-bottom: 1px solid #efefef
}

.list-kx li .time {
    color: #666;
    font-size: .875rem
}

.list-kx li .time:before {
    color: #0077ee;
    padding-right: 6px
}

.list-kx li h3 {
    padding: 9px 0;
    font-weight: 600
}

.list-kx li p {
    color: #666
}

/*kuaixun-list end*/

/* about begin */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
}

.container {
    max-width: 1200px;
}

.main {
    padding-top: 12px;
    margin-bottom: 12px;
}

.magazine-left {
    width: 200px;
    margin-right: 10px;
}

.magazine-left .magazine-left-content ul {
    background: #fff;
}

.magazine-left .magazine-left-content ul li {
    height: 50px;
    line-height: 50px;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    text-align: center;
    width: 200px;
}

.magazine-left .magazine-left-content ul li a {
    color: #565656;
    display: block;
    border-left: 3px solid #fafafa;
}

.magazine-left .magazine-left-content ul li.show-item a {
    color: #0279ff;
    border-left: 3px solid #0279ff;
}

.magazine-wrap {
    padding: 35px;
    margin-bottom: 10px;
    background: #fff;
    width: 990px;
}

.page-about-content .tit-b {
    font-size: 26px;
}

.page-about-content .block {
    padding: 20px 0 10px;
}

.page-about-content h2 {
    font-size: 20px;
    color: #0279ff;
    font-weight: normal;
    line-height: 2;
    padding-bottom: 20px;
}

.page-about-content p {
    line-height: 2;
    color: #666;
    padding-bottom: 20px;
}

/* about end */
.box-scoll {
    z-index: 2000;
    width: 50px;
    float: right;
    position: fixed;
    right: 20px;
    bottom: 80px;
}

.box-scoll a {
    position: relative;
    color: #999;
    padding-top: 15px;
    display: block;
    font-size: 12px;
    text-align: center;
    line-height: 21px;
    font-size: 12px;
    width: 50px;
    height: 50px;
    text-align: center;
    margin: 0 auto;
    border-radius: 0px;
    background: rgba(0, 0, 0, 0.07);
    margin: 0 0 2px 0;
    overflow: visible !important;
}

.box-scoll a:hover {
    background: #0279ff;
    color: #fff
}

.box-scoll a:hover span {
    display: block !important;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #0279ff;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
}

.box-scoll a:hover i {
    color: #fff;
}

.box-scoll a#backTop {
    display: none;
}

.box-scoll a i {
    margin: 0 auto;
    display: block;
    font-size: 25px;
    color: #0279ff;
    margin-bottom: 3px;
}

.box-scoll a span {
    display: none;
    font-size: 12px;
}

.news-detail .declare {
    font-size: 14px;
    color: #999;
    margin-top: 20px;
    line-height: 20px;
}

.social-share {
    margin-top: 20px;
}

.pairName {
    width: 120px;
    display: inline-block;
}

.archives-box tr td:first-child {
    width: 177px;
}

.trend-chart .tab-box {
    padding: 0px;
}

.trend-chart .tab-box .li {
    text-align: center;
    width: 100px;
    margin-right: 0px;
}

.archives-box .fee {
    width: 600px;
    display: block;
}

.pagination {
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

.pagination a {
    line-height: 40px;
    background: #fff;
    padding: 0 10px;
    display: inline-block;
    margin: 0 2px;
    color: #666666;
    font-size: 14px;
}

.pagination a.active {
    background: #288bde;
    color: #fff;
}
