/*清除浮动*/

.clearfix:after,
.clearfix:before {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}
/*图标类*/

.search_icon,
.submit_icon,
.cancel_icon {
    width: 16px;
    height: 16px;
    position: absolute;
    left: 10px;
    top: 3px;
    background: url(../../images/search.png);
    -webkit-background-size: 100%;
    background-size: 100%;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}

.submit_icon {
    background: url(../../images/submit.png);
    -webkit-background-size: 100%;
    background-size: 100%;
}

.cancel_icon {
    background: url(../../images/cancel.png);
    -webkit-background-size: 100%;
    background-size: 100%;
}
/*按钮组*/

.darkBtn {
    width: 70px;
    height: 24px;
    border: 1px solid #9C7546;
    background: #9C7546;
    color: #fff;
    border-radius: 24px;
    padding-left: 20px;
    font-size: 12px;
    letter-spacing: 2px;
    position: relative;
}

.lightBtn {
    width: 70px;
    height: 24px;
    border: 1px solid #9C7546;
    border-radius: 24px;
    padding-left: 20px;
    font-size: 12px;
    letter-spacing: 2px;
    position: relative;
    background: #fff;
    margin-left: 20px;
    color: #9C7546;
}
/*flex布局*/

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flexCol {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

.flexWrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
/*other Css*/

.boxBorder {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/*secondNav*/

.secondNavHack {
    height: 40px;
    width: 100%;
    background: none;
}

.secondNav {
    min-width: 100%;
    height: 40px;
    background: #444444;
    padding: 0 20px;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 111;
}

.secondNav .secondNav_list {
    min-width: 900px;
}

.secondNav_list>a {
    width: 100px;
    height: 100%;
    color: #B5B5B5;
}

.secondNav_list select {
    border: solid 1px #444444;
    color: #B5B5B5;
    margin-right: 25px;
    /*自定义右侧三角形*/
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url("../../images/arrow.png") no-repeat right;
    -webkit-background-size: 16px;
    background-size: 16px;
    padding-right: 26px;
}
/*三角形微软修正*/

.secondNav_list select::-ms-expand {
    display: none;
}
/*下拉选单*/

.secondNav_list option {
    background: #4E4E4E;
}
/*二级菜单 搜索*/

.secondNav_search {
    width: 260px;
    background: none;
    justify-content: space-around;
    -ms-align-items: center;
    align-items: center;
}

.secondNav_search input {
    height: 22px;
    border: 1px solid #B5B5B5;
    border-radius: 22px;
    padding: 0 10px;
    font-size: 12px;
    margin-right: 10px;
    background: none;
    color: #fff;
    /*flex占位修正*/
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
}

.secondNav_search input:focus {
    border: 1px solid #9C7546;
}

.secondNav_search button:hover {
    background: #B48E60;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}
/*遮罩层*/

.mask {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    z-index: 111;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
}

.mask_small {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    z-index: 1111;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
}
/*公共弹窗*/

.win_model {
    min-width: 1000px;
    height: 440px;
    background: #fff;
    z-index: 111;
    position: fixed;
    top: 100px;
    left: 50%;
    margin-left: -500px;
    border-radius: 6px;
    border: 1px solid #333;
    -webkit-box-shadow: 1px 1px 10px #000;
    box-shadow: 1px 1px 10px #000;
    display: none;
}

.win_header {
    width: 100%;
    height: 40px;
    background: #444444;
    color: #fff;
    position: relative;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.win_header p {
    margin-left: 30px;
}

.win_header_icon {
    height: 100%;
    position: absolute;
    left: 0;
}

.win_close,
.win_closeAll {
    height: 20px;
    margin-right: 10px;
}

.win_content {
    width: 100%;
    height: 360px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.win_footer {
    width: 100%;
    height: 30px;
    padding-top: 10px;
    border-radius: 0px 0px 6px 6px;
    background: #fff;
    justify-content: center;
}
/*单选自定义类型*/

.radioType {
    width: 15px;
    height: 15px;
    border: 1px solid #ddd;
    border-radius: 15px;
    background: none;
    position: relative;
}

.radioChoose {
    background: url(../../images/radioChoose.png);
    -webkit-background-size: cover;
    background-size: cover;
}

.radioType input {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
/*小型弹窗*/

.win_small_model {
    width: 400px;
    height: 300px;
    background: #fff;
    z-index: 9999;
    position: fixed;
    top: 20%;
    left: 50%;
    margin-left: -200px;
    -webkit-box-shadow: 1px 1px 10px #333;
    box-shadow: 1px 1px 10px #333;
    border-radius: 4px;
    display: none;
}

.win_small_header {
    width: 100%;
    height: 30px;
    padding: 0 10px;
    background: #444444;
    color: #fff;
    border-radius: 3px 3px 0 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.win_small_header img {
    height: 50%;
}

.win_small_content {
    width: 100%;
    height: 240px;
    padding: 10px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
}

.win_small_footer {
    width: 100%;
    height: 30px;
    padding-top: 10px;
    border-radius: 0px 0px 6px 6px;
    background: #fff;
    justify-content: center;
}
/*分页样式*/

.yuding_pages {
    width: 100%;
    margin-top: 20px;
    justify-content: flex-end;
    -ms-align-items: center;
    align-items: center;
}

.yuding_pages>p {
    margin-right: 20px;
}

.pages_button {
    width: 25px;
    height: 25px;
    border: 1px solid #A0A0A0;
    border-radius: 4px;
    background: #fff;
    margin: 0 2px;
}

.pages_button_choose {
    background: #9C7546;
    color: #fff;
}

.yuding_pages .everyPages {
    margin: 0 0 0 20px;
}
/*三级导航*/

.thirdNav {
    padding: 20px 3%;
    width: 100%;
    height: 3rem;
    -ms-align-items: center;
    align-items: center;
}

.thirdNav>div {
    margin-right: 1rem;
    font-size: 16px;
    border-bottom: 2px solid #fff;
}

.thirdNav>div.choose {
    border-bottom: 2px solid #9C7546;
}
