html{

}
*,*:before,*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; 
}
body {
  margin:0;
  padding:0 0 0 0 !important;
  font:16px/1.875 "Roboto",Segoe UI,SegoeUI,"Helvetica Neue",Helvetica,Arial,sans-serif !important;
  color:#1b1b1b;
  background-color: #FFF;
}
input,select,textarea,button{
  font:16px/1.875 "Roboto",Segoe UI,SegoeUI,"Helvetica Neue",Helvetica,Arial,sans-serif;
}
ul,li,dl,dd,dt{
  margin:0;
  padding:0;
  list-style-type:none;
}
h1,h2,h3{
  margin:0;
  padding:0;
}
em,i{
    font-style: normal;
}
img{
    border: 0;
}
.wrap{
  display: block;
  width: 100%;
}
.wrapper{
  display: block;
  padding: 0 60px;
}
.w100{
  display: block;
  width: 100%;
}
.w50{
  display: inline-block;
  width: 49.5%;
}
.content{
  display: block;
  padding: 50px 60px 0;
}
a,a:focus,a:hover,.btn:focus,li, li:focus, li:hover, input, input:focus, input:hover, textarea, textarea:focus, textarea:hover, select, select:focus, select:hover {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}
a,a:link,a:active,a:visited {
  color:#1b1b1b;
  text-decoration:none;
  outline: none;
  transition: All 0.3s ease-in-out;
}
a:hover {
  color:#e57e3d;
  text-decoration:none !important;
}
textarea{
    resize: none;
}
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{
    color:#BBB;
}
input::-moz-placeholder,textarea::-moz-placeholder{   /* Mozilla Firefox 19+ */
    color:#BBB;
}
input:-moz-placeholder,textarea:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
    color:#BBB;
}
input:-ms-input-placeholder,textarea:-ms-input-placeholder{    /* ie  */
    color:#BBB;
}
.line:last-child{
  border-bottom: none;
}
.red{
    color: #EF813A;
}
.pc{
    display: block !important;
}
.h5{
    display: none !important;
}
.imgs{
    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;
}
.imgs:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}
.abr{
    position: relative;
}
.m20{
    margin-top: 20px;
}
.m30{
    margin-top: 30px;
}
.m40{
    margin-top: 40px;
}
.mb100{
    margin-bottom: 120px;
}
/*header*/
.header {
    width: 100%;
    position: relative;
    top: 0px;
    left: 0px;
    height: 75px;
    transition: all 0.35s;
    z-index: 99999;
    background: #1e439a;
    background-size: 100% auto;
}
.home .header{
    position: absolute;
    background: transparent;
}
.header.show {
    position: fixed;
    background: #1e439a;
    box-shadow: 0 2px 12px 0 rgba(0,9,27,.1);
    transition: all 0.35s;
}
.header .wrapper{
    display: flex;
    height: 75px;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.header .logo{
    display: block;
    width: auto;
    height: 39px;
    margin: 18px 0 18px 0;
}
.header .logo img{
    display: block;
    width: 100%;
    height: 100%;
}
.header .nav{
  display: flex;
  justify-content: flex-start;
  list-style:none;
  margin:0;
  padding:0;
}
.header .nav li{
  width: auto;
  height: 75px;
  padding: 0 20px;
  display:inline-block;
  position:relative;
  transition: all 0.2s linear;
}
.header .nav li a{
  display:block;
  width:auto;
  height: 75px;
  line-height: 75px;
  color:#FFFFFF;
  font-size:16px;
  text-align: left;
  position: relative;
}
.header .nav li:hover,.header .nav li.cur{
  color:#FFFFFF;
}
.header .nav li a:after {
  position: absolute;
  display: block;
  content: "";
  left: 50%;
  bottom: 16px;
  width: 0;
  height: 2px;
  background-color: #FFF;
  transition: all 0.35s;
}
.header .nav li.cur a:after,.header .nav li:hover a:after {
  width: 100%;
  margin-left: -50%;
  background-color: #FFF;
}
.header .nav li dl{
    display: none;
}
.header .nav li:hover dl{
    position: absolute;
    left: 0;
    top: 75px;
    padding: 2px 20px 2px 20px;
    display: block;
    min-width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0;
    border-radius: 10px;
    box-shadow: 0px 1px 6px 0px rgba(203,203,203,0.45);
}
.header .nav li:hover dl:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: -12px;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 999;
    opacity: 1;
    transform: translate(-50%, 0);
    box-shadow: 1px 2px -13px rgb(231 231 231 / 80%);
}
.header .nav li:hover dl dd{
    text-align: center;
    position: relative;
}
.header .nav li:hover dl dd:last-child{
  border-bottom: none;
}
.header .nav li:hover dl dd a{
    font-size: 14px;
    color: #333;
    height: 42px;
    line-height: 42px;
    font-weight: 400;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.header .nav li:hover dl dd:last-child a{
  border-bottom: none;
}
.header .nav li:hover dl dd a:hover,.header .nav li:hover dl dd.cur a{
    color: #0695ff;
}
.header .nav li.active dl a:after,.header .nav li:hover dl a:after{
  display: none;
}
.header .rightbox{
    float: right;
    display: flex;
    min-width: 225px;
    margin-top: 15px;
    height: 40px;
    justify-content: flex-end;
}
.header .rightbox div{
    display: block;
    width: 26px;
    height: 26px;
    margin-left: 23px;
    line-height: 36px;
    cursor: pointer;
    position: relative;
    transition: all .3s;
}
.header .rightbox div a{
    display: block;
    width: 100%;
    height: 100%;
}
.header .rightbox div:hover{
    transform: scale(1.15);
}
.header .rightbox .icon-search {
    background: url(../img/icon-search.png) no-repeat left center;
    background-size: 20px 20px;
}
.header .rightbox .icon-user {
    background: url(../img/icon-user.png) no-repeat left center;
    background-size: 22px 22px;
}
.header .rightbox .icon-cart{
    background: url(../img/icon-cart.png) no-repeat left center;
    background-size: 26px 26px;
}

.header .rightbox .icon-cart span.item_count {
    font-size: 12px;
    font-weight: 500;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #000000;
    color: #fff;
    display: inline-block;
    text-align: center;
    line-height: 18px;
    position: absolute;
    top: -7px;
    right: -12px;
}


.header .rightbox .icon-search:hover{
    opacity: 0.8;
}
.icon-menu {
    display: none;
    position: absolute;
    right: 4%;
    top: 20px;
    width: 20px;
    height: 18px;
    background: url(../img/icon-menu.png) no-repeat center center;
    background-size: 100% 100%;
}
.m-menu{
    display: none;
}


/*subbanner*/
.subbanner{
    display: block;
    width: 100%;
    height: 575px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.subbanner.banner-faq{
    height: 380px;
    background-image: url(../img/img-banner-faq.jpg);
}
.subbanner .text{
    position: absolute;
    left: 16.6%;
    top: 50%;
    transform:translate(0,-50%);
    color: #FFF;
}
.subbanner .text .title{
    font-size: 100px;
    font-family: 'Robot-SemiBold';
}

/*path*/
.path {
  position: relative;
  color: #808080;
}
.path a {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  font-size: 16px;
  color: #808080;
}
.path span {
  display: inline-block;
  padding: 0 10px;
  font-size: 13px;
  font-weight: bold;
  color: #cccccc;
}
.path .red{
  color: #FF6600;
}
.path a:hover {
  color: #1f1c5e;
}
.news-body{
    display: block;
    width: 1200px;
    padding: 0 50px 30px;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto;
}
.news-body img{
    display: block;
    max-width: 100%;
    height: auto;
    margin: 48px 0;
}
/*banner*/
.homebanner{
    display: block;
    width: 100%;
    height: 845px;
    position: relative;
    margin-bottom: 50px;
}
.homebanner.subbanner{
    height: 660px;
    margin-bottom: 45px;
}
.homebanner .pic{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 10;
}
.homebanner .text {
    position: absolute;
    display: flex;
    left: 14.5%;
    top: 50%;
    transform:translate(0,-50%);
    color: #FFFFFF;
    line-height: 1;
    z-index: 60;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.homebanner .text .title{
    font-weight: bold;
    font-size: 55px;
    font-family: 'Robot-SemiBold';
}
.homebanner .text .subtitle{
    padding-top: 40px;
    font-size: 35px;
    font-family: 'Robot-Regular';
}
.homebanner .text .btn{
    display: flex;
    padding-top: 75px;
    padding-bottom: 30px;
}
.homebanner .text .btn a {
    display: flex;
    justify-content: center;
    width: 210px;
    height: 65px;
    color: #FFFFFF;
    line-height: 61px;
    border:2px solid #FFFFFF;
    font-size: 20px;
    border-radius: 33px;
    margin: 0 30px 0 0;
    background-color: rgba(30, 67, 154, 0.35);
    text-align: center;
    overflow: hidden;
}
.homebanner .text .btn a.cur{
    border:none;
    line-height: 65px;
    background-color: #1e439a;
}
.homebanner .text .btn a:hover{
    background-color: rgba(30, 67, 154, 0.65);
}
.homebanner .text .btn a.cur:hover{
    background-color: #0e2e79;
}
.homebanner .swiper-container{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    list-style: none;
    z-index: 1;
    position: absolute;
    bottom: 0;
}
.homebanner .swiper-button-prev{
    left: 30px;
}
.homebanner .swiper-button-next{
    right: 30px;
}
.homebanner .swiper-button-prev,.homebanner .swiper-button-next{
    width: 46px;
    height: 46px;
    margin-top: -50px !important;
    border-radius: 50%;
    border: none;
    background-color: #4890C3;
    opacity: 0.6;
}
.homebanner .swiper-button-disabled{
    opacity: 0.2;
}
.homebanner .swiper-button-prev:hover,.homebanner .swiper-button-next:hover{
    opacity: 1;
}
.homebanner .swiper-button-next:after,.homebanner .swiper-button-prev:after{
    color: #FFFFFF;
    font-size: 18px;
}
.homebanner .swiper-pagination{
    bottom: 50px;
}
.homebanner .swiper-pagination .swiper-pagination-bullet {
    width: 48px;
    height: 6px;
    margin: 0 6px;
    display: inline-block;
    border-radius: 3px;
    background: #FFFFFF;
    opacity: .4;
}
.homebanner .swiper-pagination .swiper-pagination-bullet-active{
    opacity: 1;
    background: #4890C3;
}

.title-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    text-align: left;
    padding-bottom: 20px;
}
.title-wrap .title {
    font-size: 32px;
}
.title-wrap .more {
    padding-top: 3px;
    font-size: 15px;
}
.title-wrap .more i{
    font-size: 14px;
}

.submenu{
    display: block;
    width: 100%;
    height: auto;
    padding-top: 35px;
    padding-bottom: 65px;
}
.submenu .wrapper{
    display: flex;
    justify-content: center;
}
.submenu a{
    font-size: 18px;
    color: #1E439A;
    font-weight: 500;
    padding: 0 15px;
    display: block;
    min-width: 180px;
    height: 50px;
    line-height: 48px;
    text-align: center;
    border-radius: 25px;
    margin: 0 15px;
    padding: 0 25px;
    border: 1px solid #1E439A;
    background-color: #FFFFFF;
    box-sizing: border-box;
}
.submenu a.cur,.submenu a:hover {
    background: #1E439A;
    border: 1px solid #1E439A;
    color: #FFF;
}

.homenews{
    display: block;
    height: auto;
    margin-bottom: 80px;
    position: relative;
    padding-top: 10px;
}
.news-list{
    display: block;
    width: 100%;
    overflow: hidden;
}
.news-list ul{
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.news-list li{
    flex: 0 0 33.333%;
    width: 33.333%;
    padding: 15px 15px;
    margin-bottom: 10px;
}
.news-list li a{
    display: block;
    width: 100%;
    height: auto;
}
.news-list li .pic{
    display: block;
    width: 100%;
    height: 16.9vw;
    padding-left: 0;
    padding-right: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.news-list li .pic img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: All 0.3s ease-in-out;
}
.news-list li:hover .pic img {
    transform: scale(1.05);
}
.news-list li .text{
    display: block;
    padding: 0 0;
}
.news-list li .title{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin: 10px 0 0;
    color: #000;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-list li .date{
    font-size: 14px;
    margin: 18px 0 0;
    line-height: 1;
    color: #333;
}
.news-list li .desc{
    font-weight: 400;
    line-height: 1.5;
    font-size: 15px;
    color: #808080;
    margin: 10px 0 0;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-list li .btn{
    margin: 10px 0 0;
    line-height: 28px;
    font-size: 14px;
    color: #1E439A;
    text-decoration: underline;
}
.news-list li a:hover .btn{
    color: #e57e3d;
}
.newsbanner{
    display: block;
    width: 100%;
    height: 650px;
    color: #FFF;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.newsbanner::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    z-index: 1;
}
.newsbanner .wrapper{
    position: absolute;
    width: 1200px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 70px;
    z-index: 10;
}
.newsbanner .date{
    display: flex;
    align-items: center;
}
.newsbanner .date a{
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    line-height: 1;
    color: #000;
    margin-right: 20px;
    background-color: #FFF;
    border-radius: 18px;
}
.newsbanner .date a:hover{
    transform: scale(1.05);
}
.newsbanner .title{
    font-size: 64px;
    line-height: 1.25;
    font-family: 'Robot-SemiBold';
    padding-top: 20px;
    padding-bottom: 30px;
}
.newsbanner .path{
    color: rgba(255, 255, 255, 0.5);
}
.newsbanner .path a{
    color: rgba(255, 255, 255, 0.5);
}
.newsbanner .path a:hover{
    color: #FFF;
    text-decoration: underline !important;
}

.about-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}
.about-item .pic{
    flex: 0 0 48%;
    width: 48%;
}
.about-item .pic img{
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 15px;
}
.about-item .about-logo{
    border-radius: 0 !important;
}
.about-item .text{
    flex: 0 0 48%;
    width: 48%;
}
.about-item .text .title{
    font-size: 38px;
    font-family: 'Robot-SemiBold';
}
.about-item .text .desc{
    font-size: 18px;
    line-height: 1.6;
} 

.about-title {
    color: #404040;
    font-size: 60px;
}
.about-sales {
    position: relative;
    width: 100%;
    height: 980px;
    margin-bottom: 80px;
    background: url(../img/bg-about-area.jpg) no-repeat center center;
    background-size: cover;
}
.about-sales .text {
    position: absolute;
    left: 10%;
    top: 10%;
    z-index: 11;
    width: 80%;
    height: 80%;
}
.about-sales .about-title {
    width: 40%;
    color: #fff;
}
.about-sales .desc {
    width: 65%;
    color: #fff;
    position: absolute;
    right: 0;
    top: 1%;
    font-size: 18px;
}
.about-sales .date {
    position: absolute;
    left: 10%;
    top: 0;
    z-index: 11;
    width: 80%;
    height: 100%;
    z-index: 12;
    color: #fff;
}
.about-sales .date ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
}
.about-sales .date ul li {
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: 'Barlow-BlackItalic';
    position: relative;
}
.about-sales .date ul li i {
    width: 10px;
    height: 40px;
    background: #fdd000;
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%) skewX(340deg);
}
.about-sales .date ul li strong {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    font-size: 50px;
}
.about-sales .date ul li sub {
    display: inline-block;
    vertical-align: middle;
    font-size: 50px;
}
.about-sales .date ul p {
    display: block;
    margin: 0;
    padding: 0;
    margin-left: 2px;
    font-size: 18px;
}
.about-sales .date ul.date1 {
    left: 8%;
    top: 50%;
}
.about-sales .date ul.date2 {
    left: 42%;
    top: 45%;
}
.about-sales .date ul.date3 {
    left: 15%;
    top: 72%;
}
.about-sales .date ul.date4 {
    left: 55%;
    top: 57%;
}
.about-sales .date ul.date5 {
    left: 75%;
    top: 57%;
}
.sale-box{
    background: linear-gradient(180deg, #F4F4F3 0%, #FFFFFF 73.78%);
    padding-top: 60px;
    padding-bottom: 50px;
    margin-top: 100px;
}
.sale-box .title-wrap .title{
    font-weight: bold;
    font-size: 44px;
}
.sale-list{
    display: block;
    width: 100%;
    overflow: hidden;
}
.sale-list ul{
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.sale-list li{
    flex: 0 0 20%;
    width: 20%;
    padding: 15px 15px;
    margin-bottom: 10px;
}
.sale-list li a{
    display: block;
    width: 100%;
    height: 540px;
    background-color: #f4f4f3;
    border-radius: 20px;
    overflow: hidden;
}
.sale-list li .pic{
    display: block;
    width: 100%;
    height: 205px;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
    position: relative;
}
.sale-list li .pic img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: All 0.3s ease-in-out;
}
.sale-list li:hover .pic img {
    transform: scale(1.05);
}
.sale-list li .text{
    display: block;
    padding: 24px 24px;
}
.sale-list li .title{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 0;
    color: #000;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.sale-list li .desc{
    font-weight: 400;
    line-height: 1.5;
    font-size: 15px;
    color: #808080;
    margin: 10px 0 0;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
}

.medium-wrap{
    display: block;
    width: 1200px;
    margin: 0 auto;
}
.contact-wrap{
    display: block;
    width: 1200px;
    margin: 0 auto;
}
.contact-text{
    display: block;
    text-align: center;
}
.contact-text .title{
    font-size: 80px;
    font-family: 'Robot-SemiBold';
}
.contact-text .desc{
    display: block;
    width: 75%;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.6;
    color: #666;
}
.contact-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
    margin-top: 60px;
}
.contact-list .item{
    flex: 0 0 49%;
    width: 49%;
    padding: 40px;
    margin-bottom: 38px;
    text-align: center;
    background-color: #fafafa;
    border-radius: 15px;
}
.contact-list .item:hover{
    background-color: #F6F6F6;
}
.contact-list .item .icon{
    display: block;
    margin: 0 auto;
    width: 48px;
    height: 48px;
    margin-bottom: 17px;
}
.contact-list .item .icon svg{
    display: block;
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}
.contact-list .item .icon svg .fill {
    stroke: none;
    fill: rgb(0 0 0 / .1);
}
.contact-list .item .title{
    font-size: 20px;
    font-weight: bold;
}
.contact-list .item .mail{
    font-size: 14px;
}
.contact-list .item .mail a{
    text-decoration: underline !important;
}
.login-box{
    width: 42.5%;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 80px;
}
.login-box .title{
    font-size: 80px;
    font-family: 'Robot-SemiBold';
    text-align: center;
    margin-bottom: 45px;
}
.form-item {
    display: block;
    margin-bottom: 20px;
    position: relative;
}
.form-item.btn{
    display: flex;
    margin-top: 45px;
    justify-content: space-between;
}
.form-text a{
    font-size: 16px;
    color: #808080;
}
.form-text a:hover{
    color: #e57e3d;
}
.form-input {
    width: 100%;
    height: 60px;
    font-size: 16px;
    padding: 0 16px;
    border: 1px solid #EAEAEA;
    border-radius: 10px;
}
a.form-btn{
    display: inline-block;
    width: auto;
    line-height: 60px;
    padding: 0 30px;
}
.form-btn{
    width: 48.5%;
    height: 60px;
    font-size: 18px;
    color: #1E439A;
    text-align: center;
    border-radius: 30px;
    border: 1px solid #1E439A;
    cursor: pointer;
    background-color: #FFF;
    transition: All 0.3s ease-in-out;
}
.form-btn:hover{
    color: #FFF;
    background-color: #1E439A;
}
.form-btn.cur{
    color: #FFF;
    background-color: #1E439A;
}
.form-btn.cur:hover{
    color: #FFF;
    background-color: #e57e3d;
    border: 1px solid #e57e3d;
}
.account-topbar{
    display: flex;
    justify-content: space-between;
    line-height: 1.5;
    flex-direction: row;
    align-items: flex-end;
    margin-top: 10px;
}
.account-topbar .title{
    font-size: 80px;
    font-family: 'Robot-SemiBold';
}
.account-topbar .logout{
    display: block;
}
.account-topbar .logout a{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 145px;
    height: 60px;
    padding: 0 25px;
    font-size: 18px;
    color: #1E439A;
    text-align: center;
    border-radius: 30px;
    border: 1px solid #1E439A;
    cursor: pointer;
    background-color: #FFF;
    transition: All 0.3s ease-in-out;
}
.account-topbar .logout a i{
    font-size: 18px;
}
.account-topbar .logout a:hover{
    color: #FFF;
    background-color: #1E439A;
}
.account-wrap{
    display: flex;
    margin-top: 45px;
    justify-content: space-between;
}
.account-wrap .ac-title{
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 10px;
}
.account-wrap .left{
    flex: 0 0 60%;
    width: 60%;
}
.account-wrap .right{
    flex: 0 0 35%;
    width: 35%;
}
.ac-rbox{
    width: 100%;
    height: auto;
    padding: 50px 50px;
    background: #F9F9F9;
    border-radius: 15px;
    font-size: 20px;
    line-height: 1.6;
}
.ac-rbox a{
    display: flex;
    width: 230px;
    height: 60px;
    font-size: 18px;
    margin-top: 28px;
    color: #FFF;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 30px;
    border: 1px solid #1E439A;
    cursor: pointer;
    background-color: #1E439A;
    transition: All 0.3s ease-in-out;
}
.ac-rbox a:hover{
    color: #FFF;
    background-color: #e57e3d;
    border: 1px solid #e57e3d;
}
.order-list{
    display: block;
    width: 100%;
}
.order-list .item{
    width: 100%;
    height: auto;
    padding: 15px 25px;
    background: #FFFFFF;
    border-radius: 15px;
    margin-bottom: 38px;
    border: 1px solid #EAEAEA;
}
.order-list .item .orderno{
    display: flex;
    justify-content: space-between;
}
.order-list .item .orderno .number{
    display: flex;
    align-items: center;
    color: #1E439A;
    font-size: 16px;
}
.order-list .item .orderno .number em{
    display: block;
    width: 19px;
    height: 19px;
    color: #FFF;
    font-size: 14px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
    margin-top: -3px;
    background-color: #1E439A;
}
.order-list .item .orderno .btn{
    display: flex;
}
.order-list .item .orderno .btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 38px;
    font-size: 16px;
    color: #1E439A;
    background: #EAEAEA;
    border-radius: 19px;
    margin-left: 10px;
}
.order-list .item .orderno .btn a:hover,.order-list .item .orderno .btn a.cur{
    color: #FFF;
    background-color: #1E439A;
}
.order-list .item .orderno .btn a.cur:hover{
    background-color: #e57e3d;
}
.order-list .item .text{
    display: flex;
    justify-content: space-between;
}
.order-list .item .desc{
    font-size: 16px;
    line-height: 1.875;
    color: #808080;
    padding: 25px 0 15px;
    width: 250px;
}
.order-list .item .desc p{
    margin: 0 0;
}
.order-list .item .text .pic{
    flex: auto;
    display: flex;
    justify-content: flex-end;
}
.order-list .item .text .pic img{
    display: block;
    width: 200px;
    height: auto;
}
.pro-pages {
    padding: 20px 0 20px 0;
    display: flex;
    justify-content: center;
}
.pro-pages a{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #F6F6F6;
    text-align: center;
    color: #333;
    transition: all 0.35s;
    margin: 0 8px;
}
.pro-pages a:hover{
    background: #1e439a;
    color: #fff;
}
.pro-pages a i{
    margin-right: 0;
    font-weight: bold;
}
.pro-pages span {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #1e439a;
    color: #fff;
    text-align: center;
    margin: 0 6px;
}
.pop-mask{
    min-height: 100lvh;
    background: #0006;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 100000;
}
.popCart{
    position: fixed;
    top: 20px;
    right: 20px;
    width: 650px;
    height: calc(100% - 40px);
    border-radius: 20px;
    background: #FFF;
    overflow: hidden;
}
.popCart .cart-box{
    padding: 32px 40px;
}
.popCart .cart-top{
    position: relative;
    display: flex;
    align-items: center;
    font-size: 20px;
    line-height: 30px;
}
.popCart .cart-top em{
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #000;
    text-align: center;
    line-height: 24px;
    color: #FFF;
    margin-left: 10px;
    font-size: 12px;
}
.popCart .cart__close-icon{
    position: absolute;
    right: 0;
    top: 3px;
    -webkit-appearance: button;
    text-align: inherit;
    background-color: #0000;
    background-image: none;
    border: none;
    cursor: pointer;
}
.form-search{
    width: 100%;
}
.search-input{
    display: block;
    width: 100%;
    height: 52px;
    border: none;
    position: relative;
    border-bottom: 2px solid #e5e5e5;
}
.search-input input{
    border: none;
    width: 90%;
    font-size: 20px;
}
.search-input button{
    position: absolute;
    right: 10%;
    top: 5px;
    display: block;
    width: 80px;
    height: 26px;
    background: url(../img/icon-search.png) no-repeat center center;
    background-size: 20px 20px;
    filter: invert(100%);
    border: none;
    cursor: pointer;
}
.search-input button:hover{
    opacity: 0.8;
}
.cart-list{
    display: block;
    width: 100%;
    height: 59vh;
    overflow-y: auto;
    padding: 35px 0 0 0;
}
.cart-list .item{
    display: flex;
    height: 96px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
}
.cart-list .item .text {
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    padding-left: 116px;
    width: 450px;
    height: 96px;
    position: relative;
    flex-direction: column;
    justify-content: center;
}
.cart-list .item .text.all{
    width: 100%;
}
.cart-list .item img{
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 96px;
    height: 96px;
}
.cart-list .item .text strong{
    display: block;
    font-weight: bold;
    line-height: 1.4;
}
.cart-list .item .text span{
    color: #808080;
}
.cart-list .number{
    font-size: 12px;
}
.cart-list .number .quantity-input{
    display: block;
    margin: 0 auto;
    width: 48px;
    height: 35px;
    text-align: center;
    border: 1px solid #e5e5e5;
}
.cart-list .number button{
    display: block;
    width: 55px;
    background: none;
    border: none;
    font-size: 12px;
    text-align: center;
    color: #808080;
    cursor: pointer;
    text-decoration: underline;
}
.cart-bottom{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 24px 40px 40px;
    background-color: #FFF;
    border-top: 1px solid #e5e5e5;
}
.cart-bottom .cart-stack{
    display: flex;
    font-size: 20px;
    justify-content: space-between;
}
.cart-bottom .cart-text{
    font-size: 14px;
    color: #808080;
}
.cart-bottom .cart-text a{
    color: #808080;
    text-decoration: underline;
}
.cart-bottom .cart-text a:hover{
    color: #e57e3d;
    text-decoration: underline !important;
}
.cart-bottom .form-btn{
    display: block;
    margin: 10px 0 0 auto;
}
/*footer*/
.footer{
    display: block;
    width: 100%;
    padding: 30px 0 0 0;
    margin-top: 70px;
    border-radius: 4.5rem 4.5rem 0 0;
    background: #000 url(../img/footer-bg.png) no-repeat right center;
}
.footer .foot-box{
    display: flex;
    margin: 0 auto;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 38px;
}
.footer .foot-logo{
    width: auto;
    height: 96px;
    margin-left: 56px;
    margin-top: 22px;
}
.footer .foot-logo img{
    display: block;
    width: auto;
    height: 100%;
}
.footer .foot-box .foot-left .desc{
    display: block;
    width: 300px;
    font-size: 21px;
    line-height: 170%;
    font-family: 'Robot-SemiBold';
    color: #FFF;
    padding: 25px 0;
}
.footer .foot-nav{
    font-size: 15px;
}
.footer .foot-nav{
    flex: 0 0 50%;
    width: 50%;
    padding: 10px 0 0 0;
    display: flex;
    justify-content: space-between;
}
.footer .foot-nav li{
    display: inline-block;
    width: 33.33%;
    height: auto;
    text-align: left;
}
.footer .foot-nav li:first-child{
    padding-left: 0;
}
.footer .foot-nav li h3{
    display: block;
    font-weight: bold;
    margin-bottom: 12px;
}
.footer .foot-nav li h3 a{
    line-height: 1;
    font-size: 18px;
    color: #eaeaea;
}
.footer .foot-nav li a{
    display: block;
    line-height: 150%;
    font-size: 15px;
    padding: 8px 0;
    white-space: nowrap;
    color: #999;
}
.footer .foot-nav li a:hover{
    color: #FFFFFF;
    text-decoration: underline !important;
}
.footer .right{
    display: block;
    width: 320px;
}
.footer .right .subscribe{
    margin-top: 10px;
}
.footer .right .subscribe h3{
    line-height: 1;
    font-size: 18px;
    color: #eaeaea;
    font-weight: bold;
    padding: 10px 0;
}
.footer .right .secure-box{
    display: block;
    margin-top: 30px;
}
.footer .right .secure-box ul{
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}
.footer .right .secure-box li{
    display: block;
    margin: 0 10px 10px 0;
}
.footer .right .secure-box li svg{
    display: block;
}
.footer .right .email-box{
    width: 320px;
    margin: 15px 0;
    position: relative;
}
.footer .right .email-box input{
    display: block;
    width: 100%;
    height: 50px;
    font-size: 15px;
    padding: 13px 46px 13px 20px;
    border-radius: 25px;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
}
.footer .right .email-box input::-webkit-input-placeholder{
    color:#999;
}
.footer .right .email-box button{
    display: block;
    position: absolute;
    right: 7px;
    top: 7px;
    width: 36px;
    height: 36px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    background-color: #4890c3;
    transition: All 0.3s ease-in-out;
}
.footer .right .email-box button:hover{
    background-color: #e57e3d;
}
.footer .right .email-box button i{
    font-size: 14px;
    color: #FFF;
    margin-right: 0;
}
.footer .foot-copyright{
    display: block;
    font-size: 14px;
    color: #999;
    padding: 20px;
    line-height: 1.45;
    border-top: 1px solid #3c3c3c;
}
.footer .foot-copyright .wrapper{
    display: flex;
    justify-content: space-between;
}
.footer .foot-copyright a{
    color: #999;
}
.footer .foot-copyright .link a{
    margin: 0 8px;
}
.footer .foot-copyright a:hover{
    text-decoration: underline !important;
}
.share-wrap{
    display: flex;
    justify-content: flex-end;
    padding-top: 60px;
    padding-bottom: 50px;
}
.share-list{
    padding-left: 20px;
}
.share-wrap .share-list li{
    filter: invert(100%);
}
.footer .foot-share,.share-list{
	display: flex;
	padding-top: 0;
	justify-content: flex-start;
}
.footer .foot-share li,.share-list li{
	display: block;
	width: 28px;
	height: 28px;
	margin: 0 24px 0 0;
	padding-top: 0;
	transition: all .3s;
}
.footer .foot-share li:hover,.share-list li:hover{
	transform: scale(1.2);
}
.footer .foot-share li a,.share-list li a{
	display: block;
	width: 100%;
	height: 100%;
}
.icon-facebook{
	background: url("../img/icon-facebook.png") no-repeat center center;
	background-size: 28px 28px;
}
.icon-linkedin{
	background: url("../img/icon-linkedin.png") no-repeat center center;
	background-size: 28px 28px;
}
.icon-youtube{
	background: url("../img/icon-youtube.png") no-repeat center center;
	background-size: 28px 28px;
}
.icon-instagram{
	background: url("../img/icon-instagram.png") no-repeat center center;
	background-size: 28px 28px;
}
.icon-whatsapp{
	background: url("../img/icon-whatsapp.png") no-repeat center center;
	background-size: 28px 28px;
}
.footer .language {
	line-height: 50px;
	float: left;
	/*overflow: hidden;*/
	-webkit-transition: all .4s;
	transition: all .4s;
	position: relative;
    padding-top: 15px;
}

