@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root{
  --blue:#2980b9;
  --black:#333;
  --white:#fff;
  --light-color:#777;
  --light-bg:#eee;
  --box-shadow:0 5px 10px rgba(0,0,0,.1);
}

*{
  font-family: 'Poppins', sans-serif;
  margin:0; padding:0;
  box-sizing: border-box;
  outline: none; border:none;
  text-decoration: none;
  text-transform: capitalize;
  transition: all .2s linear;
}

html::-webkit-scrollbar{
  width:10px;
}

html::-webkit-scrollbar-track{
  background: var(--blue);
}

html::-webkit-scrollbar-thumb{
  background: var(--white);
  border-radius: 50px;
}

.title{
  font-size: 25px;
  color:var(--blue);
  margin-bottom: 15px;
}
.btn{
  margin-top: 10px;
  display: inline-block;
  padding:7px 20px;
  border-radius: 5px;
  background: var(--blue);
  color:var(--white);
  font-size: 17px;
  box-shadow: var(--box-shadow);
}

.btn:hover{
  background: var(--black);
}

.container{
  padding:100px 9%;
  background: linear-gradient(45deg, deeppink, var(--blue));
  display: flex;
}

.container .profile{
  flex:1 1 400px;
  background: var(--white);
  padding:20px 30px;
  text-align: center;
  position: sticky;
  top:20px; left:0;
  border-right:2px solid var(--black);
  align-self: flex-start;
}

.container .profile img{
  height: 150px;
  width: 150px;
  border-radius: 50%;
  border:2px solid var(--black);
  object-fit: cover;
  margin-bottom: 10px;
}

.container .profile h3{
  color:var(--black);
  font-size: 20px;
}

.container .profile p{
  color:var(--blue);
  padding:5px 0;
  margin-bottom: 10px;
  font-size: 15px;
}

.container .profile .share{
  margin:10px 0;
}

.container .profile .share a{
  height: 50px;
  width: 50px;
  line-height: 50px;
  font-size: 20px;
  border-radius: 50%;
  color:var(--black);
  background: var(--light-bg);
}

.container .profile .share a:hover{
  background: var(--blue);
  color:var(--white);
  box-shadow: var(--box-shadow);
}

.container .information{
  flex:1 1 1000px;
  background: var(--white);
  padding:20px 30px;
}

.container .information .about p{
  font-size: 17px;
  line-height: 2;
  padding-bottom: 10px;
  color:var(--light-color);
}

.container .information .about .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:15px;
}

.container .information .about .box-container .box{
  flex:1 1 250px;
}

.container .information .about .box-container .box h3{
  font-size: 15px;
  padding:10px 0;
  color:var(--black);
}

.container .information .about .box-container .box h3 span{
  color:var(--light-color);
}

.container .information .services{
  padding:20px 0;
}
.container .information .services .shi{
  padding:0px 55px;
  
}

.container .information .services .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:15px;
}

.container .information .services .box-container .box{
  flex:1 1 17px;
  text-align: center;
  border-radius: 5px;
  padding:20px;
  background: var(--light-bg);
}

.container .information .services .box-container .box img{
  height: 50px;
  margin-bottom: 10px;
}

.container .information .services .box-container .box h3{
  font-size: 15px;
  color:var(--light-color);
}

.container .information .skills .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:15px;
}

.container .information .skills .box-container .box{
  flex:1 1 300px;
}

.container .information .skills .box-container .box .progress h3{
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  color:var(--black);
  font-size: 15px;
}

.container .information .skills .box-container .box .progress h3 span{
  color:var(--light-color);
}

.container .information .skills .box-container .box .progress .bar{
  overflow: hidden;
  border-radius: 50px;
  height: 10px;
  background: var(--light-bg);
}

.container .information .skills .box-container .box .progress .bar span{
  background: var(--blue);
  height: 100%;
  display: block;
  border-radius: 50px;
}

.container .information .skills .box-container .box:first-child .progress:nth-child(1) .bar span{
  width: 95%;
}

.container .information .skills .box-container .box:first-child .progress:nth-child(2) .bar span{
  width: 80%;
}

.container .information .skills .box-container .box:first-child .progress:nth-child(3) .bar span{
  width: 60%;
}

.container .information .skills .box-container .box:first-child .progress:nth-child(4) .bar span{
  width: 80%;
}

.container .information .skills .box-container .box:last-child .progress:nth-child(1) .bar span{
  width: 90%;
}

