/* 小于750px 手机*/
@media screen and (max-width: 750px) {
  .m_nav_content {
    font-size: 0.14rem;
  }
  .m_nav_content span {
    color: #254a98;
  }
  .m_nav_content .select {
    width: 1.5rem;
  }
  .m_nav_content .select .el-input__inner {
    height: 0.36rem;
    line-height: 0.36rem;
  }
  .main_section_contain {
    width: 100%;
  }
  .main_section_contain .main_title {
    margin-bottom: 0.6rem;
  }
  .main_section_contain .news_item {
    font-size: 0.14rem;
    width: 100%;
    margin-top: 0.16rem;
    padding-bottom: 0.16rem;
    border-bottom: 1px solid #e5e5e5;
  }
  .main_section_contain .news_item .news_details a {
    width: 100%;
    position: relative;
    display: block;
  }
  .main_section_contain .news_item .news_details a img {
    width: 0.2rem;
    height: 0.14rem;
    margin-left: 0.1rem;
    position: absolute;
    top: 0;
    right: 0;
  }
  .main_section_contain .news_item .news_details a p {
    width: calc(100% - 0.28rem);
    margin-bottom: 0.1rem;
    cursor: pointer;
    white-space: nowrap;
    /* 保证文本不换行 */
    overflow: hidden;
    /* 隐藏超出容器的文本 */
    text-overflow: ellipsis;
    /* 使用省略号表示被截断的文本 */
  }
  .main_section_contain .news_item .news_details a:hover p {
    color: #8b6825;
  }
  .main_section_contain .new_title {
    margin-top: 0.25rem;
  }
  .main_section_contain .new_title .tilt1 {
    display: flex;
    align-items: center;
    font-size: 0.2rem;
    color: #333;
  }
  .main_section_contain .new_title .tilt1 img {
    width: 0.24rem;
    height: 0.2rem;
    margin-right: 0.2rem;
  }
  .main_section_contain .new_title .select1 {
    display: flex;
    align-items: center;
    font-size: 0.14rem;
    margin-top: 0.15rem;
    position: relative;
  }
  .main_section_contain .new_title .select1 .select_opt {
    width: 2.5rem;
    height: 0.36rem;
    margin-left: 0.05rem;
  }
  .main_section_contain .new_title .select1 .select_opt .el-input {
    font-size: 0.14rem;
  }
  .main_section_contain .new_title .select1 .select_opt .el-input__inner {
    width: 2.5rem;
    height: 0.36rem;
    line-height: 0.36rem;
  }
  .main_contain .el-select-dropdown__item.selected {
    color: #254a98;
    font-weight: 700;
  }
  .main_contain .el-range-editor.is-active,
  .main_contain .el-range-editor.is-active:hover,
  .main_contain .el-select .el-input.is-focus .el-input__inner {
    border-color: #254a98;
  }
  .main_contain .el-select .el-input__inner:focus {
    border-color: #254a98;
  }
  .mask_sm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
  }
  .popup {
    position: fixed;
    box-sizing: border-box;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 10001;
    width: 90%;
    height: 80%;
    font-size: 0.14rem;
    padding: 0.3rem 0.1rem;
  }
  .popup .pop_main {
    height: 88%;
    overflow-y: auto;
  }
  .popup h3 {
    font-size: 0.2rem;
    font-weight: bold;
    margin-bottom: 0.1rem;
    text-align: center;
  }
  .popup p {
    margin: 0.15rem 0;
  }
  .popup .btn {
    width: 100%;
    margin-top: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.12rem;
    color: #8b6825;
  }
  .popup .btn .agree {
    color: #fff;
    background-color: #8b6825;
    margin-right: 0.2rem;
  }
  .popup .btn .agree:hover {
    color: #8b6825;
    background-color: #fff;
  }
  .popup .btn .disagree {
    color: #8b6825;
    background-color: #fff;
    margin-right: 0.15rem;
  }
  .popup .btn .disagree:hover {
    color: #fff;
    background-color: #8b6825;
  }
  .popup .btn span {
    display: block;
    height: 0.28rem;
    line-height: 0.28rem;
    text-align: center;
    width: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid #8b6825;
    cursor: pointer;
  }
}
@media screen and (min-width: 750px) {
  /*  PC */
  .main_section_contain {
    width: 100%;
    font-size: 20px;
  }
  .main_section_contain .main_title {
    margin-bottom: 80px;
  }
  .main_section_contain .news_item {
    width: 100%;
    margin-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
  }
  .main_section_contain .news_item .news_details a {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
  }
  .main_section_contain .news_item .news_details a p {
    width: calc(100% - 180px);
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .main_section_contain .news_item .news_details a img {
    width: 30px;
    height: 24px;
    margin: 0 10px;
  }
  .main_section_contain .news_item .news_details a:hover p {
    color: #8b6825;
  }
  .new_title .tilt1 {
    display: flex;
    align-items: center;
    font-size: 36px;
    color: #333;
  }
  .new_title .tilt1 img {
    width: 34px;
    height: 34px;
    margin-right: 20px;
  }
  .new_title .select1 {
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-top: 30px;
    position: relative;
  }
  .new_title .select1 .select_opt {
    width: 175px;
    height: 48px;
    margin-left: 20px;
  }
  .new_title .select1 .select_opt .el-input {
    font-size: 20px;
  }
  .new_title .select1 .select_opt .el-input__inner {
    width: 175px;
    height: 48px;
  }
  .main_contain .el-select-dropdown__item {
    font-size: 20px;
  }
  .main_contain .el-select-dropdown__item.selected {
    color: #254a98;
    font-weight: 700;
  }
  .main_contain .el-range-editor.is-active,
  .main_contain .el-range-editor.is-active:hover,
  .main_contain .el-select .el-input.is-focus .el-input__inner {
    border-color: #254a98;
  }
  .main_contain .el-select .el-input__inner:focus {
    border-color: #254a98;
  }
  .mask_sm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
  }
  .popup {
    position: fixed;
    box-sizing: border-box;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 10001;
    width: 56%;
    height: 80%;
    padding: 50px 60px 80px 60px;
    font-size: 18px;
  }
  .popup .pop_main {
    height: 88%;
    overflow-y: auto;
  }
  .popup h3 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
  }
  .popup p {
    margin: 15px 0;
  }
  .popup .btn {
    width: 100%;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #8b6825;
  }
  .popup .btn .agree {
    color: #fff;
    background-color: #8b6825;
    margin-right: 20px;
  }
  .popup .btn .agree:hover {
    color: #8b6825;
    background-color: #fff;
  }
  .popup .btn .disagree {
    color: #8b6825;
    background-color: #fff;
    margin-right: 20px;
  }
  .popup .btn .disagree:hover {
    color: #fff;
    background-color: #8b6825;
  }
  .popup .btn span {
    display: block;
    height: 50px;
    line-height: 50px;
    text-align: center;
    width: 150px;
    border-radius: 50px;
    border: 1px solid #8b6825;
    cursor: pointer;
  }
}
