body .cnki {
  width: 1200px;
  margin: 0 auto;
  padding: 10px 30px 0;
}

body .cnki .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body .cnki .top ul {
  width: 978px;
  height: 44px;
  background: #e8f4ff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

body .cnki .top ul li {
  display: flex;
  align-items: center;
  padding: 0 24px 0 16px;
}
body .cnki .top ul li:last-of-type(1) {
  padding: 0 0 0 16px;
}
body .cnki .top ul li img {
  margin-right: 3px;
  width: 16px;
  height: 16px;
}

body .cnki .top ul li p {
  font-size: 14px;
  color: #142232;
  line-height: 24px;
}

body .cnki .top .button {
  width: 142px;
  background: linear-gradient(135deg, #b11a1a 0%, #b11a1a 100%);
  border-radius: 53px 53px 53px 53px;
  border: 2px solid;
  font-size: 16px;
  line-height: 1;
  
  text-align: center;
  color: #ffffff;
  cursor: pointer;
}
body .cnki .top .button a {
  display: block;
  padding: 12px 0;
  width: 100%;
  color: #ffffff;
}

body .cnki .main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0;
}

body .cnki .main .taocan ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 892px;
}

body .cnki .main .taocan ul li {
  position: relative;
  cursor: pointer;
  display: flex;
  width: 284px;
  height: 170px;
  background: #ffffff;
  border-radius: 20px 20px 20px 20px;
  border: 2px solid #e9edf0;
  padding: 20px;
  position: relative;
  box-sizing: border-box;
}

