.basicinfo {
    margin: 15px 0;
}

.basicinfo .row>.col-xs-4 {
    padding-right: 0;
}

.basicinfo .row>div {
    margin: 5px 0;
}

:root {
    --vw: 500px;
    --vh: 308px;
    --border-width: 10px;
    --border-color1: #6e9ce2;
    --border-color2: #e4c8a1;
    --border-color3: #a45b5b;
    --inner-bgcolor: #e9ca8a;
    --lr-bgcolor: #ead2ac;
    --top-bgcolor: #e5d4b8;
    --bottom-bgcolor: #e5c9a2;
}

body {
    font-family: "luck";
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
#dialog {
    overflow: hidden;
}

#envelope {
    width: var(--vw);
    height: var(--vh);
    /*居中*/
    /* margin: 350px auto; */
    margin: 320px 200px 100px 156px;
    box-sizing: border-box;
    background-color: var(--inner-bgcolor);
    position: relative;
    /* overflow: hidden; */
    animation: slideInX 4s cubic-bezier(0.36, 0, 0.64, 1) -2s forwards, slideInY 4s cubic-bezier(0.36, 0, 0.64, 1) forwards;
}

.closes {
    position: absolute;
    right: -100px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    z-index: 3;
}

@keyframes slideInY {
    0% {
        top: -800px;
        transform: rotate(45deg);
    }

    100% {
        top: 0px;
        transform: rotate(0deg);
    }
}

@keyframes slideInX {
    0% {
        left: -800px;
    }

    100% {
        left: 0px;
    }
}

.bottom,
.top {
    position: absolute;
    left: 0;
    width: var(--vw);
}

.bottom {
    bottom: 0;
    height: 230px;
    -webkit-clip-path: polygon(50% 42%, 0% 100%, 100% 100%);
    clip-path: polygon(50% 42%, 0% 100%, 100% 100%);
    background-color: var(--bottom-bgcolor);
    z-index: 2;
}

.top {
    top: 0;
    height: 215px;
    background-color: var(--top-bgcolor);
    -webkit-clip-path: polygon(53% 81%, 100% 0, 0 0);
    clip-path: polygon(50% 120%, 100% 0, 0 0);
    z-index: 3;
    transform-origin: top;
    animation: open 2s ease-in-out 2s forwards;
}

.lefts,
.right {
    position: absolute;
    top: 0;
    width: var(--vh);
    height: var(--vh);
    background-color: var(--lr-bgcolor);
    z-index: 1;
}

.lefts {
    left: 0;
    -webkit-clip-path: polygon(100% 100%, 0 0, 0 100%);
    clip-path: polygon(100% 100%, 0 0, 0 100%);
}

.right {
    right: 0;
    -webkit-clip-path: polygon(100% 100%, 100% 0, 0 100%);
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
}

/*封边条纹*/
.bottom::before,
.top::before,
.right::before,
.lefts::before {
    position: absolute;
    content: "";
    display: block;
    background-image: repeating-linear-gradient(-45deg, var(--border-color1) 0, var(--border-color1) 25px, var(--border-color2) 25px, var(--border-color2) 50px, var(--border-color3) 50px, var(--border-color3) 75px, var(--border-color2) 75px, var(--border-color2) 100px);
}

.bottom::before,
.top::before {
    width: var(--vw);
    height: var(--border-width);
    left: 0;
}

.bottom::before {
    bottom: 0;
}

.top::before {
    top: 0;
    --border-color2: #e5d4b8;
    animation: openBorder 1s ease-in-out 1s forwards;
    transform-origin: top;
}

.lefts::before,
.right::before {
    top: 0;
    width: var(--border-width);
    height: var(--vw);
    --border-color2: #ead2ac;
}

.lefts::before {
    left: 0;
}

.right::before {
    right: 0;
}

@keyframes open {
    80% {
        z-index: 3;
    }

    100% {
        transform: rotateX(-180deg);
        background-color: rgba(233, 202, 138, 1);
        clip-path: polygon(50% 90%, 100% 0, 0 0);
        z-index: -1;
    }
}

@keyframes openBorder {
    100% {
        transform: rotateX(-180deg);
        opacity: 0;
    }
}

/*信纸*/
#messages {
    font-family: 'luck';
    position: absolute;
    top: 50px;
    left: 50px;
    transform: rotate(5deg);
    width: 390px;
    height: 200px;
    background-color: #F2EDE4;
    animation: rise 1s ease-in-out 6s forwards;
    z-index: 0;
    box-shadow: 0 1px 32px rgba(0, 21, 41, 0.1);
    padding: 15px;
}

@keyframes rise {

    /*纸张上升*/
    100% {
        height: 450px;
        top: -230px;
        transform: rotate(0deg);
    }
}

.chinaoem {
    text-align: end;
}

.contentss {
    text-indent: 2em;
    line-height: 30px;
    margin-bottom: -10px;
}

.hello {
    padding-bottom: 6px;
    padding-top: 8px;
    font-size: 17px;
    font-weight: 550;
}

.title {
    font-size: 18px;
    /* font-weight: 550; */
}
.ChinaOEM{
    margin-bottom: 3px;
}
.margin_tops{
    margin-top: 100px;
}
@media screen and (max-width: 768px) {
    /* 将信封的宽度和高度设置为自适应 */
    #envelope {
        width: 90vw; /* 宽度设置为视口宽度的90% */
        margin: 20px auto; /* 上下留白20px，左右居中 */
    }

    /* 让消息的宽度和高度自适应，保持一定的边距 */
    #messages {
        width: 90%; /* 宽度设置为父容器的90% */
        padding: 10px; /* 内边距10px */
        left: 5%; /* 左边距设置为5%，保持居中 */
        transform: rotate(0deg); /* 取消旋转效果 */
    }

    /* 调整顶部和底部区域的高度，以适应手机显示 */
    .top {
        height: 150px; /* 调整高度 */
    }

    .bottom {
        height: 200px; /* 调整高度 */
    }

    /* 消息的标题和内容字体大小调整 */
    .title {
        font-size: 16px; /* 标题字体大小调整 */
    }

    .contentss {
        font-size: 14px; /* 内容字体大小调整 */
    }

    .hello {
        font-size: 15px; /* 问候语字体大小调整 */
    }
}
.user-center{
    width: auto!important;
}
#content-container{
    margin-top: 113px;
}
.ui_address{
    margin-top: 18px;
}
.ui_all{
    margin-left: 100px;
    margin-top: 5px;
}
@media screen and (max-width: 768px) {
    #content-container{
        margin-top: 45px;
    }
    .user-baseinfo .col-xs-9{
        width: 100%;
    }
    .ui-content{
        text-align: center;
        margin-top: 20px;
    }
    .ui_all{
        margin-left: 0px;
    }
}
.ui_name{
    font-size: 24px;
}
.row_list{
    width: 125px;
    text-align: center;
    display: inline-block;
}
.row_flex{
    display: flex;
    justify-content: space-between;
}
.row_number{
    font-size: 18px;
    font-weight: 550;
}
.row_text{
    font-size: 16px;
}