.top {
    height: 36px;
    background-color: #006699;
}

.head {
    height: 180px;
    background-color: #2196d5;
    text-align: center;
}

.nav {
    height: 44px;
    background-image: url("../img/nav_bg_7xp3.png");
   
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 1370px;
    margin: 0 auto;
   
}

.nav ul li {
    float: left;

}

.nav ul li a {
    display: block;
    height: 44px;
    line-height: 44px;
    padding: 0 35px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.nav ul li a:hover {
    background-color: #006699;
}

.top-content {
    width: 1200px;
    margin: 0 auto;
}

.top-content .welcome {
    float: left;
    height: 36px;
    line-height: 36px;
    color: #fff;
    font-size: 14px;
    float: left;
    width: 300px;
}

.top-content .search {
    float: right;
    height: 36px;
    line-height: 36px;
    color: #fff;
    font-size: 14px;

}

.top-content .search input {
    width: 232px;
    font-size: 12px;
    color: #ffffff;
    font-weight: normal;
    line-height: 29px;
    height: 29px;
    vertical-align: middle;
    border: #1295d8 2px solid;
    background-color: #006699;
    padding-left: 5px;
    padding-right: 5px;
    -webkit-appearance: none;
    outline: none;
    -webkit-border-radius: 0;
    box-sizing: border-box;
}

/* 搜索框占位符样式 */
.top-content .search input::placeholder {
    color: #ffffff;
    opacity: 1;
}

.top-content .search input::-webkit-input-placeholder {
    color: #ffffff;
}

.top-content .search input::-moz-placeholder {
    color: #ffffff;
}

.top-content .search input:-ms-input-placeholder {
    color: #ffffff;
}

.top-content .search button {
    background: #1295d8;
    font-family: Microsoft YaHei;
    font-weight: normal;
    border: #fff 0px solid;
    width: 50px;
    height: 29px;
    line-height: 29px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    box-sizing: border-box;
}
.topadd{
    width: 1200px;
    margin: 0 auto;
    position: relative;
    text-align: left;
}
.addfavico{
    position: absolute;
    z-index: 1000;
    top: -165px;
    left: 0px;
    right: 20px;
    color: #fff;
    width: 150px;
    text-align: center;
    height: 36px;
    line-height: 30px;
    border-radius: 0px 0px 15px 15px;
    background-color: #006699;
}
.addfavico a {
    font-size: 14px;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    box-sizing: border-box;
}
.head img {
    width: 850px;
    margin-top: 25px;
    
}

/* 二级导航样式 */
.nav {
    background-color: #3498db;
}

.nav ul {
    list-style: none;
    display: flex;

}

.nav li {
    position: relative;
}

.nav a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.nav a:hover {
    background-color: #2980b9;
}

/* 导航项选中状态 */
.nav li.active a {
    background-color: #006699;
}

/* 二级下拉菜单 */
.nav li.has-dropdown {
    position: relative;
}

.nav li.has-dropdown:hover>a {
    background-color: #006699;
}

.nav > ul > li.has-dropdown:hover > .dropdown-menu {
    display: block;
}

.nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 148px;
    background-color: #006699;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    min-width: 150px;
}

.nav .dropdown-menu li {
    width: 100%;
    text-align: center;
    position: relative;
}

.nav .dropdown-menu a {
    color: #fff;
    padding: 10px 15px;
    border-top: 1px solid #f0f0f0;
     display: block;
}

.nav .dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #3498db;
}

.nav .dropdown-menu li:last-child a {
    border-bottom: none;
}



/* 三级下拉菜单 */
.nav .dropdown-menu li.has-dropdown {
    position: relative;
    
}

.nav .dropdown-menu li.has-dropdown:hover>a {
    background-color: #f5f5f5;
    color: #3498db;
}

.nav .dropdown-menu .level3 {
    position: absolute;
    top: 0;
    left: 100%;
    width: 180px;
    background-color: #006699;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1001;
}

.nav .dropdown-menu > li.has-dropdown:hover > .level3 {
    display: block;
}

.nav .dropdown-menu .level3 a {
    color: #fff;
    padding: 10px 15px;
    border-top: 1px solid #f0f0f0;
}


.nav .dropdown-menu .level3 li:first-child a {
    border-top: none;
}

.nav .dropdown-menu .level3 a:hover {
    background-color: #f5f5f5;
    color: #3498db;
}

/* Banner样式 */
.banner {
    position: relative;
    overflow: hidden;
    height: 400px;
    background-color: #f5f5f5;
}

