@-webkit-keyframes animationOpacity {
    0% {
        opacity: 1
    }
    90% {
        opacity: 0
    }
}

@-moz-keyframes animationOpacity {
    0% {
        opacity: 1
    }
    90% {
        opacity: 0
    }
}

@-o-keyframes animationOpac ity {
    0% {
        opacity: 1
    }
    90% {
        opacity: 0
    }
}

@keyframes animationOpacity {
    0% {
        opacity: 1
    }
    90% {
        opacity: 0
    }
}

@-webkit-keyframes shakes {
    from,
    to {
        transform: translate3d(0, 0, 0)
    }
    20%,
    60% {
        transform: translate3d(-10px, 0, 0)
    }
    40%,
    80% {
        transform: translate3d(10px, 0, 0)
    }
}

@-moz-keyframes shakes {
    from,
    to {
        transform: translate3d(0, 0, 0)
    }
    20%,
    60% {
        transform: translate3d(-10px, 0, 0)
    }
    40%,
    80% {
        transform: translate3d(10px, 0, 0)
    }
}

@-o-keyframes shakes {
    from,
    to {
        transform: translate3d(0, 0, 0)
    }
    20%,
    60% {
        transform: translate3d(-10px, 0, 0)
    }
    40%,
    80% {
        transform: translate3d(10px, 0, 0)
    }
}

@keyframes shakes {
    from,
    to {
        transform: translate3d(0, 0, 0)
    }
    20%,
    60% {
        transform: translate3d(-10px, 0, 0)
    }
    40%,
    80% {
        transform: translate3d(10px, 0, 0)
    }
}

@-webkit-keyframes imgScale {
    from {
        -webkit-transform: scale(0.8)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@-moz-keyframes imgScale {
    from {
        -webkit-transform: scale(0.8)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@-o-keyframes imgScale {
    from {
        -webkit-transform: scale(0.8)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes imgScale {
    from {
        -webkit-transform: scale(0.8)
    }
    to {
        -webkit-transform: scale(1)
    }
}

body,
html {
    margin: 0;
    padding: 0;
    color: #222222;
    font-family: "Microsoft YaHei", Menlo, Monaco, Consolas, "Courier New", monospace
}

pre {
    word-break: break-all;
    white-space: break-spaces
}

a {
    color: #222222
}

body {
    min-width: 1420px;
    line-height: 1;
    background: #fff
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    line-height: 1.4
}

h1 {
    font-size: 22px
}

h2 {
    font-size: 20px
}

h3 {
    font-size: 18px
}

h4 {
    font-size: 16px
}

h5 {
    font-size: 14px
}

h6 {
    font-size: 12px
}

p {
    font-size: 16px;
    margin: 0;
    padding: 0;
    line-height: 1.6
}

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

a {
    text-decoration: none
}

.opacity0 {
    opacity: 0
}

.underline {
    border-bottom: 1px solid #d7d7d7
}

.underlines {
    border-bottom: 2px solid #d7d7d7
}

::-webkit-input-placeholder {
    color: #cccccc
}

:-moz-placeholder {
    color: #cccccc
}

::-moz-placeholder {
    color: #cccccc
}

:-ms-input-placeholder {
    color: #cccccc
}

.container {
    width: 1400px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 60px
}

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

.ellipsis2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.ellipsis3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.ellipsis4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical
}

.ellipsis5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical
}

.ellipsis6 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical
}

.ellipsis7 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.flex_wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row
}

.flex_nowrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row
}

.flex_center {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.flex_right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: flex-end;
    -ms-flex-pack: flex-end;
    justify-content: flex-end
}

.flex_left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start
}

.flex_justify_between {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between
}

.flex_space_around {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-around;
    -ms-flex-pack: space-around;
    justify-content: space-around
}

.flex_space_evenly {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly
}

.justify-content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.align-items {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.first_box,
.justify_box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.first_box>*,
.justify_box>* {
    width: 0;
    height: auto;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1
}

.first_box>*:first-child,
.justify_box>*:first-child,
.justify_box>*:last-child {
    width: auto;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.img_box {
    overflow: hidden;
    position: relative
}

.img_box img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s linear;
    -ms-transition: transform 0.5s linear;
    -moz-transition: transform 0.5s linear;
    -webkit-transition: transform 0.5s linear;
    -o-transition: transform 0.5s linear;
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%)
}

.img_box .img_cover {
    width: auto;
    height: 120%
}

.imgs_box {
    overflow: hidden;
    position: relative
}

