@charset "utf-8";
/* -- reset -- */
html,body,h1,h2,h3,h4,h5,h6,div,dl,dt,dd,ul,ol,li,p,blockquote,pre,hr,figure,table,caption,th,td,form,fieldset,legend,input,button,textarea,menu{ margin:0; padding:0; }
header,footer,section,article,aside,nav,address,figure,figcaption,menu,details{ display: block; }
table{ border-collapse: collapse; border-spacing:0; }
caption,th{text-align: left; font-weight: normal; }
em { font-style: normal;}
li { list-style: none;}
a, a:hover { text-decoration: none; }
a,button{ cursor:pointer; }
img { border: none; vertical-align: top; }
input, textarea {outline: none; }
textarea{ overflow: auto; resize: none; }
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: normal;
    line-height: 1.1;
    color: inherit;
}
/* -- reset end -- */

@font-face {
    font-family: MyriadPro;
    src: url('../fonts/MyriadPro-Regular.otf');
}
@font-face {
    font-family: MyriadPro;
    src: url('../fonts/MyriadPro-Light.ttf');
    font-weight: 100;
}
@font-face {
    font-family: MyriadPro;
    src: url('../fonts/MyriadPro-Bold.otf');
    font-weight: bold;
}

.shadow {
    position: relative;
    box-shadow: 0 4px 10px 2px rgba(0,0,0,.1);
    transition: transform .2s ease-in-out;

}
.shadow:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 10px 6px rgba(0,0,0,.15) !important;
}
body {
    max-width: 1920px;
    margin: 0 auto;
    /*background: #f0f0f0;*/
    background-color: #fff;
    font-size: 16px;
    color: #000;
    overflow-y: auto;
    overflow-x: hidden;
    /*font-family:  MyriadPro, "Helvetica Neue", Helvetica, Arial, sans-serif;*/
}

/* nav start */
nav {
    position: fixed;
    max-width: 1922px;
    top: 0;
    left: 50%;
    right: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    z-index: 2000;
    color: #fff;
    /*修改*/
    background: #050000;
    text-align: center;
    font-size: 16px;
    font-family:  MyriadPro, "Helvetica Neue", Helvetica, Arial, sans-serif;
    /*box-shadow: 0 0 6px rgba(0,0,0,.4);*/
}
nav .nav-top {
    max-width: 1920px;
    margin: 0 auto;
    background: #434343;
    color: #fff;
    line-height: 30px;
}
nav .nav-top-wrap {
    max-width: 1174px;
    margin: 0 auto;
    position: relative;
}
nav .nav-top .share {
    float: right;
    margin: 0 10px;
    text-align: right;
}
nav .nav-top .share a {
    color: #fff;
    margin: 0 4px;
    font-size: 18px;
}
nav .nav-top .share a:hover {
    color: #ffc50c;
    cursor: pointer;
}
nav .nav-top .share a i {}
nav .nav-top .share a span {
    font-size: 10px;
    margin-left: 2px;
}
/*下拉菜单*/
.nav .open>.my, .nav .open>:focus, .nav .open>a:hover {
    background-color: #050000;
    border-color: #337ab7;
}
#lang {
    float: right;
    margin: 0 10px;
}
#lang button {
    display: inline-block;
    padding: 2px 6px;
    margin-bottom: 0;
    font-size: 10px;
    font-weight: 100;
    color: #fff;
    background: transparent;
}
#lang button:hover {
    color: #ffc50c;
    border: 1px solid #ffc50c;
    cursor: pointer;
}
#lang a:hover {
    color: #f00;
}
nav .nav-top .box {
    float: right;
}
nav .nav-top .box a {
    color: #fff;
}
nav .nav-top .box a:hover {
    color: #ffc50c;
}
nav .nav-top .box .shop-cart {
    margin-left: 10px;
}
nav .nav-top .box .shop-cart .badge {
    background: #f00;
}
nav .nav-top .box .user {
    margin-left: 10px;
}
nav .nav-top .box .user span {}