.banner ul {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.banner .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.banner .slide.active {
    display: block;
    opacity: 1;
}

.banner .slide a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    z-index: 4;
}

.banner .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Banner控制按钮 */
.banner-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 7;
}

.banner-control.prev-btn {
    left: 20px;
}

.banner-control.next-btn {
    right: 20px;
}

.banner-control:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Banner指示器 */
.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.banner-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.banner-indicators .indicator.active {
    background-color: #fff;
}

/* 内容区域 */
.content {
    padding: 20px;
    background-color: #fff;
    margin-top: 20px;
    width: 1200px;
    margin: 0 auto;
}

.container {
    width: 1200px;
    margin: 10px auto;
    clear: both;
   
}

.title {
    padding: 10px 10px 10px 0px;
    height: 34px;
    border-bottom: 1px solid #ccc;
}

.title-txt {
    font-size: 20px;
    color: #007bbb;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 4px solid #007bbb;
    text-decoration: none;
    float: left;
}

.title a:hover {
    text-decoration: none;
}

.more {
    float: right;
    margin-top: 15px;
    font-size: 14px;
    color: #3c78d8;
    text-decoration: none;
}

.show{display:block}
.hidden{display:none}

#kclist .cur a{color: #3c78d8}
#kclist { width:188px; float:right;}
#kclist li{ margin-right:13px; color:#656565; float:left; height:30px; line-height:30px;}
#kclist li a{ color:#656565}

