* {
    margin: 0;
    padding: 0;
}

.clear {
    clear: both;
}

.section {
    width: 1220px;
    margin: 0 auto;
}
.wrapper{
    height: 490px;
    width: 100%;
    background: url(../images/banner.png) no-repeat center;
}
.wrapper .Header{
    background-color: #fff;
    width: 100%;
    height:82px;
}
.wrapper .Header_fl{
    width: 50%;
}
.wrapper .Header_fl ul{
    width: 100%;
}
.wrapper .Header_fl ul li {
    list-style: none;
    float: left;
    width: 14%;
    margin: 18px 0; 
    padding-right: 12px; 
}
.wrapper .Header_fl ul .bold{
    width: 27%;
}
.wrapper .Header_fl ul .bold a{
    font-weight: bold;
}
.wrapper .Header_fl ul li a{
    font-size: 17px;
    color:#db071f;
    text-decoration: none;
    padding-right: 12px;
    font-weight: 500;
    display: block;
    
}
.wrapper .Header_fl ul li a:hover{
    border-bottom: 2px solid #db071f;
}
 .wechat-wrapper {
            position: relative;
            display: inline-block;
            margin:18px auto;
            text-align: center;
        }
        .wechat-title {
      
            color: #db071f;
            font-size: 17px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .wechat-title:hover {
          border-bottom: 2px solid #db071f;
            transform: translateY(-2px);
            /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
        }
        .qrcode-container {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            width: 150px;
            padding: 15px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            z-index: 100;
        }
        .wechat-wrapper:hover .qrcode-container {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(20px);
        }
        .qrcode-container::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 50%;
            margin-left: -8px;
            border-width: 8px;
            border-style: solid;
            border-color: transparent transparent white transparent;
        }
        .qrcode-img {
            width: 100%;
            height: auto;
            border: 1px solid #f0f0f0;
        }
        .qrcode-text {
            margin-top: 8px;
            font-size: 12px;
            color: #666;
        }
/* 基础容器样式 */
.top-nav {
    float: right;
    padding: 18px 5%;
    display: flex;
    justify-content: space-between; /* 左右分布布局 ‌:ml-citation{ref="2" data="citationList"} */
    align-items: center;
  }
  
  /* 右侧导航容器 */
  .nav-right {
    gap: 4px;  /* 元素间距控制 ‌:ml-citation{ref="5" data="citationList"} */
    align-items: center;
  }
  
  /* 分隔线样式 */
  .divider {
    color: #ddd;
    font-weight: 300;
  }
  .nav-left a {
    padding-right: 34px;
}
  
  /* 文字链接交互 */
  .top-nav a {
    font-size: 17px;
    color: #db071f;
    transition: color 0.3s;
  }
  .top-nav a:hover {
    border-bottom:2px solid #db071f;  /* 悬停颜色变化 ‌:ml-citation{ref="7" data="citationList"} */
  }

.nav .logo {
    display: block;
    float: left;
    margin: 0 30px 0 20px;
}
.nav .logo img{
    width: 336px!important;
    height: 91px!important;
    max-height: none!important;
    margin-top: 24px!important;
}
.nav-r{
    float: right;
    padding-top: 18px;
}

.hover-card {
    display: inline-block;  /* 保证点击区域稳定性 */
    cursor: pointer;
    transition: transform 0.5s;  /* 可选悬停效果 */
  }
   
  /* 可选悬停效果 */
  .hover-card:hover {
    transform: translateY(-2px);
  }
  .nav-r a:hover{
    opacity: 0.7;
    transition: opacity 0.5s ease-in-out;
  }
  ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* 导航菜单 ‌:ml-citation{ref="5,7" data="citationList"} */
.navbar {
float: right;
    position: relative;
}

.primary-menu {
    display: flex;
    list-style: none;
    position: relative;
}

.primary-menu > li {
    position: relative;
}

.primary-menu li a {
 
    color: white;
    text-decoration: none;
    display: block;
    padding: 15px 25px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: bold;
}
.primary-menu li a:hover{
  font-weight: 800;
}
.primary-menu li .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.primary-menu li:hover .underline {
    width: 100%;
}

