/*==========================接口提示语========================*/
#showRightTips {
  display: none;
}
#showErrorTips {
  display: none;
}
.right-box {
  position: fixed; /* 固定定位，使其位于页面顶部 */
  top: 0px;
  left: 0;
  right: 0;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* 添加阴影 */
  z-index: 1000; /* 确保提示框在最上层 */
  text-align: center; /* 文本居中 */
  display: flex; /* 默认不显示 */
  justify-content: center;
  background-color: #f0f9eb;
}

.right-box p {
  margin: 0; /* 移除段落的外边距 */
  color: #67c23a;
  line-height: 26px;
}

.right-box img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.error-box {
  position: fixed; /* 固定定位，使其位于页面顶部 */
  top: 0px;
  left: 0;
  right: 0;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* 添加阴影 */
  z-index: 1000; /* 确保提示框在最上层 */
  text-align: center; /* 文本居中 */
  display: flex; /* 默认不显示 */
  justify-content: center;
  background-color: #fef0f0;
}

.error-box p {
  margin: 0; /* 移除段落的外边距 */
  color: red;
  line-height: 26px;
}

.error-box img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

@media (min-width: 600px) {
  .pcbox {
    min-width: 1440px;
    max-width: 1786px;
    margin: auto;
    display: block;
  }
  .phonebox {
    display: none;
  }
  .main {
    box-sizing: border-box;
    max-width: 1196px;
    margin: 0 auto;
  }
  /*==========================头部========================*/
  .topView-bg {
    background-color: #fffae9;
  }
  .topView {
    box-sizing: border-box;
    max-width: 1196px;
    margin: 0 auto;
    height: 42px;
    line-height: 42px;
    font-family: "PingFang SC";
    background: #fffae9;
    color: #765300;
    font-size: 14px;
  }
  #cj .topView {
    background: #ff5932;
    color: #ffffff;
  }
  #cj .topView-bg {
    background-color: #ff5932;
  }
  .weather {
    float: left;
    margin-top: 7px;
  }
  /*==========================头图========================*/
  .headImageView {
    height: 400px;
    background-image: url("../images/info-head.png"); /* 设置背景图 */
    background-size: cover; /* 背景图覆盖整个div，保持宽高比 */
    background-position: auto; /* 背景图居中显示 */
  }
  .headImagebox {
    max-width: 1921px;
    margin: auto;
    position: relative;
  }
  .head-logo {
    width: auto;
    height: 46px;
    position: absolute;
    top: 15px;
    left: 5%;
  }
  .searchbox {
    width: 50%;
    height: 50px;
    background: #ffffff;
    border-radius: 20px;
    border: 3px solid #f7a832;
    position: absolute;
    left: 25%;
    top: 390px;
    line-height: 50px;
    display: flex;
  }
  .searchbox .input {
    border: none;
    background: none;
    outline: none;
    flex: 1;
    padding: 0px 30px;
  }
  .searchbox .icon {
    width: 20px;
    height: 20px;
    margin: 15px 30px;
    cursor: pointer;
  }
  input::placeholder,
  textarea::placeholder {
    color: #b7b7b7;
  }
  /*==========================导航========================*/
  .headNavView {
    height: 76px;
    background: linear-gradient(0deg, #f6c271, #cf911f);
    border-radius: 0px 0px 25px 25px;
    -webkit-border-radius: 0px 0px 25px 25px;
    -moz-border-radius: 0px 0px 25px 25px;
    -ms-border-radius: 0px 0px 25px 25px;
    -o-border-radius: 0px 0px 25px 25px;
    text-align: center;
    /*==========================设置居中========================*/
    max-width: 1921px;
    margin: auto;
  }
  #cj .headNavView {
    background-image: url("../images/cj-head.png"); /* 设置背景图 */
    background-size: cover; /* 背景图覆盖整个div，保持宽高比 */
    background-position: center; /* 背景图居中显示 */
  }
  .navBox {
    box-sizing: border-box;
    max-width: 1196px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  .navBox ul {
    width: 900px;
    margin-top: 20px;
    list-style-type: none; /* 移除默认的列表符号 */
    padding: 0; /* 移除默认的内边距 */
    display: flex; /* 设置为弹性盒子布局 */
    flex-direction: row; /* 子元素水平排列 */
    justify-content: space-between; /* 子元素之间的间距均匀分布 */
  }
  .navBox ul li {
    color: #ffffff;
    line-height: 2rem;
    cursor: pointer;
  }
  .navBox ul li.active_n {
    border-bottom: 3px solid #ffffff;
  }
  /*==========================按钮=======================*/
  .mid-box {
    box-sizing: border-box;
    min-width: 1440px;
    max-width: 1786px;
    margin: auto;
    position: relative;
  }
  .newsView {
    box-sizing: border-box;
    max-width: 1196px;
    margin: 0 auto;
    position: relative;
  }
  .btn-h {
    display: flex;
    width: 100%;
    margin-top: 30px;
  }
  .btn-h-in {
    width: 33.33%;
    color: #cf9220;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    border-bottom: #f6f6f6 3px solid;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }
  .btn-h-in img {
    height: 16px;
    width: auto;
    margin-top: 17px;
    margin-right: 10px;
  }
  .btn-h .active_h {
    background: #f6f6f6;
    border-radius: 20px 20px 0px 0px;
    border-bottom: #cf9120 3px solid;
  }
  .btn-d {
    width: 100%;
    margin-top: 30px;
    height: 40px;
    white-space: nowrap;
    overflow: hidden; /* 隐藏溢出的内容 */
    display: flex;
    overflow-x: auto;
  }
  .btn-d-in {
    background: #f6f6f6;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 10px 20px;
    color: #cf9220;
    float: left;
    margin-right: 20px;
  }
  .btn-d .active_d {
    color: #fff;
    background-color: #cf9120;
  }
  /*===========================表单==========================*/
  .a {
    margin-top: 30px;
  }
  .a-1 {
    height: 35px;
    background: #fffae9;
    border-radius: 10px;
    font-size: 14px;
    color: #cf9120;
    text-align: center;
    line-height: 35px;
  }
  .a-2 {
    width: 100%;
    height: 160px;
  }
  #ssForm .a-2 {
    height: 260px;
  }
  .b-2 {
    width: 100%;
    height: 100px;
  }
  .c-2 {
    width: 100%;
    height: 160px;
  }
  .d-2 {
    width: 100%;
    height: 260px;
  }
  .d-3 {
    width: 100%;
    height: 220px;
  }
  .d-4 {
    margin-top: 20px;
    width: 100%;
    height: 120px;
    background: #fffae9;
    border-radius: 20px;
    border: 1px dotted #feb574;
  }
  .a-3 {
    font-size: 14px;
    height: 35px;
    line-height: 35px;
    width: 50%;
    float: left;
    margin-top: 20px;
    box-sizing: border-box;
    display: flex;
  }
  .c-3 {
    width: 100%;
    height: 135px;
  }
  .a-4 {
    width: 100px;
    text-align: right;
    display: inline-block;
  }
  .c-4 {
    width: 180px;
    text-align: right;
    display: inline-block;
  }
  .need {
    color: #ff0000;
  }
  .a-input {
    flex: 1;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding-left: 10px;
    padding-right: 10px;
  }
  .a-textarea {
    flex: 1;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 10px;
    line-height: 20px;
    resize: none;
  }
  .upload {
    display: flex;
    justify-content: center;
  }
  .upload img {
    width: 60px;
    height: 60px;
    margin-top: 10px;
    cursor: pointer;
  }
  .tips {
    font-family: PingFang SC;
    font-weight: 400;
    font-size: 12px;
    color: #cf9120;
    padding: 10px 20px;
    text-align: center;
  }
  .uploadbtnbox {
    display: flex;
    justify-content: center;
    margin: 30px auto;
  }
  .upload-button {
    width: 300px;
    height: 60px;
    background: #fffae9;
    border-radius: 20px;
    border: 1px solid #feb574;
    color: #cf9120;
    cursor: pointer;
  }
  .imgboxs {
    height: 200px;
    margin-top: 20px;
    width: 100%;
    display: flex;
  }
  .imgbox {
    width: 23%;
    height: 200px;
    background: #f3f3f3;
    overflow: hidden;
    position: relative;
    margin-left: 32px;
  }
  .imgbox:nth-child(1) {
    margin-left: 0px;
  }
  .imgbox .up_img {
    width: 90%;
    height: 160px;
    margin-left: 5%;
    margin-top: 20px;
  }
  .imgbox .close_img {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
  }
  .uploadBigBox {
    display: none;
  }
  /*===========================验证码==========================*/
  .yzm {
    height: 70px;
  }
  .postbtnbox {
    display: flex;
    justify-content: center;
    margin: 30px auto;
  }
  .post-button {
    width: 300px;
    height: 60px;
    background: #eb9950;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    border: 1px solid #eb9950;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  /*===========================底部==========================*/
  .dibubox {
    background-color: #fff;
    height: 300px;
    margin-top: 30px;
  }
  #cj .dibubox {
    background-color: #fdf4e6;
  }
  .dibuView {
    height: 90px;
    box-sizing: border-box;
    max-width: 1196px;
    margin: 0 auto;
    position: relative;
  }
  .dibu {
    background-image: url("../images/dibu.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 210px;
  }
  #cj .dibu {
    background-image: url("../images/cj-foot.png");
  }
  .dibu-float {
    width: 100%;
    height: 200px;
    background: #eb9950;
    border-radius: 30px;
    position: absolute;
    display: flex;
  }
  .float-left {
    width: calc(100% - 170px);
    padding: 30px;
  }
  .float-right {
    width: 170px;
  }
  .left-txts {
    width: 50%;
    float: left;
    padding: 10px 5px;
    box-sizing: border-box;
    display: flex;
  }
  .left-txts img {
    width: 14px;
    height: 14px;
  }
  .left-txts span {
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    padding-left: 10px;
  }
}
@media (max-width: 599px) {
  .pcbox {
    display: none;
  }
  .phonebox {
    display: block;
  }
  .main {
    box-sizing: border-box;
    min-height: 100vh;
  }
  /*==========================头图========================*/
  .headImageView {
    height: 200px;
    background-image: url("../images/info-head.png"); /* 设置背景图 */
    background-size: cover; /* 背景图覆盖整个div，保持宽高比 */
    background-position: center; /* 背景图居中显示 */
    margin-top: 0px;
  }
  .headImagebox {
    max-width: 1921px;
    margin: auto;
    position: relative;
  }
  .head-logo {
    width: auto;
    height: 46px;
    position: absolute;
    top: 15px;
    left: 5%;
  }
  .searchbox {
    width: 90%;
    height: 30px;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #f7a832;
    position: absolute;
    left: 5%;
    top: 205px;
    line-height: 30px;
    display: flex;
  }
  .searchbox .input {
    border: none;
    background: none;
    outline: none;
    flex: 1;
    padding: 0px 30px;
  }
  .searchbox .icon {
    width: 16px;
    height: 16px;
    margin: 7px 15px;
    cursor: pointer;
  }
  input::placeholder,
  textarea::placeholder {
    color: #b7b7b7;
  }
  /*==========================导航========================*/
  .headNavView {
    height: 50px;
    background: linear-gradient(0deg, #f6c271, #cf911f);
    border-radius: 0px 0px 15px 15px;
    -webkit-border-radius: 0px 0px 15px 15px;
    -moz-border-radius: 0px 0px 15px 15px;
    -ms-border-radius: 0px 0px 15px 15px;
    -o-border-radius: 0px 0px 15px 15px;
    text-align: center;
    /*==========================设置居中========================*/
    max-width: 1921px;
  }
  #cj .headNavView {
    background: linear-gradient(0deg, #990404, #ce0a0a);
  }
  .navBox {
    box-sizing: border-box;
    max-width: 1196px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin: 0px 30px;
  }
  .navBox ul {
    width: 900px;
    margin-top: 5px;
    list-style-type: none; /* 移除默认的列表符号 */
    padding: 0; /* 移除默认的内边距 */
    display: flex; /* 设置为弹性盒子布局 */
    flex-direction: row; /* 子元素水平排列 */
    justify-content: space-between; /* 子元素之间的间距均匀分布 */
  }
  .navBox ul li {
    color: #ffffff;
    line-height: 2rem;
    cursor: pointer;
  }
  .navBox ul li.active_t {
    border-bottom: 3px solid #ffffff;
  }
  /*==========================按钮=======================*/
  .newsView {
    box-sizing: border-box;
    max-width: 1196px;
    margin: 0 auto;
    position: relative;
  }
  .btn-h {
    margin-top: 30px;
    height: 50px;
    overflow: hidden; /* 隐藏溢出的内容 */
    overflow-x: auto;
    /* width: 100%; */
    white-space: nowrap;
    display: flex;
    position: relative;
  }
  .go-r {
    position: absolute;
    right: 5px;
    width: 20px;
    height: 20px;
    margin-top: 15px;
    z-index: 2;
  }
  .btn-h-in {
    color: #cf9220;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    border-bottom: #f6f6f6 3px solid;
    display: flex;
    justify-content: center;
    cursor: pointer;
    float: left;
    padding: 0px 30px;
  }
  .btn-h-in img {
    height: 16px;
    width: auto;
    margin-top: 17px;
    margin-right: 10px;
  }
  .btn-h .active_h {
    background: #f6f6f6;
    border-radius: 20px 20px 0px 0px;
    border-bottom: #cf9120 3px solid;
  }
  .btn-d {
    width: 100%;
    margin-top: 30px;
    height: 40px;
    white-space: nowrap;
    overflow: hidden; /* 隐藏溢出的内容 */
    display: flex;
    overflow-x: auto;
  }
  .btn-d-in {
    background: #f6f6f6;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 10px 20px;
    color: #cf9220;
    float: left;
    margin-right: 20px;
  }
  .btn-d .active_d {
    color: #fff;
    background-color: #cf9120;
  }
  /*===========================表单==========================*/
  .a {
    margin-top: 30px;
  }
  .a-1 {
    height: 35px;
    background: #fffae9;
    border-radius: 10px;
    font-size: 14px;
    color: #cf9120;
    text-align: center;
    line-height: 35px;
  }
  .a-2 {
    width: 100%;
    height: 320px;
  }
  #ssForm .a-2 {
    height: 540px;
  }
  .b-2 {
    width: 100%;
    height: 220px;
  }
  .c-2 {
    width: 100%;
    height: 160px;
  }
  .d-2 {
    width: 100%;
    height: 260px;
  }
  .d-3 {
    width: 100%;
    height: 280px;
  }
  .d-4 {
    margin-top: 20px;
    width: 100%;
    height: 145px;
    background: #fffae9;
    border-radius: 20px;
    border: 1px dotted #feb574;
  }
  .a-3 {
    font-size: 14px;
    height: 35px;
    line-height: 35px;
    width: 92%;
    float: left;
    margin-top: 20px;
    box-sizing: border-box;
    display: flex;
  }
  .c-3 {
    width: 92%;
    height: 135px;
  }
  .a-4 {
    width: 100px;
    text-align: right;
    display: inline-block;
  }
  .c-4 {
    width: 182px;
    text-align: right;
    display: inline-block;
  }
  .need {
    color: #ff0000;
  }
  .a-input {
    flex: 1;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding-left: 10px;
    padding-right: 10px;
  }
  .a-textarea {
    flex: 1;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 10px;
    line-height: 20px;
    resize: none;
  }
  .upload {
    display: flex;
    justify-content: center;
  }
  .upload img {
    width: 60px;
    height: 60px;
    margin-top: 10px;
    cursor: pointer;
  }
  .tips {
    font-family: PingFang SC;
    font-weight: 400;
    font-size: 12px;
    color: #cf9120;
    padding: 10px 20px;
    text-align: center;
  }
  .uploadbtnbox {
    display: flex;
    justify-content: center;
    margin: 30px auto;
  }
  .upload-button {
    width: 300px;
    height: 60px;
    background: #fffae9;
    border-radius: 20px;
    border: 1px solid #feb574;
    color: #cf9120;
    cursor: pointer;
  }
  .imgboxs {
    height: 200px;
    margin-top: 20px;
    width: 100%;
    display: flex;
  }
  .imgbox {
    width: 23%;
    height: 200px;
    background: #f3f3f3;
    overflow: hidden;
    position: relative;
    margin-left: 32px;
  }
  .imgbox:nth-child(1) {
    margin-left: 0px;
  }
  .imgbox .up_img {
    width: 90%;
    height: 160px;
    margin-left: 5%;
    margin-top: 20px;
  }
  .imgbox .close_img {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
  }
  .uploadBigBox {
    display: none;
  }
  /*===========================验证码==========================*/
  .yzm {
    height: 140px;
  }
  .postbtnbox {
    display: block;
    /* justify-content: center; */
    /* margin: 30px auto; */
  }
  .post-button {
    width: 300px;
    height: 60px;
    background: #eb9950;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    border: 1px solid #eb9950;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    margin-left: calc((100% - 300px) / 2);
  }
  /*===========================底部==========================*/
  .dibubox {
    background-color: transparent;
    height: 100px;
    position: relative;
  }
  .dibuView {
    height: 90px;
    box-sizing: border-box;
    max-width: 1196px;
    margin-left: 30px;
    position: absolute;
    background: #eb9950;
    top: -30px;
    left: 0;
    width: calc(100vw - 60px);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .dibu {
    background-image: url("../images/dibu_phone.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100px;
    margin-top: 50px;
  }
  #cj .dibu {
    background-image: url("../images/cj-dibu_phone.png");
  }
  .di-txt {
    text-align: center;
    font-size: 12px;
    color: #fff;
    line-height: 20px;
    margin-top: 15px;
  }
}
