.container-fluid {
    padding: 0 10%;
}

/*页面元素从下到上出现动画效果*/
@keyframes slideInTop {
    from {
        transform: translateY(100%); /* 从屏幕底部开始 */
        opacity: 0; /* 初始透明度为0 */
    }
    to {
        transform: translateY(0); /* 移动到最终位置 */
        opacity: 1; /* 最终透明度为1 */
    }
}

.slideInTop {
    animation-name: slideInTop;
    animation-duration: 1s; /* 动画持续时间 */
    animation-timing-function: ease-out; /* 动画缓动函数 */
    animation-fill-mode: forwards; /* 动画结束后保持最终状态 */
}

/* 三级菜单 */
.sub-menu-2{
    position: absolute;
    right: -100%;
    top: 0;
    width: 200px;
    opacity: 0;
    display: none;
    transition: all .5s ease;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
.sub-menu-2 li{
    display: block !important;
}
.sub-menu-pr{
    position: relative;
}
.sub-menu-pr:hover .sub-menu-2{
    display: block;
    opacity: 1;
}

/* guanfeng banner */
.main-slider {
    position: relative;
    display: block;
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 10;
}
.main-slider.style1 {
    margin-top: 0px;
}

.main-slider .slide {
    position: relative;
    display: block;
    overflow: hidden;
    /* padding: 215px 0px; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 90vh;
}
.main-slider .slide .banner-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.main-slider .slide .banner-bottom{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50% ,80px);
    padding: 0 10%;
    color: #f2f2f2;
    /* column-gap: 20px; */
    opacity: 0;
    transition: all .4s ease-in-out .1s;
}
.main-slider .slide .banner-bottom .row{
    display: flex;    
    justify-content: space-between;
    flex-direction: row;
    padding: 25px 35px ;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px 8px 0 0;
    transition: all .2s ease-in-out;
}
.main-slider .active .banner-bottom{
    opacity: 1;
    transform: translate(-50% , 0);
    transition: all .7s ease-in-out .9s;
}

@media (max-width:992px) {
    .main-slider .slide .banner-bottom{
        display: none;
    }
}
.main-slider .slide .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition: all .8s ease-in-out .4s;
}

.main-slider .slide .image-layer2:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #363b3f, transparent);
    opacity: 0.7;
    content: "";
    z-index: -1;
}

