* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "PingFangSC", "微软雅黑", "Microsoft YaHei", "Helvetica Neue",
        "Helvetica", "Arial", "sans-serif";
}

/*特殊处理*/
.nav_pc .nav_pc_content .nav_title>li:nth-child(5),
.nav_pc .nav_pc_content .nav_title>li:nth-child(7),
.nav_phone .menu>.momo>li:nth-child(5),
.nav_phone .menu>.momo>li:nth-child(7),
.nav_pc .nav_pc_content .function .cart,
.nav_pc .nav_pc_content .function .head,
.footer .container .left .footer_nav>li:first-child .second_nav:last-of-type li:nth-child(1),
.footer .container .left .footer_nav>li:first-child .second_nav:last-of-type li:nth-child(3),
.footer .container .left .footer_nav>li:first-child .second_nav:last-of-type li:nth-child(4),
.footer .container .left .footer_nav>li:last-child .second_nav li:nth-child(2n) {
    display: none !important;
}

/*特殊处理*/

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: top;
}

.img-widthFill {
    display: block;
    width: 100%;
}

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

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

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

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

.container {
    /* 版心大小自己设置 */
    /* width: ; */
    width: 1600px;
    margin: auto;
}

/* 首导航开始 */
.navigation {
    position: relative;
    z-index: 999;
}

.nav_pc {
    position: fixed;
    top: 0;
    z-index: 10;
    background: #fff;
    width: 100%;
}

.nav_pc::after,
.nav_phone::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #c2c2c2;
}

.nav_pc .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.nav_pc .logo {
    width: 50px;
    flex-shrink: 0;
    margin-right: 120px;
}

.nav_pc .logo>a {
    display: block;
}

.nav_pc .nav_pc_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    flex-shrink: 0;
    overflow: hidden;
}

.nav_pc .nav_pc_content .nav_title {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 0;
    transition: margin-left 0.3s ease;
    will-change: margin-left;
}

.nav_pc .nav_pc_content .nav_title.none {
    margin-left: -100%;
}

.nav_pc .nav_pc_content .nav_title>li {
    transition: 0.3s;
    position: relative;
    z-index: 1;
    margin-right: 40px;
    position: relative;
}

.nav_pc .nav_pc_content .nav_title>li:last-child {
    margin-right: 0;
}

.nav_pc .nav_pc_content .nav_title>li>a {
    font-weight: 400;
    font-size: 20px;
    color: #666;
    height: 100%;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.nav_pc .nav_pc_content .nav_title>li:hover>a,
.nav_pc .nav_pc_content .nav_title>li.active>a {
    color: #000;
}

.nav_pc .nav_pc_content .function {
    display: flex;
    align-items: center;
}

.nav_pc .nav_pc_content .function form {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-right: 40px;
    transition: 0.3s;
}

.nav_pc .nav_pc_content .function form input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 18px;
    color: #000000;
    font-weight: 400;
    width: 0;
    margin-right: 0px;
    transition: 0.3s;
}

.nav_pc .nav_pc_content .function form>.submit {
    font-size: 28px;
    color: #000;
    font-weight: 400;
    border: none;
    background: transparent;
    flex-shrink: 0;
}

.nav_pc .nav_pc_content .function form.show {
    padding: 10px 30px;
    background: #F4F4F4;
    border-radius: 30px 30px 30px 30px;
}

.nav_pc .nav_pc_content .function form.show input {
    width: 390px;
    margin-right: 20px;
}

.nav_pc .nav_pc_content .function .cart {
    display: block;
    font-size: 28px;
    color: #000;
    font-weight: 400;
    margin-right: 40px;
    flex-shrink: 0;
}

.nav_pc .nav_pc_content .function .head {
    width: 50px;
    flex-shrink: 0;
}

/* 手机导航 */
.nav_phone {
    display: none;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 20px;
    box-sizing: border-box;
    transition: 0.3s;
}

.nav_phone.show {
    background-color: #fff;
    box-shadow: 0px 0px 28px 0px rgba(156, 156, 156, 0.25);
}

.phone_logo img:first-child,
.nav_phone.show .phone_logo img:last-child {
    display: block;
}

.nav_phone_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    z-index: 999;
}

