@charset "UTF-8";
html {
    line-height: 1.5;
}

body {
    overflow-y: scroll;
    font-family: Roboto, Noto, Helvetica, Arial, sans-serif;
}

a {
    text-decoration: none;
    color: #222;
}
.cus-color-theme{
    background-color: #ED7C02;
}
.cus-text-color-theme{
    color: #ED7C02!important;
}
img.fluid{
    width: 100%;
}
img.fit{
    height: 100%;
    object-fit: cover;
}
.flex {
    display: flex;
}

.flex .flex-item {
    flex: 1;
}

/*home.css*/
.cus-container {
    width: 1200px;
    position: relative;
}

.cus-relative {
    position: relative;
}
.cus-block{
    display: block;
}

/*content-close.css*/
.content {
    min-height: calc(100vh - 195px);
}

.content #logo {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 2s ease;
}

.content #logo img {
    width: 500px;
    transition: all 2s ease;
}

.content #search {
    max-width:0;
    height: 38px;
    position: absolute;
    top: -40px;
    right: 0;
    background-color: #fff;
    border: 1px solid #ED7C02;
    border-radius: 25px;
    padding-left: 10px;
    overflow: hidden;
    opacity: 0;
    transition: all 2s ease;

}
.content.content-open #search {
    opacity: 1;
    max-width: 335px;
    top: 40px;
    transition-delay: .8s;
}
.content #search .search-btn {
    position: absolute;
    top: 1px;
    right: 1px;
}
.content #search input.search-in {
    width: 280px;
    height: 34px;
    background: none;
    border: none;
    outline: none;
}

/*navbar-menu*/
.content #navbar {
    width: 100%;
}
.content #navbar .menu-item {
    position: relative;
}
.content #navbar .menu-item .cus-children-menu{
    width: calc(100% - 1px);
    max-height: 0;
    background-color: rgba(3,65,104,.9);
    position: absolute;
    top: auto;
    bottom: 50px;
    left: 0;
    z-index: 1999;
    overflow: hidden;
}
.content.content-open #navbar .menu-item .cus-children-menu{
    top: 50px;
    bottom: auto;
}
.content #navbar .menu-item:hover .cus-children-menu{
    max-height: 360px;
}
.content #navbar .menu-item .cus-children-menu>a{
    line-height: 40px;
    color: #fff;
}
.content #navbar .menu-item .cus-children-menu>a:hover{
    background-color: rgba(237,124,2,.8);
}

.content #navbar .menu-item .label {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    background-color: #034168;
    text-align: center;
    color: #fff;
    font-weight: 500;
    margin-right: 1px;
}
.content #navbar .menu-item .label.active,
.content #navbar .menu-item .label:hover {
    background-color: #ED7C02;
}

/*常动动画*/
@keyframes yongMore {
    0%{transform: translateY(5px);}
    50%{transform: translateY(-5px);}
    100%{transform: translateY(5px);}

}
.content #navbar .nav-toggle-btn {
    width: 50px;
}
.content #navbar .nav-toggle-btn-icon{
    transition: transform 1s ease;
    animation: yongMore 1s infinite forwards;
}
.content.content-open #navbar .nav-toggle-btn-icon{
    transform: rotate(180deg);
}

/*content-open.css*/
.content.content-open #logo {
    top: 20px;
    left: 0;
    transform: translateX(0);
}

.content.content-open #logo img {
    width: 400px;
}

.content #info-content{
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 2s ease;
}
.content.content-open #info-content{
    max-height: 100%;
    opacity: 1;
}
.content #t-b-toggle {
    width: 100%;
    position: relative;
    top:calc(100vh - 160px);
    transition: all 2s ease;
    z-index: 3300;
}
.content.content-open #t-b-toggle{
    top: 110px;
}

/*swiper*/
@keyframes bannerTran {
    0% {
        transform: scale(1.1, 1.1);
    }
    50% {
        transform: scale(1, 1);
    }
    100% {
        transform: scale(1.1, 1.1);
    }
}

#bg-banner {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

#banner-swiper .banner-item {
    height: 100vh;
}

#banner-swiper .banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#banner-swiper .banner-item.swiper-slide-active img {
    animation: bannerTran 22s ease infinite forwards;
}

#hot-news-swiper .swiper-slide {
    height: 370px;
    background-color: #eee;
    background-size: cover;
    background-repeat: no-repeat;
}

.swiper-slide .c-txt {
    width: 100%;
    height: 44px;
    line-height: 44px;
    background-color: rgba(0, 0, 0, .2);
    color: #eee;
    position: absolute;
    bottom: 0;
    left: 0;
}

.swiper-container .hotnews-btn {
    width: 30px;
    height: 60px;
    line-height: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(-30px);
    transition: transform 0.3s;
    z-index: 1009;
}

.swiper-container .hotnews-btn.next {
    left: auto;
    right: 0;
    transform: translateY(-50%) translateX(30px);
}

.swiper-container:hover .hotnews-btn {
    transform: translateY(-50%) translateX(0);
}

#hot-news-swiper .swiper-pagination {
    width: 80px;
    height: 30px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: .8;
}

.swiper-pagination-bullet-active {
    background: #EC7C02;
}
#openinfo-news{
    height: 80px;
}

/*cus-mdui.css*/
.mdui-list-item:hover{
    background:none!important;
}
.mdui-list-item.cus-hover-color:hover .mdui-list-item-title,
.mdui-list-item.cus-hover-color:hover .mdui-list-item-content,
.mdui-list-item.cus-hover-color:hover .c-text{
    color:#ED7C02 !important;
}


.cus-date-max {
    min-width: 60px;
}

.cus-date-min {
    min-width: 100px;
}

.mdui-tab-indicator {
    display: none;
}


/*hover-show*/
.cus-list-item-active .mdui-list-item-icon,
.cus-list-item-active .mdui-list-item-title{
    color:#ED7C02 ;
}

.cus-nav-left-item{
    background-color:#f5f5f5;
    margin-bottom: 1px;
}
.cus-nav-left-item:hover,
.cus-nav-left-item.active{
    background: #ED7C02!important;
    color: #fff;
}
.cus-min-height{
    min-height: calc(100vh - 260px);
}
/*footer*/
#footer {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 14px;
    transition: all 1s ease;
    z-index: 8999;
}

#footer.content-open {
    position: relative;
    top: 115px;
}
