.inner {
    width: 100%;
}

.inner.flex {
    display: flex;
}

.inner.item-center {
    align-items: center;
}
.inner.space-between{
    justify-content: space-between;
}

.header {
    height: 60px;
    width: 100%;
    background-color: transparent;
    background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    transition: all .2s;
    display: flex;
    align-items: center;
    padding: 0 12px;
}
.header.white{
    background: #fff;
}
.header.white .logo{
    color: #333;
}
.header .logo {
    height: 35px;
    flex-shrink: 0;
    display: block;
    background-image: url("../images/logo.png");
    background-size: 35px 35px;
    background-repeat: no-repeat;
    white-space: nowrap;
    text-indent: 40px;
    font-size: 20px;
    line-height: 35px;
    font-weight: 500;
    color: #fff;

}

.nav {
    position: fixed;
    top: 60px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 19;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1);
    display: none;
    animation-name: animate-dropup;
    animation-duration: 0.2s;
    animation-fill-mode: both;
}

.nav.active {
    display: block;
}

.nav li {
    display: block;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.nav li .parent {
    display: block;
    padding: 0 12px;
    height: 56px;
    line-height: 56px;
    font-size: 16px;
    font-weight: bold;
}

.nav li .iconfont {
    position: absolute;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    top: 0;
    right: 0;
    font-size: 24px;
    transition: all .3s;
    pointer-events: none;
}

.nav li.active .iconfont {
    transform: rotateX(180deg);
    color: #d6012f;
}

.nav li.active .children {
    display: block;
}

.nav li.active .parent {
    color: #009944;
}

.nav li .children {
    display: none;
}


.nav li .children a {
    display: flex;
    align-items: center;
    margin: 0 0 0 44px;
    line-height: 50px;
    border-top: 1px solid #f0f0f0;
    color: #666;
}

.nav li .children a:before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #009944;
    margin-right: 12px;
}

.nav li .iconfont {
    position: absolute;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    top: 0;
    right: 0;
    font-size: 24px;
    transition: all .3s;
    pointer-events: none;
}

.nav li.active .iconfont {
    transform: rotateX(180deg);
    color: #009900;
}

.header .fold {
    height: 50px;
    width: 50px;
    display: block;
    line-height: 50px;
    color: #fff;
}
.header.white .fold {
    color: #333;
}
.header .fold i {
    height: 50px;
    width: 50px;
    display: block;
    line-height: 50px;
    text-align: center;
    font-size: 24px;
}

.header .fold i:after {
    content: '\e975';
}

.header .fold.active i:after {
    content: '\e904';
}

.header .language {
    height: 30px;
    display: flex;
    align-items: center;
    line-height: 34px;
    background: rgba(0, 0, 0, .3);
    border-radius: 36px;
    white-space: nowrap;
    padding: 0 8px 0 5px;
    border: 1px solid rgba(0, 0, 0, 0);
}

.language i {
    font-size: 18px;
    color: #fff;
    padding: 0 0 0 5px;
}

.language a {
    color: #fff;
    margin: 0 5px;
    position: relative;
    font-size: 12px;
    white-space: normal;
    display: block;
}


.header.white .language {
    border-color: #f0f0f0;
    background: #fff;
}

.header.white .language a {
    color: #333;
}


.header.white .language i {
    color: #333;
}

.language a.active {
    color: #fff !important;
    background: #009944;
    border-radius: 20px;
    line-height: 20px;
    height: 20px;
    padding: 0 8px;
    cursor: default;
}

.banner{
    height: 80vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 50vw 52px 0 12px;
}
.banner h3{
    font-weight: 400;
    font-size: 18px;
}


.sub-nav{
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}
.sub-nav .inner.flex{
    display: block;
    white-space: nowrap;
    overflow-x: auto;
    padding: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    text-align: center;
}

.sub-nav .inner.flex::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}
.sub-nav a{
    display: inline-block;
    font-size: 14px;
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 50px;
    margin: 4px;
}
.sub-nav a.active{
    color: #fff;
    background: #009900;
}
.footer .inner{
    padding: 12px;
}

.footer .icon-list{
    display: none;
}
.footer-link li {
    width: 100%;
    border-top: 1px solid #f0f0f0;
    padding: 6px 12px;
    transition: all .3s;
}

.footer-link li b {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    display: block;
    position: relative;
}

.footer-link li b:after {
    content: '\e903';
    position: absolute;
    height: 40px;
    width: 24px;
    text-align: center;
    line-height: 40px;
    top: 0;
    right: 0;
    border-radius: 50%;
    font-family: iconfont;
    font-size: 18px;
    transition: all .3s;
}
.footer-link li.active b{
    margin-bottom: 8px;
}
.footer-link li.active b:after {
    transform: rotateX(180deg);
}

