
/* 网站动态（滚动调不了）*/
.home-dynamic .dynamic-slider .owl-nav {
    display: none;
}





/*///标题底色/////*/
.archive-hero.post-hero .archive-hero-bg::before {
    background: rgb(0 0 0 / 40%);
}











/*文章头部编排*/
.main {
	width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.contents {
  width: 100%;
  padding: 0 3px; /* 添加左右内边距 */
}

@media (min-width: 1024px) {
  .contents {
    width: 50%;
  }
}

/*字体*/
.contents ul {
  padding: 0;
  position: relative;
	margin-bottom: 0rem;
}

.contents ul li {
	font-weight: 700;
	color: rgb(146,135,110);
border-left: solid 8px #A97EFD; /* 左侧边框 */
  background: whitesmoke;/*背景色*/
  margin-bottom: 5px;/*下のバーとの余白*/
  line-height: 1.5;
  border-radius: 0 5px 5px 0;/*右側の角だけ丸く*/
  padding: 0.5em;
  list-style-type: none!important;
}

/*对话框字体大小*/
.post-content p {
    font-size: 18px;
}









/*/更多会所情报按钮/*/
.new-button-class a:not(.btn) {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    transform: skew(-15deg);
    color: #fff!important;
    background-image: linear-gradient(90deg, #2af598 0%, #009efd 100%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    font-size: 24px; /* 修改字体大小为24px */
}

.new-button-class a:not(.btn):hover {
    transform: skew(0);
    color: #fff!important;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .1);
}










/*/3个按钮/*/
.buttons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
	font-size: 0px;

}

.buttons-container a:not(.btn) {
  position: relative;
  font-size: 20px;
  display: inline-flex; /* 使用 inline-flex 来让按钮中的内容以弹性盒模型的方式排列 */
  align-items: center; /* 在垂直方向上居中对齐 */
  justify-content: center; /* 在水平方向上居中对齐 */
  font-weight: bold;
  padding: 0.5em 1em;
  text-decoration: none;
  border-left: solid 4px #668ad8;
  border-right: solid 4px #668ad8;
  color: #668ad8!important;
  background: #e1f3ff;
  transition: .4s;
  margin: 10px;
}

.buttons-container a:not(.btn):hover{
  background: #668ad8;
  color: #FFF!important;
}

@media only screen and (max-width: 767px) {
  .btn-flat-vertical-border {
    width: 100%;
    margin: 10px 0;
  }
}






/*///QA界面/////*/
.qa-008 dt {
    margin-bottom: 1em;
    color: #333333;
    font-weight: 600;
		font-size: 18px;
}

.qa-008 dt::before,
.qa-008 dd::before {
	  margin-right: .4em;
    font-weight: 600;
    font-size: 1.5em;
}

.qa-008 dt::before {
	  color: #75bbff;
    content: "Q.";
}

.qa-008 dd {
    margin: 0 0 2.5em;
    padding: 1em 1.5em;
    background-color: #eff5ff;
    color: #333333;
		font-size: 18px;
}

.qa-008 dd::before {
	  color: #ff8d8d;
    content: "A.";
}







/*/隐藏金币获取记录/
.card.mb-2.mb-md-4:nth-last-child(2) {
    display: none;
}
*/

/*//暗夜模式付款界面//
[data-bs-theme=dark] .ri-popup-content {
    background: #fff;
}
[data-bs-theme=dark] .pay-select-box .pay-item {
    border-color: #dfdfe3;
}
*/









/*/PC右上角会员菜单优化/*/
.col-6 a:nth-child(2) {
    display: none !important;
}
.col-6 {
    width: 100%!important;
}
.hover-balance .col-6 .text-center.bg-info,
.hover-balance .col-6 .text-center.bg-info .mb-2 {
    font-size: 16px; /* 调整字体大小 */
}

.hover-balance .col-6 .btn.btn-sm.d-block.bg-success,
.hover-balance .col-6 .btn.btn-sm.d-block.bg-warning {
    font-size: 16px; /* 调整按钮文字大小 */
}

.hover-balance .col-6 .text-center.bg-info .btn.btn-sm {
    font-size: 16px; /* 调整按钮文字大小 */
}








/* 卡密按钮调整 */
/* 按钮大小 */
.btn-danger,
.btn-warning {
    padding: 10px 20px!important; /* 按钮内边距 */
	  margin-bottom: 0.5rem;
}

/* 隐藏PC端按钮 */
@media (min-width: 1024px) {
  .btn-hide-on-pc {
    display: none!important;
  }
}






/* 折叠面板 */
.accordion1 {
  margin: 0.5em 0;
  font-size: 0.95em;
}
.accordion1 label {
  display: inline-block;
  position: relative;
  color: #FFF;
  padding: 5px 35px;
  font-weight: bold;
  border-radius: 5px;
  background: #80bfff;
  border-bottom: solid 4px #668ad8;
}
.accordion1 label:hover {
  background: #80bfff;
  color: #FFF;
}
.accordion1_input {
  display: none;
}
.accordion1_content {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s;
}
.accordion1_input:checked ~ .accordion1_content {
  height: auto;
  padding: 0.7em 0;
  opacity: 1;
}
.accordion1_input:checked + label {
  background: #80bfff;
  border-bottom: none;
}










/* 低部导航按钮样式 */
.button005-container {
  margin-bottom: 10px; /* 添加底部间隙 */
}

.button005 {
  width: 100%;
}

.button005 a.custom-button {
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 100%;
  padding: 10px 10px;
  color: #FFF!important;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  background: rgb(149, 202, 252)!important;
  background: linear-gradient(270deg, rgba(149, 202, 252, 1) 0%, rgba(107, 182, 255, 1) 100%)!important;
}

.button005 a.custom-button:hover {
  background: rgb(117, 188, 255)!important;
  background: linear-gradient(270deg, rgba(117, 188, 255, 1) 0%, rgba(62, 159, 252, 1) 100%)!important;
  color: #FFF!important; /* 鼠标放上去时文字颜色改为白色 */
}

/* 普通按钮样式 */
.button002-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px;
  margin-top: -5px; /* 将顶部间隙设置为负值 */
  margin-bottom: 15px; /* 添加底部间隙 */
}

.button002 {
  width: calc(20% - 5px);
  min-width: 0;
}

.button002 a.custom-button {
  background: #eee;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 10px;
  color: #313131!important;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}

.button002 a.custom-button:before {
  content: "\f3c5";
  position: relative;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
  color: #999;
}

.button002 a.custom-button:hover {
  background: #313131!important;
  color: #FFF!important;
}

@media screen and (max-width: 767px) {
  .button002 {
    width: calc(33.33% - 5px);
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .button002 {
    width: calc(25% - 5px);
  }
}


