/*
 ==============================
 | Author：CoolCat
 +----------------------------+
 | Domain：www.coolcat.cn
 +----------------------------+
 | Contact QQ：9098603
 +----------------------------+
 | Date：2022年02月02日
 +----------------------------+
 | Version：5.2.0
 ==============================
*/
@import 'wenkai/wenkai.css';
  body {
    font-family: "LXGW WenKai", sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
    
    background-image: url(../images/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 100%;
  }
  .container {
    max-width: 800px;
    margin: 80px auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
  }
  .profile {
    text-align: center;
    margin-bottom: 20px;
  }
  .profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #e1f3f8;
  }
  .profile h1 {
    color: #6a8495;
    margin: 10px 0;
  }
  .profile img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
  }
  hr {
    border: 0;
    height: 1px;
    background-color: #dcdcdc;
    margin: 10px 0;
  }

  .about {
    background-color: #fceef3;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  .about h2 {
    color: #6a8495;
    margin-top: 0;
  }
  .about p {
    color: #8b949e;
  }

  .contact {
    background-color: #e1f3f8;
    padding: 15px;
    border-radius: 8px;
  }
  .contact h2 {
    color: #6a8495;
    margin-top: 0;
  }
  .contact p {
    color: #8b949e;
  }

  .jiasu {
    background-color: #EBFAF2;
    padding: 15px;
    border-radius: 8px;
  }
  .jiasu h2 {
    color: #6a8495;
    margin-top: 0;
  }
  .jiasu p {
    color: #8b949e;
  }

  .footer {
    text-align: center;
    font-size: 15px;
    margin-top: 20px;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
  }
  .footer a {
    color: #6a8495;
    text-decoration: none;
  }
  .footer a:hover {
    text-decoration: underline;
  }