@import "base.css";

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    margin-bottom: 50px;
}

.widget-header .l .title {
    font-size: 40px;
    color: #000000;
    line-height: 1;
}

.widget-header .l .sub-title {
    font-size: 20px;
    color: #666666;
    line-height: 40px;
}

.widget-header .r .en {
    font-size: 40px;
    color: #DFDFDF;
    display: flex;
    height: 80px;
    align-items: center;
    position: relative;
}

.widget-header .r .en::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: #D4B571;
    content: "";
}

.row1 {
    padding: 60px 0 80px;
    background-color: #f8f8f8;
}

.row1 .wrap {
    overflow: hidden;
}

.row1 ul {
    margin: 0 -20px;
    padding: 20px 0 0;
    list-style: none;
    display: flex;
}

.row1 ul li {
    width: 25%;
    padding: 0 20px;
    border-right: 1px dashed #C7E18F;
}

.row2 ul li:last-child {
    border-right: none;
}

.row1 ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 0;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.row1 ul li a:hover {
    transform: translateY(-20px);
}

.row1 ul li a::before {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #8ec31f;
    content: "";
    transition: top 0.2s ease-in-out;
    z-index: 1;
    border-radius: 4px;
}

.row1 ul li a:hover::before {
    top: 0;
}

.row1 ul li a .title {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    line-height: 1;
    position: relative;
    z-index: 2;
}


.row1 ul li a .icon {
    width: 70px;
    height: 70px;
    fill: #8ec31f;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.row1 ul li a .info {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 30px;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    padding: 0 20px;
    height: 120px;
    color: #555555;
    position: relative;
    z-index: 2;
}

.row1 ul li a .more {
    font-size: 14px;
    color: #fff;
    line-height: 2.5em;
    padding: 0 1.5em;
    margin-top: 20px;
    background-color: #8ec31f;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}


.row1 ul li a:hover .title,
.row1 ul li a:hover .info {
    color: #ffffff;
}

.row1 ul li a:hover .icon {
    fill: #ffffff;
}

.row1 ul li a:hover .more {
    background-color: #fff;
    color: #8ec31f;
}

.row2 {
    padding: 80px 0;
}

.row2 .flex .l {
    width: 350px;
    height: 700px;
}

.row2 .flex .r {
    flex: 1;
}

.row2 .flex .l a {
    display: block;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.row2 .flex .l a::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 2;
    background: url('../img/cp_k.png') center bottom no-repeat;
}

.row2 .flex .l a img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    transition: all 0.35s ease-in-out;
}

.row2 .flex .l a:hover img {
    transform: scale(1.1);
}

.row2 .flex .l a .title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    z-index: 2;
}

.row2 .flex .l a .title span {
    font-size: 30px;
    font-weight: bold;
}

.row2 .flex .l a:hover .title span {
    color: #8ec31f;
}

.row2 .flex .l a .title i {
    font-size: 14px;
    font-style: normal;
}

.row2 .flex .r .box {
    overflow: hidden;
}

.row2 .flex .r .box ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.row2 .flex .r .box ul li {
    width: 350px;
    height: 350px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F3F3F3;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.row2 .flex .r .box ul li:nth-of-type(3),
.row2 .flex .r .box ul li:nth-of-type(6) {
    border-right: none;
}

.row2 .flex .r .box ul li:nth-child(n + 4) {
    border-bottom: none;
}

.row2 .flex .r .box ul li img {
    position: relative;
    z-index: 1;
    object-fit: cover;
    max-width: 100%;
}

.row2 .flex .r .box ul li span {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333333;
    z-index: 2;
    background-color: #F3F3F3;
}

.row2 .flex .r .box ul li.active span {
    display: none;
}


.row2 .flex .r .box ul li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.35s ease-in-out;
    transform: scale(0);
    z-index: 3;
    color: #ffffff;
    background-color: rgba(142, 195, 31, 0.9);
    font-size: 22px;
    font-weight: bold;
}

.row2 .flex .r .box ul li.active a {
    transform: scale(1);
    opacity: 1;
}

