 /* CSS Document *//* CSS 公共样式开始 */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box
}

@font-face {
    font-family: "Outfit-Regular";
    src: url("../fonts/outfit-regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    -webkit-tap-highlight-color: transparent
}

body {
    overflow-x: hidden;
    color: #333;
    font-size: 14px;
    font-family: "Outfit-Regular", 'Microsoft Yahei', 'Times New Roman', Arial;
    -webkit-overflow-scrolling: touch
}

body, dd, dl, figure, form, h1, h2, h3, h4, h5, h6, p, td, th {
    margin: 0;
    padding: 0;
    border: 0
}

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

img {
    max-width: 100%;
    border: 0;
    vertical-align: middle
}

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

a {
    color: inherit;
    outline: none;
    text-decoration: none;
    background: transparent
}

a, em, i, span {
    display: inline-block
}

b, em, i {
    font-style: normal
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal; /*font-size:14px*/
}

button {
    padding: 0
}

button, input, optgroup, select, textarea {
    outline: 0;
    border: 0;
    vertical-align: middle;
    font-family: "Outfit-Regular", 'Microsoft Yahei', 'Times New Roman', Arial;
}

button, html input[type=button], input[type=reset], input[type=submit], input[type=text] {
    outline: 0;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    -webkit-appearance: button
}

textarea {
    resize: none;
    font-size: 14px
}

textarea, .select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none
}

.select::-ms-expand {
    display: none
}

.clearfix:after, .clearfix:before, .mauto:after, .mauto:before {
    display: table;
    content: ""
}

.clearfix:after, .mauto:after, .clear {
    clear: both
}

/*mauto*/
.mauto {
    max-width: 1440px;
    margin: 0 auto
}

@media (max-width: 1600px) {
    .mauto {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .mauto {
        max-width: 1000px;
    }
}

@media (max-width: 1100px) {
    .mauto {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .mauto {
        max-width: 92%;
    }
}

/* Homepage content width 90% */
main.home-page > div .mauto {
    width: 90%;
    max-width: none;
}

/*滚动条样式*/
@media screen and (max-width: 768px) {
    /*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
    ::-webkit-scrollbar {
        width: 1px;
        height: 1px;
    }

    /*定义滚动条轨道 内阴影+圆角*/
    ::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        border-radius: 1px;
        background-color: #ddd;
    }

    /*定义滑块 内阴影+圆角*/
    ::-webkit-scrollbar-thumb {
        border-radius: 1px;
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
        background-color: #eee;
    }
}

/*页面出厂动画*/
/*.animation {visibility:hidden;opacity:0}
.fadel,.fader,.fadeup,.fadez {visibility:visible}
.fadeup {animation:slideInUp ease-out .6s forwards;-webkit-animation:slideInUp ease-out .6s forwards}
@keyframes slideInUp {from {transform:translate3d(0,50%,0)}
to {opacity:1;transform:none}
}
@-webkit-keyframes fadeInUp {from {-webkit-transform:translate3d(0,50%,0)}
to {opacity:1;-webkit-transform:none}
}
.fadel {animation:slideInLeft ease-out .6s forwards;-webkit-animation:slideInLeft ease-out .6s forwards}
@keyframes slideInLeft {from {transform:translate3d(-50%,0,0)}
to {opacity:1;transform:none}
}
@-webkit-keyframes slideInLeft {from {-webkit-transform:translate3d(-50%,0,0)}
to {opacity:1;-webkit-transform:none}
}
.fader {animation:slideInRight ease-out .6s forwards;-webkit-animation:slideInRight ease-out .6s forwards}
@keyframes slideInRight {from {transform:translate3d(50%,0,0)}
to {opacity:1;transform:none}
}
@-webkit-keyframes slideInRight {from {-webkit-transform:translate3d(50%,0,0)}
to {opacity:1;-webkit-transform:none}
}
.fadez {animation:zoomIn ease-out .6s forwards;-webkit-animation:zoomIn ease-out .6s forwards}
@keyframes zoomIn {from {transform:scale3d(.3,.3,.3)}
to {opacity:1;transform:none}
}
@-webkit-keyframes zoomIn {from {-webkit-transform:scale3d(.3,.3,.3)}
to {opacity:1;-webkit-transform:none}
}
*/
@keyframes resize {
    60%, 75%, 90%, from, to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: scale(5, 5)
    }
    100% {
        opacity: 1;
        transform: scale(1, 1)
    }
}

@-webkit-keyframes resize {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale(5, 5)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1)
    }
}

@keyframes ReturnToNormal {
    from {
        opacity: 0;
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 45deg)
    }
    to {
        opacity: 1;
        transform-origin: right bottom;
        transform: none
    }
}

@-webkit-keyframes ReturnToNormal {
    from {
        opacity: 0;
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg)
    }
    to {
        opacity: 1;
        -webkit-transform-origin: right bottom;
        -webkit-transform: none
    }
}

/*图片样式*/
.img-md img {
    transform: scale(1);
    -webkit-transform: scale(1);
    transition: all .8s;
    -webkit-transition: all .8s
}

.img-md:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1)
}

.img img, .imgs img {
    width: 100%;
}

/* PC端显示和手机端隐藏 */
.dk_pc {
    display: block !important;
}

.dk_phone {
    display: none !important;
}

@media screen and (max-width: 1300px) {
    .dk_pc {
        display: none !important;
    }

    .dk_phone {
        display: block !important;
    }
}

/* CSS 公共样式结束 */
body {
    padding-top: 105px
}

.banner, .header-m, .i-banner, footer, header, main {
    transition: all .5s;
    -webkit-transition: all .5s
}

.top-fixed .logo img {
    transition: all .5s;
    -webkit-transition: all .5s;
}

.top-fixed .sm-blue > li {
    height: 70px;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.top-fixed .sv-acbl span {
    width: 80px;
    height: 70px;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.top-fixed .sm-blue ul {
    top: 70px;
}

.top-fixed .sv-acbl p {
    top: 70px;
}

@media screen and ( max-width: 1300px) {
    .top-fixed .sv-acbl span {
        width: 70px;
        border-left: 0px solid #ddd !important;
        border-right: 0px solid #ddd !important;
    }
}

@media screen and ( max-width: 768px) {
    .top-fixed .logo img {
        width: auto;
    }

    .top-fixed .sv-acbl span {
        width: 50px;
        height: 60px;
    }

    .top-fixed .sm-blue > li {
        height: auto;
    }
}

/*header*/
#top1 {
    width: 100%;
}

#top1 .top1c {
    padding: 5px 0 5px 0;
    line-height: 25px;
    width: 100%;
    margin: 0 auto;
    color: #fff;
}

#top1 .top1c a {
}

#top1 .top1c_l {
    float: left;
    color: #666;
}

#top1 .top1c_l li {
    display: inline-block;
    margin-right: 10px;
}

#top1 .top1c_l li:hover a {
    color: #ea4234;
}

#top1 .top1c_l li p {
    background-color: #666;
    text-align: center;
    height: 24px;
    width: 24px;
    line-height: 24px;
    display: block;
    border-radius: 24px;
    margin: 0px;
    padding: 0px;
    float: left;
    margin-right: 5px;
}

#top1 .top1c_l li:hover p {
    background-color: #ea4234;
}

#top1 .top1c_r {
    float: right;
    margin-left: 5px;
}

#top1 .top1c_r .sitemap {
}

.top1c i {
    color: #fff;
    display: inline-block;
    vertical-align: top;
}

@media screen and ( max-width: 1300px) {
    #top1 .top1c {
        padding: 0 3%
        line-height: 20px;
    }

    #top1 .top1c_l {
        margin-bottom: 5px;
    }

    #top1 .top1c_l li p {
        background-color: #666;
        text-align: center;
        height: 20px;
        width: 20px;
        line-height: 20px;
        display: block;
        border-radius: 20px;
        margin: 0px;
        padding: 0px;
        float: left;
        margin-right: 5px;
    }

    #top1 .top1c_l li p i {
        font-size: 12px;
    }
}

/*导航条 12-22*/
header {
    width: 100%;
    background-color: #eeeeee;
    z-index: 10;
    position: fixed;
    left: 0;
    top: 0;
}

header .header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

header .header .logo {
    overflow: hidden;
    float: left;
}

header .header .logo img {
    max-height: 60px;
    padding-top: 3%;
}

header .header .top-fixed .logo img {
    transition: all .5s;
    -webkit-transition: all .5s;
}

header .header .top-fixed .sm-blue > li {
    height: 70px;
    transition: all .5s;
    -webkit-transition: all .5s;
}

header .header .top-fixed .sv-acbl span {
    width: 80px;
    height: 70px;
    transition: all .5s;
    -webkit-transition: all .5s;
}

header .header .top-fixed .sm-blue ul {
    top: 70px;
}

header .header .top-fixed .sv-acbl p {
    top: 70px;
}

@media screen and ( max-width: 1300px) {
    .header {
        padding: 0 3%;
    }

    header .header .logo {
        padding: 5px 0;
    }

    header .header .logo img {
        height: 50px;
        padding-top: 0;
    }

    header .header .header-top {
        padding: 0 3%;
    }

    header .header .sv-acbl span {
        width: 70px;
        border-left: 0px solid #ddd !important;
        border-right: 0px solid #ddd !important;
    }
}

@media screen and ( max-width: 768px) {
    body {
        padding-top: 95px
    }

    header {
        z-index: 101;
        width: 100%;
        background-color: #eeeeee;
        z-index: 10;
        position: fixed;
        left: 0;
        top: 0; /*box-shadow:0 5px 5px rgba(0,0,0,.1);*/
    }

    header .header {
        padding: 0;
    }

    header .header-top {
        padding: 0;
    }

    header .header .logo img {
        width: auto;
        max-height: 50px;
    }

    header .header .sm-blue > li {
        height: auto;
    }
}

header .header-top {
    width: 100%;
    background-color: #eeeeee;
    position: relative;
}

header .header-top #top1 {
    width: 100%;
}

header .header-top #top1 .top1c {
    padding: 5px 0 5px 0;
    line-height: 25px;
    width: 100%;
    margin: 0 auto;
    color: #fff;
}

header .header-top #top1 .top1c a {
}

header .header-top #top1 .top1c_l {
    float: left;
    color: #666;
}

header .header-top #top1 .top1c_l li {
    display: inline-block;
    margin-right: 10px;
}

header .header-top #top1 .top1c_l li:hover a {
    color: #ea4234;
}

header .header-top #top1 .top1c_l li p {
    background-color: #666;
    text-align: center;
    height: 24px;
    width: 24px;
    line-height: 24px;
    display: block;
    border-radius: 24px;
    margin: 0px;
    padding: 0px;
    float: left;
    margin-right: 5px;
}

header .header-top #top1 .top1c_l li:hover p {
    background-color: #ea4234;
}

header .header-top #top1 .top1c_r {
    float: right;
    margin-left: 5px;
}

header .header-top #top1 .top1c_r .sitemap {
}

header .header-top #top1 .top1c i {
    color: #fff;
    display: inline-block;
    vertical-align: top;
}

@media screen and ( max-width: 1300px) {
    header .header-top #top1 .top1c_l li p {
        background-color: #666;
        text-align: center;
        height: 20px;
        width: 20px;
        line-height: 20px;
        display: block;
        border-radius: 20px;
        margin: 0px;
        padding: 0px;
        float: left;
        margin-right: 5px;
    }

    header .header-top #top1 .top1c_l li p i {
        font-size: 12px;
    }
}

@media screen and ( max-width: 768px) {
    header .header-top #top1 .top1c_l {
        margin-bottom: 5px;
        display: none;
    }
}

/*语言选择开始*/
.language {
    display: inline-block;
    float: right;
}

.language .cur {
    cursor: pointer;
    position: relative;
    padding: 2px 5px 2px 6px;
    background-color: #fff;
}

.language .cur e {
    color: #555;
    font-size: 12px;
    line-height: 20px;
    background-image: url(../images/flag.png);
    background-repeat: no-repeat;
    padding-left: 30px;
    height: 20px;
    display: block;
}

.language .cur e i {
    font-weight: bold;
    font-size: 12px;
    margin-left: 3px;
    color: #999 !important;
}

.language .cur:hover e {
    color: #ff3b23;
}

.language ul.language-list {
    text-align: left;
    max-height: 400px;
    overflow: auto;
    position: absolute;
    z-index: 2000;
    top: 25px;
    right: 0;
    list-style-type: none;
    background-color: #fff;
    font-size: 12px;
    height: 0;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    opacity: 0;
}

.language .cur:hover .language-list {
    opacity: 1;
    height: auto;
    padding: 2px 5px;
    -webkit-box-shadow: 0 0 5px #ccc;
    -moz-box-shadow: 0 0 5px #ccc;
    box-shadow: 0 0 5px #ccc;
}

.language ul.language-list li {
    padding: 4px 4px 2px 4px;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
    margin: 3px 0 2px 0;
}

