:root {
    --headerHeight: 64px;
    --padding: 15px;
    --themeColor: #67C554;
    --maxWidth: 1200px
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

a {
    text-decoration: none
}

.p-lr {
    padding-left: var(--padding);
    padding-right: var(--padding)
}

body {
    font: 12px Microsoft YaHei-Regular,Microsoft YaHei;
    color: #333;
    background: #fff;
    overflow-x: hidden;
    font-weight: 400
}

.android,.ios,.pc {
    display: inline-block
}

.android,.ios {
    display: none
}

#to-top {
    position: fixed;
    bottom: 120px;
    right: 30px;
    cursor: pointer;
    color: #3d73ed;
    z-index: 1000;
    display: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

#to-top img {
    width: 50px;
    height: 50px
}

header {
    background-color: #fff;
    padding: 0 15px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: var(--headerHeight);
    z-index: 99;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 6px 1px rgba(0,0,0,.5);
    box-shadow: 0px 0px 6px 1px rgba(0,0,0,.5)
}

header .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    max-width: 1200px
}

header .logo img {
    height: 50px;
    display: block;
    margin: auto
}

header .nav {
    line-height: calc(var(--headerHeight) - 2px);
    margin-left: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

header .nav a {
    font-size: 16px;
    font-weight: 400;
    color: #202125;
    margin-left: 24px;
    position: relative
}

header .nav a:hover,header .nav a.active {
    color: #202125
}

header .nav a:hover::after,header .nav a.active::after {
    background: var(--themeColor);
    border-radius: 2px;
    bottom: 2px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    right: 0
}

header #nav-btn {
    height: 100%;
    display: none;
    width: 1.25rem;
    height: 1.0625rem;
    background: url(../images/icon_nav.png) no-repeat;
    background-size: 100% 100%
}

.crumbs {
    color: #666;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 16px auto;
    font-size: 14px
}

.crumbs a {
    color: #666
}

.crumbs a:hover {
    color: var(--themeColor)
}

.crumbs span,.crumbs a {
    margin-right: 5px
}

.list .li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 16px 21px;
    display: flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 24px
}

.list .li img {
    width: 190px;
    height: 125px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 16px;
    overflow: hidden
}

.list .li .info {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0
}

.list .li .info .title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.list .li .info .desc {
    margin-bottom: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 400;
    color: #666
}

.list .li .info .time {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.list .li .info .time::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background: #fff;
    border: 1px solid #33ad69;
    display: block;
    border-radius: 50%;
    margin-right: 4px
}

.list .li .info .others {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.list .li .info .others .read {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    margin-left: auto
}

.list .li:hover .info .title {
    color: var(--themeColor)
}

.list .li:hover .info .others .read {
    color: var(--themeColor)
}

main {
    padding-top: var(--headerHeight)
}

main .wrapper {
    max-width: var(--maxWidth);
    margin: 0 auto
}

footer {
    padding: 25px 0;
    text-align: center;
    color: #999;
    width: 100%;
    font-size: 12px;
    background: #393939;
    line-height: 30px
}

footer .icp a {
    line-height: 25px;
    color: #999
}

.error-404-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fafafa;
    min-height: calc(100vh - 50px - 4.375rem)
}

.error-404-container .alert {
    text-align: center;
    padding: 50px 0
}

.error-404-container .alert img {
    width: 316px
}

.error-404-container .alert p {
    font-size: 1rem;
    color: #898585;
    line-height: 34px
}

.error-404-container .alert .btn {
    font-size: 12px;
    color: #fff;
    background-color: var(--themeColor);
    border-radius: .3125rem;
    width: 5rem;
    height: 1.875rem;
    line-height: 1.875rem;
    display: block;
    margin: 0 auto
}

.index-container .xqty-part1 {
    background-color: #f8fafd
}

.index-container .xqty-part1 .wrapper {
    padding: 15px;
    text-align: center
}

.index-container .xqty-part1 img {
    width: 90%;
    max-width: 940px
}

.index-container .xqty-part1 .title {
    font-size: 52px;
    font-family: Microsoft YaHei,Microsoft YaHei;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-top: 55px;
    margin-bottom: 22px
}

.index-container .xqty-part1 .desc {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: #666;
    text-align: center;
    margin-bottom: 24px
}

.index-container .xqty-part1 .button {
    width: 137px;
    height: 46px;
    background: var(--themeColor);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    line-height: 46px;
    text-align: center;
    margin-bottom: 20px;
    position: relative
}

.index-container .xqty-part1 .button:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.index-container .xqty-part1 .intro {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px
}

.index-container .xqty-part1 .intro a {
    color: #666;
    text-decoration: underline
}

.index-container .part2 {
    padding: 100px 15px
}

.index-container .part2 .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 100px 0
}