.row3 {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.row3 .widget-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 240px;
}

.row3 .widget-body ul li {
    display: flex;
    align-items: center;
    padding-left: 30px;
    height: 88px;
    position: relative;
    margin-bottom: 40px;
    cursor: default;
}

.row3 .widget-body ul li:last-child {
    margin-bottom: 0;
}

.row3 .widget-body ul li::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 44px;
    background-color: #8ec31f;
    content: "";
    transition: all 0.35s ease-in-out;
    transform: scaleX(0);
}

.row3 .widget-body ul li.active::before {
    transform: scaleX(1);
}

.row3 .widget-body ul li .img {
    position: relative;
    z-index: 2;
    width: 55px;
    height: 60px;
    margin-right: 14px;
    overflow: hidden;
}

.row3 .widget-body ul li .img img {
    position: absolute;
    top: 0;
    left: 0;
}

.row3 .widget-body ul li.active .img img {
    top: -60px;
}

.row3 .widget-body ul li .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 5px;
}

.row3 .widget-body ul li .info .title {
    font-size: 24px;
    color: #333333;
}

.row3 .widget-body ul li.active .info .title {
    color: #ffffff;
}

.row3 .widget-body ul li .info .en {
    font-size: 12px;
    color: rgba(51, 51, 51, 0.2);
    text-transform: uppercase;
    line-height: 26px;
}

.row3 .widget-body ul li.active .info .en {
    color: rgba(255, 255, 255, 0.8);
}

.row3 .widget-body .c {
    flex: 1;
    text-align: center;
}

.row4 {
    padding: 80px 0;
    position: relative;
}

.row4 .swiper-container {
    z-index: 1;
}

.row4 .swiper-container .swiper-slide{
    overflow: hidden;
}

.row4 .swiper-container .swiper-slide img {
    width: 100%;
    transition: all 0.5s;
}

.row4 .swiper-container .swiper-slide:hover img{
    transform: scale(1.1);
}

.row4 .swiper-menu {
    z-index: 2;
}

.row4 .swiper-menu .swiper-slide{
    border-right: 1px solid #e8e8e8;
}

.row4 .swiper-menu .swiper-slide:last-child{
    border-right: none;
}

.row4 .swiper-menu .swiper-slide::before{
    position: absolute;
    bottom:0;
    left:0;
    width: 100%;
    height: 0;
    content: "";
    background-color: #8ec31f;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.row4 .swiper-menu .swiper-slide .box{
    height: 285px;
    padding: 32px 40px 0;
    position: relative;
    z-index: 2;
    font-size: 14px;
    color: #333;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
}

.row4 .swiper-menu .swiper-slide-thumb-active .box{
    transform: translateY(-50px);
}



.row4 .swiper-menu .swiper-slide .box .img{
    position: relative;
    width: 55px;
    height: 60px;
    overflow: hidden;
}

.row4 .swiper-menu .swiper-slide .box .img img{
    position: absolute;
    top:0;
    left:0;
}

.row4 .swiper-menu .swiper-slide-thumb-active .box .img img{
    top: -60px;
}


.row4 .swiper-menu .swiper-slide .box .title{
    line-height: 40px;
    font-size: 28px;
    font-weight: bold;
    margin-top: 10px;

}


.row4 .swiper-menu .swiper-slide .box .title span{
    color: #8ec31f;
    margin-left: 10px;
}


.row4 .swiper-menu .swiper-slide .box .info{
    font-size: 14px;
    line-height: 22px;
    margin-top: 20px;
}


.row4 .swiper-menu .swiper-slide-thumb-active .box .title,
.row4 .swiper-menu .swiper-slide-thumb-active .box .title span,
.row4 .swiper-menu .swiper-slide-thumb-active .box .info{
    color:#fff;
}

.row4 .swiper-menu .swiper-slide-thumb-active::before{
    height: 375px;
}

.row5 .img{
    height: 200px;
    background: url('../img/fenlan.jpg') center 0 no-repeat;
}


.row6{
    padding: 100px 0 80px 0;
    background: url("../img/service_bg.jpg") center 0 no-repeat;
}

