* {
    padding: 0;
    margin: 0;
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE 10+ */
    user-select: none;
    /* 标准语法 */
}

html,
body {
    width: 100%;
    height: 100%;
    background: #f2f1f7;
}

body {
    max-width: 450px;
    margin: 0 auto;
    font-family: '宋体' !important;
}

.pointer {
    cursor: pointer;
}

.overseasBox {
    width: 100%;
    height: 100%;
    background: #f2f1f7;
}

.flex {
    display: flex;
}

/* 自动换行 */
.overFlow {
    word-wrap: break-word;
    overflow: hidden;
}

/* 超过文本省略 */
.overFlowEllipsis {
    overflow: hidden;
    /*超出部分隐藏*/
    text-overflow: ellipsis;
    /* 超出部分显示省略号 */
    white-space: nowrap;
    /*规定段落中的文本不进行换行 */
}

.overseasHead {
    position: fixed;
    width: 450px;
    height: 7%;
    line-height: 5vh;
    /* background-color: #191919; */
    z-index: 1;
    background: white;
}

.overseasHeadBox {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    box-sizing: border-box;
}

.leftReturn {
    width: 3%;
    height: 30%;
    margin-left: 3%;
}

.closure {
    width: 4%;
    height: 30%;
    margin-right: 3%;
}

.overseasHeadText {
    font-size: 16px;
    /* color: #fff; */
    line-height: 16px;
    /* text-align: center; */
    font-weight: 600;
}

.overseasContent {
    width: 450px;
}

.overseasFooter {
    display: none;
    /* position: fixed; */
    /* width: 450px; */
    /* height: 10%; */
    /* bottom: 0; */
    /* line-height: 5vh; */
    /* background-color: #191919; */
    /* z-index: 1; */
}

.overseasFooterBox {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: auto;
}

.overseasFooterCommon {
    min-width: 80px;
    max-width: 80px;
    /* width: 33.33%; */
    /* height: 100%; */
    margin-right: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.overseasFooterText {
    width: 100%;
    text-align: center;
    color: #CA4019;
    font-size: 12px;
}

.cardW {
    width: 95%;
    margin: 0 auto;
}

#bzzx {
    position: relative;
    width: 95%;
    margin: 10px auto -2px;
    padding: 7px 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background: linear-gradient(to right, #fbdbb2 30%, #ffffff 80%);
    z-index: 100;
    font-size: 14px;
    box-sizing: border-box;
}

@media screen and (max-width:450px) {

    .overseasHead,
    .overseasFooter,
    .overseasContent {
        width: 100%;
    }
}