.footer .language ul {
	margin: 0 -3px;
}

.footer .language ul li {
	display: inline-block;
	padding: 0 3px;
}

.footer .language ul li a {
	font-size: 15px;
	line-height: 24px;
	display: block;
	color: #999;
    display: flex;
    align-items: center;
}
.footer .language ul li a svg{
    margin-top: 2px;
    transition: all .3s;
    margin-left: 5px;
}
.footer .language ul:hover li a svg{
    margin-top: 7px;
    transform: rotate(180deg);
}
.footer .language ul:hover a {
	color: #FFF;
}
.language:hover .language-box{
    display: block;
}
.language .language-box{
    position: absolute;
    bottom: 52px;
    left: 50%;
    z-index: 1000;
    display: none;
    float: left;
    width: auto;
    min-width: 116px;
    margin-left: -58px;
    padding: 15px 0;
    margin-top: 0;
    font-size: 15px;
	line-height: 2.5;
    text-align: left;
    list-style: none;
    border: none;
    white-space: nowrap;
    background-color: #222;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: 10px;
    border: 1px solid #313131;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}
.language .language-box a{
	display: block;
	padding: 0 20px;
    color: #999;
}
.language .language-box a:hover{
	color: #FFF;
	background:#1e439a;
}
.language .language-box:after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: #222;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    bottom: -8px;
    left: 67px;
}