.row6 .widget-body ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.row6 .widget-body ul li{
    width: 20%;
    height: 473px;
    position: relative;
}

.row6 .widget-body ul li::before{
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(137,185,40,0.9);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.row6 .widget-body ul li.active::before{
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.row6 .widget-body ul li .img{
    position: relative;
    z-index: 2;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.row6 .widget-body ul li .img .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.1) 0 3px 10px 3px;
}

.row6 .widget-body ul li .info{
    position: relative;
    z-index: 2;
}

.row6 .widget-body ul li .info .title{

    line-height: 40px;
    text-align: center;
    font-size: 26px;
    color:#555555;
}

.row6 .widget-body ul li.active .info .title{
    color: #ffffff;
}

.row6 .widget-body ul li .info .detail{
    margin-top: 12px;
    height: 110px;
    line-height: 25px;
    text-align: center;
}

.row6 .widget-body ul li.active .info .title,
.row6 .widget-body ul li.active .info .detail{
    color: #ffffff;
}

.row6 .widget-body ul li .info .icon{
    display: block;
    width: 35px;
    height: 35px;
    line-height: 0;
    margin: 0 auto;
    overflow: hidden;
}

.row6 .widget-body ul li .info .icon img{
    width: 35px;
    height: 70px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.row6 .widget-body ul li.active  .info .icon img{
    margin-top: -35px;
}

.row8{
    padding: 80px 0;
}

.row8 .widget-body .flex {
    justify-content: space-between;
}

.row8 .widget-body .l {
    width: 400px;
}

.row8 .widget-body .r {
    width: 970px;
}

.row8 .widget-body .l .box .img {
    display: block;
    padding-bottom: 75%;
    position: relative;
}

.row8 .widget-body .l .box .img-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.row8 .widget-body .l .box img {
    object-fit: cover;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.row8 .widget-body .l .box:hover img {
    transform: scale(1.1);
}

.row8 .widget-body .l .box .text {
    background-color: #8ec31f;
    padding: 30px;
    height: 266px;
}

.row8 .widget-body .l .box .text .title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #ffffff;
    display: block;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
}

.row8 .widget-body .l .box .text .info {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.7;
    line-height: 2em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.row8 .widget-body .l .box .text .btn {
    text-align: right;
}

.row8 .widget-body .l .box .text .more {
    display: inline-block;
    font-size: 14px;
    color: #333333;
    line-height: 2.5em;
    padding: 0 1.5em;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
}

.row8 .widget-body .r ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.row8 .widget-body .r ul li {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
}

.row8 .widget-body .r ul li .icon {
    width: 130px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.row8 .widget-body .r ul li .icon img {
    height: 50px;
}

.row8 .widget-body .r ul li .text {
    padding-left: 18px;
    border-left: 1px solid #e8e8e8;
    height: 80px;
    flex: 1;
}

.row8 .widget-body .r ul li .text .title {
    font-size: 18px;
    color: #1071d5;
}

.row8 .widget-body .r ul li .text .info {
    font-size: 14px;
    line-height: 1.8em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #999999;
    margin-top: 10px;
}

.row9{
    padding: 50px 0;
    background-color: #f8f8f8;
}
.row9 .widget-body{
    display: flex;
    margin-top: 3rem;
    overflow: unset;
}

.row9 .widget-body .l{
    flex: 1;
    margin-right: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.row9 .widget-body .l .detail{
    margin-bottom: 1rem;
    font-size: 18px;
    line-height: 2;
    text-indent: 2em;
    text-align: justify;
    color: #333;
}

.row9 .widget-body .l .more {
    display: flex;
    margin-top: 1rem;
}

.row9 .widget-body .l .more a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    background: #94BF3C;
    color: #ffffff;
    font-size: 14px;
    padding: 0 2em;
    border-radius: 2px;
}

.row9 .widget-body .l .more a:hover {
    background: #7BAA32;
}

.row9 .widget-body .r{
    width: 640px;
    display: flex;
    align-items: center;
    height: 360px;
    position: relative;
}

.row9 .widget-body .r video{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}