/* 服务条款 */
* {
  margin: 0;
  padding: 0;
  list-style: none;
}
.container {
  width: 100%;
  margin: auto;
}
.container .terms {
  width: 1200px;
  margin: auto;
  padding: 50px 0;
}
.terms .section_header {
  border-bottom: solid 2px #c71b2d;
  padding-bottom: 8px;
  position: relative;
}
.section_header h1 {
  margin-bottom: 0;
  font-size: 36px;
}
.section_content {
  padding-top: 30px;
}
.terms_section {
  font-size: 16px;
  margin-bottom: 50px;
}
.terms_section:last-child {
  margin-bottom: 0;
}
.terms_section p {
  line-height: 1.8;
  margin-bottom: 10px;
}
.terms_section h2 {
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
 
}
.terms_section ol {
  margin-top: 0;
  margin-bottom: 10px;
  list-style: none;
}
.terms_section .ol-second li {
  list-style: lower-alpha;
  margin-bottom: 15px;
  margin-left: 20px;
  line-height: 1.8;
}
/* 吸顶条 */
.navbar {
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: #f7f7f7;
  box-shadow: 0 0 30px rgb(0 0 0 / 20%);
  text-align: center;
  display: none;
  z-index: 9999;
}
.position {
  width: 100%;
  height: 40px;
}
/* 方式一：添加类 */
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
}
/* 方式二：使用属性选择器
  .navbar[data-fixed="fixed"] {
    position: fixed;
    top: 0;
    left: 0;
  }
  */
.hidea {
  display: none;
}
.navbar_left {
  float: left;
}
.navbar_left ul {
  display: flex;
}
.navbar_left ul li {
  height: 40px;
  line-height: 40px;
}
.navbar_left ul li a {
  padding: 0 10px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}
.navbar_left ul li:hover {
  border-bottom: 1px solid #c71b2d;
}
.navbar_left ul li a:hover {
  color: #c71b2d;
}
.navbar_right {
  float: right;
}
.navbar_right_con{
    display: flex;
}
.navbar_right form {
  display: flex;
}
.navbar_right form input {
  width: 250px;
  height: 38px;
  border: none;
  outline: none;
  color: #333;
  text-indent: 1em;
  border: 1px solid #ccc;
}
.navbar_right form .search_btn {
  cursor: pointer;
  width: 100px;
  height: 40px;
  background: linear-gradient(270deg, #b90014, #d23143);
  border: 0;
  font-size: 16px;
  line-height: 40px;
  color: #fff;
  text-align: center;
}
.navbar_right form .search_btn img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.navbar_right ul{
    display: flex;
    margin-left: 10px;
}
.navbar_right ul li{
    height: 40px;
    line-height: 40px;
}
.navbar_right ul li:nth-child(1){
    background: #cd401a;
}
.navbar_right ul li:nth-child(2){
    background: #cd1a51;
}
.navbar_right ul li:nth-child(3){
    background: #d23143;
}
.navbar_right ul li a{
    padding: 0 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}