.language ul.language-list li a {
    color: #1b1b1b;
    font-size: 12px;
    line-height: 20px;
    background-image: url(../images/flag.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    padding: 0 0 0 30px;
    float: left;
    width: 100%;
    white-space: nowrap;
}

.language ul.language-list li:hover {
    background-color: #ea4234;
}

.language ul.language-list li:hover a {
    color: #fff;
}

.language e i {
    color: #666;
}

.language e.cn, .language ul.language-list li a.cn {
    background-position: 0 0;
}

.language e.en, .language ul.language-list li a.en {
    background-position: 0 -22px;
}

.language e.es, .language ul.language-list li a.es {
    background-position: 0 -44px;
}

.language e.nl, .language ul.language-list li a.nl {
    background-position: 0 -66px;
}

.language e.ar, .language ul.language-list li a.ar {
    background-position: 0 -88px;
}

.language e.ru, .language ul.language-list li a.ru {
    background-position: 0 -110px;
}

.language e.de, .language ul.language-list li a.de {
    background-position: 0 -132px;
}

.language e.ja, .language ul.language-list li a.ja {
    background-position: 0 -154px;
}

.language e.pt, .language ul.language-list li a.pt {
    background-position: 0 -176px;
}

.language e.fr, .language ul.language-list li a.fr {
    background-position: 0 -198px;
}

.language e.it, .language ul.language-list li a.it {
    background-position: 0 -220px;
}

.language e.ko, .language ul.language-list li a.ko {
    background-position: 0 -242px;
}

.language e.th, .language ul.language-list li a.th {
    background-position: 0 -264px;
}

.language e.el, .language ul.language-list li a.el {
    background-position: 0 -286px;
}

.language e.pl, .language ul.language-list li a.pl {
    background-position: 0 -308px;
}

.language e.bul, .language ul.language-list li a.bul {
    background-position: 0 -330px;
}

.language e.est, .language ul.language-list li a.est {
    background-position: 0 -352px;
}

.language e.dan, .language ul.language-list li a.dan {
    background-position: 0 -374px;
}

.language e.fin, .language ul.language-list li a.fin {
    background-position: 0 -396px;
}

.language e.cs, .language ul.language-list li a.cs {
    background-position: 0 -418px;
}

.language e.rom, .language ul.language-list li a.rom {
    background-position: 0 -440px;
}

.language e.slo, .language ul.language-list li a.slo {
    background-position: 0 -462px;
}

.language e.swe, .language ul.language-list li a.swe {
    background-position: 0 -484px;
}

.language e.hu, .language ul.language-list li a.hu {
    background-position: 0 -506px;
}

.language e.hi, .language ul.language-list li a.hi {
    background-position: 0 -528px;
}

.language e.tr, .language ul.language-list li a.tr {
    background-position: 0 -550px;
}

.language e.vi, .language ul.language-list li a.vi {
    background-position: 0 -572px;
}

.language e.fa, .language ul.language-list li a.fa {
    background-position: 0 -594px;
}

.language e.he, .language ul.language-list li a.he {
    background-position: 0 -616px;
}

.language e.sk, .language ul.language-list li a.sk {
    background-position: 0 -638px;
}

.language e.id, .language ul.language-list li a.id {
    background-position: 0 -660px;
}

.language e.lt, .language ul.language-list li a.lt {
    background-position: 0 -682px;
}

.language e.lv, .language ul.language-list li a.lv {
    background-position: 0 -704px;
}

.language e.ms, .language ul.language-list li a.ms {
    background-position: 0 -726px;
}

.language e.no, .language ul.language-list li a.no {
    background-position: 0 -748px;
}

.language e.uk, .language ul.language-list li a.uk {
    background-position: 0 -770px;
}

.language e.ur, .language ul.language-list li a.ur {
    background-position: 0 -792px;
}

.language e.hr, .language ul.language-list li a.hr {
    background-position: 0 -814px;
}

.language e.tw, .language ul.language-list li a.tw {
    background-position: 0 0;
}

.language e.bn, .language ul.language-list li a.bn {
    background-position: 0 -836px;
}

@media (max-width: 768px) {
    .language {
        float: left;
    }
}

/*搜索按钮*/
header .header .sv-acbl {
    float: right;
    position: relative;
}

header .header .sv-acbl span {
    font-size: 40px;
    display: block;
    width: 95px;
    height: 70px;
    background: url(../images/fd.png) no-repeat center center;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    line-height: 95px;
}

header .header .sv-acbl p {
    display: none;
    position: absolute;
    z-index: 5;
    right: 0;
    top: 70px;
    background: #fff;
    height: 40px;
    width: 250px;
}

header .header .sv-acbl p .c1 {
    float: left;
    width: 200px;
    height: 40px;
    border: none;
    padding: 0 10px;
}

header .header .sv-acbl p .c2 {
    float: left;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: url(../images/fd.png) no-repeat center center;
}

header .header .sv-acbl p button {
    width: 50px;
    height: 40px;
    background: #eee;
}

header .header .sv-acbl p button i {
    font-size: 30px;
    color: #093388;
}

header .header .sv-acbl div {
    width: 100%;
    display: none;
    position: absolute;
    z-index: 5;
    right: 0;
    top: 95px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

header .header .sv-acbl div a {
    display: block;
    line-height: 40px;
    text-align: center;
}

@media (min-width: 1200px) {
    header .header .sv-acbl:hover p, .sv-acbl:hover div {
    }
}

@media (max-width: 1300px) {
    .sv-acbl {
        z-index: 10;
    }

    .sv-acbl p, .sv-acbl div {
        top: 60px;
    }

    .top-fixed .sv-acbl p {
        top: 60px;
    }

    .top-fixed .T-nav {
        top: 50px;
    }
}

@media (max-width: 768px) {
    header .header .sv-acbl span {
        width: 40px;
        height: 60px;
        line-height: 60px;
        border: none;
    }

    header .header .sv-acbl span {
        width: 50px;
        height: 60px;
    }

    header .header .sv-acbl p {
        top: 60px;
    }
}

/*导航条三级菜单*/
.menu_c .nav li {
    position: relative;
    white-space: nowrap;
}

.menu_c .nav li a {
    height: 40px;
    line-height: 40px
}

.menu_c .nav .sub-1 > a.cur {
    background: #edeef0
}

.menu_c .nav li a:hover, .menu_c .nav .sub-1 > a.cur:hover {
    background: #ea4234;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
    color: #fff;
}

.menu_c .nav ul {
    background: #fff
}

.menu_c .nav ul a {
    display: block;
    padding: 0 15px
}

.menu_c .nav .subs .sub-2 > a {
}

.menu_c .nav .subs .sub-2 > a::after {
    position: absolute;
    font-family: "icon";
    font-size: 24px;
    left: 10px
}

.menu_c .nav .sub-1 {
    float: left;
    height: 95px
}

.menu_c .nav .sub-1 > a {
    height: 95px;
    line-height: 95px;
    color: #6f747c;
    background: #fff;
    text-decoration: none;
    transition: color, background .5s;
    display: block;
    padding: 0 25px;
    font-size: 16px
}

.menu_c .nav .sub-1 > ul {
    position: absolute;
    top: 95px
}

.menu_c .nav .sub-1:hover > ul {
    display: block
}

.menu_c .nav .sub-2 > a {
    padding: 0 15px
}

.menu_c .nav .sub-2:hover > ul {
    display: block;
    position: absolute;
    top: 0;
    left: 100%
}

.menu_c .nav .sub-3 {
    float: left;
    width: 100%
}

.menu_c .nav .sub-3:hover > ul {
    display: block;
    position: absolute;
    top: 0;
    left: 100%
}

/*导航栏*/
.sm {
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.sm, .sm ul, .sm li {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: normal;
    direction: ltr;
    text-align: left;
}

.sm-rtl, .sm-rtl ul, .sm-rtl li {
    direction: rtl;
    text-align: right;
}

.sm > li > h1, .sm > li > h2, .sm > li > h3, .sm > li > h4, .sm > li > h5, .sm > li > h6 {
    margin: 0;
    padding: 0;
}

.sm ul {
    display: none;
}

.sm li, .sm a {
    position: relative;
}

.sm a {
    display: block;
}

.sm a.disabled {
    cursor: default;
}

.sm::after {
    content: "";
    display: block;
    height: 0;
    font: 0px/0 serif;
    clear: both;
    overflow: hidden;
}

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

.main-nav {
    padding: 0 10px;
}

.main-nav:after {
    clear: both;
    content: "\00a0";
    display: block;
    height: 0;
    font: 0px/0 serif;
    overflow: hidden;
}

.nav-brand {
    float: left;
    margin: 0;
}

.nav-brand a {
    display: block;
    padding: 10px 10px 10px 20px;
    color: #fff;
    font-size: 22px;
    font-weight: normal;
    line-height: 29px;
    text-decoration: none;
}

#main-menu {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

#main-menu:before {
    content: '';
    display: block;
    height: 1px;
    overflow: hidden;
    background: #fff;
}

.main-menu-btn {
    float: right;
    margin: 10px;
    position: relative;
    display: inline-block;
    width: 29px;
    height: 29px;
    text-indent: 29px;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media (max-width: 768px) {
    .main-menu-btn {
        height: 40px
    }
}

.main-menu-btn-icon, .main-menu-btn-icon:before, .main-menu-btn-icon:after {
    position: absolute;
    top: 50%;
    left: 2px;
    height: 2px;
    width: 24px;
    background: #666;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.main-menu-btn-icon:before {
    content: '';
    top: -7px;
    left: 0;
}

.main-menu-btn-icon:after {
    content: '';
    top: 7px;
    left: 0;
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon {
    height: 0;
    background: transparent;
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before {
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#main-menu-state {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

#main-menu-state:not(:checked) ~ #main-menu {
    display: none;
}

#main-menu-state:checked ~ #main-menu {
    display: block;
}

@media (min-width: 768px) {
    .main-menu-btn {
        position: absolute;
        top: -99999px;
    }

    #main-menu-state:not(:checked) ~ #main-menu {
        overflow: inherit;
        display: table;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
}

.sm-blue {
    max-height: 400px;
    background: transparent;
    overflow: auto;
}

.sm-blue li a {
    padding: 10px;
}

.sm-blue a, .sm-blue a:hover, .sm-blue a:focus, .sm-blue a:active {
    color: #666;
    font-size: 16px;
    line-height: 23px;
    text-decoration: none;
}

.sm-blue a.disabled {
    color: #a1d1e8;
}

.sm-blue a .sub-arrow {
    position: absolute;
    top: 50%;
    margin-top: -17px;
    left: auto;
    right: 4px;
    width: 34px;
    height: 34px;
    overflow: hidden;
    font: bold 16px/34px monospace !important;
    text-align: center;
    text-shadow: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.sm-blue a .sub-arrow::before {
    content: '+';
}

.sm-blue a.highlighted .sub-arrow::before {
    content: '-';
}

.sm-blue > li:last-child > a.highlighted, .sm-blue > li:last-child > *:not(ul) a.highlighted, .sm-blue > li:last-child > ul > li:last-child > a.highlighted, .sm-blue > li:last-child > ul > li:last-child > *:not(ul) a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted {
    border-radius: 0;
}

.sm-blue ul {
    background: #fff;
}

.sm-blue ul ul {
    background: rgba(102, 102, 102, 0.1);
}

.sm-blue ul a, .sm-blue ul a:hover, .sm-blue ul a:focus, .sm-blue ul a:active {
    background: transparent;
    color: #666;
    font-size: 16px;
    text-shadow: none;
    border-left: 8px solid transparent;
}

.sm-blue ul a.current {
    background: #006892;
    background-image: linear-gradient(to bottom, #006188, #006f9c);
    color: #fff;
}

.sm-blue ul a.disabled {
    color: #b3b3b3;
}

.sm-blue ul ul a, .sm-blue ul ul a:hover, .sm-blue ul ul a:focus, .sm-blue ul ul a:active {
    border-left: 16px solid transparent;
}

.sm-blue ul ul ul a, .sm-blue ul ul ul a:hover, .sm-blue ul ul ul a:focus, .sm-blue ul ul ul a:active {
    border-left: 24px solid transparent;
}

.sm-blue ul ul ul ul a, .sm-blue ul ul ul ul a:hover, .sm-blue ul ul ul ul a:focus, .sm-blue ul ul ul ul a:active {
    border-left: 32px solid transparent;
}

.sm-blue ul ul ul ul ul a, .sm-blue ul ul ul ul ul a:hover, .sm-blue ul ul ul ul ul a:focus, .sm-blue ul ul ul ul ul a:active {
    border-left: 40px solid transparent;
}

.sm-blue ul li {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.sm-blue ul li:first-child {
    border-top: 0;
}

@media (min-width: 768px) {
    .main-nav {
        float: right;
        width: 75%; /*margin:13px 0;*/
        background-color: #fff;
        padding: 0;
    }

    .sm-blue ul {
        top: 70px;
        position: absolute;
        width: 12em;
    }

    .sm-blue ul li > ul {
        top: 0;
    }

    .sm-blue > li {
        display: table-cell;
        height: 70px;
        vertical-align: middle;
        padding: 0 10px;
        text-align: center;
        transition: all .5s;
        -webkit-transition: all .5s;
    }

    .sm-blue > li > a {
        padding: 0;
        font-weight: bold;
        text-transform: uppercase;
    }

    .sm-blue.sm-rtl li {
        float: right;
    }

    .sm-blue ul li, .sm-blue.sm-rtl ul li, .sm-blue.sm-vertical li {
        float: none;
    }

    .sm-blue ul a, .sm-blue.sm-vertical a {
        white-space: normal;
    }

    .sm-blue .sm-nowrap > li > a, .sm-blue .sm-nowrap > li > :not(ul) a {
        white-space: nowrap;
        font-size: 14px;
    }

    .sm-blue a {
        color: #333;
    }

    .sm-blue a:hover, .sm-blue a:focus, .sm-blue a:active, .sm-blue a.highlighted {
        color: #ea4234;
    }

    .sm-blue > li:hover, .sm-blue > li:focus, .sm-blue > li:active, .sm-blue > li.highlighted { /*border-bottom:2px solid #ea4234;*/
    }

    .sm-blue > li.current > a {
        color: #ea4234;
    }

    .sm-blue a.disabled {
        color: #000;
    }

    .sm-blue a:hover .sub-arrow, .sm-blue .highlighted .sub-arrow, .sm-blue > .current > a .sub-arrow {
        border-color: #ea4234 transparent transparent transparent;
    }

    .sm-blue ul a:hover .sub-arrow, .sm-blue ul .highlighted .sub-arrow {
        border-color: transparent transparent transparent #ea4234;
    }

    .sm-blue a .sub-arrow {
        position: static;
        width: 0;
        height: 0;
        margin-top: 0;
        border-width: 5px;
        border-style: solid dashed dashed dashed;
        border-color: #666 transparent transparent transparent;
        background: transparent;
        border-radius: 0;
        display: inline-block;
        margin-left: 5px;
    }

    .sm-blue a .sub-arrow::before {
        display: none;
    }

    .sm-blue > li:first-child {
        border-left: 0;
    }

    .sm-blue ul {
        padding: 7px 0;
        background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
        border-radius: 0 0 4px 4px !important;
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
    }

    .sm-blue ul ul {
        border-radius: 4px !important;
        background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
    }

    .sm-blue ul a, .sm-blue ul a:hover, .sm-blue ul a:focus, .sm-blue ul a:active, .sm-blue ul a.highlighted {
        border: 0 !important;
        padding: 9px 23px;
        background: transparent;
        color: #666;
        border-radius: 0 !important;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .sm-blue ul a:hover, .sm-blue ul a:focus, .sm-blue ul a:active, .sm-blue ul a.highlighted {
        color: #ea4234;
    }

    .sm-blue ul a.current {
        color: #ea4234;
    }

    .sm-blue ul a.disabled {
        background: #fff;
        color: #b3b3b3;
    }

    .sm-blue ul a .sub-arrow {
        top: 50%;
        margin-top: -5px;
        bottom: auto;
        left: auto;
        margin-left: 10;
        right: 10px;
        border-style: dashed dashed dashed solid;
        border-color: transparent transparent transparent #666;
    }

    .sm-blue ul li {
        border: 0;
    }

    .sm-blue .scroll-up, .sm-blue .scroll-down {
        position: absolute;
        display: none;
        visibility: hidden;
        overflow: hidden;
        background: #fff;
        height: 20px;
    }

    .sm-blue .scroll-up-arrow, .sm-blue .scroll-down-arrow {
        position: absolute;
        top: -2px;
        left: 50%;
        margin-left: -8px;
        width: 0;
        height: 0;
        overflow: hidden;
        border-width: 8px;
        border-style: dashed dashed solid dashed;
        border-color: transparent transparent #2b82ac transparent;
    }

    .sm-blue .scroll-down-arrow {
        top: 6px;
        border-style: solid dashed dashed dashed;
        border-color: #2b82ac transparent transparent transparent;
    }

    .sm-blue.sm-rtl.sm-vertical a .sub-arrow {
        right: auto;
        left: 10px;
        border-style: dashed solid dashed dashed;
        border-color: transparent #a1d1e8 transparent transparent;
    }

    .sm-blue.sm-rtl > li:first-child > a, .sm-blue.sm-rtl > li:first-child > :not(ul) a {
        border-radius: 0 8px 8px 0;
    }

    .sm-blue.sm-rtl > li:last-child > a, .sm-blue.sm-rtl > li:last-child > :not(ul) a {
        border-radius: 8px 0 0 8px !important;
    }

    .sm-blue.sm-rtl > li:first-child {
        border-left: 1px solid #2b82ac;
    }

    .sm-blue.sm-rtl > li:last-child {
        border-left: 0;
    }

    .sm-blue.sm-rtl ul a .sub-arrow {
        right: auto;
        left: 10px;
        border-style: dashed solid dashed dashed;
        border-color: transparent #a1d1e8 transparent transparent;
    }

    .sm-blue.sm-vertical {
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }

    .sm-blue.sm-vertical a {
        padding: 9px 23px;
    }

    .sm-blue.sm-vertical a .sub-arrow {
        top: 50%;
        margin-top: -5px;
        bottom: auto;
        left: auto;
        margin-left: 0;
        right: 10px;
        border-style: dashed dashed dashed solid;
        border-color: transparent transparent transparent #a1d1e8;
    }

    .sm-blue.sm-vertical > li:first-child > a, .sm-blue.sm-vertical > li:first-child > :not(ul) a {
        border-radius: 8px 8px 0 0;
    }

    .sm-blue.sm-vertical > li:last-child > a, .sm-blue.sm-vertical > li:last-child > :not(ul) a {
        border-radius: 0 0 8px 8px !important;
    }

    .sm-blue.sm-vertical > li {
        border-left: 0 !important;
    }

    .sm-blue.sm-vertical ul {
        border-radius: 4px !important;
    }

    .sm-blue.sm-vertical ul a {
        padding: 9px 23px;
    }
}

@media (max-width: 1200px) {
    .main-nav {
        width: 100%;
    }
}

@media (max-width: 768px) {
    #main-menu {
        width: 100%;
    }
}

/*导航栏置顶固定*/
@media (max-width: 1300px) {
    .menu_c {
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
    }

    .menu_c .nav .sub-1 {
        height: auto; /* float:left;height:50px;*/
    }

    .menu_c .nav .sub-1 > a {
        height: 50px;
        line-height: 50px;
    }

    .menu_c .nav .sub-1 > ul {
        position: initial; /* top:50px;*/
    }

    .menu_c .nav .sub-3 {
        float: none;
    }

    .menu_c .nav .sub-2:hover > ul {
        position: initial;
        display: block;
    }

    /*手机端导航条菜单右侧加号*/
    .sm-blue {
    }

    .sm-blue li a {
        padding: 10px;
    }

    .sm-blue a, .sm-blue a:hover, .sm-blue a:focus, .sm-blue a:active {
        color: #333;
        font-size: 16px;
        line-height: 23px;
        text-decoration: none;
    }

    .sm-blue a.disabled {
        color: #a1d1e8;
    }

    .sm-blue a .sub-arrow {
        position: absolute;
        top: 50%;
        margin-top: -4px;
        left: auto;
        right: -4px;
        width: 14px;
        height: 14px;
        overflow: hidden;
        font: bold 16px/14px monospace !important;
        text-align: center;
        text-shadow: none;
        border-width: 7px;
    }

    .sm-blue a .sub-arrow::before {
        content: '+';
    }

    .sm-blue a.highlighted .sub-arrow::before {
        content: '-';
    }

    .sm-blue > li:last-child > a.highlighted, .sm-blue > li:last-child > *:not(ul) a.highlighted, .sm-blue > li:last-child > ul > li:last-child > a.highlighted, .sm-blue > li:last-child > ul > li:last-child > *:not(ul) a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted {
        border-radius: 0;
    }

    .sm-blue ul {
        background: #fff;
    }

    .sm-blue ul ul {
        background: rgba(102, 102, 102, 0.1);
    }

    .sm-blue ul a, .sm-blue ul a:hover, .sm-blue ul a:focus, .sm-blue ul a:active {
        background: transparent;
        color: #666;
        font-size: 16px;
        text-shadow: none;
        border-left: 8px solid transparent;
    }

    .sm-blue ul a.current {
        background: #006892;
        background-image: linear-gradient(to bottom, #006188, #006f9c);
        color: #fff;
    }

    .sm-blue ul a.disabled {
        color: #b3b3b3;
    }

    .sm-blue ul ul a, .sm-blue ul ul a:hover, .sm-blue ul ul a:focus, .sm-blue ul ul a:active {
        border-left: 16px solid transparent;
    }

    .sm-blue ul ul ul a, .sm-blue ul ul ul a:hover, .sm-blue ul ul ul a:focus, .sm-blue ul ul ul a:active {
        border-left: 24px solid transparent;
    }

    .sm-blue ul ul ul ul a, .sm-blue ul ul ul ul a:hover, .sm-blue ul ul ul ul a:focus, .sm-blue ul ul ul ul a:active {
        border-left: 32px solid transparent;
    }

    .sm-blue ul ul ul ul ul a, .sm-blue ul ul ul ul ul a:hover, .sm-blue ul ul ul ul ul a:focus, .sm-blue ul ul ul ul ul a:active {
        border-left: 40px solid transparent;
    }

    .sm-blue ul li {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .sm-blue ul li:first-child {
        border-top: 0;
    }
}

@media (max-width: 768px) {
    .sm-blue a .sub-arrow {
        right: 0px;
    }

    .alcet td {
        float: left;
        width: 100%;
        text-align: left;
    }

    .sm-blue > li {
        height: auto;
    }
}

/*banner*/
.banner-new {
    overflow: hidden;
    background-color: #fff;
}

.banner-new p {
    font-size: 20px;
    color: #fff;
    max-width: 427px
}

.banner-new b {
    display: block;
    font-family: "Outfit-Regular", 'Microsoft Yahei', 'Times New Roman', Arial;
}

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

.banner-new .mml-btn {
    left: 50%;
    bottom: 24px;
    margin-left: -219px;
    background-color: rgba(255, 255, 255, 0.6);
}

.banner-new .bd {
    position: relative;
    background-color: #fff;
}

.banner-new a {
    position: absolute;
    z-index: 10;
    font-family: "Outfit-Regular", 'Microsoft Yahei', 'Times New Roman', Arial;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    color: #fff;
    display: block;
    max-width: 200px;
    width: 100%;
    text-align: center;
    background-color: #2c2c2c;
    padding: 10px 10px;
    margin-top: 30px;
}

.banner-new a:hover {
    color: #333;
    background-color: #fff;
}

.banner-new .img-wrap {
    width: 100%;
    min-height: 0;
    height: auto;
    line-height: 0;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    background-color: #fff
}

.banner-new .img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

.banner-new .swiper-container,
.banner-new .swiper-slide,
.banner-new .item {
    height: auto;
}

.banner-new .text-wrap {
    position: relative;
    z-index: 10;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff
}

.banner-new .hline {
    position: absolute;
    content: '';
    right: 55px;
    top: 0;
    width: 2px;
    height: 630px;
    background-color: #fff
}

.banner-new h1 {
    position: relative;
    margin-bottom: 50px;
    margin-right: 40px;
    font-family: "Outfit-Regular", 'Microsoft Yahei', 'Times New Roman', Arial;
    font-weight: 900;
    font-style: normal;
    font-size: 40px;
    color: #fff;
}

.banner-new h1::after {
    position: absolute;
    content: '';
    bottom: -33px;
    left: 0;
    width: 478px;
    height: 6px;
    background-color: #fff
}

.banner-new .text {
    max-width: 500px;
    -webkit-transform: translate(-150px, -150px);
    -ms-transform: translate(-150px, -150px);
    transform: translate(-150px, -150px)
}

.banner-new ul {
    position: absolute;
    z-index: 10;
    left: 0;
    bottom: -22px;
    -webkit-transform: translate(-8px, 100%);
    -ms-transform: translate(-8px, 100%);
    transform: translate(-8px, 100%);
    color: #fff
}

.banner-new li span {
    font-size: 20px
}

@media (max-width: 1850px) {
    .banner-new .hline {
        display: none
    }
}

@media (max-width: 1600px) {
    .banner-new a, .banner-new .mml-btn {
        position: static
    }

    .banner-new .mml-btn {
        margin-left: auto
    }

    .banner-new a {
        margin: 20px 0 0 10px
    }

    .banner-new .text {
        padding: 10px;
        max-width: 100%;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0)
    }

    .banner-new .bd {
        background-color: #fff
    }

    .banner-new .img-wrap {
        -webkit-transform: translateY(15px);
        -ms-transform: translateY(15px);
        transform: translateY(15px);
        min-height: 0;
        height: auto;
    }
}

@media (max-width: 1366px) {
    .banner-new p {
        max-width: 100%
    }

    .banner-new .item {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 100%
    }

    .banner-new b {
        display: inline-block
    }

    .banner-new h1 {
        font-size: 30px;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .banner-new h1::after {
        display: none
    }

    .banner-new .text {
        padding: 0
    }

    .banner-new .bd {
        padding: 10px
    }

    .banner-new a {
        margin: 0 auto;
        margin-top: 20px;
        font-size: 20px;
        padding: 10px;
    }

    .banner-new .swiper-container {
        margin-bottom: 10px
    }

    .banner-new .mml-btn {
        margin: 0 auto
    }

    .banner-new .img-wrap {
        width: 100%;
        min-height: 0;
        height: auto;
    }

    .banner-new .text-wrap {
        margin-bottom: 20px;
        padding: 0;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .banner-new .text {
        max-width: 100%;
        text-align: center
    }
}

.mml-btn {
    position: absolute;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 9;
    min-height: 71px;
    max-width: 438px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    background-color: #fff
}

.prev, .next {
    outline: none
}

.prev span, .next span {
    display: block;
    color: #434343;
    font-size: 60px;
    cursor: pointer;
}

.swiper-pagination-current {
    color: #ea4234;
}

.swiper-pagination-fraction {
    font-family: "Outfit-Regular", 'Microsoft Yahei', 'Times New Roman', Arial;
    font-weight: 900;
    font-style: normal;
    width: 63px;
    margin: 0 10px;
}

.swiper-pagination {
    text-align: center;
}

.swiper-pagination {
    position: static
}

@media (max-width: 768px) {
    .prev span, .next span {
        font-size: 40px
    }

    .mml-btn {
        min-height: unset
    }

    .banner-new h1 {
        margin-right: 0;
    }

    .banner-new p {
        font-size: 16px;
    }

    .banner-new .text-wrap {
        margin-bottom: 0;
    }

    .banner-new a {
        font-size: 16px;
    }

    .banner-new a:hover {
        color: #333;
        background-color: #fff;
    }

    .banner-new .mml-btn {
        display: none;
    }

    .banner-new {
        background-color: transparent;
    }

    .banner-new .bd {
        padding: 0;
        background-color: transparent;
    }

    .banner-new .img-wrap {
        background-color: transparent;
        -webkit-transform: translateY(15px);
        -ms-transform: translateY(15px);
        transform: translateY(15px);
    }

    .banner-new .swiper-container-autoheight .swiper-wrapper {
        -webkit-transition-property: -webkit-transform !important;
        transition-property: transform !important;
    }
}

.iconslider:before {
    content: "\e818"
}

.iconslider1:before {
    content: "\eb07"
}

.iconxiala:before {
    content: "\e62c"
}

.prev:hover span, .next:hover span {
    color: #ea4234;
}

/*常规 banner*/
/*.i-banner .sm-dn .item {height:100vh}
.i-banner .slick-arrow {width:.6rem;height:.6rem}
.i-banner .slick-prev {left:6%;background:url(../images/banner_l.png) no-repeat center/cover}
.i-banner .slick-next {right:6%;background:url(../images/banner_r.png) no-repeat center/cover}
.i-banner .slick-dots {display:block;!important}
.i-banner a {display:block;min-height:85px}
.i-banner .dk_pc {display:block!important}
.i-banner .dk_phone {display:none!important}*/
/*轮播切换*/
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-track, .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:before, .slick-track:after {
    content: "";
    display: table
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none
}

[dir="rtl"] .slick-slide {
    float: right
}

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

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto
}

.slick-arrow.slick-hidden {
    display: none
}

.slick-arrow {
    z-index: 1;
    position: absolute;
    top: 50%;
    font-size: 0;
    cursor: pointer;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%)
}

.slick-prev {
    left: 0
}

.slick-next {
    right: 0
}

.slick-dots {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
    font-size: 0;
    text-align: center
}

.slick-dots div {
    display: inline-block;
    width: 30px;
    height: 5px;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer
}

.slick-dots div.slick-active, .slick-dots div:hover, .slick-dots div:focus {
    background: #333
}

.slick-dots div button {
    display: none
}

.slick-arrow {
    width: .6rem;
    height: .6rem
}

.slick-prev {
    left: -0%;
    background: url(../images/banner_l.png) no-repeat center/cover
}

.slick-next {
    right: -0%;
    background: url(../images/banner_r.png) no-repeat center/cover
}

.slick-dots {
    display: block !important;
}

/*按钮*/
.i-more a {
    position: relative;
    border: 1px solid #ddd;
    padding: 0 .3rem;
    height: 50px;
    line-height: 50px;
    color: #666
}

.i-more a::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ea4234;
    transition: all .4s;
    -webkit-transition: all .4s;
    border-radius: 10px;
}

.i-more a:hover {
    color: #fff;
    border: 0;
}

.i-more a:hover::after {
    width: 100%;
    border-color: #ea4234;
}

.i-more a i {
    z-index: 1;
    position: relative;
}

@media screen and (max-width: 768px) {
    .i-more {
        text-align: center;
    }

    .i-more a {
        position: relative;
        border: 1px solid #ddd;
        padding: 0 .3rem;
        height: 40px;
        line-height: 40px;
        color: #666
    }
}

/*首页-标题*/
.home_title h2 {
    color: #333333;
    padding-bottom: 5px;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

.home_title h2::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 50px;
    left: 50%;
    height: 2px;
    background: #ddd;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.home_title h2 em {
    color: #ea4234;
    font-family: "Outfit-Regular", 'Microsoft Yahei', 'Times New Roman', Arial;
    font-size: 38px;
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    .home_title h2 em {
        font-size: 30px;
    }
}

/*首页 企业数据四块*/
.p08-1-s1 {
    padding: 15px 0 30px;
    text-align: center
}

.p08-1-s1 h5 {
    color: #5f5f5f
}

.p08-1-s1 span {
    font-family: "Outfit-Regular", 'Microsoft Yahei', 'Times New Roman', Arial;
    font-weight: 600;
    font-style: normal;
    font-size: 36px;
    color: #ea4234
}

.p08-1-s1 ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.p08-1-s1 li {
    margin: 0 auto
}

@media (max-width: 1200px) {
    .p08-1-s1 ul {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .p08-1-s1 li {
        width: 50%
    }

    .p08-1-s1 span {
        font-size: 30px
    }
}

@media (max-width: 960px) {
    .p08-1-s3 ul {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .p08-1-s3 li {
        width: calc(33.33% - 8px)
    }
}

@media (max-width: 768px) {
    .p08-1-s1 {
        padding: 15px 0
    }
}

@media (max-width: 540px) {
    .p08-1-s1 li {
        width: 50%
    }
}

/*首页-产品分类*/
.home_category {
    padding-top: 4%;
    padding-bottom: 4%;
}

.index-ategories {
    padding: 70px 0;
    background-color: #f8f8f8;
}

.index_ategories_center {
    width: 100%;
    margin: 0 auto;
    max-width: 1440px;
}

.index-ategories-t {
    margin-bottom: 30px;
    text-align: center;
}

.index-ategories-t span {
    font-size: 34px;
    color: #333;
    line-height: 50px;
    position: relative;
    text-transform: uppercase;
}

.index-ategories-t span::after {
    background-color: #4284f4;
    bottom: -5px;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -35px;
    position: absolute;
    width: 70px;
}

.index_ategories_box {
    display: inline-block;
    margin: 0 -15px;
}

.index_ategories_box ul {
    font-size: 0;
}

.index_ategories_box ul li {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    position: relative;
    float: left;
}

.index_ategories_box ul li .item {
    position: relative;
    margin: 0 15px;
    background-color: #fff;
    overflow: hidden;
}

.index_ategories_box ul li .item a {
    overflow: hidden;
    color: #000;
}

.index_ategories_box-frame {
    overflow: hidden;
    position: relative;
    display: inline-flex;
}

.index_ategories_box ul li:nth-child(2) .index_ategories_box-frame, .index_ategories_box ul li:nth-child(3) .index_ategories_box-frame {
    width: 50%;
}

.index_ategories_box ul li:nth-child(3) .index_ategories_box-frame {
    width: 50%;
    float: right;
}

.index_ategories_box ul li:nth-child(2) .index-ategories_box-frame, .index_ategories_box ul li:nth-child(3) .index-ategories_box-frame {
    width: 50%;
}

.index_ategories_box ul li:nth-child(3) .index-ategories_box-frame {
    width: 50%;
    float: right;
}

.index_ategories_box ul li .item img {
    width: 100%;
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
}

.index_ategories_box ul li:hover .item img {
    transform: scale(1.1);
}

.index_ategories_box ul li .item .th {
    font-size: 18px;
    line-height: 24px;
    font-weight: normal;
    margin: 0 20px 12px 20px;
}

.index_ategories_box ul li:hover .item .th a {
    color: #ea4234;
}

.index_ategories_box ul li .item p {
    margin: 0 20px 12px 20px;
    color: #777;
    font-size: 14px;
    line-height: 20px;
    max-height: 40px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.index_ategories_box ul li:nth-child(1) .index-ategories-text {
    height: 50%;
}

.index_ategories_box ul li:nth-child(3) .index-ategories-text {
    right: auto;
    left: 0;
}

.index_ategories_box ul li .index-ategories-text {
    width: 50%;
    background-color: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50%;
    height: 100%;
    opacity: 0.7;
}

.index-ategories-text .index-ategories-text-m {
    margin: 0 auto;
    margin-top: 20% \0;
    text-align: center;
}

.index-ategories-text span {
    color: #999;
    display: block;
    margin: 0 20px 12px 20px;
}

.index-ategories-text a.btn {
    font-size: 14px;
    color: #333;
    line-height: 30px;
    padding-right: 25px;
    display: inline-block;
    border-radius: 25px;
    text-transform: uppercase;
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
    position: relative;
}

.index_ategories_box ul li:hover a.btn {
    color: #ea4234;
}

.index-ategories-text a.btn::after {
    content: "\e600";
    position: absolute;
    top: 5px;
    right: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: #4284f4;
    border-radius: 50%;
    font-family: "iconfont" !important;
    font-style: normal;
    font-weight: bold;
    speak: none;
    -webkit-font-smoothing: antialiased;
    text-transform: none;
    font-size: 12px;
    color: #fff;
}

.index_ategories_box ul li:hover .index-ategories-text a.btn::after {
    content: "\e63d";
    position: absolute;
    top: 5px;
    right: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: #ea4234;
    border-radius: 50%;
    font-family: "iconfont" !important;
    font-style: normal;
    font-weight: bold;
    speak: none;
    -webkit-font-smoothing: antialiased;
    text-transform: none;
    font-size: 12px;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .index_ategories_box ul li {
        width: 100%;
        margin: 0 0 5px 0;
    }

    .index_ategories_box ul li:nth-child(2) .index_ategories_box-frame, .index_ategories_box ul li:nth-child(3) .index_ategories_box-frame {
        width: 100%;
    }

    .index_ategories_box ul li .index-ategories-text {
        width: 100%;
        position: static;
        display: black;
        height: auto;
        padding: 10px 0;
    }

    .index-ategories-text span {
        margin: 0 20px 5px 20px;
        display: none;
    }

    .index_ategories_box ul li .item .th {
        margin: 0 0px 10px 0px;
        font-size: 16px;
    }
}

/*首页-关于我们*/
.home_about {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #eee;
}

.home_about h2 {
    font-size: 40px;
    text-transform: uppercase;
    padding-bottom: .1rem;
    text-align: left;
    position: relative;
    display: none;
}

.home_about h2::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 50px;
    left: 4%;
    height: 2px;
    background: #ddd;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transition: all .5s;
    -webkit-transition: all .5s;
}

.home_about:hover h2::after {
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    width: 200px;
    left: 15%;
    height: 2px;
    background: #ea4234;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.home_about h2 em {
    color: #ea4234;
    font-family: "Outfit-Regular", 'Microsoft Yahei', 'Times New Roman', Arial;
    display: block;
}

.home_about h2 span {
    color: #fff
}

.home_about .con_l {
    width: 54.7%;
    padding-right: 6%;
    float: left;
}

.home_about .con_r {
    width: 45.3%;
    float: right;
}

.home_about .con_r h2 {
    display: block;
}

.home_about .con_l a { /*padding:0 .3rem .3rem 0*/
}

.home_about .con_l .pic img {
    z-index: 1
}

.home_about .con_r div p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    color: #333
}

.home_about .con_r .txt {
    margin-bottom: .2rem;
    margin-top: .2rem;
    font-size: 16px;
    line-height: 30px;
}

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

@media (max-width: 768px) {
    .home_about {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .home_about h2 {
        display: block;
        text-align: center;
        font-size: 30px;
    }

    .home_about h2::after {
        position: absolute;
        content: '';
        left: 0;
        bottom: 0;
        width: 50px;
        left: 50%;
        height: 2px;
        background: #ddd;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
    }

    .home_about:hover h2::after {
        width: 50px;
        left: 50%;
    }

    .home_about .con_r div p {
        overflow: hidden;
        text-overflow: ellipsis; /*white-space:nowrap;*/
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
    }

    .home_about .con_l {
        width: 100%;
        padding-right: 0%;
        margin-top: 20px;
        float: none;
    }

    .home_about .con_l a {
        padding: 0;
    }

    .home_about .con_r {
        width: 100%;
        float: none;
    }

    .home_about .con_r h2 {
        display: none;
    }

    .home_about .con_r .txt {
        margin-bottom: 0;
        margin-top: 0;
        font-size: 16px;
        line-height: 25px;
    }
}

/*首页-热门产品*/
.home_hot_products {
    padding-top: 60px;
    padding-bottom: 60px;
}

.home_hot_products .item {
    padding: 0 .15rem
}

.home_hot_products .imgs {
    overflow: hidden
}

.home_hot_products .slick-dots {
    display: none !important
}

.home_hot_products .slick-prev {
    left: -3%;
}

.home_hot_products .slick-next {
    right: -3%;
}

@media (max-width: 768px) {
    .home_hot_products {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .home_hot_products .sliders h3 {
        font-size: 18px
    }

    .home_hot_products .con_r .date {
        width: 80px;
        padding: .1rem 0
    }

    .home_hot_products .con_r .date em {
        font-size: 32px
    }

    .home_hot_products .con_r .info {
        width: calc(100% - 80px)
    }
}

/*首页-热门产品、推荐产品列表*/
.mml_row ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 -4px 0
}

.mml_row li {
    max-width: 354px;
    margin: 0 4px 30px;
    width: calc(25% - 8px);
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.mml_row li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
}

.mml_row li a .img-wrap {
    border: 1px solid #ddd;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
}

@supports not (aspect-ratio: 1 / 1) {
    .mml_row li a .img-wrap {
        height: 0;
        padding-bottom: 100%;
    }
}

.mml_row li a .img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

.mml_row li a .img-wrap::before {
    content: '';
    position: absolute;
    bottom: 0;
    transition: opacity .7s ease 0s, transform .7s ease 0s;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    opacity: 0;
    border-top: 1px solid #ea4234;
    border-bottom: 1px solid #ea4234;
    transform: scale(0, 1);
    -webkit-transform: scale(0, 1);
    box-sizing: border-box;
}

.mml_row li:hover a .img-wrap::before {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.mml_row li a .img-wrap::after {
    transition: opacity .5s ease 0s, transform .5s ease 0s;
    content: '';
    border-left: 1px solid #ea4234;
    border-right: 1px solid #ea4234;
    transform: scale(1, 0);
    -webkit-transform: scale(1, 0);
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    box-sizing: border-box;
}

.mml_row li:hover a .img-wrap::after {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.mml_row li:hover .text {
    background-color: #ea4234;
    -webkit-box-shadow: 0 5px 20px 0 rgba(44, 44, 44, .11);
    box-shadow: 0 5px 20px 0 rgba(44, 44, 44, .11);
    max-width: 100%;
    transition: all .4s;
    -webkit-transition: all .4s;
}

.mml_row .text-wrap {
    margin-top: 0;
    padding-top: 0;
    width: 100%;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.mml_row .text {
    padding: 14px 10px;
    max-width: 100%;
    width: 100%;
    background-color: #999;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.mml_row .text h5 {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
}

.mml_row li:hover .text h5 {
    white-space: inherit;
}

@media (max-width: 1200px) {
    .mml_row ul {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 30px 0 0
    }

    .mml_row li {
        width: calc(50% - 8px);
        margin: 0 4px 20px;
    }
}

@media screen and (max-width: 768px) {
    .mml_row ul {
        margin: 30px 0 0;
    }

    .mml_row li {
        width: 49%;
        margin: 0.5%;
    }

    .mml_row .text {
        padding: 10px;
        width: 100%;
        max-width: 100%;
    }

    .mml_row .text h5 {
        white-space: normal;
        width: 100%;
        line-height: 1.25;
    }
}

/*@media (max-width:540px) {.mml_row li {width:100%}
}
*/
/*首页-新闻*/
.home_news {
    display: none;
    padding-top: 60px;
    padding-bottom: 60px;
    background: url(../images/news-bg-1450.jpg) no-repeat;
}

.home_news .sliders .dflr {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 58px;
    line-height: 58px;
    padding: 0 .3rem;
    background: rgba(9, 51, 136, .7)
}

.home_news .sliders h3 {
    width: 70%;
    font-size: 16px
}

.home_news .i-news-ul .slick-list .slick-slide li .fl {
    overflow: hidden;
    height: 410px;
}

.home_news .slick-dots li button {
    display: none
}

.home_news .bg-fff {
    background: #fff;
    height: 410px;
}

.home_news .i-news-ul li h1 {
    font-size: 26px;
}

.home_news .i-news-ul li:hover h1 {
    color: #ea4234;
}

.home_news .i-news-ul li:hover .clearfix .fr .i-n-m {
    color: #ea4234;
}

.home_news .i-news-ul .slick-list .slick-track li .bg-fff h2 p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 768px) {
    .home_news {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .home_news .con_r .date {
        width: 70px;
    }

    .home_news .con_r .info {
        width: calc(100% - 70px);
        padding: 0 .2rem;
        z-index: 8;
    }

    .home_news .slick-slide li .lg-6 {
        width: 100%;
        float: none
    }

    .home_news .slick-slide img {
        height: auto;
    }

    .home_news .bg-fff {
        height: auto;
    }

    .home_news .bg-fff p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
        max-height: 110px;
    }

    .home_news .i-news-ul li h1 {
        font-size: 20px;
    }
}

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

.home_news .text {
    position: relative;
    margin-left: -184px;
    max-width: 822px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 70px 54px;
    min-height: 346px;
    background-color: #ebf1f2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.home_news h4 {
    margin-bottom: 30px;
    position: relative;
    font-size: 26px;
}

.home_news h4::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: -22px;
    width: 67px;
    height: 2px;
    background-color: #ea4234;
    transition: all .5s;
}

.home_news .text:hover h4::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: -22px;
    width: 100%;
    height: 2px;
    background-color: #ea4234;
}

.home_news .text:hover h4 {
    color: #ea4234;
}

.home_news p {
    font-size: 16px;
    color: #666;
    padding-bottom: 10px;
}

.home_news .news-time {
    font-size: 16px;
    color: #666;
    padding-bottom: 20px;
    display: inline-block;
}

.home_news .text-wrap {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.home_news .mml-btn {
    left: 0;
    bottom: 0;
    display: none
}

.home_news .mml-btn.show {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.home_news .img-wrap {
    max-width: 822px;
    width: 54%
}

.home_news .mml-link {
    margin-top: 20px;
    text-align: center
}

.home_news.link:first-child {
    margin-right: 60px
}

@media (max-width: 1200px) {
    .home_news .text {
        margin-left: 0
    }
}

@media (max-width: 768px) {
    .home_news {
        padding-top: 40px;
        text-align: center
    }

    .home_news .item {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .home_news .text {
        min-height: unset;
        padding: 10px;
        display: block
    }

    .home_news h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .home_news h4::after {
        display: none
    }

    .home_news .mml-btn {
        position: static;
        margin: 0 auto;
        display: none;
    }

    .home_news .mml-btn.show {
        display: none;
    }

    .home_news .mml-link {
        display: block
    }

    .home_news .link {
        width: 100%;
        display: inline-block
    }

    .home_news .link:first-child {
        margin: 0 0 10px
    }

    .home_news .img-wrap {
        width: 100%
    }

    .home_news p {
        display: none;
    }
}

/*首页-推荐产品*/
.home_featured_products {
    padding-top: 60px;
    padding-bottom: 60px;
}

.home_featured_products h2 {
    padding-bottom: 5px;
    text-align: center;
    position: relative;
}

.home_featured_products h2::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 50px;
    left: 50%;
    height: 2px;
    background: #ddd;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.home_featured_products h2 em {
    color: #ea4234;
    font-family: "Outfit-Regular", 'Microsoft Yahei', 'Times New Roman', Arial;
    font-size: 38px;
    text-transform: uppercase;
}

.home_featured_products .item {
    padding: 0 .15rem
}

.home_featured_products h3 {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    background: rgba(0, 0, 0, .5);
    padding: 0 5px;
}

.home_featured_products h3:hover {
    font-size: 18px;
    background: rgba(22, 94, 83, 1)
}

.home_featured_products a h3::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, .2);
    transition: all .4s;
    -webkit-transition: all .4s
}

.home_featured_products a:hover h3::after {
    color: #fff;
    background: rgba(255, 255, 255, .1);
    width: 100%;
    position: absolute;
}

.home_featured_products .slick-dots {
    display: none !important
}

.home_featured_products .slick-prev {
    left: -3%;
}

.home_featured_products .slick-next {
    right: -3%;
}

@media screen and (max-width: 768px) {
    .home_featured_products {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .home_featured_products h2 em {
        font-size: 30px;
    }

    .home_featured_products .slick-prev {
        left: 0%;
    }

    .home_featured_products .slick-next {
        right: 0%;
    }
}

.home_certificate {
    padding-top: 60px;
    padding-bottom: 60px;
    background: url(../images/team-service-bg-1450.jpg) no-repeat;
}

.home_certificate .sliders .dflr {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 58px;
    line-height: 58px;
    padding: 0 .3rem;
    background: rgba(9, 51, 136, .7)
}

.home_certificate .sliders h3 {
    width: 70%;
    font-size: 16px
}

.home_certificate .item {
    padding: 0 .15rem
}

.home_certificate .item a {
    position: relative;
    display: block;
}

.home_certificate h3 {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    background: rgba(238, 238, 238, .6);
    padding: 0 10px;
    color: #333;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    vertical-align: middle;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
    text-align: center;
}

.home_certificate h3:hover {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    background: rgba(234, 66, 52, 1);
    color: #fff;
}

.home_certificate a h3::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, .2);
    transition: all .4s;
    -webkit-transition: all .4s
}

.home_certificate a:hover h3::after {
    color: #fff;
    background: rgba(255, 255, 255, .1);
    width: 100%;
    position: absolute;
}

.home_certificate .slick-dots {
    display: none !important
}

.home_certificate .slick-prev {
    left: 1%;
}

.home_certificate .slick-next {
    right: 1%;
}

@media screen and (max-width: 768px) {
    .home_certificate {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .home_certificate .slick-prev {
        left: 0%;
    }

    .home_certificate .slick-next {
        right: 0%;
    }
}

/*首页友情链接*/
.quick_links {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.quick_links ul li {
    max-width: 354px;
    margin: 0 4px 10px;
    width: calc(25% - 8px);
    position: relative;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 0 5px;
}

.quick_links ul li a {
    color: #333;
    width: 100%;
}

.quick_links ul li a i {
    z-index: 10;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    font-size: 16px;
    position: relative;
}

.quick_links ul li a::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ea4234;
    transition: all .4s;
    -webkit-transition: all .4s;
}

.quick_links ul li a:hover {
    color: #fff;
    border-color: #ea4234
}

.quick_links ul li a:hover::after {
    width: 100%;
    border-color: #ea4234
}

@media screen and (max-width: 768px) {
    .quick_links {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .quick_links ul li {
        width: 47%;
        line-height: 40px;
        height: 40px;
    }
}

/*内页-编辑器样式*/
main {
}

main .main_con {
    min-height: 400px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 40px;
    overflow: hidden;
}

main .main_con .edit {
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 30px;
}

main .main_con .edit #about_pb {
    float: right;
}

main .main_con .edit .com_title {
    font-size: 22px;
    color: #333;
    line-height: 40px;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 40px;
}

main .main_con .edit:hover .com_title {
    font-size: 22px;
    color: #333;
    line-height: 40px;
}

main .main_con .edit .com_title_line {
    width: 208px;
    height: 2px;
    background: #ea4234;
    bottom: 0;
    left: 0;
    transition: all .5s;
    position: absolute;
}

main .main_con .edit:hover .com_title_line {
    width: 500px;
    height: 2px;
    background: #ea4234;
    bottom: 0;
    left: 0;
}

main .main_con .p08-1-s1 {
    padding: 0;
}

@media screen and (max-width: 768px) {
    main .main_con {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    main .main_con .edit .com_title {
        margin-bottom: 20px;
        font-size: 20px;
    }

    main .main_con .edit {
        margin-top: 20px;
        margin-bottom: 20px;
        line-height: 25px;
    }
}

/*面包屑*/
.ny_banner .baloea .wrap {
    max-width: 1440px;
    margin: 0 auto;
}

.ny_banner {
    height: 300px;
    background: no-repeat center center;
    background-size: cover;
    background-image: url(../images/neibanner.jpg);
    position: relative;
}

.ny_banner .baloea {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #ddd;
    background: rgba(0, 0, 0, 0.3);
    line-height: 45px;
    height: 45px;
    width: 100%;
}

.ny_banner .baloea .baloea_title {
    float: left;
    font-size: 20px;
    text-transform: uppercase;
}

.ny_banner .lboae {
    padding-left: 30px;
    color: #ddd;
    float: right;
}

.ny_banner .lboae span {
    margin: 0 5px;
}

.ny_banner .lboae ul {
    float: right;
    margin-left: 10px;
}

.ny_banner .lboae ul li {
    float: left;
    margin-right: 5px;
}

.ny_banner .lboae ul li a:hover {
    color: #ea4234;
}

@media screen and ( max-width: 1300px) {
    .ny_banner .baloea { /*padding:0 3%;*/
    }
}

@media screen and ( max-width: 768px) {
    .ny_banner {
        height: 120px;
    }

    .ny_banner .baloea .baloea_title {
        font-size: 14px;
    }

    .ny_banner .baloea .wrap {
        padding: 0 3%;
    }

    .ny_banner .lboae {
        float: left;
        padding-left: 0;
        font-size: 12px;
        display: none;
    }

    .ny_banner .lboae ul {
        float: left;
        margin-left: 0;
    }
}

/*内页-资质证书列表*/
.honor_list ul {
}

.honor_list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -4px 0
}

.honor_list li {
    max-width: 354px;
    margin: 0 10px 20px;
    width: calc(25% - 20px);
    position: relative;
}

.honor_list li a .img-wrap {
    border: 1px solid #ddd;
}

.honor_list li a .img-wrap::before {
    content: '';
    position: absolute;
    bottom: 0;
    transition: opacity .7s ease 0s, transform .7s ease 0s;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    opacity: 0;
    border-top: 1px solid #ea4234;
    border-bottom: 1px solid #ea4234;
    transform: scale(0, 1);
    -webkit-transform: scale(0, 1);
    box-sizing: border-box;
}

.honor_list li:hover a .img-wrap::before {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.honor_list li a .img-wrap::after {
    transition: opacity .5s ease 0s, transform .5s ease 0s;
    content: '';
    border-left: 1px solid #ea4234;
    border-right: 1px solid #ea4234;
    transform: scale(1, 0);
    -webkit-transform: scale(1, 0);
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    box-sizing: border-box;
}

.honor_list li:hover a .img-wrap::after {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.honor_list li:hover .text {
    background-color: #ea4234;
    -webkit-box-shadow: 0 5px 20px 0 rgba(44, 44, 44, .11);
    box-shadow: 0 5px 20px 0 rgba(44, 44, 44, .11);
    max-width: 100%;
    transition: all .4s;
    -webkit-transition: all .4s;
}

.honor_list li a .img-wrap img {
    width: 100%;
}

.honor_list .text-wrap {
    margin-top: -24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.honor_list .text {
    padding: 14px 10px;
    max-width: 354px;
    width: 100%;
    background-color: #999;
    color: #fff;
    text-align: center;
}

.honor_list .text h5 {
    font-size: 16px;
}

.honor_list li:hover .text h5 {
    white-space: inherit;
}

@media (max-width: 1200px) {
    .honor_list ul {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 50px 0 0
    }

    .honor_list li {
        width: calc(50% - 8px);
        margin: 0 4px 20px;
    }
}

@media screen and (max-width: 768px) {
    .honor_list ul {
        margin: 0;
    }
}

@media (max-width: 540px) {
    .honor_list li {
        width: 100%
    }
}

/*产品类别*/
.product_category {
    overflow: hidden;
}

.product_category li {
    margin-bottom: 25px;
}

.product_category .mml_row ul li {
    width: auto;
    margin-bottom: 0;
}

.product_category .item {
    text-align: left;
    font-size: 0;
    position: relative;
}

.product_category .item .sale-label {
    position: absolute;
    top: 10px;
    left: 0;
}

.product_category .item .sale-label span {
    font-size: 14px;
    color: #fff;
    background-color: #ea4234;
    display: inline-block;
    padding: 4px 10px;
}

.product_category li .product-image {
    width: 25%;
    display: inline-block;
    vertical-align: middle;
}

.product_category li .product-image img {
    width: 100%;
    max-width: 500px;
}

.product_item_text {
    font-size: 14px;
    width: 75%;
    display: inline-block;
    vertical-align: middle;
}

.product_item_text-b {
    margin-left: 30px;
}

.product_item_text h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 12px;
}

.product_item_text p {
    font-size: 14px;
    line-height: 24px;
}

.product_item_text .tag {
    font-size: 12px;
    width: 100%;
    margin: 10px -5px
}

.product_item_text .tag a {
    padding: 4px 8px;
    background-color: #eef0f1;
    display: inline-block;
    margin: 5px;
}

.product_item_text .tag a:hover {
    color: #fff;
    background-color: #ea4234;
}

.product_item_text span a {
    line-height: 24px;
    color: #fff;
    background-color: #ea4234;
    padding: 8px 15px;
    display: inline-block;
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
}

.product_item_text span a i {
    font-size: 20px;
    line-height: 18px;
    margin-right: 5px;
}

.product_item_text span a.more {
    color: #242424;
    background-color: #f0f0f0;
    margin-left: 10px;
}

.product_item_text span a:hover {
    color: #fff;
    background-color: #666;
}

@media screen and (max-width: 768px) {
    .product_item_text h2 {
        font-size: 16px;
    }

    .product_item_text p {
        display: none;
    }

    .product_category li .product-image {
        width: 100%;
    }

    .product_item_text {
        width: 100%;
    }

    .product_item_text-b {
        margin-left: 0;
    }
}

/*产品列表*/
.products_list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -4px 0
}

.products_list li {
    max-width: 354px;
    margin: 0 10px 20px;
    width: calc(25% - 20px);
}

.products_list li a {
    display: block;
}

.products_list li a .img-wrap {
    border: 1px solid #ddd;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
}

.products_list li a .img-wrap::before {
    content: '';
    position: absolute;
    bottom: 0;
    transition: opacity .7s ease 0s, transform .7s ease 0s;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    opacity: 0;
    border-top: 1px solid #ea4234;
    border-bottom: 1px solid #ea4234;
    transform: scale(0, 1);
    -webkit-transform: scale(0, 1);
    box-sizing: border-box;
}

.products_list li:hover a .img-wrap::before {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.products_list li a .img-wrap::after {
    transition: opacity .5s ease 0s, transform .5s ease 0s;
    content: '';
    border-left: 1px solid #ea4234;
    border-right: 1px solid #ea4234;
    transform: scale(1, 0);
    -webkit-transform: scale(1, 0);
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    box-sizing: border-box;
}

.products_list li:hover a .img-wrap::after {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.products_list li:hover .img-wrap {
    -webkit-box-shadow: 0 10px 20px 0 rgba(44, 44, 44, .11);
    box-shadow: 0 10px 20px 0 rgba(44, 44, 44, .11);
}

.products_list .text-wrap {
    margin-top: -24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.products_list li a .img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.products_list .text {
    padding: 10px;
    max-width: 354px;
    min-height: 60px;
    width: 100%;
    color: #333;
    text-align: center;
}

.products_list li:hover .text {
    max-width: 100%;
    color: #ea4234;
}

.products_list .text h5 { /*text-overflow:ellipsis;overflow:hidden;white-space:nowrap;*/
    font-size: 16px;
}

.products_list li:hover .text h5 {
    white-space: inherit;
}

@media (max-width: 1200px) {
    .products_list ul {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 50px 0 0
    }

    .products_list li {
        width: calc(50% - 8px);
        margin: 0 4px 20px;
    }
}

@media screen and (max-width: 768px) {
    .products_list ul {
        margin-top: 20px;
    }
}

@media (max-width: 540px) {
    .products_list li {
        width: 100%
    }
}

/*新闻列表*/
main .new .main-nav-p {
    text-align: center;
}

.news_list {
    padding-bottom: 40px;
}

.news_list .alcet_title {
    font-size: 18px;
    background: #eeeeee;
    height: 50px;
    line-height: 50px;
    border-left: 5px solid #ea4234;
    padding-left: 20px;
    color: #666;
    margin-bottom: 25px;
}

.news_list .alcet_title a {
    float: right;
    font-size: 14px;
    color: #ea4234;
    margin-right: 20px;
}

.news_list .alcet_title a:hover {
    color: #ea4234;
}

.news_list li {
    margin-bottom: 20px;
    position: relative;
}

.news_list li::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ea4234;
    transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

.news_list li:hover::after {
    width: 100%;
}

.news_list li a {
    z-index: 1;
    position: relative;
    display: flex;
}

.news_list li a .img {
    width: 250px
}

.news_list li a .date, .news_list .img, .news_list .info {
}

.news_list li a .info-w {
    width: calc(100% - 250px);
    padding-right: .4rem;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    display: -webkit-flex;
    display: flex;
}

.news_list li a .info {
    width: calc(100% - 180px);
}

.news_list li a .info h3 {
    font-size: 20px;
    margin-top: 20px;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    vertical-align: middle;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
}

.news_list li a .info .els2 {
    color: #999;
    margin-bottom: .25rem;
    margin-top: .2rem;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news_list li a:hover .info .els2 {
    color: #fff;
}

.news_list li a .icon {
    width: 100%;
    height: 24px;
}

.news_list li a .date {
    width: 150px;
    padding-right: .2rem;
    padding-left: .2rem;
    color: #999;
    border-right: 1px solid #e0e0e0;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    justify-content: center;
    -webkit-justify-content: center;
}

.news_list li a .date em, .news_list .date span {
    width: 100%
}

.news_list li a .date em {
    font-size: 36px;
    margin-left: -15px
}

.news_list li a .date span {
    font-size: 20px;
    margin-top: 20px;
}

.news-info {
    padding: .2rem;
    border: 1px solid #ddd;
    margin-bottom: 40px;
}

.news-info .head {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.news-info h3 {
    font-size: 24px;
    color: #333;
    text-align: center;
    text-align: center;
}

.news-info .date {
    color: #999;
    text-align: center;
    font-size: 16px;
    margin-top: 20px;
}

.news-info .edit {
    padding-top: .3rem;
    font-size: 16px;
    line-height: 30px;
}

.news-info .edit ul li {
    list-style-type: inherit;
}

@media screen and (min-width: 1301px) {
    .news_list li:hover a {
        background: #ea4234;
        color: #fff;
        transition: all 0.5s ease;
    }

    .news_list li:hover a h3 {
        color: #fff;
    }

    .news_list li a:hover .con .d1, .news_list li a:hover .con .d2, .news_list li a:hover .date {
        color: #fff;
        transition: all 0.5s ease;
    }
}

@media (max-width: 768px) {
    .news_list .date, .news_list .img, .news_list .info {
        height: auto;
        width: 100%;
    }

    .news_list li a {
        display: block;
    }

    .news-info li a .head h3 {
        font-size: 18px;
        color: #ea4234;
    }

    .news_list li a .info-w {
        width: 100%;
        padding-right: 0;
        display: block;
    }

    .news_list li a .info {
        height: auto;
        width: 100%;
    }

    .news-info li a .edit {
        font-size: 14px;
        line-height: 25px;
    }

    .news_list li a .info .els2 {
        margin-top: 5px;
        margin-bottom: 5px;
        line-height: 25px;
        height: 50px;
        display: none;
    }

    .news_list li a .date em, .news_list .date span {
        font-size: 16px;
        width: auto;
    }

    .news_list li a .date span {
        margin-top: 0;
        font-size: 16px;
    }

    .news_list li a .info h3 {
        margin-top: 0;
        font-size: 16px;
        overflow: inherit;
        text-overflow: inherit;
        white-space: inherit;
    }

    .news_list li a .date {
        width: 100%;
        display: inline-block;
    }

    .news_list li a .pic img {
        width: 150px;
        height: 90px;
    }

    .news_list li a .con {
        width: calc(100% - 150px);
        padding: 0px 10px 0;
    }

    .news_list li a .con .d1 {
        font-size: 14px;
        line-height: 25px;
        height: 25px;
    }

    .news_list li a .con .d2 {
        line-height: 20px;
        height: 40px;
        margin-top: 5px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .news-info .head h3 {
        font-size: 20px;
        color: #ea4234;
        text-align: center;
    }

    .news_list .info-w {
        width: 100%;
        padding-right: 0;
    }

    .news_list li a .img {
        width: 100%;
    }
}


/*内页-案例列表*/
.case_list {
    padding-bottom: 50px;
}

.case_list li {
    margin-bottom: 20px;
    vertical-align: bottom;
    display: inline-block;
    width: 33%;
    padding: 0 5px;
}

.case_list li a .img {
    overflow: hidden;
}

.case_list li a:hover i span {
    color: #fff;
}

.case_list li a:hover h3 {
    color: #ea4234;
}

.case_list li a:hover i {
    border-color: #ea4234;
    color: #fff
}

.case_list li a:hover i::after {
    width: 100%
}

.case_list li a {
    background: #fafafa;
    overflow: hidden;
}

.case_list li:nth-child(even) a {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.case_list li a .img img {
    width: 100%;
    display: inline-block;
    overflow: hidden;
    transform: scale(1);
    -webkit-transform: scale(1);
    transition: all .8s;
    -webkit-transition: all .8s;
}

.case_list li a:hover .img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.case_list li a h3 {
    font-size: 16px;
    text-align: center;
    position: relative;
}

/*.case_list li a h3::after {position:absolute;transition:all ease .4s;-webkit-transition:all ease .4s;content:'';bottom:0;left:0;width:0;height:2px;background:#eee;}
.case_list li a:hover h3::after {width:100%;}*/
.case_list .info {
    padding: 15px 0 0 0;
    vertical-align: top;
}

.case_list .txt {
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden; /*text-align:justify;*/
    margin-bottom: .1rem;
    margin-top: .1rem;
    font-size: 14px;
    line-height: 25px;
}

.case_list .info i {
    padding: 0 .2rem;
    border: 1px solid #ddd;
    height: 45px;
    line-height: 45px;
    text-align: center;
    float: right;
    position: relative;
}

.case_list .info i::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ea4234;
    transition: all .3s;
    -webkit-transition: all .3s
}

.case_list .info i span {
    z-index: 1;
    position: relative;
    color: #666;
}

@media screen and (max-width: 1200px) {
    .case_list .txt {
        font-size: 14px;
        line-height: 25px;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }
}

@media screen and (max-width: 768px) {
    .case_list li {
        width: 100%;
    }

    .case_list li a {
        display: block
    }

    .case_list li a h3 {
        font-size: 16px;
    }

    .case_list li a .img {
        width: 100%;
    }

    .case_list .info {
        padding: .2rem 0 .2rem 0;
        width: 100%;
    }

    .case_list .txt {
        font-size: 14px;
        margin-top: .1rem;
        margin-bottom: 0;
        line-height: 25px;
    }

    .case_list .info i {
        height: 40px;
        line-height: 40px;
        padding: 0 .3rem;
        display: none;
    }
}

/*编辑器样式*/
.edit {
    overflow: hidden
}

.edit .com_title {
    font-size: 30px;
    color: #333;
    line-height: 40px;
}

.edit:hover .com_title {
    font-size: 30px;
    color: #ea4234;
    line-height: 40px;
}

.edit .com_title_line {
    width: 208px;
    height: 2px;
    background: #ea4234;
    bottom: 0;
    left: 0;
    transition: all .5s;
}

.edit:hover .com_title_line {
    width: 500px;
    height: 2px;
    background: #ea4234;
    bottom: 0;
    left: 0;
}

.edit p { /**/
}

.edit span {
    display: inline
}

.edit img {
}

@media (max-width: 767px) {
    .edit .com_title {
        font-size: 22px;
    }

    .edit img {
        width: 100% !important;
        height: auto !important;
    }
}

/*弹窗样式*/
.fix-wrap {
    display: none;
    z-index: 999;
    position: fixed;
    background: rgba(0, 0, 0, .8)
}

.fix-wrap, .fix-wrap svg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.fix-wrap .hide, .fix-wrap circle {
    transition: all .8s;
    -webkit-transition: all .8s
}

.fix-wrap .hide {
    position: fixed;
    top: 5%;
    right: 5%;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    background: 0 0
}

.fix-wrap .hide::after, .fix-wrap .hide::before {
    z-index: 1;
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 1px;
    height: 50%;
    margin-top: -25%;
    background: #fff
}

.fix-wrap .hide::before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg)
}

.fix-wrap .hide::after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg)
}

.fix-wrap .hide:hover {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg)
}

.fix-wrap .hide:hover circle {
    fill: none;
    stroke-dasharray: 145
}

.fix-wrap svg {
    position: absolute
}

.fix-wrap circle {
    stroke-dasharray: 0 145
}

.fix-video .video-wrap {
    min-width: 55%;
    max-width: 55%
}

.fix-video video {
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #3a3a3a;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    background: #2d2d2d;
    object-fit: cover;
    animation: ReturnToNormal .5s both;
    -webkit-animation: ReturnToNormal .5s both
}

.fix-pic {
    overflow: auto
}

.fix-pic img {
    max-height: 100%;
    animation: zoomIn .5s both;
    -webkit-animation: zoomIn .5s both
}

.fix-pics {
    background: rgba(0, 0, 0, .7)
}

.fix-pic-slider {
    color: #fff
}

.fix-pic-slider .item {
    position: relative;
    width: 100%;
    height: 100vh;
    cursor: grab;
    cursor: -webkit-grab;
    background-color: transparent
}

.fix-pic-slider .item:active {
    cursor: grabbing;
    cursor: -webkit-grabbing
}

.fix-pic-slider .item::after {
    position: absolute;
    content: '';
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .9)
}

.fix-pic-slider em, .fix-pic-slider img {
    position: absolute;
    left: 0;
    bottom: 0
}

.fix-pic-slider img {
    top: 0;
    right: 0;
    margin: auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: inherit
}

.fix-pic-slider em {
    width: 100%;
    line-height: 25px;
    font-weight: 700;
    text-align: center;
    font-size: 16px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, .1);
    background: rgba(0, 0, 0, .7)
}

.fix-pic-slider .slick-arrow {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(255, 255, 255, .1);
    background: rgba(0, 0, 0, .3);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transition: all .5s;
    -webkit-transition: all .5s
}

.fix-pic-slider .slick-arrow::after {
    position: absolute;
    content: '';
    top: 50%;
    border: solid #fff;
    padding: 6px
}

.fix-pic-slider .slick-arrow:hover {
    background: rgba(0, 0, 0, .9)
}

.fix-pic-slider .slick-prev {
    left: 1%;
    animation: slideInLeft .5s both;
    -webkit-animation: slideInLeft .5s both
}

.fix-pic-slider .slick-prev::after {
    left: 50%;
    border-width: 0 1px 1px 0;
    transform: translateX(-25%) translateY(-50%) rotate(135deg);
    -webkit-transform: translateX(-25%) translateY(-50%) rotate(135deg)
}

.fix-pic-slider .slick-next {
    right: 1%;
    animation: slideInRight .5s both;
    -webkit-animation: slideInRight .5s both
}

.fix-pic-slider .slick-next::after {
    right: 50%;
    border-width: 1px 0 0 1px;
    transform: translateX(25%) translateY(-50%) rotate(135deg);
    -webkit-transform: translateX(25%) translateY(-50%) rotate(135deg)
}

.fix-pic-slider .slick_page {
    position: absolute;
    top: 0;
    left: 0;
    padding: 15px;
    font-size: 16px;
    font-weight: 700
}

.fix-pic-slider .slick_page i {
    font-size: 22px
}

.fix-pic-slider .slick_page div {
    display: none
}

.fix-pic-slider .slick_page div.slick-active {
    display: block
}

.fix-search {
    padding: 0 2.5%;
    background: #222
}

.fix-search:hover .search::after {
    transform: scale(1);
    -webkit-transform: scale(1)
}

.fix-search .search {
    position: relative;
    width: 100%;
    height: 125px;
    color: #555;
    padding-left: 88px;
    font-size: 66px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDozNEE5NEZGREQ0QUQxMUU2OUVGNjk4Qzg2RjZCRDdENiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDozNEE5NEZGRUQ0QUQxMUU2OUVGNjk4Qzg2RjZCRDdENiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjM0QTk0RkZCRDRBRDExRTY5RUY2OThDODZGNkJEN0Q2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjM0QTk0RkZDRDRBRDExRTY5RUY2OThDODZGNkJEN0Q2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+/Hs+IwAAAVlJREFUeNpi+P//PwMaFgLiJiC+/x8VHATiCCzqMTC6QBKSIc+AeC0QzwXiA0jiT4DYmFhDS6CaNgGxOg4NIUD8E6rOipChcVCFZUR4jwWIj0PVq+EylA2q4AAx4YWEQeAxLkMroAqESTS0D6rPAZuhL4H4NYkGgrAG1NDl2AwFgRVkGMqClBpQ5JgYIOAdA+ngL5TmR5eAGapKhqE8UPo1NkNvAbEtGYaaQOmDGDLAMIiGho0niWEKy2UWuBL/VyD+RYKBFlAD9+PLUTZQRUeAWICAgU5QB4CAIaG8745UaHQCsRkQ8wIxOxCLA7EfEG9HK7kuArEsoVLKHIgf/McPQF72RioaXwGxCD5DYdgXiBcC8S0gfgvEV4B4OhA7IqmRh+ZGELgJxFyEDCUWSwLxVSSDZalhKAhzogWFLiPYZMqBJBBfBGJRIH5ALUNBQBGI5wPxVIAAAwAoIUyRNtFOOQAAAABJRU5ErkJggg==) no-repeat 35px center
}

.fix-search .search::after, .fix-search .search::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    transition: all 1s;
    -webkit-transition: all 1s
}

.fix-search .search::before {
    background: #515151
}

.fix-search .search::after {
    background: rgba(255, 255, 255, .5);
    transform: scale(0, 1);
    -webkit-transform: scale(0, 1)
}

.fix-search .btn, .fix-search .txt {
    color: #555;
    background: 0 0
}

.fix-search .txt {
    width: 100%;
    text-align: center;
    font-size: 66px;
    padding-right: 2%
}

.fix-search .btn {
    font-size: 24px
}

/*询盘提交弹窗*/
.fancybox-caption-wrap, .fancybox-infobar, .fancybox-toolbar {
    position: absolute;
    direction: ltr;
    z-index: 99997;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility 0s linear .25s;
    box-sizing: border-box
}

.fancybox-show-caption .fancybox-caption-wrap, .fancybox-show-infobar .fancybox-infobar, .fancybox-show-toolbar .fancybox-toolbar {
    opacity: 1;
    visibility: visible;
    transition: opacity .25s, visibility 0s
}

.fancybox-infobar {
    top: 0;
    left: 0;
    font-size: 13px;
    padding: 0 10px;
    height: 44px;
    min-width: 44px;
    line-height: 44px;
    color: #ccc;
    text-align: center;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: subpixel-antialiased;
    mix-blend-mode: exclusion
}

.pagelc {
    margin-top: 3%;
}

.pagelc a {
    display: inline-block;
    line-height: 30px;
    padding: 0 10px;
    border: 1px solid #ddd;
    margin: 0 2px;
    vertical-align: middle;
}

.pagelc a.mob-none {
    padding: 0;
    width: 32px;
}

.pagelc a.cur, .pagelc a:hover {
    color: #fff;
    background: #ea4234;
    border-color: #ea4234;
}

@media screen and (max-width: 768px) {
    .pagelc {
        margin-top: 6%;
    }
}

/*内页-联系我们*/
main .contact {
    padding-bottom: 40px;
}

main .contact .vlbteo {
    width: 100%;
    color: #666;
    min-height: 300px;
    padding: 50px 50px 0;
    border: 1px solid #ddd;
    background: #eee;
}

main .contact .vlbteo .d1 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #ea4234;
}

main .contact .vlbteo .d2 {
    background: no-repeat left 8px;
    padding: 5px 0 5px 0px;
    margin-bottom: 10px;
    font-size: 16px;
}

main .contact .vlbteo .d2 span {
    color: #ea4234;
}

main .contact .vlbteo .d2 i {
    margin-right: 10px;
    font-size: 20px;
}

main .contact .contact_man {
    display: inline-block;
}

main .contact .contact_man li {
    float: left;
    width: 100%;
    color: #666;
    padding: 50px 50px 40px;
    border: 1px solid #ddd;
    margin-top: 20px;
    box-sizing: border-box;
    -moz-box-sizing: border-box; /* Firefox */
    -webkit-box-sizing: border-box; /* Safari */
    position: relative
}

main .contact .contact_man li:before {
    content: '';
    position: absolute;
    bottom: 0;
    transition: opacity .5s ease 0s, transform .5s ease 0s;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    opacity: 0;
    border-top: 1px solid #ea4234;
    border-bottom: 1px solid #ea4234;
    transform: scale(0, 1);
    -webkit-transform: scale(0, 1);
    box-sizing: border-box;
    z-index: -1;
}

main .contact .contact_man li:hover::before {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

main .contact .contact_man li::after {
    transition: opacity .5s ease 0s, transform .5s ease 0s;
    content: '';
    border-left: 1px solid #ea4234;
    border-right: 1px solid #ea4234;
    transform: scale(1, 0);
    -webkit-transform: scale(1, 0);
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    box-sizing: border-box;
    z-index: -1;
}

main .contact .contact_man li:hover::after {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

main .contact .contact_man .d1 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #ea4234;
}

main .contact .contact_man .d2 {
    background: no-repeat left 8px;
    padding: 5px 0 5px 0px;
    margin-bottom: 10px;
    font-size: 16px;
    width: 33.3%;
    float: left;
}

main .contact .contact_man .d2 span {
    color: #ea4234;
}

main .contact .contact_man .d2 i {
    margin-right: 10px;
    font-size: 20px;
}

@media screen and ( max-width: 768px) {
    main .contact {
        padding-top: 0px;
    }

    main .contact .vlbteo {
        padding: 15px;
        min-height: inherit;
    }

    main .contact .vlbteo .d1 {
        font-size: 20px;
    }

    main .contact .contact_man li {
        padding: 15px;
    }

    main .contact .contact_man .d2 {
        width: 100%;
    }
}

/*内页-二级菜单*/
.main-nav-p {
    margin-bottom: 40px;
}

.main-nav-p ul {
    font-size: 0
}

.main-nav-p li {
    display: inline-block;
    margin: 10px;
    width: 15.2%;
}

@media screen and (max-width: 1300px) {
    .main-nav-p li {
        width: 18.2%;
    }
}

@media screen and (max-width: 1150px) {
    .main-nav-p li {
        width: 23%;
    }
}

.main-nav-p li.cur a, .main-nav-p li:hover a {
    color: #fff;
    border-color: #ea4234;
    background: #ea4234
}

.main-nav-p li a {
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ddd;
    position: relative;
    text-align: center;
}

.main-nav-p li a i {
    z-index: 1;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.main-nav-p li a::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ea4234;
    transition: all .4s;
    -webkit-transition: all .4s;
}

.main-nav-p a:hover::after {
    width: 100%;
    border-color: #ea4234;
}

@media screen and (max-width: 768px) {
    .main-nav-p {
        display: none
    }
}

.main-nav-m {
    display: none;
}

@media screen and (max-width: 768px) {
    .main-nav-m {
        display: block;
        position: relative;
        z-index: 2;
        cursor: pointer;
        margin-bottom: 20px;
    }

    .main-nav-m .title {
        position: relative;
        height: 45px;
        line-height: 45px;
        padding: 0 10px;
        background: #ea4234
    }

    .main-nav-m .title strong {
        color: #fff;
        font-size: 16px;
        font-weight: 700
    }

    .main-nav-m .title i {
        position: absolute;
        content: '';
        width: 45px;
        height: 100%;
        right: 0
    }

    .main-nav-m .title i::after, .main-nav-m .title i::before {
        position: absolute;
        top: 50%;
        content: '';
        width: 12px;
        height: 1px;
        background: #fff;
        transition: all .3s;
        -webkit-transition: all .3s
    }

    .main-nav-m .title i::before {
        left: 46%;
        transform: rotate(40deg) scaleY(1.5);
        -webkit-transform: rotate(40deg) scaleY(1.5)
    }

    .main-nav-m .title i::after {
        right: 46%;
        transform: rotate(-40deg) scaleY(1.5);
        -webkit-transform: rotate(-40deg) scaleY(1.5)
    }

    .main-nav-m .title.active i::before {
        transform: rotate(-40deg) scaleY(1.5);
        -webkit-transform: rotate(-40deg) scaleY(1.5)
    }

    .main-nav-m .title.active i::after {
        transform: rotate(40deg) scaleY(1.5);
        -webkit-transform: rotate(40deg) scaleY(1.5)
    }

    .main-nav-m ul {
        display: none;
        position: absolute;
        top: 45px;
        width: 100%;
        padding: 0 10px;
        background: rgba(234, 66, 52, 0.7);
        color: #fff
    }

    .main-nav-m ul li {
        animation: ReturnToNormal .5s both;
        -webkit-animation: ReturnToNormal .5s both
    }

    .main-nav-m ul li a {
        display: block;
        height: 45px;
        line-height: 45px;
        border-bottom: 1px solid rgba(255, 255, 255, .55)
    }
}

/*底部版权*/
footer {
    background: url(../images/btn-bg1.png) repeat #333;
}

footer .footer-head {
    padding-top: 20px;
}

footer .footer-main {
}

footer .footer-main dl a {
    color: #999;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    vertical-align: middle;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
}

footer .footer-main dl a:hover {
    color: #ea4234;
}

footer .footer-main dl {
    margin-left: 4%;
    float: left;
    width: 18.3%;
}

footer .footer-main dl dt {
    font-size: 24px;
    line-height: 40px;
    color: #888;
}

footer .footer-main dl dd {
    font-size: 14px;
    line-height: 30px;
}

footer .footer-main .telbl {
    width: 33%;
    float: left;
}

footer .footer-main .telbl .d1 {
    font-size: 24px;
    line-height: 40px;
    color: #ea4234;
}

footer .footer-main .telbl .d2 {
    font-size: 14px;
    line-height: 30px;
    color: #888;
    display: flex;
}

footer .footer-main .telbl .d2 label {
    display: inline-block;
    vertical-align: top;
    min-width: 70px;
}

@media screen and (max-width: 1300px) {
    footer .footer-main .telbl {
        width: 33%;
    }

    footer .footer-main dl dt {
        font-size: 20px;
        line-height: 35px;
    }

    footer .footer-main dl dd {
        font-size: 14px;
        line-height: 30px;
    }

    footer .footer-main .telbl .d1 {
        font-size: 20px;
        line-height: 35px;
    }

    footer .footer-main .telbl .d2 {
        font-size: 14px;
        line-height: 30px;
    }
}

footer .copyright {
    padding: 20px 0;
}

footer .copyright p {
    float: left;
    color: #999;
    font-size: 14px;
}

footer .copyright {
    padding: 10px 0;
    width: 100%;
    display: inline-block;
    line-height: 28px;
}

@media screen and (max-width: 768px) {
    footer .copyright p {
        width: 100%;
    }
}

/*社交分享链接*/
footer .social-link {
    float: right;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .social-link a {
    color: #fff;
    margin: 0;
    float: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    line-height: 1;
    background-color: #666;
    text-align: center;
    border-radius: 6px;
    font-size: 18px;
}

footer .social-link a:hover {
    /*color: #fff;*/
    /*margin-left: 5px;*/
    /*float: left;*/
    /*display: inline-block;*/
    /*width: 28px;*/
    /*height: 28px;*/
    /*line-height: 28px;*/
    /*background-color: #ea4234;*/
    /*text-align: center;*/
    /*border-radius: 28px;*/
}

@media screen and (max-width: 1300px) {
    footer .footer-main .telbl {
        width: 33%;
    }

    footer .footer-main dl dt {
        font-size: 20px;
        line-height: 35px;
    }

    footer .footer-main dl dd {
        font-size: 14px;
        line-height: 30px;
    }

    footer .footer-main .telbl .d1 {
        font-size: 20px;
        line-height: 35px;
    }

    footer .footer-main .telbl .d2 {
        font-size: 14px;
        line-height: 30px;
    }

    footer .social-link {
        float: none;
        margin: 0 auto;
        position: inherit;
        left: 0;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    footer .footer-main .telbl {
        width: 100%;
    }

    footer .footer-main dl {
        margin-left: 0;
        float: none;
        width: 100%;
    }

    footer .copyright p {
        font-size: 12px;
    }
}

/*site-map网站地图*/
.site-map-t {
    color: #ea4234;
    font-size: 18px;
    line-height: 30px;
    background-color: #efefef;
    padding: 12px 30px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.site-map-th {
    color: #6d6d6d;
    font-size: 16px;
    line-height: 30px;
    background: #fff;
    border-bottom: 1px dashed #f1f1f1;
    padding: 8px 30px;
}

.site-map-th h2 {
    font-size: 16px;
    font-weight: normal;
    color: #333;
}

.site-map ul {
    font-size: 0;
    overflow: hidden;
    margin: 20px 0 30px 0;
    border-bottom: 1px solid #f1f1f1;
    padding: 10px 30px 0 30px;
    background-color: #fff;
}

.site-map ul li {
    font-size: 14px;
    display: inline-block;
    vertical-align: top;
    line-height: 35px;
    width: 33.3%;
}

.site-map ul li h3 {
    font-size: 16px;
    font-weight: normal;
}

.site-map ul.site-map-l1 li {
    width: 25%;
    font-size: 16px;
}

.site-map ul.site-map-l2 li {
    width: 50%;
}

.site-map a:hover {
    color: #ea4234
}

@media screen and (max-width: 1300px) {
    .site-map ul li, .site-map ul.site-map-l1 li, .site-map ul.site-map-l2 li {
        width: 50%;
    }
}

@media screen and (max-width: 768px) {
    .site-map ul li, .site-map ul.site-map-l1 li, .site-map ul.site-map-l2 li {
        width: 100%;
    }
}

/*右侧漂浮替换样式*/
.im {
    position: fixed;
    right: 2px;
    top: auto;
    bottom: 150px;
    z-index: 11;
}

.im-l {
    color: #fff;
    width: 32px;
    height: 60px;
    cursor: pointer;
    background-color: #ea4234; /*box-shadow:0 0 8px #eaf0f6;*/
    border-radius: 4px 0px 0px 4px;
    display: block;
    text-align: center;
    line-height: 60px;
    float: left;
}

.im-l i {
    font-size: 20px;
}

#select {
    display: none;
}

.im .box {
    float: right;
    width: 60px;
    background-color: #ea4234;
    border-radius: 0 4px 4px 4px;
    display: none;
}

.im .box ul {
    background-color: #fff;
    list-style-type: none;
    margin: 5px;
}

.im .box ul li {
    height: 50px;
    width: 50px;
    overflow: hidden;
    text-align: center;
    line-height: 50px;
}

.im .box ul li a {
    text-decoration: none;
    display: block;
}

.im .box ul li i {
    font-size: 24px;
    color: #f39d22;
}

.im .box ul li i.img-skype {
    color: #00aff0;
}

.im .box ul li i.img-whatsapp {
    color: #00d51b;
}

.im .box ul li i.img-user {
    color: #F66;
}

.im .box ul li i.img-skype, .im .box ul li i.img-envelope {
    font-size: 28px;
}

.im .box ul li a:hover i {
    color: #343537;
}

#select:checked + .box {
    display: block;
}

#cus_ser1 .msn {
    background-repeat: no-repeat;
    height: 50px;
    width: 50px;
}

.im .skype {
    background-repeat: no-repeat;
    background-position: -47px 0;
    height: 50px;
    width: 47px;
}

.im .mail {
    background-repeat: no-repeat;
    background-position: -94px 0;
    height: 50px;
    width: 47px;
}

.im .kefu_01 {
    background-repeat: no-repeat;
    background-position: center center;
    height: 50px;
    width: 50px;
    overflow: hidden;
    background-color: #FFF;
}

.im .whatsapp {
    background-repeat: no-repeat;
    background-position: center center;
    height: 50px;
    width: 50px;
    overflow: hidden;
    background-color: #FFF;
}

/*分页符*/
.pagination-bar {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.pagination-bar ul {
    display: block;
}

.pagination-bar ul li {
    display: inline-block;
    margin: 2px;
    vertical-align: top;
    padding-left: 0;
    width: auto;
}

.pagination-bar ul li a {
    background: #f0f0f0;
    height: 35px;
    width: 35px;
    display: inline-block;
    line-height: 35px;
    text-align: center;
    transition: ease all 0.4s;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
}

.pagination-bar ul li.pageinfo {
    background: #f0f0f0;
    line-height: 35px;
    text-align: center;
    padding: 0 15px;
}

.pagination-bar ul li.active {
    background: #ea4234;
    color: #fff;
    height: 35px;
    width: 35px;
    display: inline-block;
    line-height: 35px;
    text-align: center;
}

.pagination-bar ul li a:hover {
    color: #fff;
    background: #ea4234;
}

@media screen and (min-width: 768px) {
    .im {
        width: 92px;
        position: fixed;
        right: -60px;
        top: 150px;
        transition: right 0.5s;
        bottom: auto;
        z-index: 11;
    }

    .im:hover {
        right: 0;
    }

    .im .box {
        position: absolute;
        display: block;
        width: 60px;
        right: 0;
        top: 0;
    }
}

/*返回顶部*/
.scroll {
    width: 40px;
    height: 40px;
    color: #fff;
    line-height: 42px;
    text-align: center;
    position: fixed;
    right: 34px;
    bottom: 74px;
    cursor: pointer;
    background-color: rgba(299, 63, 49, 0.5);
    border-radius: 4px;
    z-index: 10;
}

.scroll i {
    font-size: 28px;
}

@media (max-width: 1480px) {
    .top {
        padding: 0 2%;
        position: relative;
        top: 0;
    }
}

@media (min-width: 1301px) {
    .sv-acbl:hover p, .sv-acbl:hover div { /*display:block;*/
    }

    .lcolae li a:hover .pic img, .lmobl li a:hover .pic img, .aeopte li a:hover .pic img, .vloaec li a:hover .pic p img {
        transform: scale(1.05);
        transition: all 0.5s ease;
    }

    .wmore:hover {
        background-color: #ea4234;
        transition: all 0.5s ease;
        border-radius: 10px;
    }

    .vloaec li a:hover .tit {
        background: #ea4234;
        color: #fff;
        transition: all 0.5s ease;
    }
}

@media (max-width: 1300px) {
    .top {
        height: 58px;
        background: #fff;
        position: relative;
        top: 0;
    }
}

@media screen and (max-width: 768px) {
    .scroll {
        right: 0;
        bottom: 0;
    }
}

@media screen and (max-width: 750px) {
    .big-video {
        width: 100%;
        left: 0;
        margin-left: 0;
    }

    .big-video-main {
        height: 185px;
    }

    .big-video-clo {
        right: 0;
        z-index: 21;
    }
}

@media (max-width: 640px) {
    .vloaec li a .pic {
        height: 180px;
    }

    .vloaec li a .pic p img {
        max-height: 150px;
    }

    .vloaec li a .tit {
        font-size: 14px;
        line-height: 45px;
    }
}

/*移动端侧边,底部折叠*/
.sidebar-block-but, .footer-content-but {
    display: none;
}

@media screen and (max-width: 768px) {
    .footer-middle {
        padding-top: 10px;
    }

    .inner-message {
        margin-bottom: 0;
    }

    .sidebar-block-but, .footer-content-but {
        position: relative;
        padding: 10px 40px 10px 20px;
        background-color: #eee;
        display: block;
        border-bottom: 1px solid #ddd;
    }

    .sidebar-block-but span, .footer-content-but span {
        text-transform: uppercase;
        color: #666;
        font-size: 16px;
        line-height: 20px;
    }

    .sidebar-block-but button, .footer-content-but button {
        position: absolute;
        top: 9px;
        right: 5px;
        width: 30px;
        height: 24px;
        border: 0;
        color: #666;
        display: inline-block;
        border-radius: 0;
        line-height: 24px;
        background: none;
    }

    .sidebar-block-but button i, .footer-content-but button i {
        font-size: 20px;
        position: relative;
    }

    .sidebar-block-but button i::after, .footer-content-but button i::after {
        content: "\e660";
        font-family: "iconfont" !important;
    }

    .sidebar-block-but.expand button, .footer-content-but.expand button {
        transform: rotateZ(180deg);
    }

    .sidebar-box, .footer-main {
        display: none;
    }

    .sidebar-box.expand, .footer-main.expand {
        display: block;
    }
}

/*邮件*/
.inner-message { /*margin-bottom:30px;*/
    overflow: hidden;
}

.inner-message-t {
    background: #f0f0f0;
    padding: 10px 16px;
    margin-bottom: 20px;
}

.inner-message-t h5 {
    font-size: 18px;
    line-height: 24px;
}

.inner-message .th {
    font-size: 20px;
    margin-bottom: 10px;
}

.inner-message .inner-message-centered {
    font-size: 16px;
}

.inner-message .inner-message-centered span {
    color: #F60;
}

.inner-message-row {
    margin-top: 20px;
    overflow: hidden;
}

.inner-message-row .item {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

.inner-message-row .item input {
    color: #999;
    width: 100%;
    line-height: 30px;
    border: 0;
    height: 30px;
}

.inner-message-row .item textarea {
    color: #999;
    width: 100%;
    line-height: 30px;
    border: 0;
    font-family: "Outfit-Regular", 'Microsoft Yahei', 'Times New Roman', Arial;
    min-height: 150px;
}

.inner-message-row .item button {
    color: #fff;
    font-size: 14px;
    background-color: #ea4234;
    display: block;
    line-height: 30px;
    padding: 8px 20px;
    cursor: pointer;
    border: 0;
    position: relative;
}

.inner-message-row .item button:hover {
    border-radius: 5px;
}

.inner-message-row .item button:active {
    background-color: #F60;
}

.inner-message-row .item button i {
    z-index: 10
}

/*.inner-message-row .item button::after {position:absolute;content:'';top:0;left:0;width:0;height:100%;background:#ea4234;transition:all .4s;-webkit-transition:all .4s;}
.inner-message-row .item button:hover::after {width:100%;border-radius:5px;}*/
.inner-message-row .item.item-half {
    width: 50%;
}

.inner-message-half {
    padding: 8px;
    border: 1px solid #ddd;
    margin-right: 20px;
}

.inner-message-box {
    padding: 8px;
    border: 1px solid #ddd;
}

/* w101-inner-message — inquiry form card */
.w101-inner-message {
    margin: 40px 0 50px;
    padding: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(234, 66, 52, 0.12);
}

.w101-inner-message-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
    min-height: 0;
}

.w101-inner-message-head {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 32px;
    background: linear-gradient(160deg, #1a1a1a 0%, #2c2c2c 55%, #1f1f1f 100%);
    color: #fff;
}

.w101-inner-message-head::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ea4234, #d4a574);
}

.w101-inner-message-title {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 600;
    color: #fff;
}

.w101-inner-message-sub {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

.w101-inner-message-sub span {
    color: #d4a574;
    font-weight: 500;
}

.w101-inner-message-points {
    margin: 0;
    padding: 0;
    list-style: none;
}

.w101-inner-message-points li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.w101-inner-message-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ea4234;
}

.w101-inner-message-points li:last-child {
    margin-bottom: 0;
}

.w101-inner-message-form {
    display: block;
    margin-top: 0;
    padding: 32px 36px 36px;
    overflow: visible;
    background: #fff;
}

.w101-inner-message-form .form_ches,
.w101-inquiry-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
    margin: 0;
}

.w101-inner-message-form .item,
.w101-inner-message-form .form-group {
    display: none;
}

.w101-inquiry-field {
    min-width: 0;
}

.w101-inquiry-field--full,
.w101-inquiry-field--submit {
    grid-column: 1 / -1;
}

.w101-inquiry-label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    letter-spacing: 0.02em;
}

.w101-inquiry-label em {
    color: #ea4234;
    font-style: normal;
    margin-right: 2px;
}

.w101-inquiry-input,
.w101-inquiry-textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.w101-inquiry-input {
    height: 46px;
    padding: 0 14px;
}

.w101-inquiry-textarea {
    min-height: 130px;
    padding: 12px 14px;
    resize: vertical;
    font-family: inherit;
}

.w101-inquiry-input:focus,
.w101-inquiry-textarea:focus {
    outline: none;
    border-color: #ea4234;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(234, 66, 52, 0.1);
}

.w101-inquiry-input::placeholder,
.w101-inquiry-textarea::placeholder {
    color: #aaa;
}

.w101-inquiry-field--submit {
    padding-top: 4px;
}

.w101-inquiry-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 48px;
    padding: 0 36px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #ea4234 0%, #d63a2e 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.w101-inquiry-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(234, 66, 52, 0.35);
}

.w101-inquiry-submit:active {
    transform: translateY(0);
    background: #c93328;
}

.w101-inquiry-submit.submitting {
    padding-left: 50px;
    background-image: url(../images/loading2.gif);
    background-repeat: no-repeat;
    background-position: 14px center;
    background-color: #f5f5f5;
    color: #999;
    border: 1px solid #ddd;
    cursor: not-allowed !important;
    transform: none;
    box-shadow: none;
}

.w101-inner-message .error {
    color: #ea4234;
    font-size: 13px;
}

.mail-anchor {
    width: 100%;
    position: relative;
}

.mail-anchor #inquiry_area {
    position: absolute;
    top: -120px;
}

@media screen and (max-width: 992px) {
    .w101-inner-message-layout {
        grid-template-columns: 1fr;
    }

    .w101-inner-message-head {
        padding: 28px 24px;
    }

    .w101-inner-message-sub {
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 768px) {
    .w101-inner-message {
        margin: 24px 0 36px;
        border-radius: 10px;
    }

    .w101-inner-message-head {
        padding: 22px 18px;
    }

    .w101-inner-message-title {
        font-size: 20px;
    }

    .w101-inner-message-sub {
        font-size: 14px;
    }

    .w101-inner-message-form {
        padding: 20px 16px 24px;
    }

    .w101-inquiry-fields {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .w101-inquiry-field--half {
        grid-column: auto;
    }

    .w101-inquiry-submit {
        width: 100%;
        min-width: 0;
    }
}

/*产品详情页多图*/
.panel {
    width: 34% !important;
}

.annex_list {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 20px;
}

.annex_list ul li {
    line-height: 40px;
    font-size: 16px;
}

.annex_list ul li a i {
    font-size: 30px;
    color: #999;
}

.annex_list ul li a:hover, .annex_list ul li a:hover i {
    color: #ea4234;
}

.vlbamc {
    border: 1px solid #ddd;
    padding: 2%;
}

.bavlcn {
    margin-top: 3%;
}

.bavlcn a {
    display: inline-block;
    line-height: 50px;
    padding: 0 50px;
    background: #ea4234;
    color: #fff;
    font-size: 16px;
    position: relative;
}

.bavlcn a:hover {
    border-radius: 5px;
    color: #f00 !important;
    background: #fff !important;
}

.bavlcn a::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;

    border-radius: 5px;
    transition: all .4s;
    -webkit-transition: all .4s;
}

.bavlcn a:hover::after {
    width: 100%;
}

.bavlcn a b {
    z-index: 10;
    position: relative;
    font-weight: normal;
}

.bavlcn a i {
    font-size: 30px;
}

@media screen and (max-width: 768px) {
    .panel {
        width: 100% !important;
        float: left;
    }
}

/*产品详情页-产品推荐*/
.products_info {
    padding: .4rem;
    border: 1px solid #ddd;
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    .products_info {
        padding: 0;
        border: 0px solid #ddd;
        margin-bottom: 40px;
    }
}

.products_info .sec_m {
}

.products_info .sec_m .section {
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .section {
        padding: .5rem 0
    }
}

/*详情页-标题*/
.alcet_title {
    font-size: 18px;
    background: #eeeeee;
    height: 50px;
    line-height: 50px;
    border-left: 5px solid #ea4234;
    padding-left: 20px;
    color: #666;
}

.products_info .sec_m_pro .alcet_title {
    margin-top: 30px;
    margin-bottom: 30px;
}

@media screen and ( max-width: 768px) {
    .alcet_title {
        font-size: 16px;
        background: #eeeeee;
        height: auto;
        line-height: 30px;
        border-left: 5px solid #ea4234;
        padding-left: 20px;
        color: #666;
    }
}

.products_info .sec_m_pro ul li {
    list-style-type: initial;
}

.products_info .sec_m_pro p ul li {
    list-style-type: initial;
}

.products_info .sec_m_pro p {
    line-height: 30px;
}

.products_info .sec_m .swiper01 {
    padding-bottom: 0px;
}

.products_info .sec_m .swiper01 .swiper-slide .pic {
    border: 1px solid #ddd;
}

.products_info .sec_m .swiper01 .swiper-slide a .tit {
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    line-height: 60px;
    overflow: hidden;
    color: #666;
    font-size: 18px;
}

.products_info .sec_m .item {
    padding: 0 .15rem;
    position: relative;
    display: block;
}

.products_info .sec_m .imgs {
}

.products_info .sec_m h3 {
    height: 60px;
    line-height: 25px;
    font-size: 16px;
    background: rgba(0, 0, 0, 0);
    padding: 5px;
}

.products_info .sec_m h3:hover {
    height: 60px; /*line-height:60px;*/
    font-size: 16px;
    background: rgba(234, 64, 52, 1);
    color: #fff;
    text-align: center;
}

.products_info .sec_m a h3::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, .2);
    transition: all .4s;
    -webkit-transition: all .4s
}

.products_info .sec_m a:hover h3::after {
    color: #fff;
    background: rgba(255, 255, 255, .1);
    width: 100%;
    position: absolute;
}

.products_info .sec_m .slick-dots {
    display: none !important
}

.products_info .sec_m .slider .imgs {
}

.products_info .sec_m .slick-initialized .slick-slide .item h3 {
    text-align: center;
}

.sec_m .slick-dots {
    display: none !important;
}

.products_info .widget {
    clear: both;
    height: 35px;
    line-height: 35px;
    width: 100%;
    padding: 10px 0;
}

.products_info .video-js .vjs-big-play-button {
    top: 200px !important;
    left: 180px !important;
}

.products_info .article-append-t {
    border-left: 3px solid #ea4234;
    background-color: #eee;
    margin-bottom: 20px;
    margin-top: 40px;
    height: 35px;
    line-height: 35px;
}

.products_info .article-append-t span a {
    color: #ea4234;
    font-size: 16px;
    font-weight: bold;
    padding-left: 20px;
}

.products_info .alcet_pro_title {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    background: #eeeeee;
    height: 50px;
    line-height: 50px;
    border-left: 5px solid #ea4234;
    padding-left: 20px;
    color: #666;
}

.products_info .brief {
    float: left;
    width: 65%;
    position: relative;
    overflow: hidden;
    margin-left: 10px;
}

.products_info .tm-m-photo-viewer {
    max-width: 100%;
}

.products_info .thumbnail {
    max-width: 100%;
}

.products_info .brief h1 {
    font-size: 26px;
    color: #ea4234;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.products_info .brief p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 20px;
    color: #333;
    padding: 3px;
}

.products_info .brief span {
    color: #ea4234;
    font-weight: bold;
}

@media screen and (max-width: 1200px) {
    .products_info .brief {
        width: 60%;
    }
}

@media screen and (max-width: 768px) {
    .products_info .brief {
        width: 100%;
        float: none;
    }

    .products_info .brief h1 {
        padding-bottom: 15px;
        margin-bottom: 15px;
        margin-top: 30px;
        font-size: 20px;
    }

    .products_info .sec_m p {
        line-height: 25px;
    }

    .products_info .sec_m_pro .nei-table table {
        width: 100% !important;
    }

    .products_info .sec_m p iframe {
        width: 100% !important;
        height: 100% !important;
    }

    .products_info .sec_m p img {
        max-width: 100% !important;
        height: 100% !important;
    }
}

/* ===== w101-product-detail 产品详情美化 ===== */
.products_info.w101-product-detail {
    padding: 28px 32px 36px;
    border: none;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
    margin: 30px 0 40px;
}

.w101-product-detail-top {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 8px;
}

.w101-product-detail .panel.w101-product-gallery {
    width: auto !important;
    flex: 0 1 400px;
    max-width: 100%;
    min-width: 0;
    float: none;
}

.w101-product-detail .panel.w101-product-gallery .tm-m-photos {
    background: #fafafa;
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #eee;
}

.w101-product-detail .panel.w101-product-gallery .tm-m-photo-viewer {
    border: none;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.w101-product-detail .panel.w101-product-gallery .tm-m-photos-thumb li {
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.w101-product-detail .panel.w101-product-gallery .tm-m-photos-thumb .tm-current {
    border-color: #ea4234;
}

.w101-product-detail .brief.w101-product-info {
    flex: 1 1 360px;
    min-width: 0;
    width: auto;
    float: none;
    margin-left: 0;
}

.w101-product-detail .brief h1 {
    font-size: 26px;
    color: #222;
    border-bottom: none;
    padding: 0 0 0 16px;
    margin-bottom: 20px;
    position: relative;
    line-height: 1.35;
}

.w101-product-detail .brief h1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, #ea4234, #d4a574);
}

.w101-product-detail .brief p:has(> span) {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 10px;
    margin-bottom: 0;
    padding: 11px 16px;
    font-size: 15px;
    line-height: 1.5;
    color: #444;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

.w101-product-detail .brief p:has(> span):first-of-type {
    border-radius: 8px 8px 0 0;
}

.w101-product-detail .brief p:has(> span):last-of-type {
    border-radius: 0 0 8px 8px;
    margin-bottom: 16px;
}

.w101-product-detail .brief p:has(> span):only-of-type {
    border-radius: 8px;
    margin-bottom: 16px;
}

.w101-product-detail .brief p:not(:has(> span)) {
    margin: 16px 0;
    padding: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    background: transparent;
}

.w101-product-detail .brief span {
    color: #ea4234;
    font-weight: 600;
    flex-shrink: 0;
}

.w101-product-detail .annex_list {
    margin: 16px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.w101-product-detail .annex_list ul li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 6px;
    background: #fafafa;
    border: 1px solid #eee;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.w101-product-detail .annex_list ul li a:hover {
    background: #fff;
    border-color: #ea4234;
}

.w101-product-detail .bavlcn {
    margin-top: 20px;
}

.w101-product-detail .bavlcn a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1.2;
    padding: 14px 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ea4234 0%, #d63a2e 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.w101-product-detail .bavlcn a:hover {
    color: #fff !important;
    background: linear-gradient(135deg, #d63a2e 0%, #c93328 100%) !important;
    border-radius: 8px;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(234, 66, 52, 0.35);
}

.w101-product-detail .bavlcn a::after {
    display: none;
}

.w101-product-detail .bavlcn a i {
    font-size: 20px;
}

.w101-product-block-title {
    position: relative;
    margin: 36px 0 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.w101-product-block-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 60px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #ea4234, #d4a574);
}

.w101-product-block-title span {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
}

.w101-product-desc-block {
    margin-top: 8px;
}

.w101-product-desc-block .alcet_title {
    display: none;
}

.w101-product-desc-block p {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 14px;
}

.w101-product-desc-block ul li {
    line-height: 1.75;
    color: #444;
    margin-bottom: 6px;
}

.w101-product-desc-block img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.w101-product-related {
    width: 100%;
    margin-top: 8px;
}

.w101-product-related ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    font-size: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.w101-product-related ul li {
    font-size: 14px;
    width: auto;
    display: block;
    vertical-align: top;
}

.w101-product-related ul li .item {
    padding: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.w101-product-related ul li .item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.w101-product-related ul li .item .image {
    aspect-ratio: 1;
    overflow: hidden;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.w101-product-related ul li .item .image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.w101-product-related ul li .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    max-width: none;
    display: block;
}

.w101-product-related ul li .item .text {
    font-size: 14px;
    line-height: 1.45;
    margin: 0;
    padding: 12px 14px 14px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.w101-product-tags-block .product-tag {
    margin-top: 8px;
    padding: 20px 0 0;
    border-top: 1px solid #eee;
}

.w101-product-tags-block .product-tag span {
    font-weight: 600;
}

.w101-product-tags-block .product-tag-item a {
    margin: 4px 8px 4px 0;
    padding: 5px 14px;
    border-radius: 20px;
    background: #fafafa;
    border: 1px solid #eee;
    color: #555;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.w101-product-tags-block .product-tag-item a:hover {
    color: #ea4234;
    border-color: #ea4234;
    background: #fff;
}

@media screen and (max-width: 1200px) {
    .w101-product-detail .brief.w101-product-info {
        width: auto;
    }
}

@media screen and (max-width: 768px) {
    .products_info.w101-product-detail {
        padding: 16px;
        margin: 16px 0 30px;
        border-radius: 10px;
    }

    .w101-product-detail-top {
        gap: 20px;
    }

    .w101-product-detail .panel.w101-product-gallery {
        flex: 1 1 100%;
    }

    .w101-product-detail .brief.w101-product-info {
        flex: 1 1 100%;
    }

    .w101-product-detail .brief h1 {
        font-size: 20px;
        margin-top: 0;
    }

    .w101-product-block-title {
        margin: 28px 0 18px;
    }

    .w101-product-block-title span {
        font-size: 18px;
    }

    .w101-product-related ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .w101-product-detail .bavlcn a {
        width: 100%;
        justify-content: center;
    }
}

.widget {
    clear: both;
    height: 35px;
    line-height: 35px;
    width: 100%;
    padding: 10px 0;
}

.video-js .vjs-big-play-button {
    top: 200px !important;
    left: 180px !important;
}

/*表格*/
.nei-table {
    width: 100%;
    overflow: auto;
}

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

.nei-table table, .nei-table table th, .nei-table table td {
    border: 1px solid #666;
}

.nei-table table th, .nei-table table td {
    padding: 4px 10px;
}

/*幻灯图开始*/
#about_pb { /*width:100%;*/
    max-width: 800px;
    margin-left: 30px;
}

#promotion_banners {
    width: 100%;
    overflow: hidden;
}

#promotion_banners li {
    width: 100%;
    height: 100%;
}

.switcher_2 {
    position: absolute;
    right: 5px;
    bottom: 5px;
}

.product_box {
    width: 100%;
    max-width: 450px;
    min-width: 320px;
}

.product_box .banners {
    height: 450px;
    overflow: hidden;
    border: 1px solid #e6e6e6;
}

.pb {
    display: inline-block;
    position: relative;
    height: auto;
    float: left;
    margin-bottom: 10px;
    z-index: 0;
}

.pb .points_2 li {
    width: 22px;
    height: 22px;
    text-align: center;
    cursor: pointer;
    float: left;
    margin-right: 5px;
    background-color: #999;
    line-height: 22px;
    color: #FFF;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
}

.pb .points_2 li.current {
    color: #FFF;
    margin-right: 5px;
    height: 22px;
    width: 22px; /*border:1px solid #FFF;*/
    background-color: #ea4234;
}

.pb .banners {
    float: left;
    padding: 0px;
    margin: 0px;
}

.pb .banners li {
    display: none;
    padding: 0px;
}

.pb .banners li.current {
    display: block;
}

.pb .switcher {
    width: 100%;
    display: block;
    height: auto;
    overflow: hidden;
}

.pb .points {
    font-size: 0px;
    margin-top: 4px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    width: 100%;
    overflow: hidden;
}

.pb .points li {
    width: 70px;
    height: 70px;
    background-position: 0px 0px;
    text-align: center;
    cursor: pointer;
    float: left;
    margin-right: 8px;
    border: 1px solid #e6e6e6;
    display: table;
    margin-top: 8px;
}

.pb .points li i {
    width: 100%;
    overflow: hidden;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.pb .points li img {
    max-height: 70px;
    max-width: 70px;
    vertical-align: middle;
    display: table-cell;
    z-index: -1;
    position: relative;
}

.pb .points li.current {
    color: #FFF;
    margin-right: 8px;
    height: 70px;
    width: 70px;
    border: 1px solid #F00;
}

.C_top_R1IMG {
    width: 100%;
    height: 100%;
    position: relative;
    display: table;
    text-align: center;
}

.C_top_R1IMG a {
    width: 100%;
    overflow: hidden;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}

.C_top_R1IMG img {
    vertical-align: middle;
    max-width: 100%;
    max-height: 450px;
}

.C_top_R1IMG a h5 {
    height: 30px;
    position: absolute;
    z-index: 3;
    bottom: 40px;
    left: 0px;
    font-weight: bold;
    padding-left: 10px;
    width: 500px;
    font-size: 22px;
    line-height: 30px;
    color: #FFFFFF;
    font-weight: normal;
}

.C_top_R1IMG a p {
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    position: absolute;
    z-index: 3;
    bottom: 15px;
    left: 0px;
    width: 500px;
    padding-left: 10px;
    height: 20px;
}

.C_top_R1IMG a span {
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5 !important;
    height: 80px;
    width: 100%;
    position: absolute;
    z-index: 2;
    left: 0px;
    bottom: 0px;
    background-color: #000000;
}

.C_top_R1IMG2 {
    width: 100%;
    height: auto;
}

.C_top_R1IMG2 a img {
    width: 100%;
    height: 100%;
}

@media (max-width: 1200px) {
    .main-nav {
        width: 100%;
    }
}

@media (max-width: 768px) {
    #about_pb {
        width: 100%;
        margin-left: 0px;
    }

    .product_box .banners {
        height: 300px;
    }

    .pb .points li img {
        max-width: 80px;
    }
}

/*幻灯图结束*//*详情页标签*/
.product-tag {
    display: flex;
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid #ececec;
}

.product-tag-title {
    display: inline-block;
}

.product-tag span {
    font-size: 16px;
    padding: 5px 0;
    float: left;
    white-space: nowrap;
    color: #ea4234;
}

.product-tag-item {
    vertical-align: top;
}

.product-tag-item a {
    margin: 5px 12px;
    line-height: 20px;
    font-size: 14px;
    display: inline-block;
}

.product-tag-item a:hover {
    color: #8dc73f;
}

/*上下篇*/
.other-upper-next {
    border-bottom: 1px solid #d9d9d9;
    overflow: hidden;
    line-height: 28px;
    font-size: 18px;
    padding: 20px;
    background-color: #fff;
    margin-bottom: 30px;
}

.other-upper-next-box {
    overflow: hidden;
}

.other-upper-next .other-upper {
    float: left;
}

.other-upper-next .other-next {
    float: right;
}

.other-upper-next .other-upper i {
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.other-upper-next .other-next i {
    float: right;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.other-upper-next span a:hover {
    color: #ea4234;
}

/*详情页seo内容*/
.article-append {
    padding: 10px 0;
    overflow: hidden
}

.article-outline {
    margin-bottom: 20px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.05);
    margin-top: 10px
}

.article-outline p {
    font-size: 16px
}

.append-item {
    padding: 10px 0;
    border-top: 1px solid #ccc;
    overflow: hidden;
    margin-bottom: 20px
}

.article-append-t {
    overflow: hidden
}

.article-append-t span {
    font-size: 18px;
    line-height: 22px;
    display: inline-block;
    border-bottom: 1px solid #8e969b;
    padding: 5px 0
}

.append-item h2 {
    font-size: 18px;
    text-align: left
}

.append-item p {
    overflow: hidden;
    text-align: left
}

@media screen and (max-width: 426px) {
    .article-outline {
        margin-top: 20px
    }
}

/*证书放大*/
body.fancybox-active {
    overflow: hidden
}

body.fancybox-iosfix {
    position: fixed;
    left: 0;
    right: 0
}

.fancybox-is-hidden {
    position: absolute;
    top: -9999px;
    left: -9999px;
    visibility: hidden
}

.fancybox-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99992;
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    font-family: "Outfit-Regular", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif
}

.fancybox-bg, .fancybox-inner, .fancybox-outer, .fancybox-stage {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.fancybox-outer {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
}

.fancybox-bg {
    background: #1e1e1e;
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47, 0, .74, .71)
}

.fancybox-is-open .fancybox-bg {
    opacity: .87;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1)
}

.fancybox-caption-wrap, .fancybox-infobar, .fancybox-toolbar {
    position: absolute;
    direction: ltr;
    z-index: 99997;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility 0s linear .25s;
    box-sizing: border-box
}

.fancybox-show-caption .fancybox-caption-wrap, .fancybox-show-infobar .fancybox-infobar, .fancybox-show-toolbar .fancybox-toolbar {
    opacity: 1;
    visibility: visible;
    transition: opacity .25s, visibility 0s
}

.fancybox-infobar {
    top: 0;
    left: 0;
    font-size: 13px;
    padding: 0 10px;
    height: 44px;
    min-width: 44px;
    line-height: 44px;
    color: #ccc;
    text-align: center;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: subpixel-antialiased;
    mix-blend-mode: exclusion
}

.fancybox-toolbar {
    top: 0;
    right: 0;
    margin: 0;
    padding: 0
}

.fancybox-stage {
    overflow: hidden;
    direction: ltr;
    z-index: 99994;
    -webkit-transform: translateZ(0)
}

.fancybox-is-closing .fancybox-stage {
    overflow: visible
}

.fancybox-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    outline: none;
    white-space: normal;
    box-sizing: border-box;
    text-align: center;
    z-index: 99994;
    -webkit-overflow-scrolling: touch;
    display: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform
}

.fancybox-slide:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0
}

.fancybox-is-sliding .fancybox-slide, .fancybox-slide--current, .fancybox-slide--next, .fancybox-slide--previous {
    display: block
}

.fancybox-slide--image {
    overflow: visible
}

.fancybox-slide--image:before {
    display: none
}

.fancybox-slide--video .fancybox-content, .fancybox-slide--video iframe {
    background: #000
}

.fancybox-slide--map .fancybox-content, .fancybox-slide--map iframe {
    background: #e5e3df
}

.fancybox-slide--next {
    z-index: 99995
}

.fancybox-slide > * {
    display: inline-block;
    position: relative;
    padding: 24px;
    margin: 44px 0;
    border-width: 0;
    vertical-align: middle;
    text-align: left;
    background-color: #fff;
    overflow: auto;
    box-sizing: border-box
}

.fancybox-slide > base, .fancybox-slide > link, .fancybox-slide > meta, .fancybox-slide > script, .fancybox-slide > style, .fancybox-slide > title {
    display: none
}

.fancybox-slide .fancybox-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    border: 0;
    z-index: 99995;
    background: transparent;
    cursor: default;
    overflow: visible;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform
}

.fancybox-can-zoomOut .fancybox-image-wrap {
    cursor: zoom-out
}

.fancybox-can-zoomIn .fancybox-image-wrap {
    cursor: zoom-in
}

.fancybox-can-drag .fancybox-image-wrap {
    cursor: -webkit-grab;
    cursor: grab
}

.fancybox-is-dragging .fancybox-image-wrap {
    cursor: -webkit-grabbing;
    cursor: grabbing
}

.fancybox-image, .fancybox-spaceball {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    max-width: none;
    max-height: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fancybox-spaceball {
    z-index: 1
}

.fancybox-slide--iframe .fancybox-content {
    padding: 0;
    width: 80%;
    height: 80%;
    max-width: calc(100% - 100px);
    max-height: calc(100% - 88px);
    overflow: visible;
    background: #fff
}

.fancybox-iframe {
    display: block;
    padding: 0;
    border: 0;
    height: 100%
}

.fancybox-error, .fancybox-iframe {
    margin: 0;
    width: 100%;
    background: #fff
}

.fancybox-error {
    padding: 40px;
    max-width: 380px;
    cursor: default
}

.fancybox-error p {
    margin: 0;
    padding: 0;
    color: #444;
    font-size: 16px;
    line-height: 20px
}

.fancybox-button {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 10px;
    border: 0;
    border-radius: 0;
    background: rgba(30, 30, 30, .6);
    transition: color .3s ease;
    cursor: pointer;
    outline: none
}

.fancybox-button, .fancybox-button:link, .fancybox-button:visited {
    color: #ccc
}

.fancybox-button:focus, .fancybox-button:hover {
    color: #fff
}

.fancybox-button[disabled] {
    color: #ccc;
    cursor: default;
    opacity: .6
}

.fancybox-button svg {
    display: block;
    position: relative;
    overflow: visible;
    shape-rendering: geometricPrecision
}

.fancybox-button svg path {
    fill: currentColor;
    stroke: currentColor;
    stroke-linejoin: round;
    stroke-width: 3
}

.fancybox-button--share svg path {
    stroke-width: 1
}

.fancybox-button--pause svg path:nth-child(1), .fancybox-button--play svg path:nth-child(2) {
    display: none
}

.fancybox-button--zoom svg path {
    fill: transparent
}

.fancybox-navigation {
    display: none
}

.fancybox-show-nav .fancybox-navigation {
    display: block
}

.fancybox-navigation button {
    position: absolute;
    top: 50%;
    margin: -50px 0 0;
    z-index: 99997;
    background: transparent;
    width: 60px;
    height: 100px;
    padding: 17px
}

.fancybox-navigation button:before {
    content: "";
    position: absolute;
    top: 30px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(30, 30, 30, .6)
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0
}

.fancybox-navigation .fancybox-button--arrow_right {
    right: 0
}

.fancybox-close-small {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    z-index: 10;
    cursor: pointer
}

.fancybox-close-small:after {
    content: "×";
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    font: 22px/30px Arial, Helvetica Neue, Helvetica, sans-serif;
    color: #888;
    font-weight: 300;
    text-align: center;
    border-radius: 50%;
    border-width: 0;
    background-color: transparent;
    transition: background-color .25s;
    box-sizing: border-box;
    z-index: 2
}

.fancybox-close-small:focus {
    outline: none
}

.fancybox-close-small:focus:after {
    outline: 1px dotted #888
}

.fancybox-close-small:hover:after {
    color: #555;
    background: #eee
}

.fancybox-slide--iframe .fancybox-close-small, .fancybox-slide--image .fancybox-close-small {
    top: 0;
    right: -40px
}

.fancybox-slide--iframe .fancybox-close-small:after, .fancybox-slide--image .fancybox-close-small:after {
    font-size: 35px;
    color: #aaa
}

.fancybox-slide--iframe .fancybox-close-small:hover:after, .fancybox-slide--image .fancybox-close-small:hover:after {
    color: #fff;
    background: transparent
}

.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
    display: none
}

.fancybox-caption-wrap {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 2vw 0;
    background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .1) 20%, rgba(0, 0, 0, .2) 40%, rgba(0, 0, 0, .6) 80%, rgba(0, 0, 0, .8));
    pointer-events: none
}

