@charset "UTF-8";
/* ==================== 重置默认样式 start ==================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu";
}
*:before,
*:after {
    vertical-align: middle;
    box-sizing: border-box;
}
html {
    margin: 0 auto;
}
ul,
li,
ol {
    list-style: none;
}
em {
    font-style: normal;
}
img {
    vertical-align: middle;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-backface-visibility: hidden;
}
a:hover {
    text-decoration: none;
}
a:focus {
    outline: none;
}
input:focus,
select:focus,
textarea:focus {
    outline: -webkit-focus-ring-color auto 0;
}
button,
input {
    border: 0;
    outline: none;
    background: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th,
td {
    vertical-align: middle;
}
i {
    font-style: inherit;
}
#map label {
    max-width: initial;
}
#map img {
    max-width: initial;
}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
    display: block;
    zoom: 1;
}
.clearfix:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
    padding: 0;
    margin: 0;
}
/* 外层容器样式 */
section {
    overflow: hidden;
}
/* 通用正文样式 */
article {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #333;
}
/* 图片统一动画 */
.mxw-image {
    overflow: hidden;
}
.mxw-image:hover img {
    transform: scale(1.1);
}
.mxw-image img {
    transition: all 0.4s;
    width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
#goto-top {
    position: fixed;
    z-index: 10;
    right: 0.3333rem;
    bottom: 10%;
    width: 0.6667rem;
    height: 0.6667rem;
    cursor: pointer;
    background: #aa3039;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #fff;
}
#goto-top.active {
    visibility: visible;
    opacity: 1;
}
#goto-top:after {
    content: "";
    display: block;
    width: 0.2333rem;
    height: 0.2333rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 6px;
}
@media screen and (max-width: 751px) {
    #goto-top {
        width: 30px;
        height: 30px;
        right: 10px;
    }
}
/* ==================== 置顶按钮 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.u-line-2 {
    -webkit-line-clamp: 2;
}
.u-line-3 {
    -webkit-line-clamp: 3;
}
.u-line-4 {
    -webkit-line-clamp: 4;
}
.u-line-5 {
    -webkit-line-clamp: 5;
}
.u-line-6 {
    -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.u-flex-wrap {
    flex-wrap: wrap;
}
.u-flex-nowrap {
    flex-wrap: nowrap;
}
.u-flex-col {
    flex-direction: column;
}
.u-grow-1 {
    flex-grow: 1;
}
.u-col-center {
    align-items: center;
}
.u-col-top {
    align-items: flex-start;
}
.u-col-bottom {
    align-items: flex-end;
}
.u-row-center {
    justify-content: center;
}
.u-row-left {
    justify-content: flex-start;
}
.u-row-right {
    justify-content: flex-end;
}
.u-row-between {
    justify-content: space-between;
}
.u-row-around {
    justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 > .u-col {
        width: 48%;
    }
    .u-row-2 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-2 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
    .u-row-3 > .u-col {
        width: 32%;
    }
    .u-row-3 > .u-col:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .u-row-3 > .u-col:nth-child(3) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-4 > .u-col {
        width: 23.5%;
        margin-right: 2%;
    }
    .u-row-4 > .u-col:nth-child(4n) {
        margin-right: 0%;
    }
    .u-row-4 > .u-col:nth-child(4) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-5 > .u-col {
        width: 18.4%;
        margin-right: 2%;
    }
    .u-row-5 > .u-col:nth-child(5n) {
        margin-right: 0%;
    }
    .u-row-5 > .u-col:nth-child(5) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-6 > .u-col {
        width: 15%;
        margin-right: 2%;
    }
    .u-row-6 > .u-col:nth-child(6n) {
        margin-right: 0%;
    }
    .u-row-6 > .u-col:nth-child(6) ~ .u-col {
        margin-top: 2%;
    }
}
@media screen and (max-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 .u-col {
        width: 100%;
    }
    .u-row-2 .u-col:nth-child(1) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-3 > .u-col,
    .u-row-4 > .u-col,
    .u-row-5 > .u-col,
    .u-row-6 > .u-col {
        width: 48%;
    }
    .u-row-3 > .u-col:nth-child(2n),
    .u-row-4 > .u-col:nth-child(2n),
    .u-row-5 > .u-col:nth-child(2n),
    .u-row-6 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-3 > .u-col:nth-child(2) ~ .u-col,
    .u-row-4 > .u-col:nth-child(2) ~ .u-col,
    .u-row-5 > .u-col:nth-child(2) ~ .u-col,
    .u-row-6 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 分页样式 start ==================== */
.mxw-pagination {
    margin-top: 50px;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.mxw-pagination   a {
    padding: 6px 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.2;
    border: 1px solid #ccc;

    margin: 4px;
}
.mxw-pagination   a.current,
.mxw-pagination   a:hover {
    background-color: #aa3039;
    color: #fff !important;
}
.mxw-pagination   a:first-child {
    margin-left: 0;
}
.mxw-pagination   a:last-child {
    margin-right: 0;
}
@media screen and (max-width: 751px) {
    .mxw-pagination {
        margin-top: 30px;
    }
    .mxw-pagination   a {
        font-size: 12px;
        margin: 2px;
        padding: 8px 10px;
    }
}
/* ==================== 分页样式 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
    position: relative;
    z-index: 99;
    width: 100%;
    background: #ededed;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: center;
}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
}
.mxw-keywords .left strong {
    vertical-align: inherit;
}
.mxw-keywords .left span {
    color: #aa3039;
    vertical-align: inherit;
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #aa3039;
}
.mxw-keywords .left a:last-child {
    padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
    display: none;
}
.mxw-keywords .right {
    padding-top: 15px;
    padding-bottom: 15px;
}
.mxw-keywords .right form {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}
.mxw-keywords .right form:before {
    content: "";
    display: block;
    width: 2px;
    height: 16px;
    background-color: #d9d9d9;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.mxw-keywords .right input {
    width: 230px;
    height: 44px;
    line-height: 44px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    border: 1px solid #c4c4c4;
    border-right: 0;
    background-color: #fff;
}
.mxw-keywords .right input::-webkit-input-placeholder {
    /*Webkit browsers*/
    color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
    /*Mozilla Firefox 4 to 8*/
    color: #999;
}
.mxw-keywords .right input::moz-placeholder {
    /*Mozilla Firefox 19+*/
    color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
    /*Internet Explorer 10+*/
    color: #999;
}
.mxw-keywords .right button {
    border: 0;
    outline: none;
    border-left: 0;
    cursor: pointer;
    background: #aa3039;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    font-size: 0;
}
.mxw-keywords .right button .text {
    font-size: 14px;
    padding-left: 5px;
}
/* ==================== 关键词 end ==================== */
/* ==================== 头部 start ==================== */
header {
    width: 100%;
    z-index: 99;
    transition: all 0.4s;
    position: relative;
    border-bottom: 1px solid #f49740;
}
header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
}
header .welcome {
    background-color: #f8f8f8;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666;
    padding-top: 12px;
    padding-bottom: 12px;
}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 13px;
}
header .search {
    margin-left: 45px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
header .search:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/search.png) no-repeat center;
    background-size: 100%;
}
header .search.active {
    overflow: visible;
}
header .search.active form {
    opacity: 1;
    right: -10px;
    visibility: visible;
}
header .search form {
    font-size: 0;
    position: absolute;
    top: 230%;
    right: -100%;
    z-index: 33;
    width: 3.3334rem;
    transition: all 0.4s;
    opacity: 0;
    visibility: hidden;
    height: 0.5667rem;
    line-height: 0.5667rem;
}
header .search form input {
    background: #fff;
    padding: 0.1334rem 0.1667rem;
    outline: none;
    font-size: 0.2333rem;
    width: 2.7rem;
    height: 100%;
    border: 1px solid #eee;
}
header .search form button {
    color: #fff;
    position: relative;
    width: 0.8333rem;
    height: 100%;
    background: #aa3039;
    cursor: pointer;
}
header .search form button img {
    width: 20px;
    height: 20px;
}
header .search form button:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid #aa3039;
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}
header .search form button img {
    width: 16px;
    height: 16px;
}
header .mxw-line {
    width: 0px;
    height: 2px;
    background-color: #aa3039;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
    transition: width 0.4s;
}
header .pc-nav{height:111px;display:flex;align-items:center;}
header .pc-nav > .mxw-box {
    width:100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}