.support-title{
    font-size: 80px;
    font-family: 'Robot-SemiBold';
    text-align: center;
    margin-bottom: 45px;
}
.support-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    padding-top: 0;
    padding-bottom: 35px;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.support-nav a{
    font-size: 18px;
    color: #1E439A;
    font-weight: 500;
    padding: 0 15px;
    display: block;
    flex: 1 0 340px;
    height: 65px;
    line-height: 63px;
    text-align: center;
    border-radius: 33px;
    margin: 0 15px 38px;
    border: 1px solid #1E439A;
    background-color: #FFFFFF;
    box-sizing: border-box;
}
.support-nav a.cur,.support-nav a:hover {
    background: #1E439A;
    border: 1px solid #1E439A;
    color: #FFF;
}
.support-list{
    display: block;
    padding-top: 50px;
    border-top: 1px solid #E5E5E5;
}
.support-list h2{
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}
.support-list li{
    display: flex;
    padding: 25px 0;
    justify-content: space-between;
    border-bottom: 1px solid #E5E5E5;
}
.support-list li:last-child{
    border: none;
}
.support-list li .text{
    font-size: 14px;
}
.support-list li a{
    display: block;
    color: #1E439A;
}
.support-list li a:hover{
    color: #e57e3d;
}
.support-list li .text .title{
    font-size: 18px;
}
.support-list li .info{
    font-size: 13px;
    color: #808080;
}
/*faq*/
.faq-sobox{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: block;
    width: 610px;
    height: 45px;
    background-color: #FFF;
    border-radius: 23px;
}
.faq-sobox input{
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    border: none;
    font-size: 16px;
    border-radius: 23px;
}
.faq-sobox button{
    position: absolute;
    top: 0;
    right: 4px;
    display: block;
    width: 45px;
    height: 45px;
    background: url(../img/icon-search.png) no-repeat center center;
    background-size: 20px 20px;
    border: none;
    cursor: pointer;
    filter: invert(100%)
}
.faq-sobox button:hover{
    opacity: 0.8;
}