.main-slider .active .slide .image-layer {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.main-slider .content {
    position: relative;
    z-index: 11;
}

.main-slider.style1 .content {
    position: relative;
    display: block;
    width: 100%;
}

.main-slider .auto-container {
    position: relative;
    overflow: hidden;
}

.main-slider .content h5 {
    font-size: 16px;
    line-height: 28px;
    font-weight: 700;
    text-transform: none;
    opacity: 0;
    transform: translateY(80px);
    transition: all .4s ease-in-out .1s;
    font-family: 'Poppins', sans-serif;
}

.main-slider .content h5 span {
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.main-slider .active .content h5 {
    opacity: 1;
    transform: translateY(0px);
    transition: all .4s ease-in-out .3s;
}

.main-slider .content h2 {
    position: relative;
    text-shadow: 0 3px 0 rgba(0, 136, 208, 0.1);
    /* background: linear-gradient(to bottom, white, white, #7eaaf5); */
    /* -webkit-background-clip: text; */
    color: white;
    font-size: 70px;
    line-height: 1.1;
    font-weight: 700;
    opacity: 0;
    transform: translateY(80px);
    transition: all .4s ease-in-out .1s;
}
.main-slider .active .content h2 {
    opacity: 1;
    transform: translateY(0px);
    transition: all .7s ease-in-out .5s;
}
.main-slider .content p{
    opacity: 0;
    transform: translateY(80px);
    transition: all .4s ease-in-out .1s;
    width: 80%;
}
.main-slider .active .content p {
    opacity: 1;
    transform: translateY(0px);
    transition: all .7s ease-in-out .7s;
}

.main-slider .content h2 .round {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}
.main-slider .content .btns-box {
    position: relative;
    opacity: 0;
    transform: translateY(80px);
    transition: all .4s ease-in-out .9s;
}

.main-slider .content .btns-box a {
    line-height: 60px;
}

.main-slider .content .btns-box a.marleft {
    margin-left: 16px;
}
.main-slider .active .content .btns-box {
    opacity: 1;
    transform: translateY(0px);
    transition: all .7s ease-in-out .7s;
}

.main-slider .owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    opacity: 0;
    transform: scale(1.0);
}

.main-slider:hover .owl-theme .owl-nav {
    opacity: 1;
    transform: scale(1.0);
}

.main-slider .owl-theme .owl-prev span,
.main-slider .owl-theme .owl-next span {
    display: block;
}

.main-slider .owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: 50px;
    top: 0;
    transform: rotate(180deg);
    background: #ffffff;
    border: 2px solid #ffffff;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    text-align: center;
    color: #353742;
    font-size: 25px;
    line-height: 56px;
    font-weight: 400;
    opacity: 1;
    margin: 0;
    padding: 0;
    margin-top: -30px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-slider .owl-theme .owl-nav .owl-next {
    position: absolute;
    right: 50px;
    top: 0;
    background: #ffffff;
    border: 2px solid #ffffff;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    text-align: center;
    color: #353742;
    font-size: 25px;
    line-height: 56px;
    font-weight: 400;
    opacity: 1;
    margin: 0;
    padding: 0;
    margin-top: -30px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.banner-bottom{
    position: absolute;
    bottom: 0;
}
.banner-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: 70px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    line-height: 0;
    /* display: none; */
}

.banner-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline;
    height: 20px;
    width: 20px;
    line-height: 17px;
    text-align: center;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 50%;
    margin: 10px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.banner-carousel .owl-dots .owl-dot span {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
}

.banner-carousel .owl-dots .owl-dot.active {
    background-color: #F6C715;
    border-color: #F6C715;
}
.main-slider .content .btns-box .btn-donate {
    font-size: 17px;
    border-radius: 500px;
    padding: 15px 40px;
    line-height: 1.3;
    font-weight: 700;
    color: white;
    background: #F6C715;
    border: 2px solid #F6C715;
}
.banner-bottom-des{
    color: white;
}
.banner-bottom-des h6{
    color: white;
    font-size: 18px;
    margin-bottom: 12px;
}
.banner-bottom-des p{
    color: white;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}
.btn-a{
    display: inline-block;
    color: white;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 14px -7px #F6C715;
    background: linear-gradient(45deg, #ff512f 0%, #F6C715 51%, #ff512f 100%);
    background-size: 200% auto;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    transition: 0.5s;
}
.btn-a-blue{
    box-shadow: 0px 0px 14px -7px #002f72;
    background: linear-gradient(45deg, #01215c 0%, #002f72 51%, #01215c 100%);
}
.btn-a:hover {
    color: white;
    background-position: right center;
}

/* index-about-img */
.index-about-img-item{
    border-bottom: 5px solid white;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
}
.index-about-img-item img{
    width: 100%;
}
.index-about-img-item:hover {
    border-bottom: 5px solid #DF1A12;
}
/* index-pro */
.pro-categories-check ul{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.pro-categories-check .nav-link{
    background: #fff;
    border: none;
    width: 160px;
    height: 120px;
    font-size: 20px;
    font-weight: 700;
    color: #1B1F2E;
    box-shadow: 0px 0px 14px -7px #e2e2e2;
    border-radius: 10px;
    letter-spacing: .3px;
    margin-bottom: 10px;
    transition: background 0.4s ease-in-out;
}
.pro-categories-check .nav-link.active,
.pro-categories-check .nav-link:hover{
    box-shadow: 0px 0px 14px -7px #fa251e;
    background: linear-gradient(45deg, #DF1A12 0%, #fc2a23 51%, #DF1A12 100%);
    color: white;
}
.pro-item{
    margin-bottom: 30px;
}
.pro-item-img a{
    display: block;
    width: 100%;
    overflow: hidden;
}
.pro-item-img img{
    width: 100%;
}
.pro-item-detail{
    background-color: #081630;
    padding: 25px;
    border: 1px solid #e2e2e2;
}
.pro-item-title h6{
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.btn-test a{
    color: white;
    position: relative;
}
.btn-test a::before{
    position: absolute;
    left: 0;
    bottom: -5px;
    content: '';
    width: 0%;
    height: 2px;
    color: #F6C715;
    background-color: #F6C715;
    transition: all 0.4s ease-in-out;
}
.btn-test a:hover::before {
    width: 100%;
}
.pro-item:hover .btn-test a::before {
    width: 100%;
}
.pro-item:hover .pro-item-img img{
    transform: scale(1.1);
}
.pro-item:hover .pro-item-detail{
    background-color: #a10500;
    box-shadow: 0px 0px 20px 3px #dfdfdf;
}
.index-ad-area{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.index-news-head{
    background-color: #c40700;
    position: relative;
}
.index-news-head::before{
    position: absolute;
    content: '';
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 10px solid #c40700;
}
.blog-text .btn-test a{
    color: #888888 !important;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
}
.blog-text .btn-test a::before{
    background-color: #DF1A12 !important;
}
/*index2*/
.work-area {
    background-color: #f6f7f8;
}

.main-menu-area {
    background-color: #081630 !important;
    color: white !important;
}

.work-area-box {
    /*background-color: #081630;*/
    width: 100%;
    /*height: 200px;*/
}

.work-area .slick-track {
    display: flex;
    align-items: center;
    justify-content: center;
}
.work-area .slick-slide img {
    max-width: 100%;
    max-height: auto;
}
.work-area div img{
    transition: all 0.2s ease-in-out;
}
.work-area div img:hover{
    transform: scale(1.15);
}
.index-3 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.services-area .slick-list{
    /*height: auto !important;*/
}
/*首页logos排列*/
.logo-items{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.logo-item {
    width: 10%;
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    align-items: center;
    margin-right: 2.5%;
}
@media (max-width:992px) {
    .logo-item {
        width: 20%;
        margin-right: 0.5%;
    }
}
@media (max-width:600px) {
    .logo-item {
        width: 30%;
        margin-right: 0.5%;
    }
}
@media (max-width:456px) {
    .logo-item {
        width: 40%;
        margin-right: 0.5%;
        margin-top: 15px;
    }
}
.logo-item:nth-last-child(1){
    margin-right: 0;
}

.logo-item-img{
    width: 100%;
    padding: 16px;
    border-radius: 50%;
    border: 3px solid white;
    /*background-color: wh;*/
}
.logo-items img{
    width: 100%;
}
.logo-item-des{
    font-weight: 600;
    color: white;
    margin-top: 10px;
    max-width: 78px;
    word-wrap: break-word;
    display: flex;
    justify-content: center;
    width: 100%;
}
/*about*/
.firm-img {
    width: 100%;
    height: 50vh;
    background-position: center;
    background-repeat: no-repeat;
}
.about-img-item{
    padding: 15px;
    border-radius: 5px;
    background-color: #F6F6F6;
}

/*product*/
::marker{
    font-size: 0;
}
.pro-category{
    background: #F6F6F6;
    margin-bottom: 50px;
    padding-bottom: 20px;
}
.pro-category h5{
    font-size: 20px;
    font-weight: 600;
    background: #081630;
    padding: 20px;
    color: #fff;
}
summary {
    user-select: none;
    outline: 0;
}
summary dt {
    padding: 20px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 5px;
    background-color: #ffffff;
    color: #081630;
    text-transform: capitalize;
}
details li a{
    text-transform: capitalize;
}

.pro-category a, .archive a {
    display: block;
    color: #191919;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    padding: 20px 20px 20px 40px;
}
.product-section .pro-item-detail{
    border: none;
    padding: 13px;   
}
.product-section img{
    border: 1px solid #eee;
}
.product-section .pro-item-title h6{
    color: #222;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: .5px;
}
.product-content .b-services-img {
    width: 100%;
    height: 270px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-content .b-services-img img{
    max-height: 255px;
}
.selectBtn{
    width: 100%;
    height: calc(2.875rem + 2px);
    border: 1px solid #ced4da ;
    border-radius: .3rem;
    padding: .5rem 1rem;
}
.selectBtn option:hover{
    background-color: #DF1A12 !important;
}
.b-services-content-p{
    padding: 10px;
    border-top: 1px solid #eee ;
    background-color: #05429A;
}
.b-services-content-p h3{
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
    font-weight: 400;
    color: white;
    letter-spacing: 0.8px;
    line-height: 1.2;
}
.b-services-content-p p{
    margin-bottom: 0;
    line-height: 20px;
    color: white;
}
.services-area-p .sy-cp:hover h3{
    color: white !important;
    transform: scale(1.05);
}
.services-area-p .sy-cp:hover .b-services-content-p{
    background-color: #C3003A;
}
.paginations ul{
    display: flex;
    flex-wrap: wrap;
}
.paginations ul li{
    background-color: #081630;
    margin-right: 20px;
    width: 37px;
    height: 37px;
    line-height: 37px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}
.paginations ul li a{
    display: inline-block;
    width: 100%;
    height: 100%;
    color: white;
    transition: 0.3s;
}
.paginations ul li:hover{
    background-color: #DF1A12;
    color: white;
    font-weight: 900;
}
.thisclass{
    background-color: #DF1A12 !important;
    color: white !important;
    font-weight: 900;
}
.pro-ar-more .slick-list{
    max-height: 500px;
}

.blog-text {
    box-shadow: 0 0 60px 0 rgba(215, 215, 215, 0.5);
    transition: all 0.5s ease-in-out;
}

.blog-text:hover {
    transform: scale(1.05);
}

/*feedback*/
.contact-way-item{
    border: 2px solid #eaeaea;
    transition: all 0.5s ease;
    /* height: 50px; */
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.contact-way-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #eaeaea;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.contact-way-icon .iconfont{
    font-size: 40px;
    color: #DD1A12;
}
.contact-des-title {
    font-size: 22px;
    color: #0b2e13;
    font-weight: 600;
    margin-bottom: 30px;
}
.contact-item-des p{
    letter-spacing: 0.5px;
    font-size: 15px;
    padding: 0 20px;
    height: 50px;
    text-align: center;
}
.contact-way-item:hover{
    border: 2px solid #DF1A12;
}
.contact-way-item:hover .contact-way-icon{
    border: 2px solid #DF1A12;
}

.feedback-btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    height: 60px;
    background: linear-gradient( to right, #C3003A,#DF1A12) ;
    border: 1px solid #fff;
    border-radius: 8px;
    font-size: 20px;
    letter-spacing: 0.5px;
    font-weight: 650;
    color: #FFF;
    transition: background 0.5s ease;
}
.feedback-btn:hover {
    background: linear-gradient(to right, #F6C715, #ffc800);
}
/*footer 修改*/
.footer-link ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.footer-link ul li{
    width: 33.3%;
}

/*产品搜索*/
.hidden {
    display: none;
}

.search-area {
    width: 100%;
    /*background-color: #f6f7f8;*/
    padding: 30px 0 20px;

}

.search-area p {
    color: #DF1A12;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.search-area input, .search-area button {
    height: 35px;
}

.search-area .inputAndBtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-btn {
    margin-left: 10px;
    width: 2.875rem;
    height: 2.875rem;
    display: flex;
    justify-content: center;
    border: none;
    align-items: center;
    background-color: #DF1A12;
    color: #fff;
    border-radius: 5px;
}

.search-area button:active {
    box-shadow: 0 0 5px .2rem rgba(255, 0, 0, 0.1);
}

.search-area input:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 0, 0, 0.1) !important;
    border-color: rgba(255, 0, 0, 0.1) !important;
}