body .cnki .main .taocan ul li .needle {
  position: absolute;
  width: 44px;
  height: 44px;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
body .cnki .main .taocan ul li .left {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  z-index: 1;
}
body .cnki .main .taocan ul li .left h4 {
  font-weight: 400;
  font-size: 30px;
  color: #142232;
  line-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .cnki .main .taocan ul li .left h4 span{
  font-family: 'ding';
}
body .cnki .main .taocan ul li .left h4 .price {
  font-weight: 400;
  font-size: 14px;
  color: #ee5353;
  line-height: 22px;
  position: relative;
  top: 2px;
}

body .cnki .main .taocan ul li .left h4 .price span {
  margin: 0 4px;
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
}
body .cnki .main .taocan ul li .left > p {
  margin-top: 18px;
  font-weight: 400;
  font-size: 14px;
  color: #142232;
  line-height: 22px;
}

body .cnki .main .taocan ul li .left > p:nth-child(3) {
  margin-top: 8px;
  color: #1890ff;
}
body .cnki .main .taocan ul li .right {
}

body .cnki .main .taocan ul li .right img {
  width: 106px;
  height: 106px;
  position: absolute;
  top: 54px;
  right: 10px;
  z-index: 0;
}
body .cnki .main .taocan ul li .right img:nth-of-type(2) {
  display: none;
}
/* 激活时 */
body .cnki .main .taocan ul li.active {
  background: linear-gradient(135deg, #b11a1a  0%, #b11a1a  100%);
}
body .cnki .main .taocan ul li.active .right img:nth-of-type(1) {
  display: none;
}
body .cnki .main .taocan ul li.active .right img:nth-of-type(2) {
  display: block;
}
body .cnki .main .taocan ul li.active .needle {
  display: block;
}
body .cnki .main .taocan ul li.active .left h4 {
  color: #fff;
}
body .cnki .main .taocan ul li.active .left > p {
  color: rgba(255, 255, 255, 0.9);
}
body .cnki .main .taocan ul li.active .left h4 .price {
  color: #fff;
}

body .cnki .main .ding {
  width: 228px;
  height: 170px;
  background: url(../images/cnki/youhui.png) no-repeat top center;
  background-size: 100% 100%;
  display: flex;
  padding: 0 16px 0 0;
  box-sizing: border-box;
}

body .cnki .main .ding .left {
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  line-height: 1;
  writing-mode: vertical-rl;
  text-align: center;
  padding: 0 18px;
  letter-spacing: 6px;
}
body .cnki .main .ding .right {
  flex: 1;
  margin-left: 11px;
  padding-top: 20px;
}
body .cnki .main .ding .right ul {
  /* margin-bottom: 18px; */
}

body .cnki .main .ding .right ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

body .cnki .main .ding .right ul li p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 22px;

  display: flex;
  /* align-items: center; */
}
body .cnki .main .ding .right ul li .point {
  margin-right: 4px;
  width: 4px;
  height: 22px;
  display: flex;
  align-items: center;
}
body .cnki .main .ding .right ul li .point span {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50%;
}
body .cnki .main .ding .right ul li p:nth-child(2) {
  color: #ffffff;
}

body .cnki .main .ding .right ul li .des {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72) !important;
  display: flex;
}
body .cnki .main .ding .right ul li .des .point {
  height: 20px;
}

body .cnki .main .ding .right .buttt {
  padding-top: 10px;
  display: flex;
  align-items: center;
  padding-left: 8px;
}

body .cnki .main .ding .right .buttt h5 {
  font-size: 18px;
  color: #ffffff;
  line-height: 26px;
}

body .cnki .main .ding .right .buttt p {
  width: 52px;
  height: 28px;
  background: #ffffff;
  border-radius: 53px 53px 53px 53px;
  font-weight: 500;
  font-size: 14px;
  color: #f57e3e;
  line-height: 28px;
  text-align: center;
  margin-left: 9px;
}

body .cnki .nei {
  display: flex;
  justify-content: space-between;
  flex: 1;
}

body .cnki .biao {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 20px;
  color: #142232;
  line-height: 28px;
  position: relative;
  z-index: 2;
  
  display: inline-block;
  vertical-align: top;
}

body .cnki .biao::after {
  content: "";
  width: 100%;
  height: 12px;
  background: #e8f4ff;
  border-radius: 0px 0px 0px 0px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

body .cnki .nei .left {
  width: 828px;
  /* height: 652px; */
  background: #ffffff;
  border-radius: 20px 20px 20px 20px;
  padding: 30px;
}

body .cnki .nei .left .inp {
  display: flex;
  margin-bottom: 20px;
}

body .cnki .nei .left .inp p {
  font-size: 14px;
  color: #434e5b;
  line-height: 32px;
}
body .cnki .nei .left .inp p:nth-of-type(1) {
  width: 68px;
}
body .cnki .nei .left .inp p:nth-of-type(2) {
  flex: 1;
}
body .cnki .nei .left .inp .dan {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  color: #142232;
  line-height: 22px;
  margin-right: 30px;
}
body .cnki .nei .left .inp .dan label {
  display: flex;
  align-items: center;
}

body .cnki .nei .left .inp .dan input {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}

body .cnki .nei .left .inp input {
  width: 690px;
  height: 32px;
  background: #ffffff;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #d0d3d6;
  line-height: 32px;
  padding: 0 8px;
  box-sizing: border-box;
}

body .cnki .nei .left .textarea {
  position: relative;

  width: 700px;
  height: 224px;
  background: #ffffff;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #d0d3d6;
  margin-left: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 0;
}
body .cnki .nei .left .textarea .inputFile {
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}
body .cnki .nei .left .textarea b {
  margin: 24px 0 4px;
  font-size: 14px;
}

body .cnki .nei .left .textarea p {
}
body .cnki .nei .left .textarea p:nth-child(1) {
  font-size: 20px;
}
body .cnki .nei .left .textarea p:nth-child(3) {
  font-size: 12px;
  color: #a1a7ad;
}

body .cnki .nei .left .butttt {
  
  display: flex;
  align-items: center;
  justify-content: center;
}

body .cnki .nei .left .butttt button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 142px;
  background: linear-gradient(135deg, #b11a1a  0%, #b11a1a  100%);
  border-radius: 12px 12px 12px 12px;
  border: 2px solid #e8f4ff;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  padding: 10px 0;
  text-align: center;
  box-sizing: border-box;
  margin: 0;
}

body .cnki .nei .left .butttt button img {
  margin-right: 10px;
  width: 20px;
  height: 24px;
}

body .cnki .nei .left .butttt p {
  width: 112px;

  background: #e8f4ff;
  border-radius: 12px 12px 12px 12px;
  border: 2px solid;
  font-size: 16px;
  color: #1890ff;
  line-height: 1;
  text-align: center;
  margin-left: 40px;

  box-sizing: border-box;
}
body .cnki .nei .left .butttt p a {
  padding: 12px 0;
  display: block;
  color: #1890ff;
}
body .cnki .nei .left .ti {
  width: 700px;
  height: 32px;
  background: #ffffff;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #d0d3d6;
  display: flex;
  justify-content: space-between;
  margin: 20px 0 0 70px;
  padding: 0 8px;
}

body .cnki .nei .left .ti img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

body .cnki .nei .left .ti p {
  font-size: 14px;
}

body .cnki .nei .left .ti .lef {
  display: flex;
  align-items: center;
}

body .cnki .nei .left .ti .righ {
  display: flex;
  align-items: center;
}

body .cnki .nei .right {
  width: 292px;
  /* height: 652px; */
  background: #ffffff;
  border-radius: 20px 20px 20px 20px;
  padding: 30px 46px 30px 30px;
}

body .cnki .nei .right ul li {
  margin-bottom: 20px;
}

body .cnki .nei .right ul li .img {
  display: flex;
  align-items: center;
}

body .cnki .nei .right ul li .img img {
  width: 12px;
  height: 12px;
  margin-right: 4px;
}

body .cnki .nei .right ul li .img h5 {
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: #142232;
  line-height: 22px;
}

body .cnki .nei .right ul li p {
  margin-top: 4px;
  font-size: 12px;
  color: #434e5b;
  margin-left: 16px;
  line-height: 24px;
  text-align: justify;
}

body .cnki .foot {
  margin-top: 38px;
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 22px;
}

body .cnki_jilu {
  width: 1200px;
  margin: 0 auto;
  background: #f5fbff;
  padding: 10px 30px 0;
  box-sizing: border-box;
}

body .cnki_jilu .xin ul {
  display: flex;
  margin-top: 30px;
}

body .cnki_jilu .xin ul li {
  cursor: pointer;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  line-height: 44px;
  border-radius: 12px 12px 12px 12px;
  height: 44px;
}
body .cnki_jilu .xin ul li a {
  display: block;
  color: #fff;
}
body .cnki_jilu .xin ul li:nth-child(1) {
  width: 112px;
  background: #ff7318;
}

body .cnki_jilu .xin ul li:nth-child(2) {
  width: 176px;
  background: #ffac68;
  margin: 0 20px;
}

body .cnki_jilu .xin ul li:nth-child(3) {
  width: 176px;
  background: #61bf50;
}
body .cnki_jilu .xin ul li:nth-child(4) {
  width: 176px;
  background: #f39d22;
  margin: 0 20px;
}

body .cnki_jilu .cha {
  position: relative;
}

body .cnki_jilu .cha p {
  position: relative;
  font-weight: 600;
  font-size: 20px;
  color: #142232;
  line-height: 28px;
  margin: 30px 0 20px;
  z-index: 9;
}

body .cnki_jilu .cha::after {
  width: 80px;
  height: 12px;
  background: #e8f4ff;
  border-radius: 0px 0px 0px 0px;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

body .cnki_jilu .liebiao ul {
  display: flex;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
body .cnki_jilu .liebiao ul:nth-last-of-type(1) {
  border: none;
}
body .cnki_jilu .liebiao ul:nth-child(1) {
  background: #f7f8fa;
}

body .cnki_jilu .liebiao ul:nth-child(1) li {
  color: #434e5b;
}

body .cnki_jilu .liebiao ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  line-height: 22px;
  font-size: 14px;
  color: #142232;
  text-align: center;
  flex-wrap: wrap;
  padding: 16px 10px;
}
body .cnki_jilu .liebiao ul li .point {
  width: 4px;
  height: 4px;
  background: #61bf50;
  margin-right: 4px;
  border-radius: 50%;
}
body .cnki_jilu .liebiao ul li .liBtn {
  margin: 0 8px;
  cursor: pointer;
}
body .cnki_jilu .liebiao ul li:nth-child(1) {
  width: 60px;
}

body .cnki_jilu .liebiao ul li:nth-child(2) {
  width: 60px;
}

body .cnki_jilu .liebiao ul li:nth-child(3) {
  width: 74px;
}

body .cnki_jilu .liebiao ul li:nth-child(4) {
  width: 74px;
}

body .cnki_jilu .liebiao ul li:nth-child(5) {
  width: 116px;
}

body .cnki_jilu .liebiao ul li:nth-child(6) {
  width: 96px;
}
body .cnki_jilu .liebiao ul li:nth-child(7) {
  width: 74px;
}

body .cnki_jilu .liebiao ul li:nth-child(8) {
  width: 84px;
}
body .cnki_jilu .liebiao ul li:nth-child(9) {
  width: 246px;
}
body .cnki_jilu .liebiao ul li:nth-child(10) {
  width: 254px;
}
body .cnki_jilu .liebiao .head {
  border: none;
}
body .cnki_jilu .liebiao .head li {
  min-height: 42px;
  padding: 0;
}
body .cnki_jilu .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body .cnki_jilu .top ul {
  width: 980px;
  height: 44px;
  background: #e8f4ff;
  border-radius: 31px 31px 31px 31px;
  display: flex;
  align-items: center;
  padding-left: 16px;
}

body .cnki_jilu .top ul li {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

body .cnki_jilu .top ul li img {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

body .cnki_jilu .top ul li p {
  font-size: 14px;
  color: #142232;
  line-height: 24px;
}

body .cnki_jilu .top .button {
  width: 142px;
  background: linear-gradient(135deg, #b11a1a  0%, #b11a1a  100%);
  border-radius: 53px 53px 53px 53px;
  border: 2px solid;
  font-size: 16px;
  line-height: 1;
  text-align: center;

  color: #ffffff;
}
body .cnki_jilu .top .button a {
  display: block;
  width: 100%;
  padding: 12px 0;;
  color: #ffffff;
}

body .cnki_jilu .foot {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 22px;
}

body .thesis {
  width: 1200px;
  flex: 1;
  border-radius: 0px 0px 0px 0px;
  margin: 0 auto;
  padding: 30px 30px 0;
  position: relative;
  box-sizing: border-box;
}

body .thesis .banner ul {
  display: flex;
  justify-content: space-between;
}

body .thesis .banner ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body .thesis .banner ul li img {
  width: 978px;
  height: 120px;
}

body .thesis .banner ul li a {
  display: block;
  width: 142px;
  background: linear-gradient(135deg, #b11a1a  0%, #b11a1a  100%);
  border-radius: 53px 53px 53px 53px;
  border: 2px solid;
  font-size: 16px;
  color: #ffffff;
  line-height: 1;
  padding: 12px 0;
  text-align: center;
  margin-top: 4px;
}

body .thesis .banner ul li:nth-child(2) img {
  width: 70px;
  height: 70px;
}

body .thesis .nei {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  flex: 1;
}

body .thesis .nei .lef {
  width: 366px;
  height: 618px;
  background: #ffffff;
  border-radius: 20px 20px 20px 20px;
  padding: 15px 0 0 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body .thesis .nei .lef .huo {
  width: 100px;
  height: 26px;
  background: #ffeed5;
  border-radius: 0px 14px 0px 14px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 5px 10px; */
}

body .thesis .nei .lef .huo img {
  width: 16px;
  height: 16px;
}

body .thesis .nei .lef .huo p {
  font-size: 10px;
  color: #f39d22;
}

body .thesis .nei .lef .top {
  font-weight: 600;
  font-size: 30px;
  color: #142232;
  line-height: 50px;
  position: relative;
  z-index: 2;
}

body .thesis .nei .lef .top p {
  position: relative;
  z-index: 99;
}

body .thesis .nei .lef .top::after {
  content: "";
  width: 134px;
  background: url(../images/Thesis/bc1.png) no-repeat top center;
  background-size: 100% 100%;
  height: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  z-index: 0;
}

body .thesis .nei .lef ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  margin-top: 15px;
}

body .thesis .nei .lef ul li {
  padding: 20px;
  width: 306px;
  height: 156px;
  background: #fff9ee;
  border-radius: 14px 14px 14px 14px;
  margin-bottom: 20px;
  position: relative;
  box-sizing: border-box;
}

body .thesis .nei .lef ul li img {
  width: 48px;
  height: 52px;
}

body .thesis .nei .lef ul li .tit {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

body .thesis .nei .lef ul li .tit p {
  margin-left: 12px;
  font-weight: 600;
  font-size: 20px;
  color: #142232;
  line-height: 28px;
}

body .thesis .nei .lef ul li .tex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body .thesis .nei .lef ul li .tex .l p {
  font-weight: 400;
  font-size: 14px;
  color: #142232;
  line-height: 22px;
}

body .thesis .nei .lef ul li .tex .l p:nth-child(2) {
  margin-top: 4px;
  font-weight: 400;
  font-size: 12px;
  color: #434e5b;
  line-height: 20px;
}

body .thesis .nei .lef ul li .tex .r p {
  font-weight: 400;
  font-size: 14px;
  color: #ee5353;
  line-height: 22px;
}

body .thesis .nei .lef ul li .tex .r p span {
  margin: 0 4px;
  font-weight: 500;
  font-size: 24px;
  color: #ee5353;
  line-height: 32px;
}

body .thesis .nei .rig {
  width: 366px;
  height: 618px;
  background: #ffffff;
  border-radius: 20px 20px 20px 20px;
  padding: 15px 0 0 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body .thesis .nei .rig .huo {
  width: 100px;
  height: 26px;
  background: #dfe2ff;
  border-radius: 0px 14px 0px 14px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

body .thesis .nei .rig .huo img {
  width: 16px;
  height: 16px;
}

body .thesis .nei .rig .huo p {
  font-size: 10px;
  color: #686fff;
}

body .thesis .nei .rig .top {
  font-weight: 600;
  height: 50px;
  font-size: 30px;
  color: #142232;
  line-height: 50px;
  text-align: center;
  position: relative;
  z-index: 2;
}

body .thesis .nei .rig .top p {
  position: relative;
  z-index: 99;
}

body .thesis .nei .rig .top::after {
  content: "";
  width: 134px;
  background: url(../images/Thesis/bc3.png) no-repeat top center;
  background-size: 100% 100%;
  height: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  z-index: 0;
}

body .thesis .nei .rig ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  margin-top: 15px;
}

body .thesis .nei .rig ul li {
  padding: 20px;
  width: 306px;
  height: 156px;
  background: #f1f2ff;
  border-radius: 14px 14px 14px 14px;
  margin-bottom: 20px;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
}

body .thesis .nei .rig ul li img {
  width: 48px;
  height: 52px;
}

body .thesis .nei .rig ul li .tit {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

body .thesis .nei .rig ul li .tit p {
  margin-left: 12px;
  font-weight: 600;
  font-size: 20px;
  color: #142232;
  line-height: 28px;
}

body .thesis .nei .rig ul li .tex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body .thesis .nei .rig ul li .tex .l p {
  font-weight: 400;
  font-size: 14px;
  color: #142232;
  line-height: 22px;
}

body .thesis .nei .rig ul li .tex .l p:nth-child(2) {
  margin-top: 4px;
  font-weight: 400;
  font-size: 12px;
  color: #434e5b;
  line-height: 20px;
}

body .thesis .nei .rig ul li .tex .r p {
  font-weight: 400;
  font-size: 14px;
  color: #ee5353;
  line-height: 22px;
}

body .thesis .nei .rig ul li .tex .r p span {
  margin: 0 4px;
  font-weight: 500;
  font-size: 24px;
  color: #ee5353;
  line-height: 32px;
}

body .thesis .nei .cen {
  width: 366px;
  height: 618px;
  background: #ffffff;
  border-radius: 20px 20px 20px 20px;
  padding: 15px 0 0 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body .thesis .nei .cen .huo {
  width: 100px;
  height: 26px;
  background: #deeeff;
  border-radius: 0px 14px 0px 14px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

body .thesis .nei .cen .huo img {
  width: 16px;
  height: 16px;
}

body .thesis .nei .cen .huo p {
  font-size: 10px;
  color: #1890ff;
}

body .thesis .nei .cen .top {
  font-weight: 600;
  font-size: 30px;
  color: #142232;
  line-height: 50px;
  position: relative;
  z-index: 2;
}

body .thesis .nei .cen .top p {
  position: relative;
  z-index: 99;
}

body .thesis .nei .cen .top::after {
  content: "";
  width: 134px;
  background: url(../images/Thesis/bc2.png) no-repeat top center;
  background-size: 100% 100%;
  height: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  z-index: 0;
}

body .thesis .nei .cen ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  margin-top: 15px;
}

body .thesis .nei .cen ul li {
  padding: 20px;
  width: 306px;
  height: 156px;
  background: #f0f8ff;
  border-radius: 14px 14px 14px 14px;
  margin-bottom: 20px;
  position: relative;
  box-sizing: border-box;
}

body .thesis .nei .cen ul li img {
  width: 48px;
  height: 52px;
}

body .thesis .nei .cen ul li .tit {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

body .thesis .nei .cen ul li .tit p {
  margin-left: 12px;
  font-weight: 600;
  font-size: 20px;
  color: #142232;
  line-height: 28px;
}

body .thesis .nei .cen ul li .tex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body .thesis .nei .cen ul li .tex .l p {
  font-weight: 400;
  font-size: 14px;
  color: #142232;
  line-height: 22px;
}

body .thesis .nei .cen ul li .tex .l p:nth-child(2) {
  margin-top: 4px;
  font-weight: 400;
  font-size: 12px;
  color: #434e5b;
  line-height: 20px;
}

body .thesis .nei .cen ul li .tex .r p {
  font-weight: 400;
  font-size: 14px;
  color: #ee5353;
  line-height: 22px;
}

body .thesis .nei .cen ul li .tex .r p span {
  margin: 0 4px;
  font-weight: 500;
  font-size: 24px;
  color: #ee5353;
  line-height: 32px;
}

body .thesis .foot {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 22px;
}

body .thesis_jilu {
  width: 1200px;
  margin: 0 auto;
  padding-top: 10px;
  background: #f5fbff;
  padding: 10px 30px 0;
}

body .thesis_jilu .xin ul {
  display: flex;
  margin-top: 30px;
}

body .thesis_jilu .xin ul li {
  cursor: pointer;

  font-size: 16px;
  text-align: center;
  line-height: 44px;
  border-radius: 12px 12px 12px 12px;
  height: 44px;
}
body .thesis_jilu .xin ul li a {
  display: block;
  color: #ffffff;
}
body .thesis_jilu .xin ul li:nth-child(1) {
  width: 112px;
  background: #ff7a18;
}

body .thesis_jilu .xin ul li:nth-child(2) {
  width: 176px;
  background: #13ce66;
  margin: 0 20px;
}

body .thesis_jilu .xin ul li:nth-child(3) {
  width: 176px;
  background: #61bf50;
}

body .thesis_jilu .cha {
  position: relative;
}

body .thesis_jilu .cha p {
  position: relative;
  font-weight: 600;
  font-size: 20px;
  color: #142232;
  line-height: 28px;
  margin: 30px 0 20px;
  z-index: 9;
}

body .thesis_jilu .cha::after {
  width: 80px;
  height: 12px;
  background: #e8f4ff;
  border-radius: 0px 0px 0px 0px;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

body .thesis_jilu .liebiao ul {
  display: flex;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
body .thesis_jilu .liebiao ul:nth-last-of-type(1) {
  border: none;
}
body .thesis_jilu .liebiao ul:nth-child(1) {
  background: #f7f8fa;
}

body .thesis_jilu .liebiao ul:nth-child(1) li {
  color: #434e5b;
}

body .thesis_jilu .liebiao ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  line-height: 22px;
  font-size: 14px;
  color: #142232;
  text-align: center;
  flex-wrap: wrap;
  padding: 16px 10px;
}
body .thesis_jilu .liebiao ul li .point {
  width: 4px;
  height: 4px;
  background: #61bf50;
  margin-right: 4px;
  border-radius: 50%;
}
body .thesis_jilu .liebiao ul li p {
  cursor: pointer;
}

body .thesis_jilu .liebiao ul li:nth-child(1) {
  width: 60px;
}

body .thesis_jilu .liebiao ul li:nth-child(2) {
  width: 186px;
}

body .thesis_jilu .liebiao ul li:nth-child(3) {
  width: 74px;
}

body .thesis_jilu .liebiao ul li:nth-child(4) {
  width: 108px;
}

body .thesis_jilu .liebiao ul li:nth-child(5) {
  width: 178px;
}

body .thesis_jilu .liebiao ul li:nth-child(6) {
  width: 96px;
}
body .thesis_jilu .liebiao ul li:nth-child(7) {
  width: 74px;
}
body .thesis_jilu .liebiao ul li:nth-child(8) {
  width: 160px;
}
body .thesis_jilu .liebiao ul li:nth-child(9) {
  width: 204px;
}
body .thesis_jilu .liebiao .head {
  border: none;
}
body .thesis_jilu .liebiao .head li {
  min-height: 42px;
  padding: 0;
}
body .thesis_jilu .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body .thesis_jilu .top ul {
  width: 980px;
  height: 44px;
  background: #e8f4ff;
  border-radius: 31px 31px 31px 31px;
  display: flex;
  align-items: center;
  padding-left: 16px;
}

body .thesis_jilu .top ul li {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-right: 40px;
}

body .thesis_jilu .top ul li img {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

body .thesis_jilu .top ul li p {
  font-size: 14px;
  color: #142232;
  line-height: 24px;
}

body .thesis_jilu .top .button {
  width: 142px;
  background: linear-gradient(135deg, #b11a1a 0%, #b11a1a 100%);
  border-radius: 53px 53px 53px 53px;
  border: 2px solid;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  
  color: #ffffff;
}
body .thesis_jilu .top .button a {
  display: block;
  width: 100%;
  padding: 12px 0;
  color: #ffffff;
}

body .thesis_jilu .foot {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 22px;
}

body .reduction {
  width: 1200px;
  margin: 0 auto;
  padding: 10px 30px 0;
}

body .reduction .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body .reduction .top ul {
  width: 978px;
  height: 44px;
  background: #e8f4ff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

body .reduction .top ul li {
  display: flex;
  align-items: center;
  padding: 0 24px 0 16px;
}
body .reduction .top ul li:last-of-type(1) {
  padding: 0 0 0 16px;
}
body .reduction .top ul li img {
  width: 16px;
  height: 16px;
  margin-right: 3px;
}

body .reduction .top ul li p {
  cursor: pointer;
  font-size: 14px;
  color: #142232;
  line-height: 24px;
}

body .reduction .top .button {
  width: 142px;
  background: linear-gradient(135deg, #b11a1a 0%, #b11a1a 100%);
  border-radius: 53px 53px 53px 53px;
  border: 2px solid;
  font-size: 16px;
  line-height: 1;

  text-align: center;
  color: #ffffff;
  cursor: pointer;
}
body .reduction .top .button a {
  display: block;
  width: 100%;
  padding: 12px 0;
  color: #ffffff;
}

body .reduction .main {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin: 30px 0;
}

body .reduction .main .taocan ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 892px;
}

body .reduction .main .taocan ul li {
  cursor: pointer;
  display: flex;
  width: 284px;
  height: 170px;
  background: #ffffff;
  border-radius: 20px 20px 20px 20px;
  border: 2px solid #e9edf0;
  padding: 20px;
  position: relative;
  box-sizing: border-box;
}
body .reduction .main .taocan ul li .needle {
  position: absolute;
  width: 44px;
  height: 44px;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
body .reduction .main .taocan ul li .left {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  z-index: 1;
}

body .reduction .main .taocan ul li .left h4 {
  font-weight: 400;
  font-size: 30px;
  color: #142232;
  line-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .reduction .main .taocan ul li .left h4 span {
  font-family: "ding";
}
body .reduction .main .taocan ul li .left h4 .price {
  font-weight: 400;
  font-size: 14px;
  color: #ee5353;
  line-height: 22px;
}
body .reduction .main .taocan ul li .left h4 .price span {
  margin: 0 4px;
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
}

body .reduction .main .taocan ul li .left > p {
  margin-top: 18px;
  font-weight: 400;
  font-size: 14px;
  color: #142232;
  line-height: 22px;
  white-space: nowrap;
}

body .reduction .main .taocan ul li .left p:nth-child(3) {
  margin-top: 8px;
  color: #1890ff;
}

body .reduction .main .taocan ul li .right img {
  width: 106px;
  height: 106px;
  position: absolute;
  top: 54px;
  right: 10px;
  z-index: 0;
}

body .reduction .main .taocan ul li .right img:nth-of-type(2) {
  display: none;
}
/* 激活时 */
body .reduction .main .taocan ul li.active {
  background: linear-gradient(135deg, #b11a1a 0%, #b11a1a 100%);
}
body .reduction .main .taocan ul li.active .right img:nth-of-type(1) {
  display: none;
}
body .reduction .main .taocan ul li.active .right img:nth-of-type(2) {
  display: block;
}
body .reduction .main .taocan ul li.active .needle {
  display: block;
}
body .reduction .main .taocan ul li.active .left h4 {
  color: #fff;
}
body .reduction .main .taocan ul li.active .left > p {
  color: rgba(255, 255, 255, 0.9);
}
body .reduction .main .taocan ul li.active .left h4 .price {
  color: #fff;
  position: relative;
  top: 2px;
}

body .reduction .main .ding {
  width: 228px;
  height: 170px;
  background: url(../images/cnki/youhui.png) no-repeat top center;
  background-size: 100% 100%;
  display: flex;
  padding: 0 16px 0 0;
  box-sizing: border-box;
}

body .reduction .main .ding .left {
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  line-height: 1;
  writing-mode: vertical-rl;
  text-align: center;
  padding: 0 18px;
  letter-spacing: 6px;
}
body .reduction .main .ding .right {
  flex: 1;
  margin-left: 11px;
  padding-top: 20px;
}
body .reduction .main .ding .right ul {
}

body .reduction .main .ding .right ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

body .reduction .main .ding .right ul li p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 22px;
  display: flex;
}

body .reduction .main .ding .right ul li .point {
  margin-right: 4px;
  width: 4px;
  height: 22px;
  display: flex;
  align-items: center;
}
body .reduction .main .ding .right ul li .point span {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50%;
}

body .reduction .main .ding .right ul li p:nth-child(2) {
  color: #ffffff;
}

body .reduction .main .ding .right ul li .des {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72) !important;
  display: flex;
}
body .reduction .main .ding .right ul li .des .point {
  height: 20px;
}
body .reduction .main .ding .right .buttt {
  padding-top: 10px;
  display: flex;
  align-items: center;
  padding-left: 8px;
}

body .reduction .main .ding .right .buttt h5 {
  font-size: 18px;
  color: #ffffff;
  line-height: 26px;
}

body .reduction .main .ding .right .buttt p {
  width: 52px;
  height: 28px;
  background: #ffffff;
  border-radius: 53px 53px 53px 53px;
  font-weight: 500;
  font-size: 14px;
  color: #f57e3e;
  line-height: 28px;
  text-align: center;
  margin-left: 9px;
}

body .reduction .nei {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  flex: 1;
}
body .reduction .nei .DIV {
  /* background:#fff; */
  display: flex;
  flex-direction: column;
}
body .reduction .nei .biao {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 20px;
  color: #142232;
  line-height: 28px;
  position: relative;
  z-index: 2;
  display: inline-block;
  vertical-align: top;
}

body .reduction .nei .biao::after {
  content: "";
  width: 100%;
  height: 12px;
  background: #e8f4ff;
  border-radius: 0px 0px 0px 0px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

body .reduction .nei .DIV .left1 {
  width: 828px;
  height: 140px;
  background: #ffffff;
  border-radius: 20px 20px 20px 20px;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body .reduction .nei .DIV .left1 .h3 {
  display: flex;
  align-items: center;
}

body .reduction .nei .DIV .left1 .h3 h4 {
  margin-bottom: 0;
}

body .reduction .nei .DIV .left1 .h3 p {
  font-size: 12px;
  color: #727a84;
  line-height: 20px;
}

body .reduction .nei .DIV .left1 ul {
  display: flex;
  justify-content: space-between;
}

body .reduction .nei .DIV .left1 ul li {
  display: flex;
  align-items: center;
  margin-right: 120px;
  position: relative;
  padding-left: 10px;
}

body .reduction .nei .DIV .left1 ul li:last-child {
  margin: 0;
}

body .reduction .nei .DIV .left1 ul li::after {
  content: "";
  width: 2px;
  height: 32px;
  background: #1890ff;
  border-radius: 0px 0px 0px 0px;
  position: absolute;
  left: 0;
}

body .reduction .nei .DIV .left1 ul li span {
  font-weight: 500;
  margin-right: 12px;
  font-size: 14px;
  color: #727a84;
}

body .reduction .nei .DIV .left1 ul li p {
  font-weight: 500;
  font-size: 24px;
  color: #142232;
  display: flex;
  align-items: center;
}

body .reduction .nei .DIV .left1 ul li p span {
  margin-left: 4px;
  font-size: 14px;
  color: #142232;
  font-weight: 400;
}

body .reduction .nei .DIV .left {
  width: 828px;
  /* height: 492px; */
  background: #ffffff;
  border-radius: 20px 20px 20px 20px;
  padding: 30px;
  box-sizing: border-box;
  flex: 1;
}

body .reduction .nei .DIV .left .inp {
  display: flex;
  margin-bottom: 20px;
}

body .reduction .nei .DIV .left .inp p {
  font-size: 14px;
  color: #142232;
  line-height: 32px;
}
body .reduction .nei .DIV .left .inp p:nth-child(1) {
  width: 68px;
}
body .reduction .nei .DIV .left .inp p:nth-child(2) {
  flex: 1;
  color: #434e5b;
}

body .reduction .nei .DIV .left .inp .dan {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  color: #142232;
  line-height: 22px;
  margin-right: 30px;
}
body .reduction .nei .left .inp .dan label {
  display: flex;
  align-items: center;
}

body .reduction .nei .DIV .left .inp .dan input {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}

body .reduction .nei .DIV .left .inp input {
  width: 690px;
  height: 32px;
  background: #ffffff;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #d0d3d6;
  line-height: 32px;
  padding: 0 8px;
  box-sizing: border-box;
}

body .reduction .nei .DIV .left .textarea {
  position: relative;
  width: 700px;
  height: 224px;
  background: #ffffff;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #d0d3d6;
  margin-left: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 0;
}
body .reduction .nei .left .textarea .inputFile {
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}
body .reduction .nei .DIV .left .textarea b {
  margin: 24px 0 4px;
  font-size: 14px;
}

body .reduction .nei .left .textarea p {
}
body .reduction .nei .left .textarea p:nth-child(1) {
  font-size: 20px;
}
body .reduction .nei .left .textarea p:nth-child(3) {
  font-size: 12px;
  color: #a1a7ad;
}

body .reduction .nei .DIV .left .butttt {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body .reduction .nei .DIV .left .butttt button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 174px;
  background: linear-gradient(135deg, #b11a1a 0%, #b11a1a 100%);
  border-radius: 12px 12px 12px 12px;
  border: 2px solid #e8f4ff;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  padding: 10px 0;
  text-align: center;
  box-sizing: border-box;
  margin: 0;
}

body .reduction .nei .DIV .left .butttt button img {
  margin-right: 4px;
  width: 20px;
  height: 24px;
}

body .reduction .nei .DIV .left .butttt p {
  position: relative;
  cursor: pointer;
  width: 144px;

  border-radius: 12px 12px 12px 12px;
  border: 2px solid transparent;
  font-size: 16px;

  line-height: 1;
  text-align: center;
  margin-left: 40px;

  box-sizing: border-box;
  background: #e8f4ff;
  border-color: #1890ff;
}
body .reduction .nei .DIV .left .butttt a {
  padding: 12px 0;

  display: block;

  color: #1890ff;
}
body .reduction .nei .DIV .left .ti {
  width: 700px;
  margin-left: 70px;
  height: 32px;
  background: #ffffff;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #d0d3d6;
  display: flex;
  justify-content: space-between;
  margin: 20px 70px 40px;
  padding: 0 8px;
}

body .reduction .nei .DIV .left .ti img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

body .reduction .nei .DIV .left .ti .lef {
  display: flex;
  align-items: center;
}

body .reduction .nei .DIV .left .ti .righ {
  display: flex;
  align-items: center;
}

body .reduction .nei .right {
  width: 292px;
  /* height: 652px; */
  background: #ffffff;
  border-radius: 20px 20px 20px 20px;
  padding: 30px 46px 30px 30px;
}

body .reduction .nei .right .biao {
}

body .reduction .nei .right ul li {
  margin-bottom: 20px;
}

body .reduction .nei .right ul li .img {
  display: flex;
  align-items: center;
}

body .reduction .nei .right ul li .img img {
  width: 12px;
  height: 12px;
  margin-right: 4px;
}

body .reduction .nei .right ul li .img h5 {
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: #142232;
  line-height: 22px;
}

body .reduction .nei .right ul li p {
  margin-top: 4px;
  font-size: 12px;
  color: #434e5b;
  margin-left: 16px;
  line-height: 24px;
  text-align: justify;
}

body .reduction .foot {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 22px;
}

body .reduction_jilu {
  width: 1200px;
  margin: 0 auto;
  padding-top: 10px;
  background: #f5fbff;
  padding: 10px 30px 20px;
}

body .reduction_jilu .xin ul {
  display: flex;
  margin-top: 30px;
}

body .reduction_jilu .xin ul li {
  cursor: pointer;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  border-radius: 12px 12px 12px 12px;
  height: 44px;
  padding: 10px 24px;
}
body .reduction_jilu .xin ul li a {
  color: #fff;
  font-display: block;
}
body .reduction_jilu .xin ul li:nth-child(1) {
  background: #1890ff;
}

body .reduction_jilu .xin ul li:nth-child(2) {
  background: #61bf50;
  margin: 0 20px;
}

body .reduction_jilu .cha {
  position: relative;
}

body .reduction_jilu .cha p {
  position: relative;
  font-weight: 600;
  font-size: 20px;
  color: #142232;
  line-height: 28px;
  margin: 30px 0 20px;
  z-index: 9;
}

body .reduction_jilu .cha::after {
  width: 80px;
  height: 12px;
  background: #e8f4ff;
  border-radius: 0px 0px 0px 0px;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

body .reduction_jilu .liebiao ul {
  display: flex;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
body .reduction_jilu .liebiao ul:nth-last-of-type(1) {
  border: none;
}

body .reduction_jilu .liebiao ul:nth-child(1) {
  background: #f7f8fa;
}

body .reduction_jilu .liebiao ul:nth-child(1) li {
  color: #434e5b;
}

body .reduction_jilu .liebiao ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  line-height: 22px;
  font-size: 14px;
  color: #142232;
  text-align: center;
  flex-wrap: wrap;
  padding: 16px 10px;
}
body .reduction_jilu .liebiao ul li .liBtn {
  margin: 0 8px;
}
body .reduction_jilu .liebiao ul li:nth-child(1) {
  width: 60px;
}

body .reduction_jilu .liebiao ul li:nth-child(2) {
  width: 300px;
}

body .reduction_jilu .liebiao ul li:nth-child(3) {
  width: 74px;
}

body .reduction_jilu .liebiao ul li:nth-child(4) {
  width: 74px;
}

body .reduction_jilu .liebiao ul li:nth-child(5) {
  width: 178px;
}

body .reduction_jilu .liebiao ul li:nth-child(6) {
  width: 88px;
}

body .reduction_jilu .liebiao ul li:nth-child(7) {
  width: 74px;
}
body .reduction_jilu .liebiao ul li:nth-child(8) {
  width: 160px;
}
body .reduction_jilu .liebiao ul li:nth-child(9) {
  width: 132px;
}
body .reduction_jilu .liebiao .head {
  border: none;
}
body .reduction_jilu .liebiao .head li {
  min-height: 42px;
  padding: 0;
}

body .reduction_jilu .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body .reduction_jilu .top ul {
  width: 980px;
  height: 44px;
  background: #e8f4ff;
  border-radius: 31px 31px 31px 31px;
  display: flex;
  align-items: center;
  padding-left: 16px;
}

body .reduction_jilu .top ul li {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

body .reduction_jilu .top ul li img {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

body .reduction_jilu .top ul li p {
  font-size: 14px;
  color: #142232;
  line-height: 24px;
}

body .reduction_jilu .top .button {
  width: 142px;
  background: linear-gradient(135deg, #b11a1a 0%, #b11a1a 100%);
  border-radius: 53px 53px 53px 53px;
  border: 2px solid;
  font-size: 16px;
  line-height: 1;
  text-align: center;

  color: #ffffff;
}
body .reduction_jilu .top .button a {
  display: block;
  width: 100%;
  height: 100%;
  color: #ffffff;
  padding: 12px 0;
}
body .reduction_jilu .foot {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 22px;
}

body .jiangchong {
  width: 1200px;
  margin: 0 auto;
  background: #f5fbff;
  padding: 30px 30px 0;
  box-sizing: border-box;
}
body .jiangchong-wrap {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
body .jiangchong .dian {
  font-weight: 600;
  font-size: 20px;
  color: #142232;
  line-height: 28px;
  z-index: 1;
}
body .jiangchong .dian span {
  position: relative;
  z-index: 1;
}
body .jiangchong .dian span::after {
  content: "";
  width: 100%;
  height: 12px;
  background: #e8f4ff;
  border-radius: 0px 0px 0px 0px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

body .jiangchong .yuanwen {
  width: 636px;

  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

body .jiangchong .yuanwen ul {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
}

body .jiangchong .yuanwen ul li {
  cursor: pointer;
  height: 38px;
  border-radius: 8px;
  border: 2px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  padding: 0 10px;
  box-sizing: border-box;
}
body .jiangchong .yuanwen ul li a{
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .jiangchong .yuanwen ul li.active {
  border: 2px solid #1890ff;
}
body .jiangchong .yuanwen ul li:last-of-type {
  margin-right: 0;
}
body .jiangchong .yuanwen ul li p {
  font-size: 14px;
  color: #142232;
  line-height: 22px;
}
/* body .jiangchong .yuanwen ul li.active p{
  color: #1890ff;
} */
body .jiangchong .yuanwen ul li img {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

body .jiangchong .yuanwen textarea {
  margin-top: 20px;
  width: 100%;
  flex: 1;

  border-radius: 2px 2px 2px 2px;
  border: 1px solid #d0d3d6;
  padding: 8px;
  font-size: 14px;
  box-sizing: border-box;
}

body .jiangchong .moxing {
  width: 474px;
  min-height: 550px;
  padding: 30px;
  background: #ffffff;
  border-radius: 20px 20px 20px 20px;
  position: relative;
}

body .jiangchong .moxing .bbb {
  cursor: pointer;
  width: 176px;

  background: #e8f4ff;
  border-radius: 12px 12px 12px 12px;
  border: 2px solid;
  font-size: 16px;
  color: #1890ff;
  line-height: 1;
  padding: 12px 0;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 138px;
}

body .xiezuo {
  width: 1200px;
  margin: 0 auto;
  padding: 10px 30px 0;
  box-sizing: border-box;
}

body .xiezuo .main {
  display: flex;
  flex: 1;
  justify-content: space-between;
  margin-top: 30px;
}

body .xiezuo .main .biao {
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
}

body .xiezuo .main .biao span {
  position: relative;
  z-index: 2;
  font-size: 20px;
  color: #142232;
  line-height: 28px;
  font-weight: 600;
}

body .xiezuo .main .biao span::after {
  content: "";
  width: 100%;
  height: 12px;
  background: #e8f4ff;
  border-radius: 0px 0px 0px 0px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

body .xiezuo .main .left {
  width: 828px;
  display: flex;
  flex-direction: column;
}
body .xiezuo .main .left .le1 {
  border-radius: 20px;
  padding: 30px;
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
}

body .xiezuo .main .left .le1 .text {
  display: flex;

  justify-content: space-between;
  margin-bottom: 20px;
}

body .xiezuo .main .left .le1 .description {
  flex: 1;
}
body .xiezuo .main .left .le1 .biao {
  margin-bottom: 20px;
}
body .xiezuo .main .left .le1 .biao span {
  position: relative;
  z-index: 2;
  font-weight: 600;
  font-size: 20px;
  color: #142232;
  line-height: 32px;
}

body .xiezuo .main .left .le1 .biao span::after {
  content: "";
  width: 100%;
  height: 12px;
  background: #e8f4ff;
  border-radius: 0px 0px 0px 0px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

body .xiezuo .main .left .le1 .text p {
  font-size: 14px;
  color: #434e5b;
  line-height: 32px;
  width: 68px;
}

body .xiezuo .main .left .le1 .text .fontNum-wrap {
  display: flex;
  font-size: 14px;
  color: #434e5b;
  line-height: 22px;
  flex: 1;
}

body .xiezuo .main .left .le1 .text .fontNum-wrap span {
  width: 70px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d0d3d6;
  border-left: none;
  margin-left: -1px;
  cursor: pointer;
}
body .xiezuo .main .left .le1 .text .fontNum-wrap .active {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}

body .xiezuo .main .left .le1 input {
  flex: 1;

  height: 32px;
  background: #ffffff;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #d0d3d6;
  padding: 0 8px;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  line-height: 22px;
}

body .xiezuo .main .left .le1 textarea {
  flex: 1;
  min-height: 348px;
  height: 100%;
  background: #ffffff;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #d0d3d6;
  padding: 5px 8px;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  line-height: 22px;
  box-sizing: border-box;
}

body .xiezuo .main .left .le1 .butttt {
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body .xiezuo .main .left .le1 .butttt button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 142px;
  height: 44px;
  background: linear-gradient(135deg, #b11a1a 0%, #b11a1a 100%);
  border-radius: 12px 12px 12px 12px;
  border: 2px solid #e8f4ff;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  box-sizing: border-box;
}

body .xiezuo .main .left .le1 .butttt button img {
  margin-right: 10px;
  width: 20px;
  height: 24px;
}

body .xiezuo .main .left .le1 .butttt p {
  cursor: pointer;

  background: #e8f4ff;
  border-radius: 12px 12px 12px 12px;
  border: 2px solid #1890ff;
  font-size: 16px;

  line-height: 1;
  text-align: center;
  margin-left: 40px;
  box-sizing: border-box;
}
body .xiezuo .main .left .le1 .butttt p a {
  display: block;
  padding: 12px 24px;
  color: #1890ff;
}
body .xiezuo .main .left .le2 {
  background: #fff;
  margin-top: 30px;
  border-radius: 20px;
  padding: 30px;
}

body .xiezuo .main .left .le2 ul li p {
  font-size: 14px;
  color: #a1a7ad;
  line-height: 28px;
}

body .xiezuo .main .right {
  width: 292px;
  background: #ffffff;
  border-radius: 20px 20px 20px 20px;
  padding: 30px;
  box-sizing: border-box;
}

body .xiezuo .main .right .down {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

body .xiezuo .main .right .down img {
  width: 28px;
  height: 52px;
  margin: 12px 0;
}

body .xiezuo .main .right .down .b b {
  border-radius: 20px;
}

body .xiezuo .main .right .down b {
  display: block;
  width: 232px;
  height: 62px;
  background: #e8f4ff;
  border-radius: 20px 20px 0 0;
  font-size: 14px;
  color: #1890ff;
  line-height: 62px;
  text-align: center;
}

body .xiezuo .main .right .down .p {
  padding: 16px;
  background: #f6fbff;
}

body .xiezuo .main .right .down .p p {
  font-weight: 400;
  font-size: 12px;
  color: #434e5b;
  line-height: 20px;
}

body .xiezuo .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body .xiezuo .top ul {
  width: 980px;
  height: 44px;
  background: #e8f4ff;
  border-radius: 31px 31px 31px 31px;
  display: flex;
  align-items: center;
  padding-left: 16px;
}

body .xiezuo .top ul li {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

body .xiezuo .top ul li img {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

body .xiezuo .top ul li p {
  font-size: 14px;
  color: #142232;
  line-height: 24px;
}
body .xiezuo .top .button {
  cursor: pointer;
  width: 142px;
  background: linear-gradient(135deg, #b11a1a 0%, #b11a1a 100%);
  border-radius: 53px 53px 53px 53px;
  border: 2px solid;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  padding: 12px 0;
  color: #ffffff;
}
body .xiezuo .top .button a {
  display: block;
  width: 100%;
  height: 100%;
  color: #ffffff;
}

body .xiezuo .foot {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 22px;
}

/* 知网降重 */
body .jiangchong_detail .main .taocan ul li {
  width: 270px;
}

body .jiangchong_detail .main .taocan ul li .left h4 {
  font-size: 30px;
  white-space: nowrap;
}
body .jiangchong_detail .main .taocan ul {
  width: 100%;
}
body .jiangchong_detail .main .taocan {
  width: 100%;
}

body .jiangchong_detail .main .taocan ul li .left h4 > span {
  font-family: "ding";
}
body .jiangchong_detail .main .taocan ul li .left h4 > span span {
  font-size: 24px;
  font-family: "ding";
}
body .jiangchong_detail .main .taocan ul li .left h4 .price span {
  margin: 0;
}
body .jiangchong_detail .main .taocan ul li .left > p {
  font-size: 12px;
}
body .jiangchong_detail .account-wrap .ding {
  width: 292px;
  background: url(../images/cnki/youhui2.png) no-repeat top center;
}

body .jiangchong_detail .account-wrap .ding .left {
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  line-height: 1;
  writing-mode: vertical-rl;
  text-align: center;
  padding: 0 18px;
  letter-spacing: 6px;
}
body .jiangchong_detail .account-wrap  .ding .right{
  margin-left:12px;
}
body .jiangchong_detail .account-wrap  .ding .right .buttt{
  justify-content: space-between;
}
body .jiangchong_detail .account-wrap {
  margin-top: 0;
}
body .jiangchong_detail .account-wrap .account {
  width: 828px;
  height: 170px;
  padding: 30px 30px 0;
  box-sizing: border-box;
  background: #fff;
}
body .jiangchong_detail .account-wrap .account-row-wrap {
  display: flex;
}
body .jiangchong_detail .account-wrap .account-row {
  width: 33.33%;
  display: flex;
  font-weight: 400;
  font-size: 14px;
  color: #434e5b;
  line-height: 22px;
  margin-bottom: 20px;
}
body .jiangchong_detail .account-wrap .account-row span:nth-of-type(1) {
  color: #434e5b;
}
body .jiangchong_detail .account-wrap .account-row span:nth-of-type(2) {
  margin-left: 12px;
  color: #142232;
}
body .jiangchong_detail .account-wrap .account-all-row {
  width: 100%;
}

body .jiangchong_detail .nei .left1 {
  width: 828px;
  height: auto;
  background: #ffffff;
  border-radius: 20px 20px 20px 20px;
  padding: 30px 30px 0; 
  display: flex;
  flex-direction: column;
}

body .jiangchong_detail .nei .left1 .h3 {
  display: flex;
  align-items: center;
}

body .jiangchong_detail .nei .left1 .h3 h4 {
  margin-bottom: 0;
}

body .jiangchong_detail .nei .left1 .h3 p {
  font-size: 12px;
  color: #727a84;
  line-height: 20px;
}

body .jiangchong_detail .nei .left1 ul {
  display: flex;
  flex-wrap: wrap;
}

body .jiangchong_detail .nei .left1 ul li {
  margin-top: 20px;
  display: flex;
  align-items: center;
  width: 50%;
  position: relative;
  padding-left: 10px;
  height: 32px;
}

body .jiangchong_detail .nei .left1 ul li::after {
  content: "";
  width: 2px;
  height: 32px;
  background: #1890ff;
  border-radius: 0px 0px 0px 0px;
  position: absolute;
  left: 0;
}

body .jiangchong_detail .nei .left1 ul li span {
  font-weight: 500;
  margin-right: 16px;
  font-size: 14px;
  color: #727a84;
}

body .jiangchong_detail .nei .left1 ul li p {
  font-weight: 500;
  font-size: 24px;
  color: #142232;
  display: flex;
  align-items: center;
}

body .jiangchong_detail .nei .left1 ul li p span {
  margin-left: 4px;
  font-size: 14px;
  color: #142232;
  font-weight: 400;
}

body .jiangchong_detail .nei .price-wrap {
  margin-top: 20px;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  color: #142232;
  line-height: 22px;
}
/* body .jiangchong_detail .nei .price-wrap span:nth-of-type(1){
  margin-right:12px;
} */
body .jiangchong_detail .nei .price {
  color: #727a84;
  display: flex;
  align-items: center;
}
body .jiangchong_detail .nei .price span {
  color: #ee5353;
}
body .jiangchong_detail .nei .price span:nth-of-type(1) {
  margin-right: 2px;
}

body .jiangchong_detail .nei .price span:nth-of-type(2) {
  font-weight: 500;
  font-size: 24px;
  color: #ee5353;
  line-height: 32px;
  margin-right: 4px;
}
body .jiangchong_detail .nei .left1 .butttt {
  margin-top: 174px;
  display: flex;
  justify-content: center;
}
body .jiangchong_detail .nei .left1 .butttt button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 142px;
  background: linear-gradient(135deg, #b11a1a 0%, #b11a1a 100%);
  border-radius: 12px 12px 12px 12px;
  border: 2px solid #e8f4ff;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  padding: 10px 0;
  text-align: center;
  box-sizing: border-box;
  margin: 0;
}

body .jiangchong_detail .nei .left1 .butttt button img {
  margin-right: 10px;
  width: 20px;
  height: 24px;
}
body .jiangchong_detail .nei .right {
  padding-bottom: 0;
}
body .jiangchong_detail .nei .right ul li p {
  line-height: 20px;
}
