/*==================================================
    全局
==================================================*/

*{
    margin:0;
    padding:0;
    list-style:none;
    box-sizing:border-box;
}

body{
    background:#f3f5f8;
    font-family:
        "Microsoft YaHei",
        "PingFang SC",
        Arial,
        sans-serif;
    font-size:15px;
    color:#444;
    line-height:1.5;
    min-width:1400px;
}

a{
    text-decoration:none;
    color:#444;
    transition:.3s;
}

a:hover{
    color:#8c0000;
}

img{
    border:0;
    display:block;
    max-width:100%;
}

h1,h2,h3,h4,h5,h6{
    font-weight:500;
    color:#222;
}

.cl:after{
    content:"";
    display:block;
    clear:both;
}

.cl{
    zoom:1;
}

.f{
    float:left;
}

.frr{
    float:right;
}

#wrap{
    margin:0 auto;
    position:relative;
}

.w{
    width:1680px;
    margin:0 auto;
}

/*==================================================
    顶部
==================================================*/
/*--------------------
	网站头部
---------------------*/      
#header{position:relative;z-index:99;}
#top{height:32px;line-height:32px;background:#700005;}
#top .fl{width:50%;}
#top .fr{width:100%;}
#top ul li{float:left;margin-right:130px;}
#top ul li a{padding-left:10px;color:#fff;font-size:15px;}
#top .fl ul li:first-child a{padding-left:0px;}
#mid{background:#8f000b;}


/* logo */

#mid{
    background:#8f000b;
    height:120px;
}

.logo{
   height:120px;
    background:url(../images/logobg.jpg) no-repeat right bottom;
   position:relative;
}

.logo img{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    max-height:120px;
   padding-left:20px;
}

/*==================================================
    导航
==================================================*/

#bot{
    height:56px;
    line-height:56px;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.nav{
    text-align:center;
}

.nav ul li{
    display:inline-block;
    *display:inline;
    *zoom:1;
    position:relative;
}

.nav ul li a{
    display:block;
    padding:0 35px;
    font-size:17px;
    font-weight:500;
    color:#333;
    position:relative;
}

/* hover */

.nav ul li:hover{
    background:#faf5f5;
}

.nav ul li:hover>a{
    color:#8c0000;
}

/* 下划线 */

.nav ul li a:after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    width:0;
    height:3px;
    background:#8c0000;
    transition:.3s;
    transform:translateX(-50%);
}

.nav ul li:hover>a:after{
    width:60%;
}

/* 下拉 */

.nav ul li ul{
    position:absolute;
    top:56px;
    left:0;
    background:#fff;
    display:none;
    z-index:999;
    border-radius:0 0 8px 8px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.nav ul li:hover ul{
    display:block;
}

.nav ul ul li{
    width:180px;
}

.nav ul ul li a{
    line-height:48px;
    font-size:15px;
    padding:0 20px;
}

.nav ul ul li:hover{
    background:#fafafa;
}


/*==================================================
    首页Banner
==================================================*/

#banner{
    position:relative;
    width:100%;
    background:transparent;
}


/* 外层 */

.banner1{
    position:relative;
    width:100%;
    height:380px;
    overflow:hidden;
}


/* 中间轨道 */
.banner1 .box{
    position:absolute;
    left:50%;
    width:1800px;
    height:380px;
    margin-left:-900px;
}

/* 删除旧式左右占位 */

.banner1 .leftbanner,
.banner1 .rightbanner{
    display:none;
}


/* 主体 */

.banner1 .w{
    width:1800px;
    height:380px;
}


/* li */

.banner1 li{
    position:relative;

    width:1800px;
    height:380px;

    overflow:hidden;
}


/* 图片 */
/* 等比例铺满 + 中心裁切 */

.banner1 img{
    display:block;

    width:100%;
    height:380px;

    object-fit:cover;
    object-position:center center;
}


/* 标题遮罩 */

.banner1 h3{
    position:absolute;
    left:0;
    bottom:0;

    width:100%;
    height:64px;

    padding:0 36px;

    color:#fff;
    font-size:22px;
    font-weight:500;
    line-height:64px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.55),
        rgba(0,0,0,0)
    );

    backdrop-filter:blur(2px);
}