.fancybox-caption {
    padding: 30px 0;
    border-top: 1px solid hsla(0, 0%, 100%, .4);
    font-size: 14px;
    color: #fff;
    line-height: 20px;
    -webkit-text-size-adjust: none
}

.fancybox-caption a, .fancybox-caption button, .fancybox-caption select {
    pointer-events: all;
    position: relative
}

.fancybox-caption a {
    color: #fff;
    text-decoration: underline
}

.fancybox-slide > .fancybox-loading {
    border: 6px solid hsla(0, 0%, 39%, .4);
    border-top: 6px solid hsla(0, 0%, 100%, .6);
    border-radius: 100%;
    height: 50px;
    width: 50px;
    -webkit-animation: a .8s infinite linear;
    animation: a .8s infinite linear;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    z-index: 99999
}

@-webkit-keyframes a {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes a {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, .25, 1)
}

.fancybox-fx-slide.fancybox-slide--previous {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    opacity: 0
}

.fancybox-fx-slide.fancybox-slide--next {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    opacity: 0
}

.fancybox-fx-slide.fancybox-slide--current {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
}

.fancybox-fx-fade.fancybox-slide--next, .fancybox-fx-fade.fancybox-slide--previous {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
    opacity: 0
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    -webkit-transform: scale3d(.5, .5, .5);
    transform: scale3d(.5, .5, .5);
    opacity: 0
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1
}

