/* 初始化 */
* {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    list-style: none;
    text-decoration: none;
    font-family: "微软雅黑";
}

a {
    color: #999;
}

/* 字体图标引用 */
@font-face {
    font-family: "icomoon";
    src: url(../icomoon/fonts/icomoon.ttf);
}

body {
    background-color: #eee;
}

/* 主体盒子 */
.app_box {
    width: 100%;
}

/* 头部主体 */
.header {
    width: 100%;
    height: 125px;
    background-color: #fff;
    background-repeat: repeat-x;
    background-position: 50% 55%;

}

/* 清除浮动 */
.clear {
    overflow: hidden;
    /* clear: both; */
}

/* logo容器 */
.logo_box {
    position: relative;
    top: 15px;
    width: 1300px;
    height: 100px;
    margin: 0 auto;
}

/* logo标志 */
.logo_main {
    float: left;
    display: inline-block;
    width: 100px;
    height: 100px;
    background-image: url(../images/logo_main.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/* logo文本 */
.logo_text {
    float: left;
    display: inline-block;
    width: 230px;
    height: 100px;
    background-image: url(../images/logo_text.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
}

/* 单位名称 */
.unit_text {
    /* float: right; */
    margin: 25px 0 0 0;
    color: #000;
    font-size: 48px;
    font-weight: bold;
    display: inline-block;
    line-height: 50px;
    width: 530px;
    height: 50px;
    padding-left: 30px;
    border-left: #000 5px solid;

}

/* 列表背景 */
.nav_big_box{
    position: relative;
    width: 100%;
    height: 55px;
}
.nav_bg {
    position: absolute;
    width: 100%;
    height: 55px;
    background-color: #0B2E58;
    z-index: 100;
}

/* 列表盒子 */
.nav_box {
    /* position: absolute; */
    width: 1300px;
    height: 55px;
    margin: 0 auto;
}

/* 列表排版 */
.nav_list {
    float: left;
    display: inline-block;
    width: 185px;
    height: 55px;
    overflow: hidden;
    transition: all .8s;

}

/* 超链接宽高 */
.nav_list a {
    display: block;
    width: 185px;
    height: 55px;
    text-align: center;
    line-height: 55px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    background-color: #0B2E58;
}

/* 浮于导航栏上方改变背景颜色 */
.nav_list a:hover {
    background-color: #EBAF57;

}

/* 浮于导航栏上方改变高 */
.nav_list:hover {
    height: 170px;
}

/* 大banner */
#big_banner_box {
    position: relative;
    width: 100%;
    height: 380px;
    margin: 0 auto;
    overflow: hidden;
    z-index: 20;
}
/* 画布 */

.bigBanner_draw_01 {
    width: 100%  !important;
    height: 380px  !important;
    background-image: url(https://img.c66s.top/images/banner/big_banner01.jpg) !important;
    background-position: center center  !important;
    background-repeat: no-repeat  !important;
    background-size: cover  !important;
    transition: background-image 2s ease-in-out  !important;  
}
.bigBanner_draw_02 {
    width: 100%  !important;
    height: 380px  !important;
    background-image: url(https://img.c66s.top/images/banner/big_banner02.jpg)  !important;
    background-position: center center  !important;
    background-repeat: no-repeat  !important;
    background-size: cover  !important;
    transition: background-image 2s ease-in-out  !important;  
}
.bigBanner_draw_03 {
    width: 100% !important ;
    height: 380px !important;
    background-image: url(https://img.c66s.top/images/banner/big_banner03.jpg) !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    transition: background-image 2s ease-in-out !important;  
}

/* banner按钮 */
#l {
    /* display: none; */
    position: absolute;
    top: 50%;
    left: 0;
    width: 50px;
    height: 100px;
    margin-top: -50px;
    font-size: 68px;
    color: #fff;
    line-height: 100px;
    z-index: 20;
    background-color: rgba(0, 0, 0, .5);
    border: #fff 1px solid;
}

#r {
    /* display: none; */
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -50px;
    width: 50px;
    height: 100px;
    font-size: 68px;
    color: #fff;
    line-height: 100px;
    list-style: none;
    z-index: 20;
    background-color: rgba(0, 0, 0, .5);
    border: #fff 1px solid;

}
#l::after{
    content: "<";
}
#r::after{
    content: ">";
}

/* 内容主题盒子 */
.body_box {
    width: 100%;
}

/* 模块一 */
.mod {
    position: relative;
    width: 1300px;
    height: 410px;
    margin: 30px auto;
    padding: 30px 30px 30px 30px;
    background-color: #fff;
}

.mod_01 {
    height: auto !important;
}

/* 将模块一内的四个子模块并排一行显示 */
.mod_01{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.mod_01 .worker_box,
.mod_01 .notice_box,
.mod_01 .zlbg_box,
.mod_01 .zcwj_box{
    position: relative;
    flex: 0 0 calc(50% - 15px);
    width: calc(50% - 15px) !important;
    left: auto !important;
    right: auto !important;
    margin: 0 !important;
    height: 280px !important;
}

/* banner盒子 */
#banner_box {
    position: absolute;
    left: 480px;
    width: 410px;
    height: 280px;
    overflow: hidden;
}

#banner {
    position: absolute;
    left: 0;
    top: 0;
    width: 3000px;
    height: 280px;
    z-index: 10;
}