.footer-link li a {
    display: none;
    padding: 6px 0;
    font-size: 14px;
}

.footer-link li.active a {
    display: flex;
    align-items: center;
    margin: 0 0 0 44px;
    line-height: 32px;
    border-top: 1px solid #f0f0f0;
    color: #666;
}

.footer-link li.active a:before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #009944;
    margin-right: 12px;
}

.footer .copyright{
    font-size: 12px;
    display: flex;
    align-items: center;
}
.footer .copyright a{
    padding-left: 12px;
    display: flex;
    align-items: center;
}


.page-content{
    padding: 12px;
    font-size: 14px;
}

.page-content p{
    padding: 6px 0;
}
.page-content img{
    max-width: 100%;
    height: auto;
}
.page-content h1,
.page-content h2{
    color: #009900;
}
.page-content video{
    width: 100%;
    border-radius: 5px;

}

.chairman{
    display: flex;
}
.chairman-intro{
    background-image: url("/images/marks.png");
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 30px auto;
    padding:32px 0 0 0;
    width: 100%;
    margin-left: 12px;
}
.chairman-photo{
    width: 160px;
    flex-shrink: 0;
}
.chairman-photo img{
    border-radius: 5px;
}


.time-line-box ul:after {
    content: '';
    background: url(/images/timeline.png) repeat-x left bottom;
    height: 52px;
    width: 1000%;
    position: absolute;
    left: -536px;
    z-index: 1;
}
.time-line-box ul li {
    float: left;
    width: 211px;
    position: relative;
    padding-top: 176px;
    padding-bottom: 0;
    padding-left: 0;
    z-index: 2;
}
.time-line-box ul li:after {
    content: '';
    height: 124px;
    border-left: #dddddd 2px solid;
    position: absolute;
    top: 52px;
    left: 0;
}
.time-line-box ul li dl {
    padding-left: 25px;
}
.time-line-box ul li dl dt {
    font-size: 22px;
    color: #009900;
    font-weight: bold;
    position: relative;
    margin-bottom: 10px;
}
.time-line-box ul li dl dt:after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #009900;
    position: absolute;
    left: -32px;
    top: 0;
    border: rgba(255,255,255,.5) 4px solid;
}
.time-line-box ul li dl dd {
    color: #333;
    font-size: 14px;
    line-height: 1.8;
    padding-left: 15px;
    position: relative;
}
.time-line-box ul li dl dd:after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #009900;
    position: absolute;
    left: 0;
    top: 7px;
}
.time-line-box ul li:first-child {
    margin-left: 95px;
}
.time-line-box ul li:last-child {
    margin-right: 40px;
}
.time-line-box ul li:nth-child(2n) {
    padding-top: 0;
}
.time-line-box ul li:nth-child(2n):after {
    top: auto;
    bottom: -51px;
    height: 76px;
    z-index: 2;
}
.time-line-box ul li:nth-child(2n) dt:after {
    left: -34px;
}

.time-line-box ul li:nth-child(2n) .timeline-content {
    position: absolute;
    left: 0;
    bottom: 10px;
    border-left: #d3d3d2 2px solid;
}
.time-line-box ul .item-this:after {
    border-left: #2DA891 2px solid;
}
.time-line-box ul .item-this .timeline-content {
    border-left: #2DA891 2px solid !important;
}


.list-one {
    background: #fff;
    overflow: hidden;
}

.list-one li {
    overflow: hidden;
    display: flex;
    padding: 12px;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
}
.list-one li:not(:nth-child(1)){
    margin-top: 12px;
}
.list-one li .img {
    width: 240px;
    height: 135px;
    overflow: hidden;
    border-radius: 5px;
    margin-right: 24px;
}

.list-one li .img img {
    width: 240px;
    height: 135px;
    transition: all 1s;
    object-fit: cover;
}

.list-one li:hover .img img {
    transform: scale(1.1);
}

.list-one li:hover a b {
    color: #009900;
}

.list-one li .text {
    width: 100%;
}

.list-one li .text b {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    padding: 0;
    margin-bottom: 12px;
}

.list-one li .text p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
    padding: 0;
}
.list-one li .text span {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 12px;
}

.list-one li .text span .iconfont {
    font-size: 20px;
}

.list-one li .text span .iconfont:nth-child(2) {
    padding-left: 24px;
}


.list-two a{
    display: block;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    transition: all .5s;
    margin: 12px 0;
}

.list-two a b{
    display: block;
    border-bottom: 1px solid #f0f0f0;
    padding: 12px ;
    font-size: 16px;
    background: #f8f8f8;
    color: #009900;
}
.list-two a span{
    color: #666;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 6px 12px;
    line-height: 2;
    font-size: 14px;
}