.fancybox-fx-rotate.fancybox-slide--previous {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn);
    opacity: 0
}

.fancybox-fx-rotate.fancybox-slide--next {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
    opacity: 0
}

.fancybox-fx-rotate.fancybox-slide--current {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1
}

.fancybox-fx-circular.fancybox-slide--previous {
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    opacity: 0
}

.fancybox-fx-circular.fancybox-slide--next {
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    opacity: 0
}

.fancybox-fx-circular.fancybox-slide--current {
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0);
    opacity: 1
}

.fancybox-fx-tube.fancybox-slide--previous {
    -webkit-transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
    transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg)
}

.fancybox-fx-tube.fancybox-slide--next {
    -webkit-transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
    transform: translate3d(100%, 0, 0) scale(.1) skew(10deg)
}

.fancybox-fx-tube.fancybox-slide--current {
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1)
}

.fancybox-share {
    padding: 30px;
    border-radius: 3px;
    background: #f4f4f4;
    max-width: 90%;
    text-align: center
}

.fancybox-share h1 {
    color: #222;
    margin: 0 0 20px;
    font-size: 35px;
    font-weight: 700
}

.fancybox-share p {
    margin: 0;
    padding: 0
}

p.fancybox-share__links {
    margin-right: -10px
}

.fancybox-share__button {
    display: inline-block;
    text-decoration: none;
    margin: 0 10px 10px 0;
    padding: 0 15px;
    min-width: 130px;
    border: 0;
    border-radius: 3px;
    background: #fff;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    transition: all .2s
}