.imgs_box img {
    display: block;
    transition: transform 0.5s linear;
    -ms-transition: transform 0.5s linear;
    -moz-transition: transform 0.5s linear;
    -webkit-transition: transform 0.5s linear;
    -o-transition: transform 0.5s linear
}

.text_left {
    text-align: left
}

.text_center {
    text-align: center
}

.text_right {
    text-align: right
}

.title_box {
    text-align: center;
    padding: 40px 0 20px
}

.title_box h1 {
    font-size: 42px;
    font-weight: bold;
    line-height: 50px;
    color: #0049ac
}

.title_box h1 span {
    color: #333333
}

.title_box h3 {
    margin: 5px 0 8px;
    color: #666666
}

.title_box::after {
    display: block;
    content: "";
    width: 360px;
    height: 18px;
    margin: 0 auto;
    background: url("../images/common/title_icon.png") no-repeat;
    background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    -webkit-background-size: 100% 100%
}

.title_boxs h1,
.title_boxs h3 {
    color: #fff
}

.title_boxs::after {
    background: url("../images/common/title_icons.png") no-repeat;
    background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    -webkit-background-size: 100% 100%
}

.more_btn {
    text-align: center;
    display: block;
    width: 250px;
    height: 55px;
    line-height: 55px;
    margin: 0 auto;
    font-size: 24px;
    color: #333333;
    background: #ffde00
}

.more_btn:hover {
    color: #fff;
    background: #0049ac;
    animation: shakes 1.5s linear;
    -webkit-animation: shakes 1.5s linear;
    -ms-animation: shakes 1.5s linear;
    -o-animation: shakes 1.5s linear;
    -moz-animation: shakes 1.5s linear
}

div.pagination {
    float: none !important;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100px
}

div.pagination a,
div.pagination span {
    font-size: 15px;
    color: #282828
}

.pagination ul>.active>a,
.pagination ul>.active>span {
    color: #fff !important;
    background: #ffde00 !important
}

.page_banner {
    width: 100%;
    height: 450px;
    display: block
}

.page_container {
    padding-bottom: 40px
}

.crumbs_box {
    border-bottom: 1px solid #eee
}

.crumbs_box>div.container {
    height: 60px;
    padding-bottom: 0
}

.crumbs_box .addr_icon {
    display: block;
    width: 5px;
    height: 20px;
    background: #0049ac
}

.crumbs_box h5 {
    color: #333333;
    margin-left: 8px
}

.crumbs_box ul li a {
    font-size: 14px;
    color: #333333
}

.crumbs_box ul li:not(:last-child)::after {
    display: block;
    content: ">";
    margin: 0 3px;
    color: #333333
}

.crumbs_box ul li:hover a {
    color: #0049ac
}

.page_tab {
    padding-bottom: 50px
}

.page_tab li a {
    display: block;
    color: #0f0f0f;
    font-size: 18px;
    padding: 0 20px
}

.page_tab li.active a,
.page_tab li:hover a {
    color: #0049ac
}

div.paginations {
    margin-top: 40px
}

div.paginations a {
    display: block;
    width: 150px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    color: #ddd;
    background: #fff;
    margin: 0 15px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px
}

div.paginations a:hover {
    background: #ffde00;
    border-color: #ffde00;
    color: #fff
}

.swiper-pagination-bullet {
    background: #333333;
    width: 16px;
    height: 16px;
    opacity: 1
}

.swiper-pagination-bullet-active {
    background: #0049ac
}

.cover_img {
    width: 100%;
    height: auto;
    display: block
}

.page_detail_title {
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    padding: 20px 0 5px
}

.page_detail_date {
    text-align: center;
    color: #999;
    margin-bottom: 20px
}

.page_detail {
    padding: 0 15px
}

.page_detail div {
    line-height: 1.2
}

.page_detail p {
    font-size: 16px
}

.page_detail img {
    max-width: 100% !important
}

.pswp__button--share {
    display: none !important
}

.y-kefu-box {
    position: fixed;
    right: 0;
    top: 30%;
    z-index: 999;
    font-size: 13px
}

.y-kefu-box img {
    display: block;
    width: 100%;
    height: auto
}

.y-kefu-box01 .icon {
    display: block;
    background: url("../images//common//icons.png") no-repeat;
    margin: 0 auto 6px
}

.y-kefu-box01 {
    width: 54px;
    color: #666;
    text-align: center
}

.y-kefu-box01 .kf-close-btn {
    width: 29px;
    height: 29px;
    background-position: -4px -114px;
    position: relative;
    cursor: pointer
}

