html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

#slider {
    background: url(../imgs/product_center/pro_center_bg.jpg) 100% 100%;
    background-size: cover;
    background-position: center;
    height: 82%;
}

.row-magin {
    margin: 3% 10%;
}

.zd-menu-box {
    text-align: center;
    padding: 0 2%;

}

.zd-menu-box-uncenter {
    padding: 0 2%;
}

.zd-menu {
    padding: 5%;
    background: #F6F6F6;
    margin-bottom: 6%;
}

.zd-menu > ul {
    padding: 0 10% 15%;
}


.zd-menu > ul > li {
    font-size: 16px;
    font-weight: bold;
    padding: 10% 2% 2%;
    border-bottom: 1px solid #AEBCB9;
}


.zd-menu li,
.yulan > div > img {
    cursor: pointer;
}


.zd-menu > ul > li > a {
    color: #333;
    text-decoration: none;
}


.open-div > a > i {
    margin-left: 15%;
}

.switch-div > ul > li {
    font-size: 15px;
    padding: 2%;
}

.switch-div > ul > li > a {
    color: #333;
    text-decoration: none;
}

.type-div {
    display: flex;
    font-size: 20px;
    color: #FFFFFF;
    padding: 5%;
    padding-left: 11%;
    margin-bottom: 1%;
    font-weight: bold;
}

.type-div > span {
    font-size: 30px;
    color: #FFFFFF;
    margin-right: 5%;
}

.instruction {
    margin: 5% 0 15%;
}

.text-li {
    font-size: 16px;
    line-height: 25px;
}

/* 预览图片 */
.yulan-img {
    padding: 10%;
    border: 1px solid rgba(51, 51, 51, 0.3);
    margin-bottom: 5%;
}

.tuijian-ul > li {
    display: flex;
    flex-direction: column;
}

.tuijian-ul > li:hover {
    border: 1px solid #5087e5;
}

.glyphicon {
    top: 0;
    height: 100%;
}


.scroll {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 95px;
}

.box {
    height: 100%;
    float: left;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.box li {
    display: block;
    float: left;
    width: 111px;
    height: 95px;
    padding: 8px;
    background: transparent;
    color: #ccc;
    text-align: center;
    cursor: pointer;
}

.box li > img {
    border: 1px solid rgba(51, 51, 51, 0.3);
}

.box li:hover {
    color: #999;
}

.box li.active {
    background-position: -174px 0;
    color: #555;
    cursor: default;
}

.prev {
    width: 5%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(51, 51, 51, 0.6);
    cursor: pointer;
}

.next {
    width: 5%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(51, 51, 51, 0.6);
    cursor: pointer;
}

.scroll_list {
    width: 10000em;
    position: absolute;
}


.pro_info {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    margin: 4% 0;

}

.pro_info > div:first-child {
    margin-right: 3%;
    width: 19%;

}

.pro_info > div:last-child {
    width: 81%;
}

.btn_box {
    display: flex;
    flex-wrap: wrap;
}

.btn_box > div {
    border: 1px solid #989898;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27%;
    padding: 1% 3.5%;
    cursor: pointer;
    margin-right: 7%;
}


.koujin > div {
    font-size: 1.4rem;
    width: 20% !important;
    padding: 1%;
    margin-right: 2% !important;
    margin-bottom: 1.5% !important;
    word-break: break-all;
}

.number_input > div {
    margin-right: 0;
    width: 2rem;
    height: 2.667rem;
}

.number_input > input {
    width: 7rem;
}

.number_input > div > button {
    background: transparent;
    border: 0;
}

.dinggou {
    margin-left: 5%;
    color: #FFFFFF;
    background: #FF6600;
}

.dinggou:hover {
    background: #FF0000;
}


.layui-layer-title {
    background: #5087E5 !important;
    color: #FFFFFF !important;
}

/* 动画效果 */
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    /*初始状态 透明度为0*/
    40% {
        opacity: 0;
    }
    /*过渡状态 透明度为0*/
    100% {
        opacity: 1;
    }
    /*结束状态 透明度为1*/
}

@-webkit-keyframes fade-in { /*针对webkit内核*/
    0% {
        opacity: 0;
    }
    40% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fade-in {
    animation: fade-in !important; /*动画名称*/
    animation-duration: 1.5s !important; /*动画持续时间*/
    -webkit-animation: fade-in 1.5s !important; /*针对webkit内核*/
}  