.fancybox-share__button:hover {
    text-decoration: none
}

.fancybox-share__button--fb {
    background: #3b5998
}

.fancybox-share__button--fb:hover {
    background: #344e86
}

.fancybox-share__button--pt {
    background: #bd081d
}

.fancybox-share__button--pt:hover {
    background: #aa0719
}

.fancybox-share__button--tw {
    background: #1da1f2
}

.fancybox-share__button--tw:hover {
    background: #0d95e8
}

.fancybox-share__button svg {
    position: relative;
    top: -1px;
    width: 25px;
    height: 25px;
    margin-right: 7px;
    vertical-align: middle
}

.fancybox-share__button svg path {
    fill: #fff
}

.fancybox-share__input {
    box-sizing: border-box;
    width: 100%;
    margin: 10px 0 0;
    padding: 10px 15px;
    background: transparent;
    color: #5d5b5b;
    font-size: 14px;
    outline: none;
    border: 0;
    border-bottom: 2px solid #d7d7d7
}

.fancybox-thumbs {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 212px;
    margin: 0;
    padding: 2px 2px 4px;
    background: #fff;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    box-sizing: border-box;
    z-index: 99995
}

.fancybox-thumbs-x {
    overflow-y: hidden;
    overflow-x: auto
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px
}

.fancybox-thumbs > ul {
    list-style: none;
    position: absolute;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 0;
    white-space: nowrap
}

