@charset "UTF-8";
body {
  position: relative;
}
div.specials {
  color: red;
}

/*  分割线 */
.hr_footer {
	position: relative;
	height: 1px;
	border-width: 0;
	background-image: -webkit-linear-gradient(left,
	transparent 0%,#E1DCCB 50%,transparent 100%);
	background-image:         linear-gradient(90deg,
	transparent 0%,#E1DCCB 50%,transparent 100%);
}

/* 默认情况下图片的宽度为自适应 */
.image-container img {
    max-width: 100%;
    height: auto;
}

/* 使用flexbox使图片容器并排显示 */
div[align="center"] {
    display: flex;
    justify-content: center; /* 水平居中显示 */
    flex-wrap: wrap; /* 当没有足够的空间时允许换行 */
}

.image-container {
    flex: 1; /* 允许容器成比例地增长 */
    max-width: 40%; /* 限制最大宽度为50%，这样两个图片容器可以在一行上显示 */
    box-sizing: border-box;
    padding: 0 2px; /* 为了给图片之间留一些间隙 */
}


/*  电脑上标题展示 */
@media screen and (min-device-width:481px) {
  h1.ac {
    font-size: 215%;
  }

  h3.ac{
        font-size: 155%;
    }
  h4.ac{
        font-size: 180%;
  }
  .image-container img {
  width: 35%;
}


}
/*  手机上标题展示 */
@media screen and (max-device-width:481px) {
  h1.ac {
    font-size: 215%;
  }
    h2.ac{
        font-size: 50px;
        font-weight: bold;
    }
    h3.ac{
        font-size: 145%;
    }
    h4.ac{
        font-size: 145%;
    }
    .image-container {
        float: left;
        width: 50%;
        box-sizing: border-box;
        padding: 0 5px;  /* 为了给图片之间留一些间隙 */
    }

}
/*  总计女性 */
@media screen and (min-device-width:481px) {
  span.sample1 {
    font-size: 16px;
  }
}
@media screen and (max-device-width:481px) {
  span.sample1 {
    font-size: 18px;
  }
}
/*  翻页 */
@media screen and (min-device-width:481px) {
  span.sample2 {
    text-align: center;
    display: block;
    font-size: 18px;
  }
}
@media screen and (max-device-width:481px) {
  span.sample2 {
    text-align: center;
    display: block;
    font-size: 170%;
  }
}

/*  女会员展示PC */
@media screen and (min-device-width:481px) {
  .prof {
    width: 20%;
    height: 440px;
    border-width: 0px;
    float: left;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
    line-height: 25px;
  }
  .text_up {
    text-align: center;
    font-size: 105%;
    margin-left: -30px;
    /* padding-left: 23px;*/

  }
  .text_down {
    font-size: 135%;
    padding: 0px;
    margin: 0px;
  }
  .text_down img {
    width: 190px;
    height: 255px;
  }
  .dougaari img{
    height: 40px;
  }
}
/*  女会员展示手机 */
@media screen and (max-device-width:481px) {
  .prof {
    width: 50%;
    
    border-width: 0px;
    float: left;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
    line-height: 38px;
  }
  .text_up {
    text-align: center;
    font-size: 90%;

  }
  .text_down {
    font-size: 130%;
    padding: 0px;
    margin: 0px;
  }
  .text_down img {
    width: 160px;
    height: 220px;
  }
  .dougaari img{
    height: 40px;
  }
}


h2 {
      /* padding: 0.8rem 1.6rem;*/
      /* color: #bb726e;  褐色调，与渐变颜色协调 */
      font-size: 1.6em; /* 字体小于之前的1.6em */
      text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.3);
      border-radius: 3px;
      margin: 10px 0; /* 添加一些外边距 */
    }
    .center-text {
      text-align: center;
    }
    .left-text {
      text-align: left;
    }


.tag_area05 ul {
  margin: 0 15% 0 25%;
  padding: 0;
  list-style: none;
}
.tag_area05 ul li {
  display: inline-block;
  margin: 0 .8em .6em 4em;
  padding: 0;
}
.tag_area05 ul li a {
  position: relative;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding: 0 1em;
  background-color: #fa6967;
  border-radius: 0 3px 3px 0;
  color: #fff;
  font-size: 13px;
  text-decoration: none;

}
.tag_area05 ul li a::before {
  position: absolute;
  top: 0;
  left: -15px;
  content: '';
  width: 0;
  height: 0;
  border-color: transparent #fa6967 transparent transparent;
  border-style: solid;
  border-width: 15px 15px 15px 0;

}
.tag_area05 ul li a::after {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  display: block;
  content: '';
  width: 6px;
  height: 6px;
  margin-top: -3px;
  background-color: #fff;
  border-radius: 100%;
}
.tag_area05 ul li span {
  display: block;
  max-width: 120px;
  min-width: 120px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.tag_area05 ul li a:hover {
  background-color: #fa6967; /* 将:hover状态下的背景颜色改为与原始样式相同 */
  border-radius: 0 3px 3px 0;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .tag_area05 ul {
    margin: 0 5% 0 5%; /* 调整较小的屏幕上的边距 */
  }
  .tag_area05 ul li {
    margin: 0 0.4em 0.3em 2em; /* 在移动设备上减少边距 */
  }
  .tag_area05 ul li a {
    padding: 0 0.8em; /* 在小屏幕上减少内边距 */
    font-size: 12px; /* 可能需要减小字体大小以更好地适应小屏幕 */
  }
  /* 可能还需要调整::before和::after伪元素的大小和位置 */
  .tag_area05 ul li a::before {
    left: -14px; /* 调整三角形标签的位置 */
    border-width: 16px 16px 16px 0; /* 调整三角形的大小 */
  }
  .tag_area05 ul li a::after {
    width: 4px;
    height: 4px; /* 调整圆点的大小 */
    margin-top: -2px; /* 保证圆点垂直居中 */
  }
  .tag_area05 ul li span {
    max-width: 100px; /* 减小最大宽度以适应更窄的屏幕 */
    min-width: 100px; /* 减小最小宽度以保持一致性 */
  }
}

/* 当鼠标滑过链接时，保持伪元素::before的边界颜色不变 */
.tag_area05 ul li a:hover::before {
  border-right-color: #fa6967; /* 将:hover状态下::before的边界颜色改为原始的颜色值 */
}

/* 新footer */
.footer {
    background-color: #000000; /* Change as needed */
    color: #ffffff;
    padding: 20px;
    font-size: 1.3em;
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    padding: 10px;
}

.footer-section p {
    color: #ffffff;
}

.footer-section a:hover {
    color: #424949; /* 替换成你希望的高亮颜色 */
}

.footer-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    padding: 10px;
    border: 1px solid #ffffff;
}

.footer-links a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center; /* Center aligns the content */
    color: white; /* Changes the text color to white */
    
    padding: 20px 0; /* Adds padding to the top and bottom */
    font-size: 0.9em; /* Adjust the font size as needed */
}

