* {
    margin: 0;
    padding: 0;
    font-family: "微软雅黑";
    /*font-weight: 400;*/
    font-style: normal;
}

ul,
ol,
li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #666666;
    display: inline-block;
}

a:hover {
    color: #666666;
}

body, html {
    background-color: #fcfcfc;
}

/* 设置滚动条的样式 */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* 滚动槽 */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    box-shadow: inset 6px rgba(0, 0, 0, 0.3);
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(9, 60, 125, 1);
    box-shadow: inset 6px rgba(0, 0, 0, .5);
    -webkit-box-shadow: inset 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
    background-color: #093c7d;
}

/*header*/
.header-container {
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    background: url("../images/header_bg.png;vpn_img") no-repeat top center;
    background-size: cover;
    position: relative;
}

.header-innerPage {
    height: 337px;
    background-image: url("../images/header_bg1.png;vpn_img");
    box-sizing: border-box;
    border-bottom: 10px solid rgba(13, 89, 167, 1);
    backdrop-filter: blur(10px);
}

.header-wrap {
    width: 1400px;
    height: 100%;
}

.header-layout_top {
    width: 100%;
    height: 25px;
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
}

.header-top_list {
    display: flex;
    height: 25px;
}

.header-top_list li {
    margin-right: 10px;
    position: relative;
    box-sizing: border-box;
    padding-right: 10px;
}

.header-top_list li:after {
    content: "";
    width: 1px;
    height: 15px;
    display: inline-block;
    position: absolute;
    background: #ffffff;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header-top_list li:last-child:after {
    display: none;
}

.header-top_list a {
    font-size: 12px;
    color: #ffffff !important;
}

.header-top_info {
    display: flex;
    height: 25px;
}

