*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    .h5 {
        display: block;
    }
    .pc {
        display: none;
    }
}
@media screen and (min-width: 768px) {
    .h5 {
        display: none;
    }
    .pc {
        display: block;
    }
}

img{
    display: block;
}

a{
    text-decoration: none;
}

.w-1200{
    display: block;
    max-width: 1200px;
    margin: 0 auto;

}

.flex {
    display: -webkit-flex; /* Safari */
    display: flex;
}
.align-items {
    align-items: center;
}

.wrap{
    flex-wrap:wrap;
}

.nowrap{
    flex-wrap:nowrap;
}
.flex-direction-row {
   display: -webkit-flex; /* Safari */
   display: flex;
   flex-direction: row;
}

.flex-direction-row-reverse {
   display: -webkit-flex; /* Safari */
   display: flex;
   flex-direction: row-reverse;
}

.flex-direction-column {
   display: -webkit-flex; /* Safari */
   display: flex;
   flex-direction: column;
}

.flex-direction-reverse {
   display: -webkit-flex; /* Safari */
   display: flex;
   flex-direction: column;
   justify-content: space-evenly; /* 水平均匀分布 */
}

.flex-wrap {
   display: -webkit-flex; /* Safari */
   display: flex;
   flex-wrap: wrap;
   align-items: center;
}

.flex-start {
   display: -webkit-flex; /* Safari */
   display: flex;
   justify-content: flex-start;
   align-items: center;
}

.flex-end {
   display: -webkit-flex; /* Safari */
   display: flex;
   justify-content: flex-end;
   align-items: center;
}

.flex-center {
   display: -webkit-flex; /* Safari */
   display: flex;
   justify-content: center;
   align-items: center;
}
.flex-space-around {
   display: -webkit-flex; /* Safari */
   display: flex;
   justify-content: space-around;
   align-items: center;
}

.flex-space-between {
    display: -webkit-flex; /* Safari */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-center{
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.modal-bg{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    visibility: hidden;
}
.message-modal-bg{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    visibility: hidden;
}
.loading-modal-bg{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    visibility: hidden;
}
.modal{
    background: #FFFFFF;
    border-radius: 5px;
    display: inline-block;
    width: 60%;
    overflow: hidden;
}
.message-modal{
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    pointer-events: all;
    padding: 8px 16px;
    border-radius: 4px;
    box-shadow: 0 1px 6px rgba(0,0,0,.2);
    background: #fff;
    position: relative;
}
.modal-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 20px;
    background: #D4B286;
}
.modal-body{
    padding: 10px;
    overflow: auto;
}
.modal-bottom{
    border-top: 1px solid #E5E5E5;
    padding: 18px 0;
    text-align: center;
}
.modal-btn{
    background: #D4B286;
    border-radius: 25px;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    padding: 12px 44px;
}

.cursor{
    cursor: pointer;
}
