
body{
    background: #ececec;
    margin: 0;
}
a{
    color:inherit;
    text-decoration: none;
}
* {
     margin: 0;
     padding: 0;
}
hr{
    height: 0;
    border: none;
    border-top: 1px solid #dedede;
}
ul,ol{
    list-style: none;
}
h1,h2,h3,h4,h5,h6{
    font-weight: normal;
}
.clearfix::after{
    content:'';
    display: block;
    clear:both;
}
/*[data-x].active{
    outline: 10px solid red;
}*/
[data-x].offset{
    transform: translateY(100px);
}
[data-x]{
    transform: translateY(0);
    transition: all 0.5s;
}
@keyframes slideUp{
    0%{
        transform: translateY(80px);
    }
    100%{
        transform: translateY(0);
    }
}
.topNavBar {
    padding: 20px 0 20px 0;
    position: fixed;/*相对浏览器窗口定位*/
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.6s;
    color: #b7b7b7;
    z-index: 1;
}
.topNavBar.sticky{
    background: white;
    padding: 9px 0; 
    z-index：1;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
    color: #3d4451;
}
.topNavBar-inner{
     padding: 0 16px;
}
.topNavBar nav {
    padding-top: 7px;
}
.topNavBar nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.topNavBar nav > ul > li{
    float: left;
    margin-left: 24px;
    margin-right: 24px;
    position: relative;
}
.topNavBar nav > ul > li > a {
    font-size: 12px;
    color: inherit;
    font-weight: bold;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    padding-top: 5px;
    padding-bottom: 5px;
    display: block;
    position: relative;
}
.topNavBar nav > ul > li.active > a::after,
.topNavBar nav > ul > li.highlight > a::after{
    content: '';
    display: block;
    position: absolute;
    border-radius: 2px;
    top: 100%;
    left: 0;
    width: 100%;
    background: #e06567;
    height: 3px;
    animation: menuSlide 0.3s;
}
@keyframes menuSlide{
    0%{
        width: 0;
    }
    100%{
        width: 100%;
    }
}
.topNavBar .submenu{
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    color:#3d4451;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);

}
.topNavBar li.active > .submenu{
    display: block;
    animation: submenuSlide 0.3s;
}
@keyframes submenuSlide{
    0%{
        margin-right: 100%;
    }
    100%{
        margin-right: 0%;
    }
}
.topNavBar .submenu > li{
    white-space: nowrap;
    padding: 5px 10px;
}

.topNavBar .logo {
     font-size:24px;
     font-family: 'Arial Black';
     padding-top: 4px;
     padding-bottom: 5px;
}
.topNavBar .logo .rs{
    margin-right: 4px;
    color:#e6686a;
}
.topNavBar .logo .card {
    color:#9a9da2;
}
.banner {
    height: 515px;
    background-image: url(./rs-cover.jpg);
    background-position: center center;
    background-size: cover;
}
.banner .mask {
    height: 515px;
    background-color: rgba(0,0,0,0.8);
}

.userCard {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
    box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.5);
}
.userCard .welcome {
    background: #e6686a;
    color: white;
    display: inline-block;
    padding: 4px 16px;/*padding 内边距 margin 外边据*/
    line-height: 22px;
    position: relative;
    margin-bottom: 15px;
}
.userCard .welcome .triangle {
    display: block;
    border: 10px solid transparent;
    width: 0;
    border-left-color: #e6686a;
    border-top-width: 0;
    position: absolute;
    left: 4px;
    top: 100%;
}
.userCard .picture {
    float: left;
    padding: 10px 0 0 38px;
}
.userCard .text {
    float: left;
    margin-left: 95px;
    width: 370px;
}
.userCard .text h1{
    margin-top: 18px;
    margin-bottom: 5px;
}
.userCard .text hr{
    margin: 20px 0;
}
.userCard .pictureAndText {
    padding: 50px;
}
.userCard dl dt ,
.userCard dl dd{
    float: left;
    padding: 5px 0;
}
.userCard dl dt {
    width: 30%;
    font-weight: bold;
}
.userCard dl dd{
    width: 70%;
    color: #9da0a7;
}
.userCard > footer.media{
    background: #e6686a;
    text-align: center;
}
.userCard > footer.media > a{
    display: inline-block;
    width: 40px;
    line-height: 30px;
    padding: 5px 0;
    border-radius: 50%;
    margin: 16px;
}
.userCard > footer.media >a:hover{
    background:#cf5d5f;
}
.userCard svg{
    width: 30px;
    height: 30px;
    fill:white;
    vertical-align: top;
    margin-left: 5px;
    margin-right: 5px;
}
body > main {
    margin-top: -280px;
}
body > main .downloadResume-wrapper{
    text-align: center;
}
body > main .downloadResume{
    font-size: 14px;
    line-height: 16px;
    padding: 21px 55px;
    display: inline-block;
    border:1px solid #cdcfd1;
    background: #efefef;
    border-radius: 2px;
    color:#3d4451;
    font-weight: bold;
    margin: 65px 0;
    transition: box-shadow 0.2s;
}
body > main .downloadResume:hover{
     box-shadow: 0px 4px 13px 0px rgba(0,0,0,0.3);
}

.selfIntroduction{
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-family: kai;
    line-height: 2.2;
    font-size: 20px;
}

section.skills,
section.message ,
section.portfolio {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
}
section.skills > h2,
section.message > h2,
section.portfolio >h2 {
    text-align: center;
    color:#3d4451;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 600;
}
section.skills h3 {
    font-size: 14px;
    line-height: 1.1;
    padding-right: 40px;
}
section.skills >ol {
    background: white;
    box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.5);
    padding: 42px 50px 10px;
    margin-top: 30px;
}
section.skills > ol > li {
    float: left;
    width: 48%;
    box-sizing: border-box;
}
section.skills > ol > li:nth-child(even){
    float: right;
}
section.skills .progressBar {
    height: 5px;
    background: #fae1e1;
    margin: 4px 0 40px;
    border-radius: 8px;
    overflow: hidden;
}
section.skills .progressBar > .progress{
    height: 100%;
    background: #e6686a;
    width: 70%;
    border-radius: 5px;
    transform: translateX(0);
    transition: all 1s;
}
section.skills.offset .progress{
    transform: translateX(-100%);
}
section.portfolio{
    text-align: center;
    margin-bottom: 100px;
    max-width: 840px;
}
section.portfolio h2,
section.message h2{
    margin-bottom: 32px;
}
section.portfolio .swiper-container {
    width: 800px;
    height: 450px;
    border-radius: 5px;
    box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.5);
}
section.portfolio .swiper-button-prev, 
section.portfolio .swiper-button-next{
    background-color: white;
    width: 64px;
    height: 64px;
    right: 100%;
    left: auto;
    border-radius: 50%;
    box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.5);
    margin-top: 10px;


}
section.portfolio .swiper-button-next{
    left: 100%;
    right: auto;
}

section.message > ol{
    max-width: 700px;
    margin: 0 auto;
    border-top: 1px solid #DDD;
}
section.message > ol >li {
    padding: 16px;
    border-bottom: 1px solid #DDD;
}






