.index-container .part2 .item:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.index-container .part2 .item img,.index-container .part2 .item .info {
    width: calc(50% - 20px);
    margin: 0 20px
}

.index-container .part2 .item .title {
    font-size: 43px;
    font-weight: 400;
    color: #000;
    line-height: 62px;
    margin-bottom: 5px
}

.index-container .part2 .item .desc {
    font-size: 16px;
    font-weight: 400;
    color: #666
}

.index-container .part2 .item .button {
    width: 137px;
    height: 46px;
    background: var(--themeColor);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    line-height: 46px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    margin-top: 30px
}

.index-container .part2 .item .button:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.article-container .download-banner {
    padding: 24px 0 0
}

.article-container .download-banner a {
    width: 100%;
    padding-top: 7.8%;
    background: url(../images/s-1.png) no-repeat;
    background-size: cover;
    background-position: left center
}

.article-container .channel-list {
    margin-bottom: 30px
}

.article-container .channel-list .channel-title {
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.article-container .channel-list .channel-title strong {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.article-container .channel-list .channel-title strong::before {
    display: block;
    content: "";
    width: 4px;
    height: 18px;
    background-color: var(--themeColor);
    border-radius: 30px;
    margin-right: 8px
}

.article-container .channel-list .channel-title a {
    font-size: 14px;
    color: #999
}

.article-container .channel-list .channel-title a:hover {
    color: var(--themeColor)
}

.article-container .pagination {
    margin-top: 30px;
    margin-bottom: 50px;
    text-align: center;
    color: #333;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.article-container .pagination a,.article-container .pagination span {
    min-width: 30px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    min-width: 30px;
    height: 30px;
    background: #fff;
    border: 1px solid #efefef;
    font-size: 14px;
    font-family: PingFang SC-Regular,PingFang SC;
    font-weight: 400;
    color: #666;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.article-container .pagination a.current,.article-container .pagination a:hover {
    background-color: var(--themeColor);
    color: #fff
}

.article-container .container {
    background: #fff;
    border-radius: 8px;
    padding: 20px 24px 24px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 30px
}

.article-container .container h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 25px
}

.article-container .container .infos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    color: #666;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    line-height: 30px;
    border-bottom: 1px solid #eee
}

.article-container .container .infos span {
    margin: 0 50px;
    color: #666;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.article-container .container .infos a {
    color: var(--themeColor)
}

.article-container .container article {
    display: block;
    word-wrap: break-word;
    word-break: break-all;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 32px;
    padding: 0 18px
}

.article-container .container article img {
    margin: 10px auto;
    display: block;
    max-width: 100%;
    height: auto !important
}

.article-container .recommend {
    background-color: #fff;
    padding: 24px 0;
    margin-bottom: 30px;
    border-radius: 8px
}

.article-container .recommend .module-title {
    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 24px;
    padding: 0 24px
}

.article-container .recommend .module-title::before {
    content: "";
    display: block;
    width: 4px;
    height: 17px;
    background: var(--themeColor);
    border-radius: 2px;
    margin-right: 4px
}

.article-container .recommend .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.article-container .recommend .list .li {
    width: calc(50% - 15px);
    margin-right: 30px;
    margin-top: 0
}

.article-container .recommend .list .li:nth-child(2n) {
    margin-right: 0
}

.download-container .wrapper {
    padding: 40px 15px
}

.download-container img {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    display: block
}

.download-container .title {
    font-size: 26px;
    color: #383a3b;
    text-align: center;
    margin-top: 32px;
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: -1px
}

.download-container .title a {
    color: #383a3b
}

.download-container .tips {
    font-size: 14px;
    margin: 14px 10px 30px;
    line-height: 1.5;
    text-align: center;
    color: #333
}

.download-container .download a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: bold;
    margin: 10px;
    width: 280px;
    color: #fff;
    padding: 10px 14px;
    font-size: 15px;
    line-height: 2;
    background-color: var(--themeColor);
    margin: 0 auto
}

@media screen and (max-width: 1200px) {
    main .wrapper {
        max-width:970px
    }
}

