@charset "utf-8";

@font-face {
    font-family: 'roboto';
    src: url('../font/roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #f6f8f9;
    margin: 0px;
    font-family: 'roboto';
    padding: 0px;
}

button, input, select ,textarea{
    outline: none;
}

li {
list-style: none;
}
.header{
    width:100%;
    height:450px;
    box-sizing: border-box;
    background-color:#FFF;
    box-shadow: 0 5px 30px rgba(0, 22, 84, 0.1);
    -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    background-image:url(../image/bg.jpg);
    background-size: cover;
    position: relative;
}
.header-bg{
    padding:10px;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(2,0,36,1) 0%, 
    rgba(1,0,12,0) 40%, 
    rgba(0,0,0,0) 50%, 
    rgba(0,0,0,0.006039915966386533) 60%, 
    rgba(0,0,0,1) 100%);
    box-sizing: border-box;
}
.header-top{
    overflow: hidden;
    margin-top:20px;
    transition: all 0.5s ease;
}
.header-top-bg{
transition: all 0.5s ease;
}
.header-top-bg.fixed{
    position: fixed;
    width: 100%;
    top: 0px;
    box-sizing: border-box;
    left: 0px;
    background-color: #FFF;
    box-shadow: 0px 3px 15px rgb(1, 1, 1, 0.15);
    margin-top:0px;
    z-index: 3;
}
.header-top-bg.fixed > .header-top{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    margin-top: 10px;
}
.header-top-bg.fixed .menu > li > a{
    color:#08115c;
}
.header-top-bg.fixed .logo{
    background-size: auto 50px;
}
.header-top-bg.fixed .mobil-menu{
    color:#08115c;
    margin-right: 10px;
}
.content-center{
    width:100%;
    max-width:1200px;
    margin:auto;
}
.logo{
    float:left;
    width:250px;
    height:70px;
    background-image: url(../image/logo.jpg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 6px;
    transition: all 0.5s ease;
}
.search{
    background-color:#ffffffe3;
    border-radius:10px;
    width:100%;
    max-width: 600px;
    height:auto;
    box-shadow:0px 5px 15px rgb(1,1,1, 0.20);
    padding:15px;
    margin:auto;
    margin-top:100px;
    overflow: hidden;
    border:1px solid #FFF;
    display: none;
}
.search > i{
    display:block;
    width: 24px;
    height: 24px;
    float:right;
    cursor:pointer;
    margin-top:3px;
    font-size: 16pt;
    color: #2c3194;
}
.search > input{
    border:0px;
    width:calc(100% - 24px);
    padding:5px;
    background-color: transparent;
    font-size:12pt;
}
.menu{
    padding:0px;
    margin-top:22px;
    float:right;
    margin-left:25px;
    width: auto;
}
.menu > li.main-menu{
    padding:5px 10px;
    background-color:#FFF;
    color:#3369eb;
    border-radius: 4px;
}
.menu > li.main-menu > a{
    color:#FFF;
    font-size:12pt;
    transition: all 0.5s ease;
}
.menu > li{
    list-style: none;
    display:inline-block;
    margin-right:35px;
}
.menu > li:last-child{
    margin-right:0px;
}
.menu > li > a{
    text-decoration: none;
    color:#FFF;
    font-size:12pt;
}
.menu > li > a:hover{
    opacity: 0.8;
}
.menu > li > a i{
    margin-right:10px;
}
.mobil-menu{
    color:#FFF;
    font-size: 24pt;
    margin-top:8px;
    margin-right:5px;
    display: none;
    float: right;
}

.slider{
    margin-top:80px;
        }
        .slider > ul{
    
        }
        .slider > ul > li{
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05) !important;
            transform: scale(1);
            border-radius:15px;
            overflow: hidden;
            margin-right:20px;
            width:360px;
            height:auto;
            float:left;
            background-color:#FFF;
            transition: all 0.3s ease;
            margin-bottom:40px;
            border: 1px solid #e0e0e7;
        }
        .slider > ul > li:hover a .product-detail{
            margin-top: -92px;
        }
        .slider > ul > li:hover a .image::after{
            opacity: 0.8;
        }
        .slider > ul > li > a{
            display:block;
            text-decoration: none;
            color:#222;
            position:relative;
            
        }
        .slider > ul > li > a > div.image{
            background-size: cover;
            background-position: top;
            background-repeat: no-repeat;
            width: 100%;
            height: 440px;
            
        }
        .slider > ul > li > a > div.image::after {
            background-color: #00000078;
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition:all 0.4s ease;
        }
        .slider > ul > li > a > .product-detail{
            position: absolute;
            width: calc(100% - 20px);
            background-color: rgb(255, 255, 255, 1);
            transition: all 0.3s ease;
            color: #000;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
            overflow: hidden;
            text-align: center;
            margin-left: 10px;
            margin-right: 10px;
        }
        .slider > ul > li > a > .product-detail > .slider-title{
            padding: 11.5px 5px;
            font-size: 12pt;
        }
        .slider > ul > li > a > .product-detail > .slider-content{
            padding: 10px;
            font-size: 11pt;
        }
        .slider > ul > li > a > .product-detail > .slider-buy{
            padding: 10px;
            /* border-top: 1px solid #EEE; */
            overflow: hidden;
            font-size: 14pt;
            display: none;
        }
        .slider > ul > li a .product-get{
            background-color:#2f2f97;
            color:#FFF;
            text-decoration: none;
            padding:10px 25px;
            font-size:11.5pt

        }
        .slider > ul > li a .product-get:hover{
            background-color:#4545b8;
        }
        .footer{
            width: 100%;
            height: 500px;
        }
        .page-menu{
            position: absolute;
            margin-top: -35px;
            z-index: 2;
            width: 100%;
            text-align: center;
            display: none;
        }
        .page-menu ul{
            background-color:#FFF;
            width: auto;
            margin:auto;
            border-radius: 20px;
            padding: 10px 25px;
            display:inline-block;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .05), 0 4px 6px -2px rgba(0, 0, 0, .03) !important;
        }
        .page-menu li{
            list-style: none;
            float:left;
        }
        .page-menu li a{
            display: block;
            padding: 15px 30px;
            text-decoration: none;
            color: #323295;
            text-align: center;
            font-size: 13pt;
            font-weight: bold;
        }
        .page-menu li a span {
            margin-top: 4px;
            display: inline-block;
        }
        .page-menu li a i{
            margin-right:10px;
            font-size: 28px;
    float: left;
        }
        .page-menu li a:hover{
            color: #4c4cc9;
        }

        .footer{
            float: left;
            overflow: hidden;
            width: 100%;
            height: auto;
            margin-top:50px;
            border-top:2px solid #EEE;
            /* background-color: #323295; */
            background-color: #323295;
            padding:30px;
            box-sizing: border-box;
            color:#EEE
        }
        .footer-contact{
            width: 550px;
            float:left;
        }
        .footer-contact > div{
            margin-top:10px;
            width: 500px;
            overflow: hidden;
        }
        .footer-contact > div > span:first-child{
            display:block;
            margin-right: 10px;
            text-align: right;
            width: 70px;
            float:left;
        }
        .footer-contact > div > span:last-child{
            display:block;
            float:left;
            width: calc(100% - 80px);
        }
        .footer-logo{
            float:right;
            width: calc(100% - 600px);
            height: 70px;
            background-size: contain;
            background-position: right;
            background-image: url(../image/logo.jpg);
            background-repeat: no-repeat;
        }

        /*PRODUCT*/