.container .information .skills .box-container .box:last-child .progress:nth-child(2) .bar span{
  width: 75%;
}

.container .information .skills .box-container .box:last-child .progress:nth-child(3) .bar span{
  width: 65%;
}

.container .information .skills .box-container .box:last-child .progress:nth-child(4) .bar span{
  width: 70%;
}

.container .information .experience{
  margin:20px 0;
}

.container .information .experience .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:15px;
}

.container .information .experience .box-container .box{
  padding:20px;
  border-radius: 5px;
  flex:1 1 350px;
  background: var(--light-bg);
}

.container .information .experience .box-container .box span{
  color:var(--blue);
  font-size: 15px;
}

.container .information .experience .box-container .box h3{
  color:var(--black);
  font-size: 17px;
  padding:5px 0;
}

.container .information .experience .box-container .box p{
  color:var(--light-color);
  line-height: 2;
  font-size: 13px;
}

.container .information .contact .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:15px;
}

.container .information .contact .box-container .box{
  flex: 1 1 200px;
  display: flex;
  align-self: flex-start;
  gap:10px;
}

.container .information .contact .box-container .box i{
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 15px;
  border-radius: 50%;
  background: var(--blue);
  color:var(--white);
  text-align: center;
}

.container .information .contact .box-container .box h3{
  font-size: 17px;
  color:var(--black);
  padding-bottom: 5px;
}

.container .information .contact .box-container .box p{
  font-size: 14px;
  color:var(--light-color);
  line-height: 2;
}

@media (max-width:1200px) {
  
  .container{
    flex-flow: column;
    padding:20px;
    justify-content: center;
  }

  .container .profile{
    position: static;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    padding:20px;
    border-right: none;
    margin:0 auto;
    margin-bottom: 15px;
  }

  .container .information{
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    padding:20px;
  }


}

@media (max-width:450px){

  .container .profile{
    width: 100%;
  }

  .container .profile .btn{
    width: 100%;
  }

  .container .information .about p{
    font-size: 12px;
  }

  .container .information .experience .box-container .box p{
    font-size: 12px;
  }

}

.container .information .services .box-bd ul {
  overflow: hidden;
  /* 宽度大小 */
  width: 750px;
}
.container .information .services .box-bd ul li {
  position: relative;
  float: left;
  width: 230px;
  height: 320px;
  background-color: #fff;
  margin-right: 20px;
  margin-bottom: 15px;   
}
.container .information .services .box-bd ul li em {
  position: absolute;
  top: 4px;
  right: -3px;
}
.container .information .services .box-bd ul li:hover {
  box-shadow: 10px 10px 4px -4px rgb(0, 0, 0,.3);
}
.container .information .services .box-bd ul li>img {
  width: 220px;
  height: 220px;
}
.container .information .services .box-bd ul li h4 {
  margin:10px 20px 10px 25px;
  font-size: 15px;
  color: #050505; 
}
.container .information .services .box-bd ul li .info {
  margin:0px 20px 0px 25px;
  font-size: 13px;
  color: #999;
}
.container .information .services .box-bd ul li .info span {
  color: #ff7c2d;
}
/* 轮播图代码 */
 .mylunbo{
  margin:20px auto;
  position: relative;
  width: 720px;
  height: 432px;
  /*background-color: purple;*/
  overflow: hidden;
}
.container .information .services .lunbotu .img{
  width:720px;
  height:432px;
}
.mylunbo ul{
  position: absolute;
  top: 0;
  left: 0;
  width:500%;
}
ul li{
  float:left;
  list-style-type: none;
}
ol li{
  list-style-type: none;
}
.arrow-l,
.arrow-r {
  display: none;
  position: absolute;
  top: 50%;
  margin-top: -20px;/*高度40，上移20*/
  width: 24px;
  height: 40px;
  background: rgba(0, 0, 0, .3);
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-family: 'icomoon';
  font-size: 18px;
  z-index: 2;
}
.arrow-r {
  right: 0;
}
.circle {
  position: absolute;
  bottom: 10px;
  left: 350px;
}
.circle li {
  float: left;
  width: 8px;
  height: 8px;
  /*background-color: #fff;*/
  border: 2px solid rgba(240, 120, 120, 0.5);
  margin: 0 3px;
  border-radius: 50%;
  /*鼠标经过显示小手*/
  cursor: pointer;
}
.current {
  background-color: #fff;
}
a:hover{
  color:red;
}