.y-kefu-box01 .kf-close-btn:before {
    content: '';
    display: block;
    width: 1px;
    height: 12px;
    background-color: #0049ac;
    position: absolute;
    bottom: -12px;
    left: 13px;
    z-index: 1
}

.y-kefu-box01 .show-status>a,
.y-kefu-box01 .show-status>div {
    display: block;
    width: 52px;
    padding: 8px 0 12px;
    background-color: #fff;
    border-left: solid 1px #efefef;
    border-top: solid 1px #efefef;
    border-right: solid 1px #efefef;
    position: relative
}

.y-kefu-box01 .show-status {
    position: relative
}

.y-kefu-box01 .show-status .kf-zixun {
    background-color: #0049ac;
    border-color: #0049ac;
    color: #fff;
    margin: 10px 0 7px
}

.y-kefu-box01 .kf-zixun {
    border-radius: 2px
}

.y-kefu-box01 .kf-zixun i {
    width: 21px;
    height: 22px;
    background-position: -5px -5px
}

.y-kefu-box01 .kf-mobile {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px
}

.y-kefu-box01 .kf-mobile>i {
    width: 18px;
    height: 18px;
    background-position: -5px -32px
}

.y-kefu-box01 .kf-mobile:hover>i {
    background-position: -30px -32px
}

.y-kefu-box01 .kf-weChat>i {
    width: 22px;
    height: 19px;
    background-position: -5px -55px
}

.y-kefu-box01 .kf-weChat:hover>i {
    background-position: -30px -55px
}

.y-kefu-box01 .kf-email {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px
}

.y-kefu-box01 .kf-email>i {
    width: 18px;
    height: 14px;
    background-position: -5px -80px
}

.y-kefu-box01 .kf-email:hover>i {
    background-position: -30px -80px
}

.y-kefu-box01 .kf-tel {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px
}

.y-kefu-box01 .kf-tel>i {
    width: 21px;
    height: 19px;
    background-position: -5px -147px
}

.y-kefu-box01 .kf-tel:hover>i {
    background-position: -30px -147px
}

.y-kefu-box01 .back-top i {
    width: 13px;
    height: 11px;
    background-position: -5px -98px
}

.y-kefu-box01 .back-top:hover i {
    background-position: -30px -98px
}

.y-kefu-box01 .kf-email,
.y-kefu-box01 .back-top {
    border-bottom: solid 1px #efefef
}

.y-kefu-box01 .back-top {
    margin-top: 20px;
    border-radius: 2px;
    left: 55px
}

.y-kefu-box01 .hver:hover {
    background-color: #0049ac;
    border-color: #0049ac
}

.y-kefu-box01 .hver:hover>p {
    color: #fff
}

.y-kefu-box01 .mobile-infos,
.y-kefu-box01 .y-ewm-box,
.y-kefu-box01 .y-email-infos {
    background-color: #fff;
    border: solid 1px #efefef;
    position: absolute;
    right: 90px;
    z-index: 2;
    border-radius: 2px;
    display: none
}

.kf-tel>mobile-infos {
    width: 300px !important
}

.y-kefu-box01 .mobile-infos {
    width: 270px;
    text-align: left;
    top: 0;
    padding-right: 10px
}

.y-kefu-box01 .mobile-infos>div {
    padding: 20px 0 20px 45px;
    position: relative
}

.y-kefu-box01 .mobile-infos>div i {
    width: 15px;
    height: 15px;
    background-position: -52px -32px;
    position: absolute;
    top: 22px;
    left: 20px;
    z-index: 2
}

.y-kefu-box01 .mobile-infos .online1 {
    border-bottom: solid 1px #efefef
}

.y-kefu-box01 .mobile-infos span {
    color: #999
}

.y-kefu-box01 .mobile-infos p {
    color: #0049ac;
    font-size: 18px
}

.right {
    width: 12px;
    height: 12px;
    position: absolute;
    right: -12px;
    top: 24px
}

.right-arrow1,
.right-arrow2 {
    width: 0;
    height: 0;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    border-top: 6px transparent dashed;
    border-right: 6px transparent dashed;
    border-bottom: 6px transparent dashed;
    border-left: 6px white solid;
    overflow: hidden
}

.right-arrow1 {
    left: 1px;
    border-left: 6px #efefef solid
}

.right-arrow2 {
    border-left: 6px white solid
}

.y-kefu-box01 .y-ewm-box {
    width: 151px;
    top: -60px;
    padding-top: 10px
}

.y-kefu-box01 .y-ewm-box>div {
    width: 151px
}

.y-kefu-box01 .y-ewm-box img {
    width: 140px;
    height: auto;
    margin: 0 auto
}