header {
    max-width: 1174px;
    padding: 0 8px;
    margin: 0 auto;
    position: relative;
    color: #000;
    z-index: 999;
    line-height: 60px;
}
header .logo-wrap {
    float: left;
}
header .logo-wrap .logo img {
    line-height: 60px;
    display: inline-block;
    vertical-align: middle;
}
#menu-btn {
    float: none;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    color: #000;
    margin: 8px 8px 0 0;
    border: none;
}

#menu {
    float: right;
    padding: 0;
    margin: 0;
    color: #000;
}
#menu ul {}
#menu a {
    position: relative;
    font-size: 14px;
    font-weight: 100;
    color: #fff;
    line-height: 30px;
    font-family: "Helvetica bold",Helvetica,Arial,sans-serif;
    letter-spacing: 1px;
}
#menu a:hover {
    /*color: #ffc50c;*/
    background: transparent;
}
#menu .active a {
    color: #ffc50c;
}
#menu .active .la-a{
    color: #fff;
}
#menu .news a {
    background: transparent;
    padding: 15px 0 15px 30px;
    position: relative;
}
#menu .news .dropdown-menu {
    padding: 0;
    transform: translateY(-2px);
}
#menu .news .dropdown-menu a {
    color: #000;
    font-size: 12px;
    padding: 10px;
    border-radius: 4px;
}
#menu .news .dropdown-menu a:after {
    display: none;
}
#menu .news .dropdown-menu a:hover {
    background: #ffc50c;
    color: white;
}
/*下拉菜单*/
.dropdown-menu{
    background-color: black;
    opacity: 0.9
}
/* nav end */