.fancybox-thumbs-x > ul {
    overflow: hidden
}

.fancybox-thumbs-y > ul::-webkit-scrollbar {
    width: 7px
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px
}

.fancybox-thumbs > ul > li {
    float: left;
    overflow: hidden;
    padding: 0;
    margin: 2px;
    width: 100px;
    height: 75px;
    max-width: calc(50% - 4px);
    max-height: calc(100% - 8px);
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-sizing: border-box
}

li.fancybox-thumbs-loading {
    background: rgba(0, 0, 0, .1)
}

.fancybox-thumbs > ul > li > img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
    max-height: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fancybox-thumbs > ul > li:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 4px solid #4ea7f9;
    z-index: 99991;
    opacity: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94)
}

.fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
    opacity: 1
}

@media (max-width: 800px) {
    .fancybox-thumbs {
        width: 110px
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px
    }

    .fancybox-thumbs > ul > li {
        max-width: calc(100% - 10px)
    }
}

@media (max-width: 767px) {
    .fix-video .video-wrap {
        max-width: 90%
    }

    .fix-search {
        padding: 0 15px
    }

    .fix-search .search {
        height: 65px;
        padding-left: 0;
        background: 0 0
    }

    .fix-search .txt {
        font-size: 20px;
        text-align: left;
        padding: 0 10px
    }

    .fix-search .btn {
        font-size: 22px;
        color: #777
    }
}