.y-kefu-box01 .y-ewm-box .y-ewm-img1 {
    width: 150px;
    border-right: solid 1px #efefef
}

.y-kefu-box01 .y-ewm-box .right {
    top: 84px
}

.y-kefu-box a {
    color: #666
}

@media screen and (min-width: 1420px) {
    body {
        overflow-x: hidden
    }
}

@media screen and (max-width: 1420px) {
    .crumbs_tips {
        padding: 15px
    }
}

.t_btn {
    display: block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    text-align: center;
    background: #fff;
    margin: 0 auto
}

.t_btn:hover {
    color: #fff;
    background: #0049ac;
    animation: shakes 1.5s linear;
    -webkit-animation: shakes 1.5s linear;
    -ms-animation: shakes 1.5s linear;
    -o-animation: shakes 1.5s linear;
    -moz-animation: shakes 1.5s linear
}

header.container {
    padding-bottom: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between
}

header>div {
    width: 550px
}

.header_left {
    padding: 30px 0
}

.header_left h1 {
    font-size: 30px;
    font-weight: bold;
    color: #333333
}

.header_left h2 {
    color: #333333
}

.header_left h2 span {
    color: #0049ac
}

.logo_icon {
    display: block;
    width: 110px;
    height: 102px;
    background: url("../images/common/logo_icon.jpg") no-repeat;
    background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    -webkit-background-size: 100% 100%
}

.header_tel {
    padding: 30px 0 30px 65px;
    background: url("../images/common/tel_icon.jpg") no-repeat left center
}

.header_tel h5 {
    color: #666666
}

.header_tel h1 {
    font-size: 30px;
    font-weight: bold;
    color: #0049ac
}

nav {
    background: #0049ac;
    text-align: center
}

nav ul.container {
    padding-bottom: 0
}

nav li {
    flex: 1
}

nav li.active a,
nav li:hover a {
    background: #1965cd
}

nav li:nth-child(1) a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

nav li:nth-child(1) a::before {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    margin-right: 5px;
    background: url("../images/common/home_icon.png") no-repeat;
    background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    -webkit-background-size: 100% 100%
}

nav li a {
    display: block;
    line-height: 60px;
    height: 60px;
    font-size: 16px;
    color: #ffffff
}

.footer_links {
    padding: 25px 0;
    background: #0049ac
}

.footer_links .container {
    padding-bottom: 0
}

.footer_links h3 {
    padding-left: 45px;
    background: url("../images/common/links_icon.jpg") no-repeat left center;
    color: #fff
}

.footer_links h3 a {
    font-size: 14px;
    color: #fff
}

footer {
    background: #333333
}

footer .container {
    padding: 40px 0
}

footer h5 {
    border-top: 1px solid #444444;
    padding: 15px 0;
    text-align: center;
    color: #ffffff
}

footer h5 a {
    color: #ffffff
}

footer h3 {
    font-size: 18px;
    padding-left: 10px;
    line-height: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #ffde00;
    color: #ffffff
}

.footer_left {
    width: 300px
}

.footer_left ul li {
    width: 46%;
    padding-right: 4%;
    margin-bottom: 20px
}

.footer_left ul li a {
    font-size: 14px;
    color: #ffffff
}

.footer_center {
    width: 568px;
    padding: 0 60px;
    margin: 0 40px;
    border-left: 1px solid #555555;
    border-right: 1px solid #555555
}

.footer_center h4 {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff
}

.footer_center ul li {
    box-sizing: border-box;
    width: 50%;
    margin-top: 10px;
    font-size: 14px;
    color: #fff;
    line-height: 30px;
    height: 30px
}

.footer_center ul li:nth-child(5),
.footer_center ul li:nth-child(6) {
    width: 100%
}

.footer_icon {
    padding-left: 30px
}

.footer_icon_1 {
    background: url("../images/common/footer_icon_1.jpg") no-repeat left center
}

.footer_icon_2 {
    background: url("../images/common/footer_icon_2.jpg") no-repeat left center
}

.footer_icon_3 {
    background: url("../images/common/footer_icon_3.jpg") no-repeat left center
}

.footer_icon_4 {
    background: url("../images/common/footer_icon_4.jpg") no-repeat left center
}

.footer_right {
    width: 190px;
    margin-bottom: 10px
}

.footer_right img {
    width: 160px
}

.footer_right h4 {
    width: 30px;
    box-sizing: border-box;
    padding: 6px 7px;
    font-size: 13px;
    border: 1px solid #ffde00;
    color: #ffde00
}