@charset "utf-8";
/* CSS Document */

body {
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif, "微软雅黑";
    background: #f3f3f3;
}

a {
    outline: none;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    border: 0;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.cb {
    clear: both;
    height: 0;
}

li {
    list-style: none;
}

div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
form,
label,
input,
textarea,
img,
ul,
li,
dl,
dt,
dd {
    padding: 0;
    margin: 0;
}

.img_scale {
    overflow: hidden;
}

.img_scale img {
    transition: 0.6s all;
    -webkit-transition: 0.6s all;
}

.img_scale:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

.wrapper{
    width: 1200px;
    margin: 0 auto;
}

.hide {
    display: none;
}
.dis_flex {
    display: flex;
}
.justify_space_between {
    justify-content: space-between;
}
.justify_left {
    justify-content: left;
}
.bg01{
    height: 163px;
    background: url(../images/bg01.png) repeat-x;
}
.bg02{
    background: url(../images/bg02.png) top center no-repeat;
}
.bg03{
    background: url(../images/bg03.png) top center no-repeat;
    height: 605px;
}
.bg04{
    background: url(../images/bg04.png) top center no-repeat;
    height: 803px;
}
.bg05{
    background: url(../images/bg05.png) top center no-repeat;
    height: 597px;
}
.bg06{
    background: url(../images/bg06.png) top center no-repeat;
    height: 157px;
    border-top: 3px solid #fff;
}
.bg07{
    height: 157px;
    background: url(../images/bg07.png) repeat-x;
}
.bg08{
    height: 62px;
    background: url(../images/bg08.png) repeat-x;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.bg09{
    background: url(../images/bg09.png) bottom center no-repeat #e8f1fc;
    padding-bottom: 120px;
}
.bg10{
    background: url(../images/bg10.png) top center no-repeat;
    height: 147px;
    border-top: 3px solid #fff;
}
.header {
    border-bottom: 1px solid #fff;
}
/* 头部右侧 */
.header-right {
    display: flex;
    align-items: center;
}

.search-box {
    position: relative;
    height: 50px;
    width: 250px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
}

.search-box input {
    width: 250px;
    height: 50px;
    padding: 0 40px 0 15px;
    font-size: 14px;
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
}
.search-box input::placeholder {
    color: #fff;
}

.search-box .search-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    background: transparent;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

/* 主导航样式 */
.main-nav {
    display: flex;
    list-style: none;
    position: relative;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 20px 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
    text-decoration: none;
}

.nav-link:hover {
    color: #fff;
    text-decoration: none;
}

/* 下拉菜单样式 */
.dropdown-menu {
    position: absolute;
    top: 56px;
    left: -40px;
    background: #d0e0f2;
    width: 188px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 0 0 0 0;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 24px;
    color: #373737;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 1;
    font-size: 16px;
}

.dropdown-item:hover {
    color: #fff;
    background: linear-gradient(to bottom, #416cba 0%, #1f3c73 100%);
    text-decoration: none;
}

/* 首页特殊处理，没有下拉菜单 */
.nav-item:first-child .nav-link {
    color: #fff;
}

/* Banner区域 */
.banner {
    height: 600px;
    position: relative;
    overflow: hidden;
}

.banner .swiper-container {
    width: 100%;
    height: 100%;
}

.banner .swiper-slide {
    position: relative;
}

.banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .swiper-pagination {
    position: absolute;
    bottom: 30px;
    right: 30px;
    left: auto;
    width: auto;
    z-index: 10;
}

.banner .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner .swiper-pagination-bullet-active {
    background: #fff;
    width: 12px;
    height: 12px;
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
    color: #fff;
    font-size: 16px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.banner .swiper-button-prev::after,
.banner .swiper-button-next::after {
    font-size: 24px !important;
}
.banner .swiper-button-prev:hover,
.banner .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.5);
}

.index_news{
    padding: 30px 0;
}
.index_news .t{
    margin-bottom: 30px;
}
.index_news .con .item{
    background: url(../images/index02.png) no-repeat;
    width: 1188px;
    height: 380px;
}
.index_news .con .item a{
    display: flex;
    justify-content: space-between;
    text-decoration: none;
}
.index_news .con .item .pic{
    width: 673px;
    height: 380px;
}
.index_news .con .item .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_news .con .item .info{
    width: 450px;
    height: 380px;
    padding: 30px 20px 0 0;
}
.index_news .con .item .info .date{
    color: #fff;
    font-size: 16px;
}
.index_news .con .item .info h2{
    color: #fff;
    font-size: 24px;
    padding: 15px 0;
    line-height: 1.5;
}
.index_news .con .item .info p{
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.5;
}

.index_news .con .swiper-container{
    width: 1188px;
    height: 380px;
    overflow: hidden;
    position: relative;
}
.index_news .con .swiper-wrapper{
    width: 100%;
    height: 100%;
}
.index_news .con .swiper-slide{
    width: 1188px;
    height: 380px;
}
.index_news .con .swiper-container .swiper-pagination{
    width: 512px;
    right: 0;
    bottom: 20px;
    left: auto;
}

.index_news .item_list{
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
.index_news .item_list .item{
    width: 368px;
    height: 148px;
    background: url(../images/index04.png) no-repeat;
}
.index_news .item_list .item a{
    text-decoration: none;
    padding: 20px;
    display: block;
}
.index_news .item_list .item .date{
    color: #203e75;
    font-size: 16px;
    padding-bottom: 15px;
}
.index_news .item_list .item .date span{
    font-size: 24px;
}
.index_news .item_list .item h2{
    color: #373737;
    font-size: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}
.index_news .item_list .item:hover{
    background: url(../images/index05.png) no-repeat;
}
.index_news .item_list .item:hover .date,
.index_news .item_list .item:hover h2{
    color: #fff;
}
.index_news .more{
    text-align: center;
}

.index_notice{
    width: 584px;
    padding: 30px 0;
}
.index_notice .t{
    margin-bottom: 30px;
}
.index_notice .item{
    height: 84px;
    background: url(../images/index07.png) no-repeat;
    margin: 8px 0;
}
.index_notice .item a{
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    align-items: center;
    height: 84px;
    padding: 0 20px;
}
.index_notice .item .date{
    background: url(../images/index08.png) no-repeat;
    width: 46px;
    height: 52px;
    text-align: center;
    color: #203e75;
    font-size: 11px;
}
.index_notice .item .date span{
    display: block;
    font-size: 14px;
    line-height: 1.4;
    padding-top: 5px;
}
.index_notice .item h2{
    width: 490px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    color: #fff;
    font-size: 18px;
}
.index_notice .item:hover{
    background: url(../images/index09.png) no-repeat;
}
.index_notice .item:hover h2{
    color: #022158;
}
.index_notice .more{
    text-align: center;
    margin-top: 30px;
}

.index_tab{
    width: 1200px;
    position: relative;
    padding: 30px 0;
}
.index_tab .tab_hd{
    padding-bottom: 30px;
}
.index_tab .tab_hd ul{
    display: flex;
    justify-content: center;
    height: 70px;
    line-height: 70px;
}
.index_tab .tab_hd li{
    background: url(../images/index11.png) left center no-repeat;
    font-size: 24px;
    padding-left: 20px;
    cursor: pointer;
    margin: 0 20px;
    position: relative;
    color: #373737;
    transition: color 0.3s ease;
}
.index_tab .tab_hd li.active,
.index_tab .tab_hd li:hover{
    color: #2a4c8a;
}
.index_tab .tab_bd{
    position: relative;
}
.index_tab .tab-panel{
    display: none;
}
.index_tab .tab-panel.active{
    display: block;
}
.index_tab .tab-swiper{
    width: 1200px;
    height: 320px;
    overflow: hidden;
}
.index_tab .tab-swiper .swiper-wrapper{
    width: 100%;
    height: 100%;
}
.index_tab .tab-swiper .swiper-slide{
    width: 1200px;
    height: 320px;
}
.index_tab .tab-content{
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
}
.index_tab .tab-content li{
    height: 280px;
    width: 220px;
    background: url(../images/index12.png) no-repeat;
    background-size: 100% 100%;
}
.index_tab .tab-content li a{
    display: block;
    padding: 20px;
    text-decoration: none;
}
.index_tab .tab-content li a p{
    color: #373737;
    font-size: 18px;
    padding-top: 50px;
    padding-bottom: 20px;
    line-height: 1.4;
}
.index_tab .tab-content li a .date{
    color: #203e75;
    font-size: 16px;
    padding-bottom: 15px;
}
.index_tab .tab-content li:hover{
    background: url(../images/index13.png) no-repeat;
    background-size: 100% 100%;
}
.index_tab .tab-content li:hover a p,
.index_tab .tab-content li:hover a .date{
    color: #fff;
}
.index_tab .tab-panel .more{
    text-align: center;
    margin-top: 30px;
}
/* progressbar分页器样式 */
.index_tab .swiper-pagination{
    position: absolute;
    bottom: 50px;
    left: 0;
    top: auto !important;
    /* transform: translateX(-50%); */
    width: 200px;
    height: 4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}
.index_tab .swiper-pagination-progressbar{
    background: #2a4c8a;
    border-radius: 2px;
}
/* 导航按钮样式 */
.index_tab .swiper-button-prev,
.index_tab .swiper-button-next{
    position: absolute;
    top: 300px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 14px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}
.index_tab .swiper-button-prev:hover,
.index_tab .swiper-button-next:hover{
    background: rgba(0, 0, 0, 0.5);
}
.index_tab .swiper-button-prev{
    left: 10px;
}
.index_tab .swiper-button-next{
    right: 10px;
}
.index_tab .swiper-button-prev::after,
.index_tab .swiper-button-next::after{
    font-size: 14px !important;
}
.index_quick{
    text-align: center;
    margin-top: 30px;
}
.index_quick img{
    margin: 0 20px;
}

.index_about{
    padding: 30px 0;
}
.index_about .about_con{
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    padding-top: 30px;
}
.index_about .about_data{
    padding-top: 30px;
    position: relative;
    width: 1200px;
    overflow: hidden;
    background: url(../images/index19.png) center 130px no-repeat;
}
.index_about .about-swiper{
    width: 100%;
    height: 200px;
}
.index_about .about-swiper .swiper-wrapper{
    display: flex;
    align-items: center;
}
.index_about .about-swiper .swiper-slide{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.index_about .about_data .item{
    width: 270px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.index_about .about_data .item span{
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}
.index_about .about_data .item i{
    width: 24px;
    height: 24px;
    background: url(../images/index18.png) no-repeat;
    background-size: 100% 100%;
    margin: 15px 0;
}
.index_about .about_data .item p{
    color: #fff;
    font-size: 18px;
}
/* 导航按钮样式 */
.index_about .swiper-button-prev,
.index_about .swiper-button-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}
.index_about .swiper-button-prev:hover,
.index_about .swiper-button-next:hover{
    background: rgba(0, 0, 0, 0.5);
}
.index_about .swiper-button-prev{
    left: 10px;
}
.index_about .swiper-button-next{
    right: 10px;
}
.index_about .swiper-button-prev::after,
.index_about .swiper-button-next::after{
    font-size: 14px !important;
}
.index_about .more{
    text-align: center;
    margin-top: 30px;
}

.footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 157px;
    color: #fff;
    line-height: 1.4;
}
.footer select{
    width: 200px;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #fff;
    border-radius: 2px;
    background: transparent;
    outline: none;
    color: #fff;
}
.footer select option{
    color: #333;
    background: transparent;
}
.bg10 .footer{
    height: 147px;
}

.ny_banner{
    position: relative;
    height: 500px;
}

.ny_menu{
    display: flex;
    justify-content: left;
}
.ny_menu .t{
    width: 257px;
    height: 62px;
    background: url(../images/ny01.png) no-repeat;
    text-align: center;
    color: #fff;
    font-size: 24px;
    line-height: 62px;
}
.ny_menu .con{
    width: 900px;
    position: relative;
}
.ny_menu .menu-wrapper{
    width: 820px;
    overflow: hidden;
}
.ny_menu .menu-list{
    display: flex;
    transition: transform 0.3s ease;
    width: max-content;
}
.ny_menu .menu-list li{
    width: 120px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    flex-shrink: 0;
    padding-top: 10px;
}
.ny_menu .menu-list li a{
    display: block;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.ny_menu .menu-list li a:hover,
.ny_menu .menu-list li.active a{
    color: #fff;
    background: url(../images/ny02.png) no-repeat;
}
.ny_menu .menu-nav{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 5px;
}
.ny_menu .menu-nav.hidden{
    display: none;
}
.ny_menu .nav-btn{
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}
.ny_menu .nav-btn:hover{
    background: rgba(0, 0, 0, 0.5);
}
.ny_menu .nav-btn.disabled{
    opacity: 0.5;
    cursor: not-allowed;
}

.ny_pos{
    height: 50px;
    line-height: 50px;
    color: #373737;
    font-size: 16px;
    text-align: right;
}
.ny_pos a{
    color: #373737;
    text-decoration: none;
    padding: 0 10px;
}
.ny_pos i{
    color: #1074b9;
}
.ny_bg{
    background: rgba(255, 255, 255, 0.3);
}

.page01{
    padding: 20px;
    color: #373737;
    line-height: 1.4;
    font-size: 16px;
}
.page01 .about_data{
    padding-top: 30px;
    position: relative;
    width: 1000px;
    overflow: hidden;
    background: url(../images/ny04.png) center 130px no-repeat;
    margin: 0 auto;
}
.page01 .about-swiper{
    width: 100%;
    height: 200px;
}
.page01 .about-swiper .swiper-wrapper{
    display: flex;
    align-items: center;
}
.page01 .about-swiper .swiper-slide{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.page01 .about_data .item{
    width: 270px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.page01 .about_data .item span{
    font-size: 48px;
    font-weight: bold;
    color: #1266a5;
    line-height: 1;
}
.page01 .about_data .item i{
    width: 24px;
    height: 24px;
    background: url(../images/ny03.png) no-repeat;
    background-size: 100% 100%;
    margin: 15px 0;
}
.page01 .about_data .item p{
    color: #1266a5;
    font-size: 18px;
}
/* 导航按钮样式 */
.page01 .swiper-button-prev,
.page01 .swiper-button-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}
.page01 .swiper-button-prev:hover,
.page01 .swiper-button-next:hover{
    background: rgba(0, 0, 0, 0.5);
}
.page01 .swiper-button-prev{
    left: 10px;
}
.page01 .swiper-button-next{
    right: 10px;
}
.page01 .swiper-button-prev::after,
.page01 .swiper-button-next::after{
    font-size: 14px !important;
}

.page02{
    padding: 20px;
}
.page02 .subject_menu{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
.page02 .subject_menu a{
    display: block;
    text-align: center;
    color: #373737;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 316px;
    height: 55px;
    line-height: 55px;
    background: #f0f3f9;
    border-radius: 25px;
}
.page02 .subject_menu a:hover,
.page02 .subject_menu a.active{
    color: #fff;
    background: linear-gradient(to bottom, #0064af 0%, #2491e4 100%);
}
.page02 .subject_menu01{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
}
.page02 .subject_menu01 a{
    display: block;
    text-align: center;
    color: #373737;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 152px;
    height: 55px;
    line-height: 55px;
    background: #f0f3f9;
    border-radius: 25px;
}
.page02 .subject_menu01 a:hover,
.page02 .subject_menu01 a.active{
    color: #fff;
    background: linear-gradient(to bottom, #0064af 0%, #2491e4 100%);
}
.page02 .subject_menu_t{
    font-size: 24px;
    font-weight: bold;
    color: #214179;
    line-height: 1;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #214179;
    margin-bottom: 30px;
    margin-top: 30px;
}
.page02 .subject_menu_t i{
    margin-right: 10px;
    width: 42px;
    height: 34px;
    background: url(../images/ny05.png) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
}
.teacher_list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}
.teacher_list .item{
    width: 214px;
    height: 330px;
    background: #e4ebfa;
    padding: 12px;
    text-align: center;
}
.teacher_list .item a{
    text-decoration: none;
}
.teacher_list .item img{
    width: 212px;
    height: 280px;
    border: 1px solid #fff;
    margin-bottom: 20px;
}
.teacher_list .item h2{
    font-size: 16px;
    font-weight: bold;
    color: #373737;
    line-height: 1;
}
.teacher_list .item:hover{
    background: url(../images/ny07.png) no-repeat;
}
.teacher_list .item:hover h2{
    color: #fff;
}

.ny_item_list{
    padding: 20px 0;
}
.ny_item_list .item{
    height: 180px;
}
.ny_item_list .item a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 15px;
    text-decoration: none;
}
.ny_item_list .item a img{
    width: 236px;
    height: 132px;
    border: 1px solid #fff;
    margin-right: 20px;
}
.ny_item_list .item a .info{
    width: 780px;
    height: 134px;
}
.ny_item_list .item a .info h2{
    font-size: 24px;
    font-weight: bold;
    color: #373737;
    line-height: 1.4;
    height: 50px;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ny_item_list .item a .info p{
    color: #797979;
    font-size: 16px;
    line-height: 1.5;
    height: 48px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ny_item_list .item a .info i{
    display: block;
    color: #435d8f;
    font-size: 34px;
}
.ny_item_list .item a .date{
    font-size: 14px;
    color: #203e75;
    line-height: 1;
    width: 104px;
    text-align: center;
    height: 134px;
    border-left: 1px solid #cccccc;
}
.ny_item_list .item a .date span{
    display: block;
    font-size: 32px;
    font-weight: bold;
    line-height: 60px;
    padding-top: 20px;
}
.ny_item_list .item:hover{
    background: url(../images/ny08.png) no-repeat;
}
.ny_item_list .item:hover .info h2,
.ny_item_list .item:hover .info p,
.ny_item_list .item:hover .date,
.ny_item_list .item:hover .info i{
    color: #fff;
}


.ny_item_list01{
    padding: 20px 0;
    width: 1092px;
    margin: 0 auto;
}
.ny_item_list01 .item{
    height: 100px;
}
.ny_item_list01 .item a{
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 20px 15px;
    text-decoration: none;
}
.ny_item_list01 .item a .date{
    font-size: 14px;
    color: #203e75;
    line-height: 1;
    width: 104px;
    text-align: center;
    height: 60px;
    border-right: 1px solid #cccccc;
    margin-right: 20px;
}
.ny_item_list01 .item a .date span{
    display: block;
    font-size: 32px;
    font-weight: bold;
    line-height: 40px;
}
.ny_item_list01 .item a h2{
    font-size: 24px;
    font-weight: bold;
    color: #373737;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 900px;
}
.ny_item_list01 .item:hover{
    background: url(../images/ny09.png) no-repeat;
}
.ny_item_list01 .item:hover h2,
.ny_item_list01 .item:hover .date{
    color: #fff;
}
.ny_item_list01 .item:hover .date{
    border-right: 1px solid #fff;
}

.page01 .con{
    padding: 20px;
    color: #373737;
    line-height: 30px;
    font-size: 16px;
}
.page01 .con .ny_header1{
    border-bottom: 1px dashed #9eabc2;
    text-align: center;
    color: #373737;
}
.page01 .con .ny_header1 h2{
    font-size: 24px;
    font-weight: 600;
    padding: 20px 0;
}
.page01 .con .ny_header1 p{
    font-size: 16px;
    line-height: 30px;
    padding: 10px 0;
    color: #373737;
}
.page01 .con .ny_detail{
    padding-top: 20px;
}