/* 
 This CSS file is used to override the existing styles of the theme.
 You can change the article headings, fonts, colors, etc.
*/

/* 首页features的标题 */
/*h2.text-2xl {
    padding-top: 15px;
    color: brown;
}*/

img.my-4 {
    width: 100%;
    height: 10rem;
    /* height: 0; */
    object-fit: cover;
}

@font-face {
    font-family: 'PingFangMedium';
    src: url('../fonts/苹方黑体-准-简.ttf');
}
/* @font-face {
    font-family: 'Verdana';
    src: url('../fonts/verdana.ttf');
} */

/* 设置首页轮播图的半透明的黑色蒙版效果*/
.swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 蒙版颜色，这里使用了半透明黑色 */
  }

body {
    font-family: 'PingFangMedium',sans-serif;
}

.content {
    font-family: 'PingFangMedium',sans-serif;
}