/*==================================================
    slideBox
==================================================*/

.slideBox{
    position:relative;

    width:1800px;
    height:380px;

    overflow:hidden;
}


/* 内容区 */

.slideBox .bd{
    position:relative;
    z-index:0;

    width:100%;
    height:380px;
}

.slideBox .bd li{
    position:relative;

    width:100%;
    height:380px;

    vertical-align:middle;
}


/*==================================================
    小圆点
==================================================*/

.slideBox .hd{
    position:absolute;
    right:30px;
    bottom:24px;
    z-index:10;

    height:12px;
}

.slideBox .hd ul{
    display:flex;
    align-items:center;
    gap:10px;
}

.slideBox .hd ul li{
    width:10px;
    height:10px;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    cursor:pointer;

    transition:.3s;
}


/* 当前项 */

.slideBox .hd ul li.on{
    width:28px;

    border-radius:20px;

    background:#ffffff;
}


/*==================================================
    左右按钮
==================================================*/

.slideBox .prev,
.slideBox .next{
    position:absolute;
    top:50%;
    z-index:20;

    display:block;

    width:52px;
    height:52px;

    margin-top:-26px;

    border-radius:50%;

    opacity:0;

    transition:.3s;

    backdrop-filter:blur(6px);

    background-color:rgba(255,255,255,.18);
}


/* hover时显示 */

.slideBox:hover .prev,
.slideBox:hover .next{
    opacity:1;
}


/* 左按钮 */

.slideBox .prev{
    left:24px;

    background-image:url(../images/zuo.png);
    background-repeat:no-repeat;
    background-position:center center;
}


/* 右按钮 */

.slideBox .next{
    right:24px;

    background-image:url(../images/you.png);
    background-repeat:no-repeat;
    background-position:center center;
}


/* hover */

.slideBox .prev:hover,
.slideBox .next:hover{
    background-color:rgba(255,255,255,.28);

    transform:scale(1.05);
}


/* 禁用 */

.slideBox .prevStop,
.slideBox .nextStop{
    display:none;
}



/*==================================================
    Banner2（现代卡片风）
==================================================*/

.banner2{
    background:#f5f6f8;
}


/* 幻灯 */

.slideBox2{
    position:relative;

    width:1600px;
    height:380px;

    margin:24px auto;
}


/* 内容 */

.slideBox2 .bd{
    position:relative;

    width:100%;
    height:380px;
}

.slideBox2 .bd li{
    position:relative;

    width:100%;
    height:380px;

    overflow:hidden;
}


/* 图片 */

.banner2 img{
    display:block;

    width:100%;
    height:380px;

    object-fit:cover;
    object-position:center center;

    border-radius:12px;
}


/* 标题 */

.banner2 h3{
    position:absolute;
    left:40px;
    bottom:40px;

    width:55%;

    padding:16px 24px;

    color:#fff;
    font-size:20px;
    line-height:1.7;

    border-radius:10px;

    background:rgba(0,0,0,.42);

    backdrop-filter:blur(4px);
}


/* 导航 */

.slideBox2 .hd{
    position:absolute;
    left:0;
    bottom:20px;
    z-index:10;

    width:100%;
}

.slideBox2 .hd ul{
    display:flex;
    justify-content:center;
    gap:14px;
}

.slideBox2 .hd ul li{
    width:28px;
    height:28px;

    border-radius:50%;

    color:#8c0000;
    font-size:14px;
    line-height:28px;
    text-align:center;

    cursor:pointer;

    background:rgba(255,255,255,.9);

    transition:.3s;
}

.slideBox2 .hd ul li.on{
    color:#fff;

    background:#8c0000;
}



/*==================================================
    Banner3（轻量轮播）
==================================================*/

.banner3{}


/* 幻灯 */

.slideBox3{
    position:relative;

    width:1600px;
    height:380px;

    margin:24px 0;

    overflow:hidden;
}


/* 内容 */

.slideBox3 .bd{
    position:relative;

    width:100%;
    height:380px;
}

.slideBox3 .bd li{
    position:relative;

    width:100%;
    height:380px;

    overflow:hidden;
}


/* 图片 */

