@charset "utf-8";
/* CSS Document */





.clearfix::after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

.clearfix {
}

/* 必要布局样式css */

.ui-header {
    height: 100px;
    box-sizing: border-box;
    /*position: fixed;*/
    width: 100%;
    min-width: 1300px;
    z-index: 100;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
	
}

.ui-header-box {
    justify-content: space-between;
    height: 100%;
    padding: 0 30px;
}

.ui-header-logo {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    display: block;
    width: 501px;
    margin-top: 15px;
	margin-left: 10px;
    float: left;
}

.ui-header-logo img {
    display: block;
    border: none;
}

.ui-header-nav dl dd ul {
    display: none;
    transition: all .3s ease;
   /* background-color: rgba(0, 32, 75, .6);*/
    transform: translateY(-4%);
    position: absolute;
    top: 30px;
    left: 0;
    padding: 0 30px;
}

.ui-header-nav {
    float: right;
    justify-content: flex-start;
	margin-top: 50px;
	margin-right: 5em;
	
}

.ui-header-nav dl dd a {
    font-weight: normal;
	color: #000;
	font-size: 16px;

}
.ui-header-nav > dl > dd > a{	font-weight: bold;}

.ui-header-nav dl dd a:hover{border-bottom: 1px #000 solid; opacity: 0.5}
.ui-header-nav dl dd {
    color: #000;
    display: block;
    padding: 0 30px;
    box-sizing: border-box;
    border-bottom: 2px solid transparent;
    font-size: 18px;
    font-weight: normal;
    position: relative;
    text-align: center;
    float: left;
	border-right: 1px #000 solid;
}
.ui-header-nav dl dd:last-child{border:0 }
.ui-header-nav > dl > dd > a{line-height: 1.5em;display: block}
.ui-header-nav > dl > dd > a:hover{border-bottom: 2px #0e5be7 solid}


.ui-header-nav dl dd img{margin-top: 30px; margin-left: 10px;}




.ui-header-nav dl dd ul li {
    height: 35px;
    line-height: 35px;
}

/*.ui-header-nav dl .on {
    border-bottom: 2px solid transparent;
    border-color: #000;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}*/

.ui-header-nav dl dd ul li a {
    color: #000;
    font-size: 14px;
}



.ui-header-tel {
    float: right;
	margin-right: 10px;
	position: relative;
}

@charset "utf-8"; @font-face {
    font-family: "pmzdbt";
    src: url("./pmzdbt.ttf");
}

.ui-header-tel a {
	border:1px #000 solid;
	border-radius: 500px;
    font-size: 18px;
    color: #000;
    display: block;
    margin-top: 20px;
    height: 30px;
	width: 30px;
    line-height: 30px;
	text-align: center;
}

.fixed{
    position: fixed;
	
background-image: -webkit-linear-gradient(top, rgba(255,255, 255, 1) 0%, rgba(255,255, 255, 0) 80%);
    background-image: -moz-linear-gradient(top, rgba(255,255, 255, 1) 0%, rgba(255,255, 255, 0) 80%);
    background-image: -o-linear-gradient(top, rgba(255,255, 255, 1) 0%, rgba(255,255, 255, 0) 80%);
    background-image: linear-gradient(top, rgba(255,255, 255, 1) 0%, rgba(255,255, 255, 0) 80%);
}

            .search_toggle {
            position: absolute;
            top: 35px;
            right: 0;
            width: 50px;
            height: 50px;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .search_toggle:hover {
            transform: scale(1.05);
        }
        
        .search_toggle:active {
            transform: scale(0.95);
        }
        
        .search_icon {
            width: 22px;
            height: 22px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        /* 放大镜图标 */
        .search_icon::before {
            content: '';
            position: absolute;
            width: 10px;
            height: 10px;
            border: 2px solid black;
            border-radius: 50%;
            top: 5px;
            left: 5px;
            transition: all 0.3s ease;
        }
        
        .search_icon::after {
            content: '';
            position: absolute;
            width: 2px;
            height: 8px;
            background: black;
            transform: rotate(-45deg);
            bottom: 0;
            right: 0;
            transform-origin: bottom right;
            transition: all 0.3s ease;
        }
        
        /* 关闭图标样式 */
        .search_toggle.close .search_icon::before,
        .search_toggle.close .search_icon::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 2px;
            background: black;
            top: 50%;
            left: 50%;
            border: none;
            border-radius: 1px;
        }
        
        .search_toggle.close .search_icon::before {
            transform: translate(-50%, -50%) rotate(45deg);
        }
        
        .search_toggle.close .search_icon::after {
            transform: translate(-60%, -400%) rotate(-45deg);
        }
        
        .search_box {
            position: absolute;
            top: 100px;
            right: 0px;
            width: 0;
            height: 50px;
            background: black;
            border-radius: 25px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: width 0.4s ease, padding 0.4s ease;
            z-index: 5;
            display: flex;
            align-items: center;
            opacity: 0;
            visibility: hidden;
        }
        
        .search_box.active {
            width: 400px;
            padding: 0 15px 0 20px;
            opacity: 1;
            visibility: visible;
        }
        
        .search_input {
            flex: 1;
            height: 100%;
            border: none;
            outline: none;
            font-size: 16px;
            background: transparent;
            padding-right: 10px;
			color: #a8a8a8
        }
        
        .search_input::placeholder {
            color: #a8a8a8;
        }
        
        .search_button {
            background: #fff;
            color: 000;
            border: none;
            border-radius: 20px;
            padding:5px 16px;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.3s ease;
            white-space: nowrap;
        }
        
        .search_button:hover {
            background: #fff;
        }


.dh_xl02 > a{width: 48%; margin: 1%; display: block; float: left; padding-bottom: 10px; border-bottom: 1px #2881c9 dashed}
.dh_xl02 > a dt{width: 30%;float: left; }
.dh_xl02 > a dt img{width: 100%}
.dh_xl02 > a dd{width: 67%; float: right}
.dh_xl02 > a dd h3{font-weight: bold; color: #2881c9}
.dh_xl02 > a dd > span{height: 6em; line-height: 2em; font-size: 12px; display: block; overflow: hidden; margin-top: 10px;}

.sw2{width: 100%;z-index: 999999999999999999}
.sw2 .swiper-pagination .swiper-pagination-bullet-active {background-color: #004ae6;border:1px #004ae6 solid!important;opacity:1!important;z-index: 999999}
.sw2 .swiper-pagination .swiper-pagination-bullet{border:1px #d9d9d9 solid;background: #004ae6;width: 10px;height: 10px;border-radius: 5px;opacity: 0.3}
.sw2 .swiper-slide{ overflow: hidden}
.sw2 img{width: 100%;  /* animation: zoom 4.25s infinite; 应用无限循环的动画 */}

.btt{font-size: 30px; text-align: center; font-weight: bold; padding-bottom: 20px;}



.bgl{background: #f4f9ff}
.ann {position: relative; height: 40px; overflow: hidden;}
.annlist {position: absolute;width: 100%;padding: 0 15px;}
.annitem {padding: 10px 0;display: flex;align-items: center;}
.annitem:last-child {border-bottom: none;}
.annbadge {flex-shrink: 0; background: url("../images/lb.png")no-repeat center center; margin-right: 10px; display: block; width: 18px; height: 18px}
.anntext {font-size: 14px;color: #333;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.anndate {font-size: 12px;color: #7f8c8d;flex-shrink: 0; margin-right: 10px}
.annfooter {padding: 8px 15px;background: #f8f9fa;display: flex;justify-content: space-between;align-items: center;border-top: 1px solid #eee;}
.annindicator {font-size: 12px;color: #7f8c8d;}
.annstatus {display: flex;align-items: center;font-size: 12px;color: #2881c9;}
.annstatus i {margin-right: 5px;animation: pulse 1.5s infinite;}
@keyframes pulse {0% { opacity: 0.5; }50% { opacity: 1; }100% { opacity: 0.5; }}
@media (max-width: 480px) {.anndate {display: none;}.anntext {font-size: 13px;}}
/*公告 end*/
.news_slider {width: 45%;max-width: 900px;height:400px;position: relative;overflow: hidden;}
.slides {width: 100%;height: 100%;display: flex;transition: transform 0.5s ease-in-out;}
.slide {min-width: 100%;height: 100%;background-size: 100% 100%!important;position: relative;}
.slide_content {position: absolute;bottom: 0;left: 0;right: 0;padding: 5px;background:rgba(0, 0, 0, 0.8);color: white;}
.slide_title {font-size: 16px;font-weight: 600; width: 60%; white-space:nowrap;overflow:hidden;text-overflow:ellipsis; display: block; height: 30px;}
.slide_content a{color: #fff}
.navigation {position: absolute;bottom: 18px;right: 20px;display: flex; gap: 12px;z-index: 10;}
.dot {width: 6px;height: 6px;border-radius: 50%;background: rgba(255, 255, 255, 0.6); cursor: pointer;transition: all 0.3s ease;}
.dot:hover {background: rgba(255, 255, 255, 0.9);transform: scale(1.2);}
.dot.active {background: #fff;transform: scale(1.2);box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);}
@media (max-width: 768px) {.news_slider {height: 400px;}
.slide_title {font-size: 20px;}}
@media (max-width: 480px) {.news_slider {height: 350px;}
.slide_content {padding: 20px;}
.slide_title {font-size: 18px;}
.navigation {bottom: 5px;right: 1px;}}

.bort{border-top:1px #c5c5c5 dashed;  }
/*新闻 end*/
.bt{line-height: 5em; overflow: hidden;}
.bt > div{font-size: 30px; float: left; color: #fff; width: 50%; position: relative; height:100px; }
.bt > div > em{display: block; text-transform: uppercase; position: absolute; font-size: 60px; opacity: 0.5}
.bt > div > span{position: absolute; top:20px; width: 100%; display: block; font-size: 40px; font-weight: bold}
.bt > a{float: right; font-size: 18px; color: #fff; margin-right: 15px; margin-top: 10px; border:1px #fff solid;line-height:3em; border-radius: 500px; text-align: center; padding: 0px 50px;		-moz-transition: all 0.3s ease-in;
		-webkit-transition: all 0.3s ease-in;
		-o-transition: all 0.3s ease-in;
		transition: all 0.3s ease-in;}
.bt > a:hover{transform: scale(0.8);color: #fff; border: 1px #fff solid; opacity: 0.8}




.bt1{line-height: 3em; overflow: hidden; height: 60px;}
.bt1 > div{font-size: 30px; float: left; color: #fff; width: 50%; position: relative;  }
.bt1 > div > em{display: block; text-transform: uppercase; position: absolute; font-size: 34px; opacity: 0.5}
.bt1 > div > span{position: absolute; top:20px; width: 100%; display: block; font-size: 30px; font-weight: bold}
.bt1 > a{float: right; 	-moz-transition: all 0.3s ease-in;
		-webkit-transition: all 0.3s ease-in;
		-o-transition: all 0.3s ease-in;
		transition: all 0.3s ease-in; margin-top: 10px;}




.new > ul:first-child{margin-top: 0px;}
.new > ul{border: 1px #fff solid; overflow: hidden;padding: 1.2%;		-moz-transition: all 0.3s ease-in;
		-webkit-transition: all 0.3s ease-in;
		-o-transition: all 0.3s ease-in;
		transition: all 0.3s ease-in;
	margin: 20px 0px;
}
.new > ul > li:first-child{width:10%; float: left; line-height: 1em; font-size: 22px; padding: 1%; text-align: center }
.new > ul > li:first-child > em{font-size: 80px; display: block;line-height: 1em;}
.new > ul > li:nth-child(2){width:73%; float: left; }
.new > ul > li:nth-child(2) > a{height:50px; white-space:nowrap;overflow:hidden;text-overflow:ellipsis;  line-height:50px; font-size: 30px; white-space:nowrap;overflow:hidden;text-overflow:ellipsis; font-weight: bold; display: block}
.new > ul > li:nth-child(2) > dd{font-size: 18px; height: 5.4em; line-height: 1.8em; overflow: hidden}
.new > ul > li:nth-child(3) {width: 15%; float: right;}
.new > ul:hover{opacity: 0.8;transform: scale(0.99);}
/*通知公告 end*/

.new1 > ul > li{overflow: hidden; font-size: 18px}
.new1 > ul > li > a{height: 2em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis; width: 80%; display: block; font-size: 16px; float: left}
.new1 > ul > li > em{float: right; width: 19%; text-align: right}

.new1_n{height: 3em; overflow: hidden; color: #666666;margin-top: 10px; line-height: 1.5em;  width: 100%; float: left; }
.new1_n1{ overflow: hidden; }


.new1_n1 > ul{width: 47%;  margin:0% 1% 3% 1%; display: block; border-top: 4px #004ae6 solid; float: right; box-shadow: 0 0 5px #c3c3c3; padding: 2% 2% 5% 2%;		-moz-transition: all 0.3s ease-in;
		-webkit-transition: all 0.3s ease-in;
		-o-transition: all 0.3s ease-in;
		transition: all 0.3s ease-in;}
.new1_n1 > ul:nth-child(1),.new1_n1 > ul:nth-child(3){ float: left}
.new1_n1 > ul:hover{box-shadow: 0 0 10px #afafaf; border-top: 4px #6f9dff solid; }


.new1_n1 > ul > a > li:nth-child(1){font-size: 18px; height:3.6em; line-height: 1.5em; overflow: hidden; font-weight: bold; margin-top: 10px; color: #333333 }
.new1_n1 > ul > a > li:nth-child(1) > span{ border: 1px #004ae6 dashed; border-radius: 10px; padding:15px 5px 5px 5px; line-height: 1.5em; }
.new1_n1 > ul > a > li:nth-child(1) > dd{padding: 8px 0px;}
.new1_n1 > ul > a > li:nth-child(2){height: 3em;overflow: hidden; line-height: 1.5em; margin-top: 10px; color: #999999}


.new6 > ul > li{ padding: 10px 0px; border-bottom: 1px #ececec solid}

.new6 > ul > li:last-child{border: 0px}



.kua{ box-shadow: 0 0 5px #3b8daa;  overflow: hidden;margin: 1%;  padding: 1.5%;	-moz-transition: all 0.3s ease-in;
		-webkit-transition: all 0.3s ease-in;
		-o-transition: all 0.3s ease-in;
		transition: all 0.3s ease-in; background: #50a0d8}

.kua:hover{box-shadow: 0 0 5px #898989; }
.kua1{-moz-box-shadow:0px 2px 8px #eaf3f9; -webkit-box-shadow:0px 2px 8px #eaf3f9; box-shadow:0px 2px 8px #eaf3f9;background: #fff;}
.kua2{ padding:0px 10px 10px 10px}

.inab img{width: 100%; height: 220px!important;}

.sw1 {width: 100%;height: 100%; }
.sw1 .swiper-slide {text-align: center;font-size: 18px; display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; }
.sw1 .swiper-slide span{height: 3em;overflow: hidden; line-height: 1.5em; display: block; margin-top: 10px; font-size: 14px; color: #333}
.sw1 .swiper-slide img {display: block; width: 100%; height: 100%; object-fit: cover;}


.new2 > a{ display: block; background: #50a0d8;box-shadow: 0 0 2px #f1f1f1; width: 17.5%; display: block; float: left; margin: 1%;padding:2% 1.5%; font-size: 24px;line-height: 1.5em;  -moz-transition: all 0.3s ease-in;
		-webkit-transition: all 0.3s ease-in;
		-o-transition: all 0.3s ease-in;
		transition: all 0.3s ease-in}
.new2 > a > dd{margin: 25px 0px;}
.new2 > a > em{		-moz-transition: all 0.3s ease-in;
		-webkit-transition: all 0.3s ease-in;
		-o-transition: all 0.3s ease-in;
		transition: all 0.3s ease-in;}
.new2 > a:hover >em{ margin-left: 50px;}
.new2 > a:hover{opacity: 0.8;transform: scale(0.98);}

.sw4{width: 96%; margin: 0 auto}
.sw4 .swiper-slide {
      text-align: center;
      font-size: 18px;
      display: block;
      justify-content: center;
      align-items: center;
	border-bottom: 5px #000 solid
    }
.sw4 .swiper-slide{position: relative}
.sw4 .swiper-slide img{width: 100%}
.sw4 .swiper-slide span{position: absolute; bottom: 0; z-index: 99999;background-image: -webkit-linear-gradient(rgba(42,92,161, 0) 0%, rgba(0,0, 0, 1) 100%);
    background-image: -moz-linear-gradient( rgba(42,92,161, 0) 0%, rgba(0,0, 0, 1) 100%);
    background-image: -o-linear-gradient( rgba(42,92,161, 0) 0%, rgba(0,0, 0, 1) 100%);
    background-image: linear-gradient(rgba(42,92,161, 0) 0%, rgba(0,0, 0, 1) 100%); width: 100%; display: block; color: #fff; height: 2.5em; line-height: 2.5em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis; padding:0em 1em; }

.sw4 .swiper-pagination{position: relative}

.swiper-pagination .swiper-pagination-bullet-active {
	background-color: #fff;
	border:1px #fff solid!important;
	opacity:1!important;
	z-index: 999999
}

.swiper-pagination .swiper-pagination-bullet{
	border:1px #d9d9d9 solid;
	background: #fff;

	opacity: 0.3
}








.bob{border-bottom: 1px #e1e1e1 solid}
.bobb{border-bottom: 3px #2881c9 solid}

.nnewz > h2{background: #f8fcff; padding: 5px 15px; font-weight: bold;color: #2881c9}

.dmenu{text-align: center; border: 1px #fff solid; line-height: 3em}
.dmenu a,.dmenu a:visited,.dmenu a:active{padding: 0px 30px;  margin: 0 auto; font-size: 18px; font-weight: bold}
.foot{ color: #fff; }
.foot a{color: #fff}

/*首页 end*/
.breadcrumb {font-size: 14px; float: right;padding-right: 10px;}
.breadcrumb ul {display: flex;list-style: none;flex-wrap: wrap;}
.breadcrumb li {display: flex;align-items: center;}
.breadcrumb li:not(:last-child)::after {content: ">";margin: 5px;color: #333;}
.breadcrumb a {text-decoration: none;color: #333333;transition: color 0.3s; }
.breadcrumb span {color: #0049e6;}
/*面包屑 end*/  
.lnav{overflow: hidden; border-bottom: 1px #8de2e6 solid}
.lnav > ul > li{float: left; padding: 15px 0px;}
.lnav > ul > li > a{float: left; padding: 0px 25px; margin: 0px 15px;  font-size: 20px; font-weight: bold}
.lnav > ul > li:hover{border-bottom: 2px #fff solid; }
.lnav .active{border-bottom: 2px #fff solid;}

.nnew > a{margin-bottom: 20px; float: left}
.nnew > a > h3{font-size: 16px; line-height: 2em; height: 2em; white-space:nowrap;overflow:hidden;text-overflow:ellipsis; }
.nnew > a > span{display: block; height: 4em;color: #999999; overflow: hidden}


.nnew_le {width: 33%; float: left;}
.nnew_ri{width: 63%; float: right;}
.nnew_ri > h3{ height: 2em; line-height: 2em; overflow: hidden; overflow: hidden}
.nnew_ri > span{font-size: 14px; color: #999999; height: 6em; overflow: hidden; display: block; line-height: 1.5em;}
.nnew_ri > em{color: #999999}


.nnew1 > a{width: 100%; overflow: hidden; border-bottom: 1px #ebebeb solid;display: block; padding: 30px 0px}


.nnew1 > a > div:nth-child(1) > span{font-size: 50px; color: #0049e6; display: block}
.nnew1 > a > div:nth-child(1){font-size: 16px; color: #979797; line-height: 2.5em; width: 10%; float: left; text-align: center; margin-top: 15px;}
.nnewd{width: 90%;}
.nnewd > h3{height: 2em; overflow: hidden; line-height: 2em;}
.nnewd > dd{font-size: 16px; height: 3.2em; line-height: 1.6em}


.nnew > div:last-child{border: 0px;}
.nnew_ri1{width: 100%; float: right}
.nnew_ri1 > span{float: left;line-height: 3em; color: #b8b8b8}
.nnewmore{width:130px; height: 35px; line-height: 35px; float: right; background: #2881c9;color: #fff; text-align: center; border-radius: 50px; margin-top: 10px;}
/*newlist end*/

.pagination {display: flex;justify-content: left;list-style: none;padding: 0;margin: 30px 0;}
.pagination li {margin: 0 2px; }
.pagination a, .pagination span {display: flex;align-items: center;justify-content: center;width: 40px;height: 40px;padding: 0 10px;text-decoration: none;border: 1px solid #fff;color: #fff;font-weight: 500;transition: all 0.3s ease; }
.pagination a:hover {border-color: #3ff2fb; color: #fff}
.pagination .active {color: white;border-color: #3ff2fb;}
.pagination .disabled {color: #ececec;cursor: not-allowed;}
.pagination .ellipsis {border: none;color: #777;cursor: default;}
.pagination.minimal a, .pagination.minimal span {border: none; background: none;}
.pagination.minimal .active {background: none;color: #004ae6;font-weight: bold;}

.nbt{ font-size: 36px; text-align: center; font-weight: bold}

.yema{
	padding:20px 0px 0px 0px; 
	text-align: left
		
}

        
/*页码end*/
.newri > h3{border-left: 3px #3187d2 solid; padding-left: 10px; line-height: 1.2em; font-weight: bold; margin-bottom: 10px;}
.newri > ul > li > a{font-size: 14px;  line-height: 20px!important; }
.newri > ul > li > i{font-size: 20px; font-weight: bold;line-height: 1.5em; float: left; padding-right: 5px;}
.newri > dl > dd{width: 46%; margin: 2%; float: left}
.newri > dl > dd > a > img{width: 100%}
.newbt{border-left: 3px #3187d2 solid; padding-left: 10px; font-weight: bold; line-height: 1em; }


.xy{border-top: 1px #e9e9e9 solid!important; margin-top: 10px; padding-top: 10px; margin:10px 20px;}
.xy > div > a{color: #fff; font-size: 16px; line-height: 2em;}




/*yewu*/
.content > ul > li{
	width: 40%;
	height: 240px;
	float: left;
	margin: 10px;
	position: relative;
	cursor: pointer;
	overflow: hidden;
}
.content > ul > li > img{
	width:100%;
	height:100%;
	-moz-transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}

.content > ul > li:nth-child(1){height:500px; width: 55%}

.txt{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50px;
	line-height: 50px;
	text-align: center;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.45);
}
.txt h3{
	font-size: 16px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;  text-align:left; padding-left: 1.5em;
}









.bgsl{background: #3187d2}
.lbt > span{padding:5px 30px; color: #ffffff;font-size: 18px; }
.leader > ul{width: calc(100%/4); float: left; }
.leader > ul > a{width: 90%; display: block; margin: 20px auto; background: #3187d2; padding: 8px;}
.pho {border: 0px!important;}
.pho > ul > li{width:49%; margin: 15px 0px; background: #f8fcff;}
.pho > ul > li:nth-child(odd){float: left;}
.pho > ul > li:nth-child(even){float: right;}
.pho > ul > li > a > img{width: 40%; float: left}
.pho > ul > li > a > span{display: block;line-height: 50px; width: 55%; float: right;}
.pho > ul > li > a > span > h3{font-size: 20px; font-weight: bold; margin-top: 10px;}
.pho > ul > li > a > span > em{color:#676767; font-size: 16px; max-height: 8em; line-height: 2em; overflow: hidden; display: block }

.honor_title {margin-bottom: 30px;font-size: 28px;text-align: center}
.honor_box {width: 50%;margin: 0 auto}
.honor_input {width: 80%;height: 50px;font-size: 18px;border: none; border-radius: 5px 0px 0px 5px;outline: none; border: 1px #fff solid; padding: 0px 20px; color: #fff; float: left}
.honor_input::placeholder {color: #fff!important; }
.honor_button {width: 130px; height: 50px; border: none;background: #fff; color: #62cfe0; border-radius:0px 5px 5px 0px; cursor: pointer; transition: all 0.3s ease;display: flex;align-items: center;justify-content: center;font-size:20px; font-weight: bold; float: left}
.honor_button:hover { background: #d2f4fa; }
.honor_hint { color: rgba(255, 255, 255, 0.8);margin-top: 20px;font-size: 16px;color: #666;letter-spacing: 2px; }
.hono_img{max-width: 90%; margin: 20px auto; text-align: center}
 @media (max-width: 600px) {.honor_input { padding: 14px 45px 14px 18px;font-size: 16px;}.honor_button {width: 40px; height: 40px;}.honor_title {font-size: 24px;}}
{}