header .pc-nav .logo {
    width: 420px;
    flex-shrink: 0;
}
header .pc-nav .right {
    display: flex;
    align-items: flex-start;
}
header .pc-menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e9e9e9;
}
header .pc-menu > li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    text-align: center;
    flex-grow: 1;
    padding-left: 40px;
    padding-right: 40px;
}
header .pc-menu > li:after {
    content: "·";
    color: #333;
    position: absolute;
    right: 0;
    top: 0px;
}
header .pc-menu > li:first-child {
    padding-left: 0;
}
header .pc-menu > li:last-child {
    padding-right: 0;
}
header .pc-menu > li:last-child:after {
    display: none;
}
header .pc-menu > li.active > a,
header .pc-menu > li:hover > a {
    color: #aa3039 !important;
}
header .pc-menu > li.active > a:after,
header .pc-menu > li:hover > a:after {
    width: 100%;
}
header .pc-menu > li:hover > ul {
    opacity: 1;
    visibility: visible;
    z-index: 9;
}
header .pc-menu > li:last-child {
    padding-right: 0;
}
header .pc-menu > li ul {
    background-color: #fff;
    width: 3.3333rem;
    position: relative;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s, visibility 0.4s;
}
header .pc-menu > li ul:hover {
    opacity: 1;
    visibility: visible;
}
header .pc-menu > li ul li.active > ul,
header .pc-menu > li ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    z-index: 9;
}
header .pc-menu > li ul li a {
    position: relative;
}
header .pc-menu > li ul li a:after {
    content: "";
    display: block;
    width: 80%;
    height: 0.0167rem;
    background-color: #eee;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
header .pc-menu > li ul a {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    font-size: 0.2333rem;
    color: #333;
    line-height: 1.2;
    padding: 0.2333rem;
}
header .pc-menu > li > a {
    font-size: 0.3rem;
    color: #333;
    text-align: center;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    position: relative;
    padding-bottom: 25px;
    width: 100%;
}
header .pc-menu > li > a:after {
    content: "";
    display: block;
    width: 0%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background-color: #aa3039;
    transition: width 0.4s;
}
header .pc-menu > li > ul {
    border-top: 0.0167rem solid #ddd;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
header .pc-menu > li > ul > li > a.active,
header .pc-menu > li > ul > li > a:hover {
    background-color: rgba(0, 0, 0, 0.04);
}
header .pc-menu > li > ul > li > a.active:after,
header .pc-menu > li > ul > li > a:hover:after {
    display: none;
}
header .pc-menu > li > ul > li > a:last-child:after {
    display: none;
}
header .pc-menu > li > ul > li > ul {
    position: absolute;
    left: 3.3333rem;
    top: 0;
    border-left: 0.0167rem solid #ddd;
}
header .pc-menu > li > ul > li > ul > li > ul {
    position: absolute;
    left: 3.3333rem;
    top: 0;
    border-left: 0.0167rem solid #ddd;
}
@media screen and (max-width: 1390px) {
    header .mxw-box {
        max-width: 92%;
    }
    header .pc-menu > li {
        padding-left: 30px;
        padding-right: 30px;
    }
    header .pc-menu > li > a {
        font-size: 16px;
        padding-bottom: 15px;
    }
    header .pc-nav > .mxw-box {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}
/* ==================== 头部 end ==================== */
/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
    header {
        z-index: 999;
    }
    .mxw-mob-nav .head {
        font-size: 0;
        padding-left: 12px;
        padding-right: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        max-width: 750px;
        width: 100%;
        transform: translateX(-50%);
        position: fixed;
        top: 0;
        left: 50%;
        z-index: 99;
        background: #fff;
        border-bottom: 1px solid #eee;
    }
    .mxw-mob-nav .logo {
        display: block;
        flex-shrink: 0;
    }
    .mxw-mob-nav .logo img {
        height: 40px;
    }
    .mxw-mob-nav .menu-btn {
        flex-shrink: 0;
        width: 26px;
        height: 20px;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
    }
    .mxw-mob-nav .menu-btn i {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 100px;
        background: #333;
    }
    .mxw-mob-nav .menus-box {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 50%;
        max-width: 450px;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        transform: translateX(50%);
    }
    .mxw-mob-nav .menus-box.active {
        visibility: visible;
        opacity: 1;
    }
    .mxw-mob-nav .menus-box.active .menus {
        transform: translateX(0);
    }
    .mxw-mob-nav .menus {
        width: 60%;
        height: 100%;
        margin-right: 0;
        margin-left: auto;
        background: #fff;
        transform: translateX(100%);
        transition: all 0.5s;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .mxw-mob-nav .menus > ul {
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus > ul > li.active > ul {
        display: block;
    }
    .mxw-mob-nav .menus > ul > li > a {
        display: block;
        width: 100%;
        padding: 15px 18px;
        font-size: 14px;
        color: #555;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mxw-mob-nav .menus > ul > li > a.sub:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-top: 4px solid #555;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 0;
        margin-left: 10px;
    }
    .mxw-mob-nav .menus > ul > li > ul {
        display: none;
        padding: 0px 24px;
    }
    .mxw-mob-nav .menus > ul > li > ul > li > a {
        font-size: 14px;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 36px;
        height: 36px;
        border-bottom: 1px solid #f3f3f3;
    }
    .mxw-mob-nav .menus-head {
        width: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F8F8F8;
        border-bottom: 0.6px solid #eee;
        font-size: 16.8px;
        font-weight: bold;
        line-height: 54px;
        height: 54px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .mxw-mob-nav .menus-head .text {
        color: #333;
        line-height: 1.2;
    }
    .mxw-mob-nav .menus-head .mxw-close {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
        outline: none;
        position: relative;
        transform: rotate(45deg);
    }
    .mxw-mob-nav .menus-head .mxw-close:before,
    .mxw-mob-nav .menus-head .mxw-close:after {
        content: "";
        display: block;
        border-radius: 100px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #333;
        transform: translate(-50%, -50%);
    }
    .mxw-mob-nav .menus-head .mxw-close:before {
        width: 2px;
        height: 100%;
    }
    .mxw-mob-nav .menus-head .mxw-close:after {
        width: 100%;
        height: 2px;
    }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
    font-size: 0;
    position: relative;
}
.mxw-banner video{display: block;width:100%;height: 100%;object-fit: cover;}
.mxw-banner .swiper-slide {
    overflow: hidden;
}
.mxw-banner .swiper-slide > a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
}
.mxw-banner .swiper-slide img {
    width: 100%;
}
.mxw-banner .swiper-pagination {
    width: 100%;
    max-width: 1680px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: #fff;
    opacity: 1;
    margin-left: 9px;
    margin-right: 9px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #aa3039;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
    width: 1.1667rem;
    height: 1.1667rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.18);
    background-image: none;
    outline: none;
}
.mxw-banner .swiper-button-next {
    right: 0.75rem;
}
.mxw-banner .swiper-button-prev {
    left: 0.75rem;
}
.mxw-banner .banner-swiper {
    --swiper-navigation-color: #fff;
    /* 单独设置按钮颜色 */
    --swiper-navigation-size: 24px;
    /* 设置按钮大小 */
}
@media screen and (max-width: 751px) {
    .mxw-banner .swiper-pagination {
        padding-right: 0px;
        bottom: 10px;
        max-width: 80%;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet {
        margin: 0 5px;
        font-size: 14px;
        width: 8px;
        height: 8px;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        font-size: 18px;
    }
    .mxw-banner .swiper-button-next,
    .mxw-banner .swiper-button-prev {
        display: none;
    }
}
/* ==================== 轮播图 end ==================== */
/* ==================== 通用标题 start ==================== */
.mxw-title {
    margin-bottom: 1rem;
    text-align: center;
    overflow: hidden;
    color: #393939;
}
.mxw-title .text1 {
    font-size: 0.4rem;
    line-height: 1.2;
    margin-bottom: 0.1667rem;
}
.mxw-title .text2 {
    font-size: 0.6667rem;
    line-height: 1.2;
}
.mxw-title .text2:after {
    content: "";
    display: block;
    margin-top: 0.3333rem;
    width: 0.6667rem;
    height: 0.0333rem;
    background-color: #aa3039;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 751px) {
    .mxw-title {
        margin-bottom: 30px;
    }
    .mxw-title .text1 {
        font-size: 12px;
        line-height: 1.8;
        margin-bottom: 5px;
    }
    .mxw-title .text2 {
        font-size: 22px;
    }
    .mxw-title .text2:after {
        margin-top: 10px;
    }
}
/* ==================== 通用标题 end ==================== */
/* ==================== 产品中心 start ==================== */
.mxw-product {
    background: url(../images/img01.jpg) no-repeat center;
    background-size: cover;
}
.mxw-product .body {
    position: relative; width: 100%; margin-top: -0.75rem;
}
.mxw-product .mxw-box{width: 84%;}
.mxw-product .body .swiper-button-prev,
.mxw-product .body .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5333rem;
    height: 0.5333rem;
    box-shadow: 0rem 0rem 0.0667rem 0rem rgba(6, 0, 1, 0.2);
    text-align: center;
    background-color: #fff;
    border-radius: 100%;
}
.mxw-product .body .swiper-button-prev:after,
.mxw-product .body .swiper-button-next:after {
    font-size: 0.2rem;
    color: #000;
}
.mxw-product .body .swiper-button-prev {
    left: 0;
}
.mxw-product .body .swiper-button-next {
    right: 0;
}
.mxw-product .item .info {
    text-align: center;
}
.mxw-product .item .text1 {
    font-size: 0.3667rem;
    color: #393939;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}
.mxw-product .item .text2 {
    font-size: 0.3rem;
    color: #787878;
    line-height: 1.2;
}
@media screen and (min-width: 751px) {
    .mxw-product .mxw-box {
        padding-top: 1.6667rem;
        padding-bottom: 1.5rem;
    }

}
@media screen and (max-width: 751px) {
    .mxw-product .item .text1 {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .mxw-product .item .text2 {
        font-size: 12px;
    }
    .mxw-product .mxw-box{ width: 100%; }
    .mxw-product .body{margin-top: 0}
}
/* ==================== 产品中心 end ==================== */
/* ==================== 产业链布局 start ==================== */
.mxw-advantage {
    background: url(../images/img13.jpg) no-repeat center;
    background-size: cover;
}
.mxw-advantage .itembox {
    display: flex;
    align-items: stretch;
}
.mxw-advantage .item {
    position: relative;
    overflow: hidden;
}
.mxw-advantage .item:before {
    content: "";
    position: absolute;
    top: 3%;
    left: 3%;
    width: 94%;
    height: 94%;
    border: 0.0167rem solid #fff;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: all 0.4s;
    visibility: hidden;
}
.mxw-advantage .item:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 2.5rem);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s;
}
.mxw-advantage .item .info {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    transform: translateY(-2.4167rem);
    z-index: 9;
    transition: transform 0.4s;
}
.mxw-advantage .item .head .icon {
    width: 0.6667rem;
    margin-bottom: 0.3333rem;
}
.mxw-advantage .item .head .text1 {
    font-size: 0.3333rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.1667rem;
}
.mxw-advantage .item .head .text2 {
    font-size: 0.2333rem;
    color: rgba(255, 255, 255, 0.47);
    line-height: 1.2;
    text-transform: uppercase;
}
.mxw-advantage .item .desc {
    margin-top: 0.5833rem;
    text-align: justify;
    font-size: 0.2667rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 751px) {
    .mxw-advantage .mxw-box {
        padding-bottom: 160px;
        padding-top: 100px;
    }
    .mxw-advantage .item:hover .info {
        background-color: rgba(170, 48, 57, 0.89);
        transform: translateY(-100%);
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: flex-start;
    }
    .mxw-advantage .item:hover:before {
        opacity: 0.8;
        visibility: visible;
    }
    .mxw-advantage .item:hover:after {
        opacity: 0;
        visibility: hidden;
    }
}
@media screen and (max-width: 751px) {
    .mxw-advantage .itembox {
        flex-wrap: wrap;
    }
    .mxw-advantage .item {
        width: 100%;
        text-align: center;    margin-bottom: 15px;
    }
    .mxw-advantage .item:after {
        background-image: none;
        background-color: rgba(0, 0, 0, 0.6);
    }
    .mxw-advantage .item .info {
        padding: 10px 20px;
        transform: translateY(-100%);
        flex-flow: column;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    .mxw-advantage .item .head .icon {
        width: 24px;
        margin-bottom: 10px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .mxw-advantage .item .head .text1 {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 5px;
    }
    .mxw-advantage .item .desc {
        margin-top: 20px;font-size: 14px;
    }
}
/* ==================== 产业链布局 end ==================== */
/* ==================== 关于我们 start ==================== */
.mxw-about {
    background: url(../images/img53.jpg) no-repeat center;
    background-size: cover;
}
.mxw-about .info .text1 {
    font-size: 1.0333rem;
    line-height: 1.2;
    color: #f9d399;
    margin-bottom: 0.6rem;
}
.mxw-about .info .text2 {
    font-size: 0.7rem;
    color: #fff;
    line-height: 1.2;
}
.mxw-about .info .text2:after {
    content: "";
    display: block;
    width: 0.15rem;
    height: 0.05rem;
    background-color: #fff;
    margin-top: 0.8333rem;
    margin-bottom: 0.8333rem;
}
.mxw-about .info .text3 {
    font-size: 0.3rem;
    color: #fff;
    line-height: 2;
    text-align: justify;
}
.mxw-about .info .mxw-more {
    margin-top: 0.8333rem;
    display: block;
    width: 4.15rem;
    transition: transform 0.4s;
    height: 1.0333rem;
    text-align: center;
    color: #fff;
    line-height: 1.0333rem;
    font-size: 0.3rem;
    border: solid 0.0167rem;
}
.mxw-about .info .mxw-more:hover {
    color: #fff !important;
    transform: translateX(0.3333rem);
}
@media screen and (min-width: 751px) {
    .mxw-about > .mxw-box {

        width: 100%;
        display: flex;
        align-items: center;
        padding-top: 2.6667rem;
        padding-bottom: 2.3333rem;
    }
    .mxw-about .info {
        width: 50%;
    }
    .mxw-about .image {
        width: 12.6667rem;
        flex-shrink: 0;
    }
}
@media screen and (max-width: 751px) {
    .mxw-about {

    }
    .mxw-about .info .text1 {
        font-weight: bold;
        font-size: 22px;
        margin-bottom: 10px;
    }
    .mxw-about .info .text2 {
        font-size: 16px;
    }
    .mxw-about .info .text2:after {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .mxw-about .info .text3 {
        font-size: 12px;    line-height: 1.5;
    }
    .mxw-about .info .mxw-more {
        width: 120px;
        height: 36px;
        line-height: 36px;
        font-size: 12px;
        margin-top: 20px;
    }
    .mxw-about .image {
        margin-top: 20px;
    }
}
/* ==================== 关于我们 end ==================== */
/* ==================== 通用 - 面包屑 start ==================== */
.bread-crumbs > .mxw-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.3rem;
    padding-top: 0.3333rem;
    padding-bottom: 0.3333rem;
    color: #8c8c8c;
}
.bread-crumbs > .mxw-box:before {
    content: "";
    display: block;
    background: url(../images/img20.png) no-repeat center;
    background-size: 100%;
    width: 0.3333rem;
    height: 0.3333rem;
    margin-right: 0.1667rem;
}
.bread-crumbs > .mxw-box.sz>.cz1:before{
    content: "";
    display: block;
    background: url(../images/img20.png) no-repeat center;
    background-size: 100%;
    width: 0.3333rem;
    height: 0.3333rem;
    margin-right: 0.1667rem;
}
.bread-crumbs > .mxw-box.sz:before{
    display:none;
}
.bread-crumbs .title {
    color: #8c8c8c;
}
.bread-crumbs a {
    color: #8c8c8c;
    line-height: 1.2;
}
.bread-crumbs a:last-child:after {
    display: none;
}
.bread-crumbs a::after {

}
@media screen and (max-width: 751px) {
    .bread-crumbs > .mxw-box {
        font-size: 12px;
    }
}
/* ==================== 通用 - 面包屑 end ==================== */
/* ==================== 内页 - 通用分类 start ==================== */
.ny-category {
    background-color: #f8f8f8;
}
.category-swiper.active .swiper-button-next,
.category-swiper.active .swiper-button-prev {
    opacity: 1;
    visibility: visible;
}
.category-swiper .swiper-slide {
    width: auto;
    display: block;
    padding: 0.6667rem 0.5rem;
    color: #787878;
    font-size: 0.3667rem;
    line-height: 1.2;
    text-align: center;
}
.category-swiper .swiper-slide:hover,
.category-swiper .swiper-slide.active {
    color: #fff !important;
    background-color: #aa3039 !important;
}
.category-swiper .swiper-button-prev,
.category-swiper .swiper-button-next {
    width: 0.6667rem;
    height: 0.6667rem;
    background-color: #fff;
    border-radius: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    box-shadow: 0 0 0.1667rem -0.0667rem rgba(0, 0, 0, 0.4);
    margin-top: 0;
    transform: translateY(-50%);
}
.category-swiper .swiper-button-prev:after,
.category-swiper .swiper-button-next:after {
    color: #aa3039;
    font-size: 0.3333rem;
}
.category-swiper .swiper-button-prev.swiper-button-disabled,
.category-swiper .swiper-button-next.swiper-button-disabled {
    display: none;
}
.category-swiper .swiper-button-prev {
    left: 0;
}
.category-swiper .swiper-button-next {
    right: 0;
}
.ny-category2 > a {
    line-height: 1rem;
    background-color: #f8f8f8;
    font-size: 0.3667rem;
    color: #333;
    text-align: center;
    display: block;
}
.ny-category2 > a.active,
.ny-category2 > a:hover {
    color: #fff !important;
    background-color: #aa3039;
}
@media screen and (min-width: 751px) {
    .ny-category2 > a {
        width: 28.6% !important;
    }
    .ny-category2 > a:nth-child(3n-1) {
        margin-left: 7%!important;
        margin-right: 7%!important;
    }
    .ny-category2 > a:nth-child(3) ~ a {
        margin-top: 20px!important;
    }
}
@media screen and (max-width: 751px) {
    .ny-category > .mxw-box {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .ny-category .category-swiper .swiper-slide {
        padding: 8px 10px;
        font-size: 14px;
        background-color: #efefef;
    }
    .ny-category .category-swiper .swiper-button-prev,
    .ny-category .category-swiper .swiper-button-next {
        width: 26px;
        height: 26px;
    }
    .ny-category .category-swiper .swiper-button-prev:after,
    .ny-category .category-swiper .swiper-button-next:after {
        font-size: 12px;
    }
    .ny-category2 > a {
        font-size: 12px;
        line-height: 32px;
        height: 32px;
    }
}
/* ==================== 内页 - 通用分类 end ==================== */
/* ==================== 内页 - 通用标题 start ==================== */
.ny-title {
    text-align: center;
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.ny-title .text1 {
    color: #333;
    font-size: 0.6rem;
    font-weight: bold;
    line-height: 1.2;
}
.ny-title .text1:after {
    content: "";
    display: block;
    width: 0.8333rem;
    height: 0.0667rem;
    background-color: #aa3039;
    margin-top: 0.4167rem;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 751px) {
    .ny-title {
        margin-bottom: 20px;
    }
    .ny-title .text1 {
        font-size: 20px;
    }
    .ny-title .text1:after {
        width: 40px;
        height: 2px;
        margin-top: 10px;
    }
}
/* ==================== 内页 - 通用标题 end ==================== */
/* ==================== 内页 - 关于我们 start ==================== */
.ny-about .section1 .desc {
    font-size: 0.3333rem;
    color: #333;
    line-height: 2;
    text-align: center;
    margin-bottom: 1rem;
    padding-left: 0.8333rem;
    padding-right: 0.8333rem;
}
.ny-about .section1 .image {
    margin-bottom: 0.8333rem;
    width: 100%;
}
.ny-about .section1 .itembox {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.ny-about .section1 .item .text1 {
    background: url(../images/img22.png) no-repeat center;
    background-size: 100%;
    width: 1.85rem;
    height: 1.85rem;
    color: #fff;
    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
.ny-about .section1 .item .num {
    font-size: 0.7rem;
    font-weight: bold;
    line-height: 1.2;
}
.ny-about .section1 .item .text {
    font-size: 0.2667rem;
    line-height: 1.4;
}
.ny-about .section1 .item .text2 {
    margin-top: 0.3333rem;
    line-height: 2;
    text-align: justify;
    font-size: 0.2667rem;
    color: #666;
}
.ny-about .section2 .ny-about-big {
    position: relative;
}
.ny-about .section2 .ny-about-big:after {
    content: "";
    display: block;
    width: 0.0167rem;
    height: 1rem;
    border-left: 0.0167rem dashed #666;
    position: absolute;
    bottom: 0.1667rem;
    left: 50%;
    opacity: 0.5;
}
.ny-about .section2 .ny-about-big .swiper-slide {
    overflow: hidden;
    background-color: #fff !important;
    width: 9.4167rem;
    padding-bottom: 2.3333rem;
    background: url(../images/img24.png) no-repeat center;
    background-position-y: calc(100% - 0.6667rem);
    background-size: 9.4167rem auto;
}
.ny-about .section2 .ny-about-big .swiper-slide .image {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    display: flex;
    align-items: flex-end;
}
.ny-about .section2 .ny-about-big .swiper-slide .image img {
    height: 5rem;
}
.ny-about .section2 .ny-about-min {
    position: relative;
}
.ny-about .section2 .ny-about-min:after {
    content: "";
    display: block;
    width: 100%;
    height: 0.0167rem;
    border-top: 0.0167rem dashed #b2b2b2;
    position: absolute;
    top: 0.1833rem;
    left: 0;
}
.ny-about .section2 .ny-about-min .swiper-slide {
    cursor: pointer;
}
.ny-about .section2 .ny-about-min .swiper-slide.swiper-slide-active .year {
    color: #aa3039;
}
.ny-about .section2 .ny-about-min .swiper-slide.swiper-slide-active .year:before,
.ny-about .section2 .ny-about-min .swiper-slide.swiper-slide-active .year:after {
    border-color: #aa3039;
    background-color: #aa3039;
}
.ny-about .section2 .ny-about-min .year {
    color: #a2a2a2;
    margin-top: 0.8333rem;
    text-align: center;
    font-size: 0.3667rem;
    font-weight: bold;
}
.ny-about .section2 .ny-about-min .year::before,
.ny-about .section2 .ny-about-min .year::after {
    content: "";
    display: block;
    width: 0.3667rem;
    height: 0.3667rem;
    border: 0.0167rem solid #bababa;
    border-radius: 100%;
    position: absolute;
    top: 0rem;
    left: 50%;
    transform: translateX(-50%);
}
.ny-about .section2 .ny-about-min .year:after {
    width: 0.2333rem;
    height: 0.2333rem;
    top: 0.0667rem;
    background-color: #bababa;
}
.ny-about .section2 .desc-list {
    text-align: center;
    margin-top: 1rem;
}
.ny-about .section2 .desc-list .desc {
    display: none;
    font-size: 0.3rem;
    color: #787878;
    line-height: 1.8;
    text-align: center;
}
.ny-about .section2 .desc-list .desc.active {
    display: block;
}
.ny-about .section3 {
    overflow: hidden;
    padding-top: 1rem;
}
.ny-about .section3 .body {
    position: relative;
}
.ny-about .section3 .about-section3 {
    max-width: 19.5rem;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
    position: relative;
}
.ny-about .section3 .swiper-slide {
    transition: filter 0.4s;
    margin-bottom: 0.75rem;
    position: relative;
}
.ny-about .section3 .swiper-slide .text {
    position: absolute;
    bottom: 0;
    max-width: 80%;
    background-color: #aa3039;
    color: #fff;
    height: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    font-size: 0.3333rem;
    padding-left: 0.3333rem;
    padding-right: 0.3333rem;
    width: 100%;
    left: 50%;
    font-weight: bold;
    margin-bottom: -0.75rem;
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;white-space: nowrap; text-overflow: ellipsis; overflow: hidden;
}
.ny-about .section3 .swiper-slide.swiper-slide-active {
    filter: blur(0rem);
}
.ny-about .section3 .swiper-slide.swiper-slide-active .text {
    transform: translateY(0) translateX(-50%);
    opacity: 1;
    visibility: visible;
}
.ny-about .section3 .mxw-prev,
.ny-about .section3 .mxw-next {
    position: absolute;
    top: 50%;
    background: url(../images/img28.png) no-repeat center bottom;
    width: 1.1667rem;
    height: 1.1667rem;
    overflow: hidden;
    outline: none;
    z-index: 9;
    transform: translateY(-50%);
    cursor: pointer;
    background-size: 100% auto;
}
.ny-about .section3 .mxw-prev {
    left: -1.8333rem;
    transform: rotateY(180deg) translateY(-50%);
}
.ny-about .section3 .mxw-next {
    right: -1.8333rem;
}
.ny-about .section4 {
    overflow: hidden;
}
.ny-about .section4 .desc {
    font-size: 0.2667rem;
    color: #787878;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 0.6667rem;
}
.ny-about .section4 .body {
    display: flex;
    align-items: flex-start;
}
.ny-about .section4 .left {
    width: 5.8333rem;
    flex-shrink: 0;
    margin-right: 0.25rem;
}
.ny-about .section4 .left .head {
    height: 1.1667rem;
    line-height: 1.1667rem;
    padding-left: 0.3333rem;
    padding-right: 0.3333rem;
    font-size: 0.3333rem;
    font-weight: bold;
    color: #fff;
    background-color: #aa3039;
}
.ny-about .section4 .left .list > a {
    display: block;
    width: 100%;
    font-size: 0.2667rem;
    color: #333;
    line-height: 1.2;
    padding: 0.3333rem;
    margin-top: 0.0167rem;
    background-color: #f8f8f8;
    position: relative;
}
.ny-about .section4 .left .list > a.active:before,
.ny-about .section4 .left .list > a:hover:before {
    height: 100%;
}
.ny-about .section4 .left .list > a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 0;
    width: 0.05rem;
    background-color: #aa3039;
    transition: height 0.4s;
}
.ny-about .section4 .left .tel {
    background: url(../images/img30.jpg) no-repeat center;
    background-size: cover;
    padding: 0.5rem 0.3333rem;
}
.ny-about .section4 .left .tel p {
    font-size: 0.2667rem;
    color: #333;
    line-height: 1.2;
    margin-bottom: 0.1667rem;
}
.ny-about .section4 .left .tel p:last-child {
    margin-bottom: 0;
}
.ny-about .section4 .left .tel strong {
    font-size: 0.6667rem;
    line-height: 1;
    color: #aa3039;
    letter-spacing: -0.05rem;
}
.ny-about .section4 .about-section4 {
    min-width: 0;
    flex-grow: 1;
}
.ny-about .section4 .about-section4 .swiper-slide {
    overflow: hidden;
    background-color: #f8f8f8;
    padding: 0.1667rem 0.3333rem 0.5rem;
    text-align: left;
}
.ny-about .section4 .about-section4 .title {
    font-size: 0.3667rem;
    font-weight: bold;
    color: #333;
    padding-bottom: 0.3333rem;
    width: 100%;
    border-bottom: 0.0167rem solid #e2e2e2;
    padding-top: 0.3333rem;
}
.ny-about .section4 .about-section4 .desc2 {
    padding-top: 0.3333rem;
    font-size: 0.2667rem;
    color: #666;
    line-height: 2;
}
@media screen and (min-width: 751px) {
    .ny-about .section1 .item {
        width: 27.3%;
    }
    .ny-about .section1 .item:nth-child(3n-1) {
        margin-left: 9%;
        margin-right: 9%;
    }
    .ny-about .section1 .item:nth-child(3) ~ .item {
        margin-top: 4%;
    }
    .ny-about .section3 .swiper-slide {
        filter: blur(0.0333rem);
    }
}
@media screen and (max-width: 751px) {
    .ny-about .section1 .item {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .ny-about .section1 .item:first-child ~ .item {
        margin-top: 4%;
    }
    .ny-about .section1 .item .num {
        font-size: 24px;
    }
    .ny-about .section1 .item .text1 {
        flex-shrink: 0;
        width: 80px;
        height: 80;
        margin-right: 15px;
    }
    .ny-about .section1 .item .text2 {
        margin-top: 0;
    }
    .ny-about .section1 .desc {
        padding-left: 0;
        padding-right: 0;
        line-height: 2;
        font-size: 14px;
        text-align: justify;
        margin-bottom: 20px;
    }
    .ny-about .section1 .image {
        margin-bottom: 20px;
    }
    .ny-about .section2 .ny-about-big .swiper-slide {
        width: 100%;
        padding-bottom: 60px;
        background-size: 100% auto;
        background-position-y: 100%;
    }
    .ny-about .section2 .ny-about-big .swiper-slide .image img {
        height: 4rem;
    }
    .ny-about .section2 .ny-about-min:after {
        top: 6px;
    }
    .ny-about .section2 .ny-about-min .year {
        font-size: 15px;
        margin-top: 20px;
    }
    .ny-about .section2 .ny-about-min .year:before {
        width: 14px;
        height: 14px;
    }
    .ny-about .section2 .ny-about-min .year:after {
        width: 8px;
        height: 8px;
        top: 3px;
    }
    .ny-about .section2 .desc-list {
        margin-top: 20px;
    }
    .ny-about .section2 .desc-list .desc {
        font-size: 14px;
    }
    .ny-about .section2 .desc-list .desc p {
        display: inline;
    }
    .ny-about .section3 {
        padding-top: 30px;
    }
    .ny-about .section3 .about-section3 {
        max-width: 100%;
    }
    .ny-about .section3 .about-section3 .swiper-slide {
        margin-bottom: 20px;
    }
    .ny-about .section3 .about-section3 .swiper-slide .text {
        max-width: 90%;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        margin-bottom: -20px;
    }
    .ny-about .section4 .body {
        flex-wrap: wrap;
    }
    .ny-about .section4 .left {
        margin-right: 0;
        width: 100%;
    }
    .ny-about .section4 .left .head {
        height: 40px;
        line-height: 40px;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 16px;
    }
    .ny-about .section4 .left .list > a {
        font-size: 12px;
        padding: 15px;
    }
    .ny-about .section4 .about-section4 {
        width: 100%;
        margin-top: 10px;
    }
    .ny-about .section4 .about-section4 .title {
        font-size: 16px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .ny-about .section4 .about-section4 .swiper-slide {
        padding-top: 0;
        padding-bottom: 15px;
    }
    .ny-about .section4 .about-section4 .desc2 {
        font-size: 12px;
    }
}
/* ==================== 内页 - 关于我们 end ==================== */
/* ==================== 内页 - 产品中心 start ==================== */
.ny-product .item .info {
    padding-top: 10px;
    text-align: center;
}
.ny-product .item .info .text1 {
    font-size: 0.3667rem;
    line-height: 1.2;
    color: #393939;
    margin-bottom: 0.25rem;
}
.ny-product .item .info .text2 {
    font-size: 0.3rem;
    color: #787878;
    line-height: 1.4;
}
@media screen and (max-width: 751px) {
    .ny-product .item .info .text1 {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .ny-product .item .info .text2 {
        font-size: 12px;
    }
}
/* ==================== 内页 - 产品中心 end ==================== */
/* ==================== 内页 - 产品详情 start ==================== */
.ny-product-desc {
    overflow: inherit;
}
.ny-product-desc > .mxw-box {
    display: flex;
    align-items: flex-start;
    zoom: 1;
}
.ny-product-desc .product-detail {
    flex-grow: 1;
    min-width: 0;
}
.ny-product-desc .top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.ny-product-desc .ny-product-image {
    width: 40%;
    flex-shrink: 0;
    margin-right: 5%;
    border: 1px solid #ccc;
}
.ny-product-desc .right {
    width: 65%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
.ny-product-desc .info {
    flex-grow: 1;
    width: 100%;
}
.ny-product-desc .info .head {
    padding-bottom: 0.1667rem;
    width: 100%;
    border-bottom: 0.0167rem solid #dcdcdc;
    margin-bottom: 0.3333rem;
}
.ny-product-desc .info .head .text1 {
    font-size: 0.5667rem;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}
.ny-product-desc .info .head .text2 {
    font-size: 0.2667rem;
    color: #606060;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .detail {
    font-size: 0.2667rem;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .mxw-more {
    margin-top: 1rem;
    border-radius: 1.6667rem;
    margin-left: 0;
}
.ny-product-desc .small-image {
    width: 100%;
    max-width: 10rem;
    margin-top: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.ny-product-desc .small-image .swiper-slide {
    max-width: 2rem;
}
.ny-product-desc .small-image .mxw-image {
    cursor: pointer;
    border: 0.05rem solid #fff;
    border-radius: 0.0833rem;
    background-color: #fff;
}
.ny-product-desc .small-image .swiper-slide-thumb-active .mxw-image {
    border-color: #aa3039;
}
.ny-product-desc .small-image .swiper-button-disabled {
    opacity: 1;
}
.ny-product-desc .small-image .swiper-button-next:after,
.ny-product-desc .small-image .swiper-button-prev:after {
    font-size: 0.4667rem;
    color: #ccc;
}
.ny-product-desc .small-image .swiper-button-next {
    right: 0rem;
}
.ny-product-desc .small-image .swiper-button-prev {
    left: 0rem;
}
.ny-product-desc .bottom {
    margin-top: 0.8333rem;
}
.ny-product-desc .bottom .head {
    width: 100%;
    border-bottom: 0.0167rem solid #d9d9d9;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 0.6667rem;
}
.ny-product-desc .bottom .head .text1 {
    padding: 0 0.3333rem;
    border-bottom: 0.0833rem solid #aa3039;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #aa3039;
}
.pro .item .image{ border: 1px solid #ccc;}
@media screen and (min-width: 751px) {
    .ny-product-desc .mxw-ny-box {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media screen and (max-width: 751px) {
    .ny-product-desc > .mxw-box {
        flex-wrap: wrap;
    }
    .ny-product-desc .top {
        flex-wrap: wrap;
    }
    .ny-product-desc .ny-product-image {
        width: 100%;
        margin-right: 0;
    }
    .ny-product-desc .right {
        width: 100%;
    }
    .ny-product-desc .info {
        order: 2;
    }
    .ny-product-desc .small-image {
        padding: 0;
        margin-bottom: 20px;
        max-width: 100%;
    }
    .ny-product-desc .small-image .swiper-slide {
        max-width: 120px;
    }
    .ny-product-desc .swiper-button-next,
    .ny-product-desc .swiper-button-prev {
        display: none;
    }
    .ny-product-desc .info .head {
        margin-bottom: 15px;
    }
    .ny-product-desc .info .head .text1 {
        font-size: 22px;
    }
    .ny-product-desc .info .head .text2 {
        font-size: 14px;
    }
    .ny-product-desc .info .detail {
        font-size: 14px;
    }
    .ny-product-desc .info .mxw-more {
        margin-top: 20px;
    }
    .ny-product-desc .bottom {
        margin-top: 30px;
    }
    .ny-product-desc .bottom .head {
        margin-bottom: 10px;
    }
    .ny-product-desc .bottom .head .text1 {
        font-size: 16px;
        border-bottom-width: 3px;
        height: 40px;
        line-height: 40px;
    }
}
/* ==================== 内页 - 产品详情 end ==================== */
/* ==================== 内页 - 加盟优势 start ==================== */
.ny-join {
    overflow: hidden;
}
.ny-join .section1 .item .info {
    min-width: 0;
    flex-grow: 1;
    background: url(../images/img50.png) repeat-x center 0.4167rem;
    background-size: auto 0.8333rem;
}
.ny-join .section1 .item .num {
    font-size: 1.5833rem;
    font-weight: bold;
    color: #aa3039;
    line-height: 1;
    margin-bottom: 0.3333rem;
}
.ny-join .section1 .item .text1 {
    font-size: 0.4rem;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}
.ny-join .section1 .item .text2 {
    font-size: 0.3rem;
    color: #666;
    line-height: 1.8;
    text-align: justify;
}
.ny-join .section2 .item {
    position: relative;
    margin-bottom: 0.6667rem;
}
.ny-join .section2 .item:last-child {
    margin-bottom: 0;
}
.ny-join .section2 .item .info > div {
    background-color: rgba(170, 48, 52, 0.9);
    color: #fff;
}
.ny-join .section2 .item .title {
    font-size: 0.4rem;
    font-weight: bold;
    line-height: 1.2;
    min-width: 3.3333rem;
    display: inline-block;
    padding-bottom: 0.3333rem;
    border-bottom: 0.0167rem solid #fff;
    margin-bottom: 0.3333rem;
}
.ny-join .section2 .item .desc {
    font-size: 0.3rem;
    text-align: justify;
    line-height: 1.6;
}
.ny-join .section2 .item .image img {
    width: 100%;
}
.ny-join .section3 {
    background: url(../images/img42.jpg) no-repeat center;
    background-size: cover;
}
.ny-join .section3 > .mxw-box {
    padding-top: 1rem;
    padding-bottom: 1.6667rem;
}
.ny-join .section3 .ny-title .text1 {
    color: #fff;
}
.ny-join .section3 .ny-title .text1:after {
    background-color: #fff;
}
.ny-join .section3 .item .icon,
.ny-join .section3 .item .desc {
    transition: transform 0.4s;
}
.ny-join .section3 .item .icon {
    width: 1.1667rem;
    margin-bottom: 0.5rem;
    margin-left: auto;
    margin-right: auto;
}
.ny-join .section3 .item .desc {
    font-size: 0.3333rem;
    line-height: 1.8;
    text-align: center;
    color: #fff;
}
.ny-join .section4 .item {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 0.0167rem solid rgba(55, 55, 55, 0.14);
}
.ny-join .section4 .item:last-child {
    margin-bottom: 0;
}
.ny-join .section4 .item:hover .title {
    color: #aa3039;
}
.ny-join .section4 .item .title {
    font-size: 0.4rem;
    color: #333;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.ny-join .section4 .item .desc {
    font-size: 0.3rem;
    color: #666;
    line-height: 1.8;
    text-align: justify;
}
.ny-join .section5 form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.ny-join .section5 input,
.ny-join .section5 textarea {
    display: block;
    border: 0.0167rem solid rgba(204, 204, 204, 0.55);
    margin-bottom: 0.3333rem;
    position: relative;
    padding-left: 0.6667rem;
    padding-right: 0.6667rem;
    font-size: 0.3333rem;
}
.ny-join .section5 input.danger,
.ny-join .section5 textarea.danger {
    border-color: #aa3039;
}
.ny-join .section5 input::-webkit-input-placeholder,
.ny-join .section5 textarea::-webkit-input-placeholder {
    /* WebKit browsers */
    color: rgba(55, 55, 55, 0.46);
}
.ny-join .section5 input:-moz-placeholder,
.ny-join .section5 textarea:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: rgba(55, 55, 55, 0.46);
}
.ny-join .section5 input::-moz-placeholder,
.ny-join .section5 textarea::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: rgba(55, 55, 55, 0.46);
}
.ny-join .section5 input:-ms-input-placeholder,
.ny-join .section5 textarea:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: rgba(55, 55, 55, 0.46);
}
.ny-join .section5 input.required,
.ny-join .section5 textarea.required {
    background: url(../images/img51.png) no-repeat;
    background-position-x: 0.3333rem;
    background-position-y: 0.5rem;
    background-size: 0.1667rem 0.1667rem;
}
.ny-join .section5 input {
    height: 1.1667rem;
    line-height: 1.1667rem;
    width: 49%;
}
.ny-join .section5 textarea {
    padding-top: 0.3333rem;
    padding-bottom: 0.3333rem;
    width: 100%;
    height: 4rem;
    resize: none;
}
.ny-join .section5 button {
    display: block;
    margin-top: 0.6667rem;
    width: 5rem;
    height: 1rem;
    line-height: 1rem;
    color: #fff;
    text-align: center;
    background-color: #aa3039;
    font-size: 0.3333rem;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    outline: none;
    transition: box-shadow 0.4s;
}
.ny-join .section5 button:hover {
    box-shadow: 0 0 0.1667rem -0.0333rem rgba(170, 48, 52, 0.9);
}
@media screen and (min-width: 751px) {
    .ny-join .section1 .item {
        display: flex;
        align-items: center;
    }
    .ny-join .section1 .item .info,
    .ny-join .section1 .item .image {
        width: 50%;
    }
    .ny-join .section1 .item .info {
        display: flex;
        align-items: center;
    }
    .ny-join .section1 .item:nth-child(2n-1) .num,
    .ny-join .section1 .item:nth-child(2n-1) .desc {
        padding-left: 1rem;
    }
    .ny-join .section1 .item:nth-child(2n-1) .info {
        justify-content: flex-start;
    }
    .ny-join .section1 .item:nth-child(2n) .image {
        order: -1;
    }
    .ny-join .section1 .item:nth-child(2n) .num,
    .ny-join .section1 .item:nth-child(2n) .desc {
        padding-left: 1rem;
    }
    .ny-join .section1 .item:nth-child(2n) .info {
        justify-content: flex-start;
    }
    .ny-join .section2 .item .info {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
    }
    .ny-join .section2 .item .info > div {
        padding: 0.6667rem;
        width: 7.6667rem;
    }
    .ny-join .section2 .item:nth-child(2n-1) .info {
        justify-content: flex-start;
        padding-left: 1rem;
    }
    .ny-join .section2 .item:nth-child(2n) .info {
        justify-content: flex-end;
        padding-right: 1rem;
    }
    .ny-join .section3 {
        background-attachment: fixed;
    }
    .ny-join .section3 .ny-title {
        margin-bottom: 1rem;
    }
    .ny-join .section3 .item:hover .icon,
    .ny-join .section3 .item:hover .desc {
        transform: translateY(-0.1667rem);
    }
    .ny-join .section4 .item {
        display: flex;
        align-items: center;
    }
    .ny-join .section4 .item .image {
        flex-shrink: 0;
        width: 7.6667rem;
        margin-right: 0.5rem;
    }
    .ny-join .section4 .item .info {
        min-width: 0;
        flex-grow: 1;
    }
}
@media screen and (max-width: 751px) {
    .ny-join .section1 .item {
        margin-bottom: 20px;
    }
    .ny-join .section1 .item:last-child {
        margin-bottom: 0;
    }
    .ny-join .section1 .item .info {
        margin-bottom: 15px;
    }
    .ny-join .section1 .item .info-body {
        display: flex;
        align-items: center;
    }
    .ny-join .section1 .item .num {
        font-size: 36px;
        margin-bottom: 10px;
        flex-shrink: 0;
        margin-right: 10px;
    }
    .ny-join .section1 .item .info {
        background: none;
    }
    .ny-join .section1 .item .text1 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .ny-join .section1 .item .text2 {
        font-size: 12px;
    }
    .ny-join .section2 .item {
        margin-bottom: 15px;
    }
    .ny-join .section2 .item .info > div {
        padding: 15px 20px;
    }
    .ny-join .section2 .item .info .title {
        font-size: 16px;
        margin-bottom: 10px;
        font-weight: bold;
        padding-bottom: 10px;
    }
    .ny-join .section2 .item .info .desc {
        font-size: 12px;
    }
    .ny-join .section3 > .mxw-box {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .ny-join .section3 .item:nth-child(2) ~ .item {
        margin-top: 20px;
    }
    .ny-join .section3 .item .icon {
        width: 40px;
        margin-bottom: 10px;
    }
    .ny-join .section3 .item .desc {
        font-size: 12px;
        padding: 0 10px;
    }
    .ny-join .section3 .item .desc p {
        display: inline;
    }
    .ny-join .section4 .item {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .ny-join .section4 .item .image {
        margin-bottom: 20px;
    }
    .ny-join .section4 .item .title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .ny-join .section4 .item .desc {
        font-size: 14px;
        line-height: 2;
    }
    .ny-join .section5 input,
    .ny-join .section5 textarea {
        font-size: 14px;
    }
    .ny-join .section5 input.required,
    .ny-join .section5 textarea.required {
        background-position-x: 5px;
        background-position-y: 16px;
    }
    .ny-join .section5 input {
        width: 100%;
        height: 40px;
        line-height: 40px;
        margin-bottom: 10px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .ny-join .section5 textarea {
        padding: 10px 20px;
    }
    .ny-join .section5 button {
        width: 100%;
        font-size: 14px;
        height: 40px;
        line-height: 40px;
        margin-top: 0;
    }
}
/* ==================== 内页 - 加盟优势 end ==================== */
/* ==================== 底部样式 start ==================== */
footer {
    width: 100%;
}
footer .top {
    background-color: #fff;
}
footer .top > .mxw-box {
    padding-top: 1rem;
    padding-bottom: 0.8333rem;
}
footer .mxw-share {
    display: flex;
    justify-content: center;
    margin-bottom: 0.8333rem;
}
footer .mxw-share .item {
    position: relative;
    background-size: 100%;
    background-repeat: no-repeat;
    margin-right: 0.6667rem;
    width: 0.8333rem;
    height: 0.8333rem;
    display: block;
}
footer .mxw-share .item:hover img {
    visibility: visible;
    opacity: 1;
}
footer .mxw-share .item img {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translate(-50%, 65%);
    width: 1.6667rem;
    max-width: 1.6667rem;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    border: 1px solid #ddd;
}
footer .mxw-share .item img:hover {
    visibility: visible;
    opacity: 1;
}
footer .mxw-share .item:last-child {
    margin-right: 0;
}
footer .mxw-share .item:nth-child(1) {
    background-image: url(../images/img16.png);
}
footer .mxw-share .item:nth-child(2) {
    background-image: url(../images/img17.png);
}
footer .mxw-share .item:nth-child(3) {
    background-image: url(../images/img18.png);
}
footer .mxw-slogan {
    text-align: center;
}
footer .mxw-slogan img {
    width: 6.1667rem;
}
footer .bottom {
    background-color: #f7f7f7;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}
footer .top-body {
    padding-bottom: 0.8333rem;
    display: flex;
    align-items: flex-start;
}
footer .foot-nav {
    display: flex;
    align-items: flex-start;
    min-width: 0;
    flex-grow: 1;
}
footer .foot-nav .head {
    font-size: 0.3333rem;
    line-height: 1.2;
    color: #333;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}
footer .foot-nav .nav-item {
    position: relative;
    padding-left: 2rem;
    padding-right: 2rem;
}
footer .foot-nav .nav-item:first-child {
    padding-left: 0;
}
footer .foot-nav .nav-item:last-child {
    padding-right: 0;
}
footer .foot-nav .nav-item:last-child::after {
    display: none;
}
footer .foot-nav .nav-item:after {
    content: "";
    display: block;
    width: 0.0167rem;
    height: 2.1667rem;
    background-color: #d1d1d1;
    position: absolute;
    right: 0;
    top: 0;
}
footer .foot-nav .list > a {
    font-size: 0.2667rem;
    color: rgba(0, 0, 0, 0.86);
    line-height: 1.8;
    margin-bottom: 0.25rem;
    display: block;
}
footer .foot-nav .list > a:last-child {
    margin-bottom: 0;
}
footer .foot-contact {
    width: 10.6667rem;
    flex-shrink: 0;
}
footer .foot-contact .text1 {
    font-size: 0.3667rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}
footer .foot-contact .body {
    display: flex;
    align-items: flex-start;
}
footer .foot-contact .tel {
    margin-right: 1.1667rem; flex-shrink: 0;
}
footer .foot-contact .tel p {
    font-size: 0.2333rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 0.1667rem;
}
footer .foot-contact .tel p:last-child {
    margin-bottom: 0;
}
footer .foot-contact .tel strong {
    font-size: 0.3333rem;
    line-height: 1.2;
    font-weight: bold;
}
footer .foot-contact .address {
    font-size: 0.2333rem;
    color: #000;
    line-height: 1.6;
}
footer .foot-contact .address p {
    margin-bottom: 0.3333rem;
}
footer .foot-contact .address p:last-child {
    margin-bottom: 0;
}
footer .mxw-links {
    border-top: 0.0167rem solid #33547b;
    padding-top: 0.3333rem;
    z-index: 99;
    font-size: 0.2333rem;
    color: #656565;
    line-height: 1.8;
    position: relative;
}
footer .mxw-links .title {
    cursor: pointer;
    display: block;
    font-size: 0.2333rem;
    color: #fff;
    line-height: 2;
    margin-right: 0.1667rem;
}
footer .mxw-links .title img {
    width: 0.2333rem;
    margin-right: 0.0833rem;
}
footer .mxw-links > a {
    display: inline-block;
    color: #fff;
}
footer .mxw-links > a:hover {
    color: #fff !important;
}
footer .mxw-links > a:last-child:after {
    display: none;
}
footer .mxw-links > a:after {
    content: "";
    display: inline-block;
    width: 0.0167rem;
    height: 0.2333rem;
    background-color: #fff;
    margin-left: 0.1667rem;
    margin-right: 0.0833rem;
    margin-top: -0.0333rem;
}
footer .mxw-links .mxw-links-online {
    position: absolute;
    top: -0.1667rem;
    left: 0%;
    background: #eee;
    padding: 0.0833rem 0.1667rem;
    color: #333;
    font-size: 0.2rem;
    border: 0.0167rem solid #ddd;
    transform: translate(0%, -100%);
    display: none;
}
footer .mxw-links .mxw-links-online a {
    padding-right: 0.25rem;
    line-height: 2;
}
footer .mxw-links .mxw-links-online a:last-child {
    padding-right: 0;
}
footer .mxw-copyright {
    text-align: center;
    color: rgba(55, 55, 55, 0.64);
    line-height: 1.8;
    font-size: 0.2333rem;
}
footer .mxw-copyright a{color: rgba(55, 55, 55, 0.64);}

@media screen and (max-width: 751.002px) {
    footer .top .mxw-box {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    footer .mxw-share {
        margin-bottom: 20px;
    }
    footer .mxw-share .item {
        width: 30px;
        height: 30px;
        margin-right: 15px;
    }
    footer .mxw-share .item:last-child {
        margin-right: 0;
    }
    footer .mxw-slogan img {
        width: 220px;
    }
    footer .bottom {
        padding-top: 0;
        padding-bottom: 0;
    }
    footer .foot-contact {
        width: 100%;
    }
    footer .foot-contact .text1 {
        margin-bottom: 10px;
    }
    footer .foot-contact .body {
        flex-wrap: wrap;
    }
    footer .foot-contact .tel {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    footer .foot-contact .address {
        width: 100%;
    }
    footer .foot-contact .address p {
        margin-bottom: 10px;
    }
    footer .top-body {
        padding-bottom: 30px;
    }
}
/* ==================== 底部样式 end ==================== */
/* 容器大小 */
.mxw-box {
    max-width: 1500px;
    margin: 0 auto;
    font-size: 16px;
    color: #333;
}
.mxw-box p {
    margin-bottom: 0;
}
.mxw-box a:hover {
    color: #aa3039;
}
/* 内页 banner */
.ny-banner img {
    width: 100%;
}

.ny-category2 { margin-bottom:45px;}










/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
    /* pc端固定html标签文字大小(rem适配) */
    html {
        font-size: 60px !important;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-box {
        max-width: 86%;
    }
}
@media screen and (min-width: 751px) {
    .pc-none,
    .mob-nav,
    .pc-none {
        display: none !important;
    }
    body,
    html,
    .mxw-container,
    .mxw-main,
    #index-swiper,
    .banner,
    .banner-swiper,
    .banner-swiper .swiper-slide {
        height: 100%;
        width: 100%;
    }
    .banner-image {
        display: block;
        width: 100%;
        height: 100%;
        background-size: cover!important;
        background-position: center!important;
        background-repeat: no-repeat !important;
    }
    .banner-image img {
        display: none;
    }
    #index-swiper header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
    }
    #index-swiper > .swiper-wrapper > .swiper-slide:last-child {
        padding-top: 0;
    }
    #index-swiper > .swiper-wrapper > .swiper-slide {
        display: flex;
        align-items: center;
        padding-top: 111px;
    }
    .mxw-ny-box {
        max-width: 1400px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-ny-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 751px) {
    .mxw-ny-box {
        max-width: 100%;
        font-size: 0;
        padding: 30px 20px;
    }
}
@media screen and (max-width: 751px) {
    body {
        margin-top: 60px;
    }
    html {
        font-size: 50px;
    }
    .m-none,
    .pc-nav {
        display: none !important;
    }
    .mxw-box {
        padding: 30px 20px;
        max-width: 100%;
    }
    .mxw-section {
        padding-left: 0;
        padding-right: 0;
    }
    article {
        font-size: 15px;
    }

    #index-swiper > .swiper-wrapper {
        flex-flow: column;
    }

    .ny-about .section4 .desc{ font-size:14px;}

    .ny-about .section4 .desc>p{ display:inline}


    #mxw-video{width:100%; height:200px;
        object-fit: cover;
    }



}


@media screen and (max-width: 425px) {

    #mxw-video{width:100%; height:185px;
        object-fit: cover;
    }

    .article{font-size:12px;}

}

@media screen and (max-width: 375px) {

    #mxw-video{width:100%; height:160px;
        object-fit: cover;
    }

}


@media screen and (max-width: 320px) {

    #mxw-video{width:100%; height:140px;
        object-fit: cover;
    }

}



/* ==================== 页面自定义样式 end ==================== */
/* ==================== 动画 start ==================== */
@keyframes arrowAnimate {
    0% {
        transform: translate(0rem, 0rem);
    }
    50% {
        transform: translate(0rem, -0.1667rem);
    }
    100% {
        transform: translate(0rem, 0rem);
    }
}
/* ==================== 动画 end ==================== */








/* ==================== 内页 - 通用搜索栏 start ==================== */
.ny-search {

    position: relative;
    z-index: 3;
}

.ny-search > .mxw-box {
    background-color: #fff;
    border-radius: 0.1667rem;
    padding: 0.5rem 1.5rem;
    box-shadow: 0rem 0.15rem 0.2667rem 0rem rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ny-search form {
    display: flex;
    align-items: center;
}

.ny-search form .title {
    font-size: 0.2833rem;
    color: #333;
    line-height: 1.2;
    padding-left: 0.5rem;
    height: 0.4333rem;
    line-height: 0.4333rem;
    border-left: 0.05rem solid #d70c18;
    flex-shrink: 0;
}

.ny-search form select, .ny-search form input {
    height: 0.7rem;
    background-color: #f2f2f2;
    border: 0.0167rem solid #e4e4e4;
    border-radius: 0.0667rem;
    color: #838383;
    font-size: 0.2667rem;
    flex-shrink: 0;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.ny-search form select {
    appearance: none;
    background-image: url(../images/img42.png);
    background-repeat: no-repeat;
    background-position: 90% center;
    outline: none;
    cursor: pointer;
    width: 3rem;
    margin-right: 0.5rem;
}

.ny-search form input {
    width: 4.1667rem;
    margin-right: 0.5rem;
}

.ny-search form button {
    margin: 0;    display: block;
    margin: 0 auto;
    background-color: #d70c18;
    color: #fff;
    text-align: center;
    font-size: 0.2667rem;
    width: 2.25rem;
    height: 0.7rem;
    line-height: 0.7rem;
    border-radius: 0.0667rem;
    transition: all 0.4s;
    cursor: pointer;
    outline: none;
}

.ny-search .search-contact {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 0.5rem;
}

.ny-search .search-contact::before {
    content: "";
    display: block;
    width: 0.05rem;
    height: 0.4333rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background-color: #d70c18;
}

.ny-search .search-contact .icon {
    width: 0.4rem;
    flex-shrink: 0;
    margin-right: 0.2333rem;
}

.ny-search .search-contact p {
    color: #333;
    font-size: 0.2833rem;
    line-height: 1.2;
    margin-right: 0.6667rem;
}

.ny-search .search-contact p strong {
    font-size: 0.4rem;
    color: #d70c18;
    line-height: 1.1;
    font-weight: 400;
    font-family: fantasy;
}

.ny-search .search-contact .mxw-more {
    width: 2.25rem;
    margin: 0;
}


/* 内页新闻列表 */
.xypg-news-list .mxw-image{ margin-right: 20px; width: 500px;}
.xypg-news-list li {
    border: 1px solid #e1e1e1;
    padding: 30px;
    background: #fff;
    margin-bottom: 35px;
    -webkit-transition: all .5s;
    transition: all .5s;

}
.xypg-news-list li>a{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.xypg-news-list li .tit {
    border-bottom: 1px solid #cbcbcb;
    margin-bottom: 15px;
    position: relative;
}

.xypg-news-list li .tit h3 {
    padding-bottom: 15px;
    font-size: 18px;
    color: #565656;
    font-weight: normal;
    padding-right: 25%;
    margin: 0;
}

.xypg-news-list li .tit .date {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
    color: #666666;
}

.xypg-news-list li .info {
    font-size: 14px;
    line-height: 2;
    color: #999999;
}

.xypg-news-list li .more {
    margin-top: 15px;
}

.xypg-news-list li .more span {
    display: inline-block;
    width: 130px;
    line-height: 33px;
    text-align: center;
    font-size: 14px;
    color: #666666;
    border: 1px solid #e1e1e1;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.xypg-news-list li:hover {
    -webkit-box-shadow: 0px 2px 13px 1px rgba(8, 1, 3, 0.18);
    box-shadow: 0px 2px 13px 1px rgba(8, 1, 3, 0.18);
}

.xypg-news-list li:hover .tit h3 {
    color: #aa3039 ;
}

.xypg-news-list li:hover .more span {
    color: #fff;
    background-color: #aa3039 ;
}

@media (max-width: 990px) {
    .xypg-news-list .mxw-image{ margin-right: 0; width:100%; margin-bottom: 10px}
    .xypg-news-list li .tit {
        border-bottom: none;
    }

    .xypg-news-list li .tit h3 {
        padding-right: 0;
        padding-bottom: 10px;
    }

    .xypg-news-list li .tit .date {
        position: static;
        border-bottom: 1px solid #cbcbcb;
        padding-bottom: 5px;
        color: #999;
    }
}
/* ==================== 新闻详情 start ==================== */
.ny-news-desc {


}
.ny-news-desc > .mxw-box {

}
.ny-news-desc .title {
    font-weight: bold;
    font-size: 27px;
    color: #333;
    padding-bottom: 19px;
}
.ny-news-desc .info {
    font-size: 0;
    padding-bottom: 19px;
    border-bottom: 1px solid #333;
    margin-bottom: 19px;
}
.ny-news-desc .info .text {
    font-size: 15px;
    color: #333;
    display: inline-block;
    margin-right: 19px;
    border-left: 1px solid #333;
    padding-left: 19px;
}
.ny-news-desc .info .tip + .text {
    border-left: 0;
}
.ny-news-desc .info .tip {
    border: 1px solid #999;
    border-radius: 97px;
    padding: 5px 10px;
    line-height: 1;
    font-size: 14px;
    display: inline-block;
    color: #999;
}
.ny-news-desc .article img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto !important;
}
.ny-news-desc .article {
    line-height: 1.8;
    text-align: justify;
    font-size: 0.3rem;
}
.ny-news-desc .article p {
    line-height: 1.8;
}

@media screen and (max-width: 751px) {
    .ny-news-desc {
        padding: 0;
        background: none;
        margin-bottom: 0;
    }
    .ny-news-desc > .mxw-box {
        padding: 20px 0;
    }
    .ny-news-desc .article {
        font-size: 14px;
    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
}
/* ==================== 新闻详情 end ==================== */


@media screen and (max-width: 751px) {
    .ny-search {
        margin-top: 30px;
    }

    .ny-search > .mxw-box {
        padding: 10px 15px;
        max-width: 90%;
        margin: 0 auto;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .ny-search .search-contact {
        padding-left: 10px;
        width: 100%;
        order: 1;
        margin-bottom: 15px;
    }

    .ny-search form {
        order: 2;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .ny-search form input {
        margin-bottom: 15px;
        margin-top: 15px;
        width: 100%;
    }

    .ny-search form select {
        margin-right: 0;
        width: calc(100% - 117px);
    }

    .ny-search .search-contact .icon {
        width: 20px;
    }

    .ny-search .search-contact p {
        margin-right: 10px;
        min-width: 0;
        flex-grow: 1;
    }

    .ny-search .search-contact p strong {
        display: block;
        margin-top: 3px;
        font-size: 16px;
    }
    .d_List {   font-size: 16px;}
    .d_List .u-col{width:100%;}
    .d_List .u-col:nth-child(2n){margin-left:0}
    .product-swiper .swiper-slide{ width: 48%;}
}

/* ==================== 内页 - 通用搜索栏 end ==================== */