.banner3 img{
    display:block;

    width:100%;
    height:380px;

    object-fit:cover;
    object-position:center center;

    border-radius:10px;
}


/* 标题 */

.banner3 h3{
    position:absolute;
    left:36px;
    bottom:36px;

    padding:12px 20px;

    color:#fff;
    font-size:18px;

    border-radius:8px;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(3px);
}


/* 圆点 */

.slideBox3 .hd{
    position:absolute;
    left:0;
    bottom:18px;
    z-index:10;

    width:100%;
}

.slideBox3 .hd ul{
    display:flex;
    justify-content:center;
    gap:10px;
}

.slideBox3 .hd ul li{
    width:8px;
    height:8px;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    cursor:pointer;

    transition:.3s;
}

.slideBox3 .hd ul li.on{
    width:24px;

    border-radius:20px;

    background:#ffffff;
}


/* 左右按钮 */

.slideBox3 .prev,
.slideBox3 .next{
    position:absolute;
    top:50%;
    z-index:20;

    display:block;

    width:36px;
    height:36px;

    margin-top:-18px;

    border-radius:50%;

    opacity:0;

    transition:.3s;

    background-color:rgba(255,255,255,.18);
}

.slideBox3:hover .prev,
.slideBox3:hover .next{
    opacity:1;
}

.slideBox3 .prev{
    left:16px;

    background-image:url(../images/zuo1.png);
    background-repeat:no-repeat;
    background-position:center center;
}

.slideBox3 .next{
    right:16px;

    background-image:url(../images/you1.png);
    background-repeat:no-repeat;
    background-position:center center;
}









/*==================================================
    主体布局
==================================================*/

#main{
    padding:14px 0;
}

.content{
    width:75%;
    margin-right:1%;
}

.sidebar{
    width:24%;
}

/*==================================================
    模块统一
==================================================*/

.imgnews1,
.imgnews2,
.xiaonews1,
.xiaonews2,
.xiaonews3,
.xiaonews4,
.xiaonews5,
.xiaonews6,
.tongzhi1,
.tongzhi2,
.about1,
.about2,
.ss1,
.ss2,
.ss3,
.kuaijie,
.kuaijie_bot,
.link1,
.link2,
.link3{
    background:#fff;
    border-radius:8px;
    box-shadow:0 2px 12px rgba(0,0,0,.04);
    padding:8px;
    margin-bottom:18px;
}

/*==================================================
    模块标题
==================================================*/

.tit{
    padding:0 0 16px;
}

.tit h3{
    font-size:20px;
    color:#222;
    font-weight:600;
    position:relative;
    padding-left:12px;
}

.tit h3:before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:4px;
    height:20px;
    margin-top:-10px;
    background:#8c0000;
    border-radius:10px;
}

.tit h3 a{
    float:right;
    font-size:14px;
    color:#999;
    margin-top:5px;
}

/*==================================================
    图片新闻
==================================================*/

.imgnews1 .con li{
    width:33.2%;
    float:left;
    padding-left:15px;
}

.imgnews1 .con li:first-child{
    padding-left:0;
}

.imgnews1 .con li img{
    width:100%;
    height:218px;
    object-fit:cover;
    border-radius:6px;
}

.imgnews1 .con li h3{
    font-size:17px;
    color:#222;
    line-height:1.6;
    padding:14px 0 8px;
}

.imgnews1 .con li p{
    font-size:14px;
    color:#666;
    line-height:1.8;
    text-indent:0;
}

.imgnews1 .con li .time{
    display:block;
    color:#999;
    font-size:14px;
    padding-top:10px;
    text-align:right;
}

/*==================================================
    校园新闻
==================================================*/

.xiaonews1 .fl{
    width:49%;
    margin-right:2%;
}

.xiaonews1 .fr{
    width:49%;
}

.xiaonews1 .top{
    position:relative;
    margin-bottom:18px;
    overflow:hidden;
    border-radius:6px;
}

.xiaonews1 .top img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.xiaonews1 .top p{
    position:absolute;
    bottom:0;
    width:100%;
    padding:10px 15px;
    background:rgba(0,0,0,.55);
    color:#fff;
    font-size:16px;
}

.xiaonews1 .bot li,
.xiaonews2 .bot li,
.xiaonews3 .bot li{
    padding:8px 0;
    border-bottom:1px dashed #ececec;
    background:none;
    text-indent:0;
}

