html {
    min-width: 1200px;
}

.pagewd {
    margin: 0px auto;
}

.banner-img {
    display: block;
    width: 100%;
    height: 100%;
}

.swiper-button-prev, .swiper-button-next {
    position: absolute;
    top: 50%;
    width: 70px;
    height: 70px;
    /*margin-top: -235px; !* Half of the height *!*/
    z-index: 10;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-prev {
    background-image: url("../../images/swiper-btn-next.png");
    left: 60px;
    transform: rotate(180deg);
}

.swiper-button-next {
    background-image: url("../../images/swiper-btn-next.png");
    right: 60px;
}

/*关于我们*/
.index-container-box {
    padding: 76px 0 56px;
    position: relative;

}

.index-container-box .title {
    color: #009B52;
    font-size: 30px;
    position: relative;
    padding-bottom: 14px;
    font-weight: bold;
    line-height: 1;
}

.index-container-box .title.center {
    text-align: center;
}

.common-subtitle {
    font-size: 16px;
    color: #999999;
    text-align: center;

    white-space: nowrap; /* 防止换行 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 添加省略号 */
}


.product-banner-item {
    color: #999999;
    width: 25%;
    padding: 0 40px;
}


.product-banner-item .pro-img {
    display: block;
    width: 120px;

    height: 120px;
    border-radius: 120px;
    object-fit: cover;
    margin: 0 auto;
}

.product-banner-item .title {
    font-weight: bold;
    padding: 39px 0 14px;
    font-size: 20px;
    line-height: 1;
    position: relative;
    white-space: nowrap; /* 防止换行 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 添加省略号 */

    text-align: center;
    color: #333;
}


.product-banner-item .title:after {
    display: block;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    position: absolute;

}

.product-banner-item .desc {
    height: 36px;
    margin-top: 22px;
    line-height: 18px;
    font-size: 16px;

    display: -webkit-box; /* 必须指定display属性 */
    overflow: hidden; /* 必须指定overflow属性 */
    text-overflow: ellipsis; /* 显示省略号 */
    -webkit-line-clamp: 2; /* 最多显示的行数 */
    -webkit-box-orient: vertical; /* 必须指定box-orient属性 */

    text-align: center;
}

.product-banner-item .arrow {
    margin-top: 22px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 20px;
    border: 1px solid #5f5f5f;
    border-radius: 2px;
    color: #5f5f5f;
}

.history-big-box {
    width: 50%;
    position: relative;
    display: block;
}

.history-big-box img {
    width: 100%;
    height: 230px;
    display: block;
    object-fit: cover;
}

.history-big-box .bottom-box {
    height: 170px;
    background: #F8F8F8;
    padding: 0 15px;
    box-sizing: border-box;
    font-size: 15px;
    color: #999999;

}

.history-big-box .title {
    font-size: 20px;
    color: #111111;
    padding: 30px 0 17px;
    line-height: 1;
    white-space: nowrap; /* 防止换行 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 添加省略号 */

}

.history-big-box:hover .title {
    color: #008647;
}

.history-big-box .desc {
    font-size: 15px;
    color: #999999;
    box-sizing: border-box;
    line-height: 20px;
    height: 60px;

    display: -webkit-box; /* 必须指定display属性 */
    overflow: hidden; /* 必须指定overflow属性 */
    text-overflow: ellipsis; /* 显示省略号 */
    -webkit-line-clamp: 3; /* 最多显示的行数 */
    -webkit-box-orient: vertical; /* 必须指定box-orient属性 */
}

.history-big-box .time {

    text-align: right;


}

.history-list-box {
    width: 50%;
    padding-left: 20px;
}


.history-item {
    margin-top: 20px;
    display: block;
    background-color: #F8F8F8;
    padding: 26px;
}

.history-item:hover .history-content .history-title {
    color: #009B52;

}

.history-item:nth-child(1) {
    margin-top: 0px;
}

.history-item .time-box {
    width: 88px;
    height: 68px;
    background: #CACACA;
    transition: all ease 0.3s;
}

.history-item:hover .time-box {
    background: #009B52;

}

.history-item .time-box .year {
    font-weight: bold;
    font-size: 25px;
    line-height: 1;
    color: #fff;
    text-align: center;
    padding-top: 15px;
}

.history-item .time-box .md {
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 1;
    padding-top: 9px;
}

.history-item:hover .time-box .year, .history-item:hover .time-box .md {
    color: #fff;
}

.history-content {
    width: 440px;
    padding: 0 25px;
}

.history-content .history-title {
    font-weight: bold;
    font-size: 16px;
    color: #111111;

    white-space: nowrap; /* 防止换行 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 添加省略号 */
}

.history-content .history-desc {
    margin-top: 8px;

    height: 38px;
    font-size: 16px;
    color: #999999;
    line-height: 19px;


    display: -webkit-box; /* 必须指定display属性 */
    overflow: hidden; /* 必须指定overflow属性 */
    text-overflow: ellipsis; /* 显示省略号 */
    -webkit-line-clamp: 2; /* 最多显示的行数 */
    -webkit-box-orient: vertical; /* 必须指定box-orient属性 */

}

.honor-img-box {
    width: 288px;
    height: 192px;
    height: 432px;
    margin-left: 16px;
}

.honor-img-box:nth-child(1) {
    margin-left: 0px;
}

.honor-img {
    display: block;
    width: 288px;
    height: 192px;
    height: 432px;
    object-fit: cover;


    /*-webkit-box-reflect: below 0px linear-gradient(transparent, rgba(0, 0, 0, .4));*/
}

.category-box {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-item:nth-child(1) {
    margin-left: 0px;
}

.category-item.current {
    color: #fff;
    position: relative;
    background: #008647;
    border-radius: 0px 8px 0px 8px;
}

.category-item {
    font-size: 16px;
    color: #999999;
    line-height: 42px;
    min-width: 96px;
    box-sizing: border-box;
    padding: 0 20px;
    background-color: #fff;

    cursor: pointer;
}

.product-item {
    width: 370px;
    height: 400px;
    background: #FFFFFF;
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    padding: 30px 49px;
    margin-left: 45px;
    margin-top: 50px;
    transition: all ease 0.3s;

}

.product-item:nth-child(3n+1) {
    margin-left: 0px;
}

.product-item:nth-child(1), .product-item:nth-child(2), .product-item:nth-child(3) {
    margin-top: 0px;
}

.product-item .product-img {
    width: 272px;
    height: 272px;
    background: #FFFFFF;
    border: 2px solid #F3F3F4;
    display: block;
    object-fit: contain;
}

.product-item .title {
    font-size: 18px;
    color: #333333;
    line-height: 1;
    padding: 16px 0;
    text-align: center;
}

.product-item .btn-arrow {
    width: 120px;
    height: 34px;
    background: url("../../images/template2/btn-pro-bg.png") no-repeat center #fff;
    background-size: 100% 100%;
    border: 1px solid #E4E4E4;
    border-radius: 1px;

    margin: 0 auto;
}

.product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0px 4px 19px 2px rgb(171 171 171 / 30%)

}

.product-item:hover .btn-arrow {
    background: url("../../images/template2/btn-pro-bg-active.png") no-repeat center #008647;
    background-size: 100% 100%;
    border: none;
    margin: 0 auto;
}

.bar-box {
    height: 320px;
}

.bar-box .title {
    font-weight: bold;
    font-size: 34px;
    color: #FFFFFF;
    text-shadow: 0px 2px 4px rgba(0, 100, 53, 0.3);
    text-align: right;
    line-height: 1;
    padding: 87px 0 29px;
    position: relative;
}

.bar-box .title:after {
    display: block;
    content: '';
    width: 56px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
}
.bar-box .desc {
    font-size: 16px;
    color: #FFFFFF;
    text-shadow: 0px 2px 2px rgba(0,100,53,0.3);
    padding-top: 19px;
    text-align: right;
}
.footer,.footer .footer-content{
    background:#1B1B1B;
}
.footer .footer-bottom{
    background: #0F0F0F;
    color:#fff;
}