.menu {
    overflow: hidden;
    max-height: 0;
    background-color: #fff;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.active_menu {
    min-height: 100vh;
    overflow: auto;
    padding: 10px 20px;
    box-sizing: border-box;
    line-height: 1.5;
    padding-top: 80px;
}

.menu>ul>li>a {
    position: relative;
    padding: 15px 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    letter-spacing: 1px;
    border-bottom: 1px solid #ececec;
}

.menu>ul>li>a span {
    font-size: 14px;
    color: #333;
    -webkit-text-fill-color: #333;
    text-transform: uppercase;
}

.menu>ul>li>a span.iconfont {
    font-size: 18px;
    transition: 0.3s;
}

.sub-menu {
    display: none;
}

.sub-menu li {
    padding: 8px 18px;
    border-bottom: 1px solid #ececec;
    background-color: #fff;
}

.sub-menu li a {
    color: #333;
    font-size: 12px;
}

.active_submenu .iconfont {
    transform: rotate(90deg);
}


/* logo */
.phone_logo img {
    width: 50px;
}

.phone_logo img:last-child,
.nav_phone.show .phone_logo img:first-child {
    display: none;
}

.phone_content {
    display: flex;
    align-items: center;
}

.phone_content .function {
    display: flex;
    align-items: center;
}

.phone_content .function form {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-right: 20px;
    transition: 0.3s;
}

.phone_content .function form input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #000000;
    font-weight: 400;
    width: 0;
    margin-right: 0px;
    transition: 0.3s;
}

.phone_content .function form>.submit {
    font-size: 20px;
    color: #000;
    font-weight: 400;
    border: none;
    background: transparent;
    flex-shrink: 0;
}

.phone_content .function form.show {
    padding: 10px 20px;
    background: #F4F4F4;
    border-radius: 30px 30px 30px 30px;
}

.phone_content .function form.show input {
    width: 200px;
    margin-right: 20px;
}

.phone_content .function .cart {
    display: block;
    font-size: 20px;
    color: #000;
    font-weight: 400;
    margin-right: 20px;
    flex-shrink: 0;
}

.phone_content .function .head {
    width: 30px;
    flex-shrink: 0;
}

/* 列表按钮 */
.spinner-master {
    position: relative;
    width: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    height: 46px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 3px;
    z-index: 9999;
}

.spinner-master * {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    box-sizing: border-box;
}

.spinner-spin {
    width: 22px;
    text-indent: -99999px;
}

.spinner-master .spinner {
    height: 2px;
    width: 100%;
    background-color: #000;
}

.spinner-master .spinner.active {
    background-color: #000;
}

.spinner:nth-child(2n) {
    width: 100% !important;
}

.spinner-master .horizontal {
    margin-top: 6px;
}

.spinner-master .diagonal.part-2 {
    margin-top: 6px;
}

.spinner_active .spinner-spin>.diagonal.part-1 {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    margin-top: 3px;
}