@media screen and (max-width: 1080px) {
    :root {
        --padding: 38px
    }

    .crumbs {
        height: 2.125rem;
        line-height: 2.125rem;
        font-size: .8rem;
        color: #999;
        background-color: #f7f7f7;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin: 0;
        padding: 0 15px
    }

    .crumbs a {
        color: #999
    }

    .list {
        padding: 0 15px 15px
    }

    .list .li {
        padding: 15px;
        margin-top: 15px
    }

    .list .li img {
        width: 100px;
        height: 66px;
        margin-right: 15px
    }

    .list .li .info {
        width: calc(100% - 112px)
    }

    .list .li .info .title {
        font-size: 14px;
        color: #333;
        margin-bottom: 10px
    }

    .list .li .info .desc {
        display: none
    }

    .list .li .info .time {
        font-size: 12px
    }

    .list .li .info .others {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .list .li .info .others .read {
        font-size: 12px
    }

    header {
        -webkit-box-shadow: 0px 0px 2px 1px rgba(0,0,0,.16);
        box-shadow: 0px 0px 2px 1px rgba(0,0,0,.16)
    }

    header .wrapper {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    header #nav-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    header .nav {
        border-top: 1px solid #eee;
        margin-left: 0;
        position: fixed;
        right: -100%;
        z-index: 999;
        top: var(--headerHeight);
        display: block !important;
        width: 100%;
        height: calc(100% - var(--headerHeight));
        background-color: #fff;
        padding: 15px;
        -webkit-transition: right .5s;
        transition: right .5s;
        line-height: 2.5rem
    }

    header .nav.open {
        right: 0;
        -webkit-transition: right .5s;
        transition: right .5s
    }

    header .nav a {
        width: calc((100% - 15px)/2);
        height: 2.125rem;
        background: #f8f8f8;
        border-radius: .25rem;
        border: .0625rem solid #f2f0f0;
        text-align: center;
        margin-bottom: 1.125rem;
        margin-right: 15px;
        font-size: 14px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        float: left;
        margin-left: 0
    }

    header .nav a:nth-child(2n) {
        margin-right: 0
    }

    header .nav a::after {
        display: none
    }

    header .nav a.on,header .nav a:hover {
        border-bottom: 1px solid #fff
    }

    footer {
        padding: 1rem
    }

    .index-container .xqty-part1 {
        background-color: #fff;
        padding: 10px 15px;
    }

    .index-container .xqty-part1 .wrapper {
        padding: 0
    }

    .index-container .xqty-part1 .title {
        font-size: 20px;
        margin-top: 0
    }

    .index-container .xqty-part1 .desc {
        font-size: 16px;
        line-height: 24px
    }

    .index-container .xqty-part1 .button {
        width: 130px;
        height: 2.5rem;
        line-height: 2.5rem;
        border-radius: 1.25rem;
        font-size: 1rem
    }

    .index-container .xqty-part1 .intro {
        display: none
    }

    .index-container .xqty-part1 img {
        width: 100%
    }

    .index-container .part2 {
        padding: 0 15px 30px
    }

    .index-container .part2 .item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        text-align: center;
        padding: 0
    }

    .index-container .part2 .item:nth-child(2n) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .index-container .part2 .item .title {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 24px
    }

    .index-container .part2 .item .info,.index-container .part2 .item img {
        width: 100%;
        margin: 0px 0;
    }

    .article-container .download-banner {
        padding: 0
    }

    .article-container .download-banner a {
        padding-top: 21.8%;
        background: url(../images/s-3.png) no-repeat;
        background-size: cover;
        background-position: center
    }

    .article-container .channel-list {
        margin-bottom: 0
    }

    .article-container .channel-list .channel-title {
        padding: 15px 15px 0
    }

    .article-container .pagination {
        margin-bottom: 30px
    }

    .article-container .pagination a,.article-container .pagination span,.article-container .pagination select {
        font-size: .75rem;
        margin: 0 .1875rem;
        border: none
    }

    .article-container .container {
        padding: 15px;
        margin-bottom: 10px
    }

    .article-container .container h2 {
        font-size: 16px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        text-align: center;
        margin-top: 0;
        color: #000;
        margin-bottom: 14px
    }

    .article-container .container .infos {
        margin-top: 0;
        padding-bottom: 10px
    }

    .article-container .container .infos span {
        font-size: 12px;
        color: #000;
        margin: 0 5px
    }

    .article-container .container article {
        font-size: 14px;
        padding: 0
    }

    .article-container .recommend {
        padding: 1rem 0
    }

    .article-container .recommend .module-title {
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 15px;
        padding: 0 15px
    }

    .article-container .recommend .list {
        padding: 0
    }

    .article-container .recommend .list .li {
        width: 100%
    }
}

@media screen and (max-width: 768px) {
    main .wrapper {
        max-width:750px
    }
}

@media screen and (max-width: 648px) {
    :root {
        --padding: 15px
    }

    #to-top {
        bottom: 70px;
        right: 10px
    }

    #to-top img {
        width: 30px;
        height: 30px
    }

    .error-404-container .alert img {
        width: 12.5rem
    }

    .error-404-container .alert h2 {
        font-size: 16px
    }
}

.bifen-one a {
    font-weight: 100;
    background: #3762fe;
    color: #ffffff;
    margin: 0px 10px;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 16px;
}
.bifen-one{
	font-size:18px!important;
}
.bifen-one h2{	
	margin:0px;
}
.xqty-h2 a{
	color:#000000;
}