.header-top_info li {
    margin-right: 10px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 63px;
    filter: blur(undefinedpx);
    width: auto;
    box-sizing: border-box;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header-top_info li:last-child {
    margin-right: 0;
}

.header-top_info * {
    font-size: 12px;
    color: #ffffff !important;
}

.header-top_info select {
    border: none;
    outline: none;
    appearance: none;
    text-align: center;
    width: 50px;
    background: url("../images/sj.svg;vpn_img") no-repeat center right;
}

.header-top_info select::-ms-expand {
    display: none;
}

.header-top_info select:focus {
    outline: none;
}

.header-top_info select option {
    background: transparent;
    color: #666666;
}

.header-layout {
    width: 100%;
    height: 83px;
    margin-top: 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    max-width: 100%;
    height: auto;
}

.mobile_logo {
    display: none;
}

.header-logo a {
    width: 100%;
    height: auto;
}

.nav-list {
    display: flex;
    box-sizing: border-box;
}

.nav-list span {
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
    margin-top: 5px;
    transition: all .3s ease-out 0s;
}

.nav-list > li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.nav-list > li {
    margin-right: 20px;
    box-sizing: border-box;
    position: relative;
    padding-bottom: 12px;
    width: 100px;
}

.nav-list > li i.iconfont {
    color: #FFFFFF;
    font-size: 28px;
    transition: all .3s ease-out 0s;
}
.nav-list > li:hover i.iconfont{
    background-image: linear-gradient(180deg, #FFB70F 0%, #FFB70F 2%, #FF7124 100%, #FF7124 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-list > li:hover span{
    color: #FF8E24;
}

.nav-list > li .subNav_list {
    position: absolute;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    background: url("../images/nav_xl.png;vpn_img") no-repeat center top;
    top: 67px;
    display: none;
    padding: 15px 0;
    z-index: 9999;
}
.nav-list > li:nth-child(2) .subNav_list{
    background-image: url("../images/nav_xl1.png;vpn_img");
}
.subNav_list li {
    width: 100%;
    text-align: center;
    line-height: 30px;
}

.subNav_list a {
    font-size: 12px;
    color: #ffffff;
}

.nav-list > li:last-child {
    margin-right: 0;
}

.mobileNav_box {
    display: none;
    position: absolute;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    left: 0;
    top: 0;
    z-index: 999999;
    backdrop-filter: blur(5px);
    box-sizing: border-box;
    padding: 30px;
}

.close {
    text-align: right;
    box-sizing: border-box;
    padding-bottom: 80px;
}

.close img {
    cursor: pointer;
    width: 29px;
    height: 29px;
}

.header-layout_bottom {
    width: 100%;
    height: 448px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.layout_bottom-left {
    width: 584px;
    height: 458px;
    position: relative;
}

.layout_bottom-right {
    text-align: center;
}

.header-search {
    width: 689px;
    height: 57px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 47px;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 999;
    justify-content: space-between;
}

.innerPage_search {
    margin-top: 20px;
    width: 673px;
    height: 50px;
}

.headSearchBtn {
    width: 127px;
    height: 100%;
    background: linear-gradient(180deg, #3E94ED 3%, #0D59A7 100%);
    border-radius: 47px;
    border: none;
    outline: none;
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.headSearchBtn img {
    margin-right: 10px;
}

.innerPage_header_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.innerPage_header_left {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.innerPage_header_left img {
    max-width: 100%;
}

.innerPage_header_left img:nth-child(1) {
    margin: 0 30px;
}

.header-search select {
    border: none;
    outline: none;
    width: 110px;
    height: 100%;
    border-right: 1px solid #ffffff;
    box-sizing: border-box;
    appearance: none;
    font-size: 14px;
    color: #767676;
    text-align: center;
    background: url("../images/sj1.svg;vpn_img") no-repeat 80px center;
    text-align-last: center;
    text-align-all: center;
}
.header-search select option{
    text-align: center;
    text-align-last: center;
    text-align-all: center;
}
.innerPage_mobileNav {
    height: 100%;
}

.header-search select::-ms-expand {
    display: none;
}

.header-search select:focus {
    outline: none;
}

.header-search input {
    width: calc(100% - (110px + 127px));
    height: 100%;
    border: none;
    outline: none;
    background-color: transparent;
    box-sizing: border-box;
    padding: 0 25px;
    font-size: 16px;
    color: #666666;
}

.header-search input::placeholder {
    font-size: 16px;
    color: #666666;
}

.hot {
    position: relative;
    z-index: 999;
    display: flex;
    justify-content: center;
    font-size: 14px;
    color: #FFFFFF;
    align-items: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

.hot * {
    margin-bottom: 10px;
}

.hot a {
    display: inline-block;
    background: rgba(255, 255, 255, .2);
    border-radius: 30px;
    height: 28px;
    box-sizing: border-box;
    padding: 0 18px;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 28px;
    margin-right: 15px;
    transition: all .3s ease-in-out 0s;
}

.hot a:last-child {
    margin-right: 0;
}

.hot a:hover {
    background-color: #FF8E24;
}

/*header end*/

/*footer*/
.footer-container {
    width: 100%;
    height: 360px;
    background: linear-gradient(316deg, #089BEA 0%, #008CD0 100%);
}

.footer-wrap {
    width: 1400px;
    height: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding-top: 28px;
}

.friendship_link {
    width: 100%;
    height: 64px;
    background: rgba(255, 255, 255, 0.10000000149011612);
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0 24px;
    position: relative;
}

.friendship_link > span {
    margin-right: 22px;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: bold;
}

.friendship_link > div {
    width: 282px;
    height: 36px;
    background: rgba(255, 255, 255, .2);
    border-radius: 30px;
    border: 1px solid #098CCA;
    box-sizing: border-box;
    text-align: center;
    line-height: 36px;
    margin-right: 35px;
    color: #FFFFFF;
    font-size: 14px;
}

.friendship_link > div:last-child {
    margin-right: 0;
}

.friendship_link > div p {
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
}

.friendship_link > div p:after {
    content: "";
    width: 0;
    height: 0;
    display: inline-block;
    position: absolute;
    border-top: 6px solid #9CDEFF;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    box-sizing: border-box;
    top: 50%;
    transform: translateY(-50%);
    right: 7%;
    transition: all .3s ease-in-out 0s;

}

.friendship_link > div:hover p:after {
    transform: rotate(180deg);
    transform-origin: 50% 25%;
}

.subFriend_link {
    width: 100%;
    background: rgba(255, 255, 255, 1);
    position: absolute;
    left: 0;
    bottom: 50px;
    text-align: left;
    box-sizing: border-box;
    padding: 0 20px;
    display: none;
    z-index: 99;
}

.subFriend_link li {
    display: inline-block;
    box-sizing: border-box;
    padding: 10px;
}

.subFriend_link a {
    color: #666666 !important;
    font-size: 14px;
}

.footer_info {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.footer_info a {
    font-size: 16px;
    color: #D0F0FF !important;
    line-height: 30px;
    font-weight: bold;
}

.footer_info li {
    margin-right: 13px;
    position: relative;
    box-sizing: border-box;
    padding-right: 13px;
}

.footer_info li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.footer_info li:after {
    content: "";
    width: 2px;
    height: 17px;
    display: inline-block;
    position: absolute;
    background: #D0F0FF;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.footer_info li:last-child:after {
    display: none;
}

.footer_data {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
    box-sizing: border-box;
    padding: 0 30px;
}

.footer_data > * {
    font-size: 16px;
    color: #D0F0FF !important;
    line-height: 30px;
    margin: 0 6px;
}
.footer_data a:hover{
    color: #D0F0FF !important;
}
/*.footer_data a{
    display: flex;
    align-items: center;
}*/
.footer_data a img{
    margin-right: 5px;
    float: left;
    margin-top: 8px;
}
.footer-container .externalLink {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.footer-container .externalLink a {
    display: inline-block;
    margin-right: 28px;
}

.footer-container .externalLink a:last-child {
    margin-right: 0;
}

/*footer end*/

/*main*/
#main {
    width: 100%;
    height: auto;
}

/*main end*/

.mobileNav {
    display: none;
    cursor: pointer;
}

.mobileNav span {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: bold;
}


.canvi-navbar {
    background: #0D59A7;
    box-sizing: border-box;
    padding: 20px;
    height: 200px;
}

.closeNav {
    display: inline-block;
    cursor: pointer;
    box-sizing: border-box;
    padding-bottom: 20px;
}

.closeNav img {
    width: 25px;
    height: 25px;
}

.mobileNav-list a {
    width: 100%;
    line-height: 45px;
    display: flex;
    align-items: center;
}

.mobileNav-list img {
    margin-right: 10px;
}

.mobileNav-list span {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
}

.regular {
    position: fixed;
    z-index: 9999;
    top: 50%;
    transform: translateY(-50%);
    right: 2%;
}

.regular_link {
    width: auto;
    height: auto;
    text-align: center;
}

.reg_link {
    width: 100%;
    height: 41px;
    border-radius: 30px;
    background: rgba(13, 89, 167, .7);
    transition: all .3s ease-in-out 0s;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: bold;
    line-height: 41px;
    margin-bottom: 4px;
    box-sizing: border-box;
    padding: 0 18px;
}

.reg_link:hover {
    background: #FF8E24;
    color: #FFFFFF;
}

.backToTop {
    width: 48px;
    height: 57px;
    border-radius: 93px;
    background: rgba(13, 89, 167, .7);
    margin: 0 auto;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.field_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.field_list > li {
    width: 440px;
    height: 144px;
    border-radius: 5px;
    background: #FFFFFF;
    margin-top: 25px;
    display: flex;
    justify-content: flex-start;
    box-sizing: border-box;
    padding-top: 28px;
    padding-left: 40px;
    transition: all .3s ease-in-out 0s;
    border: 1px solid #FFFFFF;
    position: relative;
}

.field_list > li:hover {
    border-color: rgba(255, 152, 56, 0.25);
}

.field_left {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: url("../images/vessel3.png;vpn_img") no-repeat center center, linear-gradient(180deg, #3E94ED 3%, #0D59A7 100%);
    box-shadow: 0px 26px 15px -12px rgba(0, 163, 255, 0.2);
    border: 1px solid;
    border-image: linear-gradient(152deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)) 1 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out 0s;
}

.field_list > li:hover .field_left {
    background: url("../images/vessel3.png;vpn_img") no-repeat center center, linear-gradient(180deg, #FFB70F 3%, #FF7124 100%);
    transition: all .3s ease-in-out 0s;
    box-shadow: 0px 26px 15px -12px rgba(255, 159, 60, 0.2);
}

.field_right h4 {
    font-size: 20px;
    color: #333333;
    line-height: 24px;
    font-weight: bold;
    transition: all .3s ease-in-out 0s;
}
.field_right h4 a{
    font-size: 20px;
    color: #333333;
    line-height: 24px;
    font-weight: bold;
    transition: all .3s ease-in-out 0s;
}
.field_list > li:hover .field_right h4 a{
    color: #FF8E24;
}
.field_list > li:hover .field_right h4{
    color: #FF8E24;
}
.field_item {
    box-sizing: border-box;
    padding: 12px 0;
    height: 75px;
    overflow: auto;
}

.field_item > li {
    margin-right: 20px;
    display: inline-block;
}
.field_item > li:hover a{
    color: #0D59A7;
}
.field_item a {
    font-size: 14px;
    color: #3D3D3D;
    line-height: 28px;
    transition: all .3s ease-in-out 0s;
}

.field_right {
    box-sizing: border-box;
    padding-left: 30px;
    width: calc(100% - 80px);
}

.field_openUp {
    position: absolute;
    width: 0;
    height: 0;
    display: inline-block;
    border-top: 8px solid #999999;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}


/*面包屑*/
.breadCrumbs {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666666;
    flex-wrap: wrap;
}

.breadCrumbs i.iconfont {
    color: #999999;
    font-size: 20px;
    display: inline-block;
    margin-right: 10px;
}

.breadCrumbs a {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    /*padding-right: 10px;*/
}

.breadCrumbs a:last-child {
    color: #0D59A7;
}

/*.breadCrumbs a:after {
    content: "-";
    width: 4px;
    height: 1px;
    display: inline-block;
    position: absolute;
    right: 4px;
}*/

.breadCrumbs a:last-child:after {
    display: none;
}

/*左侧菜单*/
.aside_left {
    width: 250px;
    height: auto;
    box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    overflow: hidden;
    background: #FFFFFF;
}

.aside_left > div {
    width: 100%;
    height: 80px;
    box-sizing: border-box;
    padding: 20px 24px;
    background: #0D59A7;
}

.aside_left > div h1 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    box-sizing: border-box;
    padding-bottom: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.aside_left > div h1:after {
    content: "";
    width: 44px;
    height: 2px;
    background: #FF8E24;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
}

.aside_list {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 24px;

}

.aside_list li {
    width: 100%;
    height: 48px;
    transition: all .3s ease-in-out 0s;
    position: relative;
}
.aside_list li .icon-list_jt {
    font-size: 12px;
    color: #0D59A7;
    display: inline-block;
    transition: all .3s ease-in-out 0s;
    transform: scale(.7);
    display: none;
}

.aside_list li.active span {
    color: #0D59A7;
    font-weight: bold;
    padding-left: 1em;
}
.aside_list li.active .icon-list_jt{
    display: block;
}
.aside_list span {
    font-size: 18px;
    color: #666666;
    line-height: 22px;
    width: 130px;
}
.aside_list li:hover .icon-list_jt{
    display: block;
}
.aside_list li:hover {
    transform: translateX(1em);
}


.aside_list li:hover span {
    color: #0D59A7;
    font-weight: bold;
}

.aside_list a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.aside_list li.active {
    box-sizing: border-box;
    /*padding-left: 36px;*/
    transform: translateX(0);
}

.aside_list li.active .icon-list_jt {
    display: block;
}

.pagination {
    margin: 30px 0;
}

.def {
    background: #0D59A7 !important;
}

.changeRed {
    background: #B60000 !important;
}

.regularClose{
    display: inline-block;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    text-align: center;
    color: #1673BA;
    font-size: 14px;
    cursor: pointer;
}

@media screen and (max-width: 1400px) {
    .header-wrap {
        width: 100%;
        box-sizing: border-box;
        padding: 0 20px;
    }
    .header-nav{
        width: calc(100% - 584px);
    }
    .header-nav .nav-list{
        width: 100%;
        justify-content: space-between;
    }
    .field_list > li {
        width: calc(100% / 2 - 10px);
    }

    .layout_bottom-right {
        width: calc(100% - 584px);
    }

    .header-search {
        width: 100%;
    }

    .nav-list > li {
        max-width: 100px;
        width: auto;
    }

    .footer-wrap {
        width: 100%;
        padding: 28px 20px 0;
    }

    .friendship_link > div {
        width: calc(100% / 4 - 50px);
    }
    .header-innerPage .header-nav,.innerPage_header_right{
        width: calc(100% - 650px);
    }
}

@media screen and (max-width: 1200px) {
    .header-innerPage .header-nav,.innerPage_header_right{
        width: auto;
    }
    .nav-list > li {
        margin-right: 20px;
    }
    .header-nav{
        width: auto;
    }
    .mobileNav-list {
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, .5);
        box-sizing: border-box;
        padding: 10px 0;
    }

    .layout_bottom-left, .layout_bottom-right {
        width: 49%;
    }

    .header-logo {
        width: 45%;
    }

    .layout_bottom-right img {
        max-width: 100%;
    }

    .header-innerPage {
        height: auto;
        box-sizing: border-box;
        padding-bottom: 20px;
    }

    .innerPage_header_left img:nth-child(1) {
        margin: 0 25px;
    }

    .innerPage_search .headSearchBtn {
        width: 105px;
    }

    .innerPage_search {
        height: 50px;
    }
}

@media screen and (max-width: 1024px) {
    .nav-list {
        display: none;
    }

    .mobileNav {
        display: flex;
    }

    .header-logo {
        width: auto;
    }

    .mobileNav_box {
        height: calc(100% - 95px);
    }

    .innerPage_mobileNav {
        height: 100%;
    }

    .mobileNav_list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .mobileNav_list > li {
        width: calc(100% / 3);
        margin-right: 0;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 996px) {
    .layout_bottom-left {
        display: none;
    }

    .header-container {
        height: auto;
    }

    .innerPage_header_bottom {
        flex-direction: column;
    }

    .layout_bottom-right {
        width: 100%;
    }

    .header-wrap {
        padding: 0;
        width: 750px;
    }

    .innerPage_header_right {
        width: 100%;
    }
    .aside_list span{
        width: auto;
    }
    .header-layout_bottom {
        justify-content: center;
    }

    .friendship_link {
        display: none;
    }

    .footer-container {
        height: auto;
    }

    .footer-wrap {
        width: 750px;
        padding: 10px;
    }

    .aside_left {
        width: 100%;
    }

    .aside_list {
        display: flex;
        flex-wrap: wrap;
    }

    .aside_list li {
        width: auto;
        box-sizing: border-box;
        padding: 0 20px;
    }

    .aside_list li.active .icon-list_jt {
        display: none;
    }

    .aside_list li.active {
        padding-left: 0;
    }

    .aside_list li:hover .icon-list_jt {
        display: none;
    }

    .aside_list li:hover {
        transform: translateX(0);
    }

    .header-layout_top {
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
    }

    .header-top_info {
        margin-top: 10px;
    }
}

@media screen and (max-width: 768px) {
    .header-top_list {
        display: none;
    }

    .header-top_info li {
        display: none;
    }

    .header-top_info li.changeColor {
        display: flex;
    }

    .field_list > li {
        width: 100%;
    }

    .header-wrap {
        width: 100%;
    }

    .header-layout {
        justify-content: center;
        height: auto;
    }

    .header-logo {
        width: 100%;
    }

    .header-logo a {
        display: flex;
        justify-content: center;
    }

    .header-container {
        height: auto;
    }

    .hot {
        display: none;
    }

    .header-layout_bottom {
        height: auto;
        margin-bottom: 40px;
    }

    .header-search {
        width: 90%;
        margin: 20px auto 0 auto;
    }

    .footer-wrap {
        width: 100%;
    }

    .pc_logo {
        display: none;
    }

    .mobile_logo {
        display: block;
    }

    .mobileNav {
        position: absolute;
        top: 70px;
        right: 30px;
    }

    .regular {
        display: none;
    }

    .innerPage_header_left img:nth-child(1) {
        display: none;
    }
}

@media screen and (max-width: 515px) {
    .header-logo {
        box-sizing: border-box;
        padding: 0 10px;
    }

    .field_list > li {
        height: 110px;
        padding-left: 30px;
        padding-top: 20px;
        margin-top: 10px;
    }

    .header-search {
        height: 46px;
    }

    .header-search button {
        width: 100px;
    }

    .header-search select {
        width: 90px;
        box-sizing: border-box;
        padding: 0 20px;
        background-position: 70px center;
    }

    .header-search input {
        width: calc(100% - 190px);
    }


    .footer_info li {
        padding-right: 10px;
        margin-right: 10px;
    }

    .mobileNav_box {
        height: calc(100% - 75px);
    }

    .innerPage_mobileNav {
        height: 100%;
    }

    .layout_bottom-right > img {
        max-width: 100%;
    }

    .field_right h4 {
        font-size: 14px;
    }

    .field_left {
        width: 50px;
        height: 50px;
    }

    .field_left > img {
        width: 28px;
        height: 28px;
    }

    .field_item {
        padding: 0;
        height: 54px;
        overflow: hidden;
    }

    .field_right {
        padding-left: 20px;
    }

    .plate_tit {
        font-size: 20px;
    }
}


/*分页样式*/
div.new_pages {
    padding: 20px 0px;
    text-align: center;
    clear: both;
    overflow: hidden;
    color: #666666;
}

div.new_pages a {
    padding: 5px 12px;
    font-size: 14px;
    background: #ffffff;
    border: 1px solid #cccccc;
    color: #5d5d5d;
    margin: 0 3px;
    border-radius: 5px;
}

div.new_pages a:hover, div.new_pages a.onhover {
    background: #0D59A7;
    border: 1px solid #0D59A7;
    color: #FFFFFF;
}

div.new_pages #num {
    border: 1px solid #cccccc;
    width: 48px;
    height: 31px;
    line-height: 31px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    outline: none;
}

div.new_pages #submit-btn {
    border: 1px solid #cccccc;
    width: 40px;
    height: 31px;
    line-height: 31px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    background: #0D59A7;
    outline: none;
    color: #ffffff;
}

div.new_pages span {
    padding-right: 10px;
}

.themeColor div.new_pages {
    padding: 20px 0px;
    text-align: center;
    clear: both;
    overflow: hidden;
}

.themeColor div.new_pages a {
    padding: 5px 12px;
    font-size: 14px;
    background: #ffffff;
    border: 1px solid #cccccc;
    color: #5d5d5d;
    margin: 0 3px;
    border-radius: 5px;
}

.themeColor div.new_pages a:hover, .themeColor div.new_pages a.onhover {
    background: #B60000;
    border: 1px solid #B60000;
    color: #FFFFFF;
}

.themeColor div.new_pages #num {
    border: 1px solid #cccccc;
    width: 48px;
    height: 31px;
    line-height: 31px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    outline: none;
}

.themeColor div.new_pages #submit-btn {
    border: 1px solid #cccccc;
    width: 40px;
    height: 31px;
    line-height: 31px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    background: #B60000;
    outline: none;
    color: #ffffff;
}

.themeColor div.new_pages span {
    padding-right: 10px;
}