.footer-bottom ul {
    list-style-type: none; /* Removes the bullet points */
    padding: 0; /* Removes the default padding */
    margin: 0; /* Removes the default margin */
}

.footer-bottom li {
    display: inline; /* Displays the list items inline */
    margin-right: 15px; /* Adds spacing between the list items, adjust as needed */
}

.footer-bottom li a {
    color: white; /* Ensures the links are also white */
    text-decoration: none; /* Removes the underline from links */
    font-weight: bold; /* Optional: makes the text bold */
}
.footer-bottom li a:hover {
    color: #424949; /* 替换成你希望的高亮颜色 */
}

.footer-bottom p {
    margin-top: 20px; /* Adds spacing above the paragraph for the copyright */
    color: #ffffff;
    font-size: 0.9em; /* Optional: makes the font size smaller for the copyright text */
}

 .buttonreal {
     display: inline-block;
     padding: 24px 38px;
     font-size: 23px;
     font-weight: bold; 
     background-color: #fa6967;
     border: none;
     border-radius: 5px;
     text-align: center;
     text-decoration: none;
     cursor: pointer;
     transition: background-color 0.3s, transform 0.2s;
     color: white !important; /* 添加 !important 来强制设置文字颜色为白色 */
     
   }

   .buttonreal:hover {
    background-color: #b4aa96;
    transform: scale(1.05);
    color: white !important; /* 添加 !important 来强制设置文字颜色为白色 */
  }

  .buttonreal2 {
   display: inline-block;
   padding: 24px 38px;
   font-size: 23px;
   font-weight: bold; 
   background-color: #C89B40;
   border: none;
   border-radius: 5px;
   text-align: center;
   text-decoration: none;
   cursor: pointer;
   transition: background-color 0.3s, transform 0.2s;
   color: white !important; /* 添加 !important 来强制设置文字颜色为白色 */
 }
 .buttonreal2:hover {
  background-color: #b4aa96;
  transform: scale(1.05);
  color: white !important; /* 添加 !important 来强制设置文字颜色为白色 */
}

  .buttonreal3 {
   display: inline-block;
   padding: 24px 38px;
   font-size: 23px;
   font-weight: bold; 
   background-color: #f9ad8e;
   border: none;
   border-radius: 5px;
   text-align: center;
   text-decoration: none;
   cursor: pointer;
   transition: background-color 0.3s, transform 0.2s;
   color: white !important; /* 添加 !important 来强制设置文字颜色为白色 */
 }
 .buttonreal3:hover {
  background-color: #b4aa96;
  transform: scale(1.05);
  color: white !important; /* 添加 !important 来强制设置文字颜色为白色 */
}

.center-text {
  text-align: center;
}

.centered-menu {
  display: table;
  margin: 0 auto;
  padding: 0;
  width: 50%;
  font-size: 1.1em;
  text-align: center;
 
}

.centered-menu li {
  display: table-cell;
  min-width: 50px;
  text-decoration: none; /* 去掉下划线 */
  
}

.centered-menu li a {
  display: block;
  width: 100%;
  padding: 10px 0;
  text-decoration: none;
  color: #555;
  font-weight: bold;
  text-decoration: none; /* 去掉下划线 */
}

.centered-menu li.current {
  background-color: #DEEBF7;
}

.centered-menu li.current a {
  color: #555;
}

.centered-menu li:hover {
  background-color: #b4aa96;
}


@media (max-width: 600px) {
  .centered-menu {
    width: 100%;  /* 增加宽度以容纳更多元素 */
    padding-left: 45px; /* 增加左边的内边距 */
  }

  .centered-menu li {
    display: block; /* 每个li独占一行 */
    width: 50%;     /* 每个li占据50%的宽度 */
    float: left;    /* 使元素并排显示 */
  }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
}