/* 购物车 start */
.shopCart {
    position: absolute;
    top: 32px;
    right: 10px;
    left: auto;
    bottom: auto;
    min-width: 50%;
    color: black;
    background: white;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    padding: 10px 15px 30px;
    box-shadow: 2px 4px 10px rgba(0,0,0,.5);
    z-index: 1000;
}
.shopCart .wrap {
    background: white;
}
.shopCart .wrap h2 {
    line-height: 2em;
    font-size: 30px;
    font-weight: bold;
    border-bottom: 1px solid #000;
}
.shopCart .productList {}
.shopCart .productList .item {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
    border-bottom: 1px solid #000;
}
.shopCart .productList .item div {
    line-height: 1.5em;
    font-size: 18px;
    padding: 10px 0;
}
.shopCart .productList .item img {
    max-width: 100px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.shopCart .productList .item .param {
    position: relative;
    top: 50%;
}
.shopCart .productList .item .param span {
    margin: 0 10px;
}
.shopCart .productList .item .price {}
.shopCart .productList .total {
    padding: 15px 0;
}
.shopCart .btn {
    width: 100%;
    text-align: right;
}
.shopCart .btn a {
    display: inline-block;
    width: 160px;
    background: red;
    border-radius: 6px;
    color: white;
    font-size: 18px;
    line-height: 2em;
    text-align: center;
}
.shopCart .btn a:hover {
    background: #ca0202;
}
.shopCart .btn a:nth-child(1) {
    margin-right: 10px;
}
@media screen and (max-width: 767px) {
    .shopCart {
        position: absolute;
        top: 92px;
        bottom: auto;
        left: 1px;
        right:  0;
        padding: 10px 15px 30px;
        height: 508px;
        overflow: auto;
    }
    .shopCart .wrap h2 {
        font-size: 20px;
    }
    .shopCart .productList .item {
        display: block;
        padding: 10px 0;
    }
    .shopCart .productList .item div {
        line-height: 1.5em;
        font-size: 18px;
        padding: 0;
    }
    .shopCart .productList .item .img {
        margin-bottom: 10px;
    }
    .shopCart .productList .total .text-right {
        text-align: center;
    }
    .shopCart .btn {
        text-align: center;
    }
    .shopCart .btn a {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    .shopCart .btn a:nth-child(1) {
        margin: 0 auto 10px;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .shopCart {
        min-width: 60%;
    }
}
/* 购物车 end */

/* 详情页二级导航 start */
.secNav {
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    max-width: 1920px;
    margin: 0 auto;
    background: rgba(0,0,0,.8);
    color: #fff;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    z-index: 300;
}
.secNav .wrap {
    max-width: 1180px;
    margin: 0 auto;
}
.secNav .secNav-wrap {
    max-width: 1180px;
    margin: 0 auto;
}
.secNav .col-1 {}
.secNav .col-1 h2 {
    font-size: 14px;
    line-height: 40px;
}
.secNav .right {
    text-align: right;
    padding: 0 10px 0;
}
.secNav .col-1 a {
    display: inline-block;
    margin-right:25px;
    padding: 0 2px;
    font-size: 14px;
    line-height: 40px;
    color: #E8E3E3;
    transition: all .2s ease;
}
.secNav .col-1 a:hover {
    color: #11bdfd;
}
.secNav .col-1 .buy {
    background: red;
    color: white;
    line-height: 36px;
    padding: 0 16px;
    border-radius: 6px;
}
.secNav .col-1 .buy:hover {
    background: #cf063a;
    color: white;
}
.secNav .right a:last-child{
    background-color: #11bdfd;
    border-bottom: 3px solid #11bdfd;
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    padding:0 20px; 
}
.secNav .right a:last-child:hover{
   color: #fff;
}
.secNav .right a.active:last-child{
   border-bottom: none;
   border-bottom: 3px solid #11bdfd;
}
.secNav .right a.active {
    /*padding: 0 36px;
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    background-color: #11bdfd;*/
    border-bottom: 3px solid #eeaa00;
    font-weight: bold;
    color: #fff;
}
.secNav .right a.active:hover {
    color: #fff;
}
@media screen and (max-width: 767px) {
    .secNav .left {
        text-align: left;
        padding: 0 0 0 10px;
    }
    .secNav .col-1 h2 {
        font-size: 14px;
        line-height: 30px;
    }
    .secNav .right {
        padding: 0;
    }
    .secNav .col-1 a {
        margin: 0 5px;
        padding: 0;
        font-size: 12px;
        line-height: 30px;
    }
    .secNav .col-1 .buy {
        line-height: 24px;
        padding: 0 10px;
        border-radius: 6px;
    }
}
@media screen and (max-width: 340px) {
    .secNav .right {
        padding: 0 10px 0 0;
    }
    .secNav .col-1 a {
        margin-left: 0;
        padding: 0 4px;
        font-size: 8px;
    }
    .secNav .col-1 .buy {
        padding: 0 10px;
    }
}
@media screen and (min-width: 767px) and (max-width: 991px) {
    .secNav .col-1 h2 {
        font-size: 14px;
    }
}
/* 详情页二级导航 end */

/* 详情页购买样式 start */
.shopping-1 {
    display: block;
    max-width: 1180px;
    margin: 0 auto;
    padding-top: 50px;
    border: 1px solid red;
}
.shopping-1 .wrap {
    padding: 10px 10%;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    border: 1px solid red;
}
.shopping-1 .title {
    font-size: 30px;
    font-weight: bold;
    line-height: 2em;
    text-align: center;
}
.shopping-1 h3 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.8em;
    border-bottom: 1px solid gray;
}
.shopping-1 .item {
    margin-bottom: 20px;
}
.shopping-1 .item .item-box {
    padding: 30px 0;
}
.shopping-1 .item-box .col-1 {
    margin-bottom: 10px;
}
.shopping-1 .item-box .col-1 a {
    display: inline-block;
}
.shopping-1 .item-box .col-1 img {
    max-height: 50px;
    width: auto;
    transition: all .2s ease-in-out;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.shopping-1 .item-box .col-1 img:hover{
    transform: scale(1.1,1.1);
    border: 1px solid #666;
}
@media screen and (max-width: 767px) {
    .shopping-1 .title {
        font-size: 24px;
    }
    .shopping-1 h3 {
        font-size: 18px;
        font-weight: normal;
    }
    .shopping-1 .item {
        margin-bottom: 10px;
    }
    .shopping-1 .item .item-box {
        padding: 10px 0;
        margin: 0;
    }
    .shopping-1 .item-box .col-1 {
        padding: 0 4px;
    }
}
/* 详情页购买样式 end */
/*  addcart样式 start */
.cart-box{
        
}
.cart-box .cart-row{
    margin-left:0px;
    margin-right:0px; 
    padding-top: 30px; 
}
.cart-box .cart-row .cart-md-left{
    text-align: center;
}  
.cart-box .cart-row .cart-md-left img{
    text-align: center;
    vertical-align: middle;
    margin: 0 auto;
}
.cart-box .cart-row .cart-md-right{
}
.cart-box .cart-row .cart-md-right h3{
    padding-left: 0px;
    text-align: left;
    margin-top: 20px; 
}
.cart-box .cart-row .cart-md-right h4{
    height: 38px;
    line-height: 38px;
    color: #eeaa00;
    padding-left: 0px;
    text-align: left;
    font-size: 20px;
}
.cart-box .cart-row .cart-md-right h4 .price{
    color: black;
    font-size: 18px;
}
.cart-box .cart-row .cart-md-right .one-year{
    text-align: left;
    display: block;
    padding:5px 0 5px 0  
}
.cart-box .cart-row .cart-md-right .my-panel{
   border: none;
   margin-bottom: 0px; 
}
.cart-box .cart-row .cart-md-right .my-panel .panel-heading{
    padding:10px 0; 
    background-color: transparent;
    border-bottom: none;
}
.cart-box .cart-row .cart-md-right .my-panel .panel-heading .panel-title{
    text-align: left;
}
.cart-box .cart-row .cart-md-right .my-panel .panel-heading .panel-title a{
   text-decoration: none;
}
#collapseThree .panel-body p{
   text-align: left;
   line-height: 1.5;
   margin-bottom: 10px;
}
.cart-box .cart-row .cart-md-right .know{
   text-align: left;
   padding:8px 0 8px 0  ;
}
.cart-box .cart-row .cart-md-right .purchase{
   text-align: left;
   padding:8px 0 8px 0  ;
}
.cart-box .cart-row .cart-md-right .know .a-link{
   margin-left: 5px; 
}
.cart-box .cart-row .cart-md-right h4 em{
    padding-left: 0px;
    /*padding-right: 10px; */
}
.cart-box .cart-row .cart-md-right .spinner {
    text-align: left;
    padding-left: 0px;
    height: 40px;
    line-height: 40px;
    margin-top: 5px;
}
.cart-box .cart-row .cart-md-right .spinner a{
    height: 27px;
    line-height: 27px;
    width: 25px;
    background-color: #ccc;
    display: inline-block;
    text-align: center;
}
.cart-box .cart-row .cart-md-right .spinner input{
    height: 27px;
    line-height: 27px;
    width: 60px;
    display: inline-block;
    text-align: center;
}
.cart-box .cart-row .cart-md-right .cart-btn{
    float: left;
    padding:5px 30px ;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 0px;
    font-size: 16px;
}
.cart-box .cart-row .cart-md-right .color{
   text-align: left;
   margin-top: 10px;
}
.cart-box .cart-row .cart-md-right .color .color-title{
   display: block;
   padding:10px 0 10px 0; 
   font-size:18px; 
}
.cart-box .cart-row .cart-md-right .color .name,
.cart-box .cart-row .cart-md-right .color .version{
   margin-right: 15px;
   padding:3px 15px 3px 15px;
   color: black; 
   background-color: #E9E9E9;
   margin-bottom:15px; 
}
@media screen and (max-width: 767px) {
    .cart-box .cart-row .cart-md-right .color .name,
    .cart-box .cart-row .cart-md-right .color .version{
        padding:5px 5px 5px 5px;
        font-size: 14px; 
    }
    .cart-box .cart-row .cart-md-right h3{
        margin-top: 0px; 
    }
}
/*  addcart样式 end */ 

/* 详情页buy页面样式 start */
.detail-buy {
    max-width: 1180px;
    margin: 0 auto;
    padding: 50px 0;
}
.detail-buy .wrap {
    padding: 0 10px;
}
.detail-buy .wrap .item {
    margin-bottom: 40px;
}
.detail-buy .wrap .item .item-wrap {}
.detail-buy .wrap .item .item-wrap .img {}
.detail-buy .wrap .item .item-wrap .img a {}
.detail-buy .wrap .item .item-wrap .img a img {
    margin: 0 auto;
}
.detail-buy .wrap .item .item-wrap .text {
    padding: 20px 0;
    text-align: center;
    color: black;
}
.detail-buy .wrap .item .item-wrap .text h3 {
    font-size: 20px;
    line-height: 1.5em;
    text-align: center;
    font-weight: bold;
}
.detail-buy .wrap .item .item-wrap .text .row {
    margin: 20px 15px;
}
.detail-buy .wrap .item .item-wrap .text .row .price {
    font-size: 16px;
    line-height: 40px;
    text-align: center;
}
.detail-buy .wrap .item .item-wrap .text .row .price span {}
.detail-buy .wrap .item .item-wrap .text .row .link {}
.detail-buy .wrap .item .item-wrap .text .row .link a {
    display: block;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    color: white;
    background: #ffc50c;
    border-radius: 6px;
}
.detail-buy .wrap .item .item-wrap .text .row .link a:hover {
    background: #f00;
}
@media screen and (max-width: 767px) {
    .detail-buy {
        padding: 50px 0 0;
    }
    .detail-buy .wrap .item .item-wrap .text .row {
        margin: 0 15px 20px;
    }
}
/* 详情页buy页面样式 end */
article {
    text-align: center;
    font-size: 16px;
    color: #000;
    /*font-family:  MyriadPro, "Helvetica Neue", Helvetica, Arial, sans-serif;*/
}
article .video .img {
    position: relative;
}
article .video .img .play-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 60px;
    height: 60px;
    background: url("../img/play.png") 0 0 no-repeat;
}
article .video .img .play-video:hover {
    background: url("../img/play.png") 0 -60px no-repeat;
}
article .video .img .youtube {
    display: block;
}
article .video .youtube img {
    margin: 0 auto
}

footer {
    text-align: center;
    /*font-family: MyriadPro, Arial, "Helvetica Neue", Helvetica, sans-serif;*/
    font-weight: 100;
    position: relative;
    z-index: 999;
    /*border-top: 1px solid #ffc50c;*/
    font-size: 14px
}
footer .wrap {
    margin: 0;
    background: #f0f0f0;
    /*padding-top: 6px;*/
}
/*修改*/
footer .box {
    max-width: 1920px;
    margin: 0 auto;
    background: #050000;
    color: white;
}
footer .box .box-wrap {
    max-width: 1180px;
    margin: 0 auto;
    text-align: left;
    padding: 40px 0 20px;
}
footer .box .item {
    margin-bottom: 30px;
    padding: 0 6px;
}
footer .box h4 {
    color: #ffc50c;
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 10px;
}
footer .box a {
    display: block;
    font-size: 14px;
    color: #fff;
}
footer .box a:hover {
    color: #ffc50c;
}
footer .box p {
    font-size: 18px;
}
footer .box .others a {
    display: block;
}
footer .box .register .email {
    display: inline-block;
    margin-top: 10px;
}
/*新增*/
footer .box .language {
    float: right;
    padding-left: 6px;
}
footer .box .language .btn-group ul li a{
    color: #333;
}
footer .box .register .email input {
    width: 160px;
    display: block;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
}
footer .box .register .email input:nth-child(3) {
    display: block;
    height: 34px;
    background: #ffc50c;
    color: #fff;
    width: 160px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    border: none;
    border-radius: 4px;
    margin-left: -1px;
    cursor: pointer;
}
footer .box .register .email input:nth-child(3):hover {
    background: #f3bc0d;
}
.mailBtn {
    display: block;
    height: 34px;
    background: #ffc50c;
    color: #fff;
    width: 160px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    border: none;
    border-radius: 4px;
    margin-left: -1px;
    cursor: pointer;
}
.mailBtn:hover {
    background: #f3bc0d;
}
#thanks {
    font-size: 16px;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    padding: 20px;
    text-align: left;

}
#thanks h2 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1em;
    margin-bottom: 10px;
}
/*修改*/
footer .copyright {
    font-size: 18px;
    line-height: 46px;
    font-weight: 900;
    font-family: MyriadPro, Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #777;
    border-top: 1px solid #050000;
    background-color: #333;
}