/* 样式 */
.banner_style {
    float: left;
    display: inline-block;
    width: 410px;
    height: 280px;
    background-repeat: no-repeat;
    background-size: cover;
}

#banner_01 {
    background-image: url(https://img.c66s.top/images/banner/banner_01.jpg);

}

#banner_02 {
    background-image: url(https://img.c66s.top/images/banner/banner_02.jpg);


}

#banner_03 {
    background-image: url(https://img.c66s.top/images/banner/banner_03.jpg);


}

#banner_04 {
    background-image: url(https://img.c66s.top/images/banner/banner_04.jpg);
}

.ico {
    position: absolute;
    left: 260px;
    top: 240px;
    width: 140px;
    height: 20px;
    z-index: 20;
}

.ico li {
    display: inline-block;
    margin-left: 10px;
    width: 19px;
    height: 19px;
    text-align: center;
    line-height: 19px;
    color: #fff;
    background-color: rgba(0, 0, 0, .2);
    border: 1px solid #fff;
    user-select: none;
}

.ico_color {
    background-color: #EBAF57 !important;
}

/* 工作动态 */
.worker_box {
    position: absolute;
    width: 410px;
    height: 280px;
}

/* 标题整体框架 下划线 */
.title_box {
    position: absolute;
    width: 100%;
    background-color: #0B2E58;
    height: 50px;
    border-bottom: 1px solid #1959a8;
}

/* 标题样式 */
.min_title {
    position: absolute;
    display: inline-block;
    left: 10px;
    width: auto;
    height: 46px;
    line-height: 50px;
    color: #fff;
    line-height: 50px;
    /* text-indent: 1em; */
    /* border-bottom: #EBAF57 4px solid; */

}

/* 通知公告 */
/* 工作动态 */
.list_box {
    display: none;
}

.list_big01 {
    display: block;
    width: 300px;
    height: 20px;
    font-size: 18px;
    line-height: 20px;
    font-weight: bold;
    color: #000;
    overflow: hidden;
    /* 确保超出容器的文本被裁剪 */
    white-space: nowrap;
    /* 确保文本在一行内显示 */
    text-overflow: ellipsis;
    /* 使用省略号表示文本超出 */
}

.list_big02 {
    display: block;
    padding-top: 10px;
    width: 300px;
    height: 60px;
    font-size: 16px;
    line-height: 20px;
    color: #333;
    overflow: hidden;
    /* 确保超出容器的文本被裁剪 */
    text-overflow: ellipsis;
    /* 使用省略号表示文本超出 */
    text-indent: 2em;
}

