*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background:  #f1f1f1;
}
.container {
  margin-top: 70px;
  width: 55%;
  background: #fff;
  padding: 30px 120px 0 120px;
  border-radius: 10px 10px 0 0;
}
.title_bar{
  height: 60px;
  background: #fff;
  z-index: 999;
  position: fixed;
  left: 0;
  right: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}
.title_centent{
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.back-home{
  color: #666;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.back-home span {
  margin-left: 4px;
}
.back-home:hover {
  color: #409EFF;
}
.back-home:hover path {
  fill: #409EFF;
}
.icon-home{
  width: 30px;
  height: 30px;
}
.icon-home path{
  fill: #666;
}
.GLogo{
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: 1px solid #ccc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.GLogo img {
  width: 40px;
  height: auto;
}

.GName{
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 3px;
}
.GUrl{
  font-size: 12px;
  font-weight: bold;
}
.MLogo{
  display: flex;
  align-items: center;
  cursor: pointer;
}
.container {
  margin-top: 70px;
  width: 50%;
  background: #fff;
  padding: 50px 50px 0 50px;
  border-radius: 10px 10px 0 0;
  min-height: 600px;
}
.mtips{
  width: 80%;
  margin: 0 auto;
  font-size: 12px;
  color:#666;
  text-align: center;
}
.myweb{
  color: #888;
  font-size:13px;
  text-decoration: none;
}
.myweb:hover{
  color: #4C8EE2;
}

p {
  color: #666;
  line-height: 1.8;
  font-size: 14px;
  letter-spacing: 1px;
}
@media only screen and (max-width: 768px) {
  .container {
    width: 100%;
  }
  .back-home span{
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    width: 85%;
    margin-top: 80px;
  }
  .mtips{
    width: 70%;
  }
}

@media only screen and (min-width: 1024px) {
  .container {
    width: 900px;
    margin-top: 100px;
    padding: 50px 70px 0 70px;
  }
  .title_centent {
    width: 900px;
    justify-content: start;
  }
  .title_bar{
    height: 70px;
  }
  .GLogo{
    width: 48px;
    height: 48px;
    border-radius: 24px;
  }
  .GLogo img {
    width: 44px;
    height: auto;
  }
  .GName{
    font-size: 20px;
  }
  .back-home{
    left: 20%;
  }
  .mtips{
    width: 768px;
  }
}