.xiaonews1 .bot li a,
.xiaonews2 .bot li a,
.xiaonews3 .bot li a{
    font-size:16px;
}

.xiaonews1 .bot li span,
.xiaonews2 .bot li span,
.xiaonews3 .bot li span{
    color:#999;
    font-size:16px;
}


/*==================================================
    xiaonews4
    横向无缝滚动（混合图）
    滚动区域：1230 × 160
==================================================*/

.xiaonews4{}

.xiaonews4 .tit{}

.xiaonews4 .tit h3{
    padding-bottom:10px;

    border-bottom:2px solid #8c0000;
}

.xiaonews4 .tit span{
    color:#8c0000;
}

.xiaonews4 .con{
    padding-bottom:15px;
}


/* 滚动区域 */

.picMarquee-left{
    position:relative;

    width:1230px;
    height:160px;

    overflow:hidden;
}

/* 轨道 */

.picMarquee-left .bd ul{
    width:100%;
    height:160px;

    overflow:hidden;
}

/* li */

.picMarquee-left .bd ul li{
    float:left;

    overflow:hidden;

    width:auto !important;

    text-align:center;
}

/* a */

.picMarquee-left .bd ul li a{
    display:block;
}

/* img */

.picMarquee-left .bd ul li img{
    display:block;

    object-fit:cover;

    border-radius:6px;
}

/* 小图 */
/* 16:9 => 284 × 160 */

.picMarquee-left .piclist1 img{
    width:284px;
    height:160px;

    margin:0 2px;
}

/* 大图 */
/* 保持双倍宽 */

.picMarquee-left .piclist2 img{
    width:568px;
    height:160px;

    margin:0 2px;
}



/*==================================================
    xiaonews5
    普通图片滚动
    滚动区域：1230 × 160
==================================================*/

.xiaonews5{}

.xiaonews5 .vsb-space{
    width:100%;
}

.xiaonews5 .con{
    padding-bottom:15px;
}


/* 滚动区域 */

.picMarquee-left1{
    position:relative;

    width:1230px;
    height:160px;

    overflow:hidden;
}

/* ul */

.picMarquee-left1 .bd ul{
    overflow:hidden;
}

/* li */

.picMarquee-left1 .bd ul li{
    float:left;

    overflow:hidden;

    width:auto !important;

    text-align:center;
}

/* 卡片 */

.picMarquee-left1 .bd ul li a{
    display:block;

    width:284px;
    margin-right:20px;
}

/* 图片 */
/* 16:9 */

.picMarquee-left1 .bd ul li img{
    display:block;

    width:284px;
    height:160px;

    background:#fff;

    object-fit:cover;

    border-radius:6px;
}

/* 标题 */

.picMarquee-left1 .bd ul li p{
    padding:8px 0 0;

    line-height:1.6;
}

.picMarquee-left1 .bd ul li:hover p{
    color:#8c0000;
}



/*==================================================
    xiaonews6
    带按钮图片滚动
    滚动区域：1230 × 160
==================================================*/

.xiaonews6{}


/* 滚动组件 */

.picScroll-left2{
    position:relative;

    width:1230px;
    height:160px;

    overflow:hidden;
}

.picScroll-left2 .hd{}


/* 左按钮 */

.picScroll-left2 .hd .prev{
    position:absolute;
    top:40%;
    left:0;

    display:block;

    width:16px;
    height:30px;

    overflow:hidden;

    cursor:pointer;

    background:url(../images/xiaonews6z.png) no-repeat center center;
}


/* 右按钮 */

.picScroll-left2 .hd .next{
    position:absolute;
    top:40%;
    right:0;

    display:block;

    width:16px;
    height:30px;

    overflow:hidden;

    cursor:pointer;

    background:url(../images/xiaonews6y.png) no-repeat center center;
}


/* 滚动区域 */

.picScroll-left2 .bd{
    padding:0 24px;
}

/* ul */

.picScroll-left2 .bd ul{
    overflow:hidden;
}

/* li */

.picScroll-left2 .bd ul li{
    float:left;

    overflow:hidden;

    width:auto !important;
}

