@charset "utf-8";

/**
 * Zhang Jian base css
 * 2021-now
 */
 
@font-face{
	font-family: 'alphtRegular';
	src : url(' ../fonts/AlibabaSans-Regular.otf');
}

html{-webkit-font-smoothing:antialiased;height: 100%;touch-action: manipulation;}
blockquote,body,code,dd,div,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,input,legend,li,ol,p,pre,td,textarea,th,ul{margin:0;padding:0}
header, hgroup, nav, menu, main, section, article, summary, details, aside, figure, figcaption, footer{display: block;margin:0;padding:0}
table{border-collapse:collapse;border-spacing:0}
fieldset,img{border:0}
address,caption,cite,code,dfn,em,var{font-style:normal;font-weight:400;}
dl,ol,ul,li{list-style-type:none;list-style: none;}
h1,h2,h3,h4,h5,h6{font-size:100%;}
h4,h5,h6{
    font-weight: normal;
}
a{text-decoration:none;color: inherit;transition:all .5s;}
a:hover{text-decoration:none;-webkit-tap-highlight-color:rgba(255,0,0,0);outline:0;outline:none;blr:expression(this.onFocus=this.blur())}
sup{vertical-align:text-top}
sub{vertical-align:text-bottom}
textarea{resize:none;outline: none;font-family: Arial,Microsoft Yahei;}
img{vertical-align:middle;max-width: 100%;height: auto;}
button,input[type=submit],input[type=text],input[type=button]{-webkit-appearance:none;-webkit-tap-highlight-color:rgba(255,0,0,0);outline:0;blr:expression(this.onFocus=this.blur())}
input{outline: 0;}
input::-webkit-input-safebox-button{display: none;/*去掉搜狗浏览器密码软盘*/}
body{font-family: "alphtRegular";font-size: 16px;color: #666;overflow-x: hidden;}
body *{box-sizing: border-box;line-height: 1.8;}
:root{
    --theme-color:#003a8e;
    --subtheme-color:#e54c17;
}

.hidden{
    overflow: hidden;
}

.flex{display: flex;}
.flex_wrap{flex-wrap: wrap;}
.p40{
    padding:0 40px 40px;
}
.mt50{
    margin-top: 50px;
}
.pt50{
    padding-top: 50px;
}
.pt75{
    padding-top: 75px;
}
.pb75{
    padding-bottom: 75px;
}
.pb100{
    padding-bottom: 100px;
}

@media screen and (max-width: 1024px){
    .pt50{
        padding-top: 30px;
    }
    .pt75{
        padding-top: 40px;
    }
    .pb75{
        padding-bottom:40px;
    }
    .pb100{
        padding-bottom:50px;
    }
    .p40{
        padding: 0 30px 30px;
    }
    .mt50{
        margin-top: 30px;
    }
}
@media screen and (max-width: 768px){
    .pt50{
        padding-top: 25px;
    }
    .pt75{
        padding-top: 30px;
    }
    .pb75{
        padding-bottom:30px;
    }
    .pb100{
        padding-bottom:30px;
    }
    .p40{
        padding: 0 20px 20px;
    }
    .mt50{
        margin-top:20px;
    }
}

.text-overflow{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.text-overflow-line2{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.text-overflow-line3{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.text-overflow-line4{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

/*页面宽度*/

.wrapper{
    width: 1600px;
    margin:0 auto;
}
.flex-center{
    display: flex;
    align-items: center;
}

/*按钮*/

.more_style1{
    display: inline-block;
    padding: 10px 55px;
    border:2px solid var(--theme-color);
    position: relative;
    font-size: 14px;
    font-weight: bold;
    font-family: Arial;
    color:var(--color-fixedright);
    text-transform: uppercase;
    text-align: center;
    background: transparent;
}
.more_style1 div{
    transition: transform .3s, opacity .3s;
}
.more_style1 .dubbed{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translate3d(0, 20%, 0);
    pointer-events: none;
}
.more_style1:hover{
    color:#fff;
    background-color:transparent;
    border-color:rgba(255, 255, 255, 0.3);
    background: var(--color-fixedright);
}
.more_style1:hover .original{
    opacity: 0;
    transform: translate3d(0, -50%, 0);
}
.more_style1:hover .dubbed{
    opacity: 1;
    transform: none;
}

/* 按钮2 */


.button_wrap .button{
    height:50px;
    width: 240px;
    color:#fff;
    background-color:transparent;
    border-color:#e7e7e7;
    display: flex;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    vertical-align: middle;
    transition: 0.5s;
    z-index: 1;
    font-style: normal;
    display: flex;
    font-family: 'jnm';
    font-size:16px;
    align-items: center;
    justify-content: center;
}
.button_wrap .button:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color:transparent;
}
.button_wrap .button:after{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 0 0;
    border-color:var(--theme-color) transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: -1;
}
.button_wrap1 .button{
    color:#fff;
    border: #fff;
}
.button_wrap .button i{
    margin-left: 5px;
    font-size:18px;
}
.button_wrap .button:hover{
    color:#fff;
    background-color:transparent;
    border-color:var(--theme-color);
}
.button_wrap .button:hover:after{
    border-width: 400px 400px 0 0;
}

/* 按钮3 */

.more_style3{
    position: relative;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    background: var(--theme-color);
    display:flex;
    color: #fff;
    line-height:64px;
    text-align: center;
    cursor: pointer;
    width: 200px;
    height: 64px;
    justify-content:space-between;
    align-items: center;
    border-radius: 100px;
    padding:0 30px;
    font-family:'MontserratLight';
    font-size:16px;
}
.more_style3 i{
    vertical-align: middle;
    margin-left: 7px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color:var(--theme-color);
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:all .3s;
}
.more_style3:before{
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:var(--subtheme-color);
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .4s ease-out ;
    -moz-transition: all .4s ease-out ;
    -ms-transition: all .4s ease-out ;
    -o-transition: all .4s ease-out ;
    transition: all .4s ease-out ;
}
.more_style3:hover{
    color:#fff;
}
.more_style3:hover:before{
    -webkit-transform: scale(2);
    transform: scale(2);
}
.more_style3:hover i{
    color:var(--subtheme-color);
}

.more_style4{
    display: inline-block;
    color:#888;
    margin-top: 40px;
    position: relative;
}
.more_style4 .txt{
    font-size:16px;
    font-weight: normal;
    display: inline-block;
    transition:all .3s;
}
.more_style4 i{
    font-size:12px;
    display:inline-block;
    vertical-align: middle;
    line-height: 1.5;
    margin-left: 2px;
    transition:all .3s;
}
.more_style4:after{
    display: block;
    width: 100%;
    height: 1px;
    background: #888;
    content:'';
    position: absolute;
    bottom: 0;
    left: 0;
    transition:all .3s;
}
.more_style4:hover{
    color:#c61a26;
}
.more_style4:hover i{
    margin-left: 10px;
}
.more_style4:hover:after{
    background: #c61a26;
}

.more_style5{
    background: transparent;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    display:flex;
    outline: none;
    background:transparent;
    border: none;
    z-index: 1;
    width: 200px;
    height: 50px;
    justify-content: center;
    align-items: center;
    border:1px solid var(--subtheme-color);
    font-size:16px;
    color:var(--subtheme-color);
    line-height: 1;
}
.more_style5 i{
    margin-left:30px;
    font-size:18px;
    line-height: 1;
}
.more_style5:after{
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color:var(--subtheme-color);
    transition: all 0.5s ease;
}
.more_style5:hover{
    color:#fff;
}
.more_style5:hover:after{
    left: 0;
    width: 100%;
}
.more_style5_theme{
    color:var(--theme-color);
    border-color:var(--theme-color);
}
.more_style5_theme:after{
    background-color: var(--theme-color);
}
.more_style5_theme:hover{
    border-color: var(--theme-color);
}

.text-center{
    text-align: center;
}

/*鼠标经过图片放大*/


.img_scale .img{
    overflow: hidden;
}
.img_scale .img img{
    transition: all .5s;
}
.img_scale:hover .img img{
    transform: scale(1.1);
}

/* 右侧按钮 */

.right-sidebar{border-radius: 500px;position: fixed;z-index: 99;right: 20px;top: 38%;}
.right-sidebar li{background: var(--theme-color);width: 60px;height: 60px;border-bottom: 1px solid rgba(255,255,255,.4);text-align: center;font-size: 14px;color: #fff;position: relative;}
.right-sidebar li:first-child{border-top-left-radius: 500px;border-top-right-radius: 500px;}
.right-sidebar li:last-child{border-bottom: none;border-bottom-left-radius: 500px;border-bottom-right-radius: 500px;}
.right-sidebar li .ic{width: 60px;height: 60px;overflow: hidden;}
.right-sidebar li:hover .ic img,.bottom-feed span b img{transform: translateY(-200px);filter: drop-shadow(var(--theme-color) 0 200px);}
.right-sidebar li a{color: #fff;display: block;}
.right-sidebar li i{height: 16px;line-height: 16px;overflow: hidden;display: block;line-height: 16px;width: 90%;margin: 0 auto;}
.right-sidebar li:hover{cursor: pointer;background: #fff;}
.right-sidebar li .ewm{position: absolute;top: 0;right: 60px;padding: 4px;background: #fff;max-width: 120px;opacity: 0;box-shadow: 0 0 10px rgba(0,0,0,.2);}
.right-sidebar li .p{width: 220px;text-align: center;height: 60px;line-height: 60px;position: absolute;right: 60px;top: 0;background:var(--theme-color);font-size: 16px;opacity: 0;}
.right-sidebar li:hover .ewm,.right-sidebar li:hover .p{opacity: 1;transition: all .3s;}
.right-sidebar .shopcart .addnum {width: 18px;height: 18px;position: absolute;top: 5px;right: 5px;text-align: center;line-height:18px;background: #fff;color:var(--theme-color);border-radius: 500px;display: block;font-size: 12px;font-style: normal;}
.right-sidebar .shopcart:hover .addnum{background: var(--theme-color);color:#fff;}



/* return_page */
.pagination{
    margin-top:40px;
    display: flex;
    justify-content: center;
}
.pagination li.first,.pagination li.last{
    display: none;
}
.pagination > li > a, .pagination > li > span{
    padding: 0 12px;
    border: 1px solid #bbb;
    color: #000;
    margin-right: 8px;
    display: block;
    font-size: 14px;
    text-align: center;
    line-height: 28px;
    height: 30px;
    border-radius:3px;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    background: var(--theme-color);
    border-color:var(--theme-color);
    color: #fff;
}
.pagination li a:hover{
    color:var(--theme-color);
}

.follow_list{display: flex;}
.follow_list a.icon_google{ background: #db4437; color: #fff;}
.follow_list a.icon_facebook{ background: #4267b2; color: #fff;}
.follow_list a.icon_instagram1,.follow_list a.icon_instagram{ background: linear-gradient( to top right,#fdbd50,#e63d7f,#68428e); color: #fff;}
.follow_list a.icon_linkedin{ background: #0e76a8; color: #fff;}
.follow_list a.icon_twitter{ background: #1da1f2; color: #fff;}
.follow_list a.icon_youtube{ background: #ff0000; color: #fff;}
.follow_list a svg{ fill:#fff; height:20px; width:20px; color: #fff;}
.follow_list a{ font-size: 14px!important;display: block;margin-right:10px;width: 36px;height: 36px;color:#fff;border-radius: 50%;}
.follow_list a i{display:flex;justify-content:center;align-items:center;width: 100%;height:100%;}
.follow_list a.icon_pinterest{ background:#e60023;}
.follow_list a.icon_instagram{ background: linear-gradient( to top right,#fdbd50,#e63d7f,#68428e); color: #fff;}
.follow_list a:hover{
    opacity: .7;
}


.menuBtn {
	display: block;
	width:85px;
	height:85px;
	position: fixed;
	background: var(--theme-color);
	right: 0px;
	top: 0px;
	text-align: center;
	z-index: 10001;
    padding-top:7px;
    cursor: pointer;
}

.menuBtn .line {
	width: 42px;
	height:4px;
	background-color: #FFF;
	display: block;
	margin: 15px auto;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.menuBtn .line:nth-child(2) {
	background: #FFF;
}

.menuBtn.active .line {
	background: #FFF;
}

.menuBtn.active .line:nth-child(2) {
	opacity: 0;
}

.menuBg1 {
	height: 100%;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 1;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	visibility: hidden;
	opacity: 0;
}

.menuBg1.active {
	opacity: 0;
	visibility: visible;
}

.menuBtn.active .line:nth-child(1) {
	-webkit-transform: translateY(20px) rotate(45deg);
	-ms-transform: translateY(20px) rotate(45deg);
	-o-transform: translateY(20px) rotate(45deg);
	transform: translateY(20px) rotate(45deg);
}

.menuBtn.active .line:nth-child(3) {
	-webkit-transform: translateY(-19px) rotate(-45deg);
	-ms-transform: translateY(-19px) rotate(-45deg);
	-o-transform: translateY(-19px) rotate(-45deg);
	transform: translateY(-19px) rotate(-45deg);
}


/* 移动端导航 */
.menuPage {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 0 85px 0 0;
	z-index: 10000;
}

.menuPage.active {
	opacity: 1;
	visibility: visible;
}

.menuPageC1 {
	clear: both;
	width: 100%;
	max-height: 100%;
	overflow: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	position: relative;
	z-index: 2;
	height: 100%;
	background: #f5f5f5;
}

.menuPage.active .menuBg1 {
	visibility: visible;
	opacity: 1;
}

.menuPageC1Pd {
	padding-top: 4.25rem;
}

.menuPageList {
	overflow-x: hidden;
	background: #f5f5f5;
	padding-bottom: 100px;
	height: 100%;
}

.menuPageList dd {
	overflow: hidden;
}

.menuPageList dd span {
	display: block;
	overflow: hidden;
	position: relative;
}

.menuPageList dd span:before {
	display: block;
	content: '';
	width: 100%;
	height: 0;
	border-bottom: 1px solid #dbdbdb;
	position: absolute;
	left: 0px;
	bottom: 0px;
	transform: scaleY(0.5);
	-webkit-transform: scaleY(0.5)
}

.menuPageList dd span a {
	display: block;
	overflow: hidden;
	height: 50px;
	line-height: 50px;
	text-align: left;
	font-size: 16px;
	color: #1f1f1f;
	padding: 0 16px;
	position: relative;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.menuPageList dd span em {
	display: block;
	width: 47px;
	height: 50px;
	text-align: center;
	line-height:50px;
	font-size: 1.5rem;
	color: #c7c7c7;
	position: absolute;
	right: 0px;
	top: 0px;
	font-style: normal;
	display: none;
	background-image: url(../images/jia.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: auto 14px;
	z-index: 1
}

.menuPageList dd span em.icn2 {
	background-image: url(../images/jian.png);
}

.menuPageList dd span em.active {
	display: block;
}

.menuPageList dd .ejBox {
	padding: 10px 15px;
	display: none;
	background: #FFF;
}

.menuPageList dd .ejBox .ejdd {
	overflow: hidden;
}

.menuPageList dd .ejBox .ejdd .ej {
	position: relative;
}

.menuPageList dd .ejBox .ejdd .ej em {
	display: block;
	position: absolute;
	right: 0px;
	top: 0px;
	width: 30px;
	height: 30px;
	background-image: url(../images/jia.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: auto 18px;
	display: none;
	z-index: 20
}

.menuPageList dd .ejBox .ejdd .ej em.active {
	display: block;
}

.menuPageList dd .ejBox .ejdd .ej em.icn3 {
	background-image: url(../images/jian2.png);
}

.menuPageList dd .ejBox .ejdd .ej a {
	display: block;
	height: 36px;
	line-height:36px;
	overflow: hidden;
	color: var(--theme-color);
	font-size: 14px;
	padding-left: 0;
	position: relative
}

.menuPageList dd .ejBox .ejdd .ej a:before {
	display: none;
	content: '';
	position: absolute;
	left: 0px;
	top: 50%;
	margin-top: -10px;
	width: 15px;
	height: 15px;
	background: #666666;
}

.menuPageList dd .ejBox .ejdd .sj {
	overflow: hidden;
	padding: .25rem .75rem;
	display: none;
}

.menuPageList dd .ejBox .ejdd .sj a {
	display: block;
	height: 1.25rem;
	line-height: 1.25rem;
	overflow: hidden;
	color: #666666;
	font-size: .6rem;
	padding-left: 1rem;
	position: relative
}

.menuPageList dd .ejBox .ejdd .sj a:before {
	display: block;
	content: '';
	position: absolute;
	left: .5rem;
	top: 50%;
	margin-top: 0;
	width: .25rem;
	height: 1px;
	background: #666666;
}

.menuPageList dd.hover span a {
	background:var(--theme-color);
	color: #fff;
}

.menuPageList dd.hover span em {
	color: #fff;
}

/* toolbar */
.toolbar{
    z-index: 98;
    border-top: 1px solid #ddd;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    height:55px;
}
.toolbar ul{
    align-items: center;
    height: 100%;
}
.toolbar li{
    height: 100%;
    flex:1;
}
.toolbar li a{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.toolbar li a i{
    font-size:22px;
    line-height: 1;
}
.toolbar li a:hover{
    background: #eee;
}
.toolbar li a span{
    font-size:14px;
}
.toolbar li.shopcart{
    position: relative;
}
.toolbar li.shopcart .addnum{
    position: absolute;
    right: 12px;
    top: 22px;
    display: inline-block;
    height: 16px;
    width: 16px;
    font-size: 12px;
    border-radius: 8px;
    background: #ff0000;
    line-height: 16px;
    color: #fff;
    text-align: center;
    padding-top: 1px;
}


/* fixed-search */

.fixed-search{
    
    position: fixed;
   
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: none;
}
.fixed-search_bg{
    background: rgba(0,0,0,.5);
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.fixed-search_close{
    position: absolute;
    right:30vw;
    top:20%;
    cursor: pointer;
}
.fixed-search_close i{
    color:#fff;
    font-size:40px;
    transition:all .3s;
}
.fixed-search_close i:hover{
    color:#ddd;
}
.fixed-search form{
    font-size:0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top:30%;
}
.fixed-search form .input{
    width:30vw;
    height: 50px;
    border:none;
    outline: none;
    padding:0 20px;
    font-size:16px;
}
.fixed-search form button{
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    background: var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.fixed-search form button i{
    color:#fff;
    font-size:18px;
}