/* .primary-menu li a:hover {
    background: #fff;
} */

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.submenu a:hover{
  color: #db071f;
}
.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
  display: block;
  color: #333;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
}

.submenu li:last-child a {
    border-bottom: none;
}

/* 用户操作区 ‌:ml-citation{ref="3" data="citationList"} */
.user-actions {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 8px 24px;
    border-radius: 24px;
    font-weight: 500;
}

.btn-login {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.btn-register {
    background: #2d3436;
    color: white;
}
/* 搜索 */
.search_container{
  padding-top: 50px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid#fff;
  }
  /* 搜索框样式 */
  .search_input{
    color: #fff;
    margin-bottom: -19px;
    border: none;
    flex: 0.98;
    height: 60px;
    padding: 0 10px;
    font-size: 48px;
    background-color:#db071f;
  }
  
   input::placeholder {
    color: #fff; /* 设置placeholder文本颜色为蓝色 */
  }

  .search_container span{
    margin-right: 14px;
    display: inline-block;
    width: 2px;
    height: 80px;
    background-color: #fff;
  }
/* 放大镜图标样式 */
  .search_icon {
    width: 30px;
    height: 30px;
    background-image: url('../images/sousuo.png'); /* 请替换为实际图标路径 */
    background-size: cover;
  }
      
.search-h3{
  padding-top: 30px;
}
.search-h3{
  color:#fff;
  font-size: 24px;
}
/* 内容 */
.content{
    width: 100%;
    padding-top: 40px;
}
.content .container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  
  .left-content, .right-content {
    width: calc(38% - 50px); /* 减去中间间距的一半 */
  }
  
  .content .container a img {
    display: block;
    margin-bottom: 40px; /* 图标与标题的间距 */
    text-decoration: none; /* 去掉下划线 */
  }
  
  .content .container .title {
    color: #db071f;
    position: relative;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
 .title::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #ddd; /* 竖线颜色 */
  }
  
  .text {
    text-align: justify;
    width: 90%;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .more {
    font-weight: 800;
    font-size: 18px;
    color: black; /* 链接颜色 */
    text-decoration: none;
  }
  
  .more:hover {
    text-decoration: underline; /* 鼠标悬停时显示下划线 */
  }
  /* 背景图片 */
  .slider-container {
    padding-top: 100px;
    position: relative;
    width: 100%;
    max-width: 1920px; /* 容器最大宽度 */
    margin: 0 auto;
    overflow: hidden;
  }
  
  .slider {
    display: flex;
    width: 200%; /* 两张图片的总宽度 */
    animation: slide 10s infinite; /* 自动滑动效果 */
  }
  
  .slide {
    width: 100%;
    height: 500px; /* 图片高度 */
    background-size: cover;
    background-position: center;
  }
  
  .slide1 {
    background: url(../images/Into.png) no-repeat center;  /* 第一张图片 */
  }
  
  .slide2 {
    background: url(../images/New.png ) no-repeat center;/* 第二张图片 */
  }
  
  /* 查看更多按钮 */
  .more-button {
  
    position: absolute;
bottom: 180px;
    left: 23%;
    transform: translateX(-50%);
    width: 160px;
    height: 50px;
    background-color: transparent;
    border: 2px solid #000; /* 黑色边框 */
    color: #000; /* 黑色文字 */
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    text-decoration: none;
    z-index: 10; /* 确保按钮在图片上方 */
    transition: all 0.4s ease; /* 点击时的过渡效果 */
  }
  
  .more-button:hover,
  .more-button:active {
    background-color: #000; /* 点击时背景变黑 */
    color: #fff; /* 点击时文字变白 */
  }
  
  /* 自动滑动动画 */
  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }
  /* 下方文字 */
  .wenzi{
    padding-top: 70px;
  }
  .wenzi h2{
    font-size: 50px;
    font-weight: 800;
    padding-bottom: 20px;
  }
.wenzi p{
    color: #333;
    width: 100%;
    font-size: 18px;
    text-align: justify;
    line-height: 30px;
    padding-bottom: 30px;
}

.wenzi a{
    font-size: 18px;
    font-weight: 800;
    color: #000;
    text-align: center;
    display: block;
    width: 160px;
    height: 46px;
    line-height: 46px;
    text-decoration: none;
    border:2px solid #000;
}
.wenzi a:hover{
    background-color: #000;
    color: #fff;
}
/* 新闻 */
.news{
  background-color:#f6f6f6;
 /* height: 1010px; */
}

.title_1{
  float: left;
  margin-top: 50px;
}
.title_1 p{
  display: block;
  width: 100%;
  font-size: 30px;
  color: #db071f;
  font-weight: 800;
}
.title_1 h1{
  font-size: 60px;
color: #ddd!important;
}
/* 主容器 */
 .gallery-container {
  float: left;
  max-width: 1920px;
  margin: 0 auto;
  padding: 40px 0;
  position: relative;
}

/* 滑动轨道 */
.slider-track {
  overflow: hidden;
  padding: 0 60px;
}

/* 图片列表 */
.image-list {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

/* 图片卡片 */
.image-card {
  flex: 0 0 460px; /* (1920 - 60*2 - 20*3)/4 = 460 */
  height: 700px;
  position: relative;
  overflow: hidden;
}

/* 图片样式 */
.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 文字容器 */
.text-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(0%);
  transition: transform 0.4s ease-out;
}

/* 左侧竖线 */
.text-content::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 80%;
  background: #ffffff;
}

