/* default.css样式 */

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*:before, *:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

img {
    border: none;
    width: 100%;
}

a {
    background-color: transparent;
    text-decoration: none;
    -webkit-text-decoration-skip: objects;
    outline: none;
    color: inherit;
    cursor: pointer;
}

a:hover {
    color: inherit;
}

a:focus, a:active {
    outline: none;
}

a img {
    vertical-align: top;
}

ul, ol, li {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

textarea, input, button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    cursor: pointer;
}

::-webkit-input-placeholder {
    color: #aaa;
}

:-moz-placeholder {
    color: #aaa;
    opacity: 1;
}

::-moz-placeholder {
    color: #aaa;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #aaa;
}

body, input, button, textarea, select, option {
    font: normal 16px "Microsoft YaHei", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
}

body {
    position: relative;
    min-width: 1100px;
    background-color: #fff;
    color: #222;
}

img.responsive {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.clearfix {
    zoom: 1;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
    overflow: hidden;
}

/* common.css样式 */

/* welcome */

.welcome {
    width: 1200px;
    height: 36px;
	margin: 0 auto;
    background-color: #E7E7E7;
}

.welcome .welcome-inner {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    font-size: 12px;
    color: #777777;
    line-height: 36px;
    /* 飘红 后期删除*/
    /*background: #e7e7e7;*/
}

.welcome-inner .wel-left {
    display: flex;
    justify-items: center;
}

.welcome-inner .wel-left .weather {
    display: flex;
    align-items: center;
    margin-left: 14px;
}

.welcome-inner .wel-left .weather i:first-of-type {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url("../img/icon_shandian.svg") no-repeat center/cover;
}

.welcome-inner .wel-left .weather i:nth-of-type(2) {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url("../img/icon_duoyun.svg") no-repeat center/cover;
}

.welcome-inner .wel-left .weather .place {
    margin: 0 4px;
}

.welcome-inner .wel-left .weather .temperature {
    margin-left: 6px;
}

.welcome-inner .wel-right {
    display: flex;
    align-items: center;
}

.welcome-inner .wel-right .search-box {
    width: 246px;
    height: 22px;
    background-color: #ffffff;
    border-radius: 2px;
    display: flex;
    align-items: center;
    position: relative;
}

.wel-right .search-box input {
    width: 100%;
    height: 100%;
    font-size: 12px;
    color: #AAAAAA;
    padding: 4px 6px;
}

.wel-right .search-box i {
    display: block;
    width: 14px;
    height: 14px;
    background-image: url("../img/icon_search.png");
    background-size: 100% 100%;
    position: absolute;
    right: 6px;
    cursor: pointer;
}

.welcome-inner .wel-right .operate {
    display: flex;
    align-items: center;
}

.wel-right .operate .operate-item:first-child {
    margin: 0 30px;
}

.wel-right .operate .operate-item:hover {
    color: #ed242a;
}

/* header */

.header {
  width: 100%;
 margin-bottom: 20px;
}

.header .header-img {
  width: 1200px;
  margin: 0 auto;
}
.header-img img{
    display:block;
}

.header-img img:last-child{
    margin-top:15px;
    
}

.header .header-inner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  position: relative;
}

.header .weather {
  width: 300px;
  height: auto;
}

.header .logo {
  width: 247px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header .adver {
  width: auto;
  height: 75px;
}

/* nav */

.nav {
    width: 100%;
    height: 82px;
    background: -moz-linear-gradient(top, rgba(237,36,42,.05) 0%, rgba(24,149,213,.05) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(237,36,42,.05)), color-stop(100%, rgba(24,149,213,.05)));
    background: -webkit-linear-gradient(top, rgba(237,36,42,.05) 0%, rgba(24,149,213,.05) 100%);
    background: -o-linear-gradient(top, rgba(237,36,42,.05) 0%, rgba(24,149,213,.05) 100%);
    background: -ms-linear-gradient(top, rgba(237,36,42,.05) 0%, rgba(24,149,213,.05) 100%);
    background: linear-gradient(to bottom, rgba(237,36,42,.05) 0%, rgba(24,149,213,.05) 100%);
    border-top: 6px solid #ed242a;
}