#toTop {
    position: fixed;
    right: 10px;
    bottom: 50px;
    width: 38px;
    height: 38px;
    background: #666;
    border-radius: 4px;
    z-index: 999;
}
#toTop i {
    font-size: 38px;
    color: #eee;
}
#toTop i:hover {
    color: #fff;
}

/* 自适应 */
@media screen and (max-width: 767px) {
    nav {
        position: fixed;
        top: 0;
        bottom: auto;
        left: 0;
        right: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    nav .nav-top .box {
        margin-right: 10px;
    }
    nav .nav-top .share {}

    #lang {
        float: left;
        margin: 0 10px;
    }
    header .logo-wrap {
        float: none;
        text-align: center;
    }
    #menu {
        margin: 0 -8px !important;
        float: none;
    }
    #menu ul {
        padding: 0;
        margin: 0 !important;
    }
    #menu ul li {
        text-align: center;
    }
    #menu ul li a {
        background: #484848;
        color: #eee;
        line-height: 24px;
    }
    #menu ul li a:hover {
        background: #484848;
        color: #fff;
    }
    #menu .news {
        background: #484848;
    }
    #menu .news .dropdown {}
    #menu .news .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        background: #6a6969;
    }
    #menu .news a {
        display: inline-block;
        padding: 15px 0 15px 0;
        width: 60%;
        text-align: right;
        transform: translateX(-16%);
    }
    #menu .news strong {
        display: inline-block;
        width: 30%;
        text-align: center;
        color: white;
    }
    #menu .news .dropdown-menu a {
        display: block;
        width: 100%;
        padding: 0;
        color: #fff;
        font-size: 10px;
        border-top: 1px solid #ccc;
        line-height: 30px;
        text-align: center;

        transform: translate(0,0);
    }
    #menu .news .dropdown-menu li:nth-child(1) a {
        border-top: none;
    }
    .open>.dropdown-menu {
        display: block !important;
    }

    article {
        padding-top: 122px;
    }
    footer .box .box-wrap {
        -text-align: center;
        padding: 20px 0 0;
    }
    footer .box .item {
        margin-bottom: 20px;
        border-bottom: 1px solid gray;
        padding-bottom: 5px;
    }
    footer .box .register .email {
        display: block;
    }
    footer .box .register .email input {
        width: 100% !important;
        display: block;
        text-align: center !important;
    }
    #toTop {
        bottom: 16px;
    }
}
@media screen and (min-width: 768px) {
    #menu ul {
        margin-right: 0;
    }
    #menu ul li a {
        padding: 15px 0 15px 20px;
    }
    #menu .news {
        margin-right: 10px;
    }
    #menu .news:hover .dropdown-menu {
        display: block;
    }
    footer .box .register .email span {
        width: 150px;
    }
    footer .share {
        position: fixed;
        bottom: 240px;
        right: 10px;
        z-index: 900;
    }
    footer .share a {
        display: block;
    }
    #toTop {
        bottom: 50px;
    }
}
@media screen and (min-width: 992px) {
    #menu ul li a {
        padding: 15px 24px;
    }
}
@media screen and (min-width: 1200px) {
    header .logo-wrap .logo img {
        transform: translateX(0);
    }
    footer .box .register .email span {
        width: auto;
    }
}
@media screen and (min-width: 1800px) {
    nav {
        width: 102%;
        margin-right: -2px;
    }
}