.product{
    padding-bottom:10px;
    margin-top:00px;
    margin-bottom:30px;
}
.product-left{
    float:left;
    width: calc(50% - 30px);
    margin-right:30px;
    box-shadow: 0px 3px 10px rgb(1, 1, 1, 0.05);
    padding:25px;
    background-color:#FFF;
    border-radius:10px;
    box-sizing: border-box;
}
.product-left > .image{
   width: 100%;
    height: auto;
    overflow: hidden;
}
.product-left > .image > div{
    width: 100%;
    height: 445px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.product-center{
    float:left;
    width: 50%;
    padding:25px;
    background-color:#FFF;
    border-radius:10px;
    box-sizing: border-box;
    box-shadow: 0px 3px 10px rgb(1, 1, 1, 0.05);
    color: #0e0f47;
}
.product-center > div{
    width: 100%;
}
.product-center > .title{
    font-size: 20pt;
    font-weight: bold;
    height: 40px;
}
.product-center > .amount{
    font-size: 22pt;
    border-bottom: 1px solid #EEE;
    margin-top: 15px;
    padding-bottom: 20px;
    color: #FF0000;
    font-weight: bold;
}
.product-center > .info{
    width: 100%;
    overflow: hidden;
    margin-top:10px;
}
.product-center > .info > div{
    width: 100%;
    overflow: hidden;
    margin:15px 0px;
    font-size: 11pt;
}
.product-center > .info > div > strong{
    display:inline-block;
    width: 150px;
}
.product-center > .info > div > i{
    display:inline-block;
    margin-right:50px;
    font-style: normal;
}
.product-center > .info > div > span{
    display:inline-block;
    width: 150px;
}
.product-right{
    float:right;
    width: 50%;
    padding:25px;
    background-color:#FFF;
    border-radius:10px;
    box-sizing: border-box;
    margin-top:30px;
    box-shadow: 0px 3px 10px rgb(1, 1, 1, 0.05);
}
.product-right > .price{

}
.product-right > .price > .piece{
    float:right;
    width: 90px;
    background-color:#ecf0f5;
    margin-right:10px;
    border-radius:10px;
    padding:10px 0px;
    box-sizing: border-box;
}
.product-right > .price > .piece > i{
    display:block;
    float:left;
    width: 30px;
    padding:10px;
    box-sizing: border-box;
    text-align:center;
    cursor:pointer;
    color:#346697;
    font-style: normal;
    user-select: none;
}
.product-right > .price > .piece i.reduce{

}
.product-right > .price > .piece i.increase{

}
.product-right > .price > .piece input[name=piece]{
border:0px;
background-color:transparent;
text-align: center;
padding:10px;
outline:none;
width: calc(100% - 60px);
float:left;
box-sizing: border-box;
margin-top:3px;
}
.product-right > .read{
    float: left;
    width: 200px;
    margin-right: 10px;
    }
    .product-right > .read > button{
        border: 0px;
        border-radius: 10px;
        padding: 20px;
        text-align: right;
        background-color: #51687f;
        color: #FFF;
        width: 100%;
        box-sizing: border-box;
        font-size: 12pt;
        cursor: pointer;
        background-image: url(../images/read.svg);
        background-repeat: no-repeat;
        background-size: 34px auto;
        background-position: 15px;
    }
.product-center  > .buy{
    float:right;
    width: 180px;
    margin-top: 20px;
}
.product-center > .buy > a{
    border: 0px;
    border-radius: 10px;
    padding: 20px;
    padding-right: 30px;
    text-align: center;
    background-color: #323295;
    color: #FFF;
    width: 100%;
    box-sizing: border-box;
    font-size: 14pt;
    cursor: pointer;
    text-align: right;
    background-image: url(../image/basket-light.svg);
    background-repeat: no-repeat;
    background-size: 34px auto;
    background-position: 15px;
    display: inline-block;
    text-decoration: none;
}
.product-center > .buy > a:hover{
    background-color: #0080ff;
}
.product-info{
    width: 100%;
    padding:25px;
    background-color:#FFF;
    border-radius:10px;
    box-sizing: border-box;
    margin-top:20px;
    box-shadow: 0px 3px 10px rgb(1, 1, 1, 0.05);
    float: left;
}
.product-info > .tab{

}
.product-info > .tab > span{
    display:inline-block;
    margin-right:25px;
    font-size: 14pt;
    padding:10px;
    border-bottom:2px solid transparent;
    cursor:pointer;
    font-weight: bold;
    color:#0e0f47;
}
.product-info > .tab > span:hover{
    opacity: 0.5;
}
.product-info > .tab > span.active{
    border-bottom:2px solid #bfd1e2;
}
.product-info > .info-page{
    margin-top:20px;
}
.product-info > .info-page > div{
    padding:25px 0px;
    line-height: 30px;
}
/**/

.page-path{
    width: 100%;
    padding:30px 0px;
    font-size: 12pt;
    text-indent: 10px;
}
.page-path > a{
    text-decoration: none;
    color: #171a68;
}
.page-path > a.home{
    font-weight: bold;
}
.page-path > a:hover{
    opacity: 0.5;
}
.page-path > i{
    cursor: default;
    font-style: normal;
    margin:0px 5px;
    color: #888;
}
.page-path > span{
    cursor: default;
    color: #555;
}

/*PAGE*/
.content-center.page{
    box-shadow: 0px 3px 10px rgb(1, 1, 1, 0.05);
    padding:25px;
    background-color:#FFF;
    border-radius:10px;
    box-sizing: border-box;
    /* margin-top:30px; */
}
.content-center.page > .title{
    font-size: 18pt;
    width: 100%;
    margin-bottom:20px;
}
.content-center.user .page-title > div{
    font-size: 16pt;
    width: 100%;
}

/**/
.contact{
    overflow: auto;
    padding: 10px;
    box-sizing: border-box;
}
.contact-left{
    width: calc(50% - 30px);
    margin-right:30px;
    float:left;
}
.contact-left iframe{
    border-radius: 6px;
    overflow: hidden;
}
.contact-right{
    width: 50%;
    float:right;
    height: auto;
}
.contact-right > div{
    /* box-shadow: 0px 3px 10px rgb(1, 1, 1, 0.05);
    padding:25px;
    background-color:#FFF;
    border-radius:10px; */
    box-sizing: border-box;
}
.contact-right > div.contact-content{
    height: auto;
    margin-top: 86px;
}
.contact-right > div > div{
    margin-bottom: 20px;
    border-bottom: 1px dashed #e5e5e5;
    padding-bottom: 20px;
    display: block;
    overflow: hidden;
    
}
.contact-right > div > div:last-child {
    border: 0px;
}
.contact-right > div > div > strong {
    width: 100px;
    display: block;
    float: left;
}
.contact-right > div > div > span {
    width: calc(100% - 100px);
    display: inline-block;
}
.contact-right >.title{
    font-size: 16pt;
    width: 100%;
    margin:0px;
    margin-bottom:20px;
    display: none;
}
.page-header-text{
    text-align: center;
    margin:auto;
    max-width: 1200px;
    margin-top:0px;
    text-shadow: 2px 2px #0000008c;
    position: relative;
}
.page-header-text > span:first-child{
    display: block;
    font-size: 32pt;
    color:#FFF;
    opacity: 0;
    animation-name: pageHeaderText1;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    position: absolute;
    text-align: center;
    width: 100%;
}
.page-header-text > span:last-child{
    display: block;
    color:#FFF;
    font-size: 20pt;
    margin-top:20px;
    text-align: right;
    opacity: 0;
    right: -200px;
    animation-name: pageHeaderText2;
    animation-duration: 1s;
    animation-delay: 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    position: absolute;
    text-align: center;
    width: 100%;
    margin-top:160px
}
@keyframes pageHeaderText1 {
    0%   {opacity: 0;margin-top:0px}
    100%   {opacity: 1;margin-top:100px}
  }
  @keyframes pageHeaderText2 {
    0%   {opacity: 0;right:-200px}
    100%   {opacity: 1;right:0px}
  }