.list_big01:hover {
    color: #EBAF57;
}

.list_big02:hover {
    color: #EBAF57;
}

/* list01 */
.list_box02 {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0;
    border-top: #999 1px solid;
}

/* 列表样式 */
.list_style {
    position: relative;
    width: 100%;
    height: 38px;
    line-height: 40px;
    list-style: none;
    border-bottom: 1px solid #eee;
    transition: background-color .2s ease;
    
}
.list_style:last-child { border-bottom: 0; }
.list_style:hover { background-color: #f8f8f8; }

/* 鼠标浮于上方 */
.list_style:hover a {
    color: #EBAF57;
}

.list_style:hover span {
    color: #EBAF57;
}

.list_style::marker {
    color: #EBAF57;
}

.list_style a {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: calc(100% - 100px);
    color: #000;
    height:40px;
    font-size: 16px;
    overflow: hidden;
    /* 确保超出容器的文本被裁剪 */
    white-space: nowrap;
    /* 确保文本在一行内显示 */
    text-overflow: ellipsis;
    /* 使用省略号表示文本超出 */
    text-indent: 0;
    transition: color .2s ease;
 
}

.list_style span {
    position: absolute;
    right: 0;
    display: inline-block;
    width: 90px;
    color: #333;
    height:40px;
    font-size: 16px;
    text-align: right;
}



/* ico图标 */
.gzdt::before {
    font-family: "icomoon";
    content: "";
    color: #EBAF57;
}

.tzgg::before {
    font-family: "icomoon";
    content: "";
    color: #EBAF57;
}

.zlbg::before {
    font-family: "icomoon";
    content: "";
    color: #EBAF57;

}

.yypt::before {
    font-family: "icomoon";
    content: "";
    color: #EBAF57;

}

.gzjy::before {
    font-family: "icomoon";
    content: "";
    color: #EBAF57;

}

.zcwj::before {
    font-family: "icomoon";
    content: "";
    color: #EBAF57;

}

/* 质量报告 */
.zlbg_box {
    position: absolute;
    width: 410px !important;
    left: 30px !important;
}



/* 更多按钮样式 */
.more_style {
    position: absolute;
    top: 0;
    right: 10px;
    height: 50px;
    padding: 0 6px;
    color: #fff;
    line-height: 50px;
    transition: color .2s ease;
}
.more_style:hover { color: #EBAF57; }

.li_style::marker {
    color: #EBAF57;
    font-size: 18px;

}

/* 列表样式 */
.li_box {
    position: absolute;
    width: 100%;
    top: 50px;
}

.li_style {
    position: relative;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    border-top: 0;
    font-size: 16px;
    text-indent: 0;
    background-color: transparent;
    padding: 0;
    border-bottom: 1px solid #eee;
    transition: background-color .2s ease;
}
.li_style:last-child { border-bottom: 0; }
.li_style:hover { background-color: #f8f8f8; }

.li_link01 {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: calc(100% - 110px);
    height: 40px;
    line-height: 40px;
    right: auto;
    color: #333333;
    overflow: hidden;
    /* 确保超出容器的文本被裁剪 */
    white-space: nowrap;
    /* 确保文本在一行内显示 */
    text-overflow: ellipsis;
    /* 使用省略号表示文本超出 */
    transition: color .2s ease;
}

.li_link02 {
    display: none;
}

/* 时间日期模块 */
.date_box {
    position: absolute;
    right: 0;
    top: 0;
    width: 90px;
    height: 40px;
    text-align: right;
    text-indent: 0;
}

.date_mm {
    display: inline-block;
    width: auto;
    height: 40px;
    font-size: 16px;
    color: #666;
    line-height: 40px;
    /* text-align: center; */
    background-color: transparent;
}

.date_yyyy {
    display: none;
}

.li_link01:hover {
    color: #EBAF57;
}
.list_style a:focus-visible,
.li_link01:focus-visible,
.more_style:focus-visible {
    outline: 2px solid #EBAF57;
    outline-offset: 2px;
}

.li_link02:hover {
    color: #EBAF57;
}



/* 通知公告 质量报告 框架 */
.notice_box {
    position: absolute;
    right: 0;
    display: inline-block;
    width: 410px;
    height: 280px;
    margin: 0 30px 0px 0;
}

/* 按钮框架 */
.click_box {
    position: absolute;
    right: 30px;
    display: inline-block;
    width: 410px;
    height: 345px;
}

/* 政策文件 */
.zcwj_box {
    width: 410px;
    right: 445px;
}


.click_bg {
    position: relative;
    top: 60px;
    width: 410px;
}

.click_bg>li {
    margin-top: 17px;
    display: block;
    width: 410px;
    height: 100px;
    text-align: center;
    box-shadow: 0px 1px 1px #333;
    transition: all .1 linear 0s;
    border-radius: 8px;
    overflow: hidden;
    background-color: #00B3E1;

}
.click_bg>li:nth-child(2){
    background-color: #EBAF57;
}
.click_bg>li:hover {
    box-shadow: 0px 1px 1px #EBAF57;
}

.click_bg>li:hover a {
    background-color: rgba(0, 0, 65, .1);

}
.click_t{
    position: relative;
    right: -45px;
    text-align: left;
    display: inline-block;
    width: 280px;
    height: 100px;
    color: #fff;
}
.click_bg a {
    position: relative;
    display: inline-block;
    width: 410px;
    height: 100px;
    line-height: 100px;

}

.click_bg a:hover {
    box-shadow: 0px 1px 1px #333;
}

.click_bg img {
    position: absolute;
    top: 29%;
    left: 30px;
    display: inline-block;
    width: 50px;
}



.mod_02 {
    position: relative;
    display:none;
    width: 100%;
    height: 150px;
    /* padding: 30px 30px 30px 30px; */
    background-color: #0B2E58;
}

.link_box {
    /* position: absolute; */
    /* top: 55px; */
    width: 1300px;
    height: 150px;
    margin: 0 auto;

}

.link_box>li {
    margin-left: 35px;
    margin-top: 45px;
    display: inline-block;
    border: 1px solid #1959a8;
    width: 200px;
    height: 65px;
    overflow: hidden;
    text-align: start;
}


.link_box>li>a>img {
    width: 100%;

}

.link_style {
    position: absolute;
    top: 60px;
    display: inline-block;
    color: #fff;
}

/* 底部版权 */
.footer_bg {
    position: relative;
    width: 100%;
    height: 200x;
    background-color: #0B2E58;
    border-top: 1px solid #1959a8;
    /* border-bottom: 1px solid #1959a8; */
}

.footer_box {
    position: relative;
    width: 1300px;
    height: 200px;
    margin: 0 auto;
}

.footer_logo_box {
    position: absolute;
    top: 30px;
    left: 0;
    width: 255px;
    height: 85px;
    background-image: url(../images/dlogo.png);
    background-repeat: no-repeat;
    background-size: contain;
}


.institution_name {
    position: absolute;
    top: 120px;
    border-top: 2px #eee solid;
    line-height: 50px;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

/* 联系方式 */
.contact {
    position: absolute;
    left: 480px;
    top: 45px;
    font-size: 14px;
    color: #fff;
}

.contact_box li {
    width: 300px;
    height: 30px;
    font-size: 16px;
    line-height: 30px;

}

.contact_box>li:nth-child(1)::before {
    font-family: "icomoon";
    content: "";
}

.contact_box>li:nth-child(2)::before {
    font-family: "icomoon";
    content: "";
}

.contact_box>li:nth-child(3)::before {
    font-family: "icomoon";
    content: "";
}

.contact_box>li:nth-child(4)::before {
    font-family: "icomoon";
    content: "";
}

.weixin_box {
    position: absolute;
    top: 45px;
    right: 0;
    width: 260px;
    height: 95px;

}

.weixin {
    position: absolute;
    display: inline-block;
    width: 95px;
    height: 95px;
    text-align: center;
    
    color: #fff;
}
.weixin img{
    width: 95px;
    height: 95px;
}

/* copyright */
.copyright {
    width: 100%;
    height: 55px;
    font-size: 16px;
    line-height: 55px;
    text-align: center;
    color: #fff;
    background-color: #0B2E58;
    border-top: 1px solid #1959a8;
}

/* 搜索框 */
#container {
    position: absolute;
    right: 0;
    top: 25px;
    width: 300px;
    height: 42px;
}

form {
    box-sizing: border-box;
    position: relative;
    width: 300px;
    margin: 0 auto;
}

input,
button {
    box-sizing: border-box;
    border: none;
    outline: none;
}

input {
    width: 100%;
    height: 42px;
    padding-left: 13px;
    box-sizing: border-box;

}

button {
    height: 42px;
    width: 42px;
    cursor: pointer;
    box-sizing: border-box;
    position: absolute;
}

/*搜索框*/
.bar1 {
    box-sizing: border-box;
    background: #0B2E58;
}

.bar1 input {
    box-sizing: border-box;
    border: 2px solid #0B2E58;
    border-radius: 5px;
    background: #fff;
    color: #9E9C9C;
}

.bar1 button {
    box-sizing: border-box;
    top: 0;
    right: 0;
    background: #0B2E58;
    border-radius: 0 5px 5px 0;
}

.bar1 button:before {
    content: "";
    box-sizing: border-box;
    font-family: "icomoon";
    font-size: 16px;
    color: #F9F0DA;
}




/* 图片滚动模块 */
.roll_bg {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.mod_box {
    position: absolute;
    width: 1300px;
    height: 250px;
    overflow: hidden;
}

.roll_box {
    position: absolute;
    top: 80px;
    width: 1630px;
}

.roll_box li {
    position: relative;
    display: inline-block;
    padding-left: 10px;
    width: 310px;
    height: 150px;
    overflow: hidden;
}

.roll_box>li>a {
    width: 310px;
    height: 150px;

}

.roll_box>li>a>img {
    position: absolute;
    width: 280px;
    height: 210px;
}

.roll_box_02 {
    top: 80px;
    position: absolute;
    left: 1630px;
    width: 1630px;
}

.roll_box_02 li {
    position: relative;
    display: inline-block;
    padding-left: 10px;
    width: 310px;
    height: 150px;
    overflow: hidden;
}

.roll_box_02>li>a {
    width: 310px;
    height: 150px;
}

.roll_box_02>li>a>img {
    position: absolute;
    width: 280px;
    height: 210px;
}

/* 工作剪影滚动标题 */
.gzjy_box {
    position: relative;
    width: 1600px;
    height: 50px;
    background-color: #0B2E58;
}

.gzjy_box h2 {
    position: absolute;
    left: 10px;
    color: #fff;
    line-height: 50px;
    display: inline-block;
}

/* 回到顶部 */
#db{
    position: fixed;
    right: 30px;
    bottom: 50px;
    width: 50px;
    height: 50px;
    background-color: #0B2E58;
    background-image: url(../images/ico_db.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
    border-radius: 30px;
    opacity: 100;
    box-shadow: 0px 0px 2px #1959a8;
    transition: opacity  1s ease-in-out;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/  
::-webkit-scrollbar  
{  
    width: 2px;  /*滚动条宽度*/
    height: 2px;  /*滚动条高度*/
}  
  
/*定义滚动条轨道 内阴影+圆角*/  
::-webkit-scrollbar-track  
{  
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);  
    /* border-radius: 10px;  滚动条的背景区域的圆角 */
    background-color: #fff;/*滚动条的背景颜色*/  
}  
  
/*定义滑块 内阴影+圆角*/  
::-webkit-scrollbar-thumb  
{  
    /* border-radius: 10px;  滚动条的圆角 */
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);  
    background-color: #0B2E58;  /*滚动条的背景颜色*/
}  
