@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: #0769a9;
}
.cus-text-color-theme{
    color: #0769a9!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: 150px;/* bgg top: 310px;*/ 
    left: 50%;
    transform: translateX(-50%);
    transition: all 2s ease;
}

.content #logo img {
    width: 600px;
    transition: all 2s ease;
}

.content #search {
    max-width:0;
    height: 38px;
    position: absolute;
    top: -40px;
    right: 0;
    background-color: #fff;
    border: 1px solid #0769a9;
    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: #c00e16;
    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: #0769a9;
}

/*常动动画*/
@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: 500px;
}

.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;/*bgg top: 205px;*/ 
}

/*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:#0769a9 !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:#0769a9 ;
}

.cus-nav-left-item{
    background-color:#f5f5f5;
    margin-bottom: 1px;
}
.cus-nav-left-item:hover,
.cus-nav-left-item.active{
    background: #0769a9!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; /* bgg top: 220px;*/ 
}

/*分页样式*/
.page_main{ clear: both; text-align: center; overflow: hidden; }
.page { display: inline-block; margin: 20px 0; border-right: 1px solid #ddd; border-radius: 6px; overflow: hidden; }
.page:empty{ display: none; }
.page a, .page span {float: left; padding: 0 5px; min-width: 35px; line-height:35px; text-align: center; border: 1px solid #ddd; border-right: 0; color: #888; }
.page a{ color: #333; }
.page a:link, .page a:visited { text-decoration:none; }
.page a:hover { background: #eee; }
.page .current{ color:#FFF; background: #c00e16; border-color: #c00e16; border-left: 1px solid #ddd; }
.page #total{color:red}


/*信息*/
.InfoTitle{ font-weight:normal; vertical-align:middle; }
.InfoTitle h1{ font-size:28px; line-height: 1.5em; font-weight:normal;}
.InfoTime{ color:#999; }
.InfoAttachment{ padding:10px 0px; text-align:center; width:81px; margin:0 auto;}
.InfoPicture{ text-align: center;}
.InfoPicture img{ width:100%; display: block;}
.info_from_wrap{ padding:0 10px; text-align:center; color:#999; border:0px dashed #ccc; line-height:30px; margin: 10px 0;}
.info_from_wrap a:hover { color:#555; }
#ReadLevelTip{ font-weight:bold; color:red;}
.Tag{ text-align: left; font-weight:bold; }
.Tag a{ padding:0 3px; font-weight:normal; text-decoration:none;}
.info_previous_next_wrap{ display: flex; margin-top: 20px; justify-content: space-between; flex-wrap: wrap; }
.Next,.Previous{ padding: 5px 15px; margin: 5px 0; border: 1px solid #ddd; border-radius: 50px; display: inline-block; transition-duration: .5s; }
.Next b,.Previous b{ font-weight: normal; }
.Next:hover,.Previous:hover{ box-shadow: inset 0 0 20px rgba(0,0,0,.1); }
.Previous{ }

.infodetail .InfoTitle{ text-align: center; }
.infodetail .InfoContent{ line-height: 2em; text-align: justify; }
/*==========@@元件 结束@@==========*/
.right_title {}
.right_title h2 { font-size:30px; font-weight:normal; text-align:center; padding:15px 0; color:#333;   }
.right_title h2 img{ margin:0 10px; height: 0; border-bottom: 1px solid #999; width: 45px; opacity: .8; }
.right_body { padding:5px 0px; zoom:1; border-top:0; border-bottom:0 }
.right_bottom {}

/*频道*/
.ChannelContent{ 
    font-size: 18px;
    font-family: 微软雅黑, "Microsoft YaHei";}
.ChannelContent a{ color: #ff9d02}
.ChannelSContent{ }
.ChannelSContent a{ color: #ff9d02}
.ChannelContent img, .ChannelSContent img, .InfoContent img{ max-width:100%; height:auto !important; }
.ChannelContent img{width:100%}
	/*下载模型列表*/
	.grid-downloadlist{ padding: 0; }
	.grid-downloadlist li{ width: 50% !important; }
	.grid-downloadlist .InfoWrap{ margin: 5px; }
	.grid-downloadlist .InfoWrap p{ padding: 10px; }
/*按钮*/
.btn { display: inline-block; padding: 6px 12px; font-weight: 400; line-height: 1.42857143; overflow: hidden; background: #04a07b; color: #FFF;
	text-align: center; white-space: nowrap; vertical-align: middle; -ms-touch-action: manipulation; touch-action: manipulation;
	cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
	background-image: none; border: 1px solid transparent; border-radius: 4px; -webkit-appearance: none; appearance: none; }