/* 文字行 */
.text-row {
  line-height: 36px;
  font-size: 24px;
  color: white;
  padding-left: 36px;
  margin: 30px 0;
  opacity: 0.9;
  transform: translateY(350px);
  transition: all 0.3s ease;
}

/* 悬停效果 */
.image-card:hover .text-content {
  transform: translateY(0);
}
.image-card:hover .text-row {
  transform: translateY(0);
  opacity: 1;
}

/* 导航按钮 */
.nav-button {
  position: absolute;
  /* top: 50%; */
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  transition: 0.3s all;
}
.nav-button:hover {
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.nav-button.prev {
  left: 0;
}
.nav-button.next {
  right: 0;
}
.nav-button::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid #333;
}
.prev::after {
  border-width: 0 0 2px 2px;
  transform: rotate(45deg);
  left: 18px;
}
.next::after {
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  right: 18px;
}
.news .gengduo {
  padding-top: 60px;
}
.news .gengduo a{
  color: #000;
  text-align: center;
  margin-left: 30px;
  font-weight: 800;
  font-size: 16px;
  float: left;
  display: block;
  text-decoration: none;
  width: 160px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 3px solid #000;
}
.news .gengduo a:hover{
  color: #fff;
  background-color: #000;
}
/*  */
.the_content{
  margin-top: 80px;
  padding-top: 60px;
 background-color: #db071f;
 height: 480px;
}
.the_content .container_1 {
  width: 1220px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.the_content .container_1 
  .left-content, .right-content {
  width: calc(38% - 50px); /* 减去中间间距的一半 */
}

.the_content .container_1 a img {
  max-width: 30%;
  display: block;
  margin-bottom: 40px; /* 图标与标题的间距 */
  text-decoration: none; /* 去掉下划线 */
}

.the_content .container_1 .title {
  color: #fff;
  position: relative;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 40px;
}

.the_content .container_1 .title::before {
  content: '';
  position: absolute;
  left: -50px;
  top: 0;
  width: 2px;
  height: 100px;
  background-color: #fff; /* 竖线颜色 */
}

.the_content .container_1 .text {
  color: #fff;
  text-align: justify;
  width: 90%;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 50px;
}

.the_content .container_1 .more {
  font-weight: 800;
  font-size: 18px;
  color: #fff; /* 链接颜色 */
  text-decoration: none;
}

.the_content .container_1 .more:hover {
  text-decoration: underline; /* 鼠标悬停时显示下划线 */
}
/* 圆圈 */
.Product {
  padding-top: 40px;
}
.Product .title_2{
  font-weight: 800;
  padding-bottom: 30px;
}
.Product .title_2 h3{
  font-weight: 700;
  font-size: 36px;
  color: #db071f;
  padding-bottom: 18px;
}
.Product .title_2 p{
  font-weight: 800;
  color: #ddd;
  font-size: 52px;
}
/* body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: #f5f5f5;
} */

.nav-container_1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 114px;
  width: 100%;;
  padding: 20px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.circle {
  width: 290px;
  height: 290px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 8px solid;
  box-sizing: border-box;
  text-align: center;
  padding: 20px;
}

/* 默认状态 - 显示图标和标题 */
.circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  z-index: -1;
  border-radius: 50%;
}