/*im*/
.right-im{
    display: none;
    position: fixed;
    right: 15px;
    bottom: 100px;
    transform:translate(0,-10%);
    width: 50px;
    padding: 0 0;
    height: auto;
    z-index: 100000;
}
.right-im.show{
    display: block;
}
.right-im li{
    width: 50px;
    height: 50px;
    text-align: center;
    cursor: pointer;
    position: relative;
    margin-top: 5px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
}
.right-im li a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 45px 0 5px 0;
    font-size: 13px;
    color: #333333;
}
.right-im li a:hover{
    color: #FFFFFF;
}
.right-im li.im-nav{
    display: none;
    background:#444 url(../img/im-nav.png) no-repeat center top;
    background-size: 45px 45px;
    text-indent: -9999px;
    height: 46px;
    padding-top: 0;
}
.right-im li.im-gotop{
    background:#444 url(../img/im-gotop-v.png) no-repeat center top;
    background-size: 45px 45px;
    text-indent: -9999px;
    height: 46px;
    padding-top: 0;
}
.right-im li.im-gotop:hover{
    background:#333 url(../img/im-gotop-v.png) no-repeat center top;
    background-size: 45px 45px;
}
.right-im li.im-qq:hover .im-ercode,.right-im li.im-weixin:hover .im-ercode{
    display: block;
}
.right-im .im-ercode{
    display: none;
    position: absolute;
    right: 70px;
    top: 0;
}
.right-im .im-con{
    display: none;
    height: 64px;
    position: absolute;
    right: 49px;
    top: 0;
    padding: 0 20px 0 0;
    overflow: hidden;
    transition: all linear .2s;
}
.right-im li:hover .im-con{
    display: block;
}
.right-im .im-con .icon-arrow {
    display: block;
    position: absolute;
    right: 10px;
    top: 15px;
    width: 10px;
    height: 20px;
    opacity: 0.5;
}
.right-im .im-con .text {
    display: block;
    height: 64px;
    line-height: 64px;
    font-size: 14px;
    color: #fff;
    padding: 0 20px;
    white-space: nowrap;
    border-radius: 4px;
    background-color: rgba(175,189,213,0.8);
}
.right-im .im-con .text strong{
    font-size:18px;
    font-weight:bold;
    margin-left: 5px;
}