.list-three {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.list-three a {
    width: 100%;
    margin: 0 0 12px 0;
    display: block;
}

.list-three a img {
    width: 100%;
    height: 75%;
    object-fit: cover;
    border-radius: 5px;
}


.list-three a span {
    display: block;
    font-size: 16px;
    height: 36px;
    line-height: 36px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}
.paging {
    display: flex;
    padding-top: 24px;
    justify-content: center;
    align-items: center;
}

.paging a, .paging span {
    border: #f0f0f0 1px solid;
    padding: 6px 12px;
    margin: 0 6px;
    background: #fafafa;
    display: block;
    border-radius: 5px;
    min-width: 36px;
    text-align: center;
    font-size: 14px;
}

.paging a:hover {
    background: #fff;
}

.paging a.current, .paging .current {
    background: #009900;
    color: #fff;
    border: #009900 1px solid;
}

.paging span {
    margin: 0 6px;
    display: block;
}


.swiper-banner,
.swiper-home{
    height: 100vh;
}
.swiper-banner .swiper-slide:nth-child(1){
    background-image: url("https://chainfount.oss-cn-shanghai.aliyuncs.com/20260202/LgQbOL203RjCVSNjb8E9n1aD0BezeMKK.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.swiper-banner .swiper-slide:nth-child(2){
    background-image: url("https://chainfount.oss-cn-shanghai.aliyuncs.com/20260202/hjIw4jegwQuelG7oGurdT1tcxVGOZfHK.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.swiper-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.swiper-banner .swiper-slide .text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-banner .swiper-slide .text div {
    width: 100%;
}

.swiper-banner .swiper-slide .text h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    display: block;
    text-align: center;

}

.swiper-banner .swiper-slide .text h3 {
    color: #fff;
    font-size: 20px;
    display: block;
    text-align: center;
    font-weight: 300;
}

.swiper-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    position: relative;
}
.swiper-page .inner{
    padding: 0 48px;
}
.swiper-banner-pagination .swiper-pagination-bullet{
    margin: 12px !important;
    position: relative;
}
.swiper-banner-pagination .swiper-pagination-bullet-active:after{
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #009944;
    position: absolute;
    top: -5px;
    left: -5px;
    border-radius: 50%;
}



.swiper-about h2 {
    color: #fff;
    font-size: 24px;
    padding-bottom: 24px;
}

.swiper-about .number {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    color: #fff;
    padding-bottom: 24px;
}

.swiper-about .number li {
    position: relative;
    background: #009944;
    text-align: center;
    border-radius: 5px;
    padding: 12px 0;
}

.swiper-about .number li span {
    display: block;
    text-align: center;
    font-size: 12px;
}

.swiper-about .number b {
    font-size: 24px;
    font-family: num;
}

.swiper-about .number cite {
    position: absolute;
    margin-top: 12px;
    font-size: 12px;
    padding-left: 6px;
    font-style: normal;
}

.swiper-about .intro {
    color: #fff;
    padding-right: 12px;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}


.swiper-about .intro p {
    margin: 6px 0;
    line-height: 1.2;
    font-size: 14px;
}

.swiper-about .more {
    padding-top: 36px;
    display: flex;
}

.swiper-about .more a {
    width: 50px;
    height: 50px;
    background: #009944;
    display: block;
    border-radius: 5px;
    text-align: center;
    margin-left: auto;
}

.swiper-about .more a i {
    font-size: 24px;
    color: #fff;
    line-height: 50px;
}

.swiper-industry-nav {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    background-color: transparent;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .9));
}

.swiper-industry-nav li {
    width: 150px;
    text-align: center;
    color: #fff;
    height: 120px;
    background: rgba(0, 0, 0, .5);
    border-radius: 100px 100px 0 0;
    padding-top: 20px;
    margin: 0 24px;
}

.swiper-industry-nav li img {
    width: 60px;
    height: 60px;
    display: block;
    margin: auto;
}

.swiper-industry-nav li span {
    font-size: 12px;
    color: #009944;
    line-height: 1;
}

.swiper-industry-nav li.active {
    background: #009944;
}

.swiper-industry-nav li.active img {
    color: #fff;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(1000%) contrast(100%);
}

.swiper-industry-nav li span {
    color: #fff;
}


.swiper-industry-content .industry-name {
    padding-bottom: 24px;
}

.swiper-industry-content .industry-name span {
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 40px;
    color: #fff;
    background: #009944;
    display: block;
    border-radius: 5px;
    font-family: impact;
}

.swiper-industry-content .industry-name b {
    font-size: 28px;
    color: #fff;
    font-weight: 500;
    padding-top: 24px;
    display: block;
}