.kcname{ padding-top:17px; height:230px; overflow:hidden; }
.kcname ul{ width:100%; margin-bottom:2px;font-family: Arial, "宋体", Helvetica, sans-serif, Verdana;}
.kcname li span{ font-size:12px; height:24px; line-height:24px; color:#666666; display:block; float:left; font-family: Arial, "宋体", Helvetica, sans-serif, Verdana;}
.kcname .ket span{font-size:16px; height:26px; line-height:26px; font-weight:700; color:#666666; display:block; float:left;font-family: Arial, "宋体", Helvetica, sans-serif, Verdana;}

.kelist li{ height: 25px; line-height: 25px; padding: 5px 0px; }
.kelist li a{ font-size:14px; color:#34495e; text-decoration:none; font-family: Arial, "宋体", Helvetica, sans-serif, Verdana;}
.kelist li a:hover{ color:#007bbb; text-decoration:underline;}


.news {height: 310px; overflow: hidden;}
.kecheng{
    width: 790px;
    float: left;
}

.newslist{
    width: 380px;
    float: right;
}
.newslist .boxlist {
   padding-top: 20px ;
   
}


.info-left-title{
    height: 25px;
    margin-top: 10px;
    background: #79888f;
    text-align: center;
    padding: 10px;
     color: #fff;
}

.info-left-title a{
    color: #fff;
    text-align: center;
}

.info-left-tel{
    background-color: #ececec;
    padding: 10px;
}
.info-left-tel p{
    font-size:14px;
    margin: 10px 0px;
    text-align: left;
}
.info-left-tel a{ color: #333;}


.peixun {
    clear: both;
    height: 350px;
    padding: 20px 0px;
}

.peixun ul {
    width: 380px;
    float: left;
    padding-right: 30px;
}

.peixun ul:last-child {
    padding-right: 0px;
}

.boxlist ul li {
    margin-bottom: 10px;
    list-style: disc;
    margin-left: 15px;
    color: #007bbb;
    border-bottom: 1px dotted #e2e2e2;
    padding: 2px;
}

.boxlist ul li a {
    font-family: Arial,"宋体",Helvetica, sans-serif,Verdana;
    font-size: 14px;
    color: #34495e;
    text-decoration: none;
}

.boxlist ul li a span {
    float: right;
    font-size: 12px;
    color: #999;
}


.fengcai {
    clear: both;
    height: 480px;
    padding: 20px 0px;
}

.fengcai ul {
    clear: both;
    height: 480px;
    position: relative;
    display: block;
    
}

.fengcai li {
    float: left;
    width: 380px;
    margin-right: 1.5%;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 5px;
    box-sizing: border-box;
    margin-top: 20px;
    box-shadow: 0 0 10px #eee;
}

.fengcai dl {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 10px;
}

.fengcai img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: all 0.5s ease-out 0s;
    border-radius: 10px;
}

.fengcai li:nth-child(3n) {
    margin-right: 0;
}

.fengcai li:hover img {
    transform: scale(1.05);
}
.fengcai li a {
    font-size: 14px;
    color: #34495e;
    text-decoration: none;
}

.fengcai p {
    font-size: 15px;
    font-weight: bolder;
    text-align: center;
    color: #333;
    margin-top: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.fengcai ul li:hover p {
    color: #126cba;
}

.declare{height: 50px; line-height: 50px; text-align: center; font-size: 14px; color: #666;}
.declare span{font-size: 16px; font-weight: bold; color: red;}

.footer {
    height: 270px;
    padding: 20px;
    background-color: #1295d8;
    margin-top: 10px;
}

.footer .left-footer {
    float: left;
    width: 208px;
    height: 180px;
    border-right: 2px solid #fff;
    margin-top: 30px;
}

.footer .foot-center {
    float: left;
    width: 780px;
    height: 180px;
}

.foot-center p {
    color: #fff;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
}

.foot-center a {
    color: #fff;
    text-decoration: none;
}

.footer .right-footer {
    float: left;
    width: 208px;
    height: 180px;
    border-left: 2px solid #fff;
    margin-top: 30px;
}

.left-footer ul {
    width: 70px;
    float: right;
    padding-top: 20px;
    padding-right: 15px;
}

.left-footer ul li {
    margin-bottom: 10px;
}

.left-footer ul li a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}

.left-footer img {
    width: 100px;
    padding-top: 30px;
    float: left;
}

.right-footer ul {
    width: 70px;
    float: left;
    padding-top: 20px;
}

.right-footer ul li {
    text-align: right;
    margin-bottom: 10px;
}

.right-footer ul li a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}

.main-bg-color {background-color: #1769bd !important;}
.main-color {color: #1769bd !important;}
.right-popup {position: fixed;display: none;width: 115px;top: 50%;margin-top: -112px;right: 10px;background-color: #fff;box-shadow: 0 0 4px 1px #d6d6d6;z-index: 10;}
.right-popup .item {display: block;width: 115px;height: 50px;line-height: 50px;border-bottom: 1px solid #f3f6fd;position: relative;font-size: 14px;text-align: center;color: #fff;}
.right-popup .item:nth-last-child(1) {border: none;}
.right-popup .item img {width: 28px; height: 28px; overflow-clip-margin: content-box; overflow: clip;vertical-align: middle; margin-left: 3px;}
.right-popup .item .phone {position: absolute;left: -238px;top: 0;width: 216px;height: 25px;background-color: #fff;display: none;padding: 11px 0 13px 22px;box-shadow: 0 0 4px 1px #d6d6d6;}
.right-popup .item .phone img {display: block; width: 30px; height: 30px; float: left;}
.right-popup .item .phone span {line-height: 30px;display: block;float: left;font-size: 22px;margin-left: 10px;margin-top: 0;}
.right-popup .item:hover { background-color: #1769bd;}
.right-popup .item:hover img.normal {display: none;}
.right-popup .item:hover img.hover {display: block;}
.right-popup .item:hover span {color: #fff;}
.right-popup .item:hover .phone { display: block;}
.right-popup .item .weixin {position: absolute;left: -108px;bottom: 0;width: 88px;height: 88px;background-color: #5f5f5f;display: none;border: 10px solid #fff;}
.right-popup .item .weixin img {display: block;width: 100%;height: 100%;}
.right-popup .item:hover .weixin {display: block;}
.right-popup a:hover {text-decoration: none;}

/* 回到顶部图标样式 */
.back-to-top-icon {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 auto;
    position: relative;
}

.back-to-top-icon::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid #fff;
}

.back-to-top-icon::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 3px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 10px solid #1769bd;
}



/* 培训课程样式 */
.kecheng {
    margin-bottom: 30px;
}

.kecheng .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.kecheng .title-txt {
    
    font-weight: bold;
    /* color: #333; */
    position: relative; 
    top:6px;
    text-decoration: none;
}

#courseTabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

#courseTabs li {
    margin-left: 20px;
}

#courseTabs li a {
    text-decoration: none;
    color: #666;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s;
}

#courseTabs li.active a {
    background-color: #006699;
    color: #fff;
}

#courseContent {
    clear: both;
}

.course-tab {
    display: none;
}

.course-tab.active {
    display: block;
}

.course-header {
    margin-bottom: 15px;
}

.course-header-row {
    display: flex;
    list-style: none;
    margin: 0;
    /* padding: 10px 0;
    background-color: #f5f5f5; */
    border-radius: 4px;
}

.course-header-row li {
    display: flex;
    width: 100%;
}
.course-header-row span:first-child,.course-list span:first-child {
    width: 660px;
    text-align: left;
}
.course-header-row span {
    width: 140px;
    text-align: center;
    font-weight: bold;
    color: #333;
}

.course-list {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.course-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.course-list li {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.course-list span {
    /* flex: 1; */
    width: 140px;
    text-align: center;
}

.course-list a {
    color: #3498db;
    text-decoration: none;
}

.course-list a:hover {
    text-decoration: underline;
}

.course-list img {
    vertical-align: middle;
}

.banner2 {
    width: 1200px;
    margin: 0 auto;
    height: 300px;

    overflow: hidden;
}
.banner2 img{width: 100%;height: 100%;}
.path{
    width: 1200px;
    margin: 0 auto;
    font-family: 微软雅黑;
    font-size: 14px;
    overflow-wrap: break-word;
    margin: 10px 0px;
    border: 0px solid transparent;
    height: 50px;
    display: block;
    background-color: #1295d8;
    background-position: 50% 50%;

}
.path a{color: #fff;}
.path span{line-height: 50px; padding: 0px 10px;color: #fff;}
.path span:first-child{float: left;}
.path span:last-child{float: right;}
.path font{font-size: 20px;}

.clear{clear: both;padding:20px 0px;}
.info{clear: both;width: 1200px;margin: 0 auto;}
.info-left{width: 220px;float: left;}
.info-left > ul > li {background-color: #ececec; padding: 0px 10px;}
.info-left > ul > li:not(.has-submenu):hover{background-color: #1295d8;}
.info-left > ul > li > a{text-align: center; color: #434343; border-bottom: 1px solid #aaa; display: block;height: 40px;line-height: 40px;}
.info-left > ul > li:not(.has-submenu):hover a{color: #fff;text-decoration: none;}
.info-left li:last-child a{border-bottom: 0px solid transparent;}

/* 左侧菜单二级菜单样式 */
.info-left-menu {
    margin: 0;
}

.info-left-menu .has-submenu {
    position: relative;
}



.info-left-menu .has-submenu.active > a {
    border-bottom: 1px solid #aaa;
}

.info-left-menu .has-submenu:not(.active) > a {
    border-bottom: none;
}

.info-left-menu .has-submenu > a {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-left-menu .has-submenu > a::before {
    content: '▶';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    transition: transform 0.3s;
}

.info-left-menu .has-submenu.active > a::before {
    transform: translateY(-50%) rotate(90deg);
}

.info-left-menu .submenu {
    display: none;
    margin: 0;
    padding: 0;
}

.info-left-menu .submenu li {
    background-color: transparent;
  
    border-radius: 4px;
    padding: 0 10px;
}

.info-left-menu .submenu li a {
    color: #333;
    padding: 12px 10px;
    font-size: 15px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    height: auto;
    line-height: normal;
    display: block;
}


/* 调整二级菜单的hover效果，确保不会影响其他样式 */
.info-left-menu .has-submenu:hover {
    background-color: #ececec;
}

.info-left-menu .has-submenu:hover > a {
    color: #434343;
}

.info-right{width: 940px;float: left; padding: 0px 20px;}
.info-right h1{font-size: 24px; color: #333; margin-bottom: 10px;text-align: center; padding-top: 0px;}
.info-right-bottom{font-size: 14px; color: #666; margin-bottom: 10px;text-align: center; padding: 10px 0px;}
.info-right-bottom span{margin: 0px 10px;}
.info-right-content{font-size: 16px; color: #333; margin-bottom: 20px; padding: 20px 20px 0px 20px;font-family: 仿宋;font-size: 19px;text-indent: 2em;}
.info-right-content img{max-width:600px;}
.info-right-content p{margin-bottom: 15px; text-align: justify; text-indent: 2em;font-family: 仿宋;letter-spacing: 0;font-size: 19px;}
.info-right-content div{font-family: 仿宋;font-size: 19px;}
.callus p{margin-bottom: 15px; text-align: justify; font-family: 微软雅黑;letter-spacing: 0;font-size: 19px;}
.callus p a{color:#434343;}
.callus .info-right-content{padding: 20px 20px 0px 0px; float:left; width:800px;}
.callus-right{float:right; width:300px; text-align:center; padding-top:70px;}
.callus-right p{  text-align:center;}
.next{font-size: 16px; color: #333; margin-bottom: 20px; padding: 0px 20px;}
.next a{color: #333;}

.info-right-top{width: 100%; height: 30px;padding-bottom: 10px; border-bottom: 1px solid #aaa;position: relative;}
.info-right-top h2{font-size: 20px;padding-bottom:7px; z-index: 1000; position: absolute; color: #434343;text-align: left; font-weight: normal;border-bottom: 3px solid #1295d8;}

 

/* 分享按钮样式 */
.share-title {
    margin-right: 10px;
}

.share-buttons {
    display: inline-block;
    vertical-align: middle;
    
}

.share-btn {
    display: inline-block;
    width: 16px;
    height: 17px;
    background: url('../img/sha_weixina.png') no-repeat;
    background-position:0px 1px;
}

.share-btn.qq {
    background: url('../img/sha_sqqa.png') no-repeat;
}
.share-btn.wechat {
    background: url('../img/sha_weixina.png') no-repeat;
}
.share-btn.weibo {
    background: url('../img/sha_tsinaa.png') no-repeat;
}
.share-btn.facebook {
    background: url('../img/sha_facebooka.png') no-repeat;
}
.share-btn.twitter {
    background: url('../img/sha_twittera.png') no-repeat;
}
.share-btn.linkedin {
    background: url('../img/sha_linkedin.png') no-repeat;
}


.share-btn.wechat:hover {
     background: url('../img/sha_weixin.png') no-repeat;
}

.share-btn.qq:hover {
    background: url('../img/sha_sqq.png') no-repeat;
}

.share-btn.weibo:hover {
    background: url('../img/sha_tsina.png') no-repeat;
}

.share-btn.facebook:hover {
    background: url('../img/sha_facebook.png') no-repeat;
}

.share-btn.twitter:hover {
    background: url('../img/sha_twitter.png') no-repeat;
}



/* 微信分享模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.wechat-qr-code {
    margin: 20px 0;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    display: inline-block;
}

.wechat-qr-code img {
    width: 200px;
    height: 200px;
}

.wechat-share-tip {
    margin: 10px 0;
    font-size: 14px;
    color: #666;
}

.wechat-share-title {
    margin: 10px 0;
    font-size: 14px;
    color: #333;
    font-weight: bold;
    word-break: break-all;
}

.info-list li{
    padding: 15px 0px;
    margin: 0 0px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    display: block;
    border-bottom: 1px dashed #e0e0e0;
    color: red;
    clear: both;
}
.info-list li a{
    color: #4d4c4c;
}
.info-list li span{
    float: right;
    color: #979696;
}

.info-list .peixun{
    float: left;
    width: 60px;
    height: 70px;
    background-color: #198ede;
    text-align: center;
    color: #fff;
    font-size: 12px;
}

.search-list li{
    height: 70px;
     border-bottom:0px;
}
.info-list .list-info{
    float: right;
    width: 860px;
    height: 70px;
    font-size: 12px;
}
.search-list li a{
    color: #4d4c4c;
    font-weight: bold;
    font-size: 14px;
}
.search-list p {
    font-size: 12px;
    color: #5A5A5A;
    padding-top: 5px;
    line-height: 20px;
}

.info-list .update{
    float: left;
    width: 60px;
    height: 70px;
    background-color: #198ede;
    text-align: center;
    color: #fff;
    font-size: 12px;
}
.info-list li .update div{
    display: block;
    font-size: 16px;
    color: #fff;
    font-size: 12px;
    text-align: center;
}
.info-list li .update .date{
    font-size: 20px;
    padding: 10px 0px;
    font-weight: bold;
}

.info-imglist li{
    width: 225px;
    height: 350px;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
    color: #979696;
    line-height: 24px;
    
}
.info-imglist li a{
    color: #494848;
    font-weight: bold;
}
.info-imglist li span{
    float: right;
    color: #979696;
}
.info-imglist p{
    margin: 0px;
    padding: 0px;
    font-size: 12px;
}
.info-imglist img{
    width: 225px;
    height: 250px;
}
.page{
    padding-top: 10px;
    margin: 20px 0px;
    font-size: 14px;
    color: #333;
    word-break: break-all;
    float: right;
}
.page li{
    display: inline-block;
    margin: 0px 5px;
}
.page .thisclass{
     background-color: #1295d8;
    color: #fff;
    padding: 5px 10px;
    border: 1px solid #ccc;

}
.page select{
    padding: 5px 10px;
    border: 1px solid #ccc;
}
.page li a{
    display: block;
    padding: 5px 10px;
    border: 1px solid #ccc;
    color: #333;
    text-decoration: none;
}
.page li a:hover{
    background-color: #1295d8;
    color: #fff;
}

.page .thisclass a{
     background-color: #1295d8;
    color: #fff;

}