/*swiper.min.css样式表*/
.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-container-no-flexbox .swiper-slide {
    float: left
}

.swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.swiper-container-multirow > .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
    height: auto
}

.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: transform, height;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform
}

.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal > .swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.swiper-container-wp8-vertical, .swiper-container-wp8-vertical > .swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

@media screen and (max-width: 768px) {
    .swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
        width: 95%
    }
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(.33);
    -ms-transform: scale(.33);
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(.66);
    -ms-transform: scale(.66);
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(.33);
    -ms-transform: scale(.33);
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(.66);
    -ms-transform: scale(.66);
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(.33);
    -ms-transform: scale(.33);
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: .2s top, .2s -webkit-transform;
    transition: .2s top, .2s -webkit-transform;
    -o-transition: .2s transform, .2s top;
    transition: .2s transform, .2s top;
    transition: .2s transform, .2s top, .2s -webkit-transform
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: .2s left, .2s -webkit-transform;
    transition: .2s left, .2s -webkit-transform;
    -o-transition: .2s transform, .2s left;
    transition: .2s transform, .2s left;
    transition: .2s transform, .2s left, .2s -webkit-transform
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: .2s right, .2s -webkit-transform;
    transition: .2s right, .2s -webkit-transform;
    -o-transition: .2s transform, .2s right;
    transition: .2s transform, .2s right;
    transition: .2s transform, .2s right, .2s -webkit-transform
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff
}

.swiper-pagination-progressbar.swiper-pagination-white {
    background: rgba(255, 255, 255, .25)
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000
}

.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0, 0, 0, .25)
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, .1)
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite
}

.swiper-lazy-preloader:after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube {
    overflow: visible
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0
}

.swiper-container-flip {
    overflow: visible
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-container-coverflow .swiper-wrapper {
    -ms-perspective: 1200px
}

.swiper01 {
    margin-top: 4%;
    padding-bottom: 80px;
    position: relative;
}

.swiper01 .swiper-slide {
}

.swiper01 .swiper-slide a {
    display: block;
}

.swiper01 .swiper-slide .pic {
    background: #fff;
    display: table;
    width: 100%;
    height: 316px;
}

.swiper01 .swiper-slide .pic p {
    display: table-cell;
    vertical-align: middle;
    overflow: hidden;
}

.swiper01 .swiper-slide a .pic img {
    max-width: 90%;
    max-height: 260px;
    transition: all 0.5s ease;
}

.swiper01 .swiper-slide a .tit {
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    line-height: 60px;
    overflow: hidden;
    color: #fff;
    font-size: 18px;
}

.swiper01 .swiper-button-next, .swiper01 .swiper-button-prev {
    width: 40px;
    height: 40px;
    bottom: 4px;
    top: auto;
    z-index: 5;
}

.swiper01 .swiper-button-prev {
    left: 50%;
    margin-left: -120px;
}

.swiper01 .swiper-button-next {
    right: 50%;
    margin-right: -120px;
}

.swiper02 {
    margin-top: 4%;
    padding-bottom: 80px;
    position: relative;
}

.swiper02 .swiper-slide {
}

.swiper02 .swiper-slide a {
    display: block;
}

.swiper02 .swiper-slide .pic {
    background: #fff;
    display: table;
    width: 100%;
    height: 316px;
}

.swiper02 .swiper-slide .pic p {
    display: table-cell;
    vertical-align: middle;
    overflow: hidden;
}

.swiper02 .swiper-slide a .pic img {
    max-width: 90%;
    max-height: 260px;
    transition: all 0.5s ease;
}

.swiper02 .swiper-slide a .tit {
    height: 60px; /*background:rgba(255,255,255,0.3);*/
    line-height: 60px;
    overflow: hidden;
    color: #fff;
    font-size: 18px;
}

.swiper02 .swiper-button-next, .swiper02 .swiper-button-prev {
    width: 40px;
    height: 40px;
    bottom: 4px;
    top: auto;
    z-index: 5;
}

.swiper02 .swiper-button-prev {
    background: url(../images/left4.png) no-repeat center center;
    left: 50%;
    margin-left: -120px;
}

.swiper02 .swiper-button-next {
    background: url(../images/right4.png) no-repeat center center;
    right: 50%;
    margin-right: -120px;
}

@media (min-width: 1201px) {
    .swiper01 .swiper-slide a:hover .pic img {
        transition: all 0.5s ease;
        transform: scale(1.1);
    }

    .swiper02 .swiper-slide a:hover .pic img {
        transition: all 0.5s ease;
        transform: scale(1.1);
    }
}

/*样式修改*/
footer .social-link .instagram {
    background-color: #fc0165;
}

footer .social-link .facebook {
    background-color: #425f9b;
}

footer .social-link .youTube {
    background-color: #ff4d3f;
    color: #ffffff;
}

footer .social-link .linkedin {
    background-color: #6b00ff;
    border-radius: 20px;
}

footer .social-link .whatsapp {
    background-color: #00c451;
    color: #ffffff;
}

footer .social-link a i {
    display: block;
    font-size: 20px;
    line-height: 1;
    font-style: normal;
}

footer .social-link a i.iconfont::before {
    content: none !important;
}

.product_category .mauto .mml_row ul {
    justify-content: center;
    margin: unset;
}

/* ============================================================
 * 【自定义修改】首页 Product Category 版块
 * 页面位置：index.html 约第 636 行
 * 选择器：.product_category.home_hot_products:not(.home_we_offfr)
 * 说明：仅影响「Product Category」，不影响下方 WE OFFFR / HOT PRODUCTS
 * ============================================================ */

/* 【修改①】图片布局：一行3张，卡片固定 300px，间距 90px */
.product_category.home_hot_products:not(.home_we_offfr) .mauto .mml_row ul {
    gap: 90px;
    max-width: calc(300px * 3 + 180px);
    margin-left: auto;
    margin-right: auto;
}

.product_category.home_hot_products:not(.home_we_offfr) .mauto .mml_row ul li {
    width: 300px;
    max-width: 300px;
    flex: 0 0 300px;
    margin: 0 0 30px;
    position: relative;
    text-align: center;
}

/* 【修改①】平板端 */
@media (max-width: 1200px) {
    .product_category.home_hot_products:not(.home_we_offfr) .mauto .mml_row ul li {
        width: calc(50% - 8px);
        max-width: 300px;
        flex: 0 0 calc(50% - 8px);
    }
}

/* 【修改①】手机端：一行2个 */
@media screen and (max-width: 768px) {
    .product_category.home_hot_products:not(.home_we_offfr) .mauto .mml_row ul {
        gap: 10px;
        max-width: 100%;
    }

    .product_category.home_hot_products:not(.home_we_offfr) .mauto .mml_row ul li {
        width: calc((100% - 10px) / 2);
        max-width: none;
        flex: 0 0 calc((100% - 10px) / 2);
        margin: 0 0 12px;
    }
}

.product_category .mauto .mml_row ul li {
    max-width: 354px;
    margin: 0 4px 30px;
    width: 33.333%;
    position: relative;
    text-align: center;
}

/* WE OFFFR 版块：电脑端4个一行，共8个 */
.product_category.home_we_offfr .mauto .mml_row ul li {
    width: calc(25% - 8px);
}

@media (max-width: 1200px) {
    .product_category.home_we_offfr .mauto .mml_row ul li {
        width: calc(50% - 8px);
    }
}

@media screen and (max-width: 768px) {
    .product_category.home_we_offfr .mauto .mml_row ul li {
        width: 49%;
        margin: 0.5%;
    }
}

/* 【修改②】版块背景色（#ffffff 白底 / #0a0a0a 黑底） */
.product_category.home_hot_products:not(.home_we_offfr) {
    background-color: #ffffff;
}

/* 【修改③】标题样式（EXPLORE 副标题 + PRODUCT CATEGORY 主标题） */
.product_category.home_hot_products:not(.home_we_offfr) .home_title h2 {
    margin-bottom: 52px;
    padding-bottom: 0;
}

.product_category.home_hot_products:not(.home_we_offfr) .home_title h2::before {
    content: "EXPLORE";
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: #d4a574;
    font-style: normal;
    margin-bottom: 14px;
    line-height: 1;
}

.product_category.home_hot_products:not(.home_we_offfr) .home_title h2::after {
    left: 50%;
    bottom: -20px;
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ea4234 20%, #d4a574 50%, #ea4234 80%, transparent);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

/* 【修改③】主标题文字颜色（白底时改为 #1a1a1a，黑底时用 #fff） */
.product_category.home_hot_products:not(.home_we_offfr) .home_title h2 em {
    display: inline-block;
    position: relative;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #1a1a1a;
    text-transform: uppercase;
    line-height: 1.2;
}

.product_category.home_hot_products:not(.home_we_offfr) .home_title h2 em::before,
.product_category.home_hot_products:not(.home_we_offfr) .home_title h2 em::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 72px;
    height: 1px;
}

.product_category.home_hot_products:not(.home_we_offfr) .home_title h2 em::before {
    right: calc(100% + 28px);
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.55));
}

.product_category.home_hot_products:not(.home_we_offfr) .home_title h2 em::after {
    left: calc(100% + 28px);
    background: linear-gradient(90deg, rgba(212, 165, 116, 0.55), transparent);
}

@media screen and (max-width: 768px) {
    .product_category.home_hot_products:not(.home_we_offfr) .home_title h2 {
        margin-bottom: 40px;
    }

    .product_category.home_hot_products:not(.home_we_offfr) .home_title h2::before {
        font-size: 10px;
        letter-spacing: 0.28em;
        margin-bottom: 10px;
    }

    .product_category.home_hot_products:not(.home_we_offfr) .home_title h2 em {
        font-size: 28px;
        letter-spacing: 0.08em;
    }

    .product_category.home_hot_products:not(.home_we_offfr) .home_title h2 em::before,
    .product_category.home_hot_products:not(.home_we_offfr) .home_title h2 em::after {
        display: none;
    }

    .product_category.home_hot_products:not(.home_we_offfr) .home_title h2::after {
        width: 80px;
        bottom: -14px;
    }
}

/* ===== w101-header-top 顶栏美化 ===== */
header .header-top.w101-header-top {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    border-bottom: none;
    position: relative;
}

header .header-top.w101-header-top::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ea4234 20%, #d4a574 50%, #ea4234 80%, transparent);
}

header .header-top.w101-header-top .mauto {
    width: 95%;
    max-width: none;
}

header .header-top.w101-header-top #top1.top1c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
    line-height: 1.3;
    min-height: 28px;
}

header .header-top.w101-header-top .top-contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    float: none;
}

header .header-top.w101-header-top .top-contact li {
    display: block;
    margin: 0;
    float: none;
}

header .header-top.w101-header-top .top-contact li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.25s ease;
}

header .header-top.w101-header-top .top-contact li a:hover {
    color: #fff;
}

header .header-top.w101-header-top .top-contact li a i {
    display: inline-block;
    color: #ea4234;
    font-size: 13px;
    flex-shrink: 0;
    transition: color 0.25s ease;
}

header .header-top.w101-header-top .top-contact li a:hover i {
    color: #fff;
}

header .header-top.w101-header-top .top-contact li a span {
    white-space: nowrap;
}

header .header-top.w101-header-top .language {
    float: none;
    flex-shrink: 0;
}

header .header-top.w101-header-top .language .cur {
    padding: 2px 10px 2px 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

header .header-top.w101-header-top .language .cur:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(234, 66, 52, 0.4);
}

header .header-top.w101-header-top .language .cur e {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    line-height: 18px;
    padding-left: 26px;
}

header .header-top.w101-header-top .language .cur e i {
    color: rgba(255, 255, 255, 0.5) !important;
    transition: transform 0.25s ease, color 0.25s ease;
}

header .header-top.w101-header-top .language .cur:hover e {
    color: #fff;
}

header .header-top.w101-header-top .language .cur:hover e i {
    color: #ea4234 !important;
    transform: rotate(180deg);
}

header .header-top.w101-header-top .language ul.language-list {
    top: calc(100% + 8px);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    min-width: 140px;
}

header .header-top.w101-header-top .language ul.language-list li {
    border-bottom-color: #f0f0f0;
    border-radius: 4px;
    margin: 2px 0;
}

header .header-top.w101-header-top .language ul.language-list li:last-child {
    border-bottom: none;
}

@media screen and (max-width: 768px) {
    header .header-top.w101-header-top #top1.top1c {
        padding: 3px 12px;
        min-height: 26px;
    }

    header .header-top.w101-header-top #top1 .top1c_l.top-contact {
        display: flex !important;
        align-items: center;
        flex: 1;
        min-width: 0;
        margin: 0 8px 0 0;
        gap: 0;
    }

    header .header-top.w101-header-top #top1 .top1c_l.top-contact li.website-whatsapp {
        display: none !important;
    }

    header .header-top.w101-header-top .top-contact .website-mailbox {
        display: block;
        min-width: 0;
        max-width: 100%;
    }

    header .header-top.w101-header-top .top-contact .website-mailbox a {
        font-size: 11px;
        gap: 5px;
        min-width: 0;
    }

    header .header-top.w101-header-top .top-contact .website-mailbox a i {
        font-size: 12px;
    }

    header .header-top.w101-header-top .top-contact .website-mailbox a span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: calc(100vw - 130px);
    }

    header .header-top.w101-header-top .language {
        float: none;
        margin-left: auto;
        flex-shrink: 0;
    }

    header .header-top.w101-header-top .mauto {
        width: 100%;
    }
}

/* ===== w101-main-header 主导航美化 ===== */
header .header.w101-main-header {
    background: #fff;
    border-bottom: none;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, background 0.3s ease;
    overflow: visible;
    z-index: 100000;
}

header .header.w101-main-header.top-fixed {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header .header.w101-main-header .mauto {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    max-width: none;
    min-height: 72px;
    gap: 16px;
}

header .header.w101-main-header .logo {
    float: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

header .header.w101-main-header .logo img {
    max-height: 52px;
    padding-top: 0;
    width: auto;
    transition: max-height 0.3s ease;
}

header .header.w101-main-header.top-fixed .logo img {
    max-height: 46px;
}

header .header.w101-main-header .main-nav {
    float: none;
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0;
    background: transparent;
    width: auto;
    min-width: 0;
    overflow: visible;
}

header .header.w101-main-header #main-menu {
    box-shadow: none;
    overflow: visible;
}

@media (min-width: 768px) {
    header .header.w101-main-header #main-menu-state:not(:checked) ~ #main-menu {
        display: flex;
        width: auto;
        max-width: none;
        margin: 0;
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px;
    }

    header .header.w101-main-header .sm-blue {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2px 6px;
        overflow: visible;
        max-height: none;
    }

    header .header.w101-main-header .sm-blue > li {
        display: block;
        float: none;
        height: auto;
        padding: 0 12px;
        vertical-align: middle;
    }

    header .header.w101-main-header .sm-blue > li > a {
        position: relative;
        display: inline-block;
        padding: 8px 2px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.06em;
        color: #222;
        text-transform: uppercase;
        white-space: nowrap;
    }

    header .header.w101-main-header .sm-blue > li > a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        height: 2px;
        background: #ea4234;
        transition: width 0.25s ease, left 0.25s ease;
    }

    header .header.w101-main-header .sm-blue > li > a:hover,
    header .header.w101-main-header .sm-blue > li > a:focus,
    header .header.w101-main-header .sm-blue > li > a.highlighted {
        color: #ea4234;
    }

    header .header.w101-main-header .sm-blue > li > a:hover::after,
    header .header.w101-main-header .sm-blue > li > a:focus::after,
    header .header.w101-main-header .sm-blue > li > a.highlighted::after,
    header .header.w101-main-header .sm-blue > li.current > a::after {
        width: 100%;
        left: 0;
    }

    header .header.w101-main-header .sm-blue > li.current > a {
        color: #ea4234;
    }

    /* 下拉菜单美化 */
    header .header.w101-main-header .sm-blue > li {
        position: relative;
    }

    header .header.w101-main-header .sm-blue > li > ul {
        top: 100% !important;
        left: 50% !important;
        transform: translateX(-50%);
        min-width: 200px !important;
        max-width: 240px !important;
        width: auto !important;
        margin: 0 !important;
        padding: 8px 0 8px !important;
        background: #fff !important;
        border: 1px solid rgba(0, 0, 0, 0.06) !important;
        border-radius: 10px !important;
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14) !important;
        overflow: visible;
        z-index: 100001;
    }

    /* 透明桥接区：保持视觉间距的同时不断开 hover */
    header .header.w101-main-header .sm-blue > li > ul::after {
        content: "";
        position: absolute;
        top: -8px;
        left: 0;
        right: 0;
        height: 8px;
    }

    header .header.w101-main-header .sm-blue > li > ul::before {
        display: none;
    }

    header .header.w101-main-header .sm-blue > li > ul > li {
        border: none !important;
        padding: 0 8px;
        position: static;
    }

    header .header.w101-main-header .sm-blue > li > ul > li + li {
        margin-top: 2px;
    }

    header .header.w101-main-header .sm-blue > li > ul > li > a {
        display: block;
        padding: 11px 14px 11px 18px !important;
        color: #444 !important;
        font-size: 13px !important;
        font-weight: 500;
        letter-spacing: 0.02em;
        text-transform: none !important;
        border-radius: 6px;
        border-left: 3px solid transparent !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, padding 0.2s ease;
    }

    header .header.w101-main-header .sm-blue > li > ul > li > a:hover,
    header .header.w101-main-header .sm-blue > li > ul > li > a:focus,
    header .header.w101-main-header .sm-blue > li > ul > li > a.highlighted {
        background: rgba(234, 66, 52, 0.07) !important;
        color: #ea4234 !important;
        border-left-color: #ea4234 !important;
    }

    header .header.w101-main-header .sm-blue > li > ul > li > a.current {
        color: #ea4234 !important;
        background: rgba(234, 66, 52, 0.05) !important;
        border-left-color: #ea4234 !important;
        font-weight: 600;
    }

    /* 三级菜单：向右 flyout，顶部与二级下拉对齐 */
    header .header.w101-main-header .sm-blue > li > ul > li > ul,
    header .header.w101-main-header .sm-blue ul ul {
        top: 0 !important;
        left: 100% !important;
        margin-left: -1px !important;
        margin-top: 0 !important;
        transform: none;
        min-width: 200px !important;
        max-width: 260px !important;
        width: auto !important;
        padding: 8px 0 !important;
        border: 1px solid rgba(0, 0, 0, 0.06) !important;
        border-radius: 10px !important;
        background: #fff !important;
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14) !important;
        overflow: visible !important;
        z-index: 100002 !important;
    }

    header .header.w101-main-header .sm-blue ul ul > li {
        padding: 0 8px;
        position: relative;
    }

    header .header.w101-main-header .sm-blue ul ul > li > a {
        display: block;
        padding: 11px 14px 11px 18px !important;
        color: #444 !important;
        font-size: 13px !important;
        font-weight: 500;
        letter-spacing: 0.02em;
        text-transform: none !important;
        border-radius: 6px;
        border-left: 3px solid transparent !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        background: transparent !important;
    }

    header .header.w101-main-header .sm-blue ul ul > li > a:hover,
    header .header.w101-main-header .sm-blue ul ul > li > a:focus,
    header .header.w101-main-header .sm-blue ul ul > li > a.highlighted {
        background: rgba(234, 66, 52, 0.07) !important;
        color: #ea4234 !important;
        border-left-color: #ea4234 !important;
    }

    header .header.w101-main-header .sm-blue ul ul > li > a.current {
        color: #ea4234 !important;
        background: rgba(234, 66, 52, 0.05) !important;
        border-left-color: #ea4234 !important;
        font-weight: 600;
    }

    header .header.w101-main-header .sm-blue ul ul::after {
        content: "";
        position: absolute;
        top: 0;
        left: -6px;
        width: 6px;
        height: 100%;
    }

    header .header.w101-main-header .sm-blue ul ul::before {
        display: none;
    }

    header .header.w101-main-header .sm-blue ul a .sub-arrow {
        border-color: transparent transparent transparent #bbb;
        margin-left: 6px;
    }

    header .header.w101-main-header .sm-blue ul a:hover .sub-arrow,
    header .header.w101-main-header .sm-blue ul a.highlighted .sub-arrow {
        border-color: transparent transparent transparent #ea4234;
    }

    header .header.w101-main-header.top-fixed .sm-blue > li {
        height: auto;
    }

    header .header.w101-main-header .sm-blue ul,
    header .header.w101-main-header.top-fixed .sm-blue ul {
        position: absolute;
    }

    header .header.w101-main-header.top-fixed .sm-blue > li > ul {
        top: 100% !important;
    }
}

header .header.w101-main-header .sv-acbl {
    float: none;
    flex-shrink: 0;
    position: relative;
}

header .header.w101-main-header .sv-acbl form > span,
header .header.w101-main-header .sv-acbl span.search-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px;
    background: #f5f5f5 !important;
    border: 1px solid #eee !important;
    border-left: 1px solid #eee !important;
    border-right: 1px solid #eee !important;
    border-radius: 50% !important;
    cursor: pointer;
    line-height: 1 !important;
    font-size: 0;
    text-indent: 0;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

header .header.w101-main-header .sv-acbl form > span::before,
header .header.w101-main-header .sv-acbl span.search-toggle::before {
    content: "\e6fb";
    font-family: "iconfont" !important;
    font-size: 18px;
    color: #555;
    font-style: normal;
    line-height: 1;
}

header .header.w101-main-header .sv-acbl form > span i,
header .header.w101-main-header .sv-acbl span.search-toggle i {
    font-family: "iconfont" !important;
    font-size: 18px !important;
    color: #555;
    font-style: normal;
    line-height: 1;
}

header .header.w101-main-header .sv-acbl form > span:has(i)::before,
header .header.w101-main-header .sv-acbl span.search-toggle:has(i)::before {
    content: none;
}

header .header.w101-main-header .sv-acbl form > span:hover,
header .header.w101-main-header .sv-acbl span.search-toggle:hover {
    background: #ea4234 !important;
    border-color: #ea4234 !important;
}

header .header.w101-main-header .sv-acbl form > span:hover::before,
header .header.w101-main-header .sv-acbl span.search-toggle:hover::before,
header .header.w101-main-header .sv-acbl form > span:hover i,
header .header.w101-main-header .sv-acbl span.search-toggle:hover i {
    color: #fff;
}