/* 卡片 */

.picScroll-left2 .bd ul li a{
    display:block;

    width:284px;
    margin:0 10px;
}

.picScroll-left2 .bd ul li a:hover{
    color:#8c0000;
}

/* 图片 */
/* 16:9 */

.picScroll-left2 .bd ul li img{
    display:block;

    width:284px;
    height:160px;

    background:#fff;

    object-fit:cover;

    border-radius:6px;
}

/* 日期 */

.picScroll-left2 .bd ul li span{
    display:block;

    color:#8c0000;
    font-size:12px;

    cursor:pointer;

    padding-top:6px;
}

/* 标题 */

.picScroll-left2 .bd ul li p{
    padding:6px 0 0;

    line-height:1.6;
}


/*==================================================
    通知公告
==================================================*/

.tongzhi2 .tit{
    background:none;
    border-bottom:1px solid #eee;
    padding-bottom:8px;
    margin-bottom:8px;
}

.tongzhi2 .tit h3{
    font-size:20px;
    color:#222;
    background:none;
    text-indent:0;
    line-height:1;
}

.tongzhi2 .con li{
    padding-bottom:6px;
    margin-bottom:6px;
    border-bottom:1px solid #f2f2f2;
}

.tongzhi2 .fl{
    width:64px;
    margin-right:6px;
    background:#fafafa;
    border-radius:6px;
    padding:0px 0;
}

.tongzhi2 .fl h3{
    width:100%;
    text-align:center;
    color:#8c0000;
    font-size:22px;
}

.tongzhi2 .fl h4{
    width:100%;
    text-align:center;
    color:#999;
    font-size:14px;
}

.tongzhi2 .fr{
    width:72%;
}

.tongzhi2 .fr h3{
    padding-bottom:6px;
}

.tongzhi2 .fr h3 a{
    font-size:15px;
    color:#222;
}

.tongzhi2 .fr p{
    text-indent:0;
    font-size:13px;
    color:#666;
    line-height:1.8;
}

/*==================================================
    图片滚动
==================================================*/

.picMarquee-left{
    height:200px;
    width:20%;
    overflow:hidden;
    position:relative;
}

.picMarquee-left .piclist1 img,
.picMarquee-left .piclist2 img{
    width:220px;
    height:120px;
    object-fit:cover;
    border-radius:6px;
}

/*==================================================
    搜索
==================================================*/

.ss1 .con{
    border:none;
    background:none;
    padding-bottom:0;
}

.ss1 .con form{
    padding:0;
}

.ss1 .con .ssk{
    width:63%;
    height:38px;
    border:1px solid #ddd;
    border-radius:6px;
    text-indent:10px;
    line-height:38px;
    font-size:13px;
}

.ss1 .con .submit{
    width:30%;
    height:38px;
    border:0;
    background:#8c0000;
    color:#fff;
    border-radius:6px;
    cursor:pointer;
    font-size:13px;
}

/*==================================================
    快捷方式
==================================================*/

.kuaijie1 .con li a,
.kuaijie3 li a{
    border-radius:6px;
    transition:.3s;
}

.kuaijie1 .con li a:hover,
.kuaijie3 li a:hover{
    transform:translateY(-2px);
}

/*==================================================
    内页Banner
==================================================*/

.banner{
    width:100%;
    height:380px;
    overflow:hidden;
}

.banner img{
    width:100%;
    height:380px;
    object-fit:cover;
}

/*==================================================
    内页布局
==================================================*/