.spinner_active .spinner-spin>.horizontal {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.spinner_active .spinner-spin>.diagonal.part-2 {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    margin-top: -10px;
}

.spinner_active .spinner {
    background-color: #000;
}

/* 首导航结束 */

/*公共banner 开始*/
.bannerCommon {
    width: 100%;
    margin-top: 100px;
    position: relative;
}

.bannerCommon>img {
    object-fit: cover;
    height: 100%;
}

.bannerCommon>.hang {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 9;
}

.bannerCommon>.hang>.container {
    display: flex;
    /* justify-content: center; */
    align-items: center;
}

.bannerCommon>.hang>.container>p {
    font-weight: bold;
    font-size: 48px;
    color: #FFFFFF;
    text-transform: uppercase;
}

/*公共banner 结束*/

/* 面包屑   开始 */
.crumbs {
    margin-top: 100px;
    width: 100%;
    height: 100px;
    position: relative;
    border-bottom: 1px solid #E6E6E6;
}

.crumbs>.container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crumbs .locationWrapper {
    height: 100%;
    display: flex;
    align-items: center;
}

.crumbs .locationWrapper>.icon-home-filling {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.crumbs .locationWrapper>a,
.crumbs .locationWrapper>.fg {
    font-weight: 400;
    font-size: 20px;
    color: #333333;
}

.crumbs .locationWrapper>.fg {
    margin: 0 8px;
}


/* 面包屑   结束 */

/*page 翻页 开始*/
.page {
    padding: 50px 0;
}

.page .container {
    display: flex;
    justify-content: center;
    font-family: Source Han Sans CN;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    flex-wrap: wrap;
}

.page .container>.pageblock:not(:last-child) {
    margin-right: 11px;
    margin-bottom: 11px;
}

.page .container>.index,
.page .container>.total {
    background: #EBEBEB;
    line-height: 35px;
    transition: 0.3s;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
}

.page .container>.index:first-of-type,
.page .container>.index:last-of-type {
    width: 78px;
    height: 37px;
    flex-shrink: 0;
    transition: 0.3s;
}

.page .container>.index {
    width: 38px;
    height: 37px;
    transition: 0.3s;
    flex-shrink: 0;
}

.page .container>.total {
    width: 126px;
    height: 37px;
    flex-shrink: 0;
}

.page .container>.pageblock:hover {
    background: #C30D23;
    color: #FFF;
}

/*page 翻页 结束*/


/*footer 开始*/
.footer {
    width: 100%;
    background: #000000;
    padding: 60px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
}

.footer .container .left .footer_nav {
    display: flex;
    justify-content: flex-start;
    margin-top: 55px;
}

.footer .container .left .footer_nav>li {
    margin-right: 100px;
}

.footer .container .left .footer_nav>li:last-child {
    margin-right: 0;
}

.footer .container .left .footer_nav>li .footer_nav_title {
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer .container .left .footer_nav>li:first-child .second_nav:first-of-type {
    margin-bottom: 30px;
}

.footer .container .left .footer_nav>li .second_nav li {
    margin-bottom: 20px;
}

.footer .container .left .footer_nav>li .second_nav li:last-child {
    margin-bottom: 0px;
}

.footer .container .left .footer_nav>li .second_nav li>a {
    font-weight: 400;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: capitalize;
}

.footer .container .right {
    margin-left: 40px;
    flex-shrink: 0;
}

.footer .container .right .footer_img {
    position: relative;
    margin-bottom: 35px;
}

.footer .container .right .footer_img .inner {
    position: absolute;
    width: 200px;
    left: 60px;
    top: 108px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .container .right .footer_img .inner>img {
    margin-bottom: 8px;
}

.footer .container .right .footer_img .inner .info {
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    text-align: center;
}

.footer .container .right .footer_img .inner .info p:nth-child(1) {
    margin-bottom: 8px;
}

.footer .container .right .footer_img .inner .info p:nth-child(2) {
    font-size: 20px;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer .container .right .footer_img .inner .info p:nth-child(3) {
    margin-bottom: 15px;
}

.footer .container .right .footer_img .inner>a {
    width: 200px;
    height: 46px;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .container .right .icp a {
    display: block;
    font-weight: 400;
    font-size: 18px;
    color: #999999;
    text-transform: uppercase;
    text-align: right;
}

/*footer 结束*/


/*底部弹窗 开始*/
.pop-up {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pop-up .view_content {
    width: 350px;
    height: 200px;
    background: #fff;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

/*底部弹窗 结束*/


@media(max-width:1919px) {}

@media(max-width:1680px) {
    .container {
        width: 90%;
    }

    .nav_pc .nav_pc_content .nav_title {
        height: 70px;
    }

    .nav_pc .nav_pc_content .nav_title>li {
        margin-right: 35px;
    }

    .nav_pc .nav_pc_content .nav_title>li>a {
        font-size: 18px;
    }

    .nav_pc .nav_pc_content .function form,
    .nav_pc .nav_pc_content .function .cart {
        margin-right: 35px;
    }

    .bannerCommon,
    .crumbs {
        margin-top: 90px;
    }

    .bannerCommon>.hang>.container>p {
        font-size: 44px;
    }

    .footer .container .left .footer_nav>li {
        margin-right: 80px;
    }

}

@media(max-width:1440px) {

    .nav_pc .logo {
        margin-right: 100px;
    }

    .nav_pc .nav_pc_content .nav_title {
        height: 60px;
    }

    .nav_pc .nav_pc_content .nav_title>li>a {
        font-size: 16px;
    }

    .nav_pc .nav_pc_content .function form>.submit,
    .nav_pc .nav_pc_content .function .cart {
        font-size: 24px;
    }

    .nav_pc .nav_pc_content .function form input {
        font-size: 16px;
    }

    .nav_pc .nav_pc_content .function form.show {
        padding: 10px 20px;
    }

    .nav_pc .nav_pc_content .function form.show input {
        width: 280px;
    }

    .nav_pc .nav_pc_content .function .head {
        width: 45px;
    }

    .bannerCommon,
    .crumbs {
        margin-top: 80px;
    }

    .bannerCommon>.hang>.container>p {
        font-size: 40px;
    }

    .crumbs .locationWrapper>a,
    .crumbs .locationWrapper>.fg {
        font-size: 18px;

    }

    .page {
        padding: 40px 0;
    }

    .footer {
        padding: 50px 0;
    }

    .footer .container .left .footer_nav>li {
        margin-right: 60px;
    }

    .footer .container .left .footer_nav>li .footer_nav_title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer .container .left .footer_nav>li .second_nav li {
        margin-bottom: 15px;
    }

    .footer .container .left .footer_nav>li .second_nav li>a {
        font-size: 16px;
    }

    .footer .container .right .footer_img {
        width: 550px;
        margin-bottom: 25px;
    }

    .footer .container .right .footer_img .inner {
        top: 80px;
        left: 50px;
    }
}

@media(max-width:1280px) {

    .nav_pc .logo {
        margin-right: 60px;
    }

    .nav_pc .nav_pc_content .nav_title {
        height: 50px;
    }

    .nav_pc .nav_pc_content .nav_title>li {
        margin-right: 30px;
    }

    .nav_pc .nav_pc_content .nav_title>li>a {
        font-size: 14px;
    }

    .nav_pc .nav_pc_content .function form,
    .nav_pc .nav_pc_content .function .cart {
        margin-right: 25px;
    }

    .nav_pc .nav_pc_content .function form>.submit,
    .nav_pc .nav_pc_content .function .cart {
        font-size: 20px;
    }

    .nav_pc .nav_pc_content .function form input {
        font-size: 14px;
    }

    .nav_pc .nav_pc_content .function form.show input {
        width: 220px;
    }

    .nav_pc .nav_pc_content .function .head {
        width: 40px;
    }

    .bannerCommon {
        margin-top: 70px;
    }

    .bannerCommon>.hang>.container>p {
        font-size: 36px;
    }

    .crumbs {
        margin-top: 70px;
        height: 70px;
    }

    .crumbs .locationWrapper>a,
    .crumbs .locationWrapper>.fg {
        font-size: 16px;
    }

    .footer {
        padding: 40px 0;
    }

    .footer .container .left .footer_nav {
        margin-top: 40px;
    }

    .footer .container .left .footer_nav>li {
        margin-right: 40px;
    }

    .footer .container .left .footer_nav>li .footer_nav_title {
        font-size: 16px;
    }

    .footer .container .left .footer_nav>li .second_nav li {
        margin-bottom: 10px;
    }

    .footer .container .left .footer_nav>li .second_nav li>a {
        font-size: 14px;
    }

    .footer .container .right .footer_img {
        width: 500px;
    }

    .footer .container .right .footer_img .inner {
        top: 70px;
        left: 35px;
    }

    .footer .container .right .icp a {
        font-size: 16px;
    }
}

@media(max-width:1135px) {
    .nav_pc .logo {
        margin-right: 40px;
    }

    .nav_pc .nav_pc_content .nav_title>li {
        margin-right: 25px;
    }

    .nav_pc .nav_pc_content .function form,
    .nav_pc .nav_pc_content .function .cart {
        margin-right: 20px;
    }
}

@media(max-width:1024px) {

    .nav_pc {
        display: none;
    }

    .nav_phone {
        display: block;
    }

    .bannerCommon {
        height: 280px;
        margin-top: 90px;
    }

    .bannerCommon>.hang>.container {
        justify-content: center;
    }

    .bannerCommon>.hang>.container>p {
        font-size: 32px;
    }

    .crumbs {
        height: 60px;
        margin-top: 90px;
    }

    .crumbs .locationWrapper>a,
    .crumbs .locationWrapper>.fg {
        font-size: 14px;
    }

    .page {
        padding: 30px 0;
    }

    .footer .container {
        justify-content: center;
    }

    .footer .container .left {
        display: none;
    }

    .footer .container .right {
        margin-left: 0;
    }

    .footer .container .right .icp a {
        text-align: center;
    }

}

@media(max-width:768px) {
    .nav_phone {
        padding: 15px 20px;
    }

    .phone_logo img {
        width: 40px;
    }

    .active_menu {
        padding-top: 60px;
    }

    .bannerCommon {
        height: 250px;
        margin-top: 76px;
    }

    .bannerCommon>.hang>.container>p {
        font-size: 28px;
    }

    .crumbs {
        margin-top: 76px;
    }

    .footer {
        padding: 30px 0;
    }

}

@media(max-width:600px) {

    .phone_content .function form.show {
        padding: 8px 16px;
    }

    .phone_content .function form.show input {
        width: 160px;
    }

    .crumbs {
        height: 50px;
    }

    .crumbs .locationWrapper>a,
    .crumbs .locationWrapper>.fg {
        font-size: 12px;
    }

    .crumbs .locationWrapper>.fg {
        margin: 0 5px;
    }


    .footer .container .right .footer_img {
        width: 420px;
    }

    .footer .container .right .footer_img .inner {
        width: 160px;
        top: 55px;
        left: 30px;
    }

    .footer .container .right .footer_img .inner .info {
        font-size: 12px;
    }

    .footer .container .right .footer_img .inner .info p:nth-child(2) {
        font-size: 16px;
    }

    .footer .container .right .footer_img .inner>a {
        width: 160px;
        height: 40px;
        font-size: 14px;
    }
}

@media(max-width:480px) {
    .nav_phone {
        padding: 15px 10px;
    }

    .phone_content .function form,
    .phone_content .function .cart {
        margin-right: 10px;
    }

    .spinner-spin {
        width: 20px;
    }

    .spinner-master {
        width: 30px;
        height: 30px;
    }

    .spinner-master .horizontal,
    .spinner-master .diagonal.part-2 {
        margin-top: 5px;
    }

    .spinner_active .spinner-spin>.diagonal.part-2 {
        margin-top: -9px;
    }


    .bannerCommon {
        height: 230px;
        margin-top: 70px;
    }

    .bannerCommon>.hang>.container>p {
        font-size: 24px;
    }

    .crumbs {
        margin-top: 70px;
    }

    .page {
        padding: 5px;
    }

    .footer .container .right .footer_img {
        width: 390px;
        margin-bottom: 15px;
    }

    .footer .container .right .footer_img .inner {
        width: 150px;
        top: 55px;
        left: 30px;
    }

    .footer .container .right .footer_img .inner>img,
    .footer .container .right .footer_img .inner .info p:nth-child(1),
    .footer .container .right .footer_img .inner .info p:nth-child(2) {
        margin-bottom: 5px;
    }

    .footer .container .right .footer_img .inner .info p:nth-child(3) {
        margin-bottom: 10px;
    }

    .footer .container .right .footer_img .inner>a {
        width: 150px;
    }

    .footer .container .right .icp a {
        font-size: 14px;
    }
}

@media(max-width:430px) {

    .phone_content .function form.show input {
        width: 140px;
    }


    .page .container>.index:first-of-type,
    .page .container>.index:last-of-type {
        width: 65px;
        height: 30px;
    }

    .page .container>.index,
    .page .container>.total {
        background: #EBEBEB;
        line-height: 16px;
        transition: 0.3s;
        font-weight: 400;
        font-size: 14px;
        color: #666666;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page .container>.total {
        width: 100px;
        height: 30px;
        flex-shrink: 0;
    }

    .page .container>.index {
        width: 30px;
        height: 30px;
        transition: 0.3s;
        flex-shrink: 0;
    }

    .footer .container .right .footer_img {
        width: 350px;
    }

    .footer .container .right .footer_img .inner {
        width: 145px;
        top: 42.5px;
        left: 20px;
    }

    .footer .container .right .footer_img .inner .info p:nth-child(2) {
        font-size: 14px;
    }

    .footer .container .right .footer_img .inner .info p:nth-child(3) {
        margin-bottom: 5px;
    }

    .footer .container .right .footer_img .inner>a {
        width: 145px;
        font-size: 12px;
    }
}

@media(max-width:390px) {
    .phone_content .function form.show input {
        width: 120px;
    }
}