header .header.w101-main-header .sv-acbl p {
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    height: auto;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    padding: 6px;
    display: none;
    overflow: hidden;
    font-size: 0;
}

header .header.w101-main-header .sv-acbl p .c1 {
    float: none;
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 46px);
    height: 38px;
    border: none;
    padding: 0 12px;
    font-size: 13px;
    outline: none;
    background: #f8f8f8;
    border-radius: 6px 0 0 6px;
    box-sizing: border-box;
}

header .header.w101-main-header .sv-acbl p .search-btn,
header .header.w101-main-header .sv-acbl p button {
    float: none;
    display: inline-block;
    vertical-align: top;
    width: 46px;
    height: 38px;
    background: #ea4234;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background 0.25s ease;
    font-size: 13px;
}

header .header.w101-main-header .sv-acbl p button:hover {
    background: #d0382c;
}

header .header.w101-main-header .sv-acbl p button i {
    font-size: 18px;
    color: #fff;
}

header .header.w101-main-header .main-menu-btn-icon,
header .header.w101-main-header .main-menu-btn-icon:before,
header .header.w101-main-header .main-menu-btn-icon:after {
    background: #333;
}

@media screen and (max-width: 768px) {
    header .header.w101-main-header .mauto {
        position: relative;
        width: 100%;
        min-height: 60px;
        padding: 0 12px;
        flex-wrap: wrap;
        align-items: center;
        gap: 0;
        box-sizing: border-box;
    }

    header .header.w101-main-header .logo {
        order: 1;
        flex: 0 0 auto;
    }

    /* 扁平化 nav，使菜单可独占整行 */
    header .header.w101-main-header .main-nav {
        display: contents;
    }

    header .header.w101-main-header .sv-acbl {
        order: 2;
        margin-left: auto;
        position: relative;
    }

    header .header.w101-main-header .main-menu-btn {
        order: 3;
        float: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        margin: 0 0 0 8px;
        flex-shrink: 0;
        font-size: 0;
        line-height: 0;
        color: transparent;
        text-indent: -9999px;
        overflow: hidden;
        white-space: nowrap;
    }

    header .header.w101-main-header #main-menu {
        order: 4;
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    header .header.w101-main-header #main-menu:before {
        display: none;
    }

    header .header.w101-main-header #main-menu-state:checked ~ #main-menu {
        display: block;
        width: 100%;
        margin-top: 8px;
        padding: 4px 0 12px;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    header .header.w101-main-header .sm-blue {
        display: block;
        width: 100%;
        max-height: none;
        overflow: visible;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    header .header.w101-main-header .sm-blue > li {
        display: block;
        float: none;
        height: auto;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    header .header.w101-main-header .sm-blue > li:last-child {
        border-bottom: none;
    }

    header .header.w101-main-header .sm-blue > li > a {
        display: block;
        position: relative;
        padding: 14px 44px 14px 16px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.04em;
        color: #222;
        text-transform: uppercase;
        white-space: normal;
    }

    header .header.w101-main-header .sm-blue > li > a::after {
        display: none;
    }

    header .header.w101-main-header .sm-blue > li > a:hover,
    header .header.w101-main-header .sm-blue > li > a:focus,
    header .header.w101-main-header .sm-blue > li > a.highlighted,
    header .header.w101-main-header .sm-blue > li.current > a {
        color: #ea4234;
        background: rgba(234, 66, 52, 0.04);
    }

    /* 子菜单：垂直折叠，取消桌面 flyout */
    header .header.w101-main-header .sm-blue > li > ul,
    header .header.w101-main-header .sm-blue ul ul {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #f8f8f8 !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
        z-index: auto !important;
    }

    header .header.w101-main-header .sm-blue > li > ul::before,
    header .header.w101-main-header .sm-blue > li > ul::after,
    header .header.w101-main-header .sm-blue ul ul::before,
    header .header.w101-main-header .sm-blue ul ul::after {
        display: none;
    }

    header .header.w101-main-header .sm-blue > li > ul > li,
    header .header.w101-main-header .sm-blue ul ul > li {
        padding: 0;
        position: static;
        border-top: 1px solid rgba(0, 0, 0, 0.04);
    }

    header .header.w101-main-header .sm-blue > li > ul > li > a,
    header .header.w101-main-header .sm-blue ul ul > li > a {
        display: block;
        padding: 12px 16px 12px 24px !important;
        font-size: 13px !important;
        font-weight: 500;
        color: #555 !important;
        text-transform: none !important;
        border-left: 3px solid transparent !important;
        border-radius: 0 !important;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    header .header.w101-main-header .sm-blue ul ul > li > a {
        padding-left: 36px !important;
        background: #f3f3f3 !important;
    }

    header .header.w101-main-header .sm-blue > li > ul > li > a:hover,
    header .header.w101-main-header .sm-blue > li > ul > li > a:focus,
    header .header.w101-main-header .sm-blue > li > ul > li > a.highlighted,
    header .header.w101-main-header .sm-blue ul ul > li > a:hover,
    header .header.w101-main-header .sm-blue ul ul > li > a:focus,
    header .header.w101-main-header .sm-blue ul ul > li > a.highlighted {
        color: #ea4234 !important;
        background: rgba(234, 66, 52, 0.06) !important;
        border-left-color: #ea4234 !important;
    }

    header .header.w101-main-header .sm-blue a .sub-arrow {
        position: absolute;
        top: 50%;
        right: 8px;
        left: auto;
        width: 32px;
        height: 32px;
        margin-top: -16px;
        background: rgba(0, 0, 0, 0.06);
        border-radius: 6px;
        border: none;
    }

    header .header.w101-main-header .sm-blue a .sub-arrow::before {
        display: block;
        content: '+';
        font: bold 16px/32px monospace !important;
        text-align: center;
        color: #666;
    }

    header .header.w101-main-header .sm-blue a.highlighted .sub-arrow::before {
        content: '-';
        color: #ea4234;
    }

    header .header.w101-main-header .logo img {
        max-height: 44px;
    }

    header .header.w101-main-header .sv-acbl form > span,
    header .header.w101-main-header .sv-acbl span.search-toggle {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px;
    }

    header .header.w101-main-header .sv-acbl p {
        position: fixed;
        left: 12px;
        right: 12px;
        top: calc(42px + 60px + 6px);
        width: auto;
        max-width: none;
        box-sizing: border-box;
        z-index: 100003;
        display: none;
        overflow: visible;
    }

    header .header.w101-main-header.top-fixed .sv-acbl p {
        top: calc(60px + 6px);
    }

    header .header.w101-main-header .sv-acbl p .c1 {
        width: calc(100% - 46px);
        max-width: none;
    }
}

/* ===== w101-footer-head 页脚联系区美化 ===== */
footer .footer-head.w101-footer-head {
    position: relative;
    padding: 48px 0 44px;
    background: linear-gradient(165deg, #161616 0%, #1e1e1e 48%, #121212 100%);
}

footer .footer-head.w101-footer-head::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ea4234 0%, #d4a574 50%, #ea4234 100%);
}

footer .footer-head.w101-footer-head .mauto {
    width: 90%;
    max-width: none;
}

footer .footer-head.w101-footer-head .footer-main {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0;
}

footer .footer-head.w101-footer-head .telbl.w101-footer-contact {
    float: none;
    flex: 0 0 34%;
    max-width: 34%;
    padding-right: 48px;
    box-sizing: border-box;
}

/* 三栏导航：QUICK LINKS / PRODUCTS / ABOUT US 平均分布 */
footer .footer-head.w101-footer-head .footer-main > dl,
footer .footer-head.w101-footer-head .footer-main > li.w102-footer-item {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    width: auto;
    float: none;
    margin: 0;
    padding: 0 16px;
    box-sizing: border-box;
    list-style: none;
}

footer .footer-head.w101-footer-head .footer-main > li.w102-footer-item > dl {
    float: none;
    flex: none;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
}

footer .footer-head.w101-footer-head .w101-footer-contact-title {
    display: inline-block;
    position: relative;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.3;
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: none;
}

footer .footer-head.w101-footer-head .w101-footer-contact-title::after,
footer .footer-head.w101-footer-head .footer-main dl dt .w101-footer-label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #ea4234 0%, #e07a48 42%, #d4a574 100%);
    box-shadow: 0 2px 10px rgba(234, 66, 52, 0.28);
}

footer .footer-head.w101-footer-head .w101-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    line-height: 1.55;
}

footer .footer-head.w101-footer-head .w101-footer-contact-item:last-child {
    margin-bottom: 0;
}

footer .footer-head.w101-footer-head .w101-footer-icon {
    flex-shrink: 0;
    width: 20px;
    padding-top: 2px;
    text-align: center;
}

footer .footer-head.w101-footer-head .w101-footer-icon i {
    font-size: 16px;
    color: #ea4234;
    line-height: 1;
}

footer .footer-head.w101-footer-head .w101-footer-meta {
    flex: 1;
    min-width: 0;
}

footer .footer-head.w101-footer-head .w101-footer-meta label {
    display: block;
    min-width: 0;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

footer .footer-head.w101-footer-head .w101-footer-meta a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    word-wrap: break-word;
    white-space: normal;
    transition: color 0.25s ease;
}

footer .footer-head.w101-footer-head .w101-footer-meta a:hover {
    color: #ea4234;
}

footer .footer-head.w101-footer-head .footer-main dl dt.w101-footer-col-title {
    font-size: 15px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 16px;
}

footer .footer-head.w101-footer-head .footer-main dl dt .w101-footer-label {
    display: inline-block;
    position: relative;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: none;
}

footer .footer-head.w101-footer-head .footer-main dl dd {
    font-size: 13px;
    line-height: 2;
}

footer .footer-head.w101-footer-head .footer-main dl a {
    color: rgba(255, 255, 255, 0.55);
    white-space: normal;
    text-overflow: unset;
    transition: color 0.25s ease;
}

footer .footer-head.w101-footer-head .footer-main dl a:hover {
    color: #ea4234;
}

@media screen and (max-width: 1200px) {
    footer .footer-head.w101-footer-head .telbl.w101-footer-contact {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 8px;
    }

    footer .footer-head.w101-footer-head .footer-main > dl,
    footer .footer-head.w101-footer-head .footer-main > li.w102-footer-item {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        padding: 0 12px;
    }
}

@media screen and (max-width: 768px) {
    footer .footer-head.w101-footer-head {
        padding: 0 0 24px;
    }

    footer .footer-head.w101-footer-head .mauto {
        width: 100%;
    }

    footer .footer-head.w101-footer-head .footer-content-but {
        background: rgba(255, 255, 255, 0.06);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    footer .footer-head.w101-footer-head .footer-content-but span {
        color: rgba(255, 255, 255, 0.85);
    }

    footer .footer-head.w101-footer-head .footer-content-but button {
        color: rgba(255, 255, 255, 0.7);
    }

    footer .footer-head.w101-footer-head .footer-main {
        padding: 0 16px;
    }

    footer .footer-head.w101-footer-head .footer-main > dl,
    footer .footer-head.w101-footer-head .footer-main > li.w102-footer-item {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 8px;
        padding: 0;
    }

    footer .footer-head.w101-footer-head .w101-footer-contact-title {
        font-size: 18px;
    }
}

/* ===== w101-footer copyright 版权区美化 ===== */
footer.footer-bar .copyright {
    padding: 0;
    background: rgba(0, 0, 0, 0.34);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    display: block;
    line-height: normal;
}

footer.footer-bar .copyright .mauto {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    min-height: 56px;
    padding: 14px 240px 14px 16px;
    box-sizing: border-box;
}

footer.footer-bar .copyright p {
    float: none;
    width: auto;
    margin: 0;
    text-align: center;
    font-size: 13px;
    line-height: 1.65;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.48);
}

footer.footer-bar .copyright p a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    transition: color 0.25s ease;
}

footer.footer-bar .copyright p a:hover {
    color: #ea4234;
}

footer.footer-bar .copyright .social-link {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    float: none;
    margin: 0;
}

@media screen and (max-width: 992px) {
    footer.footer-bar .copyright .mauto {
        flex-direction: column;
        justify-content: center;
        gap: 14px;
        min-height: 0;
        padding: 18px 16px;
    }

    footer.footer-bar .copyright .social-link {
        position: static;
        transform: none;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    footer.footer-bar .copyright p {
        font-size: 12px;
        line-height: 1.7;
    }
}

/* ===== mfoot 手机底部固定栏 ===== */
.mfoot_box {
    display: none;
}

@media screen and (max-width: 768px) {
    .footer-bar {
        margin-bottom: 56px;
    }

    .mfoot_box {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: #f8f8f8;
        border: none;
        border-top: 1px solid #e8e8e8;
        border-radius: 0;
        min-height: 50px;
        margin: 0;
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
        z-index: 1030;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    .mfoot_box .navbar-collapse {
        display: none;
    }

    .mfoot_inner {
        display: flex;
        align-items: stretch;
        height: 50px;
    }

    .mfoot_nav {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        border-right: 1px solid #e8e8e8;
        float: none;
        width: auto;
        background: transparent;
    }

    .mfoot_nav:last-child {
        border-right: none;
    }

    .mfoot_nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #555;
        padding: 5px 2px;
        height: 100%;
        width: 100%;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
        transition: color 0.28s ease, background 0.28s ease;
    }

    .mfoot_box.navbar-default .mfoot_nav a {
        color: #555;
        background: transparent;
    }

    .mfoot_nav:not(.mfoot_nav_top) a:hover,
    .mfoot_nav:not(.mfoot_nav_top) a:focus {
        color: #ea4234;
        background: rgba(234, 66, 52, 0.07);
        text-decoration: none;
    }

    .mfoot_box.navbar-default .mfoot_nav:not(.mfoot_nav_top) a:hover,
    .mfoot_box.navbar-default .mfoot_nav:not(.mfoot_nav_top) a:focus {
        color: #ea4234;
        background: rgba(234, 66, 52, 0.07);
    }

    .mfoot_nav .fa {
        font-size: 18px;
        line-height: 1;
        margin-bottom: 3px;
        transition: transform 0.28s ease, color 0.28s ease;
    }

    .mfoot_nav:not(.mfoot_nav_top) a:hover .fa,
    .mfoot_nav:not(.mfoot_nav_top) a:focus .fa {
        transform: translateY(-2px);
    }

    .mfoot_label {
        font-size: 10px;
        font-weight: 700;
        line-height: 1.2;
        display: block;
        letter-spacing: 0.02em;
        transition: color 0.28s ease;
    }

    .mfoot_nav:first-child a:hover,
    .mfoot_nav:first-child a:focus,
    .mfoot_box.navbar-default .mfoot_nav:first-child a:hover,
    .mfoot_box.navbar-default .mfoot_nav:first-child a:focus {
        color: #128C7E;
        background: rgba(18, 140, 126, 0.08);
    }

    .mfoot_nav:first-child a:hover .fa,
    .mfoot_nav:first-child a:focus .fa {
        color: #128C7E;
    }

    .mfoot_nav_top a {
        padding: 0;
    }

    .mfoot_top_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #555;
        color: #fff;
        transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
    }

    .mfoot_nav_top a:hover .mfoot_top_btn,
    .mfoot_nav_top a:focus .mfoot_top_btn {
        background: linear-gradient(135deg, #ea4234 0%, #c73528 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(234, 66, 52, 0.35);
    }

    .mfoot_top_btn .fa {
        margin-bottom: 0;
        font-size: 15px;
    }
}

/* ===== Product Category 版块最终样式（确保不被其他规则覆盖） ===== */
.product_category.home_hot_products:not(.home_we_offfr) {
    background-color: #ffffff !important;
}

@media screen and (min-width: 1201px) {
    .product_category.home_hot_products:not(.home_we_offfr) .mauto .mml_row ul {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
        gap: 90px !important;
        max-width: calc(300px * 3 + 180px) !important;
    }

    .product_category.home_hot_products:not(.home_we_offfr) .mauto .mml_row ul li {
        width: 300px !important;
        max-width: 300px !important;
        flex: 0 0 300px !important;
        margin: 0 0 30px !important;
    }
}

@media screen and (max-width: 768px) {
    .product_category.home_hot_products:not(.home_we_offfr) .mauto .mml_row ul {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        max-width: 100% !important;
    }

    .product_category.home_hot_products:not(.home_we_offfr) .mauto .mml_row ul li {
        width: 100% !important;
        max-width: none !important;
        flex: none !important;
        margin: 0 !important;
    }
}

.product_category.home_hot_products:not(.home_we_offfr) .home_title h2 em {
    color: #1a1a1a;
}

/* ===== Custom Service / xiaoyu-article 手机端自适应 ===== */
@media screen and (max-width: 768px) {
    main .main_con .edit:has(.xiaoyu-article) {
        overflow: visible;
    }

    .xiaoyu-article {
        overflow-x: hidden;
        width: 100%;
    }

    .xiaoyu-article #main {
        display: block !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .xiaoyu-article #left-2 {
        display: none !important;
    }

    .xiaoyu-article #mid {
        width: 100% !important;
        padding-bottom: 30px !important;
    }

    .xiaoyu-article #top01-mid,
    .xiaoyu-article #top02-mid,
    .xiaoyu-article #top03-main,
    .xiaoyu-article #top4-main,
    .xiaoyu-article #top05-main,
    .xiaoyu-article #top06-main,
    .xiaoyu-article #top07-main,
    .xiaoyu-article #top08-main,
    .xiaoyu-article #top09-main,
    .xiaoyu-article #top10-main,
    .xiaoyu-article #top11-main,
    .xiaoyu-article #top12-main {
        width: 100% !important;
        margin-top: 15px !important;
    }

    .xiaoyu-article #wenan-top03-mid,
    .xiaoyu-article #tupian01,
    .xiaoyu-article #left01-top4-main,
    .xiaoyu-article #right-top04-main,
    .xiaoyu-article #down-top04-main,
    .xiaoyu-article #left-top05-main,
    .xiaoyu-article #right-top05-mian,
    .xiaoyu-article #right-top06-main,
    .xiaoyu-article #left-top06-main,
    .xiaoyu-article [id^="left-top"],
    .xiaoyu-article [id^="right-top"] {
        width: 100% !important;
        float: none !important;
    }

    .xiaoyu-article #main #mid h2 {
        font-size: 20px;
        line-height: 1.35;
    }

    .xiaoyu-article #main #mid h4 {
        font-size: 16px;
        line-height: 1.45;
    }

    .xiaoyu-article .YS02,
    .xiaoyu-article .ys05 {
        font-size: 13px;
        line-height: 1.6;
    }

    .xiaoyu-article img {
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
    }

    .xiaoyu-article #main #mid table {
        font-size: 13px;
        text-align: left;
    }

    /* Why Choose Us：三列改为纵向堆叠 */
    .xiaoyu-article #top01-mid table {
        display: block;
        width: 100% !important;
    }

    .xiaoyu-article #top01-mid table tbody,
    .xiaoyu-article #top01-mid table tr {
        display: block;
        width: 100%;
    }

    .xiaoyu-article #top01-mid table tr.ys01 {
        display: none;
    }

    .xiaoyu-article #top01-mid table td {
        display: block;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 16px;
        padding: 12px;
        border-bottom: 1px solid #eee;
        box-sizing: border-box;
    }

    .xiaoyu-article #top01-mid table td:nth-child(1)::before {
        content: "OUR ADVANTAGE";
        display: block;
        font-weight: bold;
        margin-bottom: 8px;
        text-align: center;
    }

    .xiaoyu-article #top01-mid table td:nth-child(2)::before {
        content: "OUR SERVICE";
        display: block;
        font-weight: bold;
        margin-bottom: 8px;
        text-align: center;
    }

    .xiaoyu-article #top01-mid table td:nth-child(3)::before {
        content: "QUALITY CONTROL";
        display: block;
        font-weight: bold;
        margin-bottom: 8px;
        text-align: center;
    }

    /* 产品分类：手机端 JS 重组为「图片+名称」卡片，一行2个 */
    .xiaoyu-article #top02-mid table.top02-mobile-source {
        display: none !important;
    }

    .xiaoyu-article #top02-mid .top02-mobile-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 8px;
        width: 100%;
    }

    .xiaoyu-article #top02-mid .top02-mobile-item {
        text-align: center;
        box-sizing: border-box;
        padding: 4px 2px;
    }

    .xiaoyu-article #top02-mid .top02-mobile-item a {
        display: block;
        max-width: 88px;
        margin: 0 auto;
    }

    .xiaoyu-article #top02-mid .top02-mobile-item img {
        width: auto !important;
        max-width: 88px !important;
        height: auto !important;
        display: block;
        margin: 0 auto;
    }

    .xiaoyu-article #top02-mid .top02-mobile-label {
        margin-top: 4px;
        font-size: 11px;
        line-height: 1.3;
        color: #333;
    }

    /* 双列图片对比表：纵向堆叠 */
    .xiaoyu-article #top03-main > table,
    .xiaoyu-article #down-top04-main table,
    .xiaoyu-article #top05-main table,
    .xiaoyu-article #top06-main table,
    .xiaoyu-article #top07-main table,
    .xiaoyu-article #top08-main table,
    .xiaoyu-article #top09-main table,
    .xiaoyu-article #top10-main table,
    .xiaoyu-article #top11-main table,
    .xiaoyu-article #top12-main table {
        display: block;
        width: 100% !important;
    }

    .xiaoyu-article #top03-main > table tbody,
    .xiaoyu-article #top03-main > table tr,
    .xiaoyu-article #down-top04-main table tbody,
    .xiaoyu-article #down-top04-main table tr,
    .xiaoyu-article #top05-main table tbody,
    .xiaoyu-article #top05-main table tr,
    .xiaoyu-article #top06-main table tbody,
    .xiaoyu-article #top06-main table tr,
    .xiaoyu-article #top07-main table tbody,
    .xiaoyu-article #top07-main table tr,
    .xiaoyu-article #top08-main table tbody,
    .xiaoyu-article #top08-main table tr,
    .xiaoyu-article #top09-main table tbody,
    .xiaoyu-article #top09-main table tr,
    .xiaoyu-article #top10-main table tbody,
    .xiaoyu-article #top10-main table tr,
    .xiaoyu-article #top11-main table tbody,
    .xiaoyu-article #top11-main table tr,
    .xiaoyu-article #top12-main table tbody,
    .xiaoyu-article #top12-main table tr {
        display: block;
        width: 100%;
    }

    .xiaoyu-article #top03-main > table td,
    .xiaoyu-article #down-top04-main table td,
    .xiaoyu-article #top05-main table td,
    .xiaoyu-article #top06-main table td,
    .xiaoyu-article #top07-main table td,
    .xiaoyu-article #top08-main table td,
    .xiaoyu-article #top09-main table td,
    .xiaoyu-article #top10-main table td,
    .xiaoyu-article #top11-main table td,
    .xiaoyu-article #top12-main table td {
        display: block;
        width: 100% !important;
        height: auto !important;
    }

    .xiaoyu-article #tupian01 table,
    .xiaoyu-article #right-top04-main table {
        width: 100% !important;
    }

    .xiaoyu-article blockquote {
        margin: 10px 0;
        padding: 0 0 0 12px;
        border-left: 3px solid #ea4234;
    }
}