.icon {
  font-size: 40px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.title {
  font-weight: bold;
  color: #333;
  transition: all 0.3s ease;
  font-size: 20px;
  line-height: 1.3;
}

/* 悬停时隐藏的内容 */
.description, .learn-more {
  display: none;
  position: absolute;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.description {
  font-size: 20px;
  color: white;
  top: 40%;
  transform: translateY(-50%);
}

.learn-more {
  color: white;
  text-decoration: underline;
  font-size: 20px;
  bottom: 56px;
}

/* 悬停状态 - 显示描述和Learn more */
/* .nav-item:hover .circle {
  transform: scale(1.05);
} */

.nav-item:hover .icon,
.nav-item:hover .title {
  display: none;
}

.nav-item:hover .description,
.nav-item:hover .learn-more {
  display: block;
}

/* 为每个项目设置不同颜色 */
.item1 .circle {
  border-color: #4CAF50;
  color: #4CAF50;
  /* opacity: 0.7;  */
}
.item1:hover .circle {
  
  background-color: #4CAF50;
}

.item2 .circle {
  border-color: #db071f;
  color: #db071f;
}
.item2:hover .circle {
  background-color: #db071f;
}

.item3 .circle {
  border-color: #004691;
  color: #004691;
}
.item3:hover .circle {
  background-color: #004691;
}

.item4 .circle {
  border-color: #c8402a;
  color: #c8402a;;
}
.item4:hover .circle {
  background-color: #c8402a;;
}

.item5 .circle {
  border-color: #0090a8;
  color: #0090a8;
}
.item5:hover .circle {
  background-color: #0090a8;
}

.item6 .circle {
  border-color: #abaa2c;
  color: #abaa2c;
}
.item6:hover .circle {
  background-color: #abaa2c;
}

.item7 .circle {
  border-color: #c1487d;
  color: #c1487d;
}
.item7:hover .circle {
  background-color: #c1487d;
}

.item8 .circle {
  border-color: #008162;
  color: #008162;
}
.item8:hover .circle {
  background-color: #008162;
}
.item9 .circle {
  border-color: #899ba5;
  color: #899ba5;
}
.item9:hover .circle {
  background-color: #899ba5;
}

.item10 .circle {
  border-color: #805c8c;
  color: #805c8c;
}
.item10:hover .circle {
  background-color: #805c8c;
}

.item11 .circle {
  border-color: #01a5e2;
  color: #01a5e2;
}
.item11:hover .circle {
  background-color: #01a5e2;
}
.item12 .circle {
  border-color: #006b7f;
  color: #abaa2c;
}
.item12:hover .circle {
  background-color: #006b7f;
}

.item13 .circle {
  border-color: #83cee3;
  color: #c1487d;
}
.item13:hover .circle {
  background-color: #83cee3;
}

.item14 .circle {
  border-color: #86c6a1;
  color: #008162;
}
.item14:hover .circle {
  background-color: #86c6a1;
}
.item15 .circle {
  border-color: #791c2e;
  color: #c1487d;
}
.item15:hover .circle {
  background-color: #791c2e;
}

.item16 .circle {
  border-color: #03336c;
  color: #008162;
}
.item16:hover .circle {
  background-color: #03336c;
}
/* 底部 */
.footer {
  margin-top: 30px;
    width: 100%;
    height: 640px;
    background-color: #f0f0f0;

  }
  .footer .footer_action{
    margin-bottom: 30px;
  padding-top: 30px;
  text-align: center;

  }
  .footer .footer_action ul{
    max-width: 1220px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 30px;
    padding-top: 30px;
    text-align: center;
    font-size: 110%;
  }                                                                                                                                                                                                                                                                                                                                                                                                                            
  .footer .footer_action ul li{
    
    float: left;
    width: 23%;
  }
  .footer_action a {
    font-size: 28px;
    max-width: 198px;
    display: block;
    margin: 0 auto;
    color: #1d1d1b!important;
    cursor: pointer;
    font-weight: bold;
}
.footer_action p{
  height: 36px;
  line-height: 36px;
  text-align: center;
  padding-top: 20px;
}
.qr-container {
  position: relative;
  display: inline-block;
}
.qr-code {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  width: 150px;
  height: 150px;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.qr-container:hover .qr-code {
  display: block;
}
.qr-code img {
    width: 100%;
}
.footer_action a img{
height: 50px;
}
.footer_action a:hover p{

  color: #db071f;
    border-bottom:2px solid #db071f;
}
.widgets_wrapper{
    padding-top: 40px;
}
.container_3{
    padding-top: 180px;
    border-bottom: 2px solid #d0d0d0;
}
.column{
   width: 32%;
    float:left;
    text-align: center;
    padding-left: 6px;
    padding-right: 6px
}
.column .column_1{
    margin-top: 60px;
}
.column H3{
    font-size: 30px;
    line-height: 38px;
    font-weight: 900;
    letter-spacing: 0;
    text-align: center;
    padding-left: 6px;
    padding-right: 6px;
}
.column p{
    padding-top: 24px;
    letter-spacing: 0;
    text-align: center;
    padding-left: 6px;
    padding-right: 6px;
    font-weight: 900;
}
.textwidget p{
    line-height: 30px;
    font-size: 14px;
    color: #666;
    font-weight: 400;


}
.textwidget a{
    font-size: 14px;
    color: #666;
    font-weight: 400;

}
.textwidget a:hover{
    color: #db071f;
    text-decoration: underline;
}

 .one-fourth{
    width: 100%;
    border-top: 2px solid #d0d0d0;
    margin-top: 25px;
}
.img_column {
    padding-top: 30px;
    margin: 0 30px;
    float: left;
    display: flex;
    gap: 261px;  /* 图片间距控制‌:ml-citation{ref="5" data="citationList"} */
  }
  
  /* 图片样式 */
  .img_column a img {
    max-height: 30px;  /* 固定高度^用户需求^ */
    width: auto;  /* 保持原始宽高比‌:ml-citation{ref="3" data="citationList"} */
    display: block;  /* 消除行内元素间隙‌:ml-citation{ref="4" data="citationList"} */
  }
  .footer_copy{
    width: 100%;
    padding-top: 40px;
  }
  .footer_copy .copyright{
    float: left;
    width: 67%;
  }
  .footer_copy .copyright p{
    font-size: 18px;
    color: #d0d0d0!important;
    font-weight: 700;

  }
  .footer_copy .copyright a:hover{
    color: #db071f;
    text-decoration: underline;
  }
 /* 垂直右对齐容器 */
.icon-container {
   width: 33%;
   float: right;
}
.icon-container ul{
    width: 100%;
    list-style: none;
    margin-left: 100px;
}
.icon-container ul li{
float: left;
width: 12%;
text-align: center;
}
.icon-container ul li img{
    max-height: 34px;
}
.icon-container ul li a{
    margin-bottom: 10px;
}
/* 详情页 */
.detail_title {
    text-align: right;
}
.detail_title a{
  padding-left: 10px;
}
.detail_title span{
 padding-left: 10px;
}
.detail_title a:hover{
  color: #db071f;
}
.content_rt.fr {
    padding-top: 40px;
}
.content_rt.fr .content-title {
    text-align: center;
    padding-bottom: 20px;
}
.content_rt.fr p{
  text-align: justify;
 padding-bottom: 16px;
}


.form-group:last-child {
    margin-right: 0;
}

.form-group input, select {
    width: 100%;
    height: 50px;
    border:1px solid#ffffff;
    background-color: #eee;
    border-radius: 30px 0 0 30px;
}

 .column_o {
    padding-top: 0px;
 }
 
 .column_o .gd{
    padding-bottom: 30px;
    padding-top: 40px;
    width: 100%;
    text-align: center;
}

.column_o .gd a{
    font-size: 18px;
   display: inline-block;
    text-align: center;
    width: 140px;
    height: 50px;
    line-height: 50px;
    border: 2px solid#db071f;
    color: #db071f;
    font-weight: 700;
}
.ymys
{
   color:Red;
}