.swiper-industry-content .industry-intro {
    color: #fff;
    line-height: 2;
    text-align: justify;
    text-align-last: left;
}
.swiper-industry-content .industry-intro p{
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 14px;
}
.swiper-industry-content .industry-intro .sub-list {
    padding-top: 12px;
    display: flex;
    flex-wrap: wrap;
}

.swiper-industry-content .industry-intro .sub-list a {
    background: rgba(0,0,0,.5);
    border:1px solid rgba(255,255,255,.3);
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    margin: 6px 6px 12px 0;
    font-size: 12px;
}

.swiper-industry-content .industry-intro .sub-list a i {
    font-size: 18px;
}

.swiper-industry-content .industry-intro .sub-list a:hover {
    background: #009944;
    color: #fff;
}

.swiper-news{
    border-radius: 5px;
    overflow: hidden;
}

.swiper-news-group{

}
.swiper-news-group .news-focus{
    width: 100%;
    height: 50vw;
    background: rgba(255,255,255,.9);
    flex-shrink: 0;
    transition: all .3s;
    position: relative;
    display: block;
    margin-bottom: 12px;
    border-radius: 3px;
    overflow: hidden;

}
.swiper-news-group .news-focus .thumb{
    width: 100%;
    height: 50vw;
}
.swiper-news-group .news-focus p{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px;
    background-color: transparent;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .9));
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
}

.swiper-news-group .news-focus img{
    width: 100%;
    height: 50vw;
    object-fit: cover;
}

.swiper-news-group .news-list{
    background: rgba(255,255,255,.9);
    width: 100%;
    border-radius: 3px;
}
.swiper-news-group .news-list a{
    display: flex;
    padding: 12px;
    align-items: center;
}
.swiper-news-group .news-list a:not(:first-child){
    border-top: 1px solid rgba(0,0,0,.1);
}
.swiper-news-group .news-list a:nth-child(n+4){
    display: none;
}
.swiper-news-group .news-list a .date{
    background: #009944;
    width: 80px;
    flex-shrink: 0;
    border-radius: 3px;
    font-family: num;
    text-align: center;
}
.swiper-news-group .news-list a .date .day{
    font-size: 24px;
    color: #fff;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,.3);
    line-height: 50px;
}
.swiper-news-group .news-list a .date .month{
    font-size: 14px;
    color: #fff;
    display: block;
    line-height: 30px;
}
.swiper-news-group .news-list a .content{
    width: 100%;
    padding-left: 12px;
}
.swiper-news-group .news-list a .title{
    color: #333;
    font-size: 14px;
    height: 44px;
    overflow:hidden;
    line-height: 22px;
    margin-bottom: 6px;
}
.swiper-news-group .news-list a .desc{
    color: #666;
    font-size: 12px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.swiper-news-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.swiper-news-nav li {
    padding: 0 24px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    height: 40px;
    line-height: 40px;
}

.swiper-news-nav a {
    margin-left: auto;
    width: 40px;
    height: 40px;
    background: #009944;
    color: #fff;
    border-radius: 5px;
    display: none;
}
.swiper-news-nav a i{
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    text-align: center;
    font-size: 24px;
}
.swiper-news-nav li.active {
    background: #009944;
    color: #fff;
    border-color: #009944;
    font-weight: bold;
}

.swiper-page-footer {
    height: 100vh;
    background-image: url("https://chainfount.oss-cn-shanghai.aliyuncs.com/20260202/ViJ6Eh4Zak275pWUOeXgAozbkCpyYXaX.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}
.swiper-page-footer .inner{
    max-width: 100% !important;
}
.swiper-page-footer video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}
.swiper-page-footer .footer-flex{
    height: 100%;
    background: rgba(0,0,0,.5);
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.swiper-page-footer .footer-flex .slogan{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.8);
    font-size: 4vw;
    padding: 12px;
}
.swiper-page-footer .footer-flex .slogan p{
    display: block;
    padding: 24px 0;
    text-align: center;
}

.swiper-page-footer .footer{
    background: rgba(0,0,0,.5);
    border-top: none;
}
.swiper-page-footer .footer .copyright{
    color: rgba(255,255,255,.8);
    padding: 24px 0;
}
.swiper-page-footer .footer .copyright a{
    color: rgba(255,255,255,.8);
}

.article-detail-title {
    font-size: 18px;
    line-height: 1.2;
    padding: 12px 0;
    font-weight: bold;
    text-align: center;
}

.article-detail-info {
    border-top: 1px dotted #f0f0f0;
    display: flex;
    align-items: center;
    color: #555;
    padding:  12px 0;
    font-size: 12px;
    line-height: 24px;
    justify-content: center;
}

.article-detail-info .iconfont {
    font-size: 16px;
}

.article-detail-info .iconfont:nth-child(2) {
    padding-left: 12px;
}