.nav .nav-inner {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.nav-inner .nav-item {
    padding: 10px 20px 10px 30px;
    display: flex;
    justify-items: center;
    position: relative;
}

.nav-inner .nav-item::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(0deg, rgba(41, 98, 167, 1) 0%, rgba(86, 145, 215, 1) 100%);
    opacity: 0.1;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.nav-inner .nav-item:first-child {
    padding-left: 10px;
}

.nav-inner .nav-item:first-child .nav-subs {
    width: 160px;
}

.nav-inner .nav-item:first-child .nav-subs li {
    width: 52px;
}

.nav-inner .nav-item:nth-child(2) .nav-subs {
    width: 160px;
}

.nav-inner .nav-item:nth-child(2) .nav-subs li {
    width: 52px;
}

.nav-inner .nav-item:nth-child(3) .nav-subs {
    width: 162px;
}

.nav-inner .nav-item:nth-child(3) .nav-subs li {
    width: 40px;
}

.nav-inner .nav-item:nth-child(4) .nav-subs {
    width: 110px;
}

.nav-inner .nav-item:nth-child(4) .nav-subs li {
    width: 52px;
}

.nav-inner .nav-item:nth-child(5) .nav-subs {
    width: 130px;
}

.nav-inner .nav-item:nth-child(5) .nav-subs li {
    width: 64px;
}

.nav-inner .nav-item .nav-title {
    writing-mode: vertical-lr;
    width: 50px;
    text-align: center;
    font-size: 22px;
    color: #ed242a;
    text-indent: 4px;
}

.nav-inner .nav-item .nav-subs {
    width: calc(100% - 50px);
    padding: 8px 0;
    font-size: 0;
}

.nav-item .nav-subs li {
    display: inline-block;
    line-height: 22px;
    width: 33%;
    font-size: 13px;
}

.nav-item .nav-subs li:hover {
    color: #ed242a;
}

/*friend-links*/

.friend-links {
    width: 100%;
    height: auto;
    background: #f1f1f1;
    margin-top: 40px;
}

.friend-links .friend-links-inner {
    width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
}

.friend-links-inner .friend-title {
    width: 150px;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #ed242a;
}

.friend-links-inner .links-list {
    width: calc(100% - 150px);
    height: auto;
}

.friend-links-inner .links-list  li {
    display: inline-block;
    width: 145px;
    padding: 10px 0;
    font-size: 14px;
    color: #999999;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.friend-links-inner .links-list li:hover {
    color: #ed242a;
    text-decoration: underline;
}

/*footer*/
.footer .footer-inner {
    width: 1200px;
    margin: 0 auto;
    padding: 40px 0 10px;
}

.footer-inner .certificate {
    text-align: center;
}

.footer-inner .certificate li {
    display: inline-block;
    width: 165px;
    height: 60px;
    margin-right: 30px;
}

.footer-inner .certificate li:last-child {
    margin-right: 0;
}

.footer-inner .exec {
    margin: 30px 0 0px;
}

.footer-inner .exec p {
    font-size: 13px;
    text-align: center;
    padding: 4px 0;
}

.footer-inner .footer-nav {
    text-align: center;
    font-size: 13px;
    padding: 8px 0;
}

.footer-inner .footer-nav li {
    display: inline-block;
    padding: 0 4px;
    border-right: 1px solid #222222;
    line-height: 12px;
}

.footer-inner .footer-nav li:last-child {
    border: none;
}

.footer-inner .footer-nav li:hover {
    color: #ed242a;
    text-decoration: underline;
}

.footer-inner .link a:hover {
    color: #ed242a;
    text-decoration: underline;
}


/*backToTop*/
#return_top {
    width: 44px;
    height: 44px;
    position: fixed;
    bottom: 30px;
    right: 24px;
    z-index: 999;
    cursor: pointer;
    display: none;
}
#return_top i {
    display: inline-block;
    width: 100%;
    height: 100%;
    background-image: url("../img/icon_return_top.png");
    background-size: 100% 100%;
}
#return_top:hover {
    transform: scale(1.1);
}
.sec-header {
    width: 100%;
    height: 66px;
    border-bottom: 6px solid #ed242a;
    position: relative;
}

.sec-header .header-logo {
    display: block;
    width: 124px;
    height: 50px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.sec-header .header-nav {
    text-align: center;
}

.sec-header .header-nav .nav-item {
    display: inline-block;
    line-height: 66px;
    padding: 0 36px;
    color: #777777;
}

.sec-header .header-nav .nav-item a:hover {
    color: #ed242a;
}

.sec-header .header-links {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #666666;
    display: flex;
    align-items: center;
}

.sec-header .header-links li {
    margin-right: 18px;
}

.sec-header .header-links li:last-child {
    margin-right: 10px;
}

.sec-header .header-links li a {
    display: flex;
    align-items: center;
}

.sec-header .header-links li i {
    display: inline-block;
    margin-right: 6px;
    background-size: 100% 100%;
}

.sec-header .header-links li:nth-child(1) i {
    width: 26px;
    height: 26px;
    background-image: url("../img/icon-weibo.png");
}

.sec-header .header-links li:nth-child(2) i {
    width: 26px;
    height: 26px;
    background-image: url("../img/icon-wechat.png");
}

.sec-header .header-links li:nth-child(3) i {
    width: 26px;
    height: 26px;
    background-image: url("../img/icon-zhjj.png");
}

/*location*/

.location .location-inner {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    padding-top: 20px;
    border-bottom: 1px solid #F1F1F1;
    color: #2B4D2C;
    font-size: 14px;
    line-height: 40px;
    font-weight: bold;
}

/*分页样式*/

#pagination {
    position: relative;
    margin-top: 50px;
    padding-bottom: 30px;
    text-align: center;
}

.pagination a, .pagination span {
    display: inline-block;
    vertical-align: middle;
    padding: 4px 8px;
    margin: 0 3px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
    font-size: 14px;
}

.pagination a:hover, .pagination a.active, .pagination span:hover, .pagination span.active {
    background-color: #00A1E9;
    border-color: #00A1E9;
    color: #fff;
}

.pagination .jumper-input {
    display: inline-block;
    vertical-align: middle;
    width: 44px;
    height: 26px;
    padding: 0 .3em;
    margin: 0 5px;
    background-color: #fff;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 14px;
}

.pagination .pager-next {
    margin-right: 30px;
}

.pagination .jump-btn {
    margin-left: 20px;
}

.footer-inner .exec p img {
    width:40px;
    height:40px;
}