/* 校园简介css开始 */
.about{}
.about .tit h3{border-bottom:2px solid #8c0000;height:34px;line-height:34px;}
.about1{}
.about1 .tit{}
.about1 .tit h3{background:url(../images/about1tit.png) no-repeat left bottom;font-size:16px;color:#fff;
    text-indent:30px;
}
.about1 .tit h3 span{display:block;background:url(../images/about1h3.png) no-repeat 7px center;}
.about1 .con{padding-bottom:0px;}
.about1 .con img{display:block;border:1px solid #ccc;width:243px;height:93px;}
.about1 .con p{padding-top:10px;text-indent:2em;line-height:1.6em;}

.about2{}
.about2 .tit h3{font-size:16px;color:#fff;}
.about2 .tit h3 span{padding:7px 10px;background:#8c0000;}
.about2 .con{padding-bottom:20px;}
.about2 .con img{float:left;margin-right:15px;width:104px;height:127px;}
.about2 .con p{text-indent:2em;line-height:1.6em;}

/* 校友风采css开始 */
.slideTxtBox1_fc .hd{border-bottom:1px solid #8c0000;}
.slideTxtBox1_fc .hd ul li{background:none;padding:0 10px;}
.slideTxtBox1_fc .hd ul li.on{background:#fff;border:1px solid #8c0000;color:#8c0000;border-bottom:0;}
.fengcai{}
.slideTxtBox1_fc .bd{margin-bottom:0px;}
.fengcai .con{}
.fengcai .bd .con li{padding-bottom:20px;background:none;text-indent:0;}
.fengcai .con li .fl{width:34%;margin-right:4%;}
.fengcai .con li .fl a{display:block;border:1px solid #ccc;}
.fengcai .con li .fl img{width:100%;height:81px;}
.fengcai .con li .fr{width:62%;}
.fengcai .con li .fr h3{text-indent:0;font-size:14px;color:#333;padding:5px 0;}
.fengcai .con li .fr p{font-size:12px;line-height:1.8em;}

/* 快捷方式css开始 */
.kuaijie{}
.kuaijie .tit{padding-top:0px;}
.kuaijie .tit h3{border-bottom:2px solid #8c0000;height:34px;line-height:34px;font-size:16px;color:#fff;}
.kuaijie .tit h3 span{padding:7px 10px;background:#8c0000;}
.kuaijie1{}
.kuaijie1 .con{padding-bottom:20px;}
.kuaijie1 .con li{margin-bottom:10px;text-indent:55px;}
.kuaijie1 .con li a{display:block;border:1px solid #ccc;padding:15px 10px;color:#333;}
.kuaijie1 .con li a:hover{color:#8c0000;}
.kuaijie1 .con li.li1{background:#f2f2f2 url(../images/kuaijie11.jpg) no-repeat 15px center;}
.kuaijie1 .con li.li2{background:#f2f2f2 url(../images/kuaijie12.jpg) no-repeat 15px center;}
.kuaijie1 .con li.li3{background:#f2f2f2 url(../images/kuaijie13.jpg) no-repeat 15px center;}
.kuaijie1 .con li.li4{background:#f2f2f2 url(../images/kuaijie14.jpg) no-repeat 15px center;}

.kuaijie2{}
.kuaijie2 .con{padding-bottom:20px;}
.kuaijie2 .con li{margin-bottom:20px;text-align:right;}
.kuaijie2 .con li a{font-size:18px;color:#fff;display:block;padding:15px 20px 15px 0;}
.kuaijie2 .con li.li1{background:url(../images/kuaijie21.jpg) no-repeat left top;}
.kuaijie2 .con li.li2{background:url(../images/kuaijie22.jpg) no-repeat left top;}
.kuaijie2 .con li.li3{background:url(../images/kuaijie23.jpg) no-repeat left top;}
.kuaijie2 .con li.li4{background:url(../images/kuaijie24.jpg) no-repeat left top;}

/* 站内搜索css开始 */
.ss{}
.ss1{}
.ss1 .con{border:1px solid #ccc;border-radius:3px;background:#f2f2f2;width:100%;}
.ss1 .con h3{text-align:center;background:url(../images/ss11.png) no-repeat center top; 
    height:27px;
    line-height:27px;
    color:#fff;
    
    display:block;
}
.ss1 .con form{display:block;padding:20px 15px;}
.ss1 .con span{display:block;padding-left:40px;background:url(../images/ss12.png) no-repeat left center;}
.ss1 .con .ssk{width:63%;height:32px;border:1px solid #ccc;margin-right:5%;line-height:32px;}
.ss1 .con .submit{width:30%;height:34px;border:0;background:#8c0000;color:#fff;cursor:pointer;}

.ss2{margin:20px 0;}
.ss2 .con{border:1px solid #ccc;border-radius:3px;border-bottom-left-radius:20px;
    background:url(../images/ss21.png) no-repeat left top;
}
.ss2 .con h3{font-size:14px;color:#8c0000;text-indent:3em;padding:5px 0;}
.ss2 .con form{display:block;padding:5px 10px;margin:5px 15px 20px 20px;
    background:#f2f2f2;
    border-radius:10px;
}
.ss2 .con span{display:block;padding:6px 0;padding-right:40px;
    background:url(../images/ss22.png) no-repeat right center;
}
.ss2 .con .ssk{width:63%;height:20px;border:1px solid #ccc;margin-right:5%;display:block;line-height:20px;}
.ss2 .con .submit{width:44px;height:22px;border:0;background:#3c3c3c;color:#fff;cursor:pointer;display:block;
    text-indent:2px;
}

.ss3{}
.ss3 .con{border:1px solid #ccc;border-radius:3px;background:url(../images/ss31.jpg) no-repeat left top;width:100%;}
.ss3 .con form{display:block;padding:20px 15px 10px;}
.ss3 .con span{display:block;padding-left:10px;}
.ss3 .con .ssk{width:99%;height:30px;border:1px solid #ccc;color:#666;text-indent:1em;line-height:30px}
.ss3 .con .submit{height:26px;border:0;color:#fff;cursor:pointer;
    float:right;
    padding-left:35px;
    *padding-left:18px;
    padding-right:10px;
    background:#8c0000 url(../images/ss32.png) no-repeat 10px center;
    margin-top:10px;
}

/* 快捷方式css开始 */
.kuaijie{}
.kuaijie_bot .tit{padding-bottom:0px;padding-top:20px;}
.kuaijie_bot .tit h3{height:34px;line-height:34px;font-size:16px;color:#fff;background:#8c0000;border-bottom:0;}
.kuaijie_bot .tit h3 span{padding:0 10px;}
.kuaijie_bot .tit h3 a{color:#fff;}
.kuaijie_bot .con{border:1px solid #ccc;padding:15px 10px 5px;}
.kuaijie_bot .con li a:hover{color:#8c0000;}
.kuaijie3{}
.kuaijie3 li{float:left;text-indent:42px;height:34px;line-height:34px;margin-bottom:9px;}
.kuaijie3 li.mr{margin-right:0px;}
.kuaijie3 .li1{background:url(../images/kuaijie31.png) no-repeat left center;}
.kuaijie3 .li2{background:url(../images/kuaijie32.png) no-repeat left center;}
.kuaijie3 .li3{background:url(../images/kuaijie33.png) no-repeat left center;}
.kuaijie3 .li4{background:url(../images/kuaijie34.png) no-repeat left center;}
.kuaijie3 .li5{background:url(../images/kuaijie35.png) no-repeat left center;}
.kuaijie3 .li6{background:url(../images/kuaijie36.png) no-repeat left center;}
.kuaijie4{margin-bottom:30px;}
.kuaijie4 .con{padding:15px 0 5px;}
.kuaijie4 li{width:78px;text-align:center;padding-bottom:15px;display:inline-block;*display:inline;*zoom:1;}
.kuaijie4 li a{display:block;padding-top:40px;}
.kuaijie4 .li1{background:url(../images/kuaijie41.png) no-repeat center top;}

.kuaijie4 .li3{background:url(../images/kuaijie43.png) no-repeat center top;}
.kuaijie4 .li4{background:url(../images/kuaijie44.png) no-repeat center top;}
.kuaijie4 .li5{background:url(../images/kuaijie45.png) no-repeat center top;}
.kuaijie4 .li6{background:url(../images/kuaijie46.png) no-repeat center top;}
/*-------------------
	二级页面列表页
--------------------*/
/*banner*/
.banner{width:100%;height:302px;overflow:hidden; }
.banner img{width:2000px;height:302px;display:block;margin:0 auto;}

/*main*/
.main{width:1500px; margin:28px auto;}
/*wape-left*/
.main .wape-left{width:300px;margin-right:35px;float:left;}
.main .wape-left div{background:#fff url(../images/jianjie_03.jpg) no-repeat left top;color:#fff;font-size:22px;text-align:center;height:53px;vertical-align:middle;padding-top:15px;
    font-weight:400;
}
.main .wape-left div p{font-size:16px;font-family:"Arial";line-height:25px;}
.main .wape-left ul {border: 1px solid #e5e5e5;margin-top: -1px;border-bottom:none;}
.main .wape-left ul li{text-align:center;height:50px;width:100%;line-height:50px;border-bottom: 1px solid #e5e5e5;}
.main .wape-left ul li a{font-size:16px;display:block;}
.main .wape-left ul li:hover{background:#ffeeee;}
.main .wape-left ul li:hover a{color:#8f000b;}
.main .wape-left ul li.on{background:#ffeeee;}
.main .wape-left ul li.on a{color:#8f000b;}
/*wape-right*/
.main .wape-right{width:1000px;float:left;}
.main .biaoTi{background:#fff url(../images/fenxian_03.jpg) repeat-x left bottom;height:46px;padding-top:5px;width:100%;}
.main .wape-right .biaoTi span{width:49%;display:inline-block;font-size:20px;color:#666666;text-align:right;}
.main .wape-right .biaoTi a{font-size:20px;}
.main .wape-right .biaoTi span:first-child{text-align:left;font-size:20px;color:#333;}
.main .wape-right .right-con {width:100%;padding:20px 0 30px 0 ;}
.main .wape-right .right-con p{text-indent:30px;font-size:16px;line-height:1.8em;padding-bottom:20px;}
.main .wape-right .right-con img{max-width:100%;height:auto;margin:10px auto;padding-bottom:20px;}



/*-------------------
	二级页面内容页
--------------------*/

.main .kuaiXun{width:100%;}
.main .biaoTi span.ico{width:100%;display:inline-block;font-size:20px;color:#666666;padding-left:30px;
    background:url(../images/woshishuo_03.jpg) no-repeat left 2px;
}
.main .kuaiXun .kuaiXun-con{padding-top:35px;width:100%;}
.main .kuaiXun .kuaiXun-con .title{padding-bottom:20px;}
.main .kuaiXun .kuaiXun-con h3{font-size:22px;color:#9f080c;text-align:center;}
.main .kuaiXun .kuaiXun-con span{display:block;width:100%;margin-top:10px;text-align:center;}
.main .kuaiXun .kuaiXun-con span em{font-style:normal;font-size:16px;}
.main .kuaiXun .kuaiXun-con p{text-indent:30px;font-size:16px;line-height:30px;padding-bottom:20px;}
.main .kuaiXun .kuaiXun-con img{max-width:100%;height:auto;margin:10px auto;}

/*
  ul li 搜索页面列表
*/
.main .List{padding:20px 0;list-style-type:square;margin-left:20px;color:#999999;font-size:8px;}
.main .List li{list-style:square; width:100%; height:38px;border-bottom:1px dashed #e5e5e5;}
.main .List li a{ width:80%; height:38px; line-height:38px; display:inline-block; font-size:16px; color:#666;}
.main .List li span{ display: inline-block;width: 20%;text-align: right;font-size: 16px;color: #999;
    line-height: 38px;
}
.main .List li a em{color:#9f080c;font-size:14px;font-style:normal;}

/*------------------
	分页部分的CSS
------------------*/
.fenye{margin:20px 0;text-align:center;line-height:36px; clear:both;}
.fenye span{padding:2px 7px 2px 7px;margin:0 4px 0 4px;text-decoration:none;color:#666; font-size:12px; background:#f0efef; border-radius: 3px;}
.fenye a{padding:2px 7px 2px 7px;margin:0 4px 0 4px;text-decoration:none;color:#666; font-size:12px; 
    background:#f0efef;
    border-radius: 3px;
}
.fenye a.current{background:#8f0306;color:#fff;}
.fenye a:hover{background:#8f0306;color:#fff;}
.fenye input{width:40px;height:18px;border:1px solid #dce0e7;}

/*-------------------
	网站页脚
--------------------*/

#footer{background:#8c0000;padding:20px 0;}
#footer .fl{width:70%;background:url(../images/foot-logo.jpg) no-repeat 100px center;padding:10px 0;}
#footer .fl p{padding-left:200px;color:#fcd8d8;font-size:12px;line-height:22px;}
#footer .fr{width:70%;}
#footer .fr p{color:#fcd8d8;line-height:1.6em;font-size:14px;padding-top:10px; text-align:center;}