.view {
    clear: both;
    width: 1000px;
    height: auto;
    min-height: 600px;
    margin: 30px auto;
    position: relative;
    /*overflow: hidden;*/
}
.message {
    width: 200px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.2);
    position: absolute;
    transform: translate(-50%, -100%);
    padding: 10px 15px;
}
.editmessage,
.endmessage {
    width: 372px;
    background-color: #fff;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.2);
    position: absolute;
    /*left: 102%;*/
    left: 50%;
    top: 0;
    transform: translate(-50%);
    padding: 10px 30px;
    box-sizing: border-box;
}
.message::after {
    content: '';
    width: 15px;
    height: 15px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%) rotate(45deg);
    background-color: #ffffff;
    z-index: -1;
}
.message .name {
    display: inline-block;
    width: 100%;
    height: auto;
    margin-bottom: 5px;
}
.message .name i {
    display: block;
    width: 24px;
    height: 24px;
    background-color: #0088ff;
    border-radius: 50%;
}
.message .name .nameText,
.message .name .nameID {
    display: inline-block;
    width: 100%;
    height: auto;
    min-height: 24px;
    line-height: 24px;
    font-size: 14px;
    font-weight: bold;
}
.message .name .nameText {
    display: none;
}
.message .name button{
    display: none;
    width: auto;
    height: auto;
    border: 1px solid #b5b5b5;
    padding: 3px 10px;
    border-radius: 4px;
    margin-top: 10px;
    background: #eee;
}
.message .name button:hover{
    font-weight: bold;
}
.message .product {
    /*display: flex;*/
    /*gap: 10px;*/
    display: grid;
    column-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 10px;
}
.message .product img{
    width: 100%;
    border-radius: 8px;
}
.message .button {
    display: flex;
    justify-content: space-between;
}
.message .button button {
    display: block;
    border: none;
    width: 42%;
    height: 28px;
    border-radius: 6px;
	cursor: pointer;
    font-size: 13px;
    padding: 0 4px;
}
.message .button button.button-vr-expo{
    background: #eee;
    border: 1px solid #eee;
    color: #b5b5b5;
}
.message .button button.button-go-shop:hover {
	background-color: #000;
	color: #fff;
}
.control {
    width: 100%;
    height: 40px;
    line-height: 40px;
    position: absolute;
    top: -48px;
    right: 0;
}
.control h3{
    display: inline-block;
    width: auto;
    height: 40px;
    line-height: 40px;
    font-weight: bold;
    float: left;
}
.control span{
    display: inline-block;
    width: auto;
    min-width: 100px;
    height: 40px;
    line-height: 40px;
    float: left;
    margin-left: 20px;
    font-size: 14px;
    font-weight: bold;
}
.control input{
    width: 200px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    border: 1px solid #b3b3b3;
    float: left;
    margin-left: 10px;
    padding: 0 15px;
    margin-top: 5px;
}
.control .pavilion-number-nav{
    float: left;
    display: inline-block;
    width: auto;
    height: 30px;
    line-height: 30px;
    margin-left: 30px;
    margin-top: 5px;
}
.control .pavilion-number-nav em{
    display: inline-block;
    width: auto;
    padding: 0 5px;
    height: 30px;
    line-height: 30px;
    margin: 0 10px;
    cursor: pointer;
}
.control .pavilion-number-nav em:hover,
.control .pavilion-number-nav em.active,
.control .pavilion-number-nav em.focus{
    border-bottom: 2px solid #ff003c;
}
.control .search-exhibitor-list{
    display: none;
    width: 220px;
    height: auto;
    background: #fff;
    position: absolute;
    left: 230px;
    top: 35px;
    z-index: 999;
    border-radius: 4px;
    box-shadow: 0 1px 12px 0 rgb(0 0 0 / 30%);
}
.control .search-exhibitor-list ul{
    width: 100%;
    height: auto;
    max-height: 200px;
    overflow-y: auto;
}
.control .search-exhibitor-list ul li{
    display: inline-block;
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    float: left;
}
.control .search-exhibitor-list ul li:hover{
    background: #f4f4f4;
    font-weight: bold;
    cursor: pointer;
}
.control button {
    width: 80px;
    height: 36px;
    line-height: 36px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    float: right;
}
.control button:hover {
    background-color: #666;
    color: #fff;
}

.editmessage h3,
.endmessage h3 {
    font-size: 20px;
    margin-bottom: 30px;
}
.editmessage .boothname {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    border: none;
    outline: none;
    background-color: #f9f9f9;
    padding: 0 10px;
    border: 1px solid #e6e6e6;
    box-sizing: border-box;
}
.editmessage>div,
.endmessage>div {
    font-size: 14px;
    color: #444;
    margin: 15px 0;
    padding: 0 5px;
}
.editmessage a {
    font-size: 12px;
    color: #999;
    text-decoration: underline;
}
.editmessage .setting,
.endmessage .setting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: unset;
}
.editmessage .setting label,
.endmessage .setting label {
    font-weight: bold;
    color: #0088ff;
}
.editmessage .setting label input,
.endmessage .setting label input{
    float: left;
    margin: 5px 3px 0 0;
}
.editmessage .setting .button button,
.endmessage .setting .button button {
    width: 100px;
    height: 36px;
    border-radius: 18px;
    border: 1px solid #b3b3b3;
    color: #333;
    background-color: #fff;
    margin-left: 10px;
    cursor: pointer;
}
.editmessage .setting .button button:hover,
.endmessage .setting .button button:hover {
    border: unset;
    color: #fff;
    background-color: #0073d8;
}
.editmessage .setting .button .sure {
    border: none;
    color: #fff;
    background-color: #0088ff;
}