﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
}

li {
    list-style: none;
}

html {
    font-family: 微软雅黑;
}

/* #codeEdit {
    width: 48%;
    height: 97vh;
    margin: auto 0;
} */

#resume {
    width: 68%;
    min-width: 700px;
    margin: auto 0;
    position: relative;
    height: 100vh;
    overflow-y: scroll;
    display: flex;
}

.ul-list li::before {
    /* ◆✁〠〄♝✎✐☀☼●♠♥•◕⊕☉✪☢☣➵➴❦❧☂§♞♝‡◐◑★∮㏂㏘☻〠☋☍☌☀❂ */
    content: '✪';
    color: #78B1E8;
    padding-right: 15px;
    font-size: 20px;
    font-family: '-webkit-pictograph';
}

.link-list li::before {
    /* ◆✁〠〄♝✎✐☀☼●♠♥•◕⊕☉✪☢☣➵➴❦❧☂§♞♝‡◐◑★∮㏂㏘☻〠☋☍☌☀❂ */
    content: '✪';
    color: #78B1E8;
    padding-right: 15px;
    font-size: 20px;
    font-family: '-webkit-pictograph';
}

.ul-list+.ul-list {
    margin-top: 10px;
}

.tag {
    color: #4545e1;
}

.footer-height {
    height: 200px;
}

.mr {
    margin-right: 40px;
}

body {
    display: flex;
    justify-content: space-around;
}

.balloon-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    animation: balloon-ani .8s;
}

@keyframes balloon-ani {
    0% {
        left: -100vw;
    }
    20% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

img[id*="bg-balloon-"] {
    position: absolute;
}

img#bg-balloon-large {
    transform: translateY(-17%);
    right: -55px;
}

img#bg-balloon-small {
    width: 135px;
    right: 45px;
    transform: translateY(-10%);
}

img#bg-balloon-logo {
    height: 120px;
    right: 0;
}

.line-wrap {
    top: 0;
    padding-left: 20px;
    display: flex;
    height: 100%;
    animation: line-wrap-ani .8s;
}

@keyframes line-wrap-ani {
    0% {
        transform: translateX(100vw);
    }
    20% {
        height: 0;
    }
    100% {
        transform: translateX(0);
        height: 100%;
    }
}

.line-wrap>div {
    width: 8px;
    height: 100%;
}

.line-left {
    background-color: #2ebb96;
    margin-right: 12px;
}

.line-right {
    display: flex;
    flex-direction: column;
}

.line-defColor {
    background-color: #F3D383;
}

.line-midColor {
    background-color: #2ebb96;
}

.line-darkColor {
    background-color: #EDAF45;
}

.line-item1 {
    height: 20%;
}

.line-item2 {
    height: 20px;
    flex-shrink: 0;
}

.line-item3 {
    height: 30px;
    flex-shrink: 0;
}

.line-item4 {
    height: 20%;
    flex-shrink: 0;
}

.line-item5 {
    height: 25px;
    margin-top: 10px;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.line-item6 {
    height: 10%;
    flex-shrink: 0;
}

.line-item7 {
    height: 8%;
    flex-shrink: 0;
}

.line-item8 {
    height: 8%;
    flex-shrink: 0;
}

.text-wrap {
    margin-left: 30px;
    padding: 40px 50px 40px 0;
    font-size: 15px;
    line-height: 1.5em;
}

.inten {
    color: #2ebb96;
}

.text-title {
    font-size: 18px;
    margin-top: 20px;
    color: #2ebb96;
    font-weight: 500;
    margin-bottom: 5px;
}

.base-info {
    display: flex;
}

.base-info>div:first-child {
    margin-right: 100px;
}

.project-title {
    margin-top: 15px;
    font-weight: 800;
    font-size: 14px;
}

@media (min-width: 500px) {
    /* 滚动条美化 */
    *::-webkit-scrollbar-track-piece {
        background-color: #f8f8f8;
    }
    *::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }
    *::-webkit-scrollbar-thumb {
        background-color: rgba(150, 150, 150, .2);
        background-clip: padding-box;
        min-height: 28px;
        border-radius: 5px;
    }
    *::-webkit-scrollbar-thumb:hover {
        background-color: #bbb;
    }
    .sbShow::-webkit-scrollbar-thumb {
        background-color: #ccc;
        background-clip: padding-box;
        min-height: 28px;
        border-radius: 5px;
    }
}

@media (max-width: 500px) {
    body {
        flex-direction: column;
    }
    #resume{
   /* codeEdit # { */
        height: 100vh!important;
        width: 100vw!important;
        min-width: 100vw!important;
    }
    .line-wrap {
        padding-left: 5px;
    }
    .line-left {
        padding-left: 8px;
    }
    .text-wrap { 
        margin-left: 15px;
        padding: 60px 30px 40px 0;
    }
    img#bg-balloon-small {
        width: 85px;
        right: 32px;
        transform: translateY(-10%);
    }
    img#bg-balloon-large {
        transform: translateY(-17%);
        right: -40px;
        width: 105px;
    }
    /* 图片 */
    img#bg-balloon-logo {
        height: 62px; 
    }
    .base-info {
        display: block;
    }
    .school span {
        display: block;
    }
}