* {
    margin: 0;
    padding: 0;
}

body{
    padding: 100px 6%;
    background: linear-gradient(to right top, #ff1493, #2980b9);
}

.container {
    display: flex;
}

.profile {
    padding: 20px 30px;
    height: 230px;
    background: #FFFFFF;
    text-align: center;
    flex: 1 1 400px;
    position: sticky;
    top: 20px;
    border-right: 2px solid #333333;
}

.profile h3 {
    font-size: 20px;
}

.profile p {
    color: #2980b9;
    margin-bottom: 16px;
    font-size: 15px;
}

.btn {
    padding: 7px 20px;
    border-radius: 5px;
    background: #2980b9;
    color: #FFFFFF;
    font-size: 17px;
    text-decoration: none;
}

.btn:hover {
    background: #333333;
}

.information {
    padding: 20px 30px;
    flex: 1 1 1000px;
    background: #FFFFFF; 
}

.title {
    font-size: 25px;
    color: #2980b9;
    margin-bottom: 15px;
}

.about p {
    font-size: 17px;
    line-height: 2;
    padding-bottom: 10px;
    color: #777777;
}

.about .box-container {
    display: flex;
    flex-wrap: wrap;
}

.about .box-container .box {
    flex: 1 1 250px;
}

.about .box-container .box h3 {
    font-size: 15px;
    padding: 10px 0;
    color: #333333;
}

.about .box-container .box h3 span {
    color: #777777;
}

.services {
    padding: 20px 0;
}

.imgbox-container {
    display: flex;
}

.imgbox-container .box {
    flex: 1 1 17px;
    text-align: center;
    border-radius: 5px;
    padding: 20px;
    background: #eeeeee;
    margin-right: 12px;
}

.imgbox-container .box img {
    height: 50px;
    margin-bottom: 10px;
}

.imgbox-container .box h3 {
    font-size: 15px;
    color: #777777;
}

.skills .box-container {
    display: flex;
    flex-wrap: wrap;
}

.skills .box-container .box {
    flex: 1 1 300px;
}

.skills .box-container .box:last-child {
    margin-left: 12px;
}

.progress h3 {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    color: #333333;
    font-size: 15px;
}

.progress h3 span {
    color: #777777;
}

.bar {
    overflow: hidden;
    border-radius: 50px;
    height: 10px;
    background: #eeeeee;
}

.bar span {
    background: #2980b9;
    height: 100%;
    display: block;
    border-radius: 50px;
}

.first {
    width: 95%;
}

.second {
    width: 80%;
}

.third {
    width: 65%;
}

.fourth {
    width: 70%;
}

.fifth {
    width: 90%;
}

.sixth {
    width: 75%;
}

.experience {
    margin: 20px 0;
}

.experience .box-container {
    display: flex;
    flex-wrap: wrap;
}

.experience .box-container .box {
    padding: 20px;
    border-radius: 5px;
    flex: 1 1 350px;
    background: #eeeeee;
}

.experience .box-container .box span {
    color: #2980b9;
    font-size: 15px;
}

.experience .box-container .box h3 {
    color: #333333;
    font-size: 17px;
    padding: 5px 0;
}

.experience .box-container .box p {
    color: #777777;
    line-height: 2;
    font-size: 13px;
}

.contact .box-container {
    display: flex;
    flex-wrap: wrap;
}

.contact .box-container .box {
    flex: 1 1 200px;
    display: flex;
}

.contact .box-container .box i {
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 15px;
    border-radius: 50%;
    background: #2980b9;
    color: #FFFFFF;
    text-align: center;
    margin-top: 14px;
}

.contact .box-container .box h3 {
    font-size: 17px;
    color: #333333;
    padding-bottom: 5px;
}

.contact .box-container .box p {
    font-size: 14px;
    color: #777777;
    line-height: 2;
}

.info {
    padding-left: 10px;
}

/* 添加简历边框圆角 */
.information {
    padding: 20px 30px;
    flex: 1 1 1000px;
    background: #FFFFFF; 
    border-radius: 10px; /* 添加圆角 */
}

/* 添加个人信息边框圆角 */
.profile {
    padding: 20px 30px;
    height: 230px;
    background: #FFFFFF;
    text-align: center;
    flex: 1 1 400px;
    position: sticky;
    top: 20px;
    border-right: 2px solid #333333;
    border-radius: 